@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
   Убираем внутренние отступы слева тегам списков,
   у которых есть атрибут class
  */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
   Убираем внешние отступы body и двум другим тегам,
   у которых есть атрибут class
  */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
   Убираем внешние отступы вертикали нужным тегам,
   у которых есть атрибут class
  */
:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
   Убираем стандартный маркер маркированному списку,
   у которого есть атрибут class
  */
:where(ul[class]) {
  list-style: none;
}

/**
   Обнуляем вертикальные внешние отступы параграфа,
   объявляем локальную переменную для внешнего отступа вниз,
   чтобы избежать взаимодействие с более сложным селектором
  */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
   Внешний отступ вниз для параграфа без атрибута class,
   который расположен не последним среди своих соседних элементов
  */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

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

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

html {
  /**
   Пригодится в большинстве ситуаций
   (когда, например, нужно будет "прижать" футер к низу сайта)
  */
  height: 100%;
}

/**
   Плавный скролл
  */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
   Пригодится в большинстве ситуаций
   (когда, например, нужно будет "прижать" футер к низу сайта)
  */
  min-height: 100%;
  /**
   Унифицированный интерлиньяж
  */
  line-height: 1.5;
}

/**


 /**
   Чиним баг задержки смены цвета при взаимодействии с svg-элементами
  */
svg * {
  transition-property: fill, stroke;
}

/**
   Удаляем все анимации и переходы для людей,
   которые предпочитают их не использовать
  */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
a {
  text-decoration: none;
  color: black;
}

@font-face {
  font-family: "Montserrat";
  src: url("./../fonts/Montserrat-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("./../fonts/Montserrat-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("./../fonts/Montserrat-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("./../fonts/Montserrat-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}
@keyframes fadeOutFromNone {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeOutFromNoneGallery {
  animation: fadeOutFromNone 0.5s ease-in-out;
}

.fadeOutFromNone {
  animation: fadeOutFromNone 1s ease-in-out;
}

* {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.none {
  display: none !important;
}

html {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  position: relative;
  max-width: 100vw;
  overflow-x: hidden;
}

main {
  margin-block-start: 100px;
}
@media (max-width: 640px) {
  main {
    margin-block-start: 70px;
  }
}

.container {
  margin: 0 auto;
  max-width: 1380px;
  height: 100%;
}
@media (max-width: 1400px) {
  .container {
    padding: 0 20px;
  }
}

.container-left-margin {
  margin-left: calc((100vw - 1380px) / 2);
  margin-right: calc((100vw - 1920px) / 2);
  height: 100%;
}
@media (max-width: 1920px) {
  .container-left-margin {
    margin-left: calc((100vw - 1380px) / 2);
    height: 100%;
  }
}
@media (max-width: 1400px) {
  .container-left-margin {
    margin-left: unset;
    width: 100%;
    padding: 0 20px;
  }
}

.container-right-margin {
  margin-right: calc((100vw - 1380px) / 2);
  margin-left: calc((100vw - 1920px) / 2);
  height: 100%;
}
@media (max-width: 1920px) {
  .container-right-margin {
    margin-right: calc((100vw - 1380px) / 2);
    height: 100%;
  }
}
@media (max-width: 1400px) {
  .container-right-margin {
    margin-right: unset;
    margin-left: unset;
    width: 100%;
    padding: 0 20px;
  }
}

button,
a {
  cursor: pointer;
  outline: none;
  background-color: unset;
  border: none;
}

.title-h1 {
  font-family: "Montserrat";
  line-height: normal;
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  color: #000000;
}
.title-h1_colored {
  color: #29368f;
}
@media (max-width: 1380px) {
  .title-h1 {
    font-size: 48px;
  }
}
@media (max-width: 860px) {
  .title-h1 {
    font-size: 40px;
  }
}
@media (max-width: 640px) {
  .title-h1 {
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  .title-h1 {
    font-size: 24px;
  }
}

.title-h2 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  color: #000000;
}
.title-h2_colored {
  color: #29368f;
}
@media (max-width: 1380px) {
  .title-h2 {
    font-size: 42px;
  }
}
@media (max-width: 860px) {
  .title-h2 {
    font-size: 32px;
  }
}
@media (max-width: 640px) {
  .title-h2 {
    font-size: 28px;
  }
}
@media (max-width: 500px) {
  .title-h2 {
    font-size: 20px;
  }
}

.header {
  top: 0;
  position: relative;
  width: 100%;
  /*    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.9) 0%,
      #ffffff 50%,
      rgba(255, 255, 255, 0.9) 100%
  );
  backdrop-filter: blur(5.85px); */
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
@media (max-width: 680px) {
  .header__logo {
    max-width: 130px;
  }
}
@media (max-width: 360px) {
  .header__logo {
    max-width: 97px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1260px) {
  .header__nav {
    display: none;
  }
}
.header__nav-item {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}
.header__contacts {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1260px) {
  .header__contacts {
    display: none;
  }
}
.header__phone-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header__phone-icon {
  width: 24px;
  height: 24;
  min-width: 24px;
  min-height: 24px;
}
.header__phone-text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
}
.header__button {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  padding: 12px 24px;
  outline: unset;
  background-color: unset;
  border-radius: 59px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.header__burger-button {
  display: none;
  border-radius: 100%;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  justify-content: center;
  border: unset;
  outline: unset;
  background: linear-gradient(268.35deg, #1aa3c9 0%, #29368f 100%);
  box-shadow: 73px 127px 59px rgba(0, 0, 0, 0.01), 41px 71px 49px rgba(0, 0, 0, 0.05), 18px 32px 37px rgba(0, 0, 0, 0.09), 5px 8px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1260px) {
  .header__burger-button {
    display: flex;
  }
}
.header__burger-button-line {
  width: 17px;
  height: 2px;
  min-width: 17px;
  min-height: 2px;
  background-color: white;
}

.mobile-header {
  position: fixed;
  top: 0;
  right: -1px;
  width: 0px;
  min-height: 100vh;
  transition: width 0.7s ease;
  z-index: 110;
  overflow: auto;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.mobile-header__cta-button {
  padding: 12px 24px;
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  background: linear-gradient(268.35deg, #1aa3c9 0%, #29368f 100%);
  box-shadow: 73px 127px 59px rgba(0, 0, 0, 0.01), 41px 71px 49px rgba(0, 0, 0, 0.05), 18px 32px 37px rgba(0, 0, 0, 0.09), 5px 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 42px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 60px;
}
.mobile-header address {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: black;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 340px;
}
.mobile-header__wrapper {
  padding: 20px 20px;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.mobile-header_show {
  width: 360px;
  height: unset;
  visibility: visible;
}
@media (max-width: 480px) {
  .mobile-header_show {
    width: calc(100vw + 1px);
  }
}
.mobile-header__burger {
  display: none;
  align-items: center;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 1170px) {
  .mobile-header__burger {
    display: flex;
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    color: #404040;
  }
}
@media (max-width: 480px) {
  .mobile-header__burger {
    font-size: 10px;
  }
}
.mobile-header__burger-icon {
  width: 22px;
  height: 22px;
}
@media (max-width: 480px) {
  .mobile-header__burger-icon {
    width: 16px;
    height: 16px;
  }
}
.mobile-header__top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  gap: 30px;
}
.mobile-header__phone {
  font-weight: 400;
  font-size: 12px;
  color: black;
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: -moz-max-content;
  min-width: max-content;
}
.mobile-header__phone-icon {
  width: 16px;
  height: 16px;
}
.mobile-header__burger-close {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 3px;
  font-weight: 400;
  font-size: 10px;
  text-align: center;
  color: black;
}
.mobile-header__burger-close-icon {
  width: 16px;
  height: 16px;
}
.mobile-header__burger-close-icon path {
  stroke: black;
}
.mobile-header__devider {
  height: 1px;
  width: 100%;
  background: black;
  margin-bottom: 30px;
}
.mobile-header__content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.mobile-header__logo-wrapper {
  margin-bottom: 30px;
  display: inline-block;
  max-width: 180px;
  min-width: 180px;
}
.mobile-header__nav-items {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}
.mobile-header__menu-item {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: black;
  min-width: -moz-max-content;
  min-width: max-content;
  text-transform: uppercase;
}

.first-window {
  position: relative;
  overflow: visible;
}
.first-window__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}
@media (max-width: 1280px) {
  .first-window__wrapper {
    display: block;
  }
}
.first-window__text-content {
  min-width: -moz-max-content;
  min-width: max-content;
}
.first-window__label {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  gap: 30px;
  width: -moz-max-content;
  width: max-content;
  background: #ffffff;
  box-shadow: 0px 71px 29px rgba(140, 140, 140, 0.01), 0px 40px 24px rgba(140, 140, 140, 0.05), 0px 18px 18px rgba(140, 140, 140, 0.09), 0px 4px 10px rgba(140, 140, 140, 0.1);
  border-radius: 30px;
  margin-bottom: 36px;
}
@media (max-width: 1280px) {
  .first-window__label {
    display: none;
  }
}
.first-window__label-text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #216fad;
}
@media (max-width: 860px) {
  .first-window__label-text {
    font-size: 12px;
  }
}
.first-window__label-img {
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  max-height: 20px;
}
.first-window__title {
  margin-bottom: 36px;
}
@media (max-width: 640px) {
  .first-window__title {
    margin-bottom: 15px;
  }
}
.first-window__description {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #a8a8a8;
  margin-bottom: 36px;
}
@media (max-width: 1280px) {
  .first-window__description_pc {
    display: none;
  }
}
.first-window__description_mobile {
  display: none;
}
@media (max-width: 1280px) {
  .first-window__description_mobile {
    display: block;
  }
}
@media (max-width: 860px) {
  .first-window__description {
    font-size: 18px;
    line-height: normal;
  }
}
@media (max-width: 640px) {
  .first-window__description {
    margin-bottom: 26px;
  }
}
@media (max-width: 500px) {
  .first-window__description {
    font-size: 16px;
  }
}
.first-window__buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.first-window__button-request {
  padding: 16px 42px;
  background: linear-gradient(268.35deg, #1aa3c9 0%, #29368f 100%);
  box-shadow: 0px 95px 38px rgba(41, 54, 143, 0.03), 0px 54px 32px rgba(41, 54, 143, 0.09), 0px 24px 24px rgba(41, 54, 143, 0.15), 0px 6px 13px rgba(41, 54, 143, 0.18);
  border-radius: 30px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
}
@media (max-width: 1380px) {
  .first-window__button-request {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .first-window__button-request {
    font-size: 14px;
  }
}
@media (max-width: 440px) {
  .first-window__button-request {
    font-size: 12px;
    padding: 10px 30px;
  }
}
.first-window__button-request_pc-hidden {
  display: none;
}
@media (max-width: 1280px) {
  .first-window__button-request_pc-hidden {
    display: block;
  }
}
@media (max-width: 1280px) {
  .first-window__button-request_mobile-hide {
    display: none;
  }
}
.first-window__button-call {
  padding: 16px 42px;
  background: #ffffff;
  border: 1px solid #29368f;
  border-radius: 30px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #1c1c1c;
}
@media (max-width: 1380px) {
  .first-window__button-call {
    font-size: 16px;
  }
}
@media (max-width: 1280px) {
  .first-window__button-call {
    display: none;
  }
}
@media (max-width: 640px) {
  .first-window__button-call {
    font-size: 14px;
  }
}
@media (max-width: 580px) {
  .first-window__button-call {
    display: none;
  }
}
.first-window__images-wrapper {
  position: relative;
}
@media (max-width: 1280px) {
  .first-window__images-wrapper {
    margin-block-start: -100px;
    margin-left: -20px;
  }
}
@media (max-width: 680px) {
  .first-window__images-wrapper {
    margin-block-start: -40px;
  }
}
.first-window__images-mobile-text {
  display: none;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1280px) {
  .first-window__images-mobile-text {
    display: block;
    position: absolute;
    left: 22px;
    top: 30%;
  }
}
@media (max-width: 860px) {
  .first-window__images-mobile-text {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .first-window__images-mobile-text {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .first-window__images-mobile-text {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .first-window__image_pc {
    display: none;
  }
}
.first-window__image_mobile {
  display: none;
}
@media (max-width: 1280px) {
  .first-window__image_mobile {
    display: block;
  }
}
.first-window__circle {
  background: linear-gradient(268.35deg, #1aa3c9 0%, #29368f 100%);
  filter: blur(3px);
  position: absolute;
  border-radius: 100%;
  display: none;
}
@media (max-width: 1280px) {
  .first-window__circle {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
  }
}
.first-window__circle_1 {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1280px) {
  .first-window__circle_1 {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
  }
}
.first-window__circle_2 {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  left: 10px;
  top: 17%;
}
@media (max-width: 1280px) {
  .first-window__circle_2 {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
  }
}
.first-window__circle_3 {
  width: 100px;
  height: 100px;
  min-width: 100px;
  min-height: 100px;
  left: 13%;
  top: 3%;
}
@media (max-width: 1280px) {
  .first-window__circle_3 {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
  }
}
.first-window__circle_4 {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  right: 30%;
  top: 50%;
}
@media (max-width: 1280px) {
  .first-window__circle_4 {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
  }
}

.ates {
  padding-top: 150px;
  position: relative;
}
@media (max-width: 960px) {
  .ates {
    padding-top: 100px;
  }
}
.ates__wrapper {
  display: flex;
  gap: 56px;
  align-items: center;
}
@media (max-width: 1400px) {
  .ates__wrapper {
    display: grid;
    grid-template-columns: 0.55fr 0.45fr;
  }
}
@media (max-width: 1280px) {
  .ates__wrapper {
    display: block;
  }
}
@media (max-width: 1280px) {
  .ates__image {
    margin-top: 30px;
    margin-right: -20px;
  }
}
@media (max-width: 1280px) {
  .ates__image_pc {
    display: none;
  }
}
.ates__image_mobile {
  display: none;
}
@media (max-width: 1280px) {
  .ates__image_mobile {
    display: block;
  }
}
.ates__title {
  margin-bottom: 24px;
}
@media (max-width: 640px) {
  .ates__title {
    margin-bottom: 15px;
  }
}
.ates__text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}
@media (max-width: 1380px) {
  .ates__text {
    font-size: 20px;
  }
}
@media (max-width: 860px) {
  .ates__text {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .ates__text {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .ates__text {
    font-size: 14px;
  }
}

.advantages {
  padding-top: 150px;
  position: relative;
}
@media (max-width: 1480px) {
  .advantages .container-left-margin {
    margin: 0;
    padding: 0 20px;
  }
}
@media (max-width: 960px) {
  .advantages {
    padding-top: 100px;
  }
}
.advantages__wrapper {
  display: flex;
  align-items: center;
  gap: 65px;
}
@media (max-width: 1480px) {
  .advantages__wrapper {
    display: block;
  }
}
.advantages__title {
  margin-bottom: 17px;
}
.advantages__texts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 50px;
}
.advantages__text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: black;
}
.advantages__text_bold {
  font-weight: 700;
  color: #29368f;
}
@media (max-width: 860px) {
  .advantages__text {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .advantages__text {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .advantages__text {
    font-size: 14px;
  }
}
.advantages__cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1480px) {
  .advantages__cards {
    background-color: #216fad;
    padding: 20px 30px;
    border-radius: 48px 48px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 820px) {
  .advantages__cards {
    grid-template-columns: 1fr;
  }
}
.advantages__card {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 960px) {
  .advantages__card svg {
    width: 36px;
    height: 36px;
    max-width: 36px;
    max-height: 36px;
  }
}
.advantages__card-text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  color: #29368f;
}
@media (max-width: 1480px) {
  .advantages__card-text {
    color: white;
    font-size: 24px;
  }
}
@media (max-width: 960px) {
  .advantages__card-text {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .advantages__card-text {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .advantages__card-text {
    font-size: 16px;
  }
}
@media (max-width: 1480px) {
  .advantages__card-icon-path {
    fill: white;
  }
}
@media (max-width: 1480px) {
  .advantages__image_pc {
    display: none;
  }
}
.advantages__image_mobile {
  display: none;
}
@media (max-width: 1480px) {
  .advantages__image_mobile {
    margin-block-start: -1px;
    border-radius: 0 0 48px 48px;
    display: block;
  }
}

.cta {
  padding-top: 250px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1280px) {
  .cta {
    display: none;
  }
}
@media (max-width: 960px) {
  .cta {
    padding-top: 100px;
  }
}
.cta__wrapper {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  background: linear-gradient(180deg, #1aa3c9 0%, #29368f 100%);
  border-radius: 120px;
  padding: 34px 0px 50px 120px;
  position: relative;
}
.cta__title {
  line-height: normal;
  color: #ffffff;
  margin-bottom: 11px;
}
.cta__description {
  margin-bottom: 25px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  color: #ffffff;
}
.cta__button {
  padding: 16px 42px;
  background: #ffffff;
  box-shadow: 0px 95px 38px rgba(41, 54, 143, 0.03), 0px 54px 32px rgba(41, 54, 143, 0.09), 0px 24px 24px rgba(41, 54, 143, 0.15), 0px 6px 13px rgba(41, 54, 143, 0.18);
  border-radius: 30px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #29368f;
}
.cta__image {
  position: absolute;
  bottom: 0;
  right: 8%;
}

.cta-mobile {
  display: none;
  position: relative;
  z-index: 1;
  padding-top: 150px;
}
@media (max-width: 1280px) {
  .cta-mobile {
    display: block;
    padding-top: 100px;
  }
}
.cta-mobile__wrapper {
  background-color: #29368f;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 43px 0 0px 20px;
}
@media (max-width: 680px) {
  .cta-mobile__wrapper {
    padding: 43px 20px;
    display: block;
  }
}
.cta-mobile__content {
  min-width: 168px;
}
@media (max-width: 680px) {
  .cta-mobile__content {
    max-width: 60%;
  }
}
.cta-mobile__title {
  color: #ffffff;
  margin-bottom: 20px;
  line-height: normal;
}
.cta-mobile__description {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  color: #ffffff;
  margin-bottom: 25px;
}
@media (max-width: 1380px) {
  .cta-mobile__description {
    font-size: 20px;
  }
}
@media (max-width: 860px) {
  .cta-mobile__description {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .cta-mobile__description {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .cta-mobile__description {
    font-size: 12px;
  }
}
.cta-mobile__button {
  padding: 16px 42px;
  background: #ffffff;
  box-shadow: 0px 95px 38px rgba(41, 54, 143, 0.03), 0px 54px 32px rgba(41, 54, 143, 0.09), 0px 24px 24px rgba(41, 54, 143, 0.15), 0px 6px 13px rgba(41, 54, 143, 0.18);
  border-radius: 30px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #29368f;
}
@media (max-width: 960px) {
  .cta-mobile__button {
    font-size: 16px;
  }
}
@media (max-width: 680px) {
  .cta-mobile__button {
    font-size: 14px;
    padding: 10px 30px;
  }
}
@media (max-width: 500px) {
  .cta-mobile__button {
    font-size: 12px;
  }
}
.cta-mobile__image {
  max-width: 423px;
}
@media (max-width: 760px) {
  .cta-mobile__image {
    max-width: 100%;
  }
}
@media (max-width: 680px) {
  .cta-mobile__image {
    position: absolute;
    bottom: 0;
    right: -23px;
    max-width: 250px;
  }
}
@media (max-width: 460px) {
  .cta-mobile__image {
    position: absolute;
    bottom: 0;
    max-width: 180px;
  }
}

.countries {
  margin-block-start: -106px;
}
@media (max-width: 860px) {
  .countries {
    margin-block-start: -30px;
  }
}
.countries__slide {
  position: relative;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.countries__slide-text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  color: #ffffff;
  position: absolute;
  bottom: 83px;
  left: 50%;
  transform: translateX(-50%);
  min-width: -moz-max-content;
  min-width: max-content;
}
@media (max-width: 1380px) {
  .countries__slide-text {
    font-size: 36px;
  }
}
@media (max-width: 860px) {
  .countries__slide-text {
    font-size: 24px;
    bottom: 40px;
  }
}
@media (max-width: 680px) {
  .countries__slide-text {
    bottom: 35px;
  }
}
@media (max-width: 640px) {
  .countries__slide-text {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .countries__slide-text {
    font-size: 16px;
  }
}
.countries__arrow {
  background-color: unset;
}
.countries__arrow svg {
  fill: white;
}
.countries__pagination {
  bottom: 35px;
}
@media (max-width: 860px) {
  .countries__pagination {
    bottom: 15px;
  }
}
.countries__pagination-page {
  width: 51px;
  height: 6px;
  border-radius: 0;
  background: #ffffff;
  transform: unset;
  opacity: 0.6;
}
@media (max-width: 1080px) {
  .countries__pagination-page {
    width: 30px;
    height: 4px;
  }
}
@media (max-width: 680px) {
  .countries__pagination-page {
    width: 9px;
    height: 2px;
  }
}
.countries__pagination-page.is-active {
  transform: unset;
  opacity: 1;
}

.econom {
  padding-top: 150px;
  position: relative;
}
@media (max-width: 1280px) {
  .econom {
    padding-top: 100px;
  }
}
.econom__wrapper {
  padding: 75px 50px;
  background: #ffffff;
  box-shadow: 0px 2px 100px rgba(0, 0, 0, 0.08);
  border-radius: 42px;
}
@media (max-width: 860px) {
  .econom__wrapper {
    padding: unset;
    background: unset;
    box-shadow: unset;
    border-radius: unset;
  }
}
.econom__text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 44px;
  background: linear-gradient(268.35deg, #1aa3c9 0%, #29368f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.econom__text_underline {
  border-bottom: 2px solid #29368f;
}
@media (max-width: 860px) {
  .econom__text_underline {
    border: unset;
  }
}
@media (max-width: 1380px) {
  .econom__text {
    font-size: 36px;
  }
}
@media (max-width: 860px) {
  .econom__text {
    font-size: 24px;
    background: unset;
    color: #29368f;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
  }
}
@media (max-width: 640px) {
  .econom__text {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .econom__text {
    font-size: 16px;
  }
}

.consultation {
  position: relative;
  padding-top: 170px;
  overflow: visible;
  z-index: 2;
}
@media (max-width: 1280px) {
  .consultation {
    margin-block-end: -30px;
  }
}
@media (max-width: 640px) {
  .consultation {
    padding-top: 100px;
  }
}
.consultation__bg {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1280px) {
  .consultation__bg {
    display: none;
  }
}
.consultation__wrapper {
  position: absolute;
  bottom: -30px;
  background: white;
  max-width: 1376px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  padding: 42px 55px;
  box-shadow: 49px 100px 45px rgba(0, 0, 0, 0.01), 27px 56px 38px rgba(0, 0, 0, 0.05), 12px 25px 28px rgba(0, 0, 0, 0.09), 3px 6px 15px rgba(0, 0, 0, 0.1);
  border-radius: 60px;
  gap: 40px;
}
@media (max-width: 1280px) {
  .consultation__wrapper {
    max-width: unset;
    bottom: unset;
    right: unset;
    position: relative;
    width: 100%;
    background: url("./../images/consultation-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    max-width: unset;
    background-position: center right;
    box-shadow: unset;
    flex-direction: column;
  }
  .consultation__wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    left: 0;
    top: 0;
    opacity: 0.6;
    z-index: -1;
    border-radius: inherit;
  }
}
@media (max-width: 680px) {
  .consultation__wrapper {
    padding: 42px 55px;
    gap: 25px;
  }
}
@media (max-width: 500px) {
  .consultation__wrapper {
    padding: 42px 19px;
    bottom: -20px;
  }
}
.consultation__content-wrapper {
  max-width: 521px;
}
@media (max-width: 1280px) {
  .consultation__content-wrapper {
    max-width: unset;
  }
}
.consultation__title {
  line-height: normal;
  margin-bottom: 32px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 54px;
  text-transform: uppercase;
  color: #000000;
}
@media (max-width: 1280px) {
  .consultation__title {
    color: white;
    font-size: 42px;
    margin-bottom: 20px;
  }
}
@media (max-width: 860px) {
  .consultation__title {
    font-size: 32px;
  }
}
@media (max-width: 640px) {
  .consultation__title {
    font-size: 28px;
  }
}
@media (max-width: 500px) {
  .consultation__title {
    font-size: 20px;
  }
}
.consultation__description {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  color: #000000;
}
@media (max-width: 1280px) {
  .consultation__description {
    color: white;
  }
}
@media (max-width: 640px) {
  .consultation__description {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .consultation__description {
    font-size: 14px;
  }
}
.consultation__form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.consultation__input {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #000000;
  border: 1px solid black;
  border-radius: 5px;
  padding: 8px;
}
.consultation__input::-moz-placeholder {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #000000;
}
.consultation__input::placeholder {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #000000;
}
@media (max-width: 1280px) {
  .consultation__input::-moz-placeholder {
    background: transparent;
    color: white;
  }
  .consultation__input::placeholder {
    background: transparent;
    color: white;
  }
}
@media (max-width: 860px) {
  .consultation__input::-moz-placeholder {
    font-size: 16px;
  }
  .consultation__input::placeholder {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .consultation__input::-moz-placeholder {
    font-size: 14px;
  }
  .consultation__input::placeholder {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .consultation__input::-moz-placeholder {
    font-size: 12px;
  }
  .consultation__input::placeholder {
    font-size: 12px;
  }
}
@media (max-width: 1280px) {
  .consultation__input {
    background: transparent;
    color: white;
    border: 1px solid white;
  }
}
@media (max-width: 860px) {
  .consultation__input {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .consultation__input {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .consultation__input {
    font-size: 12px;
  }
}
.consultation__textarea {
  resize: none;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #000000;
  border: 1px solid black;
  border-radius: 5px;
  padding: 8px;
}
.consultation__textarea::-moz-placeholder {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #000000;
}
.consultation__textarea::placeholder {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #000000;
}
@media (max-width: 1280px) {
  .consultation__textarea::-moz-placeholder {
    background: transparent;
    color: white;
  }
  .consultation__textarea::placeholder {
    background: transparent;
    color: white;
  }
}
@media (max-width: 860px) {
  .consultation__textarea::-moz-placeholder {
    font-size: 16px;
  }
  .consultation__textarea::placeholder {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .consultation__textarea::-moz-placeholder {
    font-size: 14px;
  }
  .consultation__textarea::placeholder {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .consultation__textarea::-moz-placeholder {
    font-size: 12px;
  }
  .consultation__textarea::placeholder {
    font-size: 12px;
  }
}
@media (max-width: 1280px) {
  .consultation__textarea {
    background: transparent;
    color: white;
    border: 1px solid white;
  }
}
@media (max-width: 860px) {
  .consultation__textarea {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .consultation__textarea {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .consultation__textarea {
    font-size: 12px;
  }
}
.consultation__button {
  padding: 22px 64px;
  background: linear-gradient(268.35deg, #1aa3c9 0%, #29368f 100%);
  box-shadow: 49px 100px 45px rgba(0, 0, 0, 0.01), 27px 56px 38px rgba(0, 0, 0, 0.05), 12px 25px 28px rgba(0, 0, 0, 0.09), 3px 6px 15px rgba(0, 0, 0, 0.1);
  border-radius: 42px;
  max-width: 471px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}
@media (max-width: 640px) {
  .consultation__button {
    font-size: 16px;
    padding: 15px 20px;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
@media (max-width: 500px) {
  .consultation__button {
    font-size: 12px;
    padding: 10px 30px;
  }
}

.footer__block {
  background: linear-gradient(268.35deg, #1aa3c9 0%, #29368f 100%);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.footer__figure {
  position: absolute;
  right: -1px;
  top: -345px;
}
@media (max-width: 640px) {
  .footer__figure_pc {
    display: none;
  }
}
.footer__figure_mobile {
  display: none;
}
@media (max-width: 640px) {
  .footer__figure_mobile {
    display: block;
  }
}
@media (max-width: 1400px) {
  .footer__figure {
    top: -78%;
    width: 45%;
  }
}
@media (max-width: 1180px) {
  .footer__figure {
    top: -20%;
    width: 50%;
  }
}
@media (max-width: 960px) {
  .footer__figure {
    top: -1%;
    width: 36%;
  }
}
@media (max-width: 680px) {
  .footer__figure {
    top: 30px;
    width: 35%;
  }
}
@media (max-width: 500px) {
  .footer__figure {
    top: 50px;
  }
}
.footer__wrapper {
  padding: 65px 0;
}
.footer__wrapper,
.footer a {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: #ffffff;
}
@media (max-width: 960px) {
  .footer__wrapper,
  .footer a {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .footer__wrapper,
  .footer a {
    font-size: 16px;
  }
}
.footer address {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__title {
  margin-bottom: 15px;
}
.footer__phone, .footer__privacy {
  font-weight: 500 !important;
}

.modal-consultation {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.modal-consultation__wrapper {
  padding: 30px 30px 40px 30px;
  background: #fff;
  border-radius: 10px;
  position: relative;
  max-width: 570px;
  width: 100%;
}
@media (max-width: 680px) {
  .modal-consultation__wrapper {
    padding-top: 60px;
  }
}
.modal-consultation__title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 25px;
  color: black;
}
.modal-consultation__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  align-items: center;
}
.modal-consultation__input {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  font-weight: 400;
  font-size: 15px;
  line-height: 213%;
  color: #2b364c;
  width: 100%;
}
.modal-consultation__input::-moz-placeholder {
  font-weight: 400;
  font-size: 15px;
  line-height: 213%;
  color: #2b364c;
}
.modal-consultation__input::placeholder {
  font-weight: 400;
  font-size: 15px;
  line-height: 213%;
  color: #2b364c;
}
.modal-consultation__btn {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  max-width: 350px;
  margin-top: 15px;
  padding: 15px 30px;
  background: linear-gradient(268.35deg, #1aa3c9 0%, #29368f 100%);
  box-shadow: 49px 100px 45px rgba(0, 0, 0, 0.01), 27px 56px 38px rgba(0, 0, 0, 0.05), 12px 25px 28px rgba(0, 0, 0, 0.09), 3px 6px 15px rgba(0, 0, 0, 0.1);
  border-radius: 42px;
}
.modal-consultation__close {
  position: absolute;
  top: 30px;
  right: 30px;
}

.background-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  background: #216fad;
  opacity: 0.5;
  filter: blur(250px);
  z-index: -1;
}
.background-circle_1 {
  top: -136px;
  left: -120px;
}
@media (max-width: 1280px) {
  .background-circle_1 {
    left: unset;
    right: 0;
    width: 80%;
  }
}
.background-circle_2 {
  top: 300px;
  right: -400px;
}
.background-circle_3 {
  top: 400px;
  left: -400px;
}
.background-circle_4 {
  display: none;
  top: 0px;
  left: 0px;
  width: 80%;
}
@media (max-width: 860px) {
  .background-circle_4 {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */