@font-face {
  font-family: 'Avenir';
  src: url('../wrms/fonts/avenir/AvenirLTProRoman.woff') format('woff');
}

@font-face {
  font-family: "Stolzl W00 Book";
  src: url("../fonts/d4eb3f3d-4d40-42cc-80eb-005aaacd2d01.eot?#iefix") format("eot"), url("../wrms/fonts/df3260a8-4249-4876-b2ea-9d30ca8a5d84.woff2") format("woff2"), url("../wrms/fonts/f9997371-f2b0-4efd-9afa-aedc523bda83.woff") format("woff"), url("../wrms/fonts/484c03db-6da4-413f-85e7-bfced6277476.ttf") format("truetype"), url("../wrms/fonts/e1f9b8d5-2990-491b-9461-6410a197eeb6.svg#e1f9b8d5-2990-491b-9461-6410a197eeb6") format("svg");
}

body {
  margin: 0;
  font-family: 'Heuristica', sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media(min-width: 992px) {
  header {
    flex-direction: row;
  }
}

header a {
  text-decoration: none;
}

header a:nth-child(1) {
  order: 2;
  margin-top: 30px;
  margin-bottom: 20px;
}

@media(min-width: 992px) {
  header a:nth-child(1) {
    order: 1;
  }

  header a:nth-child(2) {
    order: 2;
  }
}

.hero {
  position: relative;
  background-color: #121212;
}

.hero-img,
.hero-img-mobile {
  position: relative;
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: right;
}

/* .hero-img {
  display: none;
} */

@media(min-width: 992px) {
  .hero-img {
    display: block;
  }

  .hero-img-mobile {
    display: none;
  }
}

.hero:after {
  /* content: ""; */
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 375px;
  background: none;
}

@media(min-width: 992px) {
  .hero:after {
    left: -300px;
    background: url('./hero-overlay-bg.svg');
    background-repeat: no-repeat;
  }
}

@media(min-width: 1440px) {
  .hero:after {
    left: 0;
  }
}

@media(min-width: 2000px) {
  .hero:after {
    background: url('./hero-overlay-bg-big.svg');
    background-repeat: no-repeat;
    height: 450px;
  }
}


.hero-wrapper {
  padding: 30px 0;
  position: relative;
  z-index: 10;
  top: 0;
}

@media(min-width: 992px) {
  .hero-wrapper {
    position: absolute;
    max-width: 350px;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
  }
}

/* @media(min-width: 2000px) {
  .hero-wrapper {
    padding: 91px 0;
  }
} */

.hero .hero-link {
  background-color: #36AF63;
  padding: 15px 20px;
  width: 150px;
  text-decoration: none;
  color: #fff;
  margin-top: 30px;
  display: block;
  position: relative;
}

.hero .hero-link:after {
  position: absolute;
  content: url('./arrow-right.svg');
  right: 20px;
}

header .title {
  margin: 0;
  color: #fff;
  font-size: 24px;
  color: #357E41;
  text-align: center;
}

@media(min-width: 992px) {
  header .title {
    font-size: 30px;
    text-align: left;
  }
}

.hero .subtitle {
  color: #fff;
  line-height: 25px;
}

.content {
  padding: 50px 0;
}

.content .mt-0 {
  margin-top: 0;
}

.content-title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 0;
}

.content h3 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.content h4 {
  font-size: 20px;
}


.content a {
  font-size: 20px;
}

.content ul li::marker {
  color: #00e862;
}


.content p,
.content li {
  line-height: 30px;
  font-size: 20px;
  text-align: justify;
  margin: 5px 0;
}

.content a {
  color: #357E41;
  font-weight: bold;
  text-decoration: none;
}

.wrapper {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media(min-width: 1400px) {
  .wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}


footer {
  background-color: #2C2F2F;
  padding: 30px 0;
  color: #fff;
  font-family: "Stolzl W00 Book";
  text-transform: uppercase;
}

footer a {
  color: #fff;
  text-decoration: none;
}

.footer__wrapper {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media(min-width: 1280px) {
  .footer__wrapper {
    flex-direction: row;
  }
}

@media(min-width: 1400px) {
  .footer__wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.footer__link {
  display: flex;
  margin-bottom: 30px;
  flex-direction: column;
}

@media(min-width: 1280px) {
  .footer__link {
    margin-bottom: 0;
    flex-direction: row;
  }
}

.footer__link a {
  margin-right: 25px;
  line-height: 25px;
  margin-bottom: 15px;
  display: flex;
  font-size: 14px;
}

@media(min-width: 1280px) {
  .footer__link a {
    margin-bottom: 5px;
  }
}

.footer__social {
  display: flex;
  align-items: center;
}

.footer__social a {
  margin-right: 25px;
}

.footer__social a:last-child {
  margin-right: 0;
}

.footer__social a img {
  width: 20px;
}

.contact-us-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  margin-left: 30px;
}

.contact-us-wrapper:nth-child(1) {
  margin-top: 30px;
}

.contact-us-wrapper img {
  margin-right: 20px;
  width: 20px;
}

.contact-us-wrapper a {
  color: #000;
}

.green-border {
  border: 3px solid #357E41;
}


.flex-wrapper {
  display: flex;
  flex-direction: column;
}

@media(min-width: 992px) {
  .flex-wrapper {
    flex-direction: row;
  }
}

.map-wrapper {
  width: 100%;
  margin-left: 0;
  margin-top: 30px;
  background-color: #fff;
  border-top: 3px solid #357E41;
}

@media(min-width: 992px) {
  .map-wrapper {
    margin-left: 30px;
    margin-top: 0;
    border-left: 3px solid #357E41;
    border-top: none;
  }
}

.no-wrap {
  overflow-wrap: anywhere;
  white-space: normal;
}

@media(min-width: 992px) {
  .no-wrap {
    white-space: nowrap;
  }
}