/***************** COLOR BRAND (PRIMITIVES) *****************/
/***************** COLOR SURFACE *****************/
/***************** COLOR TEXT *****************/
/* **************** COLOR BORDER *****************/
/* HOMEPAGE BANNER IMAGE and DEFAULT BANNER IMAGE */
#hero .background {
  background-image: url(../../../../_resources/banners/hero_home.jpg);
}

/* INNERPAGE BANNER IMAGES */
body.inner #hero .background {
  background-image: url(../../../../_resources/banners/hero_inner.jpg);
}

/* NO SIDEBAR BANNER IMAGES */
body.no-sidebar #hero .background {
  background-image: url(../../../../_resources/banners/hero_inner.jpg);
}

@media (max-width: 768px) {
  body.inner #hero .background {
    background-image: url(../../../../_resources/banners/hero_inner_mobile.jpg);
  }
}
body.cat-contact #hero .background {
  background-image: url(../../../../_resources/banners/banner_contact.jpg);
}

body.cat-investors #hero .background {
  background-image: url(../../../../_resources/banners/banner_investors.jpg);
}

body.cat-news-media #hero .background {
  background-image: url(../../../../_resources/banners/banner_news_media.jpg);
}

body.cat-responsibility #hero .background {
  background-image: url(../../../../_resources/banners/banner_responsibility.jpg);
}

body.cat-company #hero .background {
  background-image: url(../../../../_resources/banners/banner-about.jpg);
}

/* BASE */
*, *:before, *:after {
  box-sizing: inherit;
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

html {
  box-sizing: border-box;
  margin: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #122d19;
  position: relative;
  box-sizing: border-box;
  margin: 0;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.open, html.open body {
  overflow: hidden;
}

section, header, footer {
  display: block;
  width: 100%;
}

.screen-reader-text {
  display: none;
}

h1, .h1 {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 76px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
}

h2, .h2 {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 42px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.24;
  letter-spacing: normal;
}

h3, .h3 {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.38;
  letter-spacing: normal;
}

h4, .h4 {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
}

h5, .h5 {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
}

p {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #132116;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child, p:first-child {
  margin-top: 0;
}

h1, h2, h3 {
  margin-top: 0.55em;
  margin-bottom: 0.55em;
}

h4, h5 {
  margin-top: 0.55em;
  margin-bottom: 1.1em;
}

h6 {
  margin-top: 0.8em;
  margin-bottom: 1.6em;
}

a {
  text-decoration: none;
  color: #122d19;
  transition: all 0.25s ease-in-out;
}

strong, b {
  font-weight: 500;
}

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

iframe {
  max-width: 100%;
}

input[type=submit], input[type=text], input[type=email], input[type=search], textarea, select, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: none !important;
}

input[type=submit] {
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

input[type=text] {
  background: transparent;
  padding: 10px;
  margin: 0;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  border: 1px solid #abb8c1;
  border-radius: 0px;
  margin: 0;
  padding: 10px 30px;
  box-sizing: border-box;
}

textarea, select {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
}

input[type=text]::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.75);
}

select::-ms-expand {
  display: none;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 768px) {
  .grid {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

.grid-collapse {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
}

.cols-2 {
  grid-column: span 2;
}

.cols-3 {
  grid-column: span 3;
}

.cols-4 {
  grid-column: span 4;
}

.cols-5 {
  grid-column: span 5;
}

.cols-6 {
  grid-column: span 6;
}

.cols-7 {
  grid-column: span 7;
}

.cols-8 {
  grid-column: span 8;
}

.cols-9 {
  grid-column: span 9;
}

.cols-10 {
  grid-column: span 10;
}

.cols-11 {
  grid-column: span 11;
}

.cols-12 {
  grid-column: span 12;
}

@media (max-width: 1600px) {
  .xxl-cols-0 {
    display: none;
  }

  .xxl-cols-2 {
    grid-column: span 2;
  }

  .xxl-cols-3 {
    grid-column: span 3;
  }

  .xxl-cols-4 {
    grid-column: span 4;
  }

  .xxl-cols-5 {
    grid-column: span 5;
  }

  .xxl-cols-6 {
    grid-column: span 6;
  }

  .xxl-cols-7 {
    grid-column: span 7;
  }

  .xxl-cols-8 {
    grid-column: span 8;
  }

  .xxl-cols-9 {
    grid-column: span 9;
  }

  .xxl-cols-10 {
    grid-column: span 10;
  }

  .xxl-cols-11 {
    grid-column: span 11;
  }

  .xxl-cols-12 {
    grid-column: span 12;
  }
}
@media (max-width: 1440px) {
  .xl-cols-0 {
    display: none;
  }

  .xl-cols-2 {
    grid-column: span 2;
  }

  .xl-cols-3 {
    grid-column: span 3;
  }

  .xl-cols-4 {
    grid-column: span 4;
  }

  .xl-cols-5 {
    grid-column: span 5;
  }

  .xl-cols-6 {
    grid-column: span 6;
  }

  .xl-cols-7 {
    grid-column: span 7;
  }

  .xl-cols-8 {
    grid-column: span 8;
  }

  .xl-cols-9 {
    grid-column: span 9;
  }

  .xl-cols-10 {
    grid-column: span 10;
  }

  .xl-cols-11 {
    grid-column: span 11;
  }

  .xl-cols-12 {
    grid-column: span 12;
  }
}
@media (max-width: 1280px) {
  .lg-cols-0 {
    display: none;
  }

  .lg-cols-2 {
    grid-column: span 2;
  }

  .lg-cols-3 {
    grid-column: span 3;
  }

  .lg-cols-4 {
    grid-column: span 4;
  }

  .lg-cols-5 {
    grid-column: span 5;
  }

  .lg-cols-6 {
    grid-column: span 6;
  }

  .lg-cols-7 {
    grid-column: span 7;
  }

  .lg-cols-8 {
    grid-column: span 8;
  }

  .lg-cols-9 {
    grid-column: span 9;
  }

  .lg-cols-10 {
    grid-column: span 10;
  }

  .lg-cols-11 {
    grid-column: span 11;
  }

  .lg-cols-12 {
    grid-column: span 12;
  }
}
@media (max-width: 1024px) {
  .md-cols-0 {
    display: none;
  }

  .md-cols-2 {
    grid-column: span 2;
  }

  .md-cols-3 {
    grid-column: span 3;
  }

  .md-cols-4 {
    grid-column: span 4;
  }

  .md-cols-5 {
    grid-column: span 5;
  }

  .md-cols-6 {
    grid-column: span 6;
  }

  .md-cols-7 {
    grid-column: span 7;
  }

  .md-cols-8 {
    grid-column: span 8;
  }

  .md-cols-9 {
    grid-column: span 9;
  }

  .md-cols-10 {
    grid-column: span 10;
  }

  .md-cols-11 {
    grid-column: span 11;
  }

  .md-cols-12 {
    grid-column: span 12;
  }
}
@media (max-width: 768px) {
  .sm-cols-0 {
    display: none;
  }

  .sm-cols-2 {
    grid-column: span 2;
  }

  .sm-cols-3 {
    grid-column: span 3;
  }

  .sm-cols-4 {
    grid-column: span 4;
  }

  .sm-cols-5 {
    grid-column: span 5;
  }

  .sm-cols-6 {
    grid-column: span 6;
  }

  .sm-cols-7 {
    grid-column: span 7;
  }

  .sm-cols-8 {
    grid-column: span 8;
  }

  .sm-cols-9 {
    grid-column: span 9;
  }

  .sm-cols-10 {
    grid-column: span 10;
  }

  .sm-cols-11 {
    grid-column: span 11;
  }

  .sm-cols-12 {
    grid-column: span 12;
  }
}
@media (max-width: 480px) {
  .xs-cols-0 {
    display: none;
  }

  .xs-cols-2 {
    grid-column: span 2;
  }

  .xs-cols-3 {
    grid-column: span 3;
  }

  .xs-cols-4 {
    grid-column: span 4;
  }

  .xs-cols-5 {
    grid-column: span 5;
  }

  .xs-cols-6 {
    grid-column: span 6;
  }

  .xs-cols-7 {
    grid-column: span 7;
  }

  .xs-cols-8 {
    grid-column: span 8;
  }

  .xs-cols-9 {
    grid-column: span 9;
  }

  .xs-cols-10 {
    grid-column: span 10;
  }

  .xs-cols-11 {
    grid-column: span 11;
  }

  .xs-cols-12 {
    grid-column: span 12;
  }
}
/* Functions */
.column-1 {
  width: calc((100% - 220px) / 12 * 1 + 0px);
}

.column-2 {
  width: calc((100% - 220px) / 12 * 2 + 20px);
}

.column-3 {
  width: calc((100% - 220px) / 12 * 3 + 40px);
}

.column-4 {
  width: calc((100% - 220px) / 12 * 4 + 60px);
}

.column-5 {
  width: calc((100% - 220px) / 12 * 5 + 80px);
}

.column-6 {
  width: calc((100% - 220px) / 12 * 6 + 100px);
}

.column-7 {
  width: calc((100% - 220px) / 12 * 7 + 120px);
}

.column-8 {
  width: calc((100% - 220px) / 12 * 8 + 140px);
}

.column-9 {
  width: calc((100% - 220px) / 12 * 9 + 160px);
}

.column-10 {
  width: calc((100% - 220px) / 12 * 10 + 180px);
}

.column-11 {
  width: calc((100% - 220px) / 12 * 11 + 200px);
}

.column-12 {
  width: calc((100% - 220px) / 12 * 12 + 220px);
}

/* RECAPTCHA */
.grecaptcha-badge {
  display: none !important;
}

.grecaptcha-badge.show {
  display: block !important;
  visibility: visible !important;
}

/* ANIMATION */
.transition {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  opacity: 0;
  position: relative;
  visibility: hidden;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate(-20px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate(-20px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate(20px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate(20px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  transition: all 0.8s ease 0s;
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
  transition: all 0.8s ease 0s;
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
  transition: all 0.8s ease 0s;
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  transition: all 0.8s ease 0s;
}

/* CONTAINER */
.container {
  margin: 0 auto;
  position: relative;
  max-width: 1640px;
  padding-left: 60px;
  padding-right: 60px;
}

.flex-container {
  display: flex;
}

.flex {
  display: flex;
}

/* BUTTON STYLES */
button {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal;
}

.button {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal;
  background-color: #ffffff;
  color: #122d19;
  border: 1px solid #abb8c1;
  padding: 12px 16px;
  min-height: 42px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.button:after {
  content: "\f061";
  margin-left: 8px;
  font-family: "Font Awesome 7 Pro";
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  color: #61b340;
}
.button:hover, .button:focus {
  color: #ffffff;
  background-color: #132116;
  border: 1px solid #132116;
  outline: none;
}
.button:hover:after, .button:focus:after {
  color: #ffffff;
}

.button-inverse {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal;
  background-color: #132116;
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  min-height: 42px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.button-inverse:after {
  content: "\f061";
  margin-left: 8px;
  font-family: "Font Awesome 7 Pro";
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  color: #7be34e;
}
.button-inverse:hover, .button-inverse:focus {
  color: #ffffff;
  background-color: #122d19;
  outline: none;
}
.button-inverse:hover:after, .button-inverse:focus:after {
  color: #ffffff;
}

.button.back:after {
  content: "\e632";
}

.arrow {
  border: none;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.arrow::after {
  content: "\f061";
  font-family: "Font Awesome 7 Pro";
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  color: #61b340;
  display: inline-block;
  transition: all 0.25s ease-in-out;
}
.arrow:hover {
  outline: none;
}
.arrow:hover::after {
  transform: translateX(4px);
}

.button-icon {
  width: 30px;
  height: 30px;
  background-color: #61b340;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
.button-icon:after {
  content: "\f061";
  font-family: "Font Awesome 7 Pro";
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  color: #ffffff;
}
.button-icon:hover, .button-icon:focus {
  background-color: #132116;
  outline: none;
}
.button-icon:hover:after, .button-icon:focus:after {
  color: #7be34e;
}

.download::after {
  content: "\f019";
  margin-left: 8px;
  font-family: "Font Awesome 7 Pro";
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  color: #61b340;
}

.pdf::after {
  content: "\f1c1";
}

/* SWIPER BUTTON STYLES */
.swiper-navigation {
  margin-left: 24px;
  position: relative;
  display: flex;
  gap: 8px;
  overflow: hidden;
  --swiper-navigation-color:$text-card-brand;
}
.swiper-navigation .swiper-button-next, .swiper-navigation .swiper-button-prev {
  width: 64px;
  flex-basis: 50%;
  position: static;
  margin-top: 0;
  border-radius: 4px;
  color: #7be34e;
  background-color: #132116;
  transition: background-color 0.25s ease;
}
.swiper-navigation .swiper-button-next.swiper-button-disabled, .swiper-navigation .swiper-button-prev.swiper-button-disabled {
  opacity: 0.7;
}
.swiper-navigation .swiper-button-next svg, .swiper-navigation .swiper-button-prev svg {
  display: none;
}
.swiper-navigation .swiper-button-next:hover, .swiper-navigation .swiper-button-prev:hover {
  color: #ffffff;
}
.swiper-navigation .swiper-button-next::after {
  content: "\f061";
  font-family: "Font Awesome 7 Pro";
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
}
.swiper-navigation .swiper-button-prev::after {
  content: "\f060";
  font-family: "Font Awesome 7 Pro";
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
}

.swiper-preview .swiper-scrollbar-drag {
  background: #132116;
}

/* UTILITY */
.white {
  color: #ffffff;
}

.clear {
  clear: both;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.flex {
  display: flex;
}

.flex.aic, .grid.aic {
  align-items: center;
}

.flex.jcc, .grid.jcc {
  justify-content: center;
}

.flex.jcsb, .grid.jcsb {
  justify-content: space-between;
}

.flex.aifs, .grid.aifs {
  align-items: flex-start;
}

.flex.aife, .grid.aife {
  align-items: flex-end;
}

.overflow {
  width: 100%;
  overflow-x: auto;
}

.small {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
}

.large {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: normal;
}

.btn-align-right {
  text-align: right;
}

.btn-mobile-only {
  display: none;
}

.border-tb {
  border-top: 1px solid #abb8c1;
  border-bottom: 1px solid #abb8c1;
}

/* MEDIA QUERIES */
@media (max-width: 1280px) {
  h1, .h1 {
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 36px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: normal;
  }

  h2, .h2 {
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 28px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
  }

  h3, .h3 {
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 24px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
  }

  h4, .h4 {
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
  }

  /* CONTAINER */
  .container {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }

  main section.container {
    padding-left: 0;
    padding-right: 0;
    width: calc(100% - (horiz-padding-mobile * 2));
    margin-left: 20px;
    margin-right: 20px;
  }

  /* UTILITY */
  .large {
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
  }

  .btn-mobile-only {
    display: inline-block;
    margin-top: 24px;
  }

  .btn-align-right {
    display: none;
  }
}
/* SECTION PADDING */
.pt-12x {
  padding-top: 96px;
}

.pt-4x {
  padding-top: 32px;
}

.pt-8x {
  padding-top: 64px;
}

.pb-12x {
  padding-bottom: 96px;
}

.pb-8x {
  padding-bottom: 64px;
}

.pb-6x {
  padding-bottom: 48px;
}

.pb-4x {
  padding-bottom: 32px;
}

.pb-1x {
  padding-bottom: 8px;
}

.ptb-10x {
  padding-top: 80px;
  padding-bottom: 80px;
}

.ptb-12x {
  padding-top: 96px;
  padding-bottom: 96px;
}

.ptb-8x {
  padding-top: 64px;
  padding-bottom: 64px;
}

.ptb-4x {
  padding-top: 32px;
  padding-bottom: 32px;
}

.ptb-3x {
  padding-top: 24px;
  padding-bottom: 24px;
}

.ptb-2x {
  padding-top: 16px;
  padding-bottom: 16px;
}

.section-gap {
  padding-top: 32px;
  padding-bottom: 32px;
}

@media (max-width: 1024px) {
  .md-pt-8x {
    padding-top: 64px;
  }

  .md-pt-6x {
    padding-top: 48px;
  }

  .md-pt-4x {
    padding-top: 32px;
  }

  .md-pb-6x {
    padding-bottom: 48px;
  }

  .md-pb-4x {
    padding-bottom: 32px;
  }

  .md-ptb-8x {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .md-ptb-6x {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .md-ptb-4x {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .md-ptb-2x {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
/* ZOOM-IN BACKGROUND CARD */
.zoom-in {
  display: inline-block;
  overflow: hidden;
  border-radius: 4px;
}
.zoom-in img {
  display: block;
  width: 100%;
  border-radius: 4px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: center;
  transition: transform 0.5s ease-out, visibility 0.5s ease-in;
  will-change: transform;
}
.zoom-in:hover img {
  transform: scale(1.03);
}

.ratio-16x9 {
  aspect-ratio: 16/9;
}

.ratio-4x3 {
  aspect-ratio: 4/3;
}

.ratio-1x1 {
  aspect-ratio: 1/1;
}

/* HERO IMAGE / SLIDER */
#hero {
  position: relative;
  width: 100%;
  z-index: 5;
  padding-top: 64px;
}
#hero .background {
  height: 344px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#hero .text {
  position: relative;
  width: 100%;
  padding-top: 88px;
  padding-bottom: 48px;
  max-width: 780px;
}
#hero .text h1, #hero .text h2, #hero .text p {
  color: #ffffff;
}
#hero .text p {
  max-width: 580px;
}
@media (max-width: 1024px) {
  #hero {
    padding-top: 56px;
  }
  #hero .background {
    height: 190px;
  }
  #hero .text {
    padding-top: 24px;
  }
}

/* PROJECTS CARDS AND STATS */
.stats div {
  padding: 6px 0px;
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #abb8c1;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
}
.stats div:last-of-type {
  border-bottom: unset;
}
.stats div span:first-child {
  min-width: 55px;
}

.project-card-primary {
  border: 1px solid #abb8c1;
  border-radius: 4px;
  box-sizing: border-box;
  display: flex;
  height: 380px;
  overflow: hidden;
}
.project-card-primary > * {
  width: 50%;
}
.project-card-primary .image img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.project-card-primary .inner {
  position: relative;
}
.project-card-primary .inner .text {
  padding: 32px;
}
.project-card-primary .inner .text .name {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  margin-bottom: 24px;
}
.project-card-primary .inner .text .button {
  position: absolute;
  bottom: 32px;
  left: 32px;
}
.project-card-primary .inner .text p {
  font-size: 14px;
}
@media (max-width: 768px) {
  .project-card-primary {
    display: block;
    height: unset;
  }
  .project-card-primary > * {
    width: 100%;
  }
  .project-card-primary .image img {
    height: 200px;
  }
  .project-card-primary .inner {
    position: unset;
  }
  .project-card-primary .inner .text {
    padding: 30px 20px;
  }
  .project-card-primary .inner .text .name {
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
  }
  .project-card-primary .inner .text .button {
    position: unset;
    margin-top: 24px;
  }
}

.project-card-secondary {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row-reverse;
}
.project-card-secondary > * {
  width: 50%;
}
.project-card-secondary .image img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 420px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.project-card-secondary .text {
  padding-right: 40px;
}
.project-card-secondary .text .name {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.38;
  letter-spacing: normal;
  margin-bottom: 32px;
}
.project-card-secondary .text .stats {
  margin-bottom: 24px;
}
.project-card-secondary .text .stats div * {
  width: 50%;
}
.project-card-secondary .text .button {
  position: absolute;
  bottom: 40px;
  left: 80px;
}
@media (max-width: 1024px) {
  .project-card-secondary {
    display: block;
    padding: 30px 20px;
  }
  .project-card-secondary > * {
    width: 100%;
  }
  .project-card-secondary .image img {
    height: 200px;
    margin-bottom: 24px;
  }
  .project-card-secondary .inner {
    position: unset;
  }
  .project-card-secondary .inner .text {
    padding-right: 0px;
  }
  .project-card-secondary .inner .text .name {
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
  }
  .project-card-secondary .inner .text .button {
    position: unset;
    margin-top: 24px;
  }
}

/* LATEST NEWS MODULE */
section#latest-news {
  background-color: #ffffff;
  border-top: 1px solid #abb8c1;
}
section#latest-news h2 {
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  section#latest-news h2 {
    margin-bottom: 36px;
  }
}

.news-items .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease-in-out;
  text-decoration: none !important;
  border-left: 1px solid #abb8c1;
  padding-left: 24px;
}
.news-items .item .date {
  display: block;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: 0.7px;
  color: #132116;
  padding-bottom: 4px;
}
.news-items .item .title {
  display: block;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  padding-bottom: 24px;
}
.news-items .item .button-pdf::after {
  content: "\f15b";
  font-family: "Font Awesome 7 Pro";
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  color: #7be34e;
}
.news-items .item:hover {
  cursor: pointer;
}
.news-items .item:hover .button-icon {
  background-color: #132116;
  outline: none;
}
.news-items .item:hover .button-icon:after {
  color: #7be34e;
}
@media (max-width: 1024px) {
  .news-items .item {
    margin-bottom: 24px;
  }
  .news-items .item .title {
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
  }
}

.document-links p {
  margin: 0;
}
.document-links > * {
  border-top: solid 0.5px #abb8c1;
}
.document-links > *:first-of-type {
  border-top: unset;
}
.document-links a {
  text-decoration: none !important;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px 8px;
  color: #122d19;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
}
.document-links a:after {
  content: "\f15b";
  font-family: "Font Awesome 7 Pro";
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  line-height: 1.5;
  color: #61b340;
  display: block;
  font-weight: normal;
}
.document-links a:hover {
  background-color: #dfe3d9;
}
@media (max-width: 1024px) {
  .document-links a {
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
    padding: 12px 8;
  }
}

/* DOCUMENT LINKS */
.document-links a {
  text-decoration: none !important;
}
.document-links a span {
  padding: 0 12px 0 12px;
}
.document-links a span:first-child {
  padding-left: 0;
  min-width: 100px;
}
@media (max-width: 768px) {
  .document-links a span:first-child {
    flex-basis: calc(100% - 24px);
    min-width: unset;
  }
  .document-links a span {
    padding: 0 8px 0 0;
  }
  .document-links a span:nth-last-of-type(2) {
    width: calc(100% - 100px);
  }
}

/* TABLES */
table {
  border-collapse: collapse;
}
table thead {
  background-color: #122d19;
}
table tr {
  border-bottom: 1px solid #abb8c1;
}
table th {
  padding: 12px 6px;
  text-align: left;
  color: #ffffff;
  font-weight: normal;
}
table td {
  padding: 12px 6px;
  text-align: left;
  color: #132116;
}
table td:first-child, table th:first-child {
  padding-left: 24px;
}
table td:last-child, table th:last-child {
  padding-right: 24px;
}
@media (max-width: 1024px) {
  table tr {
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
  }
}

p.instruction {
  font-size: 12px;
  line-height: 16px;
  color: rgba(51, 63, 72, 0.75);
  margin: 4px 0;
  opacity: 0;
  pointer-events: none;
}

p.instruction.show {
  opacity: 1;
  pointer-events: all;
}

/* TABS*/
.tabs .nav-tabs > li {
  color: #122d19;
}
.tabs .nav-tabs > li.current {
  background-color: #dfe3d9;
}
.tabs .sub-tabs {
  background-color: #ffffff;
  border: 1px solid #abb8c1;
}
.tabs .sub-tabs > li {
  background-color: #ffffff;
  color: #122d19;
}
.tabs .sub-tabs > li:hover {
  color: #132116;
}
.tabs select {
  background-color: #dfe3d9;
}
.tabs .select-wrapper select {
  color: #122d19;
}
.tabs .tab-content {
  display: none;
  padding-top: 24px;
}
.tabs .tab-content.active {
  display: block;
  -webkit-animation: fadeIn 0.5s;
          animation: fadeIn 0.5s;
}

header.desktop {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  background-color: #ffffff;
  box-shadow: 0 0 4px -2px #abb8c1;
}
header.desktop.fixed .top {
  position: relative;
  opacity: 0;
  height: 0;
}
header.desktop .top {
  background-color: #122d19;
  height: 32px;
  transition: all 0.25s ease-in-out;
}
header.desktop .top .container {
  align-items: center;
  justify-content: flex-end;
  min-height: 32px;
}
header.desktop .top div {
  color: #ffffff;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: 0.7px;
}
header.desktop .top .stock-quote {
  margin-left: 32px;
  color: #ffffff;
}
header.desktop .top .stock-quote span {
  display: inline-block;
  margin-left: 8px;
}
header.desktop .top .stock-quote span.ticker {
  color: #7be34e;
}
header.desktop .bottom .container {
  align-items: center;
  justify-content: flex-end;
}
header.desktop .bottom .logo {
  padding-right: 20px;
  margin-right: auto;
  transition: all 0.25s ease-in-out;
}
header.desktop .bottom .logo:hover {
  opacity: 0.65;
}
header.desktop .bottom .logo img {
  width: 192px;
  display: block;
}
header.desktop .bottom nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
header.desktop .bottom nav > ul > li {
  display: inline-block;
  position: relative;
  margin: 0 0 -4px 0;
  padding: 20px 12px;
}
header.desktop .bottom nav > ul > li > a {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  color: #122d19;
  display: block;
  transition: all 0.25s ease-in-out;
  border-bottom: 2px solid transparent;
  transition: border-color 0.5s ease-in-out;
  padding-bottom: 4px;
}
header.desktop .bottom nav > ul > li:hover > a {
  border-bottom: 2px solid #61b340;
}
header.desktop .bottom nav > ul ul {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  background: #dfe3d9;
  min-width: 265px;
  position: absolute;
  border-radius: 6px;
  padding: 8px 0;
  transition: opacity 0.25s ease, visibility 0s linear 0.2s;
}
header.desktop .bottom nav > ul > li {
  position: relative;
}
header.desktop .bottom nav > ul > li > ul {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
header.desktop .bottom nav > ul > li:last-of-type > ul {
  left: 0;
}
header.desktop .bottom nav > ul > li:hover > ul {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
header.desktop .bottom nav > ul > li > ul > li {
  position: relative;
}
header.desktop .bottom nav > ul > li > ul > li > a {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  display: inline-block;
  width: 100%;
  padding: 10px 20px;
  transition: all 0.25s ease-in-out;
}
header.desktop .bottom nav > ul > li > ul > li:hover > a {
  opacity: 0.6;
}
header.desktop .bottom nav > ul > li > ul > li.has-children {
  position: relative;
}
header.desktop .bottom nav > ul > li > ul > li.has-children > a {
  position: relative;
  cursor: pointer;
  padding-right: 40px;
  z-index: 2;
}
header.desktop .bottom nav > ul > li > ul > li.has-children > a::after {
  content: "\f078";
  font-family: "Font Awesome 7 Pro";
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.25s ease;
  pointer-events: none;
}
header.desktop .bottom nav > ul > li > ul > li.has-children > ul {
  background-color: #ffffff;
  position: relative;
  display: none;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: none !important;
  border-radius: unset;
}
header.desktop .bottom nav > ul > li > ul > li.has-children > ul li {
  padding-bottom: 12px;
}
header.desktop .bottom nav > ul > li > ul > li.has-children > ul li:hover {
  opacity: 0.6;
}
header.desktop .bottom nav > ul > li > ul > li.has-children > ul li:last-of-type {
  padding-bottom: 0px;
}
header.desktop .bottom nav > ul > li > ul > li.has-children.open > a::after {
  transform: translateY(-50%) rotate(180deg);
}
header.desktop .bottom nav > ul > li > ul > li.has-children > ul li a {
  padding-left: 32px;
}

header.mobile {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 0 4px -2px #abb8c1;
}
header.mobile > .top {
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: space-between;
  padding: 8px 20px;
  width: 100%;
  height: 56px;
  align-items: center;
  background-color: #ffffff;
}
header.mobile > .top .hamburger {
  width: 24px;
  cursor: pointer;
  overflow: hidden;
}
header.mobile > .top .hamburger span {
  width: 100%;
  height: 3px;
  background-color: #132116;
  margin-bottom: 7px;
  display: block;
  transition: all 0.25s ease-in-out;
}
header.mobile > .top .hamburger span:last-of-type {
  margin-bottom: 0;
}
header.mobile > .top .logo img {
  max-height: 48px;
  width: auto;
  display: block;
}
header.mobile nav {
  display: none;
  width: 100%;
  height: calc(100vh - 56px);
  height: calc(100dvh - 56px);
  overflow-y: auto;
  background-color: #ffffff;
}
header.mobile nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
header.mobile nav > ul {
  position: relative;
  z-index: 2;
  padding: 40px 0px 140px 0px;
  background-color: #ffffff;
}
header.mobile nav > ul > li {
  position: relative;
}
header.mobile nav > ul > li a {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  color: #122d19;
  display: block;
  margin: 0 20px;
  padding: 8px 0;
  position: relative;
}
header.mobile nav > ul > li > ul {
  display: none;
  padding: 12px 0px;
}
header.mobile nav > ul > li > ul a {
  display: block;
  padding: 4px 32px;
  margin: 0;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.57;
  letter-spacing: normal;
  transition: all 0.25s ease-in-out;
}
header.mobile nav > ul > li > ul ul.subsubmenu {
  padding-top: 8px;
  padding-bottom: 8px;
}
header.mobile nav > ul > li > ul ul li a {
  padding: 0px 16px 4px 56px;
  font-weight: 400;
}
header.mobile nav > ul > li.has-children > a:after {
  content: "\f077";
  font-family: "Font Awesome 7 Pro";
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  position: absolute;
  right: 0px;
  top: 7px;
  background-color: #dfe3d9;
  color: #132116;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 28px;
  flex-shrink: 0;
}
header.mobile nav > ul > li.has-children.active > a:after {
  content: "\f078";
}
header.mobile nav .footer {
  background-color: #132116;
  width: 100%;
  padding: 24px 20px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  opacity: 0;
  transition: all 0.25s ease-in-out;
}
header.mobile nav .search a {
  color: #ffffff;
}
header.mobile nav .social {
  margin-top: 8px;
}
header.mobile nav .social a {
  color: #ffffff;
  margin-right: 24px;
}
header.mobile nav .stock-quote {
  color: #ffffff;
  justify-content: space-between;
  margin: 16px 0px;
}
header.mobile nav .stock-quote > div {
  width: calc((100% - 110px) / 12 * 6 + 50px);
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
}
header.mobile nav .flex-container {
  flex-wrap: wrap;
  gap: 10px;
}
header.mobile.open .logo img {
  display: block;
}
header.mobile.open .top {
  background-color: #ffffff;
}
header.mobile.open .hamburger {
  height: 28px;
}
header.mobile.open .hamburger span {
  background-color: #132116;
}
header.mobile.open .hamburger span:nth-child(1) {
  margin-left: 50px;
}
header.mobile.open .hamburger span:nth-child(2) {
  transform: translate(0px, 6px) rotate(45deg);
  border-radius: 2px;
}
header.mobile.open .hamburger span:nth-child(3) {
  transform: translate(0px, -4px) rotate(-45deg);
  border-radius: 2px;
}
header.mobile.open nav .footer {
  opacity: 1;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1024px) {
  header.desktop {
    display: none !important;
  }

  header.mobile {
    display: block !important;
  }
}
/* SEARCH */
nav:has(~ .search #search_toggle:checked) {
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

header .search {
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
}
header .search-form {
  width: 0px;
  height: 100%;
  border: none;
  padding: 0px;
  visibility: hidden;
  transition: width 0.25s linear;
}
header .search-form .s {
  border: none;
  height: 100%;
  width: 100%;
  color: #122d19;
}
header .search-form .s:focus {
  outline: 0;
}
header .search-form .s::-webkit-input-placeholder {
  color: #ffffff;
}
header .search-form .s:-moz-placeholder {
  color: #ffffff;
}
header .search-form .s::-moz-placeholder {
  color: #ffffff;
}
header .search-form .s:-ms-input-placeholder {
  color: #ffffff;
}
header.desktop .search {
  margin-left: 20px;
}
header.desktop .search-icon {
  color: #122d19;
  cursor: pointer;
}
header.desktop .search-icon:hover {
  opacity: 0.65;
}
header.desktop .search-form {
  padding-left: 48px;
  position: absolute;
  z-index: 10;
  top: 0;
  right: 32px;
}
header.desktop .search-form .s {
  border-left: 1px solid #abb8c1;
  padding: 8px 4px;
  background-color: transparent;
}
header.desktop #search_toggle {
  display: none;
}
header.desktop #search_toggle:checked ~ .search-form {
  visibility: visible;
  width: 340px;
}
header.desktop .hint {
  display: none;
  color: #122d19;
  font-size: 12px;
  position: absolute;
  top: 25px;
  right: 0;
  white-space: nowrap;
  transition: opacity 0.25s ease-in-out;
}
header.desktop .hint.visible {
  display: block;
  opacity: 1;
}
header.desktop.scrolled .search-icon {
  color: #122d19;
}
header.desktop.scrolled .s {
  color: #122d19;
}
header.desktop.scrolled .s::-webkit-input-placeholder {
  color: #122d19;
}
header.desktop.scrolled .s:-moz-placeholder {
  color: #122d19;
}
header.desktop.scrolled .s::-moz-placeholder {
  color: #122d19;
}
header.desktop.scrolled .s:-ms-input-placeholder {
  color: #122d19;
}
header.desktop.scrolled .hint {
  color: #122d19;
}
header.mobile .search {
  position: relative;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 20px;
}
header.mobile .search .search-icon {
  width: 32px;
  flex-shrink: 0;
}
header.mobile .search-form {
  position: relative;
  width: 56px;
  height: 40px;
}
header.mobile .search-form input {
  border-radius: 8px;
  padding: 4px;
  background-color: transparent;
  color: #ffffff;
}
header.mobile .search-form input[type=submit] {
  padding: 4px 8px;
  position: absolute;
  top: 2px;
  right: 2px;
  height: 32px;
  opacity: 0;
  transition: all 0.25s ease-in-out;
}
header.mobile .search-form .s {
  color: #ffffff;
}
header.mobile .search-form .s::-webkit-input-placeholder {
  color: #ffffff;
}
header.mobile .search-form .s:-moz-placeholder {
  color: #ffffff;
}
header.mobile .search-form .s::-moz-placeholder {
  color: #ffffff;
}
header.mobile .search-form .s:-ms-input-placeholder {
  color: #ffffff;
}
header.mobile #mobile_search_toggle {
  position: absolute;
  right: 0;
  width: 24px;
  height: 24px;
  opacity: 0;
}
header.mobile #mobile_search_toggle:checked ~ .search-form {
  visibility: visible;
  width: 100%;
}
header.mobile #mobile_search_toggle:checked ~ .search-form input[type=submit] {
  opacity: 1;
}

.grid > a {
  text-decoration: none !important;
}

body.cat-projects #hero .background {
  background-image: url(../../../../_resources/banners/banner_vanguard.jpg);
}

body.cat-projects.str-lazlo-area #hero .background {
  background-image: url(../../../../_resources/banners/hero_inner.jpg);
}

/* HERO */
section#hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
section#hero .container .text {
  z-index: 1;
  margin-top: auto;
}
section#hero .container .text h1 {
  margin: 0;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
main {
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  align-items: flex-start;
}
main .sidebar {
  margin-right: 60px;
}
main .sidebar .sidebar-nav {
  width: 260px;
  height: auto;
  border: 1px solid #abb8c1;
  border-radius: 4px;
  margin-bottom: 24px;
}
main .sidebar .sidebar-nav .sidebar-title {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: normal;
  color: #122d19;
  background-color: #dfe3d9;
  padding: 42px 20px 20px 20px;
  margin-bottom: 0px;
  border-bottom: 1px solid #abb8c1;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
main .sidebar .sidebar-nav #subnavigation {
  padding: 30px 0px;
}
main .sidebar .sidebar-nav #subnavigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
main .sidebar .sidebar-nav #subnavigation > ul li {
  padding: 0px 20px;
  position: relative;
}
main .sidebar .sidebar-nav #subnavigation > ul a {
  transition: all 0.25s ease-in-out;
}
main .sidebar .sidebar-nav #subnavigation > ul a:hover {
  color: #132116;
}
main .sidebar .sidebar-nav #subnavigation > ul > li {
  margin-bottom: 8px;
}
main .sidebar .sidebar-nav #subnavigation > ul > li.active:before {
  content: "";
  width: 2px;
  height: 32px;
  background-color: #61b340;
  position: absolute;
  top: -3px;
  left: 0;
}
main .sidebar .sidebar-nav #subnavigation > ul ul {
  padding: 8px 0px;
}
main .sidebar .sidebar-nav #subnavigation > ul ul > li {
  margin-bottom: 4px;
}
main .sidebar .download-box {
  border-radius: 4px;
  position: relative;
  width: 260px;
  height: auto;
  border: 1px solid #abb8c1;
}
main .sidebar .download-box > div {
  padding: 20px 20px 30px 20px;
}
main .sidebar .download-box .sidebar-title {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: normal;
  color: #122d19;
  background-color: #dfe3d9;
  padding: 42px 20px 20px 20px;
  margin-bottom: 0px;
  border-bottom: 1px solid #abb8c1;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
main .sidebar .download-box .zoom-in {
  margin-bottom: 8px;
}
main .sidebar .download-box .title {
  transition: all 0.25s ease-in-out;
}
main .sidebar .download-box .title:after {
  content: "\f019";
  position: absolute;
  bottom: 34px;
  right: 20px;
  margin-left: 8px;
  font-family: "Font Awesome 7 Pro";
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  color: #61b340;
  cursor: pointer;
}
main .sidebar .download-box .title:hover {
  opacity: 0.65;
}
@media (max-width: 1600px) {
  main .sidebar {
    margin-right: 40px;
  }
  main .sidebar .sidebar-nav {
    width: 240px;
  }
  main .sidebar .download-box {
    width: 240px;
  }
}
@media (max-width: 1024px) {
  main .sidebar {
    display: none;
  }
}
main #content {
  width: 100%;
  max-width: 1140px;
  min-height: 200px;
  margin-left: auto;
  overflow: hidden;
}
main #content a:not(.button, .button-inverse, .button-icon, .arrow) {
  text-decoration: underline;
}
main #content a:not(.button, .button-inverse, .button-icon, .arrow):hover {
  opacity: 0.65;
}
main #content h3, main #content .h3 {
  margin-top: 1.5em;
  margin-bottom: 1.125em;
}
main #content h3:first-child {
  margin-top: 0;
}
main #content .h3:first-child {
  margin-top: 0;
}
main #content ul:not(.nav-tabs, .sub-tabs), main #content ol {
  padding-left: 24px;
}
main #content ul:not(.nav-tabs, .sub-tabs) li, main #content ol li {
  color: #132116;
  margin-bottom: 0.55em;
}
main #content h3.headline {
  margin: 0;
  padding: 24px 0;
}
main #content .headline a {
  text-decoration: none;
}
@media (max-width: 1024px) {
  main #content h3.headline {
    padding: 20px 0;
    font-size: 18px;
  }
}

/* BIOS */
div.bios .bio .profile .image {
  border: 1px solid #abb8c1;
  background-image: url(../../../../_resources/bios/bio_placeholder.jpg);
}
div.bios .bio .profile .text .name {
  color: #122d19;
}
div.bios .bio .profile .text .title {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  color: #132116;
}
div.bios .bio.open .profile {
  background-color: #132116;
}
div.bios .bio.open .profile .text .name, div.bios .bio.open .profile .text .title {
  color: #ffffff;
}
div.bios .bio:hover .profile {
  background-color: #132116;
}
div.bios .bio:hover .profile .text .name, div.bios .bio:hover .profile .text .title {
  color: #ffffff;
}
div.bios .bio .body .title {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #132116;
}
@media (max-width: 480px) {
  div.bios .bio.open .profile {
    background-color: unset;
  }
  div.bios .bio.open .profile .text .name {
    color: #122d19;
  }
  div.bios .bio.open .profile .text .title {
    color: #132116;
  }
}

.info-panel {
  border: 1px solid #abb8c1;
  border-radius: 8px;
  padding: 48px;
}
.info-panel h2 {
  margin-bottom: 56px;
}
.info-panel img {
  border-radius: 4px;
}
.info-panel .stats {
  padding: 48px 0px;
}
.info-panel .stats div > * {
  width: 50%;
}
.info-panel .stats div span:last-child {
  color: #132116;
}
.info-panel .stats p {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .info-panel {
    padding: 24px;
  }
  .info-panel h2 {
    margin-bottom: 32px;
  }
  .info-panel .stats {
    padding: 24px 0px;
  }
}

/* EVENTS */
.event-listing h2 {
  margin-bottom: 56px;
}
.event-listing .upcoming {
  margin-bottom: 64px;
}
.event-listing .event-card {
  border: 1px solid #abb8c1;
  padding: 24px;
  border-radius: 4px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.event-listing .event-card .head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.event-listing .event-card .head .date {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: 0.7px;
  color: #132116;
}
.event-listing .event-card .head .location {
  color: #132116;
}
@media (max-width: 1024px) {
  .event-listing {
    margin-bottom: 32px;
  }
  .event-listing .upcoming {
    margin-bottom: 32px;
  }
}

/* ACCORDION */
.accordion {
  display: flex;
  flex-direction: column;
}
.accordion .panel {
  position: relative;
  background-color: #ffffff;
  border-top: solid 1px #abb8c1;
  padding: 0;
  margin-bottom: 0;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
}
.accordion .panel:last-of-type {
  border-bottom: solid 1px #abb8c1;
}
.accordion .panel .content {
  display: none;
  padding: 48px 0;
}
.accordion .panel .title {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.38;
  letter-spacing: normal;
  width: calc(100% - 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin: 0;
  padding: 24px 0;
  transition: all 0.25s ease-in-out;
}
.accordion .panel .title:after {
  content: "\f078";
  font-family: "Font Awesome 7 Pro";
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  position: absolute;
  right: 0px;
  top: 32px;
  background-color: #132116;
  color: #ffffff;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 28px;
  flex-shrink: 0;
}
.accordion .panel .title:hover {
  color: #132116;
}
.accordion .panel[aria-expanded=true]::after {
  width: 0;
}
.accordion .panel[aria-expanded=true] .title::after, .accordion .panel[aria-expanded=true] > h3::after {
  content: "\f077";
}
@media (max-width: 1024px) {
  .accordion .panel::after {
    content: none;
  }
  .accordion .panel .title {
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    padding: 20px 0;
  }
  .accordion .panel .title:hover {
    color: #1b2d4d;
  }
  .accordion .panel .title::after {
    font-size: 16px;
    top: 20px;
  }
  .accordion .panel .content {
    padding: 24px 0px;
  }
}

.info-panel .accordion:not(:first-child) {
  margin-top: 48px;
}
.info-panel .accordion .panel ul {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
.info-panel .accordion .panel .content {
  padding: 24px 0px;
}
.info-panel .accordion .panel .title {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
}
.info-panel .accordion .panel .title::after {
  top: 24px;
}
@media (max-width: 1024px) {
  .info-panel .accordion .panel .title {
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: normal;
  }
  .info-panel .accordion .panel .title::after {
    top: 16px;
  }
}

img.cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a.popup-video {
  display: block;
  position: relative;
  margin-bottom: 20px;
}
a.popup-video img {
  aspect-ratio: 2/1;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
a.popup-video::after {
  content: attr(data-button-text, "View the Interactive Tour");
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 4px 10px;
  background-color: #fff;
  border-radius: 4px;
  pointer-events: none;
  white-space: nowrap;
}
a.popup-video:hover::after {
  color: #fff;
  background-color: #132116;
}

/* CONTACT */
.contact .item {
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .contact .item {
    margin-bottom: 20px;
  }
}

/* Subscribe */
#subscribe {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../../../../_resources/backgrounds/bg_signup.jpg);
}
#subscribe .header {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 42px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.24;
  letter-spacing: normal;
  margin: 0px;
  max-width: 300px;
  color: #ffffff;
}
#subscribe .icon-doc {
  width: 54px;
  height: 54px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
}
#subscribe .icon-doc i {
  color: #ffffff;
  font-size: 16px;
}
#subscribe #form-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
#subscribe #form-details .form-group {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#subscribe #form-details .form-group input[type=text] {
  width: calc((100% - 176px) / 12 * 6 + 80px);
  border: 0;
  background-color: #ffffff;
  color: #122d19;
  padding: 10px 12px;
  height: 48px;
  border-radius: 4px;
}
#subscribe #form-details .form-group input[type=text]::-webkit-input-placeholder {
  color: #122d19;
}
#subscribe #form-details .consent {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  display: flex;
  align-items: flex-start;
}
#subscribe #form-details .consent input[type=checkbox] {
  margin-right: 8px;
  margin-top: 4px;
}
#subscribe #form-details .consent label {
  color: #ffffff;
}
#subscribe .signup-message {
  margin-top: 12px;
  color: #ffffff;
}
@media (max-width: 1024px) {
  #subscribe .flex-container {
    display: block;
  }
  #subscribe .header {
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 24px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    max-width: unset;
    margin: 12px 0px;
  }
  #subscribe #form-details .consent {
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
  }
}
@media (max-width: 768px) {
  #subscribe #form-details .form-group {
    display: block;
  }
  #subscribe #form-details .form-group input[type=text] {
    width: 100%;
    margin-bottom: 16px;
  }
}

/* FOOTER */
footer {
  background-color: #122d19;
  color: #ffffff;
}
footer .top .flex {
  display: flex;
  justify-content: space-between;
}
footer .top .logo {
  width: 77px;
}
footer .top .logo img {
  display: block;
  transition: all 0.25s ease-in-out;
}
footer .top .logo a:hover {
  opacity: 0.65;
}
footer .top .logo a:hover img {
  opacity: 0.5;
}
footer .top .social {
  display: flex;
  gap: 20px;
}
footer .top .social a {
  transition: all 0.25s ease-in-out;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #132116;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .top .social a i {
  color: #7be34e;
}
footer .top .social a:hover {
  background-color: #ffffff;
  color: #61b340;
}
footer .top .social a:hover i {
  color: #122d19;
}
footer .top .footer-nav {
  padding-top: 56px;
  padding-bottom: 80px;
}
footer .top .footer-nav a {
  color: #ffffff;
}
footer .top .footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .top .footer-nav ul.top-level {
  display: grid;
  grid-template-columns: repeat(6, minmax(160px, 273px));
}
footer .top .footer-nav ul.top-level > li {
  margin: 0px;
}
footer .top .footer-nav ul.top-level > li > a {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal;
}
footer .top .footer-nav ul.top-level > li > a:hover {
  opacity: 0.5;
}
footer .top .footer-nav ul.top-level > li > ul {
  margin-top: 8px;
}
footer .top .footer-nav ul.top-level > li > ul a {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  opacity: 0.7;
}
footer .top .footer-nav ul.top-level > li > ul a:hover {
  opacity: 1;
}
footer .top .footer-nav ul.top-level > li > ul li {
  margin: 4px 0;
}
footer .bottom {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #abb8c1;
  color: #ffffff;
  padding-bottom: 40px;
  padding-top: 12px;
}
footer .bottom a {
  color: #ffffff;
}
footer .bottom a:hover {
  opacity: 0.75;
}
footer .bottom .copyright span {
  display: inline-block;
  margin-right: 24px;
}
footer .bottom .copyright span a {
  display: inline-block;
}
footer .bottom .blender {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
}

#width-check {
  z-index: 0;
  position: relative;
}

@media (max-width: 1024px) {
  footer .top .logo {
    display: none;
  }
  footer .top .flex {
    justify-content: center;
    padding-bottom: 40px;
  }
  footer .footer-nav {
    display: none;
  }
  footer .bottom {
    display: block;
    text-align: center;
  }
  footer .bottom > div {
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .copyright span {
    display: block;
  }
}