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

:root {
  --app-height: 100%;
  --white: #ffffff;
  --biruze: #53eec0;
  --biruze_ui: #31c69a;
  --dark: #3a3c40;
  --btn: #252c39;
  --orange: #ff491f;
  --grey1: #f7f9fc;
  --grey2: #edeff2;
  --grey3: #e1e2e5;
  --grey4: #bbbdbf;
  --grey5: #8a8f99;
}

.ff_f {
  font-family: "Furore";
}

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

.swiper-container {
  overflow: hidden;
}

.xyz_start {
  opacity: 0;
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

section {
  position: relative;
}

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

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

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

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

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: "Inter", sans-serif;
}

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

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

.container {
  position: relative;
  max-width: 100%;
  padding: 0 6%;
  max-width: 2100px;
}

a.btn,
button.btn {
  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;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  width: 386px;
  height: 66px;
  background-color: var(--btn);
  border: 1px solid var(--btn);
  border-radius: 10px;
  font-family: "Furore";
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
a.btn::after,
button.btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(var(--biruze)), to(var(--biruze_ui)));
  background: linear-gradient(90deg, var(--biruze), var(--biruze_ui));
}
a.btn:hover,
button.btn:hover {
  background-color: transparent;
  border-color: var(--biruze_ui);
}

.lang_select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  position: relative;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
.lang_select .lang__block {
  position: absolute;
  width: 150px;
  top: 50%;
  z-index: -2;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  right: 0;
  border-radius: 10px;
  background-color: var(--white);
  -webkit-box-shadow: 0px 5px 15px 0px rgba(58, 60, 64, 0.2);
          box-shadow: 0px 5px 15px 0px rgba(58, 60, 64, 0.2);
  overflow: hidden;
}
.lang_select .lang__block.open {
  z-index: 5;
  opacity: 1;
  pointer-events: all;
  top: 100%;
}
.lang_select .lang__block .current-lang a {
  color: var(--biruze_ui);
}
.lang_select .lang__block a,
.lang_select .current__lang {
  font-size: 20px;
  color: var(--dark);
  letter-spacing: 0.4px;
}
.lang_select .lang__block a:hover,
.lang_select .current__lang:hover {
  color: var(--biruze_ui);
}
.lang_select .lang__block a {
  display: block;
  padding: 10px;
}
.lang_select .current__lang {
  padding: 8px 0;
}
.lang_select .current__lang:after {
  content: "";
  display: block;
  right: 0;
  top: 10px;
  width: 24px;
  height: 24px;
  background: url(../img/arrow_menu_down.svg) no-repeat center;
  pointer-events: none;
  margin-left: 5px;
  /* background: url(../img/icons/arrow_doun_input.svg) no-repeat center; */
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 2vw 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: var(--white);
  border-bottom: 1px solid var(--dark);
}
.header.header_fixed {
  padding: 15px 0;
}
.header .btn {
  width: 153px;
  height: 37px;
}

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

.nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__menu .nav__item {
  position: relative;
  margin-right: 40px;
}
.nav__menu .nav__item:last-child {
  margin-right: 0;
}
.nav__menu .nav__item a {
  font-size: 1.1vw;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6em;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--dark);
}
.nav__menu .nav__item a:hover {
  color: var(--biruze_ui);
}
.nav__menu .nav__item.current-menu-item > a {
  color: var(--biruze_ui);
}

.menu__burger {
  display: none;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu__burger span {
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 5px;
  background-color: var(--biruze_ui);
  margin-bottom: 3px;
  pointer-events: none;
}
.menu__burger span:last-child {
  margin-bottom: 0;
}

.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: 28px;
  height: 28px;
  margin-right: 12px;
}
.social a:last-child {
  margin-right: 0;
}

@media screen and (max-width: 1199px) {
  .nav__menu .nav__item {
    margin-right: 20px;
  }
  .nav__menu .nav__item a {
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 992px) {
  .header {
    padding: 12px 0;
    border-bottom: none;
  }
  .nav {
    position: fixed;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    padding: 12px;
    z-index: 999999;
    right: -450px;
    top: 0;
    opacity: 0;
    pointer-events: none;
    background: var(--white);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding-bottom: 100px;
    overflow-y: auto;
    padding-top: 0;
    margin: 0;
  }
  .nav.open_menu {
    right: 0;
    top: 0px;
    opacity: 1;
    pointer-events: all;
  }
  .nav .nav__row {
    width: 100%;
    margin-bottom: 30px;
    padding: 12px 0;
    position: relative;
  }
  .nav .nav__row .custom-logo-link {
    width: 100px;
  }
  .nav .menu__close {
    width: 36px;
    height: 36px;
    background: url(../img/close_menu.svg) no-repeat center;
    outline: none;
    /* margin-left: auto; */
    position: relative;
    background-color: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .nav .menu__close > * {
    pointer-events: none;
  }
  .nav .nav__menu {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 85px;
  }
  .menu__burger {
    display: block;
    cursor: pointer;
    background-color: transparent;
    border: none;
  }
  .nav .nav__item {
    margin-bottom: 10px;
    width: 100%;
    text-align: left;
    margin-right: 0;
  }
  .nav .nav__item a {
    width: 150px;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    padding: 10px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    color: var(--dark);
  }
  .nav .nav__item a:hover {
    color: var(--biruze_ui);
  }
  @-webkit-keyframes fromBottom {
    0% {
      opacity: 0;
      -webkit-transform: translateY(15px);
              transform: translateY(15px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes fromBottom {
    0% {
      opacity: 0;
      -webkit-transform: translateY(15px);
              transform: translateY(15px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  .header__contact {
    width: 180px;
    margin: 0 auto;
    padding-top: 80px;
  }
  .header__contact .footer__title {
    color: var(--white);
  }
  .header__contact .footer__menu li {
    margin-bottom: 8px;
  }
  .header__contact .footer__menu li a {
    color: var(--white);
    font-size: 14px;
    text-decoration: underline;
  }
  .header__contact .footer__menu li a:last-child {
    text-decoration: none;
  }
}
.pt_100 {
  padding-top: 5.1vw;
}

.pb_100 {
  padding-bottom: 5.1vw;
}

.pt_80 {
  padding-top: 4.1vw;
}

.pt_70 {
  padding-top: 3.8vw;
}

.section__title {
  font-size: 2.5vw;
  line-height: 1.25em;
  font-family: "Furore";
  font-weight: 400;
}

.title_1 {
  font-size: 2.5vw;
  line-height: 1.25em;
  font-family: "Furore";
  font-weight: 400;
}

.title_2 {
  font-size: 1.7vw;
  line-height: 1.25em;
  font-family: "Furore";
  font-weight: 400;
}

.title_3 {
  font-size: 1.3vw;
  line-height: 1.25em;
  font-family: "Furore";
  font-weight: 400;
}

.subtitle {
  font-size: 1.3vw;
  line-height: 1.25em;
  font-weight: 600;
}

.text_1 {
  font-size: 1.3vw;
  line-height: 1.25em;
}

.text_2 {
  font-size: 1.1vw;
  line-height: 1.3em;
}

.text_3 {
  font-size: 18px;
  line-height: 1.333em;
}

.text__content.text_1 {
  font-size: 24px;
  line-height: 1.25em;
}
.text__content.text_2 {
  font-size: 20px;
  line-height: 1.3em;
}
.text__content.text_3 {
  font-size: 18px;
  line-height: 1.333em;
}

.fz_32 {
  font-size: 1.8vw;
}

@media screen and (max-width: 1440px) {
  .text_1 {
    font-size: 1.3vw;
  }
  .subtitle {
    font-size: 1.5vw;
  }
  .container {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media screen and (max-width: 1199px) {
  .text_1 {
    font-size: 1.5vw;
  }
  .subtitle {
    font-size: 1.8vw;
  }
  .title_2 {
    font-size: 2vw;
  }
  .title_3 {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 991px) {
  .pt_100 {
    padding-top: 6vw;
  }
  .pb_100 {
    padding-bottom: 6vw;
  }
  .pt_80 {
    padding-top: 5vw;
  }
  .pt_70 {
    padding-top: 4vw;
  }
  .section__title {
    font-size: 3.7vw;
  }
  .fz_32 {
    font-size: 2.7vw;
  }
  .text_1 {
    font-size: 2.5vw;
  }
  .subtitle {
    font-size: 2.5vw;
  }
  .title_2 {
    font-size: 3.3vw;
  }
  .title_3 {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  .pt_100 {
    padding-top: 10vw;
  }
  .pb_100 {
    padding-bottom: 10vw;
  }
  .pt_80 {
    padding-top: 8vw;
  }
  .pt_70 {
    padding-top: 7vw;
  }
  .container {
    padding: 0 16px;
  }
  .container.pb_100 {
    padding-bottom: 10vw;
  }
  .section__title {
    font-size: 3.3vw;
  }
  .fz_32 {
    font-size: 2.7vw;
  }
  .text_1 {
    font-size: 3.5vw;
  }
  .subtitle {
    font-size: 3vw;
  }
  .title_2 {
    font-size: 4vw;
  }
}
@media screen and (max-width: 576px) {
  .pt_100 {
    padding-top: 15vw;
  }
  .pb_100 {
    padding-bottom: 15vw;
  }
  .pt_80 {
    padding-top: 13vw;
  }
  .pt_70 {
    padding-top: 11vw;
  }
  .section__title {
    font-size: 6.5vw;
  }
  .fz_32 {
    font-size: 4.3vw;
  }
  .text_1 {
    font-size: 5.5vw;
  }
  .subtitle {
    font-size: 4.8vw;
  }
  .container.pb_100 {
    padding-bottom: 15vw;
  }
  .title_2 {
    font-size: 6.7vw;
  }
  .title_3 {
    font-size: 5vw;
  }
}
.form__wrap {
  width: 100%;
}
.form__wrap .input__group {
  margin-bottom: 20px;
}
.form__wrap .input__group .order__input {
  display: block;
  width: 100%;
  height: 60px;
  border-radius: 10px;
  padding-left: 22px;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  color: var(--grey5);
  background-color: transparent;
  border: 1px solid var(--grey2);
}
.form__wrap .input__group .order__input.wpcf7-not-valid {
  border-color: var(--orange);
}
.form__wrap .input__group .order__input::-webkit-input-placeholder {
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: var(--grey5);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-moz-placeholder {
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: var(--grey5);
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:-ms-input-placeholder {
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: var(--grey5);
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-ms-input-placeholder {
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: var(--grey5);
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::placeholder {
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: var(--grey5);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:focus::-webkit-input-placeholder {
  color: var(--grey2);
}
.form__wrap .input__group .order__input:focus::-moz-placeholder {
  color: var(--grey2);
}
.form__wrap .input__group .order__input:focus:-ms-input-placeholder {
  color: var(--grey2);
}
.form__wrap .input__group .order__input:focus::-ms-input-placeholder {
  color: var(--grey2);
}
.form__wrap .input__group .order__input:focus::placeholder {
  color: var(--grey2);
}
.form__wrap .input__group textarea.order__input {
  padding-top: 15px;
}
.form__wrap .wpcf7-not-valid-tip {
  font-size: 18px;
  color: var(--orange);
}
.form__wrap .btn {
  margin-top: 70px;
}

.head__section {
  padding-top: 7.3vw;
  padding-bottom: 60px;
}
.head__section .offer {
  background-color: var(--grey1);
  border-radius: 20px;
  background-size: auto;
  background-position: -300px 50%;
  overflow: hidden;
}
.head__section .offer .offer__bg {
  position: absolute;
  left: -17%;
  bottom: -26%;
  pointer-events: none;
  width: 63%;
}
.head__section .offer.ws_padding .swiper__txt .swiper-slide {
  padding-top: 45px;
}
.head__section .offer .swiper__txt .swiper-slide {
  padding-left: 60px;
}
.head__section .offer h1,
.head__section .offer h2 {
  font-family: "Furore";
  font-size: calc(4vw - 6px);
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.3em;
  color: var(--biruze);
}
.head__section .offer p {
  width: 100%;
  max-width: 75%;
  letter-spacing: 0.05em;
  line-height: 1.25em;
  margin-bottom: 30px;
  font-size: calc(2vw - 6px);
}
.head__section .offer .btn {
  width: 50%;
  font-size: 1vw;
  height: auto;
  padding: 1vw 0;
}
.head__section .swiper_img {
  position: relative;
  height: 100%;
}
.head__section .swiper_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.head__section .swiper_pag {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 100%;
  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;
  z-index: 2;
}
.head__section .swiper_pag .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 0.6;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin: 0 5px;
  border-radius: 50%;
  background-color: var(--white);
}
.head__section .swiper_pag .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 14px;
  height: 14px;
}
.head__section .head__social {
  margin-top: 130px;
  padding-left: 60px;
  padding-bottom: 40px;
  margin-top: auto;
}
.head__section .head__social p {
  font-size: 1vw;
}
.head__section .head__social a {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--biruze_ui);
  -webkit-box-shadow: outset 0px 0px 8px 0px var(--biruze_ui), inset 0 0 0 0 var(--biruze_ui);
          box-shadow: outset 0px 0px 8px 0px var(--biruze_ui), inset 0 0 0 0 var(--biruze_ui);
}
.head__section .head__social a:hover {
  -webkit-box-shadow: 0px 0px 8px 0px var(--biruze_ui), inset 0 0 0 1px var(--biruze_ui);
          box-shadow: 0px 0px 8px 0px var(--biruze_ui), inset 0 0 0 1px var(--biruze_ui);
}

@media screen and (max-width: 1700px) {
  .head__section {
    padding-top: 7.8vw;
  }
}
@media screen and (max-width: 1440px) {
  .header {
    padding: 1.5vw;
  }
  .head__section .head__social {
    margin-top: 50px;
  }
  .head__section .head__social,
  .head__section .offer .swiper__txt .swiper-slide {
    padding-left: 40px;
  }
  .head__section .offer .btn {
    padding: 1.2vw 0;
  }
}
@media screen and (max-width: 1199px) {
  .header {
    padding: 1.1vw;
  }
  .head__section .head__social {
    margin-top: 50px;
  }
}
@media screen and (max-width: 991px) {
  .head__section {
    padding-top: 68px;
    padding-bottom: 40px;
  }
  .head__section .offer h1,
  .head__section .offer h2 {
    font-size: 5vw;
  }
  .head__section .offer p {
    font-size: 2vw;
  }
  .head__section .head__social {
    padding-bottom: 20px;
  }
  .head__section .head__social p {
    margin-bottom: 10px;
    font-size: 1.5vw;
  }
  .head__section .offer .btn {
    font-size: 14px;
    height: 50px;
    padding: 0;
    width: 225px;
  }
  .custom-logo-link {
    width: 100px;
  }
  .head__section .offer .swiper__txt {
    margin-bottom: 40px;
  }
  .head__section .offer .swiper__txt .swiper-slide {
    padding-top: 32px !important;
  }
  .head__section .offer.ws_padding .swiper__txt {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .head__section .offer h1,
  .head__section .offer h2 {
    font-size: 6vw;
  }
  .head__section .offer p {
    font-size: 3.5vw;
    max-width: 100%;
  }
  .head__section .offer .swiper__txt .swiper-slide {
    padding-left: 16px;
    padding-right: 16px;
  }
  .head__section .head__social {
    margin-top: 60px;
  }
  .head__section .head__social {
    padding-left: 16px;
  }
  .head__section .head__social p {
    font-size: 4vw;
  }
  .head__section .head__social p svg {
    width: 16px;
    height: 16px;
  }
  .head__section .head__social a {
    width: 40px;
    height: 40px;
  }
  .head__section .head__social a svg {
    width: 22px;
    height: 22px;
  }
}
@media screen and (max-width: 576px) {
  .head__section .offer h1,
  .head__section .offer h2 {
    font-size: 7vw;
  }
  .head__section .offer p {
    font-size: 4.5vw;
    max-width: 100%;
  }
  .head__section .head__social {
    padding-left: 16px;
  }
  .head__section .head__social p {
    font-size: 4vw;
  }
}
.text__section .big {
  font-size: 2.1vw;
}
.text__section p {
  line-height: 1.357em;
  font-size: 1.3vw;
}

.video .video__block img {
  width: 100%;
  border-radius: 10px;
}
.video .video__block a {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 87px;
  height: 63px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--biruze);
  -webkit-box-shadow: 0px 0px 0px 0px #3eb290;
          box-shadow: 0px 0px 0px 0px #3eb290;
}
.video .video__block a:hover {
  -webkit-box-shadow: 0px 0px 10px 0px #3eb290;
          box-shadow: 0px 0px 10px 0px #3eb290;
}

@media screen and (max-width: 1440px) {
  .text__section .big {
    font-size: 2.1vw;
  }
  .text__section p {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 991px) {
  .text__section .big {
    font-size: 3.1vw;
  }
  .text__section p {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  .text__section .big {
    font-size: 4.1vw;
  }
  .text__section p {
    font-size: 3vw;
  }
  .video .section__title {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 576px) {
  .text__section .big {
    font-size: 4.5vw;
  }
  .text__section p {
    font-size: 4vw;
  }
}
.where .swiper-slide {
  width: calc(20% - 20px);
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px 9px 27px;
  border: 3px solid var(--white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  height: auto;
}
.where .swiper-slide:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #3eb28f;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: none;
}
.where .swiper-slide .where__img {
  height: 200px;
  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: 0 auto 40px;
  position: relative;
}
.where .swiper-slide .where__img img {
  max-height: 100%;
}
.where .swiper-slide p {
  position: relative;
}
.where .where__arrows {
  padding-top: 20px;
}
.where .where__arrows .where__arrow {
  width: 40px;
  height: 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;
  border-radius: 50%;
  margin: 0 5px;
  border: 1px solid var(--biruze);
  cursor: pointer;
  background-color: transparent;
}
.where .where__swiper_block {
  padding: 0 100px;
}

@media screen and (max-width: 1440px) {
  .where .swiper-slide .where__img {
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 1199px) {
  .where .swiper-slide {
    width: initial;
  }
}
@media screen and (max-width: 991px) {
  .where .swiper-slide {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .where .swiper-slide .where__img {
    height: 160px;
  }
  .where .where__swiper_block {
    padding: 0 16px;
  }
}
@media screen and (max-width: 576px) {
  .where .where__swiper_block {
    padding: 0;
  }
  .where .swiper-slide p {
    font-size: 18px;
  }
}
.result .section__title {
  margin-bottom: 70px;
}
.result .result__item {
  width: 100%;
  background-color: var(--white);
  border-radius: 10px;
  border: 3px solid var(--grey3);
  padding: 1.6vw 1.8vw 1.9vw;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}
.result .result__item:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #3eb28f;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: none;
}
.result .result__item .text__content h3 {
  font-size: 32px;
  line-height: 1.25em;
  font-family: "Furore";
  margin-bottom: 19px;
  font-weight: 400;
}
.result .result__item .text__content h3 i,
.result .result__item .text__content h3 em {
  font-size: 20px;
  font-style: normal;
}
.result .result__item .text__content p {
  font-size: 1.1vw;
  line-height: 1.25em;
}
.result .result__item .text__content p a {
  color: var(--biruze_ui);
  text-decoration: underline;
}
.result .result__item .text__content p a:hover {
  color: var(--biruze);
}
.result .result__item .diagram {
  margin-top: auto;
  height: 17.5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.result .result__item .diagram .diagram__item {
  width: 6.6vw;
  max-width: 154px;
  border-radius: 10px;
  background-color: var(--biruze);
  margin-top: auto;
  padding-bottom: 10px;
  position: relative;
}
.result .result__item .diagram .diagram__item p {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  color: var(--white);
}

@media screen and (max-width: 1199px) {
  .result .section__title {
    margin-bottom: 50px;
  }
  .result .result__item .text__content h3 {
    font-size: 3.5vw;
  }
  .result .result__item .text__content p {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 991px) {
  .result .result__item .diagram {
    height: 180px;
  }
  .result .result__item .text__content p {
    font-size: 2vw;
  }
  .result .result__item .diagram .diagram__item {
    width: 60px;
  }
  .result {
    padding-bottom: calc(6vw - 1.5rem);
  }
}
@media screen and (max-width: 767px) {
  .result .result__item .text__content p {
    font-size: 2.5vw;
  }
  .result {
    padding-bottom: calc(10vw - 1.5rem);
  }
}
@media screen and (max-width: 576px) {
  .result {
    padding-bottom: calc(15vw - 1.5rem);
  }
  .result .section__title {
    margin-bottom: 32px;
  }
  .result .result__item {
    padding: 16px 16px 10px;
  }
  .result .result__item .text__content h3 {
    font-size: 4.5vw;
    margin-bottom: 0.5em;
  }
  .result .result__item .text__content h3 i {
    font-size: 3.5vw;
  }
  .result .result__item .text__content p {
    font-size: 12px;
  }
  .result .result__item .diagram {
    height: 130px;
  }
  .result .result__item .diagram .diagram__item {
    width: 48px;
    border-radius: 5px;
    padding-bottom: 5px;
  }
  .result .result__item .diagram .diagram__item p {
    font-size: 3.2vw;
  }
}
.positiv .positiv__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  border: none;
  margin-bottom: 40px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: var(--dark);
  padding-left: 32px;
}
.positiv .positiv__btn:hover, .positiv .positiv__btn.active {
  color: var(--biruze);
}
.positiv .positiv__btn:hover::before, .positiv .positiv__btn.active::before {
  opacity: 0;
}
.positiv .positiv__btn:hover:after, .positiv .positiv__btn.active:after {
  opacity: 1;
}
.positiv .positiv__btn:last-child {
  margin-bottom: 0;
}
.positiv .positiv__btn::after, .positiv .positiv__btn::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: url(../img/arrow_menu_down.svg) no-repeat center;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: absolute;
  left: 0;
  top: calc(50% - 12px);
}
.positiv .positiv__btn:after {
  opacity: 0;
  background: url(../img/arrow_menu_down_green.svg) no-repeat center;
}
.positiv .positiv__list .img__item {
  display: none;
}
.positiv .img__item {
  width: 80%;
  position: absolute;
  right: 12px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 2;
  height: 100%;
  border: 1px solid var(--biruze_ui);
}
.positiv .img__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.positiv .img__item.active {
  z-index: 5;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media screen and (max-width: 1440px) {
  .positiv .positiv__btn {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .positiv .positiv__btn {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .positiv .positiv__btn {
    font-size: 2vw;
  }
  .positiv .img__item {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .positiv .section__title {
    text-align: center;
  }
  .positiv .positiv__btn {
    font-size: 18px;
  }
  .positiv .img__list {
    display: none;
  }
  .positiv .positiv__list .img__item {
    position: static;
    -webkit-transform: none;
            transform: none;
    display: block;
    width: 100%;
    max-width: 345px;
    height: 0;
  }
  .positiv .positiv__list .img__item.active {
    -webkit-transform: none;
            transform: none;
    margin-bottom: 16px;
  }
  .positiv .positiv__list .img__item img {
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: inherit;
       object-fit: inherit;
  }
  .result .row {
    margin: 0 -4px;
  }
  .result .row .col-lg-3 {
    padding: 0 4px;
  }
}
.reability .reability__item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 36px;
}
.reability .reability__item:last-child {
  margin-bottom: 0;
}
.reability .reability__item .reability__icon {
  width: 60px;
  height: 60px;
  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-right: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.reability .reability__item .reability__icon img {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .reability .reability__item {
    padding: 20px 10px;
    margin-bottom: 16px;
  }
  .reability .reability__item .reability__icon {
    width: 40px;
    height: 40px;
    margin-right: 16px;
  }
  .reability .reability__item .text_1 {
    font-size: 14px;
  }
}
.describe .btn {
  height: auto;
  padding: 0.45vw 0;
  background-color: transparent;
  color: var(--dark);
  width: 50%;
  border-color: transparent;
  font-size: 1.5vw;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}
.describe .btn:hover, .describe .btn.active {
  background-color: var(--btn);
  color: var(--white);
}
.describe .btn::after {
  display: none;
}
.describe .describe__block {
  position: absolute;
  left: 0;
  top: 60px;
  width: 100%;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.describe .describe__block.active {
  pointer-events: all;
  opacity: 1;
  z-index: 2;
  position: static;
}
.describe .describe__img img {
  max-width: 100%;
  border-radius: 10px;
}
.describe .row_describe .text__content {
  width: 100%;
  max-width: 637px;
}
.describe .row_describe .text__content p,
.describe .row_describe .text__content li {
  font-size: 1.3vw;
  line-height: 1.25em;
  font-weight: 600;
  margin-bottom: 1em;
}
.describe .row_describe .text__content p:last-child,
.describe .row_describe .text__content li:last-child {
  margin-bottom: 0;
}
.describe .row_describe img {
  display: block;
  max-width: 100%;
  max-width: 410px;
}
.describe .faq__qwestion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.describe .faq__qwestion svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 12px;
}
.describe .faq__qwestion .number {
  padding-right: 30px;
}
.describe .faq__item.open {
  padding-bottom: 20px;
}
.describe .faq__item.open .faq__qwestion svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.describe .faq__answer {
  padding-left: 48px;
}
.describe .faq__answer p,
.describe .faq__answer li {
  font-size: 18px;
  margin-bottom: 10px;
}
.describe .faq__answer p:last-child,
.describe .faq__answer li:last-child {
  margin-bottom: 0;
}
.describe .faq__answer li {
  position: relative;
  padding-left: 30px;
}
.describe .faq__answer li:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 8px;
  border-radius: 50%;
  background-color: var(--biruze);
}
.describe [data-accordion=title] {
  cursor: pointer;
}

@media screen and (max-width: 1440px) {
  .describe .btn {
    padding: 1vw 0;
  }
  .describe .row_describe .text__content p,
  .describe .row_describe .text__content li {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 1199px) {
  .describe .describe__wrap,
  .describe .describe__type {
    padding-top: 32px;
  }
  .describe .row_describe .text__content p,
  .describe .row_describe .text__content li {
    font-size: 1.8vw;
  }
  .describe .row_describe img {
    display: block;
    max-width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .describe .btn {
    font-size: 2vw;
  }
  .describe .faq__qwestion .number {
    padding-right: 10px;
  }
  .describe .faq__answer {
    padding-left: 27px;
  }
  .describe__block .row {
    margin-bottom: 15px;
  }
  .describe .row_describe .text__content p,
  .describe .row_describe .text__content li {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  .describe .btn {
    padding: 0;
    height: 60px;
    font-size: 16px;
    padding: 0 10px;
  }
  .describe .subtitle {
    font-size: 18px;
  }
  .describe .faq__answer p,
  .describe .faq__answer li {
    font-size: 18px;
  }
  .describe .row_describe .text__content p,
  .describe .row_describe .text__content li {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .describe .btn {
    padding: 0;
    font-size: 12px;
  }
  .describe .describe__img {
    height: 182px;
  }
  .describe .describe__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .describe .row_describe .text__content p,
  .describe .row_describe .text__content li {
    font-size: 16px;
  }
}
.faq {
  overflow: hidden;
}
.faq .faq_bg {
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq__item {
  padding: 1vw 0;
  background-color: var(--grey_EE);
  border-bottom: 1px solid var(--grey2);
}
.faq .faq__item:last-child {
  border-bottom: none;
}
.faq .faq__item.open .faq__qwestion svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq .faq__item .faq__qwestion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  cursor: pointer;
}
.faq .faq__item .faq__qwestion svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: none;
}
.faq .faq__item .faq__answer p:last-child {
  margin-bottom: 0;
}
.faq .faq__img {
  position: absolute;
  left: 6%;
  height: auto;
  top: 110px;
  width: 23vw;
}

@media screen and (max-width: 991px) {
  .faq .faq__img {
    display: none;
  }
  .faq .faq__item {
    padding: 16px 0;
  }
}
@media screen and (max-width: 767px) {
  .faq .faq__item .faq__qwestion svg {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
}
@media screen and (max-width: 576px) {
  .faq .faq__item .faq__answer p,
  .faq .faq__item .faq__qwestion {
    font-size: 4.3vw;
  }
}
.text_section2 .big {
  font-size: 2.1vw;
}

.callback .callback__contact {
  max-width: 270px;
  width: 100%;
  margin-right: auto;
}
.callback .contact__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2vw;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.5em;
}
.callback .contact__list a:hover {
  color: var(--biruze_ui);
}
.callback .contact__list a svg {
  width: 32px;
  height: 32px;
  margin-right: 20px;
}
.callback .btn {
  width: 50%;
  font-size: 1vw;
  height: auto;
  padding: 1vw 0;
  max-width: 386px;
  padding: 0;
  height: 66px;
}
.callback .btn:hover {
  border: 1px solid var(--biruze);
}

@media screen and (max-width: 1600px) {
  .callback .callback__contact {
    max-width: 235px;
  }
}
@media screen and (max-width: 1600px) {
  .callback .callback__contact {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
@media screen and (max-width: 1440px) {
  .text_section2 .big {
    font-size: 2.1vw;
  }
  .callback .btn {
    padding: 1.5vw 0;
  }
  .callback .contact__list a svg {
    margin-right: 10px;
  }
}
@media screen and (max-width: 1199px) {
  .callback .btn {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 991px) {
  .text_section2 .big {
    font-size: 3.1vw;
  }
  .callback .btn {
    margin-top: 25px;
    font-size: 14px;
    height: 50px;
    padding: 0;
    width: 225px;
    margin-bottom: 40px;
  }
  .callback .form__wrap .input__group .order__input {
    height: 54px;
    font-size: 16px;
  }
  .callback .form__wrap .input__group textarea.order__input {
    padding-top: 15px;
  }
  .callback .callback__contact {
    margin-right: auto;
  }
  .callback .contact__list a {
    font-size: 2vw;
  }
  .contact .contact__title {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .text_section2 .big {
    font-size: 4.1vw;
  }
  .callback .contact__list a {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 576px) {
  .text_section2 .text_1 {
    font-size: 4.5vw;
  }
  .text_section2 .big {
    font-size: 5vw;
  }
  .callback .contact__title {
    margin-bottom: 16px;
  }
  .callback .btn {
    font-size: 14px;
    height: 58px;
    padding: 0;
    width: 225px;
  }
  .callback .title_2,
  .callback .text_1 {
    text-align: center;
  }
  .callback .title_2 {
    margin-bottom: 10px;
    font-size: 6.5vw;
  }
  .callback .title_2.title_secondary {
    font-size: 5vw;
  }
  .callback .text_1 {
    font-size: 5vw;
  }
  .callback .text_1.subtitle_main {
    margin-bottom: 40px;
  }
  .callback .text_1.subtitle_secondary {
    font-size: 4.5vw;
    margin-bottom: 24px;
  }
  .callback .contact__list {
    margin-bottom: 24px;
  }
  .callback .contact__list a {
    font-size: 5vw;
  }
  .callback .callback__contact_social .contact__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .callback .callback__contact_social .contact__list a {
    margin-right: 12px;
    font-size: 0;
    border: 1px solid var(--biruze_ui);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    -webkit-box-shadow: 0px 0px 0px 0px var(--biruze_ui), inset 0 0 0 0px var(--biruze_ui);
            box-shadow: 0px 0px 0px 0px var(--biruze_ui), inset 0 0 0 0px var(--biruze_ui);
  }
  .callback .callback__contact_social .contact__list a:hover {
    -webkit-box-shadow: 0px 0px 8px 0px var(--biruze_ui), inset 0 0 0 1px var(--biruze_ui);
            box-shadow: 0px 0px 8px 0px var(--biruze_ui), inset 0 0 0 1px var(--biruze_ui);
  }
  .callback .callback__contact_social .contact__list a svg {
    margin: 0;
    width: 24px;
    height: 24px;
  }
}
.footer {
  background-color: var(--grey1);
  border-top: 2px solid var(--dark);
}
.footer .footer__top {
  padding-bottom: 85px;
}
.footer .footer__logo {
  display: block;
  width: 15vw;
}
.footer .footer__logo img {
  width: 100%;
  height: auto;
}
.footer .footer__item {
  margin-left: 100px;
  width: 100%;
  max-width: 200px;
}
.footer .footer__menu li {
  margin-bottom: 5px;
}
.footer .footer__menu li a {
  color: var(--dark);
  font-size: 18px;
  line-height: 1.44em;
}
.footer .footer__menu li a:hover {
  color: var(--biruze_ui);
}
.footer .footer__text {
  color: var(--grey5);
}
.footer .line {
  width: 1px;
  height: 20px;
  background-color: var(--grey5);
  margin: 0 30px;
}
.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;
  margin-left: 20px;
  width: 32px;
  height: 32px;
}
.footer .footer__social a:first-child {
  margin-left: 0;
}
.footer .footer__social a svg {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1440px) {
  .footer .footer__top {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .footer .footer__top {
    padding-bottom: 50px;
  }
  .footer .footer__logo {
    width: 220px;
  }
}
@media screen and (max-width: 991px) {
  .footer {
    border-top-width: 1px;
  }
  .footer .footer__top {
    padding-bottom: 40px;
  }
  .footer .footer__logo {
    width: 200px;
    margin-bottom: 34px;
  }
  .footer .footer__item {
    margin-left: 0;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer__text {
    font-size: 10px;
  }
  .footer .footer__social a {
    margin-left: 12px;
  }
  .footer .footer__logo {
    width: 150px;
  }
  .footer .footer__top {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .footer .footer__logo {
    width: 100px;
  }
  .footer .footer__item {
    margin-bottom: 19px;
    width: 100%;
    max-width: 100%;
  }
  .footer .footer__menu {
    height: 0;
    margin-bottom: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .footer .footer__title {
    position: relative;
    margin-bottom: 0;
    cursor: pointer;
  }
  .footer .footer__title.active {
    margin-bottom: 10px;
  }
  .footer .footer__title:after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    top: 0;
    background: url(../img/plus.svg) no-repeat center;
  }
  .footer .line {
    margin: 0 16px;
  }
  .adv_logo {
    width: 74px;
    display: block;
  }
  .adv_logo img {
    width: 100%;
  }
}
.popup {
  position: fixed;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.popup.open {
  z-index: 999999;
  opacity: 1;
  pointer-events: all;
}
.popup.open .popup__content {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.popup .popup__content {
  background-color: var(--white);
  width: 96%;
  max-width: 560px;
  padding: 82px 70px;
  position: relative;
  border-radius: 20px;
  -webkit-box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.popup .popup__content .close_popup {
  background-color: transparent;
  border: none;
  width: 30px;
  height: 30px;
  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;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.popup .popup__content .close_popup * {
  pointer-events: none;
}
.popup .popup__content .form__wrap .btn {
  margin-top: 0;
  width: 100%;
}
.popup .popup__content .form__wrap .btn span {
  position: relative;
  z-index: 2;
}
.popup .popup__content .form__wrap .btn:after {
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.popup .popup__content .form__wrap .btn:hover:after {
  opacity: 1;
}
.popup.popup_success .popup__content {
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.popup.popup_success .popup__content h2 {
  font-family: "Furore";
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 20px;
  width: 100%;
}
.popup.popup_success .popup__content p {
  font-family: "Inter";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  width: 100%;
}

@media screen and (max-width: 576px) {
  .popup.open .popup__content {
    padding: 60px 25px;
  }
}
.wpcf7 form {
  position: relative;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  position: absolute;
  top: 100%;
  margin-top: 0;
  left: 0;
  font-size: 14px;
  width: 100%;
  margin: 0;
}

.form__wrap .wpcf7-not-valid-tip {
  font-size: 14px;
  position: absolute;
  top: 100%;
  margin-top: 0;
  left: 0;
  width: 100%;
}/*# sourceMappingURL=main.css.map */