body {
  background-color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

* {
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wrapper {
  overflow: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 992px) {
  .container {
    padding: 0 15px;
  }
}

section {
  padding: 100px 0px;
}
@media (max-width: 992px) {
  section {
    padding: 70px 0;
  }
}
@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
}

em {
  font-style: italic;
}

strong {
  font-weight: 700;
}

.title2 {
  font-weight: 700;
  font-size: 34px;
  line-height: 125%;
  color: #2d3740;
  text-align: center;
}
@media (max-width: 768px) {
  .title2 {
    font-size: 26px;
  }
}

.title3 {
  font-weight: 600;
  font-size: 26px;
  line-height: 125%;
  color: #181d27;
}
@media (max-width: 768px) {
  .title3 {
    font-size: 22px;
  }
}

.pretitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 178%;
  text-align: center;
  color: #2d3740;
  max-width: 650px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .pretitle {
    font-size: 16px;
  }
}

.top {
  margin-bottom: 30px;
  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;
}
.top .title2 {
  text-align: left;
}
.top p {
  text-align: left;
  margin-left: 0;
}

.main-section {
  background-color: #5fb33e;
  border-radius: 0 0 clamp(50px, 20vw, 350px) 0;
  overflow: hidden;
}

.header {
  padding: 32px 0;
}
.header__box {
  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: 30px;
  align-items: center;
}
.header .logo {
  position: relative;
  z-index: 10;
}
.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(32px, 8vw, 82px);
}
.header__nav li a {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.header .btn-menu {
  display: none;
}
@media (max-width: 992px) {
  .header__nav ul {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 20px 0;
  }
  .header__box {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .header__nav {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 9;
    left: 0;
    top: 0;
    right: 0;
    background: #252c33;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    height: 100vh;
    width: 100%;
    padding-top: 100px;
  }
  .header__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 35px;
  }
  .header__nav.active {
    opacity: 1;
    visibility: visible;
  }
  .header .btn-menu {
    width: 30px;
    height: 40px;
    position: relative;
    cursor: pointer;
    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;
    z-index: 10;
  }
  .header .btn-menu span {
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    border-radius: 1px;
  }
  .header .btn-menu span:nth-child(1) {
    top: 10px;
  }
  .header .btn-menu span:nth-child(2) {
    top: 19px;
  }
  .header .btn-menu span:nth-child(3) {
    top: 28px;
  }
  .header .btn-menu.active span:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 19px;
  }
  .header .btn-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .header .btn-menu.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 19px;
  }
}

.hero__box {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 100px;
}
.hero .container {
  position: relative;
}
.hero__image {
  position: absolute;
  right: 0;
  bottom: 0;
}
.hero__image img {
  width: 320px;
}
.hero__content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}
.hero__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 125%;
  color: #fff;
  margin-bottom: 32px;
}
.hero__pretitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 200%;
  color: rgb(255, 255, 255);
  margin-bottom: 40px;
}
.hero__list {
  padding-bottom: 56px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.hero .hero-item p {
  margin-top: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 171%;
  color: #fff;
}
.hero__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding-bottom: 40px;
}
@media (max-width: 992px) {
  .hero__box {
    padding-top: 50px;
  }
  .hero__content {
    max-width: 500px;
  }
  .hero__image img {
    width: 290px;
  }
}
@media (max-width: 768px) {
  .hero__box {
    padding-bottom: 300px;
  }
  .hero__image {
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero__image img {
    width: 220px;
  }
  .hero__title {
    font-size: 28px;
    margin-bottom: 26px;
  }
  .hero__pretitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .hero__list {
    padding-bottom: 56px;
    -ms-grid-columns: 1fr 32px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .hero .hero-item p {
    margin-top: 10px;
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .hero__list {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero__buttons {
    gap: 20px;
    padding-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero__buttons a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 60px;
  }
}

.btn {
  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: 14px;
  border: 8px solid #fff;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  color: #fff;
  padding: 20px 25px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.23s;
  transition: 0.23s;
  min-width: 300px;
}
@media (max-width: 768px) {
  .btn {
    font-weight: 600;
    padding: 15px;
    border: 4px solid #fff;
    min-width: 200px;
  }
  .btn svg {
    width: 16px;
  }
}
.btn:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.btn-tg {
  background: linear-gradient(212deg, #34b0df 0%, #1e88d3 100%);
}

.about__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
  gap: 40px;
}
.about__wrapp {
  position: relative;
  z-index: 3;
}
.about .container {
  position: relative;
}
.about .container::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 300px;
  background-image: url(../img/Union.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  bottom: 0;
  left: -200px;
}
.about__logo {
  width: 400px;
}
.about__logo img {
  width: 200px;
}
.about__content {
  width: 100%;
}
.about__content .title3 {
  text-align: left;
  margin-bottom: 30px;
}
.about__content p {
  font-size: 18px;
  line-height: 140%;
}
.about__list {
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(30px, 9.333vw, 100px) 1fr clamp(30px, 9.333vw, 100px) 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 9.333vw, 100px);
}
.about .about-iitem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.about .about-iitem span {
  font-size: 16px;
  line-height: 140%;
  color: rgb(92, 92, 92);
}
@media (max-width: 768px) {
  .about__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about__logo {
    width: 100%;
    padding-left: 40px;
    padding-bottom: 80px;
  }
  .about .container::before {
    top: 100px;
    left: auto;
    right: -100px;
    width: 250px;
    height: 250px;
  }
  .about__content p {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .about__list {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}

.advantage__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.advantage .advantage-item {
  background: -webkit-gradient(linear, left top, right top, from(#f2f5f7), to(rgba(242, 245, 247, 0)));
  background: linear-gradient(90deg, #f2f5f7 0%, rgba(242, 245, 247, 0) 100%);
  padding: 30px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.advantage .advantage-item__content p {
  font-size: 16px;
  line-height: 140%;
}
@media (max-width: 768px) {
  .advantage__box {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .advantage .advantage-item {
    -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;
  }
}

.geo {
  background-color: #5fb33e;
}
.geo .title2, .geo .pretitle {
  color: #fff;
}
.geo__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.geo__list {
  width: 50%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 30px;
  margin-top: 100px;
}
.geo__map {
  width: 50%;
}
.geo .geo-item {
  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: 20px;
}
.geo .geo-item__img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 100px;
  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: 2px solid #fff;
}
.geo .geo-item__img img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
.geo .geo-item span {
  color: #fff;
  font-weight: 500;
}
@media (max-width: 768px) {
  .geo__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .geo__list {
    width: 100%;
    margin-top: 40px;
  }
  .geo__map {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 50px;
  }
  .geo__map img {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 576px) {
  .geo__list {
    gap: 40px 20px;
  }
  .geo .geo-item {
    gap: 20px;
  }
  .geo .geo-item__img {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 2px solid #fff;
  }
  .geo .geo-item__img img {
    width: 70px;
    height: 70px;
  }
}

.steps__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.steps .steps-item {
  background-color: #5fb33e;
  min-height: 250px;
  border-radius: 25px;
  padding: 40px 30px;
  position: relative;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.steps .steps-item span {
  font-size: 100px;
  font-weight: 700;
  position: absolute;
  top: 40px;
  left: 40px;
  color: rgba(255, 255, 255, 0.2);
}
.steps .steps-item p {
  font-size: 18px;
  line-height: 140%;
  color: #fff;
}
@media (max-width: 768px) {
  .steps__list {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .steps__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .steps .steps-item {
    min-height: 210px;
    padding: 30px 20px;
  }
  .steps .steps-item span {
    font-size: 80px;
  }
  .steps .steps-item p {
    font-size: 16px;
  }
}

.pz__box {
  background-image: url(../img/pz.jpg);
  min-height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: clamp(20px, 4.667vw, 50px);
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pz__box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(95, 179, 62, 0.9098039216);
}
.pz__box .title2 {
  color: #fff;
}
.pz__content {
  position: relative;
  z-index: 3;
  padding: 40px;
  min-height: 100%;
  display: -ms-grid;
  display: grid;
  gap: 30px;
}
.pz__content .title3 {
  color: #fff;
  text-align: left;
}
.pz__content p {
  font-size: 16px;
  color: #fff;
  line-height: 140%;
}
.pz__content ul {
  list-style-type: disc;
  color: #fff;
  padding-left: 30px;
  display: -ms-grid;
  display: grid;
  gap: 15px;
}
@media (max-width: 576px) {
  .pz__content {
    padding: 40px 20px;
  }
}

.principles__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.principles .principles-item {
  background-color: #5fb33e;
  min-height: 250px;
  border-radius: 25px;
  padding: 40px 30px;
  position: relative;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.principles .principles-item__ic {
  position: absolute;
  top: 20px;
  left: 20px;
}
.principles .principles-item img {
  width: 100px;
}
.principles .principles-item p {
  font-size: 18px;
  line-height: 140%;
  color: #fff;
}
@media (max-width: 992px) {
  .principles__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .principles__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .principles .principles-item {
    min-height: 170px;
    padding: 30px 20px;
  }
  .principles .principles-item__ic img {
    width: 70px;
  }
}

.faq__list {
  display: -ms-grid;
  display: grid;
  gap: 24px;
}
.faq .faq-item {
  background: #5fb33e;
  padding: 38px 30px;
  cursor: pointer;
  border-radius: 24px;
}
.faq .faq-item__top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-right: 50px;
}
.faq .faq-item__top h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  color: #fff;
}
.faq .faq-item__top::after {
  position: absolute;
  display: block;
  content: "";
  background-image: url(../img/icons/arrrr.svg);
  background-size: contain;
  width: 44px;
  height: 44px;
  background-repeat: no-repeat;
  background-position: center;
  top: -3px;
  right: 0;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.faq .faq-item__content {
  display: none;
  padding-top: 30px;
  padding-left: 30px;
}
.faq .faq-item__content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 171%;
  color: #fff;
}
.faq .faq-item.active .faq-item__top::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
@media (max-width: 768px) {
  .faq .faq-item {
    padding: 28px 15px;
  }
  .faq .faq-item__top {
    padding-right: 30px;
  }
  .faq .faq-item__top h5 {
    font-size: 16px;
  }
  .faq .faq-item__top::after {
    background-image: url(../img/icons/arrrr.svg);
    width: 26px;
    height: 26px;
    top: 2px;
  }
  .faq .faq-item__content {
    padding-top: 20px;
    padding-left: 20px;
  }
  .faq .faq-item__content p {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .faq__list {
    gap: 20px;
  }
}

.footer {
  background: #252c33;
  color: #fff;
}
.footer .foo-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer p {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
}
.footer a {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
}
.footer a:hover {
  text-decoration: underline;
}
.footer ul {
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
.footer__main {
  padding: 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer .footer-col {
  display: -ms-grid;
  display: grid;
  gap: 24px;
  min-width: 240px;
}
.footer .footer-bottom {
  background-color: #fff;
  padding: 28px 0;
  border-top: 1px solid #fff;
}
.footer .footer-bottom p, .footer .footer-bottom a {
  color: #252c33;
}
.footer .footer-bottom__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.footer .menulist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px 44px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer .menulist a {
  font-size: 16px;
}
.footer .teltel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .footer__main {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .footer-bottom {
    gap: 30px;
  }
  .footer .footer__links {
    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;
    margin-bottom: 40px;
  }
  .footer .menulist {
    display: -ms-grid;
    display: grid;
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .footer__main {
    padding: 60px 0;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}