@charset "UTF-8";
:root {
  --font-size-base: 16/16*1rem;
  font-size: var(--font-size-base);
}

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

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

body {
  font-family: "Lato", sans-serif;
  font-size: var(--font-size-base);
  color: #2c3e50;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::-webkit-scrollbar {
  display: none;
  /* Альтернативный вариант: width: 0; height: 0; */
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 82.875rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section {
  width: 100%;
  padding: 3.125rem 0;
  scroll-margin-top: 6.25rem;
}
.section .section__header {
  text-align: center;
  margin-bottom: 2.5rem;
  z-index: 1;
}
.section .section__header .section__title {
  text-align: center;
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  color: #023346;
}
.section .section__header .section__subtitle {
  margin-top: 1.875rem;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  color: #109E92;
}
.section .section__header .section__intro {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  color: #023346;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 4.375rem 0;
  transition: padding 0.25s ease;
  z-index: 1200;
}
.site-header.is-scrolled {
  padding: 1.25rem 0;
  box-shadow: 0 2px 20px rgba(26, 47, 62, 0.08);
  background: rgba(16, 158, 146, 0.6);
  backdrop-filter: blur(10px);
}
.site-header.is-scrolled .burger-btn {
  display: flex;
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.header__logo-img {
  height: 3.375rem;
  width: auto;
  transition: opacity 0.25s ease;
}

.header__logo-img--color {
  display: none;
}

body.is-menu-open .header__logo-img--white {
  display: none;
}
body.is-menu-open .header__logo-img--color {
  display: block;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: #4a6070;
  transition: color 0.25s ease, background 0.25s ease;
}
.header__search-btn:hover {
  color: #2a7a6e;
  background: rgba(42, 122, 110, 0.08);
}
.header__search-btn svg {
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.lang-switcher__btn {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  padding: 5px 0.5rem;
}
.lang-switcher__btn:hover {
  font-weight: 600;
}
.lang-switcher__btn.is-active {
  font-weight: 600;
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  width: 2.5625rem;
  height: 2.5625rem;
  border-radius: 50%;
  border: 0.125rem solid #fff;
  transition: background 0.25s ease, transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.burger-btn:hover {
  background: none;
}
.burger-btn__line {
  display: block;
  width: 0.4625rem;
  height: 0.125rem;
  background: #fff;
  border-radius: 0.0625rem;
  transition: all 0.3s ease;
  transform-origin: center;
}
.burger-btn__line:nth-child(2) {
  width: 0.875rem;
}
.burger-btn.is-open .burger-btn__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 0.9375rem;
}
.burger-btn.is-open .burger-btn__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger-btn.is-open .burger-btn__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 0.9375rem;
}

.side-nav {
  position: fixed;
  right: 6.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.side-nav.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.side-nav__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.side-nav__inner::before {
  content: "";
  position: absolute;
  right: 0.4375rem;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 0.03125rem;
  background: #d0e2ec;
  pointer-events: none;
}

.side-nav__item {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0.75rem;
  padding: 10px 0;
  cursor: pointer;
  text-decoration: none;
  outline: none;
}
.side-nav__item:hover .side-nav__label {
  font-weight: 900;
}
.side-nav__item:hover:not(.is-active) .side-nav__dot {
  margin-right: 0;
  width: 0.875rem;
  height: 0.875rem;
  border: 4px solid #ffffff;
}
.side-nav__item.is-active .side-nav__label {
  font-weight: 900;
}
.side-nav__item.is-active .side-nav__dot {
  width: 0.875rem;
  height: 0.875rem;
  border: 4px solid #ffffff;
  background-color: #2a7a6e;
  margin-right: 0;
}

.side-nav__label {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  text-align: right;
  white-space: nowrap;
  transition: color 0.25s ease, font-weight 0.25s ease;
}

.side-nav__dot {
  margin-right: 0.1875rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: 0 solid;
  background-color: #ffffff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.mobile-nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 51, 70, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-nav__backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 1024px) {
  .mobile-nav__backdrop {
    display: none;
  }
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 35rem;
  background: #023346;
  color: #ffffff;
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.25);
}
.mobile-nav.is-open {
  transform: translateX(0);
  pointer-events: all;
}
@media (max-width: 600px) {
  .mobile-nav {
    max-width: 100%;
  }
}

.mobile-nav__inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 11.25rem 2.5rem 1.875rem;
  gap: 2.5rem;
}
@media (max-width: 1024px) {
  .mobile-nav__inner {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}
@media (max-width: 768px) {
  .mobile-nav__inner {
    padding-top: 8.75rem;
  }
}

.mobile-nav__list {
  position: relative;
  margin: auto 0 0;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.mobile-nav__list::before {
  content: "";
  position: absolute;
  right: 0.4375rem;
  top: 2.875rem;
  bottom: 2.875rem;
  width: 0.03125rem;
  background: #d0e2ec;
  pointer-events: none;
}

.mobile-nav__item {
  width: 100%;
}
.mobile-nav__item a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 0.625rem 0;
  outline: none;
  transition: color 0.25s ease;
}
.mobile-nav__item a:hover .mobile-nav__label {
  font-weight: 900;
}
.mobile-nav__item a:hover:not(.is-active) .mobile-nav__dot {
  width: 0.875rem;
  height: 0.875rem;
  border: 4px solid #ffffff;
  margin-right: 0;
}
.mobile-nav__item a.is-active .mobile-nav__label {
  color: #109E92;
  font-weight: 500;
}
.mobile-nav__item a.is-active .mobile-nav__dot {
  width: 0.875rem;
  height: 0.875rem;
  border: 4px solid #ffffff;
  background-color: #2a7a6e;
  margin-right: 0;
}

.mobile-nav__label {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 500;
  color: #ffffff;
  text-align: right;
  transition: color 0.25s ease, font-weight 0.25s ease;
}

.mobile-nav__dot {
  margin-right: 0.1875rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: 0 solid;
  background-color: #ffffff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.mobile-nav__langs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding-right: 0.1875rem;
}

.mobile-nav__lang {
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  padding: 0.25rem 0.375rem;
  transition: color 0.25s ease, font-weight 0.25s ease;
}
.mobile-nav__lang:hover {
  font-weight: 600;
}
.mobile-nav__lang.is-active {
  color: #109E92;
  font-weight: 600;
}

.mobile-nav__copy {
  margin-top: auto;
  padding-top: 2.5rem;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

body.is-light-page .header__logo-img--white {
  display: none;
}
body.is-light-page .header__logo-img--color {
  display: block;
}
body.is-light-page .lang-switcher__btn {
  color: #023346;
}
body.is-light-page .lang-switcher__btn.is-active {
  color: #109E92;
}
body.is-light-page .burger-btn {
  border-color: #023346;
}
body.is-light-page .burger-btn .burger-btn__line {
  background: #023346;
}
body.is-light-page .side-nav__label {
  color: #023346;
}
body.is-light-page .side-nav__dot {
  background-color: #023346;
}
body.is-light-page .side-nav__item:hover:not(.is-active) .side-nav__dot {
  border-color: #023346;
}
body.is-light-page .side-nav__item.is-active .side-nav__dot {
  border-color: #023346;
  background-color: #2a7a6e;
}
body.is-light-page .side-nav__inner::before {
  background: rgba(2, 51, 70, 0.25);
}
body.is-light-page:not(.is-menu-open) .site-header.is-scrolled .header__logo-img--white {
  display: block;
}
body.is-light-page:not(.is-menu-open) .site-header.is-scrolled .header__logo-img--color {
  display: none;
}
body.is-light-page:not(.is-menu-open) .site-header.is-scrolled .lang-switcher__btn {
  color: #ffffff;
}
body.is-light-page:not(.is-menu-open) .site-header.is-scrolled .lang-switcher__btn.is-active {
  color: #ffffff;
}
body.is-light-page:not(.is-menu-open) .site-header.is-scrolled .burger-btn {
  border-color: #fff;
}
body.is-light-page:not(.is-menu-open) .site-header.is-scrolled .burger-btn .burger-btn__line {
  background: #fff;
}

body.is-menu-open {
  overflow: hidden;
}
body.is-menu-open .site-header.is-scrolled {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
body.is-menu-open .lang-switcher {
  display: none;
}
@media (min-width: 1025px) {
  body.is-menu-open .burger-btn {
    transform: translateX(max(0px, (100vw - 82.875rem) / 2));
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 0;
  z-index: -1;
  background: linear-gradient(160deg, #1a4a5c 0%, #0f2d3a 40%, #0a1e28 100%);
}
.hero .transition-gradient {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80vh;
  transform: translateY(50%);
  z-index: 1;
  background: linear-gradient(180deg, rgba(201, 242, 245, 0) 0%, #c9f2f5 49%, rgba(201, 242, 245, 0) 100%);
}
.hero .transition-gradient:after {
  display: block;
  content: "";
  position: absolute;
  bottom: 50%;
  width: 100%;
  height: 70vh;
  transform: translateY(50%);
  background-image: url("/assets/images/clouds.png?v2");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img, .hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent linear-gradient(240deg, #17958A 0%, rgba(16, 158, 146, 0.5647058824) 24%, rgba(22, 126, 109, 0.0588235294) 51%, rgba(7, 69, 80, 0.4784313725) 66%, rgba(2, 51, 70, 0.6156862745) 77%, #023346 100%) 0 0 no-repeat padding-box;
  opacity: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  text-align: left;
  color: #FFFFFF;
  font-size: 6.875rem;
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1;
}

.hero__subtitle {
  margin-top: 1.125rem;
  font-size: 2.5rem;
  line-height: 3rem;
  color: #fff;
  font-weight: 600;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255, 255, 255, 0.5);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}
.about .section__header {
  margin-bottom: 2.5rem;
}

.about__grid {
  display: grid;
  grid-template-columns: 553fr 605fr;
  gap: 4.875rem;
  align-items: start;
}

.about__image-col {
  position: relative;
}

.about__image-main {
  width: 100%;
  border-radius: 2.1875rem;
  object-fit: cover;
  aspect-ratio: 553/357;
  z-index: 0;
}

.about__text p {
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: #023346;
}
.about__text p + p {
  margin-top: 1rem;
}

.partners__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.partners__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  width: 33.3333333333%;
  border-right: 1px solid #109E92;
}
.partners__item:last-child {
  border-right: none;
  border-bottom: none;
}
.partners__item .partners__logo {
  height: 4.375rem;
  width: auto;
  max-width: 15rem;
  object-fit: contain;
  transition: filter 0.25s ease;
}
.partners__item .partners__name {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
  line-height: 1.25rem;
  color: #023346;
  font-weight: 400;
}

.values__grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.values__card {
  width: calc(33.3333333333% - 3rem);
  border-radius: 1.875rem;
  margin-top: 6.8125rem;
  padding: 7.4375rem 1.375rem 2.3125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(55deg, rgba(221, 234, 248, 0.2039215686) 0%, #FEFFED 100%);
  transition: all 0.25s ease;
}
.values__card:hover {
  background: linear-gradient(55deg, rgba(16, 158, 146, 0.23) 0%, rgba(2, 51, 70, 0.23) 100%);
}
.values__card:hover .values__card-icon:before {
  background: linear-gradient(223deg, #109E92 0%, #F5F0C9 100%);
}
.values__card:hover .values__card-text {
  color: #FFFFFF;
}
.values__card .values__card-icon {
  width: 12.875rem;
  height: 12.875rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 50%;
  padding: 1.875rem 1.25rem;
  border: 10px solid rgba(245, 240, 201, 0.4745098039);
  transition: all 0.25s ease;
}
.values__card .values__card-icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(223deg, #109E92 0%, #023346 100%);
  transition: all 0.25s ease;
}
.values__card .values__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 1;
  transition: all 0.25s ease;
}
.values__card .values__card-text {
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-align: center;
  color: #4D5C62;
  transition: all 0.25s ease;
}

.project-structure .section__header .section__title {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 600;
  color: #F5F0C9;
  margin-top: 2.5rem;
}

.project-structure__grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.project-structure__card {
  width: calc(33.3333333333% - 3rem);
  border-radius: 1.875rem;
  margin-top: 6.8125rem;
  padding: 7.4375rem 1.375rem 2.3125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: linear-gradient(55deg, rgba(221, 234, 248, 0.2039215686) 0%, #FEFFED 100%);
  transition: all 0.25s ease;
}
.project-structure__card:nth-last-child(2) {
  z-index: 2;
}
.project-structure__card:nth-last-child(3) {
  z-index: 3;
}
.project-structure__card:nth-last-child(4) {
  z-index: 4;
}
.project-structure__card:nth-last-child(5) {
  z-index: 5;
}
.project-structure__card:nth-last-child(6) {
  z-index: 6;
}
.project-structure__card:nth-last-child(7) {
  z-index: 7;
}
.project-structure__card:nth-last-child(8) {
  z-index: 8;
}
.project-structure__card:nth-last-child(9) {
  z-index: 9;
}
.project-structure__card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -4.125rem;
  width: 6.75rem;
  height: 6.75rem;
  background: url("/assets/images/project-arrow.png") center/contain no-repeat;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}
.project-structure__card:hover {
  background: linear-gradient(55deg, rgba(16, 158, 146, 0.23) 0%, rgba(2, 51, 70, 0.23) 100%);
}
.project-structure__card:hover .project-structure__card-icon:before {
  background: linear-gradient(223deg, #109E92 0%, #F5F0C9 100%);
}
.project-structure__card:hover .project-structure__card-text {
  color: #FFFFFF;
}
.project-structure__card .project-structure__card-icon {
  width: 12.875rem;
  height: 12.875rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 50%;
  padding: 1.875rem 1.25rem;
  border: 10px solid rgba(245, 240, 201, 0.4745098039);
  transition: all 0.25s ease;
}
.project-structure__card .project-structure__card-icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(223deg, #109E92 0%, #023346 100%);
  transition: all 0.25s ease;
}
.project-structure__card .project-structure__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 1;
  transition: all 0.25s ease;
}
.project-structure__card .project-structure__card-text {
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-align: center;
  color: #4D5C62;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.project-structure__card .project-structure__card-title {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.625rem;
  color: #023346;
  transition: color 0.25s ease;
}
.project-structure__card .project-structure__card-desc {
  display: block;
}
.project-structure__card:hover .project-structure__card-title {
  color: #FFFFFF;
}

.project__tagline {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 600;
  color: #F5F0C9;
  margin-top: 2.5rem;
}

.project__cols {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  margin-left: -3.25rem;
  margin-right: -3.25rem;
}
.project__cols .project__col {
  width: 33.3333333333%;
  padding: 0 3.25rem;
  border-right: 1px solid #ffffff;
}
.project__cols .project__col:last-child {
  border-right: none;
}
.project__cols .project__col-text {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: #FFFFFF;
}

.project__panel {
  margin-top: 9.375rem;
  background: transparent linear-gradient(67deg, rgba(221, 234, 248, 0.2039215686) 0%, #FEFFED 100%) 0 0 no-repeat padding-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
  padding: 5.4375rem 3.75rem;
  width: 100%;
  border-radius: 1.875rem;
  position: relative;
}
.project__panel .project__description {
  text-align: right;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: #4D5C62;
}
.project__panel .project__description p {
  margin-bottom: 1rem;
}
.project__panel .project__description p:last-child {
  margin-bottom: 0;
}
.project__panel .project__visual {
  position: absolute;
  bottom: 50%;
  transform: translateY(48%);
  left: 47%;
  width: 63%;
}
.project__panel .project__visual img {
  display: block;
  width: 100%;
}

.regional-impact {
  position: relative;
  padding-top: 0;
}
.regional-impact .container {
  position: relative;
  z-index: 1;
  margin-top: -8vw;
}

.regional-impact__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-top: -6vw;
  pointer-events: none;
  position: relative;
  z-index: 0;
}

.regional-impact__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  margin-left: -3.25rem;
  margin-right: -3.25rem;
}

.impact-card {
  width: 33.3333333333%;
  padding: 0 3.25rem;
  border-right: 1px dashed #F5F0C9;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.impact-card:last-child {
  border-right: none;
}
.impact-card .impact-card__title {
  font-size: 1.375rem;
  line-height: 1.625rem;
  font-weight: 500;
  color: #F5F0C9;
  text-align: center;
}
.impact-card .impact-card__text {
  margin-top: 1.5625rem;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
}

.intl-coop {
  padding-top: 0;
}

.intl-coop__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.375rem;
  align-items: center;
}

.intl-coop__body p {
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: #023346;
  margin-bottom: 1rem;
  text-align: right;
}
.intl-coop__body p:last-child {
  margin-bottom: 0;
}

.intl-coop__image {
  height: 35.6875rem;
  overflow: hidden;
}
.intl-coop__image img {
  width: 100%;
  height: 35.6875rem;
  object-fit: contain;
  display: block;
}

.intl-coop__partners-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.intl-coop__partner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2.625rem;
  border-bottom: 1px dashed #4D5C62;
}
.intl-coop__partner:first-child {
  padding-top: 0;
}
.intl-coop__partner:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.intl-coop__partner-logo {
  height: 5.4375rem;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.news-preview__header {
  position: relative;
}
.news-preview__header .news-preview__all-link {
  position: absolute;
  top: 1rem;
  right: 0;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: #109E92;
  white-space: nowrap;
}

.news-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news-card:hover {
  transform: translateY(-5px);
}

.news-card__image-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16, 158, 146, 0) 0%, rgba(16, 158, 146, 0.4) 100%, #818181 100%, #808080 100%);
  border-radius: 1.875rem;
}
.news-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.news-card:hover .news-card__image-wrap img {
  transform: scale(1.05);
}

.news-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 1.1875rem;
}
.news-card__body .news-card__title {
  font-size: 1.5rem;
  line-height: 1.875rem;
  font-weight: 500;
  color: #023346;
}
.news-card__body .news-card__title a {
  color: inherit;
  transition: color 0.25s ease;
}
.news-card__body .news-card__title a:hover {
  color: #109E92;
}
.news-card__body .news-card__date {
  display: block;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: #BCBCBC;
  margin-bottom: 0.3125rem;
}

.site-footer {
  margin-top: 1.9375rem;
  background: #023346;
  padding: 4.03125rem 0;
  position: relative;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: stretch;
}

.footer__logo-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
}

.footer__logo {
  display: flex;
  align-items: start;
}

.footer__logo-img {
  height: 3.125rem;
  width: auto;
}

.footer__hq-col {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0;
}

.footer__hq-title {
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: #109E92;
  margin-bottom: 1.25rem;
}

.footer__hq-row {
  display: flex;
  align-items: start;
  text-align: right;
  gap: 1rem;
}

.footer__hq-icon {
  width: 0.9375rem;
  height: 0.9375rem;
  flex-shrink: 0;
  color: #109E92;
  display: block;
  margin-top: 0.25rem;
}

.footer__hq-row span,
.footer__hq-row a {
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 300;
  color: #fff;
  transition: color 0.25s ease;
}
.footer__hq-row span:hover,
.footer__hq-row a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.footer__hq-row--address {
  margin-bottom: 1.25rem;
}

.footer__hq-row--phone {
  margin-bottom: 1.25rem;
}

.footer__social-col {
  display: flex;
  flex-direction: row;
  gap: 0.5625rem;
  align-items: center;
  justify-content: end;
}

.footer__social-label {
  font-size: 1rem;
  font-weight: 300;
  color: #ffffff;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.5625rem;
}

.social-links__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  border: 1px solid #ffffff;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.social-links__item svg {
  width: 0.875rem;
  height: 0.875rem;
}
.social-links__item:hover {
  border-color: #109E92;
}

.footer__copy {
  font-size: 0.75rem;
  color: #ffffff;
}

.scroll-top-btn {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 800;
  width: 3.875rem;
  height: 3.875rem;
  border-radius: 50%;
  background: #109E92;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.scroll-top-btn svg {
  width: 1.5625rem;
  height: 1rem;
}
.scroll-top-btn.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}
.scroll-top-btn:hover {
  background: #1d5c52;
  transform: translate(-50%, -50%) scale(1.08);
}

.page-hero {
  padding-top: calc(7.75rem + 2.5rem);
  padding-bottom: 1.875rem;
  text-align: center;
  background: linear-gradient(180deg, #dce9f0 0%, #e8f2f7 100%);
}

.page-hero__title {
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 700;
  color: #023346;
}

.page-hero__subtitle {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: #109E92;
  font-weight: 400;
}

.news-page {
  background: linear-gradient(180deg, #e8f2f7 0%, #f5faf5 100%);
  padding: 2.5rem 0 5rem;
}

.news-list {
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.news-list__featured {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3.125rem;
  align-items: start;
  padding-bottom: 3.5rem;
  border-bottom: 1px dashed rgba(2, 51, 70, 0.25);
}

.news-featured__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.news-featured__gallery-main {
  grid-column: 1/-1;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 1.25rem;
}
.news-featured__gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.news-featured__gallery-main:hover img {
  transform: scale(1.03);
}

.news-featured__gallery-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0.75rem;
}
.news-featured__gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.news-featured__gallery-thumb:hover img {
  transform: scale(1.05);
}

.news-featured__title {
  font-family: "Lato", sans-serif;
  font-size: 1.75rem;
  line-height: 2.125rem;
  font-weight: 600;
  color: #109E92;
  margin-bottom: 0.75rem;
}

.news-featured__date {
  display: block;
  font-size: 1rem;
  color: #BCBCBC;
  margin-bottom: 1.5rem;
}

.news-featured__text p {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 400;
  color: #023346;
}
.news-featured__text p + p {
  margin-top: 1.25rem;
}

.news-list__items {
  display: flex;
  flex-direction: column;
  padding-top: 2.5rem;
}

.news-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3.125rem;
  align-items: start;
  padding: 2.5rem 0;
}
.news-list-item:last-child {
  padding-bottom: 0;
}
.news-list-item:hover .news-list-item__image-wrap img {
  transform: scale(1.04);
}

.news-list-item__image-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 1.25rem;
  display: block;
}
.news-list-item__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.news-list-item__title {
  font-family: "Lato", sans-serif;
  font-size: 1.5rem;
  line-height: 1.875rem;
  font-weight: 600;
  color: #023346;
  margin-bottom: 0.625rem;
}
.news-list-item__title a {
  color: inherit;
  transition: color 0.25s ease;
}
.news-list-item__title a:hover {
  color: #109E92;
}

.news-list-item__date {
  display: block;
  font-size: 1rem;
  color: #BCBCBC;
  margin-bottom: 1.125rem;
}

.news-list-item__excerpt {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #023346;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #109E92;
  transition: color 0.25s ease;
}
.pagination__item:hover {
  color: #023346;
}
.pagination__item.is-active {
  color: #023346;
  font-weight: 700;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .news-list__featured,
  .news-list-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .news-featured__title {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
  .news-list-item__title {
    font-size: 1.25rem;
    line-height: 1.625rem;
  }
  .page-hero__title {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
@media (max-width: 1700px) {
  .side-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
}
@media (max-width: 1024px) {
  .container {
    padding: 0 1.875rem;
  }
  .lang-switcher {
    display: none;
  }
  .section {
    padding: 3.125rem 0;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .news-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-list__featured {
    grid-template-columns: 1fr;
  }
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2.25rem;
  }
  .footer__social-col {
    grid-column: 1/-1;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 1.875rem;
  }
  .site-header {
    padding: 3.375rem 0;
  }
  .section {
    width: 100%;
    padding: 3.5rem 0;
  }
  .section .section__header {
    text-align: center;
    margin-bottom: 2.5rem;
    z-index: 1;
  }
  .section .section__header .section__title {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .hero {
    min-height: 100vh;
  }
  .hero__title {
    text-align: left;
    font-size: 3.1875rem;
    line-height: 3.25rem;
  }
  .hero__subtitle {
    text-align: left;
    margin-top: 1.1875rem;
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
  .values__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2.5rem;
    flex-wrap: wrap;
  }
  .values__grid .values__card {
    width: 83%;
    border-radius: 1.875rem;
    margin-top: 4rem;
    padding: 5.125rem 2.0625rem 1.1875rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(55deg, rgba(221, 234, 248, 0.2039215686) 0%, #FEFFED 100%);
    transition: all 0.25s ease;
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
  .values__grid .values__card:hover {
    background: linear-gradient(55deg, rgba(16, 158, 146, 0.23) 0%, rgba(2, 51, 70, 0.23) 100%);
  }
  .values__grid .values__card:hover .values__card-icon:before {
    background: linear-gradient(223deg, #109E92 0%, #F5F0C9 100%);
  }
  .values__grid .values__card:hover .values__card-text {
    color: #FFFFFF;
  }
  .values__grid .values__card .values__card-icon {
    width: 8rem;
    height: 8rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 50%;
    padding: 1.875rem 1.25rem;
    border: 10px solid rgba(245, 240, 201, 0.4745098039);
    transition: all 0.25s ease;
  }
  .values__grid .values__card .values__card-icon:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(223deg, #109E92 0%, #023346 100%);
    transition: all 0.25s ease;
  }
  .values__grid .values__card .values__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 1;
    transition: all 0.25s ease;
  }
  .values__grid .values__card .values__card-text {
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 400;
    text-align: center;
    color: #4D5C62;
    transition: all 0.25s ease;
  }
  .project-structure__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2.5rem;
    flex-wrap: wrap;
  }
  .project-structure__grid .project-structure__card {
    width: 83%;
    border-radius: 1.875rem;
    margin-top: 4rem;
    padding: 5.125rem 2.0625rem 1.1875rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(55deg, rgba(221, 234, 248, 0.2039215686) 0%, #FEFFED 100%);
    transition: all 0.25s ease;
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
  .project-structure__grid .project-structure__card:not(:last-child)::after {
    display: none;
  }
  .project-structure__grid .project-structure__card:hover {
    background: linear-gradient(55deg, rgba(16, 158, 146, 0.23) 0%, rgba(2, 51, 70, 0.23) 100%);
  }
  .project-structure__grid .project-structure__card:hover .project-structure__card-icon:before {
    background: linear-gradient(223deg, #109E92 0%, #F5F0C9 100%);
  }
  .project-structure__grid .project-structure__card:hover .project-structure__card-text,
  .project-structure__grid .project-structure__card:hover .project-structure__card-title {
    color: #FFFFFF;
  }
  .project-structure__grid .project-structure__card .project-structure__card-icon {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    padding: 1.875rem 1.25rem;
    border: 10px solid rgba(245, 240, 201, 0.4745098039);
    transition: all 0.25s ease;
  }
  .project-structure__grid .project-structure__card .project-structure__card-icon:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(223deg, #109E92 0%, #023346 100%);
    transition: all 0.25s ease;
  }
  .project-structure__grid .project-structure__card .project-structure__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 1;
    transition: all 0.25s ease;
  }
  .project-structure__grid .project-structure__card .project-structure__card-text {
    font-size: 1rem;
    line-height: 1.375rem;
    font-weight: 400;
    text-align: center;
    color: #4D5C62;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
  }
  .project-structure__grid .project-structure__card .project-structure__card-title {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.5rem;
    color: #023346;
  }
  .project__cols {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    gap: 1rem;
    margin-left: unset;
    margin-right: unset;
  }
  .project__cols .project__col {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 1rem;
  }
  .project__cols .project__col:last-child {
    border-right: none;
    border-bottom: none;
  }
  .project__panel {
    margin-top: 9.75rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.75rem;
    padding: 9.125rem 2.1875rem 2.1875rem 2.1875rem;
    width: 100%;
  }
  .project__panel .project__description {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 400;
    color: #4D5C62;
  }
  .project__panel .project__description p {
    margin-bottom: 1rem;
  }
  .project__panel .project__description p:last-child {
    margin-bottom: 0;
  }
  .project__panel .project__visual {
    position: absolute;
    bottom: unset;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-53%);
  }
  .regional-impact__grid {
    flex-direction: column;
    gap: 1.5rem;
    margin-left: 0;
    margin-right: 0;
  }
  .impact-card {
    width: 100%;
    padding: 1.5rem 0;
    border-right: none;
    border-bottom: 1px dashed #F5F0C9;
  }
  .impact-card:last-child {
    border-bottom: none;
  }
  .regional-impact__image {
    width: 120%;
    max-width: 120%;
    margin-left: -10%;
    margin-top: 0;
    height: auto;
    object-fit: contain;
  }
  .regional-impact .container {
    margin-top: 0;
  }
  .intl-coop__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.25rem;
    align-items: center;
  }
  .intl-coop__image {
    height: 9.375rem;
  }
  .intl-coop__image img {
    width: 100%;
    height: 9.375rem;
    object-fit: contain;
    display: block;
  }
  .intl-coop__partners-col {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .intl-coop__body p {
    text-align: center;
  }
  .intl-coop__partner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 2.25rem;
    border-bottom: 1px dashed #4D5C62;
  }
  .intl-coop__partner:first-child {
    padding-top: 0;
  }
  .intl-coop__partner:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .intl-coop__partner-logo {
    height: 5.4375rem;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
  }
  .news-preview__grid {
    grid-template-columns: 1fr;
  }
  .news-preview__header {
    position: relative;
  }
  .news-preview__header .news-preview__all-link {
    position: relative;
    top: unset;
    right: unset;
    display: none;
  }
  .partners__grid {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .partners__grid .partners__item {
    width: 100%;
    gap: 1rem;
    padding-bottom: 1rem;
    border-right: none;
    border-bottom: 1px solid #109E92;
  }
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .news-list {
    padding: 0 1rem;
  }
  .news-list-item {
    grid-template-columns: 1fr;
  }
  .news-list__featured {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .news-featured__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .pagination {
    gap: 0.125rem;
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .header__logo-img {
    height: 2.3125rem;
  }
  .news-featured__gallery {
    grid-template-columns: 1fr 1fr;
  }
  .intl-coop__partner {
    flex-direction: column;
    text-align: center;
  }
}
#main-content {
  position: relative;
  overflow: hidden;
}

.site-bg-gradient {
  position: absolute;
  top: 160vh;
  left: 0;
  width: 100%;
  bottom: 0;
  background: transparent linear-gradient(180deg, rgba(16, 158, 146, 0) 0%, #109E92 46%, rgba(16, 158, 146, 0) 100%) 0 0 no-repeat padding-box;
  z-index: -1;
}

/*# sourceMappingURL=style.css.map */
