@charset "UTF-8";
@font-face {
  font-family: "Century Gothic";
  src: url("../fonts/CenturyGothic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Century Gothic";
  src: url("../fonts/CenturyGothic-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; outline: none; box-shadow: none;
}
ol, ul {
  padding: 0;
}
/* Убираем внутренние отступы */
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 {
  height: 100%;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Century Gothic";
  font-weight: 400;
  background: #001625;
  overflow-x: hidden;
  height: 100%;
}

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

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 4%;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 35px 0;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}

.header__active {
  background: #001625;
  padding: 15px 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;
}

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

.header__menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__menu .menu .menu-item {
  margin-right: 30px;
}
.header__menu .menu .menu-item a{
  text-decoration: none;
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__menu .menu .menu-item-has-children {
  position: relative;
}
.header__menu .menu .menu-item-has-children a::after {
  content: "";
  -webkit-mask-image: url("../img/arrow__down.svg");
          mask-image: url("../img/arrow__down.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  min-width: 12px;
  min-height: 9px;
  display: block;
  background: #ffffff;
  margin-left: 9px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.header__menu .menu .menu-item-has-children .sub-menu {
  background: #001625;
  padding: 20px;
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  -webkit-transform: translate(0px, 100%);
          transform: translate(0px, 100%);
  opacity: 0;
  visibility: hidden;
}
.header__menu .menu .menu-item-has-children .sub-menu .menu-item {
  margin-bottom: 10px;
}
.header__menu .menu .menu-item-has-children .sub-menu .menu-item:nth-last-child(1) {
  margin-bottom: 0;
}
.header__menu .menu .menu-item-has-children .sub-menu a{
  font-size: 16px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.header__menu .menu .menu-item-has-children .sub-menu a::after {
  display: none;
}
.header__menu .menu .menu-item-has-children .sub-menu a:hover {
  opacity: 0.7;
}
.header__menu .menu .menu-item-has-children:hover .sub-menu {
  -webkit-transform: translate(0px, 0%);
          transform: translate(0px, 0%);
  opacity: 1;
  visibility: visible;
}
.header__menu .menu .menu-item-has-children:hover a::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 600px) {
  .header__menu_sticky {
    display: none!important;
  }
}

.button__burger {
  background: #ffffff;
  border-radius: 5px;
  padding: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.button__burger .button__name {
  font-size: 18px;
  font-weight: 700;
}
.button__burger .burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 9px;
}
.button__burger .burger span {
  width: 30px;
  height: 3px;
  margin-bottom: 4px;
  background: #000000;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.button__burger .burger span:nth-last-child(1) {
  margin-bottom: 0px;
  width: 20px;
}
.button__burger:hover .burger span:nth-last-child(1) {
  width: 30px;
}

.section1 {
  min-height: 1183px;
  /*background: url("../img/section1.jpg") no-repeat;*/
  background: #011a48;
  background-size: cover;
  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;
}
@media screen and (max-width: 1440px) {
  .section1 {
    min-height: 887px;
  }
}
@media screen and (max-width: 1200px) {
  .section1 {
    min-height: 100vh;
  }
}

.section1__block {
  background: -webkit-gradient(linear, left bottom, left top, from(#001625), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, #001625 0%, rgba(0, 0, 0, 0) 100%);
  padding-bottom: 200px;
}
@media screen and (max-width: 1440px) {
  .section1__block {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 1200px) {
  .section1__block {
    padding-bottom: 0;
    padding: 80px 0;
  }
}
@media screen and (max-width: 1024px) {
  .section1__block {
    padding-bottom: 40px;
  }
}

.section1__title {
  color: #FFF;
  font-size: 66px;
  font-weight: 700;
  line-height: 123.2%;
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .section1__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .section1__title {
    font-size: 34px;
  }
}

.section1__txt {
  font-size: 26px;
  line-height: 140%;
  color: #ffffff;
}
@media screen and (max-width: 1200px) {
  .section1__txt {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .section1__txt {
    font-size: 18px;
  }
}

.readmore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 11px;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  margin-top: 100px;
}
.readmore::after {
  content: "";
  min-width: 24px;
  min-height: 24px;
  background: url("../img/arrow__forward.svg") no-repeat;
  display: block;
  margin-left: 50px;
}

.section2 {
  padding: 80px 0;
  background: url("../img/section2.svg") no-repeat center center;
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .section2 {
    padding: 40px 0;
  }
}

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

.s2__left {
  width: 48%;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 177.7%;
}
.s2__left p {
  font-size: 16px;
  font-weight: 400;line-height: 32px;
}
@media screen and (max-width: 1200px) {
  .s2__left {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .s2__left {
    font-size: 18px;
    width: 100%;
    margin-bottom: 30px;
  }
}

.s2__right {
  width: 48%;
  font-size: 16px;
  line-height: 200%;line-height: 32px;
}
.s2__right p {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .s2__right {
    width: 100%;
  }
}

.s2__title {
  color: #FFF;
  font-size: 56px;
  font-weight: 700;
  line-height: 130.2%;
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .s2__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .s2__title {
    font-size: 24px;
  }
}

.section3 {
  padding-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .section3 {
    padding-bottom: 40px;
  }
}
.section3 .container {
  padding-right: 0;
}
@media screen and (max-width: 1024px) {
  .section3 .container {
    padding-right: 4%;
  }
}
.swiper__img {
  height: 360px;
  position: relative;
}
.swiper__img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#000), color-stop(75.15%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 75.15%);
  -webkit-box-shadow: 5px 7px 27px 0px rgba(0, 0, 0, 0.03);
          box-shadow: 5px 7px 27px 0px rgba(0, 0, 0, 0.03);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 1;
}
.swiper__img img {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
}

.slide__img__content {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 1;
}
.slide__img__content .slide__year {
  color: #FFF;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 172.7%;
}

.slide__number {
  color: #DCF0FA;
  font-family: Montserrat;
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  border-left: 0;
  border-right: 0;
  border-style: dashed;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.number__bottom {
  color: #FFF;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 172.7%;
}

.slide__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slide__block {
  margin-right: 25px;
}

.slide__content {
  padding-top: 33px;
  padding-left: 28px;
  padding-bottom: 28px;
  padding-right: 28px;
  border-left: 1px solid #1C1C2E;
  border-bottom: 1px solid #1C1C2E;
}

.slide__title {
  color: #FFF;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 138.834%;
  margin-bottom: 8px;
}

.slide__text {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 204.7%;
  margin-bottom: 25px;
}
.slide__text p{margin-bottom: 20px;}
.slide__text p:last-child{margin-bottom: 0px;}
.swiper-button-next {
  width: 84px;
  height: 84px;
  top: 138px;
}

.swiper-button-prev {
  width: 84px;
  height: 84px;
  top: 138px;
}
.swiper-button-prev img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.section4 {
  padding-top: 67px;
  padding-bottom: 80px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.44)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.44) 100%);
}
@media screen and (max-width: 768px) {
  .section4 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.numbers__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .numbers__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.number__block {
  width: 23%;
}
.number__block:nth-child(1) {
  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) {
  .number__block:nth-child(1) {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .number__block {
    width: 31%;
  }
}
@media screen and (max-width: 768px) {
  .number__block {
    width: 100%;
    margin-bottom: 30px;
  }
}

.number__title {
  color: #FFF;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 138.834%;
}
.number__title::after {
  content: "";
  width: 177px;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, color-stop(3.95%, #005B6F), color-stop(97.46%, rgba(0, 91, 111, 0)));
  background: linear-gradient(90deg, #005B6F 3.95%, rgba(0, 91, 111, 0) 97.46%);
  display: block;
  margin-top: 15px;
}

.num {
  color: #DCF0FA;
  font-family: "Montserrat", sans-serif;
  font-size: 100px;
  font-style: normal;
  font-weight: 800;
  line-height: 104.7%;
}
@media screen and (max-width: 1200px) {
  .num {
    font-size: 70px;
  }
}
@media screen and (max-width: 768px) {
  .num {
    font-size: 60px;
  }
}

.num__bottom {
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 172.7%;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  border-top: 2px solid #ffffff;
  border-style: dashed;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-top: 9px;
  margin-top: 9px;
}

.number__name {
  color: #FFF;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 130.2%;
}
@media screen and (max-width: 1024px) {
  .number__name {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .number__name {
    font-size: 34px;
  }
}

.section5 {
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .section5 {
    padding-bottom: 40px;
  }
}

.section5__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;
  margin-bottom: 40px;
}
.section5__header .section6__title {
  margin-bottom: 0;
}

.more {
  border-radius: 50px;
  border: 1px solid #FFF;
  color: #ffffff;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  padding: 13.5px 36px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.more:hover {
  background: #ffffff;
  color: #000000;
}

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

.section5__img {
  width: 25%;width: 30%;
}
.section5__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .section5__img {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 40px;
  }
}

.section5__right {
  width: 70%;width: 65%;
}
@media screen and (max-width: 768px) {
  .section5__right {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 40px;
  }
}

.section5__list {
  color: rgba(168, 170, 173, 0.67);
  font-size: 28px;
  font-weight: 700;
  line-height: 138.834%;
  padding: 20px 0;
  border-bottom: 1px solid #363648;
  cursor: pointer;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  position: relative;
}
.section5__list:nth-child(1) {
  border-top: 1px solid #363648;
}
.section5__list::after {
  content: "";
  background: #DCF0FA;
  width: 297px;
  height: 2px;
  display: block;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  position: absolute;
  bottom: -1px;
  opacity: 0;
}
.section5__list:hover {
  color: #DCF0FA;
}
.section5__list:hover::after {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .section5__list {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .section5__list {
    font-size: 18px;
  }
}

.mobile__read .more {
  text-align: center;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-id-16 .section6__title {
  color: #C5EEFF;
}
.section6__title {
  color: #C5EEFF; color: #fff;
  font-size: 56px;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 130.2%;
}
@media screen and (max-width: 1024px) {
  .section6__title {
    font-size: 34px;
  }
}

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

.section6__img {
  width: 45%;
  height: 781px;
}
.section6__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .section6__img {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    height: auto;
  }
  .section6__img img {
    height: 600px;
    -o-object-position: top;
       object-position: top;
  }
}
@media screen and (max-width: 600px) {
  .section6__img img {
    height: 300px;
  }
}

.section6__right {
  width: 55%;
  padding-left: 40px;
  padding-right: 90px;padding-right: 0px;
}
@media screen and (max-width: 1024px) {
  .section6__right {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 30px 20px;
  }
}

.section6__txt {
  color: #FFF;
  margin-bottom: 25px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 204.7%;
}

.question {
  border-bottom: 1px solid #363648;
  margin-bottom: 20px;
}

.question__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 138.834%;
  margin-bottom: 20px;
  
}
.question__header::before, .section5__list_home_bull::before {
  content: "";
  min-width: 21px;
  min-height: 21px;
  display: block;
  background: url("../img/li.svg") no-repeat;
  margin-right: 14px;
  position: relative;
  top: 5px;
}
.section5__list_home_bull::before {display: inline-block; top: 2px;}
.question__content {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 204.7%;
  padding-left: 35px;
  padding-bottom: 30px;
}

.section7 {
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  .section7 {
    padding: 40px 0;
  }
}

.section7__title {
  color: #FFF;
  font-size: 56px;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 130.2%;
}
@media screen and (max-width: 1024px) {
  .section7__title {
    font-size: 34px;
  }
}

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

.section7__img {
  width: 45%;
  position: relative;
}
.section7__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section7__img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#000), color-stop(75.15%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 75.15%);
  -webkit-box-shadow: 5px 7px 27px 0px rgba(0, 0, 0, 0.03);
          box-shadow: 5px 7px 27px 0px rgba(0, 0, 0, 0.03);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .section7__img {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .section7__img img {
    height: 600px;
    -o-object-position: top;
       object-position: top;
  }
}
@media screen and (max-width: 600px) {
  .section7__img img {
    height: 300px;
  }
}

.section7__right {
  width: 55%;
  padding: 90px;
  background: #DCF0FA;
}
@media screen and (max-width: 1024px) {
  .section7__right {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 30px 20px;
  }
}

.section7__txt1 {
  color: #084873;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 130.2%;
  margin-bottom: 22px;
}
@media screen and (max-width: 1024px) {
  .section7__txt1 {
    font-size: 34px;
  }
}

.section7__txt2 {
  color: #084873;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 158.2%;
}
@media screen and (max-width: 1024px) {
  .section7__txt2 {
    font-size: 22px;
  }
}

.section7__line {
  width: 297px;
  height: 2px;
  margin: 34px 0;
  background: #084873;
}

.section7__txt3 {
  color: #084873;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 187%;
  margin-bottom: 30px;
}

.button {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 204.7%;
  text-decoration: none;
  border-radius: 50px;
  background: #084873;
  padding: 13.5px 36px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.button:hover {
  opacity: 0.6;
}

.section8 .container {
  padding-right: 0;
}
@media screen and (max-width: 1024px) {
  .section8 .container {
    padding-right: 4%;
  }
}

.section8__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;
  margin-bottom: 40px;
  padding-right: 4%;
}
@media screen and (max-width: 768px) {
  .section8__row {
    -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;
  }
}

.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
  }
}

.tab {
  color: #B4B4B4;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 161.2%;
  border-bottom: 2px solid transparent;
  margin-right: 37px;
}

.tab__active {
  color: #084873;
  border-bottom: 2px solid #084873;
}
.tab__active a{color: #084873;}
.swiper2 {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.swiper2 .swiper-img, .shd_div_image {
  position: relative;
}
.shd_div_image{border-radius: 33px 33px 0 0;overflow: hidden;}
.swiper2 .swiper-img::before, .shd_div_image:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 0 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#000), color-stop(75.15%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 75.15%);
  -webkit-box-shadow: 5px 7px 27px 0px rgba(0, 0, 0, 0.03);
          box-shadow: 5px 7px 27px 0px rgba(0, 0, 0, 0.03);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 1;
}
.swiper2 .swiper-img img {
  border-radius: 20px 20px 0 0;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.swiper2 .slide__date {
  background: #084873;
  color: #DCF0FA;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 152.7%;
  padding: 7px 15px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  left: 28px;
  bottom: 0;
  z-index: 1;
}
.swiper2 .swiper-slide {
  border-radius: 20px;
  border: 1px solid #1C1C2E;
}
.swiper2 .slide__content {
  border: none;
}
.swiper2 .swiper-button-next2 {
  position: absolute;
  top: 134px;
  z-index: 1;
  right: 10px;
  cursor: pointer;
}
.swiper2 .swiper-button-prev2 {
  position: absolute;
  top: 134px;
  z-index: 1;
  left: 10px;
  cursor: pointer;
}
.swiper2 .swiper-button-prev2 img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.about__page .section7 {
  padding-top: 0;
}

.about__img {
  position: relative;
  border-radius: 30px;
}
.about__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
.about__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: -webkit-gradient(linear, left bottom, left top, from(#000), color-stop(75.15%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 75.15%);
  -webkit-box-shadow: 5px 7px 27px 0px rgba(0, 0, 0, 0.03);
  box-shadow: 5px 7px 27px 0px rgba(0, 0, 0, 0.03);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 1;
}

.about__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #084873;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 152.7%;
  margin-bottom: 27px;
}
.about__list li:nth-last-child(1) {
  margin-bottom: 0;
}
.about__list li::before {
  content: "";
  min-width: 21px;
  min-height: 21px;
  display: block;
  background: url(../img/li.svg) no-repeat;background: url(../img/adjust.svg) no-repeat;
  margin-right: 14px;
  position: relative;
  top: 5px;
}

.years__txt {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 204.7%;
}

.years__row {
  margin-top: 42px;
  padding: 0 4%;
  padding-right: 0%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* .years__row {
    max-width: 1900px;
    width: 100%;
    padding: 0 4%;
    padding-right: 0%;
    margin-top: 42px;
    display: inline-flex;
    overflow-x: scroll;
    position: relative;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.44) 51.04%, rgba(0, 0, 0, 0.00) 100%);

} */
.time__line {
  width: 100%;
  height: 2px;
  position: absolute;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 2px solid #C5EEFF;
  border-style: dashed;
  top: 203.5px;
  left: calc(4% + 27px);
  z-index: 2;
}

.time__line2 {
  width: calc(100% + 70px);
  height: 2px;
  position: absolute;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 2px solid #C5EEFF;
  border-style: dashed;
  top: 203.5px;
  left: calc(4% + 27px);
  z-index: 2;
}

.year__item {
  /* min-width: 298px;
  margin-right: 72px;
  cursor: pointer;
  display: block; */
}

.year__img {
  position: relative;
  border-radius: 20px;
  height: 235px;
}
.year__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.year__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: -webkit-gradient(linear, left bottom, left top, from(#000), color-stop(75.15%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 75.15%);
  -webkit-box-shadow: 5px 7px 27px 0px rgba(0, 0, 0, 0.03);
          box-shadow: 5px 7px 27px 0px rgba(0, 0, 0, 0.03);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 1;
}

/* .years__row::-webkit-scrollbar { width: 0; }


.years__row  { -ms-overflow-style: none; }


.years__row  { overflow: -moz-scrollbars-none; } */
.year__name {
  color: #C5EEFF;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 130.2%;
  position: absolute;
  left: 70px;
  bottom: 30px;
  z-index: 1;
}

.year__circle {
  width: 11px;
  height: 11px;
  background: #DCF0FA;
  border-radius: 20px;
  position: absolute;
  left: 27px;
  bottom: 25px;
  z-index: 3;
}

.year__content {
  color: #DCF0FA;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 152.7%;
  padding: 18px 25px;
}

.year__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  color: #00B1D8;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 152.7%;
  text-decoration: none;
}

.about_block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 80px 0;
}
@media screen and (max-width: 1439px) {
  .about_block1 {
   /* -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;*/
  }
}
@media screen and (max-width: 1024px) {
  .about_block1 {
    padding: 40px 0;
  }
}

.block1__left {
  width: 25%;
  color: #FFF;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 130.2%;
}
@media screen and (max-width: 1600px) {
  .block1__left {
    width: 30%;
  }
}
@media screen and (max-width: 1439px) {
  .block1__left {
   /* width: 100%;*/
  }
}
@media screen and (max-width: 1024px) {
  .block1__left {
    font-size: 34px;
    margin-bottom: 40px;
  }
}

.block1__right {
  width: 74%;
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 177.7%;
}
@media screen and (max-width: 1600px) {
  .block1__right {
    width: 69%;
  }
}
@media screen and (max-width: 1439px) {
  .block1__right {
   /* width: 100%;*/
  }
}
@media screen and (max-width: 1024px) {
  .block1__right {
    font-size: 18px;
  }
}

.block1__right__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.block1__right__row ul {
  padding: 0;
  margin: 0;
  margin-right: 80px;
}
.block1__right__row ul:nth-last-child(1) {
  margin-right: 0;
}
.block1__right__row ul li {
  list-style-type: none;color: #C5EEFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block1__right__row ul li::before {
  content: "";
  min-width: 21px;
  min-height: 21px;
  display: block;
  background: url(../img/li.svg) no-repeat;
  margin-right: 14px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .block1__right__row {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

body .page {
  min-height: 739px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #ffffff;
  padding-top: 400px;
  padding-bottom: 80px;
}
body .page .page__back {
  background: -webkit-gradient(linear, left bottom, left top, from(#001625), to(rgba(0, 22, 37, 0.38)));
  background: linear-gradient(0deg, #001625 0%, rgba(0, 22, 37, 0.38) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
body .page .container {
  z-index: 1;
  position: relative;
}
body .page .s2__left p {
  margin-top: 30px;
}

.products {
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .products {
    margin-top: 40px;
  }
}

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

.product {
  border-radius: 20px 20px 0 0;
}
.product .product__img {
  position: relative;
  border-radius: 20px 20px 0 0;
}
.product .product__img img {
  border-radius: 20px 20px 0 0;
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product .product__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 0 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#000), color-stop(75.15%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 75.15%);
  -webkit-box-shadow: 5px 7px 27px 0px rgba(0, 0, 0, 0.03);
          box-shadow: 5px 7px 27px 0px rgba(0, 0, 0, 0.03);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 1;
}


.product .slide__img__content {
  z-index: 2;
}
.product .slide__content {
  padding-left: 0;
  padding-right: 0;
  border: none;
}
@media screen and (max-width: 600px) {
  .product .slide__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.products__row2 {
  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;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .products__row2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 800px) {

.product.active .product__img::before{
  background: -webkit-gradient(linear, left bottom, left top, from(#000), color-stop(75.15%, rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 75.15%);

}
.product.active .slide__img__content {
  left: 28px;  top: 28px; bottom: auto;
}
}
.people__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 28px 1fr 28px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .people__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.people__img {
  border-radius: 20px;
  position: relative;
}
.people__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.people__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: -webkit-gradient(linear, left bottom, left top, from(#000), color-stop(57.85%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 57.85%);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 1;
}

.cap__slider {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.cap__slider .slide__content {
  padding: 0;
  border: none;
  padding-top: 38px;
}
.cap__slider .swiper-wrapper {
  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;
}
.cap__slider .swiper-slide .slide__content {
  display: none;
}
.cap__slider .swiper-slide-active {
  width: 50% !important;
}
.cap__slider .swiper-slide-active .slide__content {
  display: block;
}
.cap__slider .swiper-slide-prev {
  width: calc(25% - 51px) !important;
}
.cap__slider .swiper-slide-next {
  width: calc(25% - 51px) !important;
}
.cap__slider .cap__img {
  position: relative;
}
.cap__slider .cap__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.news__page .page {
  padding-top: 300px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.news__header {
  border-bottom: 0.5px solid #C5EEFF;
  padding-bottom: 18px;
  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;
  margin-bottom: 57px;
}
@media screen and (max-width: 1200px) {
  .news__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;
  }
}

.news__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news__tabs .news__tab {
  color: rgba(180, 180, 180, 0.66);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 161.2%;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  text-decoration: none;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  margin-right: 37px;
}
.news__tabs .news__tab:nth-last-child(1) {
  margin-right: 0;
}
.news__tabs .news__tab:hover {
  border-bottom: 1px solid #fff;
  color: #ffffff;
}
.news__tabs .news__tab__active {
  border-bottom: 1px solid #fff;
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .news__tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.news__title {
  color: #FFF;
  font-size: 56px;
  font-weight: 700;
  line-height: 130.2%;
}
@media screen and (max-width: 1200px) {
  .news__title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .news__title {
    font-size: 34px;
  }
}

.news__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 42px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 42px;
  grid-row-gap: 57px;
}
.news__row .swiper-img {
  position: relative;
}
.news__row .swiper-img::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 0 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#000), color-stop(75.15%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 75.15%);
  -webkit-box-shadow: 5px 7px 27px 0px rgba(0, 0, 0, 0.03);
          box-shadow: 5px 7px 27px 0px rgba(0, 0, 0, 0.03);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 1;
}
.news__row .swiper-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 423px;
  border-radius: 20px 20px 0 0;
}
.news__row .swiper-img .slide__date {
  background: #084873;
  color: #DCF0FA;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 152.7%;
  padding: 7px 15px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.news__row .slide__content {
  border: none;
}
@media screen and (max-width: 1024px) {
  .news__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.news__bottom__row {
  margin-top: 50px;
  border-top: 0.5px solid #C5EEFF;
  padding-top: 33px;
  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) {
  .news__bottom__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.news__bottom__left {
  color: #FFF;
  font-size: 56px;
  font-weight: 700;
  line-height: 130.2%;
  width: 48%;color: #C5EEFF;
}
@media screen and (max-width: 1024px) {
  .news__bottom__left {
    font-size: 34px;
    width: 100%;
  }
}

.news__bottom__right {
  color: #C5EEFF;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 158.2%;
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .news__bottom__right {
    width: 100%;
  }
}
.news__bottom__right .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 30px;
}

.news__inner .page {
  padding-top: 150px;
}

.news__main__block {
  padding: 0 4%;
}

.news__main__photo {
  border-radius: 20px;
}
.news__main__photo img {
  border-radius: 20px;
  width: 100%;
  max-width: 1189px;
  height: 638px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .news__main__photo img {
    height: auto;
  }
}

.news__main__content {
  padding: 47px 70px;
}
@media screen and (max-width: 1024px) {
  .news__main__content {
    padding: 30px 0;
  }
}

.news__main__date {
  color: #00B1D8;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 152.7%;
  margin-bottom: 13px;
}

.news__main__title {
  color: #FFF;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 157.334%;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .news__main__title {
    font-size: 24px;
  }
}

.news__main__txt {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 204.7%;
  margin-bottom: 55px;
}
.news__main__txt p {
  margin-bottom: 30px;
}
.news__main__txt p:nth-last-child(1) {
  margin-bottom: 0;
}

.news__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 63px;
}
@media screen and (max-width: 1024px) {
  .news__arrows {
    margin-bottom: 40px;
  }
}

.news__main__slider {
  padding: 0;
  padding-left: 4%;
}
@media screen and (max-width: 1024px) {
  .news__main__slider {
    padding: 0 4%;
  }
}

.footer .container {
  max-width: 1250px;
}

.footer__text {
  font-size: 323px;
  font-weight: 700;
  line-height: 130.2%;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), color-stop(80.23%, rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0) 80.23%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; margin: 50px 0;
}
@media screen and (max-width: 1200px) {
  .footer__text {
    font-size: 266px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__text {
    font-size: 206px;
  }
}
@media screen and (max-width: 768px) {
  .footer__text {
    font-size: 156px;
  }
}
@media screen and (max-width: 600px) {
  .footer__text {
    font-size: 120px;
  }
}
@media screen and (max-width: 480px) {
  .footer__text {
    font-size: 78px;
  }
}

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

.footer__left {
  width: 75%;
  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) {
  .footer__left {
    width: 100%;
    margin-bottom: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__block {
  width: calc(33.3333333333% - 0px);
  color: #FFF;
  font-size: 14px;
  text-decoration: none;
  font-weight: 400;
  line-height: 161.2%;
}
@media screen and (max-width: 1024px) {
  .footer__block {
    width: 100%;
    margin-bottom: 50px;
  }
  .footer__block:nth-last-child(1) {
    margin-bottom: 0;
  }
}

.footer__menu .footer__item .footer__link {
  color: #FFF;
  font-size: 14px;
  text-decoration: none;
  font-weight: 400;
  line-height: 161.2%;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.footer__menu .footer__item .footer__link:hover {
  text-decoration: underline;
}

.footer__block__title {
  font-weight: 700;
}

.contacts__link {
  color: #FFF;
  font-size: 14px;
  text-decoration: none;
  font-weight: 400;
  line-height: 161.2%;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  margin-bottom: 30px;
  display: block;
}
.contacts__link:nth-last-child(1) {
  margin-bottom: 0;
}
.contacts__link:hover {
  text-decoration: underline;
}

.footer__bottom {
  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;
  color: #FFF;
  font-size: 14px;
  text-decoration: none;
  font-weight: 700;
  border-top: 0.5px solid #ffffff;
  padding: 30px 0;
  margin-top: 50px;
}
@media screen and (max-width: 480px) {
  .footer__bottom {
    -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;
  }
}

.policy {
  color: #FFF;
  font-size: 14px;
  text-decoration: none;
  font-weight: 700;
  line-height: 161.2%;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.policy:hover {
  text-decoration: underline;
}

/*.section1__title, h1,h2,h3,h4,h5,h6, .s2__left, .slide__title, .number__title{font-family: 'Helvetica Neue', sans-serif;}
.number__name h2{font-family: "Century Gothic";}*/


@media screen and (min-width: 1100px) {
  .section6__title h2, .s2__title h2, .number__name h2, .section7__txt1 h2{font-size: 56px;}
}

@media screen and (max-width: 1600px) and (min-width: 1000px) {
  .num{font-size: 56px;}
  .number__title {
    font-size: 24px;
  }
}

.hide{display: none!important;}






.header__active {
  background: #001625;
  padding: 15px 0;
}

.header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__right {
  display: flex;
  align-items: center;
}

.header__menu .menu {
  display: flex;
}

.header__menu .menu .menu-item {
  margin-right: 30px;
}

.header__menu .menu .menu-item a{
  text-decoration: none;
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.header__menu .menu .menu-item-has-children {
  position: relative;
}

.header__menu .menu .menu-item-has-children a::after {
  content: "";
  mask-image: url("../img/arrow__down.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  min-width: 12px;
  min-height: 9px;
  display: block;
  background: #ffffff;
  margin-left: 9px;
  transition: 0.5s ease 0s;
}

.header__menu .menu .menu-item-has-children .sub-menu {
  background: #001625;
  padding: 20px;
  position: absolute;
  width: max-content;
  transition: 0.6s ease 0s;
  transform: translate(0px, 100%);
  opacity: 0;
  visibility: hidden;
}

.header__menu .menu .menu-item-has-children .sub-menu .menu-item {
  margin-bottom: 10px;
}

.header__menu .menu .menu-item-has-children .sub-menu .menu-item:nth-last-child(1) {
  margin-bottom: 0;
}

.header__menu .menu .menu-item-has-children .sub-menu a{
  font-size: 16px;
  transition: 0.6s ease 0s;
}

.header__menu .menu .menu-item-has-children .sub-menu a::after {
  display: none;
}

.header__menu .menu .menu-item-has-children .sub-menu a:hover {
  opacity: 0.7;
}

.header__menu .menu .menu-item-has-children:hover .sub-menu {
  transform: translate(0px, 0%);
  opacity: 1;
  visibility: visible;
}

.header__menu .menu .menu-item-has-children:hover a::after {
  transform: rotate(180deg);
}

.header__row.header__row--active {
  position: fixed;
  left: 58px;
  right: 58px;
}

.header__row.header__row--active .header__menu-background {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header__row.header__row--active .menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  flex-direction: column;
  gap: 20px;
  padding: 150px 84px 112px 114px;
  background: linear-gradient(0deg, #001625 0%, rgba(0, 22, 37, 0.38) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; justify-content: center;
}

.header__row.header__row--active .menu::before {
  content: "";
  position: absolute;
  left: 560px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #C5EEFF; opacity: 0;
}

.header__row.header__row--active .menu-item {
  cursor: pointer;
  max-width: 331px;
  transition: 0.5s ease 0s;
}

.header__row.header__row--active .menu-item-has-children:hover::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12px;top: 0px;top: -8px;
  width: 51px;
  height: 51px;
  background-image: url("../img/arrow_forward.webp");
}

.header__row.header__row--active .menu-item:hover a{
  position: relative;
  color: #C5EEFF;
}

.header__row.header__row--active .menu-item:hover a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 2px;
  background-color: #C5EEFF;
}

.header__row.header__row--active .menu-item > a{
  font-family: "Century Gothic";
  font-size: 24px;
    line-height: 36px;
  font-weight: 400;
}

.header__row.header__row--active .menu-item > .sub-menu {
  top: -200px;
  right: -120%;
  padding: 200px 84px 112px 114px;
  min-height: 100vh;
  background: transparent;
  top: -484px;
  left: 135%;
  padding: 200px 84px 112px 114px;
  min-height: 100vh;
  background: transparent;
  padding: 0 85px; min-height: auto;
  top: 50%; margin-top: -48%;
}

.header__row.header__row--active .menu-item > .sub-menu::after {
  content: "";
  position: absolute;
  right: 0;
  top: -50%;
  width: 2px;
  height: 200%;
  background-color: #C5EEFF;opacity: 0;
}

.header__row.header__row--active .button__burger {
  min-width: 111px;
}

.header__row.header__row--active .button__burger .burger span {
  margin-bottom: 0;
  translate: transform 0.4s eas;
}

.header__row.header__row--active .button__burger .burger span:nth-child(1) {
  position: absolute;
  right: 12px;
  transform: rotate(45deg);
}

.header__row.header__row--active .button__burger .burger span:nth-child(2) {
  position: absolute;
  right: 12px;
  transform: rotate(-45deg);
}

.header__row.header__row--active .button__burger .burger span:nth-child(3) {
  width: 0;
}
.logo {
  z-index: 2;
}

.button__burger {
  background: #ffffff;
  border-radius: 5px;
  padding: 7px;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 2;
}

.button__burger .button__name {
  font-size: 18px;
  font-weight: 700;
}

.button__burger .burger {
  display: flex;
  flex-direction: column;
  margin-left: 9px;
}

.button__burger .burger span {
  width: 30px;
  height: 3px;
  margin-bottom: 4px;
  background: #000000;
  transition: 0.6s ease 0s;
}

.button__burger .burger span:nth-last-child(1) {
  margin-bottom: 0px;
  width: 20px;
}

.button__burger:hover .burger span:nth-last-child(1) {
  width: 30px;
}

.slide__content, .swiper2 .swiper-slide{border: none;}



.section1{position: relative;}
.section1 video{position: absolute; z-index: 0; top: 0; left: 0; width: 100%;}
.section1 > div{position: relative; z-index: 1;}



.cap__img .cap__number{color: #DCF0FA;  font-size: 60px; position: absolute;    right: 35px; opacity: 0;font-weight: bold; display: none!important;
  bottom: 20px;}
.swiper-slide-active  .cap__img .cap__number{opacity: 1;}
.navigation  .nav-links{display: flex;
  justify-content: space-between;}

.width_100_per li{margin-left: 15px;}











@media screen and (max-width: 1200px) {
.section1 {
    min-height: 52vh;background-size: 100% auto;
}
.header{padding: 15px 0;}
.section6__title h2, .section7__txt1 h2{font-size: 34px;}
.tab{margin-right: 20px;}
}
@media screen and (max-width: 700px) {
.section5__img{display: none!important;}
body .page{padding-top: 150px; padding-bottom: 30px; min-height: auto;}

.about_block1 {
  display: block;
}
.block1__left {
  width: 100%;
}
.block1__right {
  width: 100%;
}
.people__row{margin-top: 0;}

.section1 {
  padding-top: 120px;
}
.section1 video{top:90px;}
}




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

.esg__left {
  width: 50%;
  height: 703px;
  max-height: 703px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.esg__left p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 204.7%;
}
.esg__left img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 703px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1200px) {
  .esg__left {
    width: 100%;
  }
}

.esg__content {
  z-index: 1;
  position: relative;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.83)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.83) 0%, rgba(0, 0, 0, 0) 100%);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 8%;
}
@media screen and (max-width: 1024px) {
  .esg__content {
    padding: 4%;
  }
}

.esg__right {
  width: 50%;
  padding: 60px;
  /*background: -webkit-gradient(linear, left top, right top, color-stop(9.91%, rgba(11, 38, 51, 0.24)), color-stop(99.96%, rgba(220, 240, 250, 0)));
  background: linear-gradient(90deg, rgba(11, 38, 51, 0.24) 9.91%, rgba(220, 240, 250, 0) 99.96%);*/
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 204.7%; padding: 0 60px;
}
.esg__right p {
  margin-bottom: 30px;
}
.esg__right p:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .esg__right {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .esg__right {
    padding: 0px;
    padding-top: 50px;
    padding:0 4%;
  }
}

.esg__title {
  color: #FFF;
  font-size: 29px;
  font-style: normal;
  font-weight: 700;
  line-height: 167.7%;
  margin-bottom: 27px;
}

.esg1 {
  background: #002A46;
  padding-top: 59px;
  padding-left: 0px;
  padding-right: 57px;
  padding-bottom: 74px;
}
@media screen and (max-width: 1024px) {
  .esg1 {
    padding: 0;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 40px;
  }
}

.esg1__txt {
  color: #C5EEFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 204.7%;
}

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

.esg2__left {
  width: 48%;
  position: relative;
  border-radius: 30px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.esg2__left img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .esg2__left {
    width: 100%;
    margin-bottom: 50px;
  }
}

.esg2__back {
  border-radius: 30px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.68)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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



.esg2__block {
  border-radius: 20px;
  background: #002A46;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
  padding: 27px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  z-index: 1;
}

.block__right {
  margin-left: 30px;
}
.block__right img {
  width: 43px;
  height: 55px;
  border-radius: 0;
}

.block__txt1 {
  color: #C5EEFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 152.7%;
}

.block__txt2 {
  color: #C5EEFF;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 152.7%;
}

.block__txt3 {
  color: #C5EEFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 152.7%;
}



.esg2__block {
  border-radius: 20px;
  background: #002A46;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
  padding: 27px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  z-index: 1;
}

.esg__right__block {
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid #ffffff;
}
.esg__right__block:last-child {margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 0px solid #ffffff;}
.esg2__right__title {
  color: #FFF;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 138.834%;
  margin-bottom: 33px;
}

.esg2__right__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 204.7%;
}


.esg2__right__txt li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 152.7%;
  margin-bottom: 27px;
}
.esg2__right__txt li::before {
  content: "";
  min-width: 21px;
  min-height: 21px;
  display: block;
  background: url(../img/li.svg) no-repeat;
  margin-right: 14px;
  position: relative;
  top: 5px;
}



.career__title {
  margin-bottom: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
}
.positions__title {
  margin-bottom: 47px;
}

.positions {
  margin-bottom: 60px;
}

.positions__title {
  margin-bottom: 47px;
}

.positions__list {
  display: flex;
  gap: 35px;
  align-items: center;
  flex-wrap: wrap;
}

.positions__item {
  border-bottom: 1px solid #C5EEFF;
  padding: 0 0 43px 0;
  max-width: 418px; color: #fff;
}

.positions__article-title {
  margin-bottom: 13px;
  font-family: "Century Gothic";
  font-weight: 700;
  font-size: 28px;
  line-height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
}

.positions__article-text {
  margin-bottom: 37px;
}

.positions__article-text p {
  font-family: "Century Gothic";
  font-size: 16px;
  line-height: 33px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
  color: #fff;
}

.positions__btn-more {
  margin-right: 18px;
}



.career-form__top {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 85px;
}

.career-form__title {
  
  font-size: 56px;
  line-height: 73px;
}

.career-form__text {
  max-width: 823px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  line-clamp: 5;
  box-orient: vertical;
  font-family: "Century Gothic";
  font-weight: 400;
  font-size: 24px;
  line-height: 43px;
}

.career-form__text p {
  color: #C5EEFF; margin-bottom: 30px;
}
.career-form__text p:last-child {margin-bottom: 0;}
.career-form__info form {
  display: flex;
  flex-direction: column;
  align-items: end;
  padding: 0 207px 0 500px;
}
.wpcf7-spinner{display: none!important;}
.career-form__info select,
.career-form__info input {
  border: none;border-bottom: 1px solid #C5EEFF; background: transparent;
  padding: 22px 0;
  width: 100%;
  font-family: "Century Gothic";
  font-weight: 400;
  font-size: 16px;
  line-height: 31px;
  color: #fff;
}
.career-form__info select{ padding: 27px 0;}
.career-form__info select option{background: #084873;}
.career-form__info input::placeholder {
  font-family: "Century Gothic";
  font-weight: 400;
  font-size: 16px;
  line-height: 31px;
  color: #fff;
}

.career-form__info .form-top {
  display: flex;
  gap: 30px;width: 100%;
}

.career-form__info .form-top .career-form__input--one,
.career-form__info .form-top .career-form__input--two {
  
}

.career-form__info textarea {
  outline: none;
  border: none;border-bottom: 1px solid #C5EEFF; background: transparent;
  margin-bottom: 43px;
  padding: 31px 0;
  width: 100%;
  height: 155px;
  font-family: "Century Gothic";
  font-weight: 400;
  font-size: 16px;
  line-height: 31px;
  color: #fff;
}

.career-form__info textarea::placeholder {
  color: #fff;
}
.form-group{display: inline-block; width: 100%;}
.text-center{text-align: center;}
.wpcf7-form .text-center{width: 100%;}
.career-form__info .career-form__submit {
  display: inline-block;
  margin: 0 auto;
  cursor: pointer;
  border-radius: 40px;
  padding: 8px 36px;
  width: 148px;
  max-width: 616px;
  color: #005B6F;
  background-color: #C5EEFF;
}

.career-form__info .form-group--upload {
  cursor: pointer;
  padding: 22px 0;
  position: relative;
  display: inline-block;
 
  border-bottom: 1px solid #C5EEFF;
}

.career-form__info .form-group--upload::before {
  content: "";
  position: absolute;
  right: 0;
  top: 18px;
  width: 34px;
  height: 34px;
  background-image: url("../img/add.webp");
}

.career-form__info .form-group--upload label {
  cursor: pointer;
  padding: 22px 0;
  font-family: "Century Gothic";
  font-weight: 400;
  font-size: 16px;
  line-height: 31px;
  color: #fff;
  min-width: 616px;
}

.career-form__info .form-group--upload input {
  position: absolute;
  top: 0;
  left: 30%; right: 0;
  width: auto;
  /* height: 100%; */
  opacity: 1;
  cursor: pointer;
}
::file-selector-button,
::-webkit-file-upload-button {
  opacity: 0;
}


.career__btn-more {
  display: inline-block;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 40px;
  padding: 8px 36px;
  min-width: 148px;
  
  font-size: 14px;
  line-height: 29px;
  color: #fff;
}
.positions__btn-apply {
  display: inline-block;
  border: none;
  text-align: center;
  min-width: 148px;
  background-color: #084873; color: #DCF0FA;
}
.positions__btn-more {
  margin-right: 18px;
}
.positions__list{align-items: flex-start;}
.positions__item {  
  max-width: calc(33% - 20px);
  width: 100%;
}

.wpcf7-form-control-wrap{position: inherit;}
.single-open_positions .career-form__info{width: 50%;}
.single-open_positions .career-form__info form, .form__contacts .career-form__info form{padding: 0;}
.single-open_positions .career-form__top{margin: 0;}
.section_careers_post h4{display: inline-block; font-size: 20px; margin: 0;}

.form__contacts .career-form__info .form-top{width: 100%;}






.tabcontent {
  display: none;
}

.tabcontent.active {
  display: block;
}

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

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

.contacts__right {
  width: 48%;
}
.contacts__right .map {
  width: 100%;
  border-radius: 20px;
}
.contacts__right .map img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .contacts__right {
    width: 100%;
  }
}

.cont__line {
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#C5EEFF), color-stop(98.6%, rgba(197, 238, 255, 0)));
  background: linear-gradient(90deg, #C5EEFF 0%, rgba(197, 238, 255, 0) 98.6%);
  margin: 60px 0;
}
.cont__row2 {
  width: 100%;
}
.contacts__row {
  position: relative;
}
.contacts__row .tab {
  /*position: absolute;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contacts__row .tab button {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 204.7%;
  text-transform: uppercase;
  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: none;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  background: transparent;
  cursor: pointer;
  border-radius: 50px;
  border: 1px solid #C5EEFF;
  padding: 15px 52px;
  width: 195px;
  margin-right: 20px;
}
.contacts__row .tab button:nth-last-child(1) {
  margin-right: 0;
}
.contacts__row .tab .active {
  color: #084873;
  background: #DCF0FA;
}
@media screen and (max-width: 1340px) {
  .contacts__row .tab {
    position: relative;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .contacts__row .tab {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    overflow-x: scroll;
    width: 100%;
  }
}

.city__name {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5.77%, #C5EEFF), to(rgba(197, 238, 255, 0)));
  background: linear-gradient(180deg, #C5EEFF 5.77%, rgba(197, 238, 255, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 129px;
  font-style: normal;
  font-weight: 700;
  line-height: 123.2%;
  margin-bottom: 30px;
}
@media screen and (max-width: 1500px) {
  .city__name {
    font-size: 100px;
  }
}
@media screen and (max-width: 600px) {
  .city__name {
    font-size: 70px;
  }
}

.left__txt {
  color: #C5EEFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 210.7%;
}

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

.row2__block {
  margin-right: 120px;
}
.row2__block:nth-last-child(1) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .row2__block {
    margin-bottom: 50px;
    margin-right: 0;
  }
}

.row2__block__txt1 {
  color: #FFF;
  font-family: Century Gothic;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 177.7%;
}

.row2__block__number {
  color: #C5EEFF;
  text-decoration: none;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 123.2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.row2__block__number::after {
  content: "";
  width: 55px;
  height: 2px;
  background: #C5EEFF;
  display: block;
  margin-top: 15px;
}
@media screen and (max-width: 600px) {
  .row2__block__number {
    font-size: 25px;
  }
}

.form__contacts {
  border-radius: 20px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(197, 238, 255, 0.1)), color-stop(45.23%, rgba(197, 238, 255, 0)));
  background: linear-gradient(0deg, rgba(197, 238, 255, 0.1) 0%, rgba(197, 238, 255, 0) 45.23%);
  margin-top: 0px;
  padding: 70px 115px;
}

@media screen and (max-width: 1024px) {
  .form__contacts {
    padding: 40px 50px;
  }
}
@media screen and (max-width: 768px) {
  .form__contacts {
    padding: 40px 20px;
    margin-top: 0;
  }
}

.form__title {
  color: #C5EEFF;
  text-align: center;
  font-size: 66px;
  font-style: normal;
  font-weight: 700;
  line-height: 123.2%;
  margin-bottom: 25px;
}
@media screen and (max-width: 600px) {
  .form__title {
    font-size: 36px;
  }
}

.form__txt {
  color: #FFF;
  text-align: center;
  margin-bottom: 30px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200.7%;
}

.map iframe{display: inline-block; width: 100%!important; height: 450px!important; max-height:inherit  !important;}

.wpcf7-not-valid-tip {    font-size: 12px;
  position: absolute;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  width: 100%;width: 100%;
  text-align: center;
}

.swiper__arrows.swiper__arrows_cappp{    position: relative;
  width: 100%;
  height: 66px;}
  .swiper__arrows.swiper__arrows_cappp .swiper-button-next, .swiper__arrows.swiper__arrows_cappp .swiper-button-prev{top: 0;}

.section_careers_post li{margin-left: 15px;}
@media screen and (max-width: 1300px) {
.career-form__info .form-group--upload{min-width: auto;}
}
@media screen and (max-width: 700px) {
.contacts__row .tab button {
  font-size: 14px;
  padding: 7px 10px;
  margin-right: 15px;
}
.left__txt {
  
  font-size: 18px;
  line-height: 30px;
}
.career-form__info .form-group--upload{min-width: auto;}
.career-form__info .form-group--upload input{left: 0;}
.positions__item{max-width: inherit;}
.career-form__top {
  display: inline-block;
  justify-content: space-between;
  margin: 0 auto 5px;
}
.career-form__info form{padding: 0;}
.single-open_positions .career-form__info {
  width: 100%;
}
.cap__slider .swiper-slide-prev,
.header__row.header__row--active .menu-item:hover::after,
.cap__slider .swiper-slide-next{display: none!important;}
.cap__slider .swiper-slide-active{width: 100%!important;padding: 0 15px;}
.cap__img .cap__number {  
  font-size: 40px;  
  right: 20px;
  bottom: 10px;
}
.swiper__arrows.swiper__arrows_cappp{margin-top: 50px;}
}

.header__menu .menu.header__menu_popup .menu-item-has-children a::after{display: none!important;}
.fixme{-webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;}

  .page-id-20 .s2__row{position: relative;}
  .page-id-20 .s2__row::after{position: absolute;background: url(../img/dots_all.svg) center; left: 20%; right: 20%; content: ''; display: block; bottom: 0%; height: 400px;}

  .wpcf7 form .wpcf7-response-output {

    padding: 0.5em 1em;
    background: #fff;width: 100%;
    text-align: center;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
background: transparent;}


.products__row, .products__row2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
 
}

.products__row .product {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 52px);
  flex: 0 0 calc(50% - 52px);
  max-width: calc(50% - 52px);
}
.products__row .product.active{-webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 52px);
  flex: 0 0 calc(100% - 52px);
  max-width: calc(100% - 52px);}
  .products__row2 .product {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33% - 20px);
    flex: 0 0 calc(33% - 20px);
    max-width: calc(33% - 20px);
  }
  .products__row .product.active, .products__row2 .product.active{-webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 20px);
    flex: 0 0 calc(100% - 20px);
    max-width: calc(100% - 20px);}

 .list_image_main, .product.active .list_image{display: none;} 
 .product.active .list_image_main{display: block;    height: auto;}  


 @media screen and (max-width: 700px) {
  .product.active{display: inline-block;}
  .products__row .product, .products__row2 .product {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 20px);
    flex: 0 0 calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
  .product.active > div {
    width: 100%;
}
}

.swiper__arrows_our_story_list {
  position: absolute;
  top: 86px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
  /* width: 100%; */
  left: calc(4% + 15px);
  right: 15px;
}
.swiper__arrows_our_story_list > div{width: 60px; height: 60px; cursor: pointer;}
.swiper__arrows_our_story_list  .swiper-button-prev2{transform: rotate(-180deg);}

.page-id-10 .section7{padding-top: 0;}



.news__item_inside .row{align-items: center; margin-bottom: 60px;}
.news__item_inside .row img{border-radius: 15px 15px 0 0; width: 100%;}

.news__item_inside .date_news_inside, .news__main__date{color: #00B1D8;font-size: 12px; margin-bottom: 40px;}


@media screen and (min-width: 700px) {
  .news__item_inside .slide__content{padding-left: 60px;}
  .news__item_inside .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .single .news__main__content {
    padding-right: 40%;
}
body.single .page{padding-top: 150px;}
}


@media screen and (max-width: 700px) {
.swiper__arrows_our_story_list > div {
  width: 45px;
}
.header__row.header__row--active .menu{padding: 0 50px;}
.header__menu .menu .menu-item {
  margin-right: 0px;
  text-align: center;
}
.header__row.header__row--active .menu-item > a{display: block;}
.header__row.header__row--active .menu-item:hover a::before{left: 50%; margin-left: -27px;}
.header__row.header__row--active {
  position: fixed;
  left: 17px;
  right: 17px;
}
.section1__block {
  padding-top: 200px;
}
.news__item_inside .date_news_inside, .news__main__date{ margin-bottom: 20px;}
}

.section5__img img{-webkit-transition: all 0.30s;
	-moz-transition: all 0.30s;
	-o-transition: all 0.30s;
	transition: all 0.30s;}