@charset "UTF-8";
/* @import 'fonts'; */
.container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0px;
}
@media screen and (max-width: 1320px) {
  .container {
    padding: 0 15px;
  }
}

/* Указываем 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 {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Alumni Sans", sans-serif;
  color: #fff;
  background: #102942;
  font-size: 22px;
}

/* Удаляем стандартную стилизацию для всех 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: 20px;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header-fixed {
  background: #102942;
  top: 0;
}

.header__row {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  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;
}

.logo {
  padding-left: 16px;
}

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

.header__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  right: 30px;
  bottom: 70px;
  z-index: 10;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .header__socials {
    right: 15px;
  }
}

.header__soc {
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.header__soc:hover {
  opacity: 0.7;
}

.lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  height: 77px;
}
@media screen and (max-width: 1024px) {
  .lang {
    padding: 0;
  }
}
.lang li {
  list-style-type: none;
  margin-right: 24px;
  opacity: 0.44;
}
.lang li img {
  width: 23px !important;
  height: 15px !important;
}
.lang li:nth-last-child(1) {
  margin-right: 0;
}
.lang .current-lang {
  opacity: 1;
}

.header__button {
  padding: 0 40px;
}
.header__button a {
  text-decoration: none;
  color: #fff;
  font-size: 22px;
}
@media screen and (max-width: 1024px) {
  .header__button {
    display: none;
  }
}

.burger__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  background: #365575;
  height: 77px;
  width: 93px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@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;
  }
}

.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: 43px;
  height: 43px;
  position: relative;
}
.burger span {
  width: 43px;
  height: 2px;
  margin-bottom: 7px;
  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 span:nth-child(2) {
  width: 29px;
}
.burger span:nth-child(3) {
  width: 15px;
}
.burger__opened span {
  position: absolute;
  margin-bottom: 0;
}
.burger__opened span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 43px;
}
.burger__opened span:nth-child(2) {
  opacity: 0;
}
.burger__opened span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 43px;
}

.body__opened {
  overflow: hidden;
}

.back {
  background: rgba(18, 18, 18, 0.9);
  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;
}

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

.mobile {
  position: fixed;
  top: 120px;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.mobile .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .mobile {
    width: 100%;
    overflow-y: scroll;
  }
}

.mobile__menu {
  background: #FBFBFB;
  padding: 20px 15px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: 460.83px;
}
@media screen and (max-width: 1024px) {
  .mobile__menu {
    width: 100%;
  }
}

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

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header__menu a {
  text-decoration: none;
  font-size: 28px;
  color: #000;
}

.section1 {
  background: url("../img/section1.webp") no-repeat center;
  background-size: cover;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 1600px) {
  .section1 {
    height: auto;
    padding-bottom: 60px;
  }
}

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

.section1__title {
  text-transform: uppercase;
  background: linear-gradient(122.97deg, #FFFFFF 12.76%, #D3D3D3 46.31%, #FFFFFF 90.28%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
  font-size: 114.569px;
  line-height: 97px;
}
@media screen and (max-width: 1400px) {
  .section1__title {
    font-size: 100px;
    line-height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .section1__title {
    font-size: 46px;
  }
}
.section1__title span:nth-child(2) {
  padding-left: 57px;
}
@media screen and (max-width: 1024px) {
  .section1__title span:nth-child(2) {
    padding-left: 0px;
  }
}
.section1__title span:nth-child(4) {
  padding-left: 121px;
}
@media screen and (max-width: 1024px) {
  .section1__title span:nth-child(4) {
    padding-left: 0px;
  }
}
.section1__title span:nth-child(6) {
  padding-left: 210px;
}
@media screen and (max-width: 1024px) {
  .section1__title span:nth-child(6) {
    padding-left: 0px;
  }
}

.section1__text {
  margin-top: 20px;
  line-height: 25px;
  font-size: 22px;
  padding-left: 220px;
}
@media screen and (max-width: 1024px) {
  .section1__text {
    padding-left: 0px;
    font-size: 18px;
  }
}

.section1__buttons {
  padding-left: 220px;
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .section1__buttons {
    padding-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section1__buttons .button1 {
  margin-right: 14px;
}
@media screen and (max-width: 1024px) {
  .section1__buttons .button1 {
    margin-right: 0;
    margin-bottom: 14px;
  }
}

.button1 {
  min-width: 260px;
  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;
  color: #fff;
  background: #365575;
  -webkit-box-shadow: 0px 0px 49.1px rgba(254, 111, 66, 0.6);
          box-shadow: 0px 0px 49.1px rgba(254, 111, 66, 0.6);
  padding: 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
@media screen and (max-width: 1024px) {
  .button1 {
    width: 100%;
    padding: 15px;
  }
}
.button1:hover {
  opacity: 0.7;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.button2 {
  min-width: 260px;
  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;
  color: #fff;
  background: rgba(54, 85, 117, 0.01);
  border: 1px solid #7D7D7D;
  -webkit-box-shadow: 0px 0px 49.1px rgba(254, 111, 66, 0.6);
          box-shadow: 0px 0px 49.1px rgba(254, 111, 66, 0.6);
  padding: 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
@media screen and (max-width: 1024px) {
  .button2 {
    width: 100%;
    padding: 15px;
  }
}
.button2 span {
  background: linear-gradient(122.97deg, #FFFFFF 12.76%, #D3D3D3 46.31%, #FFFFFF 90.28%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 22px;
}
.button2:hover {
  opacity: 0.7;
  -webkit-box-shadow: none;
          box-shadow: none;
}

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

.title__section2 {
  text-transform: uppercase;
  background: linear-gradient(122.97deg, #FFFFFF 12.76%, #D3D3D3 46.31%, #FFFFFF 90.28%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
  font-size: 114.569px;
  line-height: 97px;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 1400px) {
  .title__section2 {
    font-size: 100px;
    line-height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .title__section2 {
    font-size: 46px;
    text-align: left;
  }
}
.title__section2 span:nth-child(2) {
  padding-left: 220px;
}
@media screen and (max-width: 1024px) {
  .title__section2 span:nth-child(2) {
    padding-left: 0;
  }
}

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

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

.text1__section2 {
  font-size: 22px;
  line-height: 100%;
  color: #66829F;
  position: absolute;
  top: -100px;
}
@media screen and (max-width: 1024px) {
  .text1__section2 {
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }
}

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

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

.s2__sub__left {
  width: 48%;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1024px) {
  .s2__sub__left {
    width: 100%;
    margin-bottom: 20px;
  }
}

.s2__sub__right {
  width: 48%;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1024px) {
  .s2__sub__right {
    width: 100%;
  }
}

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

.number__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  margin-right: 15px;
  padding-right: 30px;
}
.number__left .number {
  width: 185px;
}
@media screen and (max-width: 1024px) {
  .number__left .number {
    width: 110px;
  }
}
@media screen and (max-width: 1024px) {
  .number__left {
    margin-right: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
    padding-right: 0px;
  }
}

.number__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 30px;
}
.number__right .number {
  width: 320px;
}
@media screen and (max-width: 1024px) {
  .number__right .number {
    width: 190px;
  }
}
@media screen and (max-width: 1024px) {
  .number__right {
    padding-bottom: 20px;
    padding-left: 0;
  }
}

.row2__right img {
  width: 278px;
}
@media screen and (max-width: 1024px) {
  .row2__right img {
    width: 100%;
  }
}

.number {
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#999999));
  background: linear-gradient(180deg, #FFFFFF 0%, #999999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 500;
  font-size: 168px;
  line-height: 100%;
  margin-right: 15px;
}
@media screen and (max-width: 1024px) {
  .number {
    font-size: 100px;
  }
}

.number__txt {
  font-size: 22px;
  letter-spacing: 0.01em;
  color: #FE6F42;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  line-height: 100%;
}

.section2__row2 {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .section2__row2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.row2__left {
  text-transform: uppercase;
  font-weight: 300;
  color: #365575;
  font-size: 58px;
  line-height: 100%;
  margin-right: 90px;
}
@media screen and (max-width: 1024px) {
  .row2__left {
    margin-right: 0;
    font-size: 38px;
    margin-bottom: 30px;
  }
}
.row2__left .s2__title2__span {
  padding-left: 150px;
}
@media screen and (max-width: 1024px) {
  .row2__left .s2__title2__span {
    padding-left: 0;
  }
}

.section3 {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}
.section3 .container {
  position: relative;
}

.s3__item {
  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;
  cursor: pointer;
}
.s3__item:hover .s3__item__title {
  color: #FE6F42;
}

.s3__item__block {
  margin-left: 20px;
  margin-right: 40px;
  margin-top: -89px;
}
@media screen and (max-width: 1024px) {
  .s3__item__block {
    margin-right: 20px;
    margin-top: -79px;
  }
}

.s3__item__hidden {
  background: rgba(15, 37, 59, 0.73);
  backdrop-filter: blur(15.45px);
  padding-top: 30px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 1024px) {
  .s3__item__hidden {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
  }
}

.s3__item__arrow {
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 48px;
  height: 48px;
  background: #FE6F42;
  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.6s ease 0s;
  transition: 0.6s ease 0s;
  cursor: pointer;
  margin-right: 40px;
}

.s3__button__hidden {
  opacity: 0;
  visibility: hidden;
  height: 0;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}

.s3__item__txt {
  opacity: 0;
  visibility: hidden;
  height: 0;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}

.s3__item__title {
  font-size: 26px;
  text-transform: uppercase;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}

.s3__img img {
  width: 100%;
}

.open .s3__button__hidden {
  opacity: 1;
  visibility: visible;
  height: auto;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.open .s3__item__txt {
  opacity: 1;
  visibility: visible;
  height: auto;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.open .s3__item__block {
  margin-top: -250px;
}
.open .s3__item__arrow {
  background: #365575;
}
.open .s3__item__arrow img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.title__section3 {
  margin-bottom: 90px;
  position: relative;
  text-transform: uppercase;
  background: linear-gradient(122.97deg, #FFFFFF 12.76%, #D3D3D3 46.31%, #FFFFFF 90.28%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
  font-size: 114.569px;
  line-height: 97px;
}
@media screen and (max-width: 1400px) {
  .title__section3 {
    font-size: 100px;
    line-height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .title__section3 {
    font-size: 46px;
    margin-bottom: 30px;
  }
  .title__section3 br {
    display: none;
  }
}

.section3__txt {
  font-size: 22px;
  font-weight: 400;
  color: #66829F !important;
  text-align: right;
  position: absolute;
  right: 0;
  top: 121px;
}
@media screen and (max-width: 1024px) {
  .section3__txt {
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }
}

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

.arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 30px;
}

.arr__left {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  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;
  cursor: pointer;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  margin-right: 16px;
}
.arr__left:hover {
  opacity: 0.7;
}
.arr__left::before {
  content: "";
  -webkit-mask-image: url("../img/arrow__left.svg");
          mask-image: url("../img/arrow__left.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 9px;
  height: 13px;
  display: block;
  background-color: #fff;
}

.arr__right {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  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;
  cursor: pointer;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.arr__right:hover {
  opacity: 0.7;
}
.arr__right::before {
  content: "";
  -webkit-mask-image: url("../img/arrow__left.svg");
          mask-image: url("../img/arrow__left.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 9px;
  height: 13px;
  display: block;
  background-color: #fff;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.section4 {
  padding: 60px 0;
  background: url("../img/section4.webp") no-repeat center;
  background-size: cover;
  height: 740px;
}
@media screen and (max-width: 1024px) {
  .section4 {
    height: auto;
  }
}

.title__section4 {
  position: relative;
  text-transform: uppercase;
  background: linear-gradient(122.97deg, #FFFFFF 12.76%, #D3D3D3 46.31%, #FFFFFF 90.28%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
  font-size: 114.569px;
  line-height: 97px;
}
@media screen and (max-width: 1400px) {
  .title__section4 {
    font-size: 100px;
    line-height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .title__section4 {
    font-size: 46px;
    margin-bottom: 30px;
  }
  .title__section4 br {
    display: none;
  }
}

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

.section5 {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
@media screen and (max-width: 1024px) {
  .section5 {
    padding: 60px 0;
  }
}

.s5__decor {
  position: absolute;
  top: -400px;
  left: 0;
}
@media screen and (max-width: 600px) {
  .s5__decor {
    top: -300px;
  }
}
@media screen and (max-width: 480px) {
  .s5__decor {
    top: -250px;
  }
}

.section5__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
}
.section5__block img {
  width: 90%;
}
@media screen and (max-width: 1024px) {
  .section5__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.s5__item {
  position: absolute;
  bottom: 0;
  right: 0;
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .s5__item {
    position: relative;
    margin-top: 30px;
  }
}

.s5__header {
  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: 1024px) {
  .s5__header {
    -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;
  }
}

.s5__title {
  font-size: 66px;
  line-height: 100%;
  font-weight: 300;
  color: #A5BED7;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .s5__title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .s5__title br {
    display: none;
  }
}

.s5__txt {
  font-size: 22px;
  line-height: 100%;
  text-transform: uppercase;
  color: #66829F;
}

.s5__item__img {
  margin-bottom: 30px;
}
.s5__item__img img {
  width: 195px;
}

.s5__item__txt {
  font-size: 16px;
  text-align: right;
  color: rgba(255, 255, 255, 0.8);
}

.section6 {
  padding-top: 60px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .section6 {
    padding-bottom: 60px;
    padding-top: 0;
  }
}

.section6__decor {
  position: absolute;
  right: 0;
  bottom: -400px;
  z-index: 0;
}
@media screen and (max-width: 600px) {
  .section6__decor {
    bottom: -300px;
  }
}
@media screen and (max-width: 480px) {
  .section6__decor {
    bottom: -250px;
  }
}

.s6__title {
  position: relative;
}

.title__section6 {
  position: relative;
  text-transform: uppercase;
  background: linear-gradient(122.97deg, #FFFFFF 12.76%, #D3D3D3 46.31%, #FFFFFF 90.28%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
  font-size: 114.569px;
  line-height: 97px;
}
@media screen and (max-width: 1400px) {
  .title__section6 {
    font-size: 100px;
    line-height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .title__section6 {
    font-size: 46px;
    margin-bottom: 30px;
  }
  .title__section6 br {
    display: none;
  }
}

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

.text__section6 {
  font-size: 22px;
  line-height: 100%;
  color: #66829F;
  position: absolute;
  left: 0;
  bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .text__section6 {
    position: relative;
    margin-top: 20px;
    bottom: 0;
  }
}

.section6__row {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .section6__row {
    margin-top: 30px;
  }
}

.s6__item {
  width: 33.3333333333%;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 60px;
  padding-top: 60px;
  padding-left: 60px;
  padding-right: 60px;
  border-bottom: 1px solid rgba(54, 85, 117, 0.4392156863);
  border-right: 1px solid rgba(54, 85, 117, 0.4392156863);
}
@media screen and (max-width: 1024px) {
  .s6__item {
    width: 50%;
    padding-top: 20px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 20px;
  }
}
.s6__item:nth-child(1) {
  position: relative;
}
.s6__item:nth-child(1)::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 100px;
  background: #102942;
  position: absolute;
  bottom: -15px;
  right: -15px;
  display: block;
  z-index: 1;
}
.s6__item:nth-child(2) {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .s6__item:nth-child(2) {
    border-right: none;
  }
}
.s6__item:nth-child(2)::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 100px;
  background: #102942;
  position: absolute;
  bottom: -15px;
  right: -15px;
  display: block;
}
.s6__item:nth-child(3) {
  border-right: none;
}
@media screen and (max-width: 1024px) {
  .s6__item:nth-child(3) {
    border-right: 1px solid rgba(54, 85, 117, 0.4392156863);
    position: relative;
  }
  .s6__item:nth-child(3)::after {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 100px;
    background: #102942;
    position: absolute;
    bottom: -15px;
    right: -15px;
    display: block;
  }
}
.s6__item:nth-child(4) {
  border-bottom: none;
}
@media screen and (max-width: 1024px) {
  .s6__item:nth-child(4) {
    border-right: none;
    border-bottom: 1px solid rgba(54, 85, 117, 0.4392156863);
  }
}
.s6__item:nth-child(5) {
  border-bottom: none;
}
.s6__item:nth-child(6) {
  border-bottom: none;
  border-right: none;
}

.s6__item-img {
  margin-bottom: 30px;
}

.s6__item-txt {
  font-size: 28px;
  line-height: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.77);
  height: 60px;
}
@media screen and (max-width: 1024px) {
  .s6__item-txt {
    height: auto;
    font-size: 18px;
  }
}

.section7 {
  background: linear-gradient(99.31deg, #FFFFFF 10.31%, #D3D3D3 43.5%, #FFFFFF 87.01%);
  padding: 75px 0;
}
@media screen and (max-width: 1024px) {
  .section7 {
    padding: 60px 0;
  }
}

.s7__title {
  position: relative;
}

.title__section7 {
  position: relative;
  text-transform: uppercase;
  color: #102942;
  font-weight: 700;
  font-size: 114.569px;
  line-height: 97px;
}
@media screen and (max-width: 1400px) {
  .title__section7 {
    font-size: 100px;
    line-height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .title__section7 {
    font-size: 46px;
    margin-bottom: 30px;
  }
  .title__section7 br {
    display: none;
  }
}

.s7__title__span2 {
  padding-left: 150px;
}
@media screen and (max-width: 1024px) {
  .s7__title__span2 {
    padding-left: 0;
  }
}
.s7__title__span2:nth-child(3) {
  padding-left: 300px;
}
@media screen and (max-width: 1024px) {
  .s7__title__span2:nth-child(3) {
    padding-left: 0;
  }
}

.text__section7 {
  font-size: 22px;
  color: #66829F;
  text-align: right;
  position: absolute;
  right: 0;
  bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .text__section7 {
    position: relative;
    bottom: 0;
    margin-top: 20px;
  }
}

.s7__row {
  margin-top: 40px;
  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) {
  .s7__row {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

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

.question__item {
  border-bottom: 1px solid #102942;
  margin-bottom: 30px;
  padding-bottom: 30px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .question__item {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.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__header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
}

.question__number {
  font-size: 28px;
  color: #365575;
  margin-right: 30px;
  width: 42px;
}
@media screen and (max-width: 1024px) {
  .question__number {
    width: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 22px;
    margin-right: 20px;
  }
}

.question__name {
  font-size: 28px;
  color: #102942;
}
@media screen and (max-width: 1024px) {
  .question__name {
    font-size: 22px;
  }
}

.question__hidden {
  padding-left: 72px;
  font-size: 18px;
  color: #102942;
}
@media screen and (max-width: 1024px) {
  .question__hidden {
    padding-left: 0;
  }
}

.question__arrow::after {
  content: "+";
  font-size: 61px;
  line-height: 25px;
  font-weight: 200;
  color: #365575;
  display: block;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}

.active2 .question__arrow::after {
  content: "-";
  font-size: 61px;
  font-weight: 200;
  color: #365575;
  display: block;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}

.section8 {
  padding-top: 100px;
  padding-bottom: 130px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .section8 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.section8__decor1 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.section8__decor2 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}

.section8__block {
  background: linear-gradient(99.31deg, #FFFFFF 10.31%, #D3D3D3 43.5%, #FFFFFF 87.01%);
  z-index: 1;
  position: relative;
  padding: 70px 160px;
}
@media screen and (max-width: 1024px) {
  .section8__block {
    padding: 35px 20px;
  }
}

.title__section8 {
  position: relative;
  text-transform: uppercase;
  color: #102942;
  font-weight: 700;
  font-size: 114.569px;
  line-height: 97px;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .title__section8 {
    font-size: 100px;
    line-height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .title__section8 {
    font-size: 46px;
    margin-bottom: 30px;
  }
  .title__section8 br {
    display: none;
  }
}

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

.form__input {
  width: 48%;
  margin-bottom: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .form__input {
    width: 100%;
  }
}
.form__input:nth-child(10) {
  width: 100%;
}
.form__input .form__label {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  color: #365575;
}
.form__input input {
  border: none;
  outline: none;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 13.7px rgba(10, 24, 38, 0.03);
          box-shadow: 0px 4px 13.7px rgba(10, 24, 38, 0.03);
  padding: 10px 15px;
  width: 100%;
}
.form__input textarea {
  width: 100%;
  height: 90px;
  border: none;
  outline: none;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 13.7px rgba(10, 24, 38, 0.03);
          box-shadow: 0px 4px 13.7px rgba(10, 24, 38, 0.03);
  padding: 10px 15px;
}

.form__sep {
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #66829F;
  margin: 30px 0;
}

.form__button {
  outline: none;
  border: none;
  cursor: pointer;
  margin: 0 auto;
  margin-top: 30px;
}

.section9 {
  padding-top: 70px;
  padding-bottom: 100px;
  background: url("../img/footer.webp") no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .section9 {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

.title__section9 {
  position: relative;
  text-transform: uppercase;
  background: linear-gradient(122.97deg, #FFFFFF 12.76%, #D3D3D3 46.31%, #FFFFFF 90.28%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
  font-size: 114.569px;
  line-height: 97px;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .title__section9 {
    font-size: 100px;
    line-height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .title__section9 {
    font-size: 46px;
    margin-bottom: 30px;
  }
  .title__section9 br {
    display: none;
  }
}

.s9__row {
  background: #102942;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 300px;
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  .s9__row {
    padding: 10px;
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: transparent;
  }
}

.s9__item {
  width: 33.3333333333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-right: 50px;
}
@media screen and (max-width: 1024px) {
  .s9__item {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
    background: #102942;
    padding: 10px;
  }
  .s9__item:nth-last-child(1) {
    margin-bottom: 0;
  }
}
.s9__item::after {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background: #365575;
  position: absolute;
  right: 50px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .s9__item::after {
    display: none;
  }
}
.s9__item:nth-child(2) {
  padding-left: 50px;
}
@media screen and (max-width: 1024px) {
  .s9__item:nth-child(2) {
    padding-left: 0;
    padding: 10px;
  }
}
.s9__item:nth-child(3) {
  padding-left: 50px;
}
@media screen and (max-width: 1024px) {
  .s9__item:nth-child(3) {
    padding-left: 0;
    padding: 10px;
  }
}
.s9__item:nth-child(3)::after {
  display: none;
}

.item__img {
  margin-right: 16px;
}

.item__label {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.77);
}

.item__link {
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  font-weight: 200;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.77);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), #102942;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #102942;
  padding: 50px 0;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 20px 0;
  }
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .footer__row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -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;
  }
}

.footer__item {
  width: 33.3333333333%;
  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;
}
.footer__item:nth-child(1) {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.footer__item:nth-child(3) {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .footer__item {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer__item:nth-last-child(1) {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1024px) {
  .footer__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__socials img {
  width: 46px;
}
@media screen and (max-width: 1024px) {
  .footer__socials {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__soc {
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  margin-right: 27px;
}
.footer__soc:nth-last-child(1) {
  margin-right: 0;
}
.footer__soc:hover {
  opacity: 0.7;
}

.footer__copy {
  text-align: right;
  font-size: 16px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.77);
}
@media screen and (max-width: 1024px) {
  .footer__copy {
    text-align: center;
  }
}

.wpcf7-response-output {
  color: #000;
}