@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border: 0;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Exo2";
  font-weight: 400;
  font-style: normal;
  background: var(--black-white-white, #FFF);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100vh;
}
body.lock {
  overflow: hidden;
}
body.overlay {
  position: relative;
  overflow: hidden;
}
body.overlay::before {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.4);
  z-index: 10;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

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

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
  border: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

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

:root {
  --header-height: 0px;
  --Secondary-500: #F2F4F4;
  --Secondary-600: #F5F6F6;
  --Secondary-700: #E9EDED;
  --Secondary-900: #4B545D;
  --Primary-900: #479C54;
  --black-white-black: #2D2E35;
  --black-white-white: #FFF;
  --Green-50: #F4F9F7;
  --font-size-16: 16px;
  --Body-2-Number: 16px;
  --H2-Number: 42px;
  --H3-Number: 32px;
  --H5-Number: 24px;
}

.site-main {
  position: relative;
}

.container {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-el {
  padding: 80px 0;
}

.h1-title {
  color: var(--black-white-black, #2D2E35);
  font-family: "Exo2";
  font-size: var(--H2-Number, 42px);
  font-weight: 600;
  line-height: 120%; /* 50.4px */
  letter-spacing: 1px;
}

.h2-title {
  color: var(--black-white-black, #2D2E35);
  font-family: "Exo2";
  font-size: var(--H2-Number, 42px);
  font-weight: 600;
  line-height: 120%; /* 50.4px */
  letter-spacing: 1px;
}

.btn-bulb-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.btn-bulb {
  width: 46px;
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}
.btn-bulb svg {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.btn-bulb-primary {
  background: var(--Primary-900, #479C54);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.btn-bulb-secondary {
  background: var(--Secondary-900, #4B545D);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.btn-bulb-secondary-light {
  background: var(--Secondary-700, #E9EDED);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.btn-bulb-secondary-light svg {
  fill: var(--Primary-900, #479C54);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.btn-dark {
  border-radius: 100px;
  background: var(--black-white-black, #2D2E35);
  color: var(--black-white-white, #FFF);
  border: 1px solid var(--Secondary-900, #2D2E35);
  font-family: "OpenSans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
  padding: 8px 20px;
  display: inline-block;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.btn-primary {
  border-radius: 100px;
  background: var(--Primary-900, #479C54);
  padding: 12px 24px;
  color: var(--black-white-white, #FFF);
  font-family: "OpenSans";
  font-size: var(--font-size-16, 16px);
  font-style: normal;
  font-weight: 500;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.btn-secondary {
  border-radius: 100px;
  background: var(--Secondary-900, #4B545D);
  padding: 8px 12px;
  color: var(--black-white-white, #FFF);
  font-family: "OpenSans";
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.btn-secondary-light {
  border-radius: 100px;
  background: var(--Secondary-700, #E9EDED);
  padding: 8px 12px;
  color: var(--Primary-900, #479C54);
  font-family: "OpenSans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
  height: 38px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.green {
  color: var(--Primary-900, #479C54);
}

.fs-el {
  margin: 40px 0 0;
  padding: 0 0 90px;
}

.body-vector {
  position: absolute;
  z-index: -1;
}
.body-vector.body-vector-1 {
  top: 0;
  left: 0;
}
.body-vector.body-vector-2 {
  top: 0;
  right: 0;
}
.body-vector.body-vector-3 {
  bottom: 0;
  left: 0;
}
.body-vector.body-vector-4 {
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .body-vector {
    display: none;
  }
}

@media (hover: hover) {
  .btn-bulb-wrap:hover .btn-bulb.btn-bulb-arrow svg {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .btn-bulb-wrap:hover .btn-primary, .btn-bulb-wrap:hover .btn-bulb-primary {
    background: #78B155;
  }
  .btn-bulb-wrap:hover .btn-secondary, .btn-bulb-wrap:hover .btn-bulb-secondary {
    background: var(--Primary-900, #479C54);
  }
  .btn-bulb-wrap:hover .btn-secondary-light, .btn-bulb-wrap:hover .btn-bulb-secondary-light {
    background: var(--Primary-900, #479C54);
    color: #fff;
  }
  .btn-bulb-wrap:hover .btn-bulb-secondary-light svg {
    fill: #fff;
  }
  .btn-dark:hover {
    background: transparent;
    color: var(--black-white-black, #2D2E35);
  }
}
@media screen and (max-width: 767px) {
  .section-el {
    padding: 50px 0;
  }
  .fs-el {
    padding: 0 0 50px;
  }
  .h1-title {
    font-size: 30px;
  }
  .h2-title {
    font-size: 30px;
  }
}
.header {
  position: relative;
  z-index: 100;
}

.header__top {
  background: var(--Secondary-700, #E9EDED);
  z-index: 101;
  position: relative;
}
.header__top-content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 0;
}
.header__top-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
.header__top-info-mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.header__top-info-mail svg {
  fill: #2D2E35;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.header__top-info-mail span {
  color: var(--black-white-black, #2D2E35);
  font-family: "OpenSans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.56px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.header__top-info-mail:hover span {
  color: var(--Primary-900, #479C54);
}
.header__top-info-mail:hover svg {
  fill: var(--Primary-900, #479C54);
}
.header__top-logo img {
  width: 162px;
}
.header__top .header__burger {
  display: none;
}

.lang-wrap.desktop {
  display: none;
}
@media screen and (min-width: 1025px) {
  .lang-wrap.desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.lang-wrap.desktop .lang-wrap__list {
  list-style: none;
}
.lang-wrap.desktop .lang-wrap__list .lang-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.lang-wrap.desktop .lang-wrap__list .lang-item a span {
  color: #393D60;
  text-align: center;
  font-family: "OpenSans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
@media (hover: hover) {
  .lang-wrap.desktop .lang-wrap__list .lang-item a span:hover {
    color: var(--Primary-900, #479C54);
  }
}
.lang-wrap.desktop .lang-wrap__list .lang-item a svg {
  stroke: var(--Primary-900, #479C54);
}
.lang-wrap.mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1025px) {
  .lang-wrap.mobile {
    display: none;
  }
}
.lang-wrap.mobile .lang-wrap__list {
  list-style: none;
}
.lang-wrap.mobile .lang-wrap__list .lang-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.lang-wrap.mobile .lang-wrap__list .lang-item a span {
  color: #393D60;
  text-align: center;
  font-family: "OpenSans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
@media (hover: hover) {
  .lang-wrap.mobile .lang-wrap__list .lang-item a span:hover {
    color: var(--Primary-900, #479C54);
  }
}
.lang-wrap.mobile .lang-wrap__list .lang-item a svg {
  stroke: var(--Primary-900, #479C54);
}

.header__main {
  position: relative;
}
.header__main .header__main-content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: var(--black-white-white, #FFF);
}
.header__main .header__main-content-wrap .header__mob-menu-lvl-2 {
  display: none;
}
.header__main .header__main-content-wrap .header__mob-menu-wrap {
  display: none;
}
.header__main .header__main-content-wrap .header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.header__main .header__main-content-wrap .header__nav-list li#menu-item-130,
.header__main .header__main-content-wrap .header__nav-list li#menu-item-1123 {
  position: relative;
  margin-right: 22px;
}
.header__main .header__main-content-wrap .header__nav-list li#menu-item-130::before,
.header__main .header__main-content-wrap .header__nav-list li#menu-item-1123::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="16" viewBox="0 0 17 16" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.34736 11.8613C9.1555 12.0462 8.84448 12.0462 8.65262 11.8613L3.64389 7.03192C3.45204 6.84693 3.45204 6.54705 3.64389 6.36207L3.87549 6.13874C4.06734 5.95375 4.3784 5.95375 4.57026 6.13874L8.99999 10.4098L13.4298 6.13874C13.6216 5.95375 13.9326 5.95375 14.1245 6.13874L14.3561 6.36207C14.548 6.54705 14.548 6.84693 14.3561 7.03192L9.34736 11.8613Z" fill="%234B545D"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  left: calc(100% + 6px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.header__main .header__main-content-wrap .header__nav-list li#menu-item-130.active > a,
.header__main .header__main-content-wrap .header__nav-list li#menu-item-1123.active > a {
  color: var(--Primary-900, #479C54);
}
.header__main .header__main-content-wrap .header__nav-list li#menu-item-130.active::before,
.header__main .header__main-content-wrap .header__nav-list li#menu-item-1123.active::before {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.84736 10.8613C7.6555 11.0462 7.34448 11.0462 7.15262 10.8613L2.14389 6.03192C1.95204 5.84693 1.95204 5.54705 2.14389 5.36207L2.37549 5.13874C2.56734 4.95375 2.8784 4.95375 3.07026 5.13874L7.49999 9.40984L11.9298 5.13874C12.1216 4.95375 12.4326 4.95375 12.6245 5.13874L12.8561 5.36207C13.048 5.54705 13.048 5.84693 12.8561 6.03192L7.84736 10.8613Z" fill="%23479C54"/></svg>');
}
.header__main .header__main-content-wrap .header__nav-list a {
  color: var(--black-white-black, #2D2E35);
  font-family: "OpenSans";
  font-size: var(--font-size-16, 16px);
  font-weight: 500;
  line-height: 150%; /* 24px */
  padding: 16px 0;
  display: inline-block;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.header__main .header__main-content-wrap .header__nav-list a:hover {
  color: var(--Primary-900, #479C54);
}
.header__main .header__big-menu {
  border-top: 1px solid var(--Secondary-700, #E9EDED);
  background: var(--black-white-white, #FFF);
  -webkit-box-shadow: 0px 16px 24px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 16px 24px 0px rgba(0, 0, 0, 0.08);
  padding: 50px 0 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}
.header__main .header__big-menu.active {
  opacity: 1;
  visibility: visible;
}
.header__main .header__big-menu .header__big-menu-cols-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__main .header__big-menu .header__big-menu-cols-wrap .header__big-menu-col {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  position: relative;
  padding: 0 20px;
}
.header__main .header__big-menu .header__big-menu-cols-wrap .header__big-menu-col:not(.header__big-menu-col-4):before {
  position: absolute;
  content: "";
  width: 1px;
  height: 70%;
  background: #E9EDED;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__main .header__big-menu .header__big-menu-cols-wrap .header__big-menu-col .header__nav-big-menu-list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.header__main .header__big-menu .header__big-menu-cols-wrap .header__big-menu-col .header__nav-big-menu-list .menu-item {
  color: var(--black-white-black, #2D2E35);
  font-family: "OpenSans";
  font-size: 18px;
  font-weight: 600;
  line-height: 140%; /* 25.2px */
  position: relative;
}
.header__main .header__big-menu .header__big-menu-cols-wrap .header__big-menu-col .header__nav-big-menu-list .menu-item .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding-top: 16px;
}
.header__main .header__big-menu .header__big-menu-cols-wrap .header__big-menu-col .header__nav-big-menu-list .menu-item .sub-menu .menu-item {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 14px;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
}
.header__main .header__big-menu .header__big-menu-cols-wrap .header__big-menu-col .header__nav-big-menu-list .menu-item:not(.menu-item-type-custom) a {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.header__main .header__big-menu .header__big-menu-cols-wrap .header__big-menu-col .header__nav-big-menu-list .menu-item:not(.menu-item-type-custom) a:hover {
  color: var(--Primary-900, #479C54);
}
.header__main .header__big-menu .header__big-menu-cols-wrap .header__big-menu-col .header__nav-big-menu-list > .menu-item:not(.menu-item-has-children) > a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 8px;
  width: auto;
}
.header__main .header__big-menu .header__big-menu-cols-wrap .header__big-menu-col .header__nav-big-menu-list > .menu-item:not(.menu-item-has-children) > a::before {
  position: relative;
  display: block;
  content: "";
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="19" viewBox="0 0 18 19" fill="none"><g clip-path="url(%23clip0_40000196_8585)"><path d="M4.18883 14.8678L14.4297 5.2876" stroke="%232D2E35" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M4.19047 5.28853L14.4313 5.28853L14.4313 14.8687" stroke="%232D2E35" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_40000196_8585"><rect width="18" height="18" fill="white" transform="translate(18 18.5) rotate(-180)"/></clipPath></defs></svg>');
  width: 18px;
  height: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.header__main .header__big-menu .header__big-menu-cols-wrap .header__big-menu-col .header__nav-big-menu-list > .menu-item:not(.menu-item-has-children) > a:hover::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="19" viewBox="0 0 18 19" fill="none"><g clip-path="url(%23clip0_2369_24129)"><path d="M4.18883 14.8678L14.4297 5.2876" stroke="%23479C54" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M4.19047 5.28853L14.4313 5.28853L14.4313 14.8687" stroke="%23479C54" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_2369_24129"><rect width="18" height="18" fill="white" transform="translate(18 18.5) rotate(-180)"/></clipPath></defs></svg>');
}
.header__main .header__big-menu .header__big-menu-cols-wrap .header__big-menu-col .header__nav-big-menu-list:not(#menu-header-big-menu-column-1) {
  margin: 0 auto;
}
.header__main .header__big-menu .header__big-menu-cols-wrap .header__big-menu-socials-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.header__main .header__big-menu .header__big-menu-cols-wrap .header__big-menu-socials-wrap .btn-bulb {
  margin-right: -4px;
}
.header__main .header__big-menu .header__big-menu-cols-wrap .header__big-menu-socials-wrap .btn-secondary-light {
  margin-left: -4px;
  min-width: 98px;
  text-align: center;
}
.header__main .header__big-menu .header__big-menu-cols-wrap .header__big-menu-socials-wrap .btn-bulb-secondary-light {
  width: 38px;
  height: 38px;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 1200px) {
  .header__main .header__main-content-wrap .header__nav-list {
    gap: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .header__top .header__top-content-wrap {
    padding: 16px 0;
  }
  .header__top-logo img {
    width: 126px;
  }
  .header__top .header__top-info {
    display: none;
  }
  .header__top .header__burger {
    display: block;
    position: relative;
    z-index: 101;
    width: 24px;
    height: 16px;
  }
  .header__top .header__burger span {
    position: absolute;
    left: 0;
    width: 100%;
    background: #000;
    height: 2px;
    top: 7px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 1px;
  }
  .header__top .header__burger:before, .header__top .header__burger:after {
    content: "";
    background: #000;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 1px;
  }
  .header__top .header__burger:before {
    top: 0;
  }
  .header__top .header__burger:after {
    bottom: 0;
  }
  .header__top .header__burger.active span {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  .header__top .header__burger.active:before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 7px;
  }
  .header__top .header__burger.active:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 7px;
  }
  .header__main .header__big-menu {
    display: none;
  }
  .header__main .header__main-content-wrap {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    height: calc(100dvh - 60px);
    background: var(--black-white-white, #FFF);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 0;
    padding: 38px 16px;
  }
  .header__main .header__main-content-wrap.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    z-index: 100;
  }
  .header__main .header__main-content-wrap .header__menu-left,
  .header__main .header__main-content-wrap .header__menu-right {
    width: 100%;
    display: none;
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    gap: 48px;
    height: 100%;
    overflow: hidden auto;
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__mob-menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    padding: 0 0 50px 0;
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__mob-menu-list .menu-item {
    color: var(--black-white-black, #2D2E35);
    font-family: "OpenSans";
    font-size: var(--font-size-16, 16px);
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__mob-menu-list .menu-item a {
    display: block;
    position: relative;
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__mob-menu-list .menu-item.menu-item-has-children > a::before {
    position: absolute;
    width: 19px;
    height: 19px;
    content: url('data:image/svg+xml,<svg width="19" height="20" viewBox="0 0 19 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.8381 9.62106C13.054 9.83037 13.054 10.1697 12.8381 10.379L7.2039 15.843C6.98808 16.0523 6.63823 16.0523 6.42241 15.843L6.16186 15.5904C5.94605 15.3811 5.94605 15.0417 6.16186 14.8324L11.1448 10L6.16186 5.16755C5.94605 4.95824 5.94605 4.61896 6.16186 4.40965L6.42241 4.15698C6.63823 3.94767 6.98808 3.94767 7.2039 4.15698L12.8381 9.62106Z" fill="%232D2E35"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__mob-menu-list .menu-item.menu-item-has-children .sub-menu {
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
    display: none;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__mob-menu-list .menu-item.menu-item-has-children .sub-menu.active {
    display: block;
    visibility: visible;
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__mob-menu-list .menu-item.menu-item-has-children .sub-menu .menu-item {
    border-bottom: 1px solid #E9EDED;
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__mob-menu-list .menu-item.menu-item-has-children .sub-menu .menu-item a {
    padding: 20px 0;
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__mob-menu-list .menu-item.menu-item-has-children .sub-menu .menu-item a.active::before {
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
    right: 0;
    top: 50%;
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__mob-menu-list .menu-item.menu-item-has-children .sub-menu .back-btn {
    color: var(--black-white-black, #2D2E35);
    font-family: "OpenSans";
    font-size: 18px;
    font-weight: 600;
    line-height: 140%; /* 25.2px */
    margin-bottom: 32px;
    position: relative;
    padding-left: 30px;
    width: 100%;
    text-align: left;
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__mob-menu-list .menu-item.menu-item-has-children .sub-menu .back-btn::before {
    position: absolute;
    content: "";
    width: 15px;
    height: 22px;
    background-image: url('data:image/svg+xml,<svg width="15" height="22" viewBox="0 0 15 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14 10.75C14.4142 10.75 14.75 10.4142 14.75 10C14.75 9.58579 14.4142 9.25 14 9.25V10.75ZM0.46967 9.46967C0.176777 9.76256 0.176777 10.2374 0.46967 10.5303L5.24264 15.3033C5.53553 15.5962 6.01041 15.5962 6.3033 15.3033C6.59619 15.0104 6.59619 14.5355 6.3033 14.2426L2.06066 10L6.3033 5.75736C6.59619 5.46447 6.59619 4.98959 6.3033 4.6967C6.01041 4.40381 5.53553 4.40381 5.24264 4.6967L0.46967 9.46967ZM14 9.25L1 9.25V10.75L14 10.75V9.25Z" fill="%232D2E35"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__mob-menu-list .menu-item.menu-item-has-children .sub-menu .sub-menu {
    position: inherit;
    width: 100%;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
    padding: 0 12px 20px;
    -webkit-transform: none;
            transform: none;
    visibility: visible;
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__mob-menu-list .menu-item.menu-item-has-children .sub-menu .sub-menu.visible {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__mob-menu-list .menu-item.menu-item-has-children .sub-menu .sub-menu .menu-item {
    border: none;
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__mob-menu-list .menu-item.menu-item-has-children .sub-menu .sub-menu .menu-item a {
    padding: 0;
    color: var(--Secondary-900, #4B545D);
    font-family: "OpenSans";
    font-size: 14px;
    font-weight: 500;
    line-height: 140%; /* 19.6px */
    letter-spacing: 0.28px;
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__mob-menu-list.lvl-2-opened {
    -webkit-transform: translate(-100vw, 0);
            transform: translate(-100vw, 0);
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 32px;
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__nav-list li {
    width: 100%;
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__nav-list li a {
    width: 100%;
    padding: 0;
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__nav-list li#menu-item-130,
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__nav-list li#menu-item-1123 {
    margin-right: 0;
    padding-right: 22px;
  }
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__nav-list li#menu-item-130::before,
  .header__main .header__main-content-wrap .header__mob-menu-wrap .header__nav-list li#menu-item-1123::before {
    left: auto;
    right: 0;
  }
  .header__main .header__mob-socials-contact-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
  .header__main .header__mob-socials-contact-wrap.hide {
    display: none;
  }
  .header__main .header__mob-socials-contact-wrap .header__mob-socials-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
  }
  .header__main .header__mob-socials-contact-wrap .header__mob-socials-wrap .btn-bulb {
    width: 38px;
    height: 38px;
    margin-right: -4px;
  }
  .header__main .header__mob-socials-contact-wrap .header__mob-socials-wrap .btn-secondary-light {
    min-width: 98px;
    text-align: center;
    margin-left: -4px;
  }
  .header__main .header__mob-socials-contact-wrap .header__mob-contact-btn-wrap {
    text-align: center;
  }
  .header__main .header__mob-socials-contact-wrap .header__mob-contact-btn-wrap .header__mob-contact-btn {
    text-align: center;
    display: inline-block;
    padding: 14px 64px;
  }
}
@media screen and (max-width: 1024px) {
  .header__main .header__main-content-wrap .header__mob-menu-wrap {
    gap: 24px;
  }
}
.home-hero {
  padding: 60px 0 80px;
}
.home-hero__title {
  color: var(--black-white-black, #2D2E35);
  text-align: center;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 500;
  line-height: 120%; /* 62.4px */
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.home-hero__subtitle {
  color: var(--Secondary-900, #4B545D);
  text-align: center;
  font-size: 20px;
  line-height: 140%; /* 28px */
  margin-bottom: 32px;
}
.home-hero .btn-bulb-wrap {
  margin: auto;
}
.home-hero__btn {
  margin-right: -4px;
}
.home-hero .btn-bulb {
  margin-left: -4px;
}
.home-hero .services-items-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1.35fr 1fr;
  gap: 21px;
  margin-top: 48px;
}
.home-hero .services-items-wrap .services-item {
  border-radius: 24px;
  background: var(--Secondary-500, #F2F4F4);
  overflow: hidden;
  position: relative;
}
.home-hero .services-items-wrap .services-item__arrow {
  position: absolute;
  top: 12px;
  right: 12px;
  -webkit-transform: translate(calc(100% + 10px), calc(-100% - 10px));
          transform: translate(calc(100% + 10px), calc(-100% - 10px));
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  opacity: 0;
}
.home-hero .services-items-wrap .services-item-1 {
  grid-row: span 2/span 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
}
.home-hero .services-items-wrap .services-item-2 {
  grid-column-start: 2;
  grid-row-start: 1;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.home-hero .services-items-wrap .services-item-3 {
  grid-column-start: 2;
  grid-row-start: 2;
}
.home-hero .services-items-wrap .services-item-4 {
  grid-row: span 2/span 2;
  grid-column-start: 3;
  grid-row-start: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 12px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.home-hero .services-items-wrap .services-item-1__info-wrap, .home-hero .services-items-wrap .services-item-4__info-wrap {
  width: 100%;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--black-white-white, #FFF);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.home-hero .services-items-wrap .services-item__title {
  color: var(--black-white-black, #2D2E35);
  font-family: "Exo2";
  font-size: var(--H5-Number, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
}
.home-hero .services-items-wrap .services-item__description {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 12px;
  font-weight: 500;
  line-height: 140%; /* 16.8px */
  letter-spacing: 0.24px;
}
.home-hero .services-items-wrap .services-item-1__tag, .home-hero .services-items-wrap .services-item-4__tag {
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--Primary-900, #479C54);
}
.home-hero .services-items-wrap .services-item-1__tag img, .home-hero .services-items-wrap .services-item-4__tag img {
  height: 20px;
}
.home-hero .services-items-wrap .services-item-3__info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6px;
  padding: 8px 8px 8px 24px;
}
.home-hero .services-items-wrap .services-item-3__img, .home-hero .services-items-wrap .services-item picture {
  width: 124px;
  height: 134px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.home-hero .services-items-wrap .services-item-3__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.home-hero .services-items-wrap .services-item-2 {
  padding: 24px 24px 18px;
}
.home-hero .services-items-wrap .services-item-2__info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
}
.home-hero .services-items-wrap .services-item-2__info-wrap .services-item__title {
  color: var(--black-white-white, #FFF);
}
.home-hero .services-items-wrap .services-item-2__tag {
  border-radius: 100px;
  border: 1px solid var(--Primary-900, #479C54);
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(10px);
  color: var(--Primary-900, #479C54);
  font-family: "OpenSans";
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.28px;
  padding: 6px 12px;
}
@media screen and (max-width: 1024px) {
  .home-hero .services-items-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 0 16px 48px 16px;
    margin: 48px -16px 0;
  }
  .home-hero .services-items-wrap::-webkit-scrollbar {
    height: 4px;
  }
  .home-hero .services-items-wrap::-webkit-scrollbar-thumb {
    background-color: var(--Secondary-900, #4B545D);
    border-radius: 2px;
    cursor: pointer;
  }
  .home-hero .services-items-wrap::-webkit-scrollbar-track {
    background-color: var(--Secondary-700, #E9EDED);
    cursor: pointer;
    margin-left: 50px;
    margin-right: 50px;
  }
  .home-hero .services-items-wrap .services-item {
    min-width: 290px;
  }
  .home-hero .services-items-wrap .services-item.services-item-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .home-hero .services-items-wrap .services-item.services-item-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .home-hero .services-items-wrap .services-item.services-item-3 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .home-hero .services-items-wrap .services-item.services-item-4 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .home-hero .services-items-wrap .services-item.services-item-1, .home-hero .services-items-wrap .services-item.services-item-4 {
    min-height: 280px;
    padding: 8px;
  }
  .home-hero .services-items-wrap .services-item.services-item-2, .home-hero .services-items-wrap .services-item.services-item-3 {
    min-height: 220px;
    padding: 16px;
  }
  .home-hero .services-items-wrap .services-item-1__info-wrap, .home-hero .services-items-wrap .services-item-4__info-wrap {
    padding: 16px;
  }
  .home-hero .services-items-wrap .services-item-2__info-wrap {
    min-height: 188px;
    gap: 16px;
  }
  .home-hero .services-items-wrap .services-item-3__info-wrap {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
  .home-hero .services-items-wrap .services-item-3__info-wrap .services-item-3__img {
    width: 109px;
    height: 103px;
    border-radius: 12px;
  }
  .home-hero .services-items-wrap .services-item__title {
    font-size: 20px;
  }
  .home-hero .services-items-wrap .services-item-1__tag, .home-hero .services-items-wrap .services-item-4__tag {
    padding: 6px 14px;
  }
  .home-hero .services-items-wrap .services-item-1__tag img, .home-hero .services-items-wrap .services-item-4__tag img {
    height: 18px;
  }
  .home-hero .services-items-wrap .services-item__arrow {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .home-hero {
    padding: 60px 0;
  }
  .home-hero__subtitle {
    font-size: 18px;
  }
}

@media (hover: hover) {
  .services-item:hover .services-item__arrow {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.countries__title-wrap {
  text-align: center;
  margin: 0 0 48px;
}
.countries__planet-wrap {
  width: 270px;
  height: 270px;
  margin: 160px auto 90px;
  position: relative;
}
.countries__planet-wrap video {
  width: 100%;
  height: 100%;
}
.countries__planet-ring {
  position: absolute;
  content: "";
  border-radius: 50%;
  border: 1px solid rgba(45, 46, 53, 0.08);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.countries__planet-ring-1 {
  width: calc(100% + 60px);
  height: calc(100% + 60px);
}
.countries__planet-ring-2 {
  width: calc(100% + 120px);
  height: calc(100% + 120px);
}
.countries__planet-ring-3 {
  width: calc(100% + 180px);
  height: calc(100% + 180px);
}
.countries__country-item {
  position: absolute;
  border-radius: 100px;
  border: 1px solid rgba(45, 46, 53, 0.16);
  background: var(--black-white-white, #FFF);
  padding: 8px 12px;
  text-wrap: nowrap;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out, -webkit-transform 1s ease-in-out;
  transition: opacity 1s ease-in-out, -webkit-transform 1s ease-in-out;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.countries__country-item-1 {
  top: -110px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.countries__country-item-1.visible {
  opacity: 1;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.countries__country-item-1.hidden {
  opacity: 0;
  -webkit-transform: translate(-50%, 20px);
          transform: translate(-50%, 20px);
}
.countries__country-item-2 {
  top: 21%;
  right: -60px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.countries__country-item-2.visible {
  opacity: 1;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}
.countries__country-item-2.hidden {
  opacity: 0;
  -webkit-transform: translate(100%, 20px);
          transform: translate(100%, 20px);
}
.countries__country-item-3 {
  top: 58%;
  right: -30px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.countries__country-item-3.visible {
  opacity: 1;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}
.countries__country-item-3.hidden {
  opacity: 0;
  -webkit-transform: translate(100%, 20px);
          transform: translate(100%, 20px);
}
.countries__country-item-4 {
  top: 92%;
  right: -17px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.countries__country-item-4.visible {
  opacity: 1;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}
.countries__country-item-4.hidden {
  opacity: 0;
  -webkit-transform: translate(100%, 20px);
          transform: translate(100%, 20px);
}
.countries__country-item-5 {
  bottom: -110px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.countries__country-item-5.visible {
  opacity: 1;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.countries__country-item-5.hidden {
  opacity: 0;
  -webkit-transform: translate(-50%, 20px);
          transform: translate(-50%, 20px);
}
.countries__country-item-6 {
  top: 92%;
  left: -17px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.countries__country-item-6.visible {
  opacity: 1;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}
.countries__country-item-6.hidden {
  opacity: 0;
  -webkit-transform: translate(-100%, 20px);
          transform: translate(-100%, 20px);
}
.countries__country-item-7 {
  top: 58%;
  left: -30px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.countries__country-item-7.visible {
  opacity: 1;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}
.countries__country-item-7.hidden {
  opacity: 0;
  -webkit-transform: translate(-100%, 20px);
          transform: translate(-100%, 20px);
}
.countries__country-item-8 {
  top: 21%;
  left: -60px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.countries__country-item-8.visible {
  opacity: 1;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}
.countries__country-item-8.hidden {
  opacity: 0;
  -webkit-transform: translate(-100%, 20px);
          transform: translate(-100%, 20px);
}
.countries__country-item-9 {
  top: -40px;
  left: 41px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.countries__country-item-9.visible {
  opacity: 1;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}
.countries__country-item-9.hidden {
  opacity: 0;
  -webkit-transform: translate(-100%, 20px);
          transform: translate(-100%, 20px);
}
.countries__country-item-img {
  -ms-flex-preferred-size: 28px;
      flex-basis: 28px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.countries__country-item-name {
  color: #000;
  font-family: "OpenSans";
  font-size: 18px;
  font-weight: 500;
  line-height: 140%; /* 25.2px */
}
.countries__qnt-wrap {
  position: absolute;
  top: -17%;
  right: 11%;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 12px 34px;
  border-radius: 70px 60px 60px 0px;
  background: #FFF;
  -webkit-box-shadow: 4px 4px 30px 0px rgba(164, 189, 159, 0.3), 5.835px 0px 31.103px 0px rgba(0, 0, 1, 0.03);
          box-shadow: 4px 4px 30px 0px rgba(164, 189, 159, 0.3), 5.835px 0px 31.103px 0px rgba(0, 0, 1, 0.03);
}
.countries__qnt {
  color: #479C54;
  font-family: "OpenSans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 25.2px */
  width: 48px;
  height: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: -webkit-gradient(linear, left bottom, left top, from(#DFF1E1), to(#DFF1E1)), #4E9759;
  background: linear-gradient(0deg, #DFF1E1 0%, #DFF1E1 100%), #4E9759;
  -webkit-box-shadow: 5.835px 0px 31.103px 0px rgba(0, 0, 1, 0.03);
          box-shadow: 5.835px 0px 31.103px 0px rgba(0, 0, 1, 0.03);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.countries__qnt-text {
  color: #000;
  font-family: "OpenSans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%; /* 20px */
}
@media screen and (max-width: 1024px) {
  .countries__country-item {
    padding: 4px 8px;
  }
  .countries__country-item-name {
    font-size: 12px;
  }
  .countries__country-item-img {
    -ms-flex-preferred-size: 18px;
        flex-basis: 18px;
    width: 18px;
  }
}
@media screen and (max-width: 767px) {
  .countries {
    overflow: hidden;
  }
  .countries__planet-wrap {
    width: 150px;
    height: 150px;
    margin: 90px auto 90px;
  }
  .countries__planet-ring-1 {
    width: calc(100% + 32px);
    height: calc(100% + 32px);
  }
  .countries__planet-ring-2 {
    width: calc(100% + 64px);
    height: calc(100% + 64px);
  }
  .countries__planet-ring-3 {
    width: calc(100% + 96px);
    height: calc(100% + 96px);
  }
  .countries .countries__qnt-wrap {
    padding: 6px 8px;
    gap: 6px;
    right: 40px;
    top: -21%;
  }
  .countries .countries__qnt {
    width: 33px;
    height: 33px;
    font-size: 12px;
  }
  .countries .countries__qnt-text {
    font-size: 12px;
  }
  .countries__country-item-1 {
    top: -64px;
  }
  .countries__country-item-2 {
    right: 3px;
  }
  .countries__country-item-3 {
    right: -3px;
  }
  .countries__country-item-4 {
    right: 4px;
  }
  .countries__country-item-5 {
    bottom: -64px;
  }
  .countries__country-item-6 {
    left: 6px;
  }
  .countries__country-item-7 {
    left: 7px;
  }
  .countries__country-item-8 {
    left: 1px;
  }
  .countries__country-item-9 {
    top: -21px;
    left: 65px;
  }
}

.business-areas__title-wrap {
  text-align: center;
  margin: 0 auto 48px;
}
.business-areas__items-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.business-areas__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.business-areas__item-img-wrap {
  -ms-flex-preferred-size: 41%;
      flex-basis: 41%;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.business-areas__item-info {
  -ms-flex-preferred-size: calc(59% - 20px);
      flex-basis: calc(59% - 20px);
  border-radius: 24px;
  background: var(--Green-50, #F4F9F7);
  padding: 32px;
}
@media screen and (max-width: 992px) {
  .business-areas__item-info {
    padding: 24px;
  }
}
.business-areas__item-title {
  color: var(--black-white-black, #2D2E35);
  font-size: var(--H3-Number, 32px);
  font-weight: 500;
  line-height: 120%; /* 38.4px */
}
@media screen and (max-width: 992px) {
  .business-areas__item-title {
    font-size: 24px;
  }
}
.business-areas__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
  margin-top: 16px;
  position: relative;
}
.business-areas__item-list::before {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% - 8px);
  border-left: 1px dashed #8FD0AD;
  left: 7.5px;
  top: 4px;
}
.business-areas__item-list li {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: var(--Body-2-Number, 16px);
  line-height: 150%;
  position: relative;
  padding-left: 24px;
}
.business-areas__item-list li::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  top: 4px;
  left: 0;
  background: var(--Primary-900, #479C54);
  border: 2px solid rgba(195, 233, 188, 0.8);
  border-radius: 50%;
}
.business-areas__item-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--Primary-900, #479C54);
  font-family: "OpenSans";
  font-size: var(--Body-2-Number, 16px);
  font-weight: 600;
  line-height: 150%; /* 24px */
}
.business-areas__item-link svg {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

@media (hover: hover) {
  .business-areas__item-link:hover svg {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@media screen and (max-width: 767px) {
  .business-areas__title-wrap {
    margin: 0 auto 32px;
  }
  .business-areas__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .business-areas__item-img-wrap {
    width: 100%;
    min-height: 236px;
    height: 236px;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .business-areas__item-info {
    padding: 20px;
  }
  .business-areas__item-link {
    margin-top: 16px;
  }
}
.complex-problems {
  background: var(--Secondary-600, #F5F6F6);
}
.complex-problems__title-wrap {
  max-width: 848px;
  margin: 0 auto 48px;
  text-align: center;
}
.complex-problems__items-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3px;
  border-radius: 24px;
  overflow: hidden;
}
.complex-problems__item {
  background: var(--black-white-white, #FFF);
  backdrop-filter: blur(4px);
  -ms-flex-preferred-size: calc(33.333% - 2px);
      flex-basis: calc(33.333% - 2px);
  padding: 24px;
}
.complex-problems__item-icon {
  border-radius: 8px;
  background: var(--Primary-900, #479C54);
  width: 48px;
  height: 48px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.complex-problems__item-icon img {
  width: 24px;
}
.complex-problems__item-title {
  color: var(--black-white-black, #2D2E35);
  font-size: var(--H5-Number, 24px);
  font-weight: 500;
  line-height: 120%;
  margin-top: 28px;
}
.complex-problems__item-text {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 14px;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.56px;
  margin-top: 16px;
}
@media screen and (max-width: 992px) {
  .complex-problems__item {
    padding: 16px;
  }
  .complex-problems__item-title {
    font-size: 20px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .complex-problems__title-wrap {
    margin: 0 auto 32px;
  }
  .complex-problems__items-wrap {
    gap: 6px;
  }
  .complex-problems__item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding: 20px;
  }
  .complex-problems__item-title {
    margin-top: 20px;
  }
  .complex-problems__item-text {
    margin-top: 8px;
  }
}

.about-us-hero__title-wrap {
  text-align: center;
  max-width: 692px;
  margin: 0 auto 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.about-us-hero__text {
  color: var(--Secondary-900, #4B545D);
  text-align: center;
  font-size: var(--H6-Number, 20px);
  line-height: 140%; /* 28px */
}
.about-us-hero__items-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 21px;
  margin-top: 48px;
}
.about-us-hero__item {
  border-radius: 24px;
}
.about-us-hero__item-1 {
  grid-row: span 2/span 2;
  padding: 24px 32px;
  background-color: #F2F4F4;
  background-size: cover;
  background-repeat: no-repeat;
}
.about-us-hero__item-1-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about-us-hero__item-1-num-text {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: var(--font-size-16, 16px);
  font-weight: 500;
  line-height: 150%; /* 24px */
}
.about-us-hero__item-1-icon-wrap {
  width: 39px;
  height: 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about-us-hero__item-1-icon-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-us-hero__item-2 {
  grid-column-start: 2;
  grid-row-start: 1;
  background-color: #F2F4F4;
  padding: 32px 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-us-hero__item-2-num-text {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: var(--font-size-16, 16px);
  font-weight: 500;
  line-height: 150%; /* 24px */
}
.about-us-hero__item-3 {
  grid-column-start: 2;
  grid-row-start: 2;
  background-color: #F2F4F4;
  padding: 32px 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-us-hero__item-3-num-text {
  color: var(--black-white-white, #FFF);
  font-family: "OpenSans";
  font-size: var(--font-size-16, 16px);
  font-weight: 500;
  line-height: 150%; /* 24px */
}
.about-us-hero__item-4 {
  grid-row: span 2/span 2;
  grid-column-start: 3;
  grid-row-start: 1;
  background-color: #F2F4F4;
  padding: 24px;
  background-size: auto;
  background-position: bottom;
  background-repeat: no-repeat;
}
.about-us-hero__item-4-title {
  color: var(--Secondary-900, #4B545D);
  font-size: var(--H6-Number, 20px);
  font-weight: 500;
  line-height: 140%; /* 28px */
}
.about-us-hero .number-roller {
  display: inline-block;
  overflow: hidden;
  position: relative;
  height: 58px;
}
.about-us-hero .number-roller .numbers-blocks-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about-us-hero .number-roller .numbers-blocks-wrapper .number {
  text-align: center;
  color: var(--Primary-900, #479C54);
  font-size: 48px;
  font-weight: 700;
  line-height: 140%;
}
.about-us-hero .number-roller .numbers-blocks-wrapper .number.about-us-hero__item-3-num {
  color: var(--black-white-white, #FFF);
  font-size: 48px;
  font-weight: 700;
  line-height: 140%; /* 67.2px */
}
.about-us-hero .number-roller .numbers-blocks-wrapper .number-roller__plus {
  text-align: center;
  color: var(--Primary-900, #479C54);
  font-size: 48px;
  font-weight: 700;
  line-height: 140%;
}
.about-us-hero .number-roller .numbers-blocks-wrapper .number-roller__plus.about-us-hero__item-3-plus {
  color: var(--black-white-white, #FFF);
  font-size: 48px;
  font-weight: 700;
  line-height: 140%; /* 67.2px */
}
@media screen and (max-width: 1024px) {
  .about-us-hero__item-1, .about-us-hero__item-2, .about-us-hero__item-3, .about-us-hero__item-4 {
    padding: 18px;
  }
  .about-us-hero__item-4 {
    background-size: contain;
    background-position-y: 100%;
  }
}
@media screen and (max-width: 767px) {
  .about-us-hero__title-wrap {
    margin: 0 auto 32px;
  }
  .about-us-hero__text {
    font-size: 18px;
  }
  .about-us-hero__items-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .about-us-hero__item-1, .about-us-hero__item-2, .about-us-hero__item-3, .about-us-hero__item-4 {
    padding: 24px 16px;
    border-radius: 16px;
  }
  .about-us-hero__item-1 {
    min-height: 296px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .about-us-hero__item-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .about-us-hero__item-3 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .about-us-hero__item-4 {
    min-height: 296px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

@keyframes slide-0 {
  from {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  to {
    -webkit-transform: translateY(-90%);
            transform: translateY(-90%);
  }
}
@-webkit-keyframes slide-0 {
  from {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  to {
    -webkit-transform: translateY(-90%);
            transform: translateY(-90%);
  }
}
@keyframes slide-1 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@-webkit-keyframes slide-1 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@keyframes slide-2 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
  }
}
@-webkit-keyframes slide-2 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
  }
}
@keyframes slide-3 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-30%);
            transform: translateY(-30%);
  }
}
@-webkit-keyframes slide-3 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-30%);
            transform: translateY(-30%);
  }
}
@keyframes slide-4 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
  }
}
@-webkit-keyframes slide-4 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
  }
}
@keyframes slide-5 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@-webkit-keyframes slide-5 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@keyframes slide-6 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-60%);
            transform: translateY(-60%);
  }
}
@-webkit-keyframes slide-6 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-60%);
            transform: translateY(-60%);
  }
}
@keyframes slide-7 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-70%);
            transform: translateY(-70%);
  }
}
@-webkit-keyframes slide-7 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-70%);
            transform: translateY(-70%);
  }
}
@keyframes slide-8 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-80%);
            transform: translateY(-80%);
  }
}
@-webkit-keyframes slide-8 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-80%);
            transform: translateY(-80%);
  }
}
@keyframes slide-9 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-90%);
            transform: translateY(-90%);
  }
}
@-webkit-keyframes slide-9 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-90%);
            transform: translateY(-90%);
  }
}
.description__content-wrap {
  max-width: 793px;
  margin: auto;
  text-align: center;
}
.description__tag {
  display: inline-block;
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 14px;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
  border-radius: 100px;
  border: 1px solid var(--Secondary-800, #98A4AD);
  padding: 8px 24px;
  margin-bottom: 24px;
}
.description__content {
  color: var(--black-white-black, #2D2E35);
  text-align: center;
  font-size: var(--H3-Number, 32px);
  font-weight: 500;
  line-height: 120%; /* 38.4px */
}
@media screen and (max-width: 767px) {
  .description__tag {
    padding: 6px 18px;
  }
  .description__content {
    font-size: 24px;
  }
}

.awards__title-wrap {
  margin-bottom: 48px;
}
.awards__items-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.awards__item {
  border-radius: 24px;
  border: 2px solid var(--Secondary-700, #E9EDED);
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.awards__item-img {
  height: 42px;
}
.awards__item-text {
  color: var(--Secondary-900, #4B545D);
  text-align: center;
  font-family: "OpenSans";
  font-size: var(--font-size-16, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}
@media screen and (max-width: 1024px) {
  .awards__items-wrap {
    gap: 24px;
  }
  .awards__item {
    padding: 20px;
  }
  .awards__item-img {
    height: 32px;
  }
}
@media screen and (max-width: 767px) {
  .awards__title-wrap {
    margin-bottom: 32px;
  }
  .awards__items-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .awards__item {
    padding: 24px;
    gap: 16px;
    border-radius: 16px;
  }
}

.title-and-list__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 70px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.title-and-list__title-wrap {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
}
.title-and-list__list {
  -ms-flex-preferred-size: 49.167%;
      flex-basis: 49.167%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.title-and-list__list-item {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 18px;
  font-weight: 500;
  line-height: 140%; /* 25.2px */
  padding-bottom: 52px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 25px;
}
.title-and-list__list-item::before {
  display: block;
  content: "";
  -ms-flex-preferred-size: 28px;
      flex-basis: 28px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1/1;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="30" viewBox="0 0 28 30" fill="none"><circle cx="14" cy="15" r="12" fill="%23479C54" stroke="%23CFEDC9" stroke-width="4"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.title-and-list__list-item:after {
  position: absolute;
  content: "";
  width: 3px;
  height: calc(100% - 32px);
  left: 12.5px;
  top: 29px;
  z-index: -1;
  background: repeating-linear-gradient(to bottom, #8FD0AD 0px, #8FD0AD 14px, transparent 14px, transparent 20px);
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(18.27%, rgba(143, 208, 173, 0)), color-stop(42.36%, #8FD0AD));
  -webkit-mask-image: linear-gradient(90deg, rgba(143, 208, 173, 0) 18.27%, #8FD0AD 42.36%);
          mask-image: -webkit-gradient(linear, left top, right top, color-stop(18.27%, rgba(143, 208, 173, 0)), color-stop(42.36%, #8FD0AD));
          mask-image: linear-gradient(90deg, rgba(143, 208, 173, 0) 18.27%, #8FD0AD 42.36%);
}
.title-and-list__list-item:nth-last-of-type(1):after {
  display: none;
}
@media screen and (max-width: 1024px) {
  .title-and-list__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
  }
}
@media screen and (max-width: 767px) {
  .title-and-list__content {
    gap: 32px;
  }
  .title-and-list__list {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .title-and-list__list-item {
    padding-bottom: 28px;
    font-size: 16px;
    gap: 18px;
  }
  .title-and-list__list-item::before {
    -ms-flex-preferred-size: 26px;
        flex-basis: 26px;
  }
  .title-and-list__list-item::after {
    left: 11px;
    background: repeating-linear-gradient(to bottom, #8FD0AD 0px, #8FD0AD 10px, transparent 10px, transparent 17px);
  }
}

.title-and-list-type-2__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 70px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.title-and-list-type-2__title-wrap {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
}
.title-and-list-type-2__subtitle {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: var(--Body-2-Number, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  margin-top: 24px;
}
.title-and-list-type-2__list {
  -ms-flex-preferred-size: 49.167%;
      flex-basis: 49.167%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.title-and-list-type-2__list-item {
  padding: 20px 0;
  border-top: 1px solid var(--Secondary-700, #E9EDED);
  position: relative;
  padding-left: 26px;
}
.title-and-list-type-2__list-item:nth-last-of-type(1) {
  border-bottom: 1px solid var(--Secondary-700, #E9EDED);
}
.title-and-list-type-2__list-item-title {
  color: var(--Secondary-900, #4B545D);
  font-size: var(--H6-Number, 20px);
  font-weight: 500;
  line-height: 140%; /* 28px */
  max-width: 400px;
}
.title-and-list-type-2__list-item:before {
  content: "";
  position: absolute;
  top: 31px;
  left: 5px;
  width: 8px;
  height: 8px;
  aspect-ratio: 1/1;
  background-color: var(--Secondary-900, #4B545D);
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .title-and-list-type-2__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
  }
  .title-and-list-type-2__title-wrap {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .title-and-list-type-2__list {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
  }
  .title-and-list-type-2__list-item-title {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .title-and-list-type-2__list-item:before {
    width: 6px;
    height: 6px;
  }
  .title-and-list-type-2__list-item-title {
    font-size: 18px;
  }
}

.contacts__content-wrap {
  border-radius: 24px;
  background: var(--Secondary-600, #F5F6F6);
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contacts__form-wrap {
  -ms-flex-preferred-size: 56%;
      flex-basis: 56%;
  padding: 36px 0 36px 36px;
}
.contacts__info-wrap {
  -ms-flex-preferred-size: 37%;
      flex-basis: 37%;
  border-radius: 18px;
  background: var(--black-white-white, #FFF);
  padding: 32px;
}
.contacts__form-title {
  color: var(--black-white-black, #2D2E35);
  font-size: var(--H3-Number, 32px);
  font-weight: 600;
  line-height: 120%; /* 38.4px */
  margin-bottom: 32px;
}
.contacts .form__inputs-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 24px;
}
.contacts .form__input-item.form__input-item-sm {
  -ms-flex-preferred-size: calc(50% - 8px);
      flex-basis: calc(50% - 8px);
}
.contacts .form__input-item {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.contacts .form__input-item label {
  color: var(--black-white-black, #2D2E35);
  font-family: "OpenSans";
  font-size: var(--font-size-16, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  margin-bottom: 12px;
  display: inline-block;
}
.contacts .form__input {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--Secondary-800, #98A4AD);
  background: transparent;
  width: 100%;
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
}
.contacts .form__input.invalid {
  border: 1px solid #ff0000;
}
.contacts .form__input::-webkit-input-placeholder {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
}
.contacts .form__input::-moz-placeholder {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
}
.contacts .form__input:-ms-input-placeholder {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
}
.contacts .form__input::-ms-input-placeholder {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
}
.contacts .form__input::placeholder {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
}
.contacts textarea.form__input {
  min-height: 100px;
  resize: vertical;
}
.contacts .form__button-wrap {
  text-align: right;
}
.contacts .form__button {
  border-radius: 100px;
  border: 1px solid var(--Primary-900, #479C54);
  padding: 8px 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  cursor: pointer;
  position: relative;
  color: var(--Primary-900, #479C54);
  font-family: "OpenSans";
  font-size: 14px;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.contacts .form__button svg {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  stroke: var(--Primary-900, #479C54);
}
.contacts .form__button.loading {
  pointer-events: none;
  background-color: #ccc;
}
.contacts .form__button.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  -webkit-animation: spin 0.6s linear infinite;
          animation: spin 0.6s linear infinite;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
.contacts .form__privacy-block {
  margin-bottom: 16px;
}
.contacts .formAgreement {
  display: none;
}
.contacts .form___checkbox-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  gap: 8px;
}
.contacts .form___checkbox-label:before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  width: 16px;
  height: 16px;
  top: 0px;
  background-color: transparent;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.contacts .form__checkbox-input:checked + .form___checkbox-label::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="17" viewBox="0 0 16 17" fill="none"><rect y="0.5" width="16" height="16" rx="4" fill="%2398A4AD"/><path fill-rule="evenodd" clip-rule="evenodd" d="M12.0366 5.70168C12.3548 5.96686 12.3978 6.43978 12.1326 6.75799L9.70256 9.67405C9.25718 10.2086 8.87243 10.6703 8.5171 10.9912C8.13731 11.3342 7.68955 11.6118 7.112 11.6118C6.53445 11.6118 6.08668 11.3342 5.70689 10.9912C5.35157 10.6703 4.96681 10.2086 4.52144 9.67406C4.51008 9.66042 4.49868 9.64674 4.48724 9.63301L3.86917 8.89132C3.60399 8.57311 3.64699 8.10019 3.96519 7.83502C4.2834 7.56985 4.75632 7.61284 5.0215 7.93105L5.63957 8.67274C6.12904 9.2601 6.44575 9.63733 6.71219 9.87792C6.96321 10.1046 7.06505 10.1118 7.112 10.1118C7.15895 10.1118 7.26078 10.1046 7.51181 9.87792C7.77825 9.63733 8.09495 9.2601 8.58442 8.67274L10.9803 5.79771C11.2454 5.4795 11.7184 5.43651 12.0366 5.70168Z" fill="%232D2E35"/></svg>');
}
.contacts .form__agree-text {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24px;
}
.contacts .form__error-msg {
  color: #ff0000;
  font-family: "OpenSans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
  letter-spacing: 0.12px;
  margin-top: 8px;
  display: none;
}
.contacts .form__error-msg.active {
  display: block;
}
.contacts__info-title {
  color: var(--black-white-black, #2D2E35);
  font-size: var(--H5-Number, 24px);
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  margin-bottom: 32px;
}
.contacts__info-mail-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: var(--Secondary-600, #F5F6F6);
  margin-bottom: 16px;
}
.contacts__info-mail-wrap svg {
  width: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contacts__info-img {
  margin-top: 32px;
  border-radius: 16px;
  height: 203px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contacts__info-mail-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
.contacts__info-mail-item-title {
  color: var(--black-white-black, #2D2E35);
  font-family: "OpenSans";
  font-size: var(--Body-2-Number, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
}
.contacts__info-mail-item-text {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
}
@media screen and (max-width: 1024px) {
  .contacts__info-wrap {
    -ms-flex-preferred-size: 38%;
        flex-basis: 38%;
  }
}
@media screen and (max-width: 992px) {
  .contacts__content-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
  .contacts__info-wrap {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .contacts__form-wrap {
    padding: 0 12px;
  }
}
@media screen and (max-width: 767px) {
  .contacts__content-wrap {
    padding: 24px 12px;
    border-radius: 16px;
  }
  .contacts__form-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .contacts .form__input-item.form__input-item-sm {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .contacts .form__input-item label {
    margin: 0 0 8px;
  }
  .contacts .form__input {
    border-radius: 8px;
  }
  .contacts__info-wrap {
    padding: 24px;
    border-radius: 12px;
  }
  .contacts__info-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .contacts__info-mail-wrap {
    padding: 12px;
    border-radius: 12px;
  }
  .contacts__info-mail-wrap svg {
    width: 36px;
  }
  .contacts__info-img {
    margin: 24px 0 0;
    border-radius: 12px;
    height: 158px;
  }
}

@media (hover: hover) {
  .form__button:hover {
    background: var(--Primary-900, #479C54);
    color: #fff;
  }
  .form__button:hover svg {
    stroke: #fff;
  }
}
.partners__title-wrap {
  text-align: center;
  margin: 0 0 48px;
}
.partners__items-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.partners__item {
  padding: 64px 24px;
  border-radius: 16px;
  border: 2px solid var(--Secondary-700, #E9EDED);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.partners__item-img {
  height: 44px;
}
.partners__item-arrow {
  position: absolute;
  top: 12px;
  right: 12px;
  -webkit-transform: translate(calc(100% + 10px), calc(-100% - 10px));
          transform: translate(calc(100% + 10px), calc(-100% - 10px));
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .partners__items-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .partners__item {
    -ms-flex-preferred-size: calc(50% - 7.5px);
        flex-basis: calc(50% - 7.5px);
    padding: 24px 16px;
  }
  .partners__item-img {
    height: 28px;
  }
  .partners__item-arrow {
    width: 16px;
    top: 8px;
    right: 8px;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@media (hover: hover) {
  .partners__item:hover {
    background: var(--Secondary-600, #F5F6F6);
  }
  .partners__item:hover .partners__item-arrow {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.archive__title-wrap {
  margin: 0 0 48px;
}

.posts-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 20px;
}

.article-post-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.blog-post-card__img {
  width: 100%;
  height: 236px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}

.blog-post-card__info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.blog-post-card__info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.blog-post-card__date {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  letter-spacing: 0.28px;
}

.blog-post-card__title {
  color: var(--black-white-black, #2D2E35);
  font-size: var(--H5-Number, 24px);
  font-weight: 500;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  display: -webkit-box;
}

.blog-post-card__read-time {
  color: var(--Primary-900, #479C54);
  font-family: "OpenSans";
  font-size: 14px;
  font-weight: 600;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
}

.blog-post-card__img-wrap {
  position: relative;
  overflow: hidden;
}

.blog-post-card__img-wrap:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  border-radius: 24px;
  z-index: 2;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  opacity: 0;
}

.blog-post-card__img-wrap:after {
  position: absolute;
  content: "";
  width: 64px;
  height: 64px;
  background-image: url('data:image/svg+xml,<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="32" cy="32" r="32" fill="%23479C54"/><g clip-path="url(%23clip0_40000354_11710)"><path d="M24.395 40.4784L40.5781 25.3394" stroke="white" stroke-width="1.77778" stroke-linecap="round" stroke-linejoin="round"/><path d="M24.3973 25.3402L40.5803 25.3402L40.5803 40.4792" stroke="white" stroke-width="1.77778" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_40000354_11710"><rect width="28.4444" height="28.4444" fill="white" transform="translate(46.2227 46.2222) rotate(-180)"/></clipPath></defs></svg>');
  z-index: 2;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.pagination {
  margin: 48px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.pagination .page-numbers {
  background: var(--Secondary-700, #E9EDED);
  width: 32px;
  height: 32px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: var(--Body-2-Number, 16px);
  font-style: normal;
  font-weight: 600;
  /* 24px */
  border-radius: 50%;
}
.pagination .page-numbers.current {
  background: var(--Secondary-900, #4B545D);
  color: var(--black-white-white, #FFF);
}
.pagination .prev-page {
  margin-right: 16px;
}
.pagination .next-page {
  margin-left: 16px;
}
.pagination .prev-page svg path,
.pagination .next-page svg path {
  stroke: var(--Secondary-900, #4B545D);
}
.pagination .prev-page.disabled svg path,
.pagination .next-page.disabled svg path {
  stroke: var(--Secondary-800, #98A4AD);
}

@media (hover: hover) {
  .blog-post-card__img-wrap:hover::before {
    opacity: 1;
  }
  .blog-post-card__img-wrap:hover::after {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
@media screen and (max-width: 1024px) {
  .posts-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .archive__title-wrap {
    margin: 0 0 32px;
  }
  .posts-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .blog-post-card__img {
    height: 209px;
  }
  .blog-post-card__info-wrap {
    gap: 12px;
  }
  .blog-post-card__title {
    font-size: 20px;
  }
}
.single-post__title-wrap {
  text-align: center;
  margin-bottom: 16px;
}
.single-post__content-wrap {
  max-width: 793px;
  margin: 0 auto;
}
.single-post__date-time-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 32px;
}
.single-post__date {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: var(--Body-2-Number, 16px);
  font-weight: 600;
  line-height: 150%; /* 24px */
}
.single-post__date-time-separator {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.32px;
}
.single-post__time {
  color: var(--Primary-900, #479C54);
  font-family: "OpenSans";
  font-size: var(--Body-2-Number, 16px);
  font-weight: 600;
  line-height: 150%; /* 24px */
}
.single-post__text-wrap {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.56px;
}
.single-post__text-wrap h2, .single-post__text-wrap h3, .single-post__text-wrap h4, .single-post__text-wrap h5, .single-post__text-wrap h6 {
  font-family: "Exo2";
  margin-bottom: 24px;
  line-height: 120%;
}
.single-post__text-wrap h2 {
  font-size: var(--H3-Number, 32px);
}
.single-post__text-wrap h3 {
  font-size: 30px;
}
.single-post__text-wrap h4 {
  font-size: 28px;
}
.single-post__text-wrap h5 {
  font-size: 26px;
}
.single-post__text-wrap h6 {
  font-size: 24px;
}
.single-post__text-wrap img {
  border-radius: 32px;
  margin: 0 0 32px;
}
.single-post__text-wrap p {
  margin-bottom: 32px;
}
.single-post__text-wrap video {
  width: 100%;
  border-radius: 32px;
  margin: 0 0 32px;
}
.single-post__text-wrap ul, .single-post__text-wrap ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin: 0 0 32px 20px;
}
.single-post__text-wrap ul {
  list-style: disc;
}
.single-post__text-wrap ol {
  list-style: auto;
}
.single-post__text-wrap a {
  color: var(--Primary-900, #479C54);
}
.single-post__text-wrap .wp-swiper {
  margin: 0 0 32px;
}
.single-post__text-wrap .swiper-container.swiper {
  max-width: calc(100% - 142px);
  border-radius: 32px;
}
.single-post__text-wrap .wp-swiper .wp-swiper__slide-content img {
  margin: 0;
}
.single-post__text-wrap .wp_swiper__navigation-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  height: 48px;
}
.single-post__text-wrap .swiper-button-next, .single-post__text-wrap .swiper-button-prev {
  width: 48px;
  height: 48px;
  position: initial;
  margin: 0;
  padding: 0;
  pointer-events: all;
  display: block !important;
}
.single-post__text-wrap .wp-swiper .wp_swiper__button-prev img,
.single-post__text-wrap .wp-swiper .wp_swiper__button-next img {
  width: 100%;
  height: 100%;
  margin: 0;
}
.single-post__prev-next-post-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 48px 0 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
}
.single-post__prev-next-post-wrap .single-post__prev-post .btn-secondary-light,
.single-post__prev-next-post-wrap .single-post__next-post .btn-secondary-light {
  color: var(--Secondary-900, #4B545D);
  min-width: 139px;
  text-align: center;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.single-post__prev-next-post-wrap .single-post__prev-post .btn-secondary-light {
  margin-left: -8px;
}
.single-post__prev-next-post-wrap .single-post__next-post .btn-secondary-light {
  margin-right: -8px;
}
.single-post__prev-next-post-wrap .btn-bulb-secondary-light {
  height: 38px;
  width: 38px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.single-post__prev-next-post-wrap .btn-bulb-secondary-light svg path {
  stroke: var(--Secondary-900, #4B545D);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
@media screen and (max-width: 767px) {
  .single-post__date-time-wrap {
    margin: 0 0 24px;
  }
  .single-post__text-wrap img {
    border-radius: 16px;
    margin-bottom: 24px;
  }
  .single-post__text-wrap p {
    margin: 0 0 24px;
  }
  .single-post__text-wrap h2 {
    font-size: 24px;
  }
  .single-post__text-wrap h3 {
    font-size: 22px;
  }
  .single-post__text-wrap h4 {
    font-size: 22px;
  }
  .single-post__text-wrap h5 {
    font-size: 20px;
  }
  .single-post__text-wrap h6 {
    font-size: 18px;
  }
  .single-post__text-wrap ol, .single-post__text-wrap ul {
    margin: 0 0 24px 20px;
  }
  .single-post__text-wrap video {
    height: auto;
    border-radius: 16px;
    margin: 0 0 24px;
  }
  .single-post__text-wrap .swiper-container.swiper {
    max-width: 100%;
    border-radius: 16px;
  }
  .single-post__text-wrap .wp-swiper .wp-swiper__slide-content img {
    margin: 0;
    height: 300px !important;
  }
  .single-post__text-wrap .wp_swiper__navigation-container {
    position: initial;
    -webkit-transform: none;
            transform: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
    margin: 24px 0 0;
  }
  .single-post__text-wrap .swiper-button-next,
  .single-post__text-wrap .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .single-post__prev-next-post-wrap .single-post__prev-post .btn-secondary-light,
  .single-post__prev-next-post-wrap .single-post__next-post .btn-secondary-light {
    min-width: 131px;
  }
}

.related-articles__title-wrap {
  margin: 0 0 48px;
}
@media screen and (max-width: 767px) {
  .related-articles__title-wrap {
    margin: 0 0 32px;
  }
}

@media (hover: hover) {
  .single-post__next-post:hover .btn-secondary-light,
  .single-post__prev-post:hover .btn-secondary-light {
    background: var(--Secondary-900, #4B545D);
    color: var(--black-white-white, #FFF);
  }
  .single-post__next-post:hover .btn-bulb-secondary-light,
  .single-post__prev-post:hover .btn-bulb-secondary-light {
    background: var(--Secondary-900, #4B545D);
  }
  .single-post__next-post:hover .btn-bulb-secondary-light svg path,
  .single-post__prev-post:hover .btn-bulb-secondary-light svg path {
    stroke: var(--black-white-white, #FFF);
  }
}
.service-type-1__title-wrap {
  margin: 0 0 32px;
  text-align: center;
}
.service-type-1__main-img {
  border-radius: 24px;
  margin: 0 0 100px;
  width: 100%;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-type-1__content-wrap {
  max-width: 794px;
  margin: 0 auto;
}
.service-type-1__content-wrap h2 {
  color: var(--black-white-black, #2D2E35);
  font-size: var(--H2-Number, 42px);
  font-weight: 600;
  line-height: 120%; /* 50.4px */
  letter-spacing: 1px;
  margin-bottom: 32px;
}
.service-type-1__content-wrap h3 {
  color: var(--black-white-black, #2D2E35);
  font-size: var(--H5-Number, 24px);
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  margin-bottom: 24px;
}
.service-type-1__content-wrap h4 {
  color: var(--black-white-black, #2D2E35);
  font-size: var(--H6-Number, 20px);
  font-weight: 500;
  line-height: 140%; /* 28px */
  margin-bottom: 24px;
}
.service-type-1__content-wrap h5 {
  color: var(--black-white-black, #2D2E35);
  font-size: 18px;
  font-weight: 500;
  line-height: 140%; /* 28px */
  margin-bottom: 24px;
}
.service-type-1__content-wrap h6 {
  color: var(--black-white-black, #2D2E35);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%; /* 28px */
  margin-bottom: 24px;
}
.service-type-1__content-wrap p {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.56px;
  margin-bottom: 24px;
}
.service-type-1__content-wrap ul, .service-type-1__content-wrap ol {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin: 0 0 24px 20px;
}
.service-type-1__content-wrap ul {
  list-style: disc;
}
.service-type-1__content-wrap ul.tick-list {
  list-style: none;
}
.service-type-1__content-wrap ul.tick-list li {
  position: relative;
}
.service-type-1__content-wrap ul.tick-list li:before {
  content: "";
  position: absolute;
  top: 0;
  left: -22px;
  width: 18px;
  height: 22px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="22" viewBox="0 0 18 22" fill="none"><path d="M13.7908 8.20505C14.0697 8.47844 14.0697 8.92243 13.7908 9.19583L8.07711 14.795C7.79813 15.0683 7.34505 15.0683 7.06606 14.795L4.20924 11.9954C3.93025 11.722 3.93025 11.278 4.20924 11.0046C4.48823 10.7312 4.9413 10.7312 5.22029 11.0046L7.5727 13.3077L12.7819 8.20505C13.0609 7.93165 13.514 7.93165 13.793 8.20505H13.7908Z" fill="%23479C54"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}
.service-type-1__content-wrap ol {
  list-style: auto;
}
.service-type-1__content-wrap a {
  color: var(--Primary-900, #479C54);
  text-decoration: underline;
}
.service-type-1__content-wrap hr {
  width: 1200px;
  max-width: calc(100% - 32px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  left: 50%;
  padding: 0 16px;
}
.service-type-1__content-wrap .wp-block-table {
  border: 1px solid var(--Secondary-700, #E9EDED);
  border-radius: 24px;
  margin-bottom: 32px;
}
.service-type-1__content-wrap .wp-block-table table {
  border-radius: 24px;
  background: var(--Secondary-400, #FBFCFC);
}
.service-type-1__content-wrap .wp-block-table table th, .service-type-1__content-wrap .wp-block-table table td {
  border: 1px solid var(--Secondary-700, #E9EDED);
  padding: 16px 24px;
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.56px;
}
.service-type-1__content-wrap .wp-block-table table td:nth-of-type(1) {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: var(--Body-2-Number, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
  width: 35%;
}
@media screen and (max-width: 767px) {
  .service-type-1__title-wrap {
    margin: 0 0 16px;
  }
  .service-type-1__main-img {
    border-radius: 16px;
    margin: 0 0 60px;
    height: 150px;
  }
  .service-type-1__content-wrap h2 {
    font-size: 32px;
  }
  .service-type-1 .wp-block-table table th, .service-type-1 .wp-block-table table td {
    padding: 16px;
  }
  .service-type-1 .wp-block-table table td:nth-of-type(1) {
    width: 45%;
  }
}

.service-type-2-hero__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service-type-2-hero__info {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
}
.service-type-2-hero__img-wrap {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
}
.service-type-2-hero__info-logo {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--Primary-900, #479C54);
  margin-bottom: 16px;
}
.service-type-2-hero__info-logo img {
  height: 20px;
}
.service-type-2-hero__info-title {
  margin-bottom: 16px;
}
.service-type-2-hero__info-text {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: var(--Body-2-Number, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 32px;
}
.service-type-2-hero .btn-bulb-wrap {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.service-type-2-hero .btn-primary {
  margin-right: -4px;
}
.service-type-2-hero .btn-bulb {
  margin-left: -4px;
}
.service-type-2-hero__img {
  width: 100%;
  height: 414px;
  border-radius: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 992px) {
  .service-type-2-hero__content-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
  .service-type-2-hero__img-wrap {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
  }
  .service-type-2-hero__info-logo img {
    height: 18px;
  }
  .service-type-2-hero__img {
    height: 246px;
  }
}

.about {
  background: var(--Secondary-600, #F5F6F6);
}
.about__title-wrap {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.about__tag {
  display: inline-block;
  border-radius: 100px;
  border: 1px solid var(--Secondary-800, #98A4AD);
  padding: 8px 24px;
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28px;
}
.about__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about__img-wrap {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
}
.about__img {
  width: 100%;
  height: 307px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
.about__info {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: var(--Body-2-Number, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.about__info p {
  margin-bottom: 16px;
}
.about__info p:nth-last-child(1) {
  margin: 0;
}
.about__info a {
  color: var(--Primary-900, #479C54);
  text-decoration: underline;
}
@media screen and (max-width: 992px) {
  .about__content-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .about__img-wrap {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .about__title-wrap {
    margin: 0 0 24px;
  }
  .about__img {
    height: 182px;
  }
}

.globus {
  overflow: hidden;
}
.globus__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 694px;
  margin: 0 auto;
}
.globus__subtitle {
  color: var(--Secondary-900, #4B545D);
  text-align: center;
  font-family: "OpenSans";
  font-size: 18px;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
}
.globus__content-wrap {
  margin: -100px 0;
}

#globeViz {
  width: 100%;
  max-width: 100%; /* Максимальна ширина */
  min-height: 300px;
  margin: 0 auto; /* Центрує глобус */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tooltip {
  position: absolute;
  border-radius: 8px;
  border: 1px solid var(--black-white-white, #FFF);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(15px);
  padding: 4px 8px;
  color: var(--black-white-black, #2D2E35);
  font-family: "OpenSans";
  font-size: 14px;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
  pointer-events: none;
  white-space: nowrap;
  display: none;
  z-index: 1000;
}
.tooltip img {
  width: 20px; /* Розмір прапора */
  height: 20px;
  margin-right: 4px; /* Відступ між прапором і текстом */
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.single-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.country-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.country-flag {
  width: 28px;
  height: 28px;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.country-name {
  color: var(--black-white-black, #2D2E35);
  font-family: "OpenSans";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 25.2px */
}

.globus__countries-btns-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.globus__countries-swiper-slide {
  width: 100%;
}

.globus__countries-swiper-button-prev,
.globus__countries-swiper-button-next {
  position: initial;
  margin: 0;
  width: 40px;
  height: 40px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

@media screen and (max-width: 767px) {
  #globeViz {
    min-height: 250px;
    height: 600px;
  }
  .globus__content-wrap {
    margin: 0;
  }
  .country-name {
    font-size: 16px;
  }
  .country-flag {
    width: 24px;
    height: 24px;
  }
}
.privacy__content-wrap {
  max-width: 794px;
  margin: auto;
}
.privacy__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 48px;
}
.privacy__date {
  color: var(--black-white-black, #2D2E35);
  font-family: "OpenSans";
  font-size: 18px;
  font-weight: 500;
  line-height: 140%; /* 25.2px */
}
.privacy__content p {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: var(--Body-2-Number, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  margin-bottom: 18px;
}
.privacy__content h2, .privacy__content h3, .privacy__content h4, .privacy__content h5, .privacy__content h6 {
  color: var(--black-white-black, #2D2E35);
  font-family: "Exo2";
  font-size: var(--H3-Number, 32px);
  font-weight: 600;
  line-height: 120%; /* 38.4px */
  margin-bottom: 24px;
}
.privacy__content h3 {
  font-size: 30px;
}
.privacy__content h4 {
  font-size: 28px;
}
.privacy__content h5 {
  font-size: 26px;
}
.privacy__content h6 {
  font-size: 24px;
}
.privacy__content ol, .privacy__content ul {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: var(--Body-2-Number, 16px);
  font-weight: 400;
  line-height: 150%; /* 24px */
  margin-bottom: 18px;
}
.privacy__content ul li {
  padding-left: 14px;
  position: relative;
}
.privacy__content ul li:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--Secondary-900, #4B545D);
  top: 9px;
  left: 0;
}
.privacy__content ol {
  list-style: auto;
}
.privacy__content a {
  text-decoration: underline;
  color: var(--Primary-900, #479C54);
}
@media screen and (max-width: 767px) {
  .privacy__title-wrap {
    margin: 0 0 32px;
  }
  .privacy__date {
    font-size: 16px;
  }
  .privacy h2 {
    font-size: 24px;
  }
  .privacy h3 {
    font-size: 22px;
  }
  .privacy h4 {
    font-size: 20px;
  }
  .privacy h5 {
    font-size: 18px;
  }
  .privacy h6 {
    font-size: 18px;
  }
}

.tech-sctn {
  height: calc(100vh - 108px);
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.tech-sctn .container {
  height: 100%;
}
.tech-sctn .tech-body-vector-2 {
  top: -63%;
  right: 0;
}
.tech-sctn .tech-body-vector-1 {
  top: 29%;
  left: 0;
}
.tech-sctn .btn-primary {
  margin-right: -4px;
}
.tech-sctn .btn-bulb {
  margin-left: -4px;
}
@media screen and (max-width: 1024px) {
  .tech-sctn .tech-body-vector-1,
  .tech-sctn .tech-body-vector-2 {
    display: block;
    width: 100px;
  }
  .tech-sctn .tech-body-vector-1 {
    top: 52%;
  }
  .tech-sctn .tech-body-vector-2 {
    top: -25%;
  }
}
@media screen and (max-width: 767px) {
  .tech-sctn {
    height: calc(100vh - 148px);
  }
}

.thank-you__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 793px;
  margin: auto;
}
.thank-you__icon {
  margin: 0 0 48px;
  width: 80px;
}
.thank-you__title {
  font-size: var(--H1-Number, 52px);
  margin-bottom: 16px;
}
.thank-you__text {
  color: var(--Secondary-900, #4B545D);
  text-align: center;
  font-family: "OpenSans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .thank-you__icon {
    width: 64px;
    margin: 0 0 40px;
  }
  .thank-you__title {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .thank-you__text {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

.error__content-wrap {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 920px;
  margin: auto;
  position: relative;
}
.error__content-wrap::before {
  position: absolute;
  content: "404";
  color: var(--Secondary-600, #F5F6F6);
  text-align: center;
  font-family: "OpenSans";
  font-size: 432px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 518.4px */
  letter-spacing: 8.64px;
}
.error__title {
  font-size: var(--H1-Number, 52px);
  margin-bottom: 24px;
  text-align: center;
}
.error__text {
  color: var(--Secondary-900, #4B545D);
  text-align: center;
  font-size: var(--H6-Number, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
  margin-bottom: 48px;
  max-width: 624px;
}
@media screen and (max-width: 767px) {
  .error__title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .error__text {
    font-size: 18px;
    margin-bottom: 32px;
  }
  .error__content-wrap::before {
    font-size: 170.452px;
    letter-spacing: 3.409px;
  }
}

.breadcrumbs-sctn {
  margin: 40px 0;
}
.breadcrumbs-sctn .breadcrumbs {
  text-wrap: nowrap;
  white-space: nowrap;
}
.breadcrumbs-sctn .breadcrumbs > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.breadcrumbs-sctn .breadcrumbs a {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.56px;
}
.breadcrumbs-sctn .breadcrumbs .breadcrumb_last {
  color: var(--Primary-900, #479C54);
  font-family: "OpenSans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.56px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  display: -webkit-box;
}
.breadcrumbs-sctn .breadcrumbs svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.fade-in,
.anim-translate-top,
.anim-translate-right,
.anim-translate-left,
.anim-scale {
  will-change: transform, opacity;
}

.fade-in.start-animation,
.anim-translate-top.start-animation,
.anim-translate-right.start-animation,
.anim-translate-left.start-animation,
.anim-scale.start-animation {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.fade-in {
  opacity: 0;
  transform: translate(0px, 40px);
  transition: all 1s ease;
  -webkit-transform: translate(0px, 40px);
  -webkit-transition: all 1s ease;
  -moz-transform: translate(0px, 40px);
  -moz-transition: all 1s ease;
  -o-transform: translate(0px, 40px);
  -o-transition: all 1s ease;
}

.fade-in.start-animation {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
}

.anim-translate-top {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.5s ease;
  -webkit-transform: translateY(50px);
  -webkit-transition: 0.5s ease;
  -moz-transform: translateY(50px);
  -moz-transition: 0.5s ease;
  -o-transform: translateY(50px);
  -o-transition: 0.5s ease;
}

.anim-translate-top.start-animation {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
}

.anim-scale {
  opacity: 0;
  transform: scale(0);
  transition: 0.5s ease;
  -webkit-transform: scale(0);
  -webkit-transition: 0.5s ease;
  -moz-transform: scale(0);
  -moz-transition: 0.5s ease;
  -o-transform: scale(0);
  -o-transition: 0.5s ease;
}

.anim-scale.start-animation {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
}

.anim-translate-right {
  opacity: 0;
  transform: translateX(-50px);
  transition: 0.5s ease;
  -webkit-transform: translateX(-50px);
  -webkit-transition: 0.5s ease;
  -moz-transform: translateX(-50px);
  -moz-transition: 0.5s ease;
  -o-transform: translateX(-50px);
  -o-transition: 0.5s ease;
}

.anim-translate-right.start-animation {
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
}

.anim-translate-left {
  opacity: 0;
  transform: translateX(50px);
  transition: 0.5s ease;
  -webkit-transform: translateX(50px);
  -webkit-transition: 0.5s ease;
  -moz-transform: translateX(50px);
  -moz-transition: 0.5s ease;
  -o-transform: translateX(50px);
  -o-transition: 0.5s ease;
}

.anim-translate-left.start-animation {
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
}

.footer {
  background: var(--Secondary-600, #F5F6F6);
}
.footer__top {
  padding: 100px 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__logo img {
  width: 170px;
}
.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.footer__socials-item {
  width: 38px;
  height: 38px;
  border: 1px solid var(--Primary-900, #479C54);
  border-radius: 50%;
  background-color: var(--Primary-900, #479C54);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.footer__socials-item svg {
  fill: #fff;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.footer__line {
  width: 100%;
  height: 2px;
  background: #FFF;
}
.footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 24px 0 50px;
  gap: 100px;
}
.footer__contacts {
  max-width: 307px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.footer__contacts-text {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 14px;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
}
.footer__contacts .footer__contacts-btn {
  margin-left: -4px;
  min-height: 36px;
}
.footer .btn-bulb {
  margin-right: -4px;
  width: 36px;
  height: 36px;
}
.footer__mob-contacts {
  display: none;
}
.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-preferred-size: calc(100% - 307px - 100px);
      flex-basis: calc(100% - 307px - 100px);
}
.footer__nav .footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.footer__nav .footer__nav-list .menu-item a {
  color: var(--black-white-black, #2D2E35);
  font-family: "OpenSans";
  font-size: var(--Body-2-Number, 16px);
  font-weight: 600;
  line-height: 150%; /* 24px */
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  cursor: pointer;
}
.footer__nav .footer__nav-list .menu-item-has-children {
  position: relative;
}
.footer__nav .footer__nav-list .menu-item-has-children > a {
  position: relative;
  padding-right: 24px;
}
.footer__nav .footer__nav-list .menu-item-has-children > a::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="16" viewBox="0 0 17 16" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.34736 11.8613C9.1555 12.0462 8.84448 12.0462 8.65262 11.8613L3.64389 7.03192C3.45204 6.84693 3.45204 6.54705 3.64389 6.36207L3.87549 6.13874C4.06734 5.95375 4.3784 5.95375 4.57026 6.13874L8.99999 10.4098L13.4298 6.13874C13.6216 5.95375 13.9326 5.95375 14.1245 6.13874L14.3561 6.36207C14.548 6.54705 14.548 6.84693 14.3561 7.03192L9.34736 11.8613Z" fill="%234B545D"/></svg>');
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.footer__nav .footer__nav-list .menu-item-has-children > a.active {
  color: var(--Primary-900, #479C54);
}
.footer__nav .footer__nav-list .menu-item-has-children > a.active::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.15264 4.13874C7.3445 3.95375 7.65552 3.95375 7.84738 4.13874L12.8561 8.96808C13.048 9.15307 13.048 9.45295 12.8561 9.63793L12.6245 9.86126C12.4327 10.0462 12.1216 10.0462 11.9297 9.86126L7.50001 5.59016L3.07025 9.86126C2.87839 10.0462 2.56738 10.0462 2.37552 9.86126L2.1439 9.63793C1.95203 9.45295 1.95203 9.15307 2.1439 8.96808L7.15264 4.13874Z" fill="%23479C54"/></svg>');
}
.footer__nav .footer__nav-list .menu-item-has-children.active > a::before {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.footer__nav .footer__nav-list .menu-item-has-children .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding-left: 12px;
  margin-top: 14px;
}
.footer__nav .footer__nav-list .menu-item-has-children .sub-menu a {
  color: var(--Secondary-900, #4B545D);
  font-family: "OpenSans";
  font-size: 14px;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.28px;
}
.footer__nav.footer__nav-col-2 .footer__nav-list li:not(:first-child) a {
  color: var(--Secondary-900, #4B545D);
}
.footer__nav.footer__nav-col-2 .footer__nav-list li:not(:first-child) a.active {
  color: var(--Primary-900, #479C54);
}
.footer__nav.footer__nav-col-2 .footer__nav-list li:not(:first-child) a.active::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.15264 4.13874C7.3445 3.95375 7.65552 3.95375 7.84738 4.13874L12.8561 8.96808C13.048 9.15307 13.048 9.45295 12.8561 9.63793L12.6245 9.86126C12.4327 10.0462 12.1216 10.0462 11.9297 9.86126L7.50001 5.59016L3.07025 9.86126C2.87839 10.0462 2.56738 10.0462 2.37552 9.86126L2.1439 9.63793C1.95203 9.45295 1.95203 9.15307 2.1439 8.96808L7.15264 4.13874Z" fill="%23479C54"/></svg>');
}
.footer__copyrights-wrap {
  background: var(--black-white-black, #2D2E35);
}
.footer__copyrights-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 0;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer__copyrights-text {
  color: var(--black-white-white, #FFF);
  font-family: "OpenSans";
  font-size: 14px;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.56px;
}
.footer__made-by {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: var(--black-white-white, #FFF);
  font-family: "OpenSans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.56px;
}
@media screen and (max-width: 1024px) {
  .footer__main {
    gap: 40px;
  }
  .footer__menu {
    -ms-flex-preferred-size: calc(100% - 307px - 40px);
        flex-basis: calc(100% - 307px - 40px);
  }
}
@media screen and (max-width: 992px) {
  .footer__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer__menu {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer__top {
    padding: 60px 0 24px;
  }
  .footer__logo img {
    width: 126px;
  }
  .footer__socials {
    gap: 8px;
  }
  .footer__socials-item {
    width: 32px;
    height: 32px;
  }
  .footer__socials-item svg {
    width: 16px;
    height: 16px;
  }
  .footer__line {
    height: 3px;
  }
  .footer__main {
    gap: 24px;
    padding: 24px 0 32px;
  }
  .footer__contacts {
    max-width: 100%;
    width: 100%;
  }
  .footer__contacts .btn-bulb-wrap {
    display: none;
  }
  .footer__menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
  .footer__nav {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .footer__mob-contacts {
    display: block;
    width: 100%;
  }
  .footer__mob-contacts .btn-bulb-wrap {
    width: auto;
  }
  .footer__copyrights-content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__copyrights-text {
    font-size: 12px;
    text-align: center;
  }
  .footer__made-by {
    font-size: 12px;
  }
}

@media (hover: hover) {
  .footer__nav .footer__nav-list li a:hover,
  .footer__nav .footer__nav-list li.menu-item-has-children .sub-menu li a:hover {
    color: var(--Primary-900, #479C54);
  }
  .footer__nav.footer__nav-col-2 .footer__nav-list > li:first-child a {
    pointer-events: none;
  }
  .footer__nav.footer__nav-col-2 .footer__nav-list li:not(:first-child) a:hover {
    color: var(--Primary-900, #479C54);
  }
  .footer__socials-item:hover {
    background: transparent;
  }
  .footer__socials-item:hover svg {
    fill: var(--Primary-900, #479c54);
  }
}/*# sourceMappingURL=main.css.map */