@charset "UTF-8";
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("Gilroy-HeavyItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Gilroy";
  src: url("Gilroy-Extrabold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
.container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0px;
}
@media screen and (max-width: 1320px) {
  .container {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }
}

.content__page {
  margin-top: 120px;
}
.content__page h1, .content__page h2, .content__page h3, .content__page h4, .content__page h5, .content__page h6 {
  margin-bottom: 30px;
}
.content__page p {
  margin-bottom: 30px;
}

/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  overflow-x: hidden;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  overflow: hidden;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  color: #fff;
  background: #060504;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #060504;
}

.header__row {
  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: 12px 0;
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button1 {
  font-size: 13.6px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  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: 1px solid #2F8144;
  padding: 15px 30px;
  border-radius: 6px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  cursor: pointer;
}
.button1:hover {
  opacity: 0.7;
}
.button1::before {
  content: "";
  min-width: 16px;
  min-height: 19px;
  background: url("../img/letter.svg") no-repeat;
  display: block;
  margin-right: 14px;
}

.button2 {
  font-size: 13.6px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: #2F8144;
  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: 1px solid #2F8144;
  padding: 15px 30px;
  border-radius: 6px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  cursor: pointer;
}
.button2:hover {
  opacity: 0.7;
}

.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 70px;
}
@media screen and (max-width: 1024px) {
  .header__buttons {
    margin-left: 0;
  }
}
.header__buttons .button1 {
  margin-right: 10px;
}

.burger__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: none;
  margin-left: 30px;
}
@media screen and (max-width: 1200px) {
  .burger__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 600px) {
  .burger__button {
    margin-left: 15px;
  }
}

.mail {
  display: none;
}

.lang {
  margin-right: 8px !important;
  margin-left: 50px !important;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .lang {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
}

.burger__name {
  font-size: 17px;
  color: #fff;
  line-height: 100%;
  margin-right: 11px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .burger__name {
    font-size: 14px;
  }
}

.burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 24px;
  height: 24px;
  position: relative;
}
.burger span {
  width: 24px;
  height: 1px;
  margin-bottom: 4px;
  background: #fff;
  display: block;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.burger span:nth-last-child(1) {
  margin-bottom: 0;
}
.burger__opened span {
  position: absolute;
  margin-bottom: 0;
}
.burger__opened span:nth-child(1) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 24px;
  position: relative;
  right: 4px;
  color: #fff;
  background: #fff;
  opacity: 1;
}
.burger__opened span:nth-child(2) {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.burger__opened span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.body__opened {
  overflow: hidden;
}

.back {
  background: rgba(0, 0, 0, 0.7);
  /* backdrop-filter: blur(16.7px); */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  opacity: 0;
  visibility: hidden;
}

.back__opened {
  opacity: 1;
  visibility: visible;
}

.body__opened .back {
  opacity: 1;
  visibility: visible;
}

.mobile {
  position: fixed;
  top: 61px;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.mobile .header__buttons {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobile .header__buttons .button1 {
  margin-bottom: 10px;
  width: 100%;
}
.mobile .top__menu .menu {
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile .top__menu .menu .menu-item {
  margin-right: 0;
  margin-bottom: 10px;
}
.mobile .top__menu .menu .menu-item a {
  font-size: 20px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .mobile {
    width: 100%;
    overflow-y: scroll;
  }
}

.mob {
  background: #161616;
  padding: 15px;
  border-radius: 12px;
}

.mobile__opened {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 1200px) {
  .top__menu {
    margin-right: 0px;
  }
}
.top__menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top__menu .menu .menu-item {
  margin-right: 39px;
}
@media screen and (max-width: 1200px) {
  .top__menu .menu .menu-item {
    margin-right: 25px;
  }
}
.top__menu .menu .menu-item:nth-last-child(1) {
  margin-right: 0;
}
.top__menu .menu .menu-item a {
  font-size: 13px;
  font-weight: 300;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
.top__menu .menu .menu-item a:hover {
  opacity: 0.7;
}

.section1 {
  margin-top: 85px;
  position: relative;
}

.section1__decor1 {
  position: absolute;
  bottom: -50%;
  left: 15%;
  -webkit-animation: fadeLoop 4s infinite ease-in-out;
          animation: fadeLoop 4s infinite ease-in-out;
}
@media screen and (max-width: 1024px) {
  .section1__decor1 {
    bottom: -10%;
    right: 14%;
  }
}

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

@keyframes fadeLoop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.s1__block {
  background: #F1F1F1;
  border: 1px solid #FFFFFF;
  border-radius: 23px;
  position: relative;
  padding: 18px;
  padding-top: 60px;
}
@media screen and (max-width: 1024px) {
  .s1__block {
    padding: 15px;
    padding-top: 30px;
  }
}

.s1__txt1 {
  text-align: center;
  color: #060504;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
}

.s1__txt2 {
  text-align: center;
  margin-bottom: 60px;
  color: #060504;
  font-family: "Unbounded";
  font-size: 60px;
  font-weight: 900;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .s1__txt2 {
    font-size: 26px;
    margin-bottom: 30px;
  }
}

.s1__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .s1__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.s1__left {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .s1__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .s1__center {
    width: 100%;
    margin-bottom: 30px;
  }
}

.s1__center__img {
  position: absolute;
  bottom: -60px;
  right: 380px;
}
.s1__center__img img {
  width: 540px;
}
@media screen and (max-width: 1330px) {
  .s1__center__img {
    right: 360px;
  }
  .s1__center__img img {
    width: 440px;
  }
}
@media screen and (max-width: 1200px) {
  .s1__center__img {
    right: 300px;
  }
  .s1__center__img img {
    width: 440px;
  }
}
@media screen and (max-width: 1024px) {
  .s1__center__img {
    position: relative;
    bottom: 0;
    right: 0;
  }
  .s1__center__img img {
    width: 100%;
  }
}

.s1__right {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .s1__right {
    width: 100%;
  }
}

.s1__left__txt1 {
  font-size: 16px;
  font-weight: 300;
  color: #060504;
  padding-left: 60px;
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .s1__left__txt1 {
    margin-bottom: 30px;
    padding-left: 0;
    text-align: center;
  }
}

.s1__left__txt2 {
  border-radius: 23px;
  background: #060504;
  padding: 40px 0;
  padding-left: 60px;
  font-size: 15px;
  padding-right: 120px;
}
@media screen and (max-width: 1024px) {
  .s1__left__txt2 {
    text-align: center;
    padding: 15px;
  }
}

.s1__right__list {
  margin-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .s1__right__list {
    margin-bottom: 30px;
  }
}

.list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: #060504;
  margin-bottom: 10px;
}
.list__item:nth-last-child(1) {
  margin-bottom: 0;
}
.list__item::before {
  content: "";
  min-width: 16px;
  min-height: 16px;
  background: url("../img/li.svg") no-repeat;
  display: block;
  margin-right: 10px;
}

.button3 {
  background: #2F8144;
  border: 1px solid #FFFFFF;
  border-radius: 6px;
  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;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  color: #fff;
  font-size: 14.6px;
  font-weight: 600;
  padding: 12px 16px;
}
.button3:hover {
  opacity: 0.7;
}
.button3::after {
  content: "";
  min-width: 8px;
  min-height: 15px;
  background: url("../img/arrow__down.svg") no-repeat;
  display: block;
  margin-left: 20px;
}

.section2 {
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .section2 {
    margin-top: 40px;
  }
}

.section2__decor2 {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 10%;
}

.decor {
  -webkit-animation: fadeLoop 4s infinite ease-in-out;
          animation: fadeLoop 4s infinite ease-in-out;
}

.section__tag {
  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;
  font-family: "Inter";
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 30px;
}

.section2__title {
  font-family: "Unbounded";
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 65px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .section2__title {
    font-size: 22px;
  }
  .section2__title br {
    display: none;
  }
}

.s2__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 2fr;
  grid-template-columns: 1fr 2fr;
  grid-column-gap: 12px;
  grid-row-gap: 30px;
}
@media screen and (max-width: 1024px) {
  .s2__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
  }
}

.s2__left {
  background: -webkit-gradient(linear, left top, left bottom, from(#2F8144), to(#18612A));
  background: linear-gradient(180deg, #2F8144 0%, #18612A 100%);
  border-radius: 20px;
  overflow: hidden;
  padding-top: 40px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (max-width: 1024px) {
  .s2__left {
    padding-top: 30px;
  }
}

.s2__left__text {
  padding-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .s2__left__text {
    padding-left: 15px;
  }
}

.s2__left__txt1 {
  font-size: 23px;
  margin-right: 14px;
}

.s2__t1 {
  font-size: 64px;
  font-weight: 500;
}

.s2__t2 {
  font-size: 23px;
}

.s2__txt3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 30px;
  margin: 30px 0;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .s2__txt3 {
    padding-left: 15px;
  }
}
.s2__txt3::before {
  content: "";
  min-width: 20px;
  min-height: 20px;
  background: url("../img/s2__arrow.svg") no-repeat;
  display: block;
  margin-right: 6px;
}

.s2__right__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr 12px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 12px;
  grid-row-gap: 10px;
}
@media screen and (max-width: 1024px) {
  .s2__right__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.s2__right__item {
  padding: 15px;
  background: #F1F1F1;
  border-radius: 20px;
}

.s2__item__number {
  font-family: "Unbounded";
  font-weight: 200;
  font-size: 60px;
  color: #2F8144;
  margin-bottom: 30px;
}

.s2__item__title {
  font-weight: 600;
  font-family: "Unbounded";
  margin-bottom: 30px;
  color: #000;
}

.s2__item__content {
  background: #060504;
  border-radius: 23px;
  padding: 40px 30px;
}

.s2__item__ico {
  margin-bottom: 20px;
}

.s2__item__txt {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.768627451);
}

.s2__right__text {
  font-size: 22px;
  line-height: 39px;
  font-family: "Unbounded";
  font-weight: 300;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .s2__right__text {
    font-size: 16px;
    line-height: 29px;
  }
}
.s2__right__text span {
  color: #B3B3B3;
}

.section3 {
  margin-top: 120px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .section3 {
    margin-top: 60px;
  }
}

.section3__decor1 {
  position: absolute;
  top: 0;
  left: 10%;
  z-index: -1;
}

.s3__row1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 2fr;
  grid-template-columns: 1fr 2fr;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
}
@media screen and (max-width: 1024px) {
  .s3__row1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.s3__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr 12px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
}
@media screen and (max-width: 1024px) {
  .s3__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.s3__item {
  background: #060504;
  border: 1px solid rgba(180, 180, 180, 0.36);
  border-radius: 20px;
  padding: 40px 30px;
  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;
}
@media screen and (max-width: 1024px) {
  .s3__item {
    padding: 15px;
  }
}

.s3__item__ico {
  margin-bottom: 30px;
}

.s3__item__title {
  font-family: "Unbounded";
  font-weight: 300;
  font-size: 22px;
  margin-bottom: 20px;
}

.s3__item__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.768627451);
}

.s3__item__number {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.2509803922);
  margin-top: 30px;
}

.section4 {
  margin-top: 120px;
  background: url("../img/section4.webp") no-repeat center top;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .section4 {
    margin-top: 60px;
  }
}

.s4__decor1 {
  position: absolute;
  right: 100px;
  top: -100px;
  -webkit-transition: 2s ease 0s;
  transition: 2s ease 0s;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}

.rocket {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.section4__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.s4__item {
  padding: 27px 30px;
  border: 1px solid #595959;
  font-family: "unbounded";
  font-size: 22px;
  font-weight: 300;
  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;
  border-radius: 100px;
}
@media screen and (max-width: 1024px) {
  .s4__item {
    padding: 10px 15px;
    font-size: 18px;
  }
}

.s4__right .s2__right__text {
  margin-top: 0;
}

.s4__right__text {
  font-size: 22px;
  font-weight: 500;
  color: #216E35;
  margin-top: 30px;
  font-family: "Unbounded";
}
@media screen and (max-width: 1024px) {
  .s4__right__text {
    font-size: 18px;
  }
}

.s4__button {
  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;
  height: 100%;
}
.s4__button .button2 {
  width: 317px;
}

.section5 {
  margin-top: 120px;
}
@media screen and (max-width: 1024px) {
  .section5 {
    margin-top: 60px;
  }
}

.s5__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .s5__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.s5__left {
  width: 30%;
  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;
  padding-top: 80px;
}
@media screen and (max-width: 1024px) {
  .s5__left {
    padding-top: 0;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.s5__right {
  width: 66%;
}
@media screen and (max-width: 1024px) {
  .s5__right {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.s5__text1 {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.768627451);
  margin-bottom: 30px;
}

.s5__list__item {
  font-family: "Unbounded";
  font-size: 22px;
  font-weight: 300;
  padding: 20px 0;
  border-bottom: 1px solid rgba(180, 180, 180, 0.3607843137);
}
@media screen and (max-width: 1024px) {
  .s5__list__item {
    font-size: 18px;
    padding: 10px 0;
  }
}

.section6 {
  position: relative;
  margin-top: 120px;
}
@media screen and (max-width: 1024px) {
  .section6 {
    margin-top: 60px;
  }
}

.section6__decor1 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .section6__decor1 {
    width: 60%;
    top: 100px;
  }
}

.questions {
  padding-left: 60px;
}
@media screen and (max-width: 1024px) {
  .questions {
    padding-left: 0;
  }
}

.question__item {
  position: relative;
  background: #F1F1F1;
  border-radius: 8px;
  padding: 5px 10px;
  margin-bottom: 15px;
  cursor: pointer;
}
.question__item:nth-last-child(1) {
  margin-bottom: 0;
}

.question__header {
  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;
}

.question__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.question__number {
  font-family: "Unbounded";
  font-size: 60px;
  color: #2F8144;
  letter-spacing: -0.05em;
  font-weight: 200;
  margin-right: 60px;
  margin-left: -60px;
  width: 75px;
}
@media screen and (max-width: 1024px) {
  .question__number {
    font-size: 24px;
    margin-left: 0;
    margin-right: 20px;
  }
}

.qustion__title {
  font-size: 18px;
  font-weight: 300;
  font-family: "Unbounded";
  color: #000;
}
@media screen and (max-width: 1024px) {
  .qustion__title {
    font-size: 16px;
  }
}

.question__arrow {
  min-width: 40px;
  min-height: 40px;
  background: #000;
  border-radius: 5px;
  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;
}
.question__arrow::after {
  content: "+";
  color: #fff;
  font-family: "Unbounded";
  font-size: 18px;
  font-weight: 300;
}

.question__hidden {
  color: #000;
  font-size: 18px;
  margin-top: 20px;
}

.active2 .question__arrow::after {
  content: "-";
}

.section7 {
  margin-top: 120px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .section7 {
    margin-top: 60px;
  }
}

.section7__decor1 {
  position: absolute;
  right: 0;
  z-index: -1;
  top: -300px;
  width: 100%;
  height: 100px;
}
.section7__decor1 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section7__block {
  background: #F1F1F1;
  border-radius: 23px;
  border: 1px solid #fff;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .section7__block {
    padding: 10px;
  }
}

.section7__block2 {
  background: #000;
  border-radius: 23px;
  padding: 30px;
  padding-top: 70px;
}
@media screen and (max-width: 1024px) {
  .section7__block2 {
    padding: 10px;
    padding-top: 30px;
  }
}
.section7__block2 .s1__txt1 {
  color: #fff;
}
.section7__block2 .s1__txt2 {
  color: #fff;
}

.s8__txt3 {
  text-align: center;
  font-size: 15px;
  color: #fff;
}

.s8__button {
  margin-top: 80px;
}

.button4 {
  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;
  font-size: 66px;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  padding: 43px 40px;
  background: #2F8144;
  border-radius: 15px;
}
@media screen and (max-width: 1024px) {
  .button4 {
    font-size: 36px;
    text-align: center;
    padding: 15px 15px;
  }
}
.button4:hover {
  opacity: 0.7;
}

.footer {
  padding: 40px 0;
}

.footer__row {
  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;
}

.link {
  font-size: 17px;
  font-weight: 300;
  color: #fff;
}
.link:hover {
  text-decoration: none;
}

@-webkit-keyframes pulseShadow {
  0% {
    -webkit-box-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
            box-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
  }
  50% {
    -webkit-box-shadow: 0px 0px 21px #ffffff;
            box-shadow: 0px 0px 21px #ffffff;
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
            box-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
  }
}

@keyframes pulseShadow {
  0% {
    -webkit-box-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
            box-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
  }
  50% {
    -webkit-box-shadow: 0px 0px 21px #ffffff;
            box-shadow: 0px 0px 21px #ffffff;
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
            box-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
  }
}