@charset "UTF-8";
/* Указываем 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;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Roboto";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* Удаляем стандартную стилизацию для всех 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;
}

@font-face {
  font-family: "Gilroy-ExtraBold";
  src: url("../fonts/Gilroy-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Heavy";
  src: url("../fonts/Gilroy-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-SemiBold";
  src: url("../fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Light";
  src: url("../fonts/Gilroy-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Regular";
  src: url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Medium";
  src: url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Bold";
  src: url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Bebas-neue";
  src: url("../fonts/bebasneuecyrillic.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
.container {
  max-width: 1240px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

a {
  color: #48A689;
}

.header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
}
.header .button2 {
  margin-right: 0;
}
@media screen and (max-width: 1200px) {
  .header {
    padding: 5px 0;
  }
}

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

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu .menu-item {
  margin-right: 20px;
}
.menu .menu-item:nth-last-child(1) {
  margin-right: 0;
}
.menu .menu-item a {
  font-family: "Roboto";
  font-size: 15px;
  color: #444;
  text-decoration: none;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.menu .menu-item a:hover {
  color: #48A689;
}

.top__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top__socials a {
  margin-right: 16px;
}
.top__socials a:nth-last-child(1) {
  margin-right: 0;
}

.burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 30px;
  height: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.burger span {
  width: 30px;
  height: 3px;
  margin-bottom: 4px;
  background: #48A689;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.burger span:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.burger__opened span {
  position: absolute;
  margin-bottom: 0;
}
.burger__opened span:nth-child(2) {
  opacity: 0;
}
.burger__opened span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.burger__opened span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.mobile__menu {
  position: fixed;
  top: 78px;
  left: 0;
  width: 100%;
  background: #48A689;
  z-index: 100;
  -webkit-transform: translate(150%, 0);
          transform: translate(150%, 0);
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  height: 100%;
  padding: 20px 15px;
}
.mobile__menu .menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobile__menu .menu .menu-item {
  margin-right: 0;
  margin-bottom: 15px;
  text-align: center;
}
.mobile__menu .menu .menu-item a {
  font-size: 20px;
  color: #fff;
}
.mobile__menu .top__socials {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.body__opened {
  overflow: hidden;
}

.section1 {
  background: url("../img/section1.jpg") no-repeat;
  background-size: cover;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  margin-top: 110px;
}
.section1 .container {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .section1 {
    margin-top: 78px;
  }
}

.section1__title {
  color: #333333;
  font-family: "Roboto";
  font-size: 69px;
  line-height: 68px;
  margin-bottom: 40px;
  width: 50%;
}
.section1__title span {
  font-weight: 800;
}
@media screen and (max-width: 1024px) {
  .section1__title {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .section1__title {
    font-size: 54px;
    line-height: 55px;
  }
}

.section1__txt1 {
  font-family: "Roboto";
  font-size: 20px;
  line-height: 24px;
  color: #222222;
  margin-bottom: 25px;
}

.section1__txt2 {
  font-family: "Roboto";
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 25px;
  color: #222222;
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .section1__txt2 {
    width: 100%;
  }
}

.section1__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .section1__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.button2 {
  font-family: "Roboto";
  font-weight: 900;
  font-size: 16px;
  line-height: 36px;
  color: #ffffff;
  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 0s;
  transition: 0.5s ease 0s;
  background: #48A689;
  margin-right: 9px;
  border-radius: 4px;
  padding: 17px 43.5px;
  text-decoration: none;
}
.button2:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .button2 {
    margin-right: 0;
    margin-bottom: 9px;
    width: 100%;
  }
}

.button3 {
  font-family: "Roboto";
  font-weight: 900;
  font-size: 16px;
  line-height: 36px;
  color: #ffffff;
  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 0s;
  transition: 0.5s ease 0s;
  background: #222222;
  margin-right: 9px;
  border-radius: 4px;
  padding: 17px 43.5px;
  text-decoration: none;
}
.button3:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .button3 {
    width: 100%;
  }
}

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

.qr {
  margin-right: 11.3px;
}
.qr img {
  width: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100px;
}

.qr__txt {
  font-size: 16px;
  font-family: "Roboto";
  color: #222222;
}
.qr__txt span {
  font-weight: 900;
}

.section1__man {
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .section1__man {
    display: none;
  }
}

.section2 {
  padding-bottom: 60px;
}

#section2 {
  height: 110px;
}
@media screen and (max-width: 1200px) {
  #section2 {
    height: 78px;
  }
}

.section2__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;
}
@media screen and (max-width: 992px) {
  .section2__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section2__left {
  width: 65%;
}
@media screen and (max-width: 992px) {
  .section2__left {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .section2__right img {
    width: 200px;
  }
}

.section2__title {
  font-family: "Roboto";
  font-size: 45px;
  line-height: 54px;
  color: #333333;
  margin-bottom: 24px;
}
.section2__title span {
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .section2__title {
    font-size: 35px;
    line-height: 44px;
  }
}

.section2__txt1 {
  font-family: "Roboto";
  font-size: 16px;
  line-height: 24px;
  color: rgba(34, 34, 34, 0.77);
  margin-bottom: 24px;
}

.section2__txt2 {
  font-family: "Roboto";
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: rgba(34, 34, 34, 0.77);
  margin-bottom: 24px;
}

.s2__questions__title {
  font-family: "Roboto";
  font-size: 20px;
  margin-bottom: 40px;
  color: #222222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.s2__questions__title::before {
  content: "";
  width: 50px;
  height: 50px;
  background: url("../img/section2__ico1.svg") no-repeat;
  display: block;
  margin-right: 14px;
}

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

.question__item {
  background: #F1F5F7;
  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;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 23.5px 20px;
  cursor: pointer;
}

.question__item__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
}

.question__item__right {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.question__item__right::before {
  content: "+";
  display: block;
  font-size: 36px;
  color: #48A689;
}

.question__hidden {
  width: 100%;
  padding: 20px 0;
}

.question__number {
  font-family: "Roboto";
  font-weight: 600;
  color: #fff;
  min-width: 36px;
  min-height: 36px;
  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;
  background: #48A689;
  margin-right: 34px;
}

.question__title {
  font-size: 19px;
  line-height: 24px;
  color: #222222;
  font-family: "Roboto";
}

.active .question__item__right::before {
  content: "-";
}

.section3 {
  background: #F1F5F7;
  padding-top: 60px;
  padding-bottom: 135px;
}
.section3 .section2__title {
  text-align: center;
}
.section3 .section1__txt2 {
  text-align: center;
  width: 100%;
  margin-bottom: 155px;
}
@media screen and (max-width: 992px) {
  .section3 {
    padding-bottom: 60px;
  }
}

.section3__row {
  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;
}
@media screen and (max-width: 992px) {
  .section3__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section3__left {
  max-width: 524px;
  width: 100%;
  padding: 50px 42px;
  background: #fff;
  border-radius: 12px;
  margin-right: 9px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .section3__left {
    margin-right: 0;
    margin-bottom: 150px;
  }
}

.section3__img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: -130px;
}

.section3__left__title {
  font-family: "Roboto";
  font-size: 19px;
  color: #333333;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  margin-bottom: 30px;
  text-align: center;
}

.section3__left__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
  font-family: "Roboto";
  font-size: 16px;
  line-height: 22px;
  color: #222222;
}
.section3__left__item:nth-last-child(1) {
  margin-bottom: 0;
}
.section3__left__item::before {
  content: "";
  min-width: 21px;
  min-height: 21px;
  background: url("../img/section3__ico1.svg") no-repeat;
  display: block;
  margin-right: 15px;
}

.section3__right {
  max-width: 524px;
  width: 100%;
  padding: 50px 42px;
  background: #48A689 url("../img/section3__right.png") no-repeat;
  border-radius: 12px;
  position: relative;
}
.section3__right .section3__left__title {
  color: #fff;
}
.section3__right .section3__left__item {
  color: #fff;
}
.section3__right .section3__left__item:nth-last-child(1) {
  margin-bottom: 0;
}
.section3__right .section3__left__item::before {
  content: "";
  min-width: 21px;
  min-height: 21px;
  background: url("../img/section3__ico2.svg") no-repeat;
  display: block;
  margin-right: 15px;
}

.section4 {
  background: url("../img/section4.png") no-repeat;
  min-height: 800px;
  margin: 100px 0;
}
@media screen and (max-width: 1200px) {
  .section4 {
    background: transparent;
    min-height: auto;
  }
}
@media screen and (max-width: 992px) {
  .section4 {
    margin: 60px 0;
  }
}

.section4__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.section4__right {
  width: 75%;
}
@media screen and (max-width: 1600px) {
  .section4__right {
    width: 65%;
  }
}
@media screen and (max-width: 1440px) {
  .section4__right {
    width: 55%;
  }
}
@media screen and (max-width: 1200px) {
  .section4__right {
    width: 100%;
  }
}

.section4__row__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 37px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 37px;
  grid-row-gap: 48px;
}
@media screen and (max-width: 768px) {
  .section4__row__block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.section4__item__img {
  margin-bottom: 10px;
}

.section4__item__title {
  font-family: "Roboto";
  font-size: 19px;
  color: #333333;
  margin-bottom: 9px;
}

.section4__item__txt {
  font-family: "Roboto";
  font-weight: 300;
  color: rgba(34, 34, 34, 0.77);
  font-size: 16px;
  line-height: 24px;
}

.section5 {
  padding-top: 60px;
  padding-bottom: 140px;
}
.section5 .section1__txt2 {
  margin-bottom: 65px;
}
@media screen and (max-width: 992px) {
  .section5 {
    padding-bottom: 60px;
  }
}

.section5__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 22px 1fr 22px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  margin-bottom: 22px;
}
@media screen and (max-width: 992px) {
  .section5__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.section5__item {
  border-radius: 5px;
  background: #F1F5F7;
  padding-top: 35px;
  padding-left: 35px;
  padding-right: 35px;
  padding-bottom: 50px;
}
.section5__item .question__number {
  margin-right: 0;
  margin-bottom: 33px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.section5__row2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2.05fr 22px 1fr;
  grid-template-columns: 2.05fr 1fr;
  grid-column-gap: 22px;
  grid-row-gap: 22px;
}
@media screen and (max-width: 992px) {
  .section5__row2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.section5__row2__item {
  border-radius: 5px;
  background: #48A689;
  padding-top: 35px;
  padding-left: 35px;
  padding-right: 35px;
  padding-bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.section5__row2__item .row__left {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .section5__row2__item .row__left {
    width: 100%;
    margin-bottom: 20px;
  }
}
.section5__row2__item .row__right {
  width: 48%;
  position: relative;
}
.section5__row2__item .row__right img {
  border: 5px;
}
@media screen and (max-width: 768px) {
  .section5__row2__item .row__right {
    width: 100%;
  }
}
.section5__row2__item .question__number {
  background: #fff;
  color: #48A689;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: 0;
  margin-bottom: 33px;
}
.section5__row2__item .section4__item__title {
  color: #fff;
}
.section5__row2__item .section4__item__txt {
  color: rgba(250, 250, 250, 0.77);
}
@media screen and (max-width: 768px) {
  .section5__row2__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section5__row2__item2 {
  border-radius: 5px;
  background: url("../img/section5__img2.png") no-repeat;
  background-size: cover;
  padding-top: 35px;
  padding-left: 35px;
  padding-right: 35px;
  padding-bottom: 35px;
  position: relative;
  position: relative;
  overflow: hidden;
}
.section5__row2__item2 .s5__decor1 {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(72, 166, 137, 0.5);
  border-radius: 5px;
}
.section5__row2__item2 .section4__item__title {
  position: relative;
  z-index: 1;
}
.section5__row2__item2 .section4__item__txt {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .section5__row2__item2 {
    min-height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .section5__row2__item2 {
    min-height: 400px;
  }
}
@media screen and (max-width: 600px) {
  .section5__row2__item2 {
    min-height: 350px;
  }
}

.section6 .section1__txt2 {
  width: 100%;
}
.section6__row {
  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;
}
@media screen and (max-width: 992px) {
  .section6__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section6__left {
  width: 48%;
}
.section6__left .question__item {
  margin-bottom: 11px;
}
.section6__left .question__item:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .section6__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.section6__right {
  width: 48%;
}
@media screen and (max-width: 992px) {
  .section6__right {
    width: 100%;
  }
}

.section7 {
  background: #F1F5F7 url("../img/section7.png") no-repeat;
  background-size: cover;
  padding: 70px 0;
}
.section7 .section2__title {
  text-align: center;
}
.section7 .section1__txt2 {
  width: 100%;
  text-align: center;
  margin-bottom: 75px;
}
.section7 .button2 {
  margin-right: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}

#section7 {
  height: 110px;
}
@media screen and (max-width: 1200px) {
  #section7 {
    height: 78px;
  }
}

.section7__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 21px 1fr 21px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 21px;
  grid-row-gap: 50px;
  margin-bottom: 60px;
}
@media screen and (max-width: 992px) {
  .section7__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.section7__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;
}

.s7__item__number {
  margin-right: 0;
  margin-bottom: 12px;
}

.s7__item__content {
  padding: 40px 24px;
  background: #fff;
  height: 100%;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.s7__item__ico {
  margin-top: 20px;
}

.section8 {
  padding-top: 80px;
  padding-bottom: 160px;
}
.section8 .section2__title {
  text-align: center;
}
.section8 .section1__txt2 {
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .section8 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.f-video-container {
  position: relative;
  display: block;
  width: 100%;
  height: 480px;
}
@media screen and (max-width: 768px) {
  .f-video-container {
    height: 350px;
  }
}
@media screen and (max-width: 480px) {
  .f-video-container {
    height: 100%;
  }
}

.f-video-player {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}

.f-video-player iframe,
.f-video-player object,
.f-video-player embed {
  position: absolute;
  left: 0;
  top: 0;
  height: 480px;
  width: 100%;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .f-video-player iframe,
  .f-video-player object,
  .f-video-player embed {
    height: 100%;
  }
}

.f-video-cover {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.section9 {
  padding-bottom: 115px;
}
.section9 .section1__txt2 {
  width: 100%;
  margin-bottom: 44px;
}
@media screen and (max-width: 992px) {
  .section9 {
    padding-bottom: 60px;
  }
}

.slider__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 48px;
}
.slider__arrows .swiper-button-prev {
  width: 38px;
  height: 38px;
  border-radius: 100px;
  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: 1px solid #48A689;
  position: relative;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-right: 15px;
}
.slider__arrows .swiper-button-prev::before {
  content: "";
  width: 8px;
  height: 13px;
  -webkit-mask-image: url("../img/slide__left.svg");
          mask-image: url("../img/slide__left.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  display: block;
  background: #48A689;
}
.slider__arrows .swiper-button-next {
  width: 38px;
  height: 38px;
  border-radius: 100px;
  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: 1px solid #48A689;
  position: relative;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.slider__arrows .swiper-button-next::before {
  content: "";
  width: 8px;
  height: 13px;
  -webkit-mask-image: url("../img/slide__right.svg");
          mask-image: url("../img/slide__right.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  display: block;
  background: #48A689;
}
.slider__arrows .swiper-button-disabled {
  opacity: 59%;
  border: 1px solid #222;
}
.slider__arrows .swiper-button-disabled::before {
  background: #222;
}
.slider__arrows .swiper-button-disabled::after {
  background: #222;
}

.section9__slider .swiper-slide {
  background: #F1F5F7;
  padding: 30px 25px;
  height: 100%;
  min-height: 360px;
}
.section9__slider .otz__ico {
  margin-bottom: 28px;
}
.section9__slider .otz__name {
  margin-top: 10px;
}

.section10 .section1__txt2 {
  width: 100%;
}
.section10__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section10__row .question__item {
  padding: 0;
  margin: 0;
  background: transparent;
  padding-bottom: 19px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  margin-bottom: 20px;
}
.section10__row .question__number {
  background: transparent;
  border: 1px solid #48A689;
  color: #48A689;
}
.section10__row .question__hidden {
  color: rgba(34, 34, 34, 0.77);
  font-weight: 300;
  padding-left: 70px;
}
.section10__row .active .question__number {
  background: #48A689;
  border: 1px solid #48A689;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .section10__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section10__left {
  width: 35%;
}
@media screen and (max-width: 992px) {
  .section10__left {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.section10__right {
  width: 60%;
}
@media screen and (max-width: 992px) {
  .section10__right {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 30px;
  }
}

.section11 {
  padding: 60px 0;
  background: #F1F5F7 url("../img/section11.png") no-repeat;
  background-size: cover;
}

.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}
.tab .active {
  background: #48A689;
  color: #fff;
}
.tab .active::after {
  background: #fff;
}

#section11 {
  height: 110px;
}
@media screen and (max-width: 1200px) {
  #section11 {
    height: 78px;
  }
}

.tablinks {
  font-family: "Roboto";
  font-weight: 900;
  color: #48A689;
  border: none;
  outline: none;
  background: transparent;
  border: 1px solid #48A689;
  border-radius: 4px;
  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: 220px;
  height: 54px;
  cursor: pointer;
  margin-right: 25px;
}

.tab1::after {
  content: "";
  width: 19px;
  height: 19px;
  -webkit-mask-image: url("../img/tab1.svg");
          mask-image: url("../img/tab1.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  display: block;
  background: #48A689;
  margin-left: 10px;
}

.tab2::after {
  content: "";
  width: 20px;
  height: 20px;
  -webkit-mask-image: url("../img/tab2.svg");
          mask-image: url("../img/tab2.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  display: block;
  background: #48A689;
  margin-left: 10px;
}

.tab__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 19.5px 1fr 19.5px 1fr 19.5px 1fr 19.5px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 19.5px;
  grid-row-gap: 19.5px;
}
@media screen and (max-width: 1200px) {
  .tab__row {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 992px) {
  .tab__row {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .tab__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.tab__item {
  padding-top: 18px;
  padding-right: 36px;
  padding-bottom: 36px;
  padding-left: 18px;
  background: #fff;
}

.tab__name {
  font-family: "Roboto";
  font-weight: 900;
  color: #000;
  margin-bottom: 5px;
}

.tab__txt {
  font-family: "Roboto";
  font-weight: 300;
  color: rgba(34, 34, 34, 0.77);
  margin-bottom: 15px;
}

.tab__contacts a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto";
  font-weight: 300;
  font-size: 15px;
  text-decoration: none;
  color: rgba(34, 34, 34, 0.77);
  margin-bottom: 10px;
}
.tab__contacts a:nth-last-child(1) {
  margin-bottom: 0;
}
.tab__contacts a img {
  margin-right: 10px;
}

.tabcontent {
  -webkit-animation: fadeEffect 1s;
          animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.section12 {
  padding-top: 0;
}
.section12 .section1__txt2 {
  width: 100%;
}

#section12 {
  height: 110px;
}
@media screen and (max-width: 1200px) {
  #section12 {
    height: 78px;
  }
}

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

.section12__block:nth-child(2) {
  padding: 34px;
  background: #F1F5F7;
  border-radius: 4px;
}
.section12__block:nth-child(3) {
  padding: 34px;
  background: #F1F5F7;
  border-radius: 4px;
}

.s12__number {
  margin-right: 0;
  margin-bottom: 32px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.s12__content p {
  margin-bottom: 20px;
}
.s12__content p:nth-last-child(1) {
  margin-bottom: 0;
}

.section13 {
  padding-bottom: 60px;
}
.section13 .section1__txt2 {
  width: 100%;
}

#section13 {
  height: 110px;
}
@media screen and (max-width: 1200px) {
  #section13 {
    height: 78px;
  }
}

.section13__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: 992px) {
  .section13__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.section13__right {
  width: 55%;
}
@media screen and (max-width: 992px) {
  .section13__right {
    width: 100%;
  }
}

.section14 .button2 {
  background: #fff;
  color: #48A689;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.section14__row {
  background: #48A689;
  padding: 40px 77px;
  border-radius: 14px;
  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;
}
@media screen and (max-width: 992px) {
  .section14__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
  }
}

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

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

.section14__txt {
  font-size: 16px;
  line-height: 24px;
  font-family: "Roboto";
  color: rgba(250, 250, 250, 0.77);
  margin-bottom: 40px;
}
.section14__txt p {
  margin-bottom: 20px;
}
.section14__txt p:nth-last-child(1) {
  margin-bottom: 0;
}

.section14__title {
  color: #fff;
}

.section15 {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #F1F5F7), color-stop(50%, #48A689));
  background: linear-gradient(to right, #F1F5F7 50%, #48A689 50%);
  padding-top: 80px;
  padding-bottom: 40px;
}
.section15 .button2 {
  background: #333;
  outline: none;
  border: none;
  width: 100%;
  cursor: pointer;
  margin-bottom: 32px;
}
.section15 .section1__qr {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section15 .qr {
  margin-right: 0;
  margin-bottom: 10px;
}
.section15 .qr__txt {
  color: #fff;
}
@media screen and (max-width: 992px) {
  .section15 {
    background: transparent;
    padding-bottom: 0;
  }
  .section15 .container {
    padding: 0;
  }
}

#section15 {
  height: 110px;
}
@media screen and (max-width: 1200px) {
  #section15 {
    height: 78px;
  }
}

.section15__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 992px) {
  .section15__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section15__left {
  width: 50%;
  padding-right: 80px;
}
@media screen and (max-width: 992px) {
  .section15__left {
    background: #F1F5F7;
    width: 100%;
    padding-right: 0;
    padding: 30px 15px;
  }
}

.section15__right {
  width: 50%;
  padding-left: 80px;
}
@media screen and (max-width: 992px) {
  .section15__right {
    background: #48A689;
    width: 100%;
    padding-left: 0;
    padding: 30px 15px;
  }
}

.s15__left__txt1 {
  width: 100%;
}

.s15__left__grafik {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #444;
  margin-bottom: 30px;
}
.s15__left__grafik img {
  margin-right: 10px;
}

.s15__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
}
.s15__socials a {
  margin-right: 12px;
}

.s15__contacts a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto";
  font-weight: 300;
  font-size: 24px;
  color: rgba(34, 34, 34, 0.77);
  margin-bottom: 10px;
  text-decoration: none;
}
.s15__contacts a:nth-last-child(1) {
  margin-bottom: 0;
}
.s15__contacts a img {
  margin-right: 10px;
}

.form__title {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  margin-bottom: 39px;
}

.form__input {
  margin-bottom: 40px;
}
.form__input input {
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  width: 100%;
  background: transparent;
  outline: none;
  padding-bottom: 20px;
}
.form__input input::-webkit-input-placeholder {
  color: #fff;
}
.form__input input::-moz-placeholder {
  color: #fff;
}
.form__input input:-ms-input-placeholder {
  color: #fff;
}
.form__input input::-ms-input-placeholder {
  color: #fff;
}
.form__input input::placeholder {
  color: #fff;
}

.form__txt {
  text-align: center;
  font-family: "Roboto";
  font-size: 15px;
  color: rgba(250, 250, 250, 0.6);
  margin-bottom: 40px;
}

.section__content {
  margin-top: 110px;
}
.section__content h1 {
  margin-bottom: 30px;
}
.section__content h2 {
  margin-bottom: 30px;
}
.section__content h3 {
  margin-bottom: 30px;
}
.section__content h4 {
  margin-bottom: 30px;
}
.section__content p {
  margin-bottom: 25px;
}
@media screen and (max-width: 1200px) {
  .section__content {
    margin-top: 78px;
  }
}

.footer {
  padding: 16px 0;
}

.footer__row {
  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;
}
@media screen and (max-width: 992px) {
  .footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__logo {
  width: 33.3333333333%;
}
@media screen and (max-width: 992px) {
  .footer__logo {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
}

.footer__socials {
  width: 33.3333333333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__socials a {
  margin-right: 10px;
}
.footer__socials a:nth-last-child(1) {
  margin-right: 0;
}
@media screen and (max-width: 992px) {
  .footer__socials {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
}

.footer__link {
  width: 33.3333333333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.footer__link a {
  text-decoration: none;
  color: #444;
  font-family: "Roboto";
  font-size: 15px;
}
@media screen and (max-width: 992px) {
  .footer__link {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/* ===== УЛУЧШЕНИЯ ФОРМЫ CF7 ===== */
.section15__right .wpcf7-form p {
  margin-bottom: 16px;
}

.section15__right .wpcf7-form input[type="text"],
.section15__right .wpcf7-form input[type="email"],
.section15__right .wpcf7-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  font-family: "Roboto";
  font-size: 15px;
  padding-bottom: 12px;
  outline: none;
}

.section15__right .wpcf7-form input[type="text"]::-webkit-input-placeholder,
.section15__right .wpcf7-form input[type="email"]::-webkit-input-placeholder,
.section15__right .wpcf7-form textarea::-webkit-input-placeholder {
  color: rgba(255,255,255,0.7);
}

.section15__right .wpcf7-form label {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  display: block;
  margin-bottom: 6px;
  font-family: "Roboto";
}

.section15__right .wpcf7-form input[type="submit"] {
  background: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 17px 43px;
  font-family: "Roboto";
  font-weight: 900;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  transition: opacity 0.3s;
  margin-top: 10px;
}

.section15__right .wpcf7-form input[type="submit"]:hover {
  opacity: 0.8;
}

/* ===== КНОПКИ — эффект подъёма ===== */
.button2, .button3 {
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.5s ease;
}
.button2:hover, .button3:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  opacity: 0.9;
}