* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: url("/assets/img/world-map-146505b.png") no-repeat fixed;
  background-size: cover;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  overflow-y: scroll;
  color: #494949;
}
.green {
  color: #009A19;
}
p {
  line-height: 1.5;
  margin-bottom: 15px;
}

a {
  color: #009A19;
  text-decoration: none;
  transition: 0.3s ease-in-out all;
}
a:hover {
  color: #00cd21;
}
a.active {
  color: #009A19;
}

h1, h2 {
  font-size: 30px;
  font-weight: 700;
  color: #009A19;
  font-family: "Roboto Condensed", sans-serif;
  margin-bottom: 15px;
}
h1 span, h2 span {
  font-size: 20px;
  display: block;
  font-weight: 400;
  color: #8A8A86;
}

img {
  max-width: 100%;
  height: auto;
}

header {
  padding: 30px;
}
header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  header .container-fluid {
    flex-direction: column;
    text-align: center;
  }
}
header ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 991px) {
  header ul {
    padding-top: 20px;
  }
}
header ul li {
  display: inline-block;
}
header ul li.highlight {
  border-radius: 15px;
  border: 1px solid #009A19;
}
header ul li a {
  font-weight: 700;
  color: #494949;
  padding: 5px 15px;
  display: block;
}
header ul li a:hover {
  color: #009A19;
}
header .logotype {
  max-width: 280px;
}

hr {
  background: #ececec;
  height: 1px;
  width: 100%;
  margin: 30px 0 35px 0;
}

.content {
  padding-bottom: 50px;
}
.content img {
  mix-blend-mode: multiply;
}
.content .text-center {
  text-align: center;
}
.content .dnr {
  border-top: 1px solid #E9E9E9;
  border-bottom: 1px solid #E9E9E9;
  background: #fff;
  padding: 20px 0;
  margin: 20px 0 40px 0;
}
.content .col-centered {
  margin: 0 auto;
}

.btt {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 99;
  min-width: 31px;
  border-color: #009A19 !important;
  color: #009A19;
}

.btt:hover, .btt:active {
  background: #009A19 !important;
  border-color: #009A19 !important;
}

.multipleCarousel {
    @media (max-width: 767px) {
        .carousel-inner .carousel-item > div {
            display: none;
        }
        .carousel-inner .carousel-item > div:first-child {
            display: block;
        }
    }

    .carousel-inner .carousel-item.active,
    .carousel-inner .carousel-item-next,
    .carousel-inner .carousel-item-prev {
        display: flex;
    }

    /* medium and up screens */
    @media (min-width: 768px) {

        .carousel-inner .carousel-item-end.active,
        .carousel-inner .carousel-item-next {
            transform: translateX(25%);
        }

        .carousel-inner .carousel-item-start.active,
        .carousel-inner .carousel-item-prev {
            transform: translateX(-25%);
        }
    }

    .carousel-inner .carousel-item-end,
    .carousel-inner .carousel-item-start {
        transform: translateX(0);
    }

}
