@import "../fonts/stylesheet.css";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --app-height: 100%;
  --white: #ffffff;
  --bg: #fffefb;
  --dark: #0e0e0d;
  --grey: #4b4b4b;
  --yellow: #f3b02e;
  --yellow_hover: #dd970e;
}

input[type=radio],
input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--yellow);
}
input[type=radio]:hover,
input[type=checkbox]:hover {
  border-color: var(--yellow);
}
input[type=radio]:focus,
input[type=checkbox]:focus {
  -webkit-box-shadow: inset 0 2px 4px var(--yellow);
          box-shadow: inset 0 2px 4px var(--yellow);
}
input[type=radio]:checked,
input[type=checkbox]:checked {
  background: var(--yellow) url(../img/icon_check.svg) no-repeat center;
}
input[type=radio]:checked:hover,
input[type=checkbox]:checked:hover {
  background-color: var(--yellow);
}
input[type=radio]:checked:focus,
input[type=checkbox]:checked:focus {
  -webkit-box-shadow: inset 0 2px 4px var(--yellow);
          box-shadow: inset 0 2px 4px var(--yellow);
}

.c_wh {
  color: var(--white);
}

.c_bg {
  color: var(--bg);
}

.c_dark {
  color: var(--dark);
}

.c_grey {
  color: var(--grey);
}

.c_yellow {
  color: var(--yellow);
}

.c_yellow_hover {
  color: var(--yellow_hover);
}

.brd_4 {
  border-radius: 4px;
}

.brd_8 {
  border-radius: 8px;
}

.brd_10 {
  border-radius: 10px;
}

.brd_12 {
  border-radius: 12px;
}

.transition {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bg_wh {
  background-color: var(--white);
}

.bg_bg {
  background-color: var(--bg);
}

.bg_dark {
  background-color: var(--dark);
}

.bg_grey {
  background-color: var(--grey);
}

.bg_yellow {
  background-color: var(--yellow);
}

.bg_yellow_hover {
  background-color: var(--yellow_hover);
}

body,
html {
  scrollbar-color: var(--dark) var(--white);
  scrollbar-width: thick;
  overflow-x: hidden;
}

.swiper-container {
  overflow: hidden;
}

.elem__anim h1,
.elem__anim h2,
.elem__anim h3,
.elem__anim h4,
.elem__anim a,
.elem__anim button,
.elem__anim p,
.elem__anim ul,
.elem__anim ol {
  opacity: 0;
}

.lzy_img_opacity {
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.lzy_img_opacity.lzy_img_new {
  opacity: 0;
}

.xyz_start {
  opacity: 0;
}

.xyz_start.xyz-in {
  opacity: 1;
}

body {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--dark);
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.2em;
  background-color: var(--bg);
}

section {
  position: relative;
}

/* ::-webkit-scrollbar {
  height: 5px;
} */
::-webkit-scrollbar {
  width: 10px;
}

.swiper-slide,
.swiper-slide:active,
.swiper-slide:hover {
  outline: none;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--white);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--dark);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}

a:hover,
a:active,
a:visited,
a {
  text-decoration: none;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  display: block;
}

p {
  margin-bottom: 0;
  line-height: 1.2em;
}

input:hover,
select:hover,
textarea:hover,
input:active,
select:active,
textarea:active,
input:focus,
select:focus,
textarea:focus,
input,
select,
textarea {
  display: block;
  outline: none;
  font-family: "Manrope", sans-serif;
}

.ff_sync {
  font-family: "Syncopate", sans-serif;
  font-style: normal;
}

button {
  background-color: transparent;
  border: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

button,
button:focus,
button:active,
button:hover {
  outline: none;
}

svg,
path {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.container {
  position: relative;
}

p.btn,
span.btn,
a.btn,
button.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Manrope", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  height: 57px;
  border-radius: 5px;
  color: var(--dark);
  background-color: var(--yellow);
  padding: 0 32px;
  cursor: pointer;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
p.btn *,
span.btn *,
a.btn *,
button.btn * {
  pointer-events: none;
}
p.btn svg,
span.btn svg,
a.btn svg,
button.btn svg {
  margin-left: 12px;
}
p.btn svg path,
span.btn svg path,
a.btn svg path,
button.btn svg path {
  fill: var(--dark);
}
p.btn:hover,
span.btn:hover,
a.btn:hover,
button.btn:hover {
  background-color: var(--yellow);
  -webkit-box-shadow: inset 0 2px 4px var(--yellow_hover);
          box-shadow: inset 0 2px 4px var(--yellow_hover);
}
p.btn:active,
span.btn:active,
a.btn:active,
button.btn:active {
  background-color: var(--yellow_hover);
  -webkit-box-shadow: inset 0 2px 4px var(--yellow_hover);
          box-shadow: inset 0 2px 4px var(--yellow_hover);
}
p.btn.btn_dark,
span.btn.btn_dark,
a.btn.btn_dark,
button.btn.btn_dark {
  background-color: var(--dark);
  color: var(--white);
}
p.btn.btn_dark svg path,
span.btn.btn_dark svg path,
a.btn.btn_dark svg path,
button.btn.btn_dark svg path {
  fill: var(--white);
}
p.btn.btn_dark:hover,
span.btn.btn_dark:hover,
a.btn.btn_dark:hover,
button.btn.btn_dark:hover {
  background-color: var(--yellow);
  -webkit-box-shadow: inset 0 2px 4px var(--yellow_hover);
          box-shadow: inset 0 2px 4px var(--yellow_hover);
  color: var(--dark);
}
p.btn.btn_dark:hover svg path,
span.btn.btn_dark:hover svg path,
a.btn.btn_dark:hover svg path,
button.btn.btn_dark:hover svg path {
  fill: var(--dark);
}
p.btn.btn_dark:active,
span.btn.btn_dark:active,
a.btn.btn_dark:active,
button.btn.btn_dark:active {
  background-color: var(--yellow_hover);
  -webkit-box-shadow: inset 0 2px 4px var(--yellow_hover);
          box-shadow: inset 0 2px 4px var(--yellow_hover);
  color: var(--dark);
}
p.btn.btn_dark:active svg path,
span.btn.btn_dark:active svg path,
a.btn.btn_dark:active svg path,
button.btn.btn_dark:active svg path {
  fill: var(--dark);
}
p.btn.btn_tr,
span.btn.btn_tr,
a.btn.btn_tr,
button.btn.btn_tr {
  background-color: transparent;
  border: 2px solid var(--dark);
  color: var(--dark);
}
p.btn.btn_tr:hover,
span.btn.btn_tr:hover,
a.btn.btn_tr:hover,
button.btn.btn_tr:hover {
  color: var(--white);
  background-color: var(--dark);
  border: 2px solid var(--dark);
  -webkit-box-shadow: none;
          box-shadow: none;
}
p.btn.btn_tr:hover svg path,
span.btn.btn_tr:hover svg path,
a.btn.btn_tr:hover svg path,
button.btn.btn_tr:hover svg path {
  fill: var(--white);
}
p.btn.btn_tr:active,
span.btn.btn_tr:active,
a.btn.btn_tr:active,
button.btn.btn_tr:active {
  color: var(--white);
  background-color: var(--grey);
  border: 2px solid var(--grey);
  -webkit-box-shadow: none;
          box-shadow: none;
}
p.btn.btn_tr:active svg path,
span.btn.btn_tr:active svg path,
a.btn.btn_tr:active svg path,
button.btn.btn_tr:active svg path {
  fill: var(--white);
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: transparent;
  padding: 9px 0;
}
.header .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .social a {
  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;
  width: 24px;
  height: 24px;
}
.header .social a:not(:last-child) {
  margin-right: 12px;
}
.header .social a svg path {
  fill: var(--dark);
}
.header .social a:hover svg path {
  fill: var(--yellow);
}
.header .social a:active svg path {
  fill: var(--yellow_hover);
}
.header.header_fixed {
  background-color: var(--bg);
}

.lang {
  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;
  width: 80px;
}
.lang li:not(:last-child) {
  position: relative;
}
.lang li:not(:last-child)::after {
  content: "";
  display: block;
  width: 2px;
  height: 15px;
  background-color: var(--dark);
  position: absolute;
  right: -14px;
  top: 3px;
}
.lang li a {
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
}
.lang li.current-lang a {
  font-weight: 700;
}

.custom-logo-link {
  display: block;
  width: 122px;
  max-width: 100%;
}
.custom-logo-link img {
  width: 100%;
  height: auto;
}

.open__form * {
  pointer-events: none;
}

.section__title {
  font-weight: 700;
  font-size: 32px;
  font-family: "Syncopate", sans-serif;
}

h1,
.title_1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.16em;
}

h2,
.title_2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2em;
  font-family: "Syncopate", sans-serif;
}

h3,
.title_3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2em;
  font-family: "Syncopate", sans-serif;
}

h4,
.title_4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.28em;
}

.text__content h2,
.text__content h3,
.text__content h4 {
  margin-bottom: 1.1em;
}
.text__content p,
.text__content li {
  font-size: 18px;
  line-height: 1.4em;
  margin-bottom: 1.2em;
  font-weight: 400;
}
.text__content p b,
.text__content p strong,
.text__content li b,
.text__content li strong {
  font-weight: 500;
}
.text__content li {
  position: relative;
  padding-left: 28px;
}
.text__content li:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-color: var(--yellow);
  position: absolute;
  left: 11px;
  top: 0.5em;
}

.form__wrap .input__label span {
  color: #d20000;
}
.form__wrap .input__group {
  margin-bottom: 24px;
}
.form__wrap .input__group .order__input {
  display: block;
  width: 100%;
  height: 52px;
  padding-left: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #6e89a0;
  border: 1px solid transparent;
  background-color: var(--blue_light);
  border-radius: 8px;
}
.form__wrap .input__group .order__input.wpcf7-not-valid {
  background-color: #ffeaea;
  color: #9f0000;
}
.form__wrap .input__group .order__input::-webkit-input-placeholder {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #6e89a0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-moz-placeholder {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #6e89a0;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:-ms-input-placeholder {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #6e89a0;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-ms-input-placeholder {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #6e89a0;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::placeholder {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #6e89a0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:hover {
  border: 1px solid var(--blue);
}
.form__wrap .input__group .order__input:focus {
  border: 1px solid #f845fc;
}
.form__wrap .input__group .order__input.order__input_message {
  height: 128px;
  padding-top: 10px;
}
.form__wrap .acceptance span {
  display: block;
  margin: 0 !important;
}
.form__wrap input[type=radio],
.form__wrap input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--stroke);
  border-radius: 4px;
  margin-right: 8px;
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: transparent;
}
.form__wrap input[type=radio]:hover,
.form__wrap input[type=checkbox]:hover {
  border-color: #605dec;
}
.form__wrap input[type=radio]:checked,
.form__wrap input[type=checkbox]:checked {
  border-color: var(--blue);
  background: var(--blue) url(../img/input_check.svg) no-repeat center;
}
.form__wrap input[type=radio]:checked:hover,
.form__wrap input[type=checkbox]:checked:hover {
  border-color: #605dec;
  background: var(--blue) url(../img/input_check.svg) no-repeat center;
}
.form__wrap .wpcf7-not-valid-tip {
  font-size: 13px;
  color: #9f0000;
  position: absolute;
  top: 95%;
  left: 0;
}

@media screen and (max-width: 1199px) {
  h1,
  .title_1 {
    font-size: 36px;
  }
  .custom-logo-link {
    width: 100px;
  }
  .header .city__block {
    padding-left: 0;
  }
}
@media screen and (max-width: 991px) {
  h1,
  .title_1 {
    font-size: 32px;
  }
  h3,
  .title_3 {
    font-size: 20px;
  }
  h4,
  .title_4 {
    font-size: 20px;
  }
  .section__title {
    font-size: 28px;
  }
  .text__content p,
  .text__content li {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  h1,
  .title_1 {
    font-size: 28px;
  }
  .custom-logo-link {
    width: 80px;
  }
  .section__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 576px) {
  .section__title {
    font-size: 20px;
  }
  .custom-logo-link {
    width: 70px;
  }
}
.preloader {
  background-color: var(--dark);
  position: fixed;
  z-index: 999999999;
  width: 100%;
  height: 100%;
  -webkit-animation: preloader 1s ease-out 1.3s forwards;
          animation: preloader 1s ease-out 1.3s forwards;
}
.preloader .preloader__content img {
  width: 250px;
  -webkit-animation: preloaderAnimate 0.7s ease-out forwards;
          animation: preloaderAnimate 0.7s ease-out forwards;
  opacity: 0;
}
.preloader .preloader__content p {
  -webkit-animation: preloaderAnimate 0.5s ease-out forwards;
          animation: preloaderAnimate 0.5s ease-out forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  opacity: 0;
}
.preloader:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--bg);
  position: absolute;
  z-index: 2;
  top: 0%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  left: 0;
  -webkit-animation: beforeAnimate 1s ease-out 1s forwards;
          animation: beforeAnimate 1s ease-out 1s forwards;
}

@-webkit-keyframes preloader {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
  }
}

@keyframes preloader {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
  }
}
@-webkit-keyframes preloaderAnimate {
  0% {
    opacity: 0;
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes preloaderAnimate {
  0% {
    opacity: 0;
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes beforeAnimate {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes beforeAnimate {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.menu__burger {
  width: 23px;
  cursor: pointer;
}
.menu__burger span {
  display: block;
  margin-bottom: 4px;
  background-color: var(--grey);
  height: 3px;
  pointer-events: none;
}
.menu__burger span:last-child {
  margin-bottom: 0;
}

.nav {
  padding: 0 30px;
  position: fixed;
  width: 100%;
  max-width: 400px;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: var(--bg);
  padding-bottom: 110px;
  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-transition: all 0.4s ease;
  transition: all 0.4s ease;
  height: 100%;
}
.nav.open_menu {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.nav .custom-logo-link {
  width: 70px;
}
.nav .menu__close {
  width: 25px;
  height: 25px;
  display: block;
  cursor: pointer;
  background: url(../img/close.svg) no-repeat center;
}
.nav .nav__nemu {
  margin: auto 0;
  width: 292px;
}
.nav .nav__nemu .nav__item {
  text-align: center;
  border-top: 1px solid #e7e7e7;
  padding: 24px 0;
}
.nav .nav__nemu .nav__item:last-child {
  border-bottom: 1px solid #e7e7e7;
}
.nav .nav__nemu .nav__item a {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  font-family: "Syncopate", sans-serif;
  text-transform: uppercase;
}
.nav .nav__nemu .nav__item a:hover {
  color: var(--yellow);
}
.nav .nav__nemu .nav__item a:active {
  color: var(--yellow_hover);
}
.nav .lang {
  width: 135px;
  margin-bottom: auto;
}
.nav .lang li a {
  font-size: 32px;
}
.nav .lang li:not(:last-child)::after {
  height: 22px;
  right: -27px;
  top: 0px;
}
.nav .social {
  margin-top: auto;
}
.nav .social a {
  width: 30px;
  height: 30px;
  margin-right: 30px;
}

.head__section {
  overflow: hidden;
}
.head__section .offer {
  padding-top: 170px;
}
.head__section .offer .offer__bg {
  left: -130px;
  top: 0;
}
.head__section .offer .offer__bg img {
  height: auto;
}
.head__section .offer p,
.head__section .offer h1 {
  position: relative;
  z-index: 2;
}
.head__section .offer h1 {
  font-size: 64px;
  line-height: 1em;
  -webkit-text-stroke: 2px var(--dark);
  text-stroke: 2px var(--dark);
}
.head__section .offer h1 span {
  color: transparent;
}
.head__section .head_img__bg {
  position: absolute;
  left: -12px;
  bottom: 0;
}
.head__section .head__img {
  width: 464px;
  margin: 0 auto;
}
.head__section .head__img img {
  width: 100%;
  height: auto;
}
.head__section .head__logo {
  position: absolute;
  right: -60px;
  bottom: 17px;
}
.head__section .head__video {
  position: absolute;
  left: -80px;
  top: 120px;
}
.head__section .head__video .video__btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--dark);
  margin-right: 22px;
  position: relative;
}
.head__section .head__video .video__btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 0;
  border: 1px solid var(--dark);
  -webkit-animation: pulsPlay 3s ease-in-out infinite;
          animation: pulsPlay 3s ease-in-out infinite;
  pointer-events: none;
}
.head__section .head__video .video__btn:hover {
  background-color: var(--dark);
}
.head__section .head__video .video__btn:hover svg path {
  fill: var(--white);
}
.head__section .head__video .video__btn:active {
  background-color: var(--white);
}
.head__section .head__video .video__btn:active svg path {
  fill: var(--yellow);
}
.head__section .head__video p {
  width: 115px;
  margin-bottom: 0;
}

@-webkit-keyframes pulsPlay {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes pulsPlay {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}
@media screen and (max-width: 1199px) {
  .head__section .offer {
    padding-top: 140px;
  }
  .head__section .offer h1 {
    font-size: 48px;
  }
  .head__section .offer .btns {
    padding-top: 60px;
  }
  .head__section .offer .offer__bg {
    width: 810px;
  }
  .head__section .offer .offer__bg img {
    width: 100%;
  }
  .head__section .offer .offer__subtitle {
    max-width: 480px;
  }
  .head__section .head__video {
    left: -63px;
    top: 95px;
  }
  .head__section .head__img img {
    width: 380px;
  }
}
@media screen and (max-width: 991px) {
  .head__section .head__video {
    left: auto;
    right: 60px;
    top: -60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .head__section .head__video p {
    margin-bottom: 90px;
    font-size: 10px;
    position: relative;
    color: var(--dark);
    width: 84px;
  }
  .head__section .head__video p::after {
    content: "";
    display: block;
    width: 1px;
    height: 54px;
    background-color: var(--grey);
    position: absolute;
    left: 50%;
    top: 99%;
    opacity: 0.2;
  }
  .head__section .head__video .video__btn {
    margin-right: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .head__section .head__logo {
    right: 65px;
  }
  .head__section .head_img__bg {
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  .head__section .offer {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .head__section {
    padding-top: 40px;
  }
  .head__section .offer .offer__bg {
    width: calc(100% + 48px);
    left: -24px;
    top: 0;
  }
  .head__section .offer h1 {
    font-size: 40px;
    margin-bottom: 4px;
  }
  .head__section .offer .offer__subtitle {
    font-size: 20px;
    max-width: 70%;
  }
  .head__section .head_img__bg {
    max-width: calc(100% + 48px);
    width: calc(100% + 48px);
    left: -24px;
    -webkit-transform: none;
            transform: none;
  }
  .head__section .head_img__bg img {
    width: 100%;
  }
  .head__section .head__img {
    width: 80%;
  }
  .head__section .head__img img {
    width: 100%;
  }
  .head__section .head__logo {
    width: 35px;
    right: 0;
  }
  .head__section .head__video {
    right: 10px;
    top: 63px;
  }
}
@media screen and (max-width: 576px) {
  p.btn,
  span.btn,
  a.btn,
  button.btn {
    height: 43px;
    font-size: 14px;
    padding: 0 24px;
  }
  p.btn svg,
  span.btn svg,
  a.btn svg,
  button.btn svg {
    width: 14px;
    height: 14px;
  }
  .container {
    padding: 0 24px;
  }
  .head__section .offer {
    padding-top: 22vw;
  }
  .head__section .offer h1 {
    font-size: 7.6vw;
  }
  .head__section .offer p {
    font-size: 5.2vw;
  }
  .head__section .offer p.offer__subtitle {
    font-size: 4vw;
  }
  .head__section .head__video {
    right: -1vw;
    top: -1vw;
  }
  .head__section .head__video p {
    margin-bottom: 19vw;
    font-size: 2.5vw;
    width: 21vw;
  }
}
.help .help__item {
  position: relative;
  padding-top: 34px;
}
.help .help__item .help__bg {
  position: absolute;
}
.help .help__item.help__item_dark .help__bg {
  right: 0;
  top: 0;
}
.help .help__item.help__item_grey {
  padding-left: 80px;
  margin-top: 35px;
}
.help .help__item.help__item_grey .help__bg {
  left: -24px;
  top: -75px;
}
.help .help__item.help__item_grey p {
  margin-left: 36px;
}
.help .help__item p {
  max-width: 386px;
  margin-left: 80px;
  font-size: 20px;
  line-height: 1.2em;
}

@media screen and (max-width: 1439px) {
  .help {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .help .help__item p {
    margin-left: 20px;
  }
  .help .help__item.help__item_grey {
    padding-left: 60px;
    padding-top: 28px;
  }
  .help {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .help .help__item {
    min-height: 200px;
  }
  .help .help__item .title_3,
  .help .help__item p {
    width: 340px;
  }
  .help .help__item.help__item_dark {
    padding-left: 140px;
    margin-bottom: 80px;
  }
  .help {
    padding-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .help .help__item.help__item_dark {
    padding-top: 50px;
    padding-left: 50px;
    margin-bottom: 110px;
  }
  .help .help__item .help__bg {
    width: 100%;
  }
  .help .help__item .help__bg img {
    width: 100%;
  }
  .help .help__item.help__item_grey {
    padding-left: 50px;
  }
  .help .help__item.help__item_grey .help__bg {
    left: 0;
  }
  .help .help__item p {
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 576px) {
  .help {
    padding-top: 50px;
  }
  .help .help__item.help__item_grey .help__bg,
  .help .help__item .help__bg {
    width: calc(100% + 60px);
    left: -30px;
  }
  .help .help__item.help__item_dark {
    margin-bottom: 20vw;
    padding-top: 9vw;
  }
  .help .help__item.help__item_grey {
    padding-top: 0;
    margin-top: 12vw;
  }
  .help .help__item.help__item_dark,
  .help .help__item.help__item_grey {
    padding-left: 0;
    min-height: inherit;
  }
  .help .help__item .title_3 {
    font-size: 4.6vw;
  }
  .help .help__item .title_3,
  .help .help__item p {
    max-width: 75%;
  }
  .help .help__item p {
    font-size: 4vw;
  }
}
.business .business__card {
  min-height: 208px;
  -webkit-box-shadow: 15px 12px 15px rgba(0, 0, 0, 0.06);
          box-shadow: 15px 12px 15px rgba(0, 0, 0, 0.06);
  padding: 56px 15px 30px 30px;
}
.business .business__card .business__icon {
  left: 0;
  top: -30px;
  width: 60px;
  height: 60px;
  background: url(../img/business_icon.svg) no-repeat center;
}
.business .business__card .text__content h3 {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.business .business__card .text__content li {
  font-size: 16px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1439px) {
  .business .business__card {
    padding: 40px 20px 20px;
    width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .business .business__card {
    padding: 40px 15px 20px;
  }
}
@media screen and (max-width: 991px) {
  .business .business__card {
    padding: 45px 30px 40px;
  }
}
@media screen and (max-width: 767px) {
  .business .business__card {
    padding: 45px 15px 40px;
  }
}
@media screen and (max-width: 576px) {
  .business {
    padding-top: 20vw;
  }
  .business .business__card {
    padding: 45px 40px 40px;
  }
}
.about .about__img_wrap {
  padding-top: 129px;
}
.about .about__img_bg {
  width: 678px;
  height: 700px;
  right: 50px;
  top: 0;
}
.about .about__img_bg::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 97px;
  height: 97px;
  background-color: var(--bg);
}
.about .about__img {
  width: calc(100% - 55px);
}
.about .about__img img {
  width: 100%;
  height: auto;
}
.about .about__img::before, .about .about__img::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 255px;
  height: 125px;
  background-color: var(--bg);
}
.about .about__img .about__elem {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.about .about__img .about__elem .about_yelow_square {
  position: absolute;
  left: -36px;
  top: -70px;
  z-index: 2;
  width: 100px;
  height: 100px;
}
.about .about__content {
  padding-top: 27px;
  padding-bottom: 27px;
}
.about .about__content p {
  position: relative;
  z-index: 2;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 1.2em;
}
.about .about__content p:last-child {
  margin-bottom: 0;
}
.about .about__content .about__content_bg {
  width: 826px;
  height: 100%;
  position: absolute;
  left: -105px;
  top: 0;
}
.about .about__content .about__content_bg::before, .about .about__content .about__content_bg:after {
  content: "";
  display: block;
  width: 76px;
  height: 76px;
  background-color: var(--bg);
  position: absolute;
  right: 138px;
  top: 0;
}
.about .about__content .about__content_bg::after {
  right: 20px;
  top: auto;
  bottom: 0;
}
.about .about__content .about__content_bg + p {
  padding-right: 80px;
}
.about .about__content.about__content_quote::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/icone_qwote.svg) no-repeat center;
  position: absolute;
  left: -42px;
  top: 12px;
  z-index: 5;
}
.about .about__content.about__content_quote:after {
  content: "";
  display: block;
  width: 76px;
  height: 76px;
  background-color: var(--white);
  position: absolute;
  left: -138px;
  top: 0;
}

@media screen and (max-width: 1199px) {
  .about .about__content .about__content_bg::before {
    right: 235px;
  }
  .about .about__content .about__content_bg::after {
    right: 190px;
  }
  .about .about__img::before,
  .about .about__img::after {
    height: 70px;
    width: 200px;
  }
}
@media screen and (max-width: 991px) {
  .about {
    padding-top: 0;
  }
  .about .about__content .about__content_bg + p {
    padding-right: 0;
  }
  .about .about__content .about__content_bg {
    width: calc(100% + 24px);
    left: -12px;
    z-index: 2;
  }
  .about .about__img_bg {
    top: -2px;
    width: 100%;
    left: 0;
    height: 100%;
  }
  .about .about__img_bg::before {
    content: "";
    display: block;
    height: 150px;
    width: 50%;
    background-color: var(--bg);
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .about .about__img_bg::after {
    height: 180px;
    width: 50%;
  }
  .about .about__content .about__content_bg::before {
    right: 15%;
  }
  .about .about__content .about__content_bg:after {
    right: 0;
  }
  .about .about__content .about__content_bg::before,
  .about .about__content .about__content_bg:after {
    width: 36px;
    height: 36px;
  }
  .about .about__content.about__content_quote::before {
    left: 0;
  }
  .about .about__content.about__content_quote {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .about .about__img_wrap {
    padding-top: 25px;
    margin-bottom: 30px;
  }
  .about .about__img {
    width: 100%;
    max-width: 304px;
    margin: 0 auto;
  }
  .about .about__img img {
    width: 100%;
  }
  .about .about__img .about__elem .about_yelow_square {
    width: 60px;
    height: 60px;
  }
  .about .about__img::before {
    width: 77px;
    height: 77px;
    right: auto;
    left: 0;
  }
  .about .about__img::after {
    width: 70px;
  }
}
@media screen and (max-width: 767px) {
  .about .about__content p {
    font-size: 16px;
  }
}
.secret {
  padding-bottom: 150px;
}
.secret .secret__content_after,
.secret .secret__content_before {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  top: 0;
}
.secret .secret__content_after {
  top: auto;
  bottom: 0;
}
.secret .secret__content_after::after {
  content: "";
  width: 170px;
  height: 115px;
  position: absolute;
  right: -15px;
  top: -1px;
  background-color: var(--yellow);
}
.secret .secret__content_after:before {
  content: "";
  display: block;
  width: 990px;
  height: 115px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-45%);
          transform: translate(-45%);
  top: -1px;
  background: url(../img/secret_img_group.svg) no-repeat center;
}
.secret .secret__content_before::after {
  content: "";
  display: block;
  width: 170px;
  height: 170px;
  position: absolute;
  right: 0;
  bottom: -1px;
  background-color: var(--yellow);
}
.secret .secret__content_before::before {
  content: "";
  display: block;
  width: 63px;
  height: 63px;
  position: absolute;
  right: 30%;
  bottom: 24px;
  background-color: var(--yellow);
}
.secret .secret__text {
  -webkit-text-stroke: 1px var(--dark);
  text-stroke: 1px var(--dark);
}
.secret .secret__text span {
  color: transparent;
}

@media screen and (max-width: 1439px) {
  .secret {
    padding-top: 50px;
    padding-bottom: 120px;
  }
  .secret .secret__content_after:before {
    width: 770px;
    background-size: 100%;
    background-position: left top;
    height: 90px;
  }
  .secret .secret__content_before::after {
    width: 150px;
    height: 150px;
  }
  .secret .secret__content_after::after {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .secret {
    padding-bottom: 90px;
  }
  .secret .secret__content_before::after {
    width: 100px;
    height: 100px;
  }
  .secret .secret__content_after:before {
    width: 600px;
    height: 90px;
  }
}
@media screen and (max-width: 991px) {
  .secret {
    padding-bottom: 60px;
  }
  .secret .secret__content_after::after {
    display: none;
  }
  .secret .secret__content_before::before {
    width: 40px;
    height: 40px;
  }
  .secret .secret__text span {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .secret .secret__content_before::after {
    width: 58px;
    height: 24px;
    right: auto;
    left: 25%;
  }
  .secret .secret__content_after:before {
    width: 500px;
  }
  .secret .secret__text {
    font-size: 24px;
  }
}
@media screen and (max-width: 576px) {
  .secret .secret__content_before::before {
    width: 22px;
    height: 22px;
    bottom: 16px;
  }
  .secret .secret__content_after:before {
    width: 290px;
  }
}
.advant {
  padding-top: 150px;
  padding-bottom: 120px;
}
.advant .advant__icon {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 1px solid var(--yellow);
  padding-left: 12px;
}
.advant .advant__icon img {
  max-height: 100%;
  height: auto;
}

@media screen and (max-width: 1439px) {
  .advant {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .advant {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 991px) {
  .advant {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .advant {
    padding-bottom: 30px;
  }
  .advant .advant__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .advant .advant__offer {
    margin-bottom: 30px;
  }
  .advant .advant__offer .section__title,
  .advant .advant__offer p {
    text-align: left;
  }
}
.service .section__number {
  font-size: 128px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--grey);
  text-stroke: 1px var(--grey);
  position: absolute;
  left: -90px;
  top: -60px;
}
.service .service__before img {
  max-width: 100%;
  height: auto;
}
.service .service__content {
  margin-top: -5px;
}
.service .text__content {
  z-index: 2;
  position: relative;
}
.service .text__content h2 {
  margin-bottom: 24px;
}
.service .service__faq:not(:last-child) {
  border-bottom: 1px solid var(--grey);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.service .service__faq.open .service__faq_qwestion {
  color: var(--yellow);
}
.service .service__faq.open .service__faq_qwestion .icon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.service .service__faq.open .service__faq_qwestion .icon svg path {
  fill: var(--grey);
}
.service .service__faq .service__faq_qwestion {
  position: relative;
  padding-right: 25px;
  cursor: pointer;
}
.service .service__faq .service__faq_qwestion .icon {
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: none;
}
.service .service__faq .service__faq_qwestion .icon svg {
  width: 20px;
  height: 20px;
}
.service .service__faq .service__faq_answer p {
  font-size: 16px;
}

@media screen and (max-width: 1439px) {
  .service .section__title {
    margin-bottom: 50px;
  }
  .service .text__content h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 991px) {
  .service .text__content p,
  .service .text__content li {
    font-size: 16px;
  }
  .service .text__content h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 576px) {
  .service .text__content h2 {
    font-size: 20px;
  }
}
.need .need__subtitle a {
  color: var(--white);
  text-decoration: underline;
}
.need .need__subtitle a:hover {
  color: var(--yellow);
}
.need .need__subtitle a:active {
  color: var(--yellow_hover);
}
.need .need__swiper .need__slide {
  height: auto;
  width: 880px;
  border-radius: 10px;
  -webkit-box-shadow: 4px 16px 18px rgba(0, 0, 0, 0.2);
          box-shadow: 4px 16px 18px rgba(0, 0, 0, 0.2);
  padding: 88px 103px 127px;
  position: relative;
  background-color: #232323;
}
.need .need__swiper .need__slide .need__title {
  font-family: "Manrope", sans-serif;
}
.need .need__swiper .need__slide .need__list .need__item {
  width: 156px;
}
.need .need__swiper .need__slide .need__list .need__item .need__icon {
  height: 50px;
  padding-left: 12px;
  border-left: 1px solid var(--yellow);
}
.need .need__swiper .need__slide .need__list .need__item .need__icon img {
  max-height: 100%;
  width: auto;
}
.need .need__swiper .need__slide .need__list_after {
  color: #a7a7a7;
}
.need .need__swiper .need__slide .need__content.need__content_wsimg {
  max-width: 362px;
}
.need .need__swiper .need__slide .need__content h3 {
  font-family: "Manrope", sans-serif;
  margin-bottom: 22px;
  font-size: 20px;
  font-weight: 300;
}
.need .need__swiper .need__slide .need__content h3 b,
.need .need__swiper .need__slide .need__content h3 strong {
  font-weight: 700;
}
.need .need__swiper .need__slide .need__content ul {
  margin-bottom: 9px;
}
.need .need__swiper .need__slide .need__content p,
.need .need__swiper .need__slide .need__content li {
  font-size: 16px;
  margin-bottom: 9px;
}
.need .need__swiper .need__slide .need__content p:last-child,
.need .need__swiper .need__slide .need__content li:last-child {
  margin-bottom: 0;
}
.need .need__swiper .need__slide .btn {
  max-width: 326px;
}
.need .need__swiper .need__slide .need__after_offer.need__after_offer_ws_img {
  max-width: 362px;
}
.need .need__swiper .need__slide .need__img {
  position: absolute;
  bottom: 80px;
  right: 15px;
  width: 406px;
  height: auto;
}

@media screen and (max-width: 1439px) {
  .need .need__swiper .need__slide {
    padding: 80px;
  }
  .service .section__number {
    font-size: 100px;
    left: -10px;
  }
}
@media screen and (max-width: 1199px) {
  .need .need__swiper .need__slide {
    padding: 60px 40px;
    width: 750px;
  }
  .need .need__swiper .need__slide .need__img {
    width: 300px;
  }
  .service .section__number {
    font-size: 90px;
  }
}
@media screen and (max-width: 991px) {
  .need .need__swiper .need__slide {
    padding: 40px;
    width: 650px;
  }
  .need .need__swiper .need__slide .need__img {
    width: 250px;
  }
  .service .section__number {
    font-size: 80px;
    top: -45px;
  }
}
@media screen and (max-width: 767px) {
  .need .need__swiper .need__slide {
    padding: 40px 25px;
    width: 480px;
  }
  .need .section__title {
    margin-bottom: 5px;
  }
  .need .need__subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .service .section__number {
    font-size: 64px;
    top: -36px;
  }
  .need .need__swiper .need__slide .need__img {
    display: none;
  }
  .need .need__swiper .need__slide .need__list .need__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .need .need__swiper .need__slide .need__list .need__item .need__icon {
    margin-right: 12px;
    padding-left: 3px;
    height: 24px;
    width: 24px;
    margin-bottom: 0;
  }
  .need .need__swiper .need__slide .need__list .need__item .need__icon img {
    width: 20px;
    height: auto;
  }
  .need .need__swiper .need__slide .need__list .need__item p {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .need .need__swiper .need__slide {
    width: 280px;
  }
  .need .need__swiper .need__slide .need__title {
    font-size: 20px;
  }
  .need .need__swiper .need__slide .need__content h3 {
    font-size: 16px;
  }
  .need .need__swiper .need__slide .need__list .need__item p {
    font-size: 12px;
  }
  .need .need__swiper .need__slide .need__content p {
    font-size: 14px;
  }
  .need .need__swiper .need__slide .need__content li {
    font-size: 12px;
  }
  .need .need__swiper .need__slide .need__after_offer.need__after_offer_ws_img {
    margin-bottom: 18px;
    font-size: 14px;
  }
  .need .need__content {
    margin-bottom: 24px;
  }
  .need .need__swiper .need__slide .btn {
    padding: 0;
    width: 100%;
  }
}
.benefit .benefit__icon {
  height: 50px;
  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;
  margin-bottom: 15px;
}
.benefit .benefit__icon img {
  max-height: 100px;
}

@media screen and (max-width: 1199px) {
  .benefit .benefit__item p {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .benefit .benefit__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .benefit .benefit__row .benefit__item {
    width: 33.3333333333%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .benefit .benefit__row .benefit__item .benefit__icon {
    margin-bottom: 0;
    margin-right: 8px;
    height: 30px;
    width: 30px;
  }
  .benefit .benefit__row .benefit__item .benefit__icon img {
    max-width: 100%;
    height: auto;
  }
  .benefit .benefit__row .benefit__item p {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .benefit .benefit__row .benefit__item {
    width: 50%;
    padding-right: 12px;
  }
  .benefit .benefit__row .benefit__item p {
    font-size: 16px;
  }
}
.building .container {
  padding-top: 220px;
}
.building .container .building__bg {
  position: absolute;
  right: 10%;
  top: -15px;
  max-width: 100%;
}
.building .building__number {
  font-size: 128px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #f3e4b6;
  text-stroke: 1px #f3e4b6;
  position: absolute;
  left: -90px;
  top: -50px;
}
.building .text__content {
  position: relative;
  z-index: 2;
}
.building .text__content h2 {
  margin-bottom: 24px;
  line-height: 1.1em;
}
.building .text__content h4 {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
}
.building .text__content h3 {
  margin-bottom: 24px;
}
.building .text__content p {
  font-size: 20px;
}
.building .building__list li {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  text-transform: uppercase;
  padding-bottom: 20px;
}
.building .building__list li:not(:last-child) {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--dark);
}
.building .swiper__arrows .swiper__arrow:hover svg path {
  fill: var(--white);
}
.building .building__swiper .building__slide {
  height: 784px;
  background-position: 100% bottom;
  background-size: 450px;
  padding: 55px 50px;
  width: 480px;
}
.building .building__swiper .building__slide .text__content h2,
.building .building__swiper .building__slide .text__content h3,
.building .building__swiper .building__slide .text__content h4,
.building .building__swiper .building__slide .text__content h5 {
  font-family: "Manrope", sans-serif;
}
.building .building__swiper .building__slide .text__content h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
}
.building .building__swiper .building__slide .text__content h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}
.building .building__swiper .building__slide .text__content h5 {
  font-size: 14px;
  font-weight: 400;
}
.building .building__swiper .building__slide .text__content ul {
  margin-bottom: 25px;
}
.building .building__swiper .building__slide .text__content li {
  font-size: 16px;
  margin-bottom: 12px;
}

@media screen and (max-width: 1439px) {
  .building .building__number {
    font-size: 100px;
    left: -10px;
  }
  .building .container {
    padding-top: 180px;
  }
  .building {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .building .building__number {
    font-size: 90px;
  }
  .building .text__content p {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .building .building__number {
    font-size: 80px;
    top: -45px;
  }
  .building .container .building__bg {
    width: 600px;
  }
  .building .container {
    padding-top: 150px;
  }
  .building {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 767px) {
  .building .container .building__bg {
    right: 24px;
    width: 80%;
  }
  .building .building__number {
    font-size: 64px;
    top: -36px;
  }
  .building .container {
    padding-top: 120px;
  }
  .building .text__content h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .building .text__content h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .building .text__content p {
    font-size: 16px;
  }
  .building .building__list li {
    padding-bottom: 12px;
  }
  .building .building__list li:not(:last-child) {
    margin-bottom: 20px;
  }
  .building .building__swiper .building__slide .text__content h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .building {
    padding-bottom: 50px;
  }
  .building .container {
    padding-top: 100px;
  }
  .building .building__swiper .building__slide {
    width: 280px;
    padding-top: 55px;
    padding-left: 30px;
    padding-right: 25px;
    background-size: 280px;
    padding-bottom: 200px;
    height: auto;
  }
  .building .building__swiper .building__slide .text__content h5 span {
    color: red;
  }
  .building .building__swiper .building__slide .text__content li {
    padding-left: 20px;
    margin-bottom: 10px;
  }
  .building .building__swiper .building__slide .text__content li br {
    display: none;
  }
  .building .building__swiper .building__slide .text__content li::before {
    left: 5px;
  }
  .building__appeal a:hover {
    color: var(--dark);
  }
}
.wspartners {
  padding-bottom: 150px;
}
.wspartners .wspartners__row .text__content a {
  color: var(--dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.wspartners .wspartners__row .text__content a:hover {
  color: var(--yellow);
}
.wspartners .wspartners__row .text__content a:active {
  color: var(--yellow_hover);
}
.wspartners .wspartners__row .wspartners__wrap {
  position: relative;
}
.wspartners .wspartners__row .wspartners__wrap img {
  width: 100%;
  height: auto;
}
.wspartners .wspartners__row .wspartners__wrap .play {
  position: absolute;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
  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;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--yellow);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-shadow: inset 0 0px 0px var(--yellow_hover);
          box-shadow: inset 0 0px 0px var(--yellow_hover);
}
.wspartners .wspartners__row .wspartners__wrap .play:before {
  content: "";
  display: block;
  border-top: 20px solid transparent;
  border-right: 0px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 25px solid var(--white);
  margin-left: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.wspartners .wspartners__row .wspartners__wrap .play::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 0;
  border: 1px solid var(--yellow);
  -webkit-animation: pulsPlay 3s ease-in-out infinite;
          animation: pulsPlay 3s ease-in-out infinite;
  pointer-events: none;
}
.wspartners .wspartners__row .wspartners__wrap .play:hover {
  background-color: var(--yellow);
  -webkit-box-shadow: inset 0 2px 4px var(--yellow_hover);
          box-shadow: inset 0 2px 4px var(--yellow_hover);
}
.wspartners .wspartners__row .wspartners__wrap .play:hover:before {
  border-left: 25px solid var(--white);
}
.wspartners .wspartners__row .wspartners__wrap .play:active {
  background-color: var(--yellow_hover);
}
.wspartners .wspartners__row .wspartners__wrap .play:active:before {
  border-left: 25px solid var(--white);
}
.wspartners .wspartners__row .wspartners__wrap .color_elem {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.wspartners .wspartners__row .wspartners__wrap .color_elem:after, .wspartners .wspartners__row .wspartners__wrap .color_elem:before {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  position: absolute;
}
.wspartners .wspartners__row .wspartners__wrap:after, .wspartners .wspartners__row .wspartners__wrap:before {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  position: absolute;
}
.wspartners .wspartners__row:nth-child(3n+1) .wspartners__wrap:before {
  background-color: var(--yellow);
  right: 100%;
  bottom: 100%;
}
.wspartners .wspartners__row:nth-child(3n+1) .wspartners__wrap:after {
  left: 100%;
  top: 100%;
  background-color: var(--dark);
}
.wspartners .wspartners__row:nth-child(3n+2) .wspartners__wrap:before {
  background-color: var(--yellow);
  right: calc(100% + 12px);
  top: 50%;
}
.wspartners .wspartners__row:nth-child(3n+2) .wspartners__wrap:after {
  left: 100%;
  bottom: 100%;
  width: 40px;
  height: 40px;
  background-color: var(--dark);
}
.wspartners .wspartners__row:nth-child(3n+3) .wspartners__wrap:before {
  right: calc(100% + 12px);
  top: 20%;
  background-color: var(--dark);
}
.wspartners .wspartners__row:nth-child(3n+3) .wspartners__wrap:after {
  left: 100%;
  bottom: 100%;
  background-color: var(--dark);
}
.wspartners .wspartners__row:nth-child(3n+3) .wspartners__wrap .color_elem::after {
  width: 38px;
  height: 38px;
  bottom: 12px;
  right: 12px;
  background-color: var(--yellow);
}

@media screen and (max-width: 1439px) {
  .wspartners {
    padding-top: 100px;
  }
}
@media screen and (max-width: 991px) {
  .wspartners {
    padding-top: 90px;
    padding-bottom: 130px;
  }
  .wspartners .text__content h3 {
    margin-bottom: 10px;
  }
  .wspartners .wspartners__row .wspartners__wrap {
    margin-bottom: 20px;
    max-width: 500px;
  }
  .wspartners .wspartners__row .wspartners__wrap:after,
  .wspartners .wspartners__row .wspartners__wrap:before {
    width: 38px;
    height: 38px;
  }
  .wspartners .wspartners__row:nth-child(3n+1) .wspartners__wrap:before {
    right: 0;
    left: -19px;
    top: -19px;
    bottom: auto;
  }
  .wspartners .wspartners__row:nth-child(3n+1) .wspartners__wrap:after {
    left: auto;
    top: auto;
    right: -19px;
    bottom: -19px;
  }
  .wspartners .wspartners__row:nth-child(3n+2) .wspartners__wrap:before {
    left: -18px;
    right: auto;
  }
  .wspartners .wspartners__row:nth-child(3n+3) .wspartners__wrap:after,
  .wspartners .wspartners__row:nth-child(3n+2) .wspartners__wrap:after {
    left: auto;
    bottom: auto;
    top: -19px;
    right: -19px;
  }
  .wspartners .wspartners__row:nth-child(3n+3) .wspartners__wrap:before {
    right: auto;
    left: -19px;
    top: 15%;
  }
}
@media screen and (max-width: 767px) {
  .wspartners {
    padding-top: 60px;
  }
  .wspartners .wspartners__row .wspartners__wrap .play {
    width: 50px;
    height: 50px;
    left: calc(50% - 25px);
    top: calc(50% - 25px);
  }
  .wspartners .wspartners__row .wspartners__wrap .play:before {
    border-top: 15px solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid var(--white);
    margin-left: 5px;
  }
}
.book {
  margin-bottom: 90px;
}
.book .book__before,
.book .book__after {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.book .book__after {
  top: 100%;
}
.book .book__after img {
  position: absolute;
  right: -130px;
  top: 0;
}
.book .book__before img {
  position: absolute;
  right: -130px;
  bottom: -80px;
}
.book .container.book_container {
  position: relative;
}
.book .container.book_container::after, .book .container.book_container::before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-color: var(--bg);
  position: absolute;
  left: -120px;
  top: -60px;
}

@media screen and (max-width: 991px) {
  .book .book__before img {
    right: -160px;
  }
}
@media screen and (max-width: 767px) {
  .book .book__before::before, .book .book__before::after {
    content: "";
    display: block;
    width: 85px;
    height: 85px;
    background-color: var(--dark);
    position: absolute;
    bottom: -1px;
    left: 0;
  }
  .book .book__before::after {
    width: 110px;
    height: 110px;
    left: auto;
    right: 0;
  }
  .book .book__before img {
    position: absolute;
    right: 43%;
    bottom: 15px;
  }
  .book .container.book_container::after,
  .book .container.book_container::before {
    display: none;
  }
  .book .book__after img {
    width: 700px;
    position: absolute;
    right: 36px;
    top: -17px;
  }
}
.swiper__arrows .swiper__arrow {
  width: 58px;
  height: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.swiper__arrows .swiper__arrow.swiper__arrow_left {
  margin-right: 35px;
}
.swiper__arrows .swiper__arrow:hover svg path {
  fill: var(--yellow);
}

.clients {
  padding-top: 210px;
}
.clients .clients__slide {
  width: 480px;
  position: relative;
}
.clients .clients__slide .clients__logo {
  height: 240px;
  margin-bottom: 45px;
}
.clients .clients__slide .clients__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.clients .clients__slide .clients__name_bg {
  color: transparent;
  -webkit-text-stroke: 1px #e7e7e7;
  text-stroke: 1px #e7e7e7;
  font-size: 56px;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 265px;
}
.clients .clients__slide .clients__name {
  line-height: 1.3em;
}
.clients .clients__slide .clients__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.clients .clients__slide .clients__link span {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.clients .clients__slide .clients__link svg {
  margin-right: 12px;
  width: 20px;
  height: 20px;
}
.clients .clients__slide .clients__link:hover path {
  fill: var(--yellow);
}
.clients .clients__slide .clients__link:hover span {
  color: var(--yellow);
}
.clients .clients__slide .clients__link:active path {
  fill: var(--yellow_hover);
}
.clients .clients__slide .clients__link:active span {
  color: var(--yellow_hover);
}
.clients .clients__slide .clients__tag {
  margin-right: 12px;
  padding: 4px 24px;
  border: 1px solid var(--dark);
  border-radius: 5px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1439px) {
  .clients {
    padding-top: 150px;
  }
}
@media screen and (max-width: 1199px) {
  .clients {
    padding-top: 130px;
  }
}
@media screen and (max-width: 991px) {
  .clients {
    padding-top: 110px;
  }
}
@media screen and (max-width: 576px) {
  .clients {
    margin-bottom: 20vw;
  }
  .clients .clients__slide {
    width: 280px;
  }
  .clients .clients__slide .clients__name_bg {
    font-size: 36px;
    top: 272px;
  }
  .clients .clients__slide .clients__name {
    margin-bottom: 12px;
  }
  .clients .clients__slide .clients__link svg {
    width: 16px;
    height: 16px;
  }
  .clients .clients__tags {
    padding-top: 15px;
  }
}
.talk {
  margin-bottom: 160px;
}
.talk .talk__after,
.talk .talk__before {
  top: 0;
  left: 0;
  width: 100%;
}
.talk .talk__after img,
.talk .talk__before img {
  height: auto;
  position: absolute;
}
.talk .talk__before img {
  bottom: -80px;
  left: -130px;
}
.talk .talk__after {
  top: 100%;
}
.talk .talk__after img {
  top: -1px;
  left: -130px;
}
.talk .talk_container::after {
  content: "";
  display: block;
  width: 110px;
  height: 110px;
  position: absolute;
  top: -50px;
  left: 60%;
  background-color: var(--bg);
}
.talk .section__title {
  line-height: 1.4em;
}
.talk .section__title span {
  -webkit-text-stroke: 1px var(--dark);
  text-stroke: 1px var(--dark);
  color: transparent;
}

@media screen and (max-width: 1199px) {
  .talk .section__title br {
    display: none;
  }
  .talk .talk_container::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .talk {
    margin-bottom: 15vw;
  }
  .talk .section__title {
    font-size: 20px;
  }
  .talk .section__title span {
    font-size: 32px;
  }
  .talk .talk__before img {
    bottom: -1px;
    width: 100%;
    right: 0;
    left: auto;
  }
  .talk .talk__after img {
    width: 150%;
    right: auto;
    left: 0;
  }
}
.review {
  padding-top: 160px;
}
.review .review__video {
  height: 565px;
  position: relative;
  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;
  margin-bottom: 55px;
}
.review .review__video .play {
  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;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--dark);
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-shadow: inset 0 0px 0px var(--yellow_hover);
          box-shadow: inset 0 0px 0px var(--yellow_hover);
}
.review .review__video .play:before {
  content: "";
  display: block;
  border-top: 20px solid transparent;
  border-right: 0px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 25px solid var(--yellow);
  margin-left: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.review .review__video .play::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 0;
  border: 1px solid var(--dark);
  -webkit-animation: pulsPlay 3s ease-in-out infinite;
          animation: pulsPlay 3s ease-in-out infinite;
  pointer-events: none;
}
.review .review__video .play:hover {
  background-color: var(--yellow);
  -webkit-box-shadow: inset 0 2px 4px var(--yellow_hover);
          box-shadow: inset 0 2px 4px var(--yellow_hover);
}
.review .review__video .play:hover:before {
  border-left: 25px solid var(--white);
}
.review .review__video .play:active {
  background-color: var(--yellow_hover);
}
.review .review__video .play:active:before {
  border-left: 25px solid var(--white);
}
.review .review__inst {
  border: 1px solid var(--dark);
}
.review .review__inst icon svg {
  width: 32px;
  height: 28px;
}
.review .review__inst .inst__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.review .review__inst .inst__link svg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.review .review__inst .inst__link path {
  fill: var(--dark);
}
.review .review__inst .inst__link span {
  color: var(--dark);
  font-size: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  line-height: 1em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.review .review__inst .inst__link:hover path {
  fill: var(--yellow);
}
.review .review__inst .inst__link:hover span {
  color: var(--yellow);
}
.review .review__inst .inst__link:active path {
  fill: var(--yellow_hover);
}
.review .review__inst .inst__link:active span {
  color: var(--yellow_hover);
}
.review .review__inst .text__content h3 {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.review .review__inst .text__content p {
  margin-bottom: 1em;
  font-size: 20px;
}
.review .review__inst .text__content p:last-child {
  margin-bottom: 0;
}
.review .review__inst .inst__author .inst__thumbnail {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  overflow: hidden;
  margin-right: 12px;
}
.review .review__inst .inst__author .inst__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review .review__inst .inst__author .inst__name {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.review .review__inst .inst__author:hover .inst__name {
  color: var(--yellow);
}
.review .review__inst .inst__author:active .inst__name {
  color: var(--yellow_hover);
}

@media screen and (max-width: 1439px) {
  .review {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .review {
    padding-top: 90px;
  }
  .review .review__video {
    height: 465px;
  }
}
@media screen and (max-width: 991px) {
  .review .review__video {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .review {
    padding-top: 10vw;
  }
}
@media screen and (max-width: 576px) {
  .review .swiper-slide {
    width: 280px;
  }
  .review .review__video .play {
    width: 40px;
    height: 40px;
  }
  .review .review__video .play:before {
    border-top: 10px solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--yellow);
    margin-left: 4px;
  }
  .review .review__inst .inst__link span {
    font-size: 12px;
  }
  .review .review__inst .inst__link svg {
    width: 12px;
    height: 12px;
  }
  .review .review__inst .text__content h3 {
    font-size: 20px;
  }
  .review .review__inst .text__content p {
    font-size: 16px;
  }
  .review .review__inst .inst__author .inst__thumbnail {
    width: 35px;
    height: 35px;
  }
  .review .review__inst .inst__author .inst__name {
    font-size: 16px;
  }
}
.operate {
  padding-top: 70px;
  padding-bottom: 140px;
}
.operate .operate__before,
.operate .operate__after {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.operate .operate__before .container::after, .operate .operate__before .container:before {
  content: "";
  display: block;
  width: 83px;
  height: 83px;
  background-color: var(--dark);
  bottom: 0;
  left: 12px;
  position: absolute;
}
.operate .operate__before .container::after {
  width: 115px;
  height: 115px;
  top: 0;
  bottom: auto;
  left: 130px;
  background-color: var(--bg);
}
.operate .operate__before img {
  position: absolute;
  right: -130px;
  max-width: 100%;
  bottom: -90px;
}
.operate .operate__after {
  top: 100%;
}
.operate .operate__after img {
  position: absolute;
  right: -130px;
  max-width: 100%;
  top: -116px;
}
.operate .operate__wrap .container::after, .operate .operate__wrap .container::before {
  content: "";
  display: block;
  position: absolute;
  left: 130px;
  width: 90px;
  height: 90px;
  left: -130px;
  bottom: 30px;
  background-color: var(--bg);
  z-index: 2;
}
.operate .operate__wrap .container:after {
  width: 52px;
  height: 52px;
  background-color: var(--yellow);
  left: -110px;
  bottom: 48px;
}
.operate .section__title {
  margin-bottom: 110px;
}
.operate .operate__item {
  width: 20%;
  color: var(--white);
}
.operate .operate__item .operate__number {
  margin-bottom: 30px;
  font-size: 50px;
  font-weight: 700;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
  color: transparent;
  position: relative;
}
.operate .operate__item .operate__number::before {
  content: "";
  display: none;
  width: 18px;
  height: 18px;
  background-color: var(--yellow);
  position: absolute;
  left: 0;
  top: -9px;
}
.operate .operate__item .operate__name,
.operate .operate__item .operate__text {
  color: var(--white);
}
.operate .operate__item:last-child .operate___line {
  width: 100%;
}
.operate .operate__item .operate___line {
  position: relative;
  background-color: var(--grey);
  width: 130%;
  margin-bottom: 44px;
  height: 1px;
}
.operate .operate__item .operate___line::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: var(--yellow);
  position: absolute;
  left: 0;
  top: -9px;
}

@media screen and (max-width: 1439px) {
  .operate {
    padding-bottom: 120px;
  }
  .operate .operate__item .operate__name {
    font-size: 18px;
  }
}
@media screen and (max-width: 1199px) {
  .operate .operate__before .container::after {
    left: 50px;
  }
  .operate .operate__item {
    width: 33.3333333333%;
  }
  .operate .operate__item .operate__name {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .operate {
    padding-top: 100px;
  }
  .operate .operate__before .container::after,
  .operate .operate__before .container:before {
    display: none;
  }
  .operate {
    padding-bottom: 85px;
  }
  .operate .operate__item {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .operate .operate__before img {
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    bottom: -51px;
  }
  .operate .operate__wrap .container::after,
  .operate .operate__wrap .container::before {
    width: 40px;
    height: 40px;
    left: -40px;
    bottom: auto;
    top: 250px;
  }
  .operate .operate__wrap .container::after {
    left: -30px;
    bottom: auto;
    top: 260px;
    width: 20px;
    height: 20px;
  }
  .operate .operate__after:after {
    content: "";
    width: 77px;
    height: 70px;
    position: absolute;
    bottom: -1px;
    right: 0;
    background-color: var(--bg);
  }
}
@media screen and (max-width: 576px) {
  .operate .operate__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .operate .operate__item .operate___line {
    position: absolute;
    left: 9px;
    height: calc(130% + 25px);
    width: 1px;
    top: 8px;
  }
  .operate .operate__item .operate___line:before {
    top: 0;
    left: -9px;
  }
  .operate .operate__item:last-child .operate___line {
    width: 1px;
    height: 100%;
  }
  .operate .operate__item .operate__number {
    font-size: 32px;
    padding-left: 32px;
    margin-right: 26px;
  }
}
@media screen and (max-width: 400px) {
  .operate .operate__item .operate__number {
    font-size: 6.5vw;
  }
  .operate .operate__item .operate__name {
    font-size: 5vw;
  }
}
.partners {
  padding-top: 160px;
}
.partners .partners__swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.partners .partners__swiper .swiper-slide {
  width: auto;
  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;
  height: 136px;
}
.partners .partners__swiper img {
  width: auto;
  max-height: 100%;
  position: relative;
}

@media screen and (max-width: 1439px) {
  .partners {
    padding-top: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .partners {
    padding-top: 100px;
  }
}
@media screen and (max-width: 991px) {
  .partners .partners__swiper .swiper-slide {
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .partners {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .partners .section__title {
    text-align: left;
    margin-bottom: 25px;
  }
  .partners .partners__swiper .swiper-slide {
    height: 75px;
  }
}
.faq .faq__item {
  padding-top: 11px;
  padding-bottom: 11px;
  border-bottom: 1px solid #e7e7e7;
}
.faq .faq__item.open .faq__qwestion {
  color: var(--yellow);
}
.faq .faq__item.open .faq__qwestion .icon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq .faq__item.open .faq__qwestion .icon path {
  fill: var(--yellow);
}
.faq .faq__item .faq__qwestion {
  padding-right: 40px;
  position: relative;
  cursor: pointer;
}
.faq .faq__item .faq__qwestion .icon {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.faq .faq__item .faq__qwestion .icon svg {
  width: 20px;
  height: 20px;
}
.faq .faq__item .faq__answer .text__content {
  padding: 20px 0 20px 10px;
}

@media screen and (max-width: 1439px) {
  .faq {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .faq .faq__item .faq__qwestion {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .faq {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 576px) {
  .faq {
    padding-bottom: 60px;
  }
  .faq .faq__item .faq__qwestion {
    font-size: 16px;
  }
  .faq .faq__item .faq__qwestion .icon {
    width: 16px;
    height: 16px;
  }
  .faq .faq__item .faq__qwestion .icon svg {
    width: 16px;
    height: 16px;
  }
  .faq .faq__item {
    padding: 5px 0;
  }
  .faq .section__title {
    text-align: left;
    margin-bottom: 25px;
  }
}
.footer .footer__logo {
  display: block;
  width: 184px;
  margin-bottom: 50px;
}
.footer .footer__logo img {
  width: 100%;
  height: auto;
}
.footer .footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .footer__social a {
  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;
  width: 24px;
  height: 24px;
}
.footer .footer__social a:not(:last-child) {
  margin-right: 12px;
}
.footer .footer__social a svg {
  width: 24px;
  height: 24px;
}
.footer .footer__social a svg path {
  fill: var(--white);
}
.footer .footer__social a:hover svg path {
  fill: var(--yellow);
}
.footer .footer__social a:active svg path {
  fill: var(--yellow_hover);
}
.footer .footer_bottom {
  border-top: 1px solid var(--grey);
}
.footer a.footer__val:hover,
.footer .privacy:hover {
  color: var(--yellow);
}
.footer a.footer__val:active,
.footer .privacy:active {
  color: var(--yellow_hover);
}

@media screen and (max-width: 1199px) {
  .footer .footer__item p,
  .footer .footer__item a {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .footer .footer__logo {
    width: 100px;
    margin-bottom: 0;
  }
  .footer .footer__social a {
    width: 30px;
    height: 30px;
    margin-right: 30px;
  }
  .footer .footer__social a scg {
    width: 30px;
    height: 30px;
  }
  .footer .footer__info {
    font-size: 16px;
  }
  .footer .footer__item {
    width: 50%;
  }
  .footer .footer__item p, .footer .footer__item a {
    font-size: 24px;
  }
  .footer .footer__item .footer__name {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer__top {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 576px) {
  .footer .footer__logo {
    width: 100px;
  }
  .footer .footer__info {
    font-size: 10px;
  }
  .footer .footer__item {
    width: 100%;
  }
}
.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  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;
}
.popup.open {
  z-index: 9999999;
  pointer-events: all;
  opacity: 1;
}
.popup .popup__content {
  width: 95%;
  max-width: 580px;
  max-height: 95%;
  overflow-y: auto;
  background-color: var(--white);
  padding: 24px 24px 40px;
  border-radius: 12px;
  position: relative;
}
.popup .popup__content .popup__close {
  width: 60px;
  height: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: var(--blue_light) url(../img/close_menu.svg) no-repeat center 10px/28px;
  outline: none;
  position: relative;
  cursor: pointer;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-radius: 8px;
  margin-left: auto;
  text-transform: uppercase;
  line-height: 1em;
  padding-bottom: 10px;
}
.popup .popup__content .popup__close > * {
  pointer-events: none;
}
.popup .popup__content form {
  position: relative;
}

.wpcf7-response-output {
  font-size: 14px;
  margin: 0 !important;
  position: absolute;
  top: 100%;
}

html.with-fancybox {
  overflow: auto;
}

.iti {
  display: block;
}

.iti__flag-container {
  padding: 0;
  height: calc(100% - 2px);
  top: 1px;
  left: 1px;
}

.iti--allow-dropdown .iti__flag-container,
.iti--show-selected-dial-code .iti__flag-container {
  height: calc(100% - 2px);
  top: 1px;
  left: 1px;
}

.iti--show-selected-dial-code .iti__selected-flag {
  background-color: var(--light);
  border-radius: 8px 0 0 8px;
  padding-right: 0;
}

.iti--show-selected-dial-code.iti--show-flags .iti__selected-dial-code {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
}

.iti__arrow {
  border: 0;
  width: 10px;
  height: 5px;
  background: url(../img/iti_arrow.svg) no-repeat center;
}

@media screen and (max-width: 767px) {
  .iti--show-selected-dial-code.iti--show-flags .iti__selected-dial-code {
    font-size: 16px;
  }
}/*# sourceMappingURL=main.css.map */