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

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

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

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

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

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

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

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

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

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

.header {
  padding: 24px 0;
}
@media screen and (max-width: 1024px) {
  .header {
    padding: 10px 0;
  }
}

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu .menu-item {
  margin-right: 43px;
}
.menu .menu-item a {
  color: #023047;
  font-family: "Gilroy-Medium";
  font-size: 17px;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.menu .menu-item a:hover {
  opacity: 0.7;
}
.menu .menu-item:nth-last-child(1) {
  margin-right: 0;
}

.apps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.apps .app__link {
  margin-right: 20px;
}
.apps .app__link:nth-last-child(1) {
  margin-right: 0;
}

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

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

.mobile__menu {
  position: fixed;
  left: 0;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  width: 75%;
  height: 100%;
  background: #FFB732;
  z-index: 1000;
  padding: 20px;
  -webkit-transform: translate(-150%, 0);
          transform: translate(-150%, 0);
}
.mobile__menu .menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mobile__menu .menu .menu-item {
  margin-right: 0;
  margin-bottom: 15px;
}
.mobile__menu .menu .menu-item a {
  font-size: 24px;
}

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

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

.section1__left {
  background: #023047;
  border-radius: 24px;
  padding: 87px 32px;
  padding-right: 90px;
}
@media screen and (max-width: 1024px) {
  .section1__left {
    padding: 47px 20px;
    padding-right: 20px;
  }
}

.section1__title {
  font-size: 58.8708px;
  line-height: 72px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 37px;
}
.section1__title span {
  font-family: "Gilroy-ExtraBold";
}
@media screen and (max-width: 1200px) {
  .section1__title {
    font-size: 48px;
    line-height: 62px;
  }
}
@media screen and (max-width: 1024px) {
  .section1__title {
    font-size: 38px;
    line-height: 52px;
  }
}

.section1__txt {
  font-size: 20px;
  line-height: 25px;
  color: #fff;
  margin-bottom: 37px;
}

.section1__link {
  border-radius: 57px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #121212;
  font-size: 17px;
  font-family: "Gilroy-Bold";
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 19px 57px;
}
.section1__link:hover {
  opacity: 0.7;
}

.section1__right {
  background: #FFB732;
  border-radius: 24px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .section1__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 40px 20px;
    padding-top: 60px;
  }
}

.section1__photo {
  position: absolute;
  bottom: 38px;
  left: -48px;
}
@media screen and (max-width: 1024px) {
  .section1__photo {
    position: relative;
    left: 0;
    bottom: 0;
  }
}

.section1__ico {
  position: absolute;
  top: 10px;
  right: 40px;
}
@media screen and (max-width: 1024px) {
  .section1__ico img {
    width: 100px;
  }
}

.section2 {
  margin-top: 13.5px;
  margin-bottom: 13.5px;
}

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

.section2__left {
  border-radius: 24px;
  background: #FF9914;
  position: relative;
  overflow: hidden;
  padding: 92px 75px;
}
@media screen and (max-width: 1024px) {
  .section2__left {
    padding: 40px 50px;
  }
}

.section2__right {
  border-radius: 24px;
  background: #16445B;
  padding: 75px;
}
@media screen and (max-width: 1024px) {
  .section2__right {
    padding: 20px;
  }
}

.swiper {
  overflow: hidden;
}

.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.swiper-pagination {
  bottom: 38px !important;
}
.swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: #fff;
  width: 8px;
  height: 8px;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: #023047;
}
@media screen and (max-width: 1024px) {
  .swiper-pagination {
    bottom: 10px !important;
  }
}

.tabcontent {
  display: none;
  margin-top: 40px;
  font-size: 17px;
  line-height: 25px;
  color: #FFF;
}
.tabcontent p {
  margin-bottom: 30px;
}
.tabcontent h3 {
  margin-bottom: 30px;
  font-size: 24px;
  font-family: "Gilroy-SemiBold";
  color: #FFB732;
}
.tabcontent a {
  border-radius: 57px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #121212;
  font-size: 17px;
  font-family: "Gilroy-Bold";
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 19px 57px;
}
.tabcontent a:hover {
  opacity: 0.7;
}
.tabcontent ol {
  padding: 0;
  margin: 0;
  margin-bottom: 44px;
}
.tabcontent ol li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.tabcontent ol li:nth-last-child(1) {
  margin-bottom: 0;
}
.tabcontent ol li span {
  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;
  background: #fff;
  min-width: 20px;
  min-height: 20px;
  border-radius: 3.5px;
  color: #023047;
  font-family: "Gilroy-Bold";
  font-size: 12px;
  margin-right: 17px;
}

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

/* Go from zero to full opacity */
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.section2__title {
  font-size: 44px;
  font-family: "Gilroy-ExtraBold";
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 44px;
}
@media screen and (max-width: 1024px) {
  .section2__title {
    font-size: 34px;
  }
}

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

.tablinks {
  cursor: pointer;
  border: 1px solid #FFF;
  border-radius: 12px;
  color: #fff;
  font-size: 17px;
  font-family: "Gilroy-Bold";
  padding: 18px 34px;
  background: transparent;
  margin-right: 21px;
}
.tablinks:nth-last-child(1) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .tablinks {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
}

.active {
  color: #023047;
  background: #fff;
}

.section3 {
  margin-top: 13.5px;
  margin-bottom: 13.5px;
}
.section3 .section2__title {
  text-align: center;
}

.section3__block {
  border-radius: 24px;
  background: #528097;
  padding: 78px 38px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .section3__block {
    padding: 30px 20px;
  }
}
.section3__block .swiper-slide {
  border-radius: 15px;
  width: 582px;
  height: 334px;
  position: relative;
}
.section3__block .slide__video {
  width: 100%;
}
.section3__block .slide__video iframe {
  width: 100% !important;
  height: 334px;
  border-radius: 15px;
}
.section3__block .slide__back {
  position: absolute;
  border-radius: 15px;
  height: 334px;
}
.section3__block .slide__back img {
  border-radius: 15px;
  height: 334px;
  -o-object-fit: cover;
     object-fit: cover;
}

.arrows2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
.arrows2 .swiper-button-prev2 {
  cursor: pointer;
}
.arrows2 .swiper-button-next2 {
  cursor: pointer;
}

.swiper-pagination2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 93px !important;
}
@media screen and (max-width: 1024px) {
  .swiper-pagination2 {
    bottom: 45px !important;
  }
}
.swiper-pagination2 .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #fff;
}
.swiper-pagination2 .swiper-pagination-bullet-active {
  background: #FFB732;
}

.play {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.s4 .section3__block {
  background: #023047;
}
.s4 .swiper-slide {
  background: #fff;
  border-radius: 16px;
  height: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 26px 19px;
}

.arrows3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
.arrows3 .swiper-button-prev3 {
  cursor: pointer;
}
.arrows3 .swiper-button-next3 {
  cursor: pointer;
}

.swiper-pagination3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 93px !important;
}
@media screen and (max-width: 1024px) {
  .swiper-pagination3 {
    bottom: 45px !important;
  }
}
.swiper-pagination3 .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #fff;
}
.swiper-pagination3 .swiper-pagination-bullet-active {
  background: #FFB732;
}

.stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 26px;
}
.stars span {
  margin-right: 8px;
  background: url("../img/star.svg") no-repeat;
  min-width: 17px;
  min-height: 17px;
  display: block;
}
.stars span:nth-last-child(1) {
  margin-right: 0;
}

.review__txt {
  color: #023047;
  font-size: 17px;
  line-height: 21px;
  font-family: "Gilroy-Light";
  margin-bottom: 27px;
}

.review__title {
  color: #023047;
  font-size: 15px;
  font-family: "Gilroy-Medium";
}

.r1 span:nth-child(2) {
  display: none;
}
.r1 span:nth-child(3) {
  display: none;
}
.r1 span:nth-child(4) {
  display: none;
}
.r1 span:nth-child(5) {
  display: none;
}

.r2 span:nth-child(3) {
  display: none;
}
.r2 span:nth-child(4) {
  display: none;
}
.r2 span:nth-child(5) {
  display: none;
}

.r3 span:nth-child(4) {
  display: none;
}
.r3 span:nth-child(5) {
  display: none;
}

.r4 span:nth-child(5) {
  display: none;
}

.section5 {
  margin-top: 65px;
  padding-bottom: 82px;
  background: url("../img/section5.png") no-repeat bottom right;
}
.section5 .section2__title {
  color: #023047;
  margin-bottom: 55px;
}
.section5 .apps {
  margin-bottom: 45px;
}

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

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

.section5__right {
  width: 48%;
}
.section5__right .wpcf7-submit {
  background: #FF9914;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Gilroy-Bold";
  font-size: 17px;
  cursor: pointer;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  border: none;
  outline: none;
  border-radius: 100px;
  padding: 19px 47px;
}
.section5__right .wpcf7-submit:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  .section5__right {
    width: 100%;
  }
}

.section5__txt1 {
  margin-bottom: 47px;
}
.section5__txt1 ul {
  padding: 0;
  margin: 0;
}
.section5__txt1 ul li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 17px;
  color: #023047;
  margin-bottom: 15px;
}
.section5__txt1 ul li:nth-last-child(1) {
  margin-bottom: 0;
}
.section5__txt1 ul li::before {
  content: "";
  min-width: 17px;
  min-height: 17px;
  background: url("../img/li.svg") no-repeat;
  margin-right: 19.85px;
  display: block;
}

.button2 {
  border-radius: 100px;
  border: 1px solid #023047;
  font-family: "Gilroy-Bold";
  font-size: 17px;
  color: #023047;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 336px;
  padding: 12.5px 0;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  margin-bottom: 18px;
}
.button2:hover {
  opacity: 0.7;
}

.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contacts a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #023047;
  font-size: 17px;
  text-decoration: none;
  margin-right: 50px;
}
.contacts a:nth-last-child(1) {
  margin-right: 0;
}
.contacts a img {
  margin-right: 27px;
}
@media screen and (max-width: 1024px) {
  .contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contacts a {
    margin-bottom: 20px;
  }
}

.form__input {
  width: 100%;
  margin-bottom: 11px;
}
.form__input input {
  width: 100%;
  background: #fff;
  font-size: 16px;
  color: #023047;
  border: none;
  outline: none;
  padding: 15px 30px;
  border-radius: 6px;
}
.form__input input::-webkit-input-placeholder {
  font-size: 16px;
  color: #023047;
}
.form__input input::-moz-placeholder {
  font-size: 16px;
  color: #023047;
}
.form__input input:-ms-input-placeholder {
  font-size: 16px;
  color: #023047;
}
.form__input input::-ms-input-placeholder {
  font-size: 16px;
  color: #023047;
}
.form__input input::placeholder {
  font-size: 16px;
  color: #023047;
}

.form__textarea {
  width: 100%;
  margin-bottom: 33px;
}
.form__textarea textarea {
  width: 100%;
  background: #fff;
  font-size: 16px;
  color: #023047;
  border: none;
  outline: none;
  padding: 15px 30px;
  border-radius: 6px;
  height: 120px;
}
.form__textarea textarea::-webkit-input-placeholder {
  font-size: 16px;
  color: #023047;
}
.form__textarea textarea::-moz-placeholder {
  font-size: 16px;
  color: #023047;
}
.form__textarea textarea:-ms-input-placeholder {
  font-size: 16px;
  color: #023047;
}
.form__textarea textarea::-ms-input-placeholder {
  font-size: 16px;
  color: #023047;
}
.form__textarea textarea::placeholder {
  font-size: 16px;
  color: #023047;
}

.swiper2 {
	overflow: hidden;
}
.swiper3 {
	overflow: hidden;
}