/* Layout */
/* Spacing */
/* Transitions */
/* Breakpoints */
/* Z-index scale */
/* Forms */
/* Minimal base reset for consistent rendering */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  font-family: 'Poppins', Arial, sans-serif;
  color: #52617a;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #071632;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
a:hover {
  color: #89be25;
}
button,
input,
textarea,
select {
  font-family: 'Poppins', Arial, sans-serif;
}
.is-lightbox-open {
  overflow: hidden;
}
.wrap {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 768px) and (max-width: 989px), all and (max-width: 767px) {
  .wrap {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* Utility */
.u-hidden {
  display: none !important;
}
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  width: 100%;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.site-header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 30px rgba(7, 22, 50, 0.08);
  -moz-box-shadow: 0 10px 30px rgba(7, 22, 50, 0.08);
  -webkit-box-shadow: 0 10px 30px rgba(7, 22, 50, 0.08);
  -webkit-animation: headerSlideDown 0.25s ease both;
  animation: headerSlideDown 0.25s ease both;
}
.site-header--sticky .site-header__wrap {
  min-height: 70px;
}
@-webkit-keyframes headerSlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes headerSlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.site-header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 13px;
  font-weight: 500;
}
.site-header__nav a {
  color: #071632;
}
.site-header__nav a:hover {
  color: #89be25;
}
.site-header__nav .btn--primary {
  color: #ffffff;
}
.site-header__nav .btn--primary:hover {
  color: #ffffff;
}
.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: #f7fbff;
  color: #071632;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
}
.logo {
  display: inline-flex;
  align-items: center;
  color: #071632;
  font-weight: 600;
}
.logo img {
  width: 182px;
  height: auto;
}
.site-header--sticky .logo img {
  width: 162px;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .logo img {
    width: 160px;
  }
  .site-header--sticky .logo img {
    width: 150px;
  }
}
@media all and (max-width: 767px) {
  .logo img {
    width: 145px;
  }
  .site-header--sticky .logo img {
    width: 138px;
  }
  .site-header__nav {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 82px;
    display: none;
    padding: 18px;
    background: #ffffff;
    border-radius: 14px;
    -moz-border-radius: 14px;
    -webkit-border-radius: 14px;
    box-shadow: 0 14px 36px rgba(7, 22, 50, 0.1);
    -moz-box-shadow: 0 14px 36px rgba(7, 22, 50, 0.1);
    -webkit-box-shadow: 0 14px 36px rgba(7, 22, 50, 0.1);
  }
  .is-menu-open .site-header__nav {
    display: grid;
    gap: 16px;
  }
  .site-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.site-footer {
  position: relative;
  background: #ffffff;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.35fr;
  gap: 56px;
  padding-top: 78px;
  padding-bottom: 55px;
}
.site-footer__brand p,
.site-footer__col p {
  margin: 25px 0 0;
  font-size: 14px;
  line-height: 1.8;
}
.site-footer__col h3 {
  margin: 0 0 20px;
  color: #071632;
  font-size: 15px;
  font-weight: 600;
}
.site-footer__col a {
  display: block;
  margin: 0 0 13px;
  color: #071632;
  font-size: 14px;
  font-weight: 400;
}
.site-footer__col a:hover {
  color: #89be25;
}
.site-footer__socials {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}
.site-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #f7fbff;
  color: #071632;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}
.site-footer__socials a:hover {
  color: #89be25;
}
.site-footer__bottom {
  border-top: 1px solid #ededed;
}
.site-footer__bottom .wrap {
  display: flex;
  gap: 86px;
  align-items: center;
  min-height: 68px;
  color: #8490a3;
  font-size: 12px;
  font-weight: 400;
}
.site-footer__bottom a {
  color: #071632;
}
.site-footer__bottom a:hover {
  color: #89be25;
}
.site-footer__bottom p {
  margin-right: auto;
}
.back-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  background: #61c8bd;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(14px);
  -ms-transform: translateY(14px);
  transform: translateY(14px);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
}
.back-top--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.back-top:hover {
  background: #89be25;
  color: #ffffff;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .site-footer__top {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (max-width: 767px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 48px;
  }
  .site-footer__bottom .wrap {
    display: grid;
    gap: 12px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  border: 2px solid transparent;
  border-radius: 7px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn--primary {
  background: #89be25;
  color: #ffffff;
}
.btn--primary:hover {
  background: #73a01f;
  color: #ffffff;
}
.btn--outline {
  background: #ffffff;
  border-color: #A8B2C3;
  color: #071632;
}
.btn--outline:hover {
  border-color: #89be25;
  color: #89be25;
}
.btn--dark-outline {
  background: transparent;
  border-color: #071632;
  color: #071632;
}
.btn--dark-outline:hover {
  background: #071632;
  color: #ffffff;
}
.btn--small {
  min-height: 47px;
  padding: 0 25px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}
input,
textarea,
select {
  min-height: 44px;
  border: 1px solid #ededed;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
}
/* Pages */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px);
    -ms-transform: translateY(24px);
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
h1,
h2,
h3 {
  margin-top: 0;
  color: #071632;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.18;
}
.eyebrow {
  margin: 0 0 12px;
  color: #89be25;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.photo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fde9df 0%, #ddf3ff 48%, #ffe3a4 100%);
  color: rgba(7, 22, 50, 0.35);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 82px;
  padding-bottom: 56px;
}
.hero__wrap {
  position: relative;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  min-height: 455px;
}
.hero__content {
  position: relative;
  z-index: 4;
  padding-top: 26px;
}
.hero h1 {
  margin-bottom: 29px;
  font-size: 52px;
  letter-spacing: 0;
  -webkit-animation: heroFadeUp 0.8s ease both;
  animation: heroFadeUp 0.8s ease both;
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}
.hero p {
  max-width: 440px;
  margin: 0 0 45px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.65;
  -webkit-animation: heroFadeUp 0.8s ease both;
  animation: heroFadeUp 0.8s ease both;
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}
.hero__buttons {
  display: flex;
  gap: 24px;
  -webkit-animation: heroFadeUp 0.8s ease both;
  animation: heroFadeUp 0.8s ease both;
  -webkit-animation-delay: 0.55s;
  animation-delay: 0.55s;
}
.hero__visual {
  position: relative;
  min-height: 500px;
}
.hero__image {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  width: 122%;
  max-width: 820px;
  min-width: 0;
  height: auto;
  object-fit: contain;
  object-position: top right;
  -webkit-animation: heroFadeUp 0.9s ease both;
  animation: heroFadeUp 0.9s ease both;
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}
.stats {
  display: grid;
  background: #ffffff;
  border-radius: 17px;
  -moz-border-radius: 17px;
  -webkit-border-radius: 17px;
  box-shadow: 0 14px 36px rgba(7, 22, 50, 0.1);
  -moz-box-shadow: 0 14px 36px rgba(7, 22, 50, 0.1);
  -webkit-box-shadow: 0 14px 36px rgba(7, 22, 50, 0.1);
}
.stats--hero {
  position: relative;
  z-index: 5;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 42px 50px;
  -webkit-animation: heroFadeUp 0.8s ease both;
  animation: heroFadeUp 0.8s ease both;
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}
@media (prefers-reduced-motion: reduce) {
  .hero h1,
  .hero p,
  .hero__buttons,
  .hero__image,
  .stats--hero {
    -webkit-animation: none;
    animation: none;
  }
}
.stats__item {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 16px;
}
.stats__icon {
  grid-row: span 2;
  font-size: 42px;
}
.stats strong,
.stats--inline strong {
  display: block;
  color: #071632;
  font-size: 29px;
  font-weight: 600;
  line-height: 1;
}
.stats small {
  color: #52617a;
  font-size: 13px;
  line-height: 18px;
  display: block;
  font-weight: 500;
  margin-top: 8px;
}
.stats--inline small {
  color: #89be25;
  font-size: 13px;
  line-height: 18px;
  display: block;
  font-weight: 500;
  margin-top: 8px;
}
.stats__icon--pink {
  color: #89be25;
}
.stats__icon--yellow {
  color: #ffd763;
}
.stats__icon--mint {
  color: #61c8bd;
}
.stats__icon--blue {
  color: #76B8EE;
}
.services {
  position: relative;
  overflow: hidden;
  padding: 74px 0 80px;
  background: #fff9f6;
}
.services h2,
.news h2,
.gallery h2,
.impact h2 {
  margin-bottom: 32px;
  font-size: 32px;
}
.service-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 43px;
}
.service-card,
.article-card {
  overflow: hidden;
  background: #ffffff;
  border-radius: 14px;
  -moz-border-radius: 14px;
  -webkit-border-radius: 14px;
  box-shadow: 0 8px 24px rgba(7, 22, 50, 0.08);
  -moz-box-shadow: 0 8px 24px rgba(7, 22, 50, 0.08);
  -webkit-box-shadow: 0 8px 24px rgba(7, 22, 50, 0.08);
}
.article-card {
  display: block;
  color: #52617a;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.article-card:hover {
  color: #52617a;
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(7, 22, 50, 0.1);
  -moz-box-shadow: 0 14px 36px rgba(7, 22, 50, 0.1);
  -webkit-box-shadow: 0 14px 36px rgba(7, 22, 50, 0.1);
}
.service-card {
  position: relative;
  display: block;
  color: #52617a;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.service-card:hover {
  color: #52617a;
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(7, 22, 50, 0.1);
  -moz-box-shadow: 0 14px 36px rgba(7, 22, 50, 0.1);
  -webkit-box-shadow: 0 14px 36px rgba(7, 22, 50, 0.1);
}
.service-card__image {
  height: 242px;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.service-card:hover .service-card__image img {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}
.article-card:hover .article-card__image img {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}
.service-card__badge {
  position: absolute;
  left: 32px;
  top: 214px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  color: #ffffff;
  font-size: 31px;
  border-radius: 12px;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
}
.service-card__badge--yellow {
  background: #ffd763;
}
.service-card__badge--mint {
  background: #61c8bd;
}
.service-card__badge--green {
  background: #91BF43;
}
.service-card__body {
  padding: 60px 38px 34px;
}
.service-card h3,
.article-card h3 {
  margin-bottom: 13px;
  font-size: 23px;
}
.service-card p,
.article-card p {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.62;
}
.service-card__link,
.article-card__link,
.section-head > a {
  color: #071632;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.service-card:hover .service-card__link,
.article-card:hover .article-card__link,
.section-head > a:hover {
  color: #89be25;
}
.section-doodle--right {
  position: absolute;
  right: -39px;
  top: 70px;
  width: 122px;
  height: 122px;
  background: #61c8bd;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}
.section-doodle--left {
  position: absolute;
  left: 12px;
  top: 10px;
  color: #ffd763;
  font-size: 36px;
  font-weight: 600;
}
.impact {
  position: relative;
  overflow: hidden;
  padding: 78px 0 86px;
  background: #ffffff;
}
.impact:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 54%;
  background: #f7fbff;
}
.impact__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 56%) minmax(320px, 1fr);
  gap: 58px;
  align-items: center;
}
.impact__media,
.impact__content {
  position: relative;
  min-width: 0;
}
.impact__media {
  padding-bottom: 94px;
}
.impact__content {
  padding: 52px 0 52px 10px;
}
.impact__content h2 {
  margin-bottom: 22px;
  font-size: 40px;
}
.impact__lead {
  max-width: 460px;
  margin: 0 0 30px;
  color: #52617a;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}
.impact blockquote {
  position: relative;
  margin: 0;
  max-width: 500px;
  padding: 30px 34px 30px 76px;
  background: #ffffff;
  border-radius: 14px;
  -moz-border-radius: 14px;
  -webkit-border-radius: 14px;
  box-shadow: 0 14px 36px rgba(7, 22, 50, 0.1);
  -moz-box-shadow: 0 14px 36px rgba(7, 22, 50, 0.1);
  -webkit-box-shadow: 0 14px 36px rgba(7, 22, 50, 0.1);
}
.impact blockquote span {
    position: absolute;
    left: -7px;
    top: -24px;
    color: rgb(137, 190, 37);
    font-size: 58px;
    font-weight: 600;
    width: 100px;
}
.impact blockquote p {
  margin: 0 0 18px;
  color: #52617a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}
.impact cite {
  color: #071632;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}
.stats--inline {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 32px;
  border-radius: 16px;
  -moz-border-radius: 16px;
  -webkit-border-radius: 16px;
  box-shadow: 0 14px 36px rgba(7, 22, 50, 0.1);
  -moz-box-shadow: 0 14px 36px rgba(7, 22, 50, 0.1);
  -webkit-box-shadow: 0 14px 36px rgba(7, 22, 50, 0.1);
}
.impact__image {
  width: 100%;
  height: 390px;
  border-radius: 18px;
  -moz-border-radius: 18px;
  -webkit-border-radius: 18px;
}
.impact__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news {
  padding: 68px 0 80px;
  background: #f7fbff;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 38px;
}
.section-head h2 {
  margin-bottom: 0;
}
.article-card__image {
  height: 150px;
}
.article-card__body {
  padding: 25px 30px 30px;
}
.article-card time {
  display: block;
  margin-bottom: 12px;
  color: #52617a;
  font-size: 12px;
  font-weight: 500;
}
.gallery {
  padding: 62px 0 55px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 29px;
}
.gallery__item {
  position: relative;
  display: block;
  width: 100%;
  height: 156px;
  padding: 0;
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
}
.gallery__item:after {
  content: "\f00e";
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-left: -23px;
  margin-top: -23px;
  background: rgba(255, 255, 255, 0.92);
  color: #071632;
  font: 900 17px/1 "Font Awesome 6 Free";
  opacity: 0;
  -webkit-transform: scale(0.85);
  -ms-transform: scale(0.85);
  transform: scale(0.85);
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.gallery__item:hover:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.gallery__item:hover img {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}
.lightbox {
  position: fixed;
  z-index: 3000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(7, 22, 50, 0.92);
}
.lightbox__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86%;
  max-width: 1080px;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.lightbox__content img {
  width: auto;
  max-width: 100%;
  max-height: 72vh;
  margin: 0 auto;
  border-radius: 12px;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  box-shadow: 0 20px 46px rgba(7, 22, 50, 0.12);
  -moz-box-shadow: 0 20px 46px rgba(7, 22, 50, 0.12);
  -webkit-box-shadow: 0 20px 46px rgba(7, 22, 50, 0.12);
}
.lightbox__caption {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: 14px;
}
.lightbox__thumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding-bottom: 4px;
  overflow-x: auto;
}
.lightbox__thumb {
  width: 76px;
  height: 56px;
  padding: 0;
  border: 2px solid transparent;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  opacity: 0.65;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lightbox__thumb.is-active,
.lightbox__thumb:hover {
  border-color: #89be25;
  opacity: 1;
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.lightbox__close:hover {
  background: #89be25;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.lightbox__nav:hover {
  background: #89be25;
}
.lightbox__nav--prev {
  left: 18px;
}
.lightbox__nav--next {
  right: 18px;
}
.cta {
  padding: 0 0 72px;
}
.cta__box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 142px;
  padding: 28px 47px;
  overflow: hidden;
  background: #ffd763;
  border-radius: 16px;
  -moz-border-radius: 16px;
  -webkit-border-radius: 16px;
}
.cta h2 {
  margin: 0 0 10px;
  font-size: 29px;
}
.cta p {
  margin: 0;
  color: #071632;
  font-size: 16px;
  font-weight: 500;
}
.cta__buttons {
  display: flex;
  gap: 25px;
}
.cta__heart {
  position: absolute;
  right: 37px;
  bottom: -42px;
  color: #ffffff;
  font-size: 88px;
  font-weight: 600;
  line-height: 1;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .hero__wrap {
    grid-template-columns: 1fr 1fr;
  }
  .site-header__wrap {
    min-height: 82px;
  }
  .site-header__nav {
    gap: 18px;
    font-size: 11px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero p {
    font-size: 17px;
  }
  .hero__visual {
    min-height: 430px;
  }
  .hero__image {
    top: auto;
    bottom: 0;
    width: 112%;
  }
  .impact__layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .impact__content {
    padding: 0;
  }
  .impact__media {
    padding-bottom: 86px;
  }
  .service-grid,
  .article-grid {
    gap: 22px;
  }
  .stats--hero {
    padding: 30px;
  }
}
@media all and (max-width: 767px) {
  .hero {
    padding-bottom: 38px;
  }
  .hero__wrap {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero p {
    font-size: 17px;
  }
  .hero__buttons {
    flex-direction: column;
  }
  .hero__visual {
    min-height: 0;
  }
  .hero__image {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .stats--hero,
  .service-grid,
  .article-grid,
  .gallery__grid,
  .stats--inline {
    grid-template-columns: 1fr;
  }
  .impact {
    padding: 52px 0;
  }
  .impact__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .impact__media {
    padding-bottom: 0;
  }
  .impact__content {
    padding: 0;
  }
  .impact__content h2 {
    font-size: 32px;
  }
  .impact__image {
    height: 260px;
  }
  .stats--inline {
    position: static;
    margin-top: 16px;
    padding: 24px;
  }
  .stats--hero {
    padding: 26px;
  }
  .section-head {
    display: block;
  }
  .services,
  .news {
    padding: 52px 0;
  }
  .cta__box,
  .cta__buttons {
    display: grid;
  }
}
