@charset "UTF-8";
@font-face {
  font-family: "TTFirsNeue-Light";
  src: url("../fonts/TTFirsNeue-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-Regular";
  src: url("../fonts/TTFirsNeue-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-ExtraLight";
  src: url("../fonts/TTFirsNeue-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-DemiBold";
  src: url("../fonts/TTFirsNeue-DemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-Bold";
  src: url("../fonts/TTFirsNeue-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-ExtraBold";
  src: url("../fonts/TTFirsNeue-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-Medium";
  src: url("../fonts/TTFirsNeue-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-Thin";
  src: url("../fonts/TTFirsNeue-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "TTFirsNeue-Black";
  src: url("../fonts/TTFirsNeue-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0px;
}
@media screen and (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }
}

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

.sections {
  margin-top: 130px;
}

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

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

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

/* Выставляем основные настройки по-умолчанию для body */
body {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Montserrat";
  color: #000;
  background: #fff;
}

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

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

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

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  padding: 15px 0;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .header {
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  }
}

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

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

.logo {
  margin-right: 40px;
}
.logo img {
  width: 315px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .logo {
    margin-right: 0;
  }
  .logo img {
    width: 200px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

@media screen and (max-width: 1024px) {
  .sertificate {
    display: none;
  }
}

.top__menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top__menu .menu .menu-item {
  margin-right: 23px;
}
.top__menu .menu .menu-item:nth-last-child(1) {
  margin-right: 0;
}
.top__menu .menu .menu-item a {
  color: #000;
  font-weight: 300;
  text-decoration: none;
  position: relative;
}
.top__menu .menu .menu-item a:hover::after {
  width: 100%;
}
.top__menu .menu .menu-item a::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #6288CD;
  display: block;
  position: absolute;
  width: 0%;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}

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

.social__link {
  margin-right: 14px;
}
.social__link:nth-last-child(1) {
  margin-right: 0;
}

.lang__arrow {
  margin-left: 6px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}

.current__lang {
  font-weight: 400;
  font-size: 14.7px;
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rotate {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.lang-item {
  font-size: 14.7px;
}

.lang__hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #e5f3ff;
  -webkit-transition: 0.3s ease 0s;
  transition: 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 2;
}
.lang__hover li {
  height: auto;
}
.lang__hover li a {
  text-decoration: none;
  color: #000;
  padding: 5px 10px;
  font-weight: bold;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 5px 0;
}

.opened {
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  opacity: 1;
  visibility: visible;
}

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

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

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

.body__opened {
  overflow: hidden;
}

.mobile__menu {
  position: fixed;
  top: 81.27px;
  right: 0;
  width: 50%;
  height: 100vh;
  background: #fff;
  z-index: 99;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  padding: 20px 15px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.mobile__menu .top__menu {
  margin-top: 0;
  background: transparent;
  padding: 0;
  margin-bottom: 20px;
}
.mobile__menu .top__menu .menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobile__menu .top__menu .menu .menu-item {
  margin-right: 0;
  margin-bottom: 10px;
}
.mobile__menu .top__menu .menu .menu-item a {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .mobile__menu {
    width: 100%;
    overflow-y: scroll;
  }
}

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

.back {
  background: rgba(18, 18, 18, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  opacity: 0;
  visibility: hidden;
}

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

.section1 {
  position: relative;
}

.section1__row1 {
  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;
  min-height: 547px;
}
@media screen and (max-width: 1024px) {
  .section1__row1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.section1__left {
  width: 50%;
  padding-right: 50px;
}
@media screen and (max-width: 1024px) {
  .section1__left {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 30px;
  }
}

.section1__right {
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .section1__right {
    width: 100%;
  }
}

.section1__img1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .section1__img1 {
    position: relative;
    width: 100%;
  }
}
.section1__img1 img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section1__title {
  font-size: 66px;
  font-weight: 900;
  color: #6288CD;
  line-height: 102%;
  margin-bottom: 30px;
}
@media screen and (max-width: 1600px) {
  .section1__title {
    font-size: 56px;
  }
}
@media screen and (max-width: 1024px) {
  .section1__title {
    font-size: 36px;
  }
}

.section1__content {
  line-height: 26px;
  font-weight: 300;
}
.section1__content p {
  margin-bottom: 30px;
}
.section1__content p:nth-last-child(1) {
  margin-bottom: 0;
}

.section2 {
  position: relative;
}

.section1__row2 {
  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;
  min-height: 642px;
}
@media screen and (max-width: 1024px) {
  .section1__row2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 1024px) {
  .section1__row2 .section1__left {
    background: url("../img/img2.webp") no-repeat;
    background-size: cover;
    padding: 20px 15px;
  }
}
.section1__row2 .section1__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .section1__row2 .section1__right {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.section1__img2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .section1__img2 {
    position: absolute;
    width: 100%;
  }
}
.section1__img2 img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .section1__img2 img {
    display: none;
  }
}

.title2__section1 {
  position: relative;
  z-index: 1;
  font-size: 42px;
  line-height: 102%;
  margin-bottom: 40px;
  color: #fff;
  font-weight: 900;
}
@media screen and (max-width: 1024px) {
  .title2__section1 {
    font-size: 30px;
  }
}

.text2__section1 {
  position: relative;
  z-index: 1;
}
.text2__section1 ul {
  padding: 0;
  margin: 0;
}
.text2__section1 ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 30px;
}
.text2__section1 ul li:nth-last-child(1) {
  margin-bottom: 0;
}
.text2__section1 ul li::before {
  content: "";
  background: url("../img/li.svg") no-repeat;
  display: block;
  min-width: 30px;
  min-height: 6px;
  margin-right: 14px;
  position: relative;
  top: 7px;
}

.title3__section {
  font-size: 42px;
  line-height: 102%;
  color: #6288CD;
  font-weight: 900;
  margin-bottom: 40px;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .title3__section {
    font-size: 30px;
    text-align: left;
    margin-bottom: 30px;
  }
}

.text3__section1 {
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 40px;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .text3__section1 {
    font-size: 20px;
    text-align: left;
    margin-bottom: 30px;
  }
}

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

.section3__title {
  font-size: 44px;
  line-height: 102%;
  margin-bottom: 80px;
  text-align: center;
  color: #6288CD;
  font-weight: 900;
}
@media screen and (max-width: 1024px) {
  .section3__title {
    margin-bottom: 40px;
    font-size: 34px;
  }
}

.service__block {
  margin-bottom: 30px;
}
.service__block:nth-last-child(1) {
  margin-bottom: 0;
}
.service__block:nth-child(2n) .service__row .service__left {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 1024px) {
  .service__block:nth-child(2n) .service__row .service__left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.service__block:nth-child(2n) .service__row .service__right {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 1024px) {
  .service__block:nth-child(2n) .service__row .service__right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

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

.service__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(76.72deg, #5E7EE1 3.32%, rgba(148, 204, 229, 0.35) 49.22%, rgba(131, 96, 202, 0.78) 98.63%), linear-gradient(128.61deg, rgba(94, 126, 225, 0.9) 27.8%, rgba(148, 204, 231, 0.9) 97.12%);
  padding: 0 50px;
}
@media screen and (max-width: 1024px) {
  .service__right {
    padding: 20px 15px;
  }
}

.service__title {
  font-weight: 700;
  font-size: 34px;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .service__title {
    font-size: 24px;
  }
}

.service__desc {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  text-align: center;
  font-weight: 300;
  margin-bottom: 40px;
}

.show__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  padding: 14px 0;
  max-width: 260px;
  width: 100%;
  border-radius: 6px;
  background: #fff;
  color: #000;
  font-weight: 500;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.show__more:hover {
  opacity: 0.6;
}
.show__more::after {
  content: "";
  width: 25px;
  height: 25px;
  background: url("../img/arrow__more.svg") no-repeat;
  display: block;
  margin-left: 10px;
}

.service__hiiden__main {
  padding: 65px 40px;
  border: 1px solid #6288CD;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .service__hiiden__main {
    padding: 20px 15px;
  }
}

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

.hidden__title {
  font-size: 24px;
  line-height: 102%;
  font-weight: 700;
  color: #6288CD;
  margin-bottom: 20px;
}

.hidden__txt {
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hidden__txt2 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
}

.button__request {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  padding: 14px 20px;
  max-width: 260px;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #6288CD;
  background: #fff;
  color: #6288CD;
  font-weight: 500;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  margin-right: 5px;
}
@media screen and (max-width: 1024px) {
  .button__request {
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.button__request:hover {
  opacity: 0.6;
}
.button__request::after {
  content: "";
  width: 25px;
  height: 25px;
  background: url("../img/arrow__get.svg") no-repeat;
  display: block;
  margin-left: 10px;
}

.button__hide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  padding: 14px 20px;
  max-width: 260px;
  width: 100%;
  border-radius: 6px;
  background: linear-gradient(0deg, #6288CD, #6288CD), linear-gradient(128.61deg, rgba(94, 126, 225, 0.9) 27.8%, rgba(148, 204, 231, 0.9) 97.12%);
  color: #fff;
  font-weight: 500;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 1024px) {
  .button__hide {
    width: 100%;
  }
}
.button__hide:hover {
  opacity: 0.6;
}
.button__hide::after {
  content: "";
  width: 25px;
  height: 25px;
  background: url("../img/arrow__hide.svg") no-repeat;
  display: block;
  margin-left: 10px;
}

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

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

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

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

.s4__item__img {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.s4__item__title {
  color: #6288CD;
  font-size: 24px;
  line-height: 102%;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.s4__item__txt {
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  text-align: center;
}

.section5 {
  margin-top: 80px;
  background: linear-gradient(76.72deg, #5E7EE1 3.32%, rgba(148, 204, 229, 0.35) 49.22%, rgba(131, 96, 202, 0.78) 98.63%), linear-gradient(128.61deg, rgba(94, 126, 225, 0.9) 27.8%, rgba(148, 204, 231, 0.9) 97.12%);
  padding: 20px 0;
}
@media screen and (max-width: 1024px) {
  .section5 {
    margin-top: 40px;
  }
}

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

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

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

.section5__title {
  color: #fff;
  text-align: left;
  margin-bottom: 48px;
}

.section5__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section5__button::after {
  content: "";
  min-width: 53px;
  min-height: 58px;
  background: url("../img/s5__ico.svg") no-repeat;
  background-size: cover;
  display: block;
  margin-left: 35px;
}

.section5__button2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  padding: 14px 0;
  max-width: 260px;
  width: 100%;
  border-radius: 6px;
  background: #fff;
  color: #000;
  font-weight: 500;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.section5__button2:hover {
  opacity: 0.6;
}

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

.team__row {
	width: 90%;
    margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .team__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.team__photo {
  margin-right: 30px;
	width: 30%;
}
.team__photo img {
  height: 467px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .team__photo {
    margin-right: 0;
  }
}

.team__text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
	width: 60%;
}
.team__text p {
  margin-bottom: 30px;
}
.team__text p:nth-last-child(1) {
  margin-bottom: 0;
}

.sw__arrows .arr__prev {
  position: absolute;
  width: 46px;
  height: 46px;
  border: 1px solid #6288CD;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 10;
  cursor: pointer;
}
.sw__arrows .arr__prev::before {
  content: "";
  width: 16px;
  height: 11px;
  -webkit-mask-image: url("../img/arrow__left.svg");
          mask-image: url("../img/arrow__left.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background: #6288CD;
  display: block;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.sw__arrows .arr__prev:hover {
  background: linear-gradient(76.72deg, rgba(94, 126, 225, 0.87) 3.32%, rgba(148, 204, 229, 0.3045) 49.22%, rgba(131, 96, 202, 0.6786) 98.63%), linear-gradient(128.61deg, rgba(94, 126, 225, 0.9) 27.8%, rgba(148, 204, 231, 0.9) 97.12%);
}
.sw__arrows .arr__prev:hover::before {
  background: #fff;
}
.sw__arrows .arr__next {
  position: absolute;
  width: 46px;
  height: 46px;
  border: 1px solid #6288CD;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  top: 0;
  bottom: 0;
  right: 0px;
  margin: auto;
  z-index: 10;
  cursor: pointer;
}
.sw__arrows .arr__next::before {
  content: "";
  width: 16px;
  height: 11px;
  -webkit-mask-image: url("../img/arrow__left.svg");
          mask-image: url("../img/arrow__left.svg");
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background: #6288CD;
  display: block;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.sw__arrows .arr__next:hover {
  background: linear-gradient(76.72deg, rgba(94, 126, 225, 0.87) 3.32%, rgba(148, 204, 229, 0.3045) 49.22%, rgba(131, 96, 202, 0.6786) 98.63%), linear-gradient(128.61deg, rgba(94, 126, 225, 0.9) 27.8%, rgba(148, 204, 231, 0.9) 97.12%);
}
.sw__arrows .arr__next:hover::before {
  background: #fff;
}

.sw__pagin {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.swiper-pagination-bullet {
  opacity: 1;
  background: #BCBCBC;
  width: 23px;
  height: 4px;
  border-radius: 3px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}

.swiper-pagination-bullet-active {
  width: 64px;
  background: #6288CD;
}

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

.question__item {
  border: 1px solid #6288CD;
  padding: 34px 24px;
  cursor: pointer;
  margin-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .question__item {
    padding: 20px 15px;
  }
}
.question__item:nth-last-child(1) {
  margin-bottom: 0;
}

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

.qusetion__number {
  color: #6288CD;
  font-size: 18px;
  font-weight: 700;
  margin-right: 30px;
}

.qusetion__name {
  font-size: 20px;
  font-weight: 600;
  line-height: 102%;
}

.question__plus::after {
  content: "+";
  display: block;
  font-size: 39px;
  color: #6288CD;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}

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

.question__hidden {
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  padding-left: 50px;
}

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

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

.review__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.review__ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}

.review__txt {
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 24px;
}

.review__name {
  font-weight: 500;
  text-align: center;
}

.review__job {
  text-align: center;
}

.swiper2 {
  overflow: hidden;
  position: relative;
}

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

.section9__title {
  margin-bottom: 15px;
}

.section9__txt {
  margin-bottom: 40px;
  text-align: center;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.form__input {
  margin-bottom: 30px;
  width: 100%;
  width: 920px;
}
@media screen and (max-width: 1024px) {
  .form__input {
    width: 100%;
  }
}
.form__input:nth-last-child(1) {
  margin-bottom: 0;
}
.form__input input {
  border: none;
  outline: none;
  border-bottom: 1px solid #000;
  padding-bottom: 15px;
  width: 100%;
  background: transparent;
  font-weight: 300;
}
.form__input input::-webkit-input-placeholder {
  font-weight: 300;
}
.form__input input::-moz-placeholder {
  font-weight: 300;
}
.form__input input:-ms-input-placeholder {
  font-weight: 300;
}
.form__input input::-ms-input-placeholder {
  font-weight: 300;
}
.form__input input::placeholder {
  font-weight: 300;
}
.form__input textarea {
  border: none;
  outline: none;
  border-bottom: 1px solid #000;
  padding-bottom: 15px;
  width: 100%;
  background: transparent;
  font-weight: 300;
  height: 130px;
}
.form__input textarea::-webkit-input-placeholder {
  font-weight: 300;
}
.form__input textarea::-moz-placeholder {
  font-weight: 300;
}
.form__input textarea:-ms-input-placeholder {
  font-weight: 300;
}
.form__input textarea::-ms-input-placeholder {
  font-weight: 300;
}
.form__input textarea::placeholder {
  font-weight: 300;
}
.form__input .form__button {
  width: 100%;
  border: none;
  cursor: pointer;
  outline: none;
  max-width: 100%;
}
.form__input .form__button::after {
  display: none;
}

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

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

.footer__item {
  background: #E9EEF4;
  padding: 70px 60px;
}
@media screen and (max-width: 1024px) {
  .footer__item {
    padding: 20px 15px;
  }
}

.contacts__name {
  font-weight: 700;
  font-size: 24px;
  line-height: 102%;
  color: #6288CD;
  margin-bottom: 30px;
}

.adress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
.adress img {
  margin-right: 10px;
}

.telephone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  color: #000;
}
.telephone img {
  margin-right: 10px;
}

.copyright {
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 300;
}