 .lazyload {
     width: 100%;
     height: auto;
     display: block;
     filter: blur(20px);
     transition: filter 0.6s ease, opacity 0.6s ease;
     opacity: 0.7;
 }

 .lazy-loaded {
     filter: blur(0);
     opacity: 1;
 }
 body {
    background: #f3f3f3;
}

 *,
 .btn,
 ::after,
 a,
 img, .lazy-loaded{
     transition: all 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
     /* linear */

     transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750);
     /* linear */
     color: #266141;
     text-decoration: unset;
 }

 nav {
     padding: 22px 0;
     background: #ffffff;
 }

 nav .nav-custom {
     display: flex;
     flex-direction: row;
     flex-wrap: wrap;
     align-content: center;
     justify-content: center;
     align-items: center;
     width: 100%;
     gap: 90px;
 }

 nav .nav-custom a.navbar-brand {}

 nav .nav-custom ul.navbar-nav {
     display: flex;
     flex-direction: row;
     flex-wrap: wrap;
     align-content: center;
     align-items: center;
     gap: 60px;
 }

 nav .nav-custom ul.navbar-nav li {}

 nav .nav-custom ul.navbar-nav li a {
     font-family: Campton;
     font-size: 16px;
     font-style: normal;
     font-weight: 500;
     line-height: 28px;
     /* 175% */
     border-bottom: 2px solid transparent;
     padding: 0;
 }

 ul.dropdown-menu.show {
  margin-top: 36px;
  padding: 16px 16px;
  padding-bottom: 16px;
  border: unset !important;
  border-radius: 10px;
  box-shadow: 0px 0 50px 0px rgba(0, 0, 0, 0.1), 0px 0 30.5526px rgba(0, 0, 0, 0.04);
  margin-top: 20px !important;
  margin-left: -20px !important;
}
 ul.dropdown-menu.show::before {
  content: "\a";
  border-style: solid;
  border-width: 20px 14px 20px 0;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  left: 30%;
  transform: rotate(90deg);
  top: -22px;
}
 ul.dropdown-menu.show li {
  padding: 0 !important;
}
 ul.dropdown-menu.show li .dropdown-item {
  padding-bottom: 4px;
  border: unset;
}
 ul.dropdown-menu.show li .dropdown-item:hover,
 ul.dropdown-menu.show li .dropdown-item:focus {
  background: unset !important;
}

.nav-custom a.lang-switcher {
  padding: 0px 14px;
  width: auto;
  height: 52px;
  display: block;
}
.nav-custom a.lang-switcher::after{
 display:none
}
.nav-custom a.lang-switcher {
    height: 52px;
    line-height: 52px;
    color: #266141;
    border: 1px solid #cecece;
    border-radius: 10px;
    margin-left: 40px;
    text-decoration: unset !important;
    background: #fff;
} 
.nav-custom ul.dropdown-menu.lang.show {
    left: 20px !important;
    min-width: 48px !important;
    width: calc(100% - 40px);
    display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    transform: translate(40px, 0);
}

.burger-links a.dropdown-item {
    color: #333;
}
 nav .nav-custom ul.navbar-nav li a.active {
     border-color: #266142 !important;
 }

 .bg-gradient-green {
     background: linear-gradient(270deg, #DDF0DE 0%, #39965F 100%);
 }

 .btn {
     min-width: 210px;
     border-radius: 16px;
     padding: 12px 24px;
     text-align: center;
     font-family: Campton;
     font-size: 18px;
     font-style: normal;
     font-weight: 400;
     display: inline-flex;
     line-height: 1;
     flex-wrap: wrap;
     flex-direction: row;
     justify-content: center;
     align-items: center;
     align-content: center;
     gap: 12px;
 }

 .btn-outline-green {
     border: 2px solid #266141;
     color: #266141;
 }

 .btn-green {
     border: 2px solid #266141;
     background-color: #266141;
     color: #fff;
 }

 .btn-outline-green.w-arrow::after {
     content: "";
     width: 10px;
     height: 10px;
     border-right: 2px solid;
     border-top: 2px solid;
     border-color: #266141;
     transform: rotate(45deg);
 }

 .btn-outline-green:hover {
     border: 2px solid #266141;
     background-color: #266141;
     color: #fff;
 }

 .btn-green:hover {
     border: 2px solid #266141;
     background-color: #fff;
     color: #266141;
 }

 .btn-outline-green.w-arrow:hover:after {
     border-color: #fff
 }

 .custom-controls {
     display: flex;
     justify-content: center;
     align-items: center;
     margin-top: 0;
     gap: 15px;
     position: absolute;
     bottom: 20px;
     width: 100%;
     z-index: 2;
 }

 .custom-controls .prev,
 .custom-controls .next {
     background: none;
     border: none;
     cursor: pointer;
     background: #266142;
     display: flex;
     width: 40px;
     height: 40px;
     border-radius: 100%;
     flex-direction: row;
     padding: 0;
     justify-content: center;
     flex-wrap: wrap;
     align-items: center;
 }

 .custom-controls .prev {
     padding-right: 4px;
 }

 .custom-controls .next {
     padding-left: 4px;
 }

 .custom-controls .dots {
     display: flex;
     gap: 12px;
 }

 .custom-controls .dots button {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     border: none;
     background: #fff;
     cursor: pointer;
 }

 .custom-controls .dots button.active {
     background: #266142;
 }

 section.page-header {
     padding: 70px 0;
     background-color: #d5edf9;
     color: #fff;
     background-image: url(/assets/img/our-story-pattern.png);
     background-blend-mode: multiply;
 }

 section.page-header h1 {
     
     /* 57.143% */
     margin: 0;
     font-family: "KG HAPPY Solid" !important;
     font-style: normal;
     font-weight: 400;
     font-size: 40px;
     line-height: 75px;
     letter-spacing: -0.02em;
     color: #fff;
 }


 footer {
     background: #DDF0DE;
     padding: 48px 0 24px 0;
 }

 footer .subfooter {
     border-top: 1.9px solid #266142;
     padding-top: 24px;
     margin-top: 36px;
 }

 footer .footer-logo {}

 footer .footer-contact {}

 footer .footer-contact .title {
     font-family: 'Campton';
     font-size: 18px;
     font-style: normal;
     font-weight: 600;
     line-height: normal;
     margin-bottom: 12px;
 }

 footer .footer-contact span {
     display: block;
     font-family: Campton-Book;
     font-size: 16px;
     font-style: normal;
     font-weight: 400;
     line-height: normal;
 }

 footer .footer-contact span a {}

 footer .footer-contact.has-menu span a {
     font-family: 'Campton';
     font-size: 16px;
     margin-bottom: 8px;
     display: block;
     text-transform: uppercase;
 }

 footer .subfooter .corpprate {
     display: flex;
     flex-direction: row;
     flex-wrap: nowrap;
     align-content: center;
     justify-content: flex-end;
     align-items: center;
 }
