@charset "UTF-8";
html { scroll-behavior: smooth; }
:root {
  --color-white: #fff;
  --color-black: #000;
  --color-red: #a00b20;
  --color-green: #2cb742;
  --color-yellow: #fca95d;
  --color-gray: #e9e9e9;
  --color-blue: #005bff;
  --color-violet: #9a21f4;
  --transition-normal: all 0.3s ease 0s;
}

/*Обнуление*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  min-width: 360px;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  cursor: pointer;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

ol,
ul {
  padding-left: 19px;
}

/*Обнуление*/

@font-face {
  font-family: "Commissioner";
  src: url("../fonts/Commissioner-Bold.woff2") format("woff2"), url("../fonts/Commissioner-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Commissioner";
  src: url("../fonts/Commissioner-ExtraBold.woff2") format("woff2"), url("../fonts/Commissioner-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Commissioner";
  src: url("../fonts/Commissioner-ExtraLight.woff2") format("woff2"), url("../fonts/Commissioner-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Commissioner";
  src: url("../fonts/Commissioner-Medium.woff2") format("woff2"), url("../fonts/Commissioner-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Commissioner";
  src: url("../fonts/Commissioner-Light.woff2") format("woff2"), url("../fonts/Commissioner-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Commissioner";
  src: url("../fonts/Commissioner-Regular.woff2") format("woff2"), url("../fonts/Commissioner-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Commissioner";
  src: url("../fonts/Commissioner-SemiBold.woff2") format("woff2"), url("../fonts/Commissioner-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body {
  color: var(--color-black);
  font-size: 16px;
  line-height: normal;
  font-family: "Commissioner", sans-serif;
  font-weight: 400;
  background-color: var(--color-white);
}

body.lock {
  overflow: hidden;
}

.container {
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin: 0 auto;
  max-width: 1170px;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: clip;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* плавное изменение прозрачности  placeholder-а при фокусе */

input::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-black);
}

input::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-black);
}

input:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-black);
}

input:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-black);
}

input:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-black);
}

input:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-black);
}

input:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-black);
}

input:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-black);
}

textarea::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-black);
}

textarea::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-black);
}

textarea:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-black);
}

textarea:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-black);
}

textarea:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-black);
}

textarea:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-black);
}

textarea:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-black);
}

textarea:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-black);
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-top: 40px;
}

h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 101%;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border-radius: 10px;
  height: 40px;
  padding: 5px 15px 5px;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  line-height: 176%;
  text-transform: uppercase;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  cursor: pointer;
}

.btn.btn-default {
  background: -webkit-gradient(linear, left top, left bottom, from(#9a21f4), to(#ff55d8));
  background: linear-gradient(180deg, #9a21f4 0%, #ff55d8 100%);
  color: var(--color-white);
}

.btn.btn-outline-default {
  border: 1px solid #9a21f4;
  background: -webkit-gradient(linear, left top, left bottom, from(#9a21f4), to(#ff55d8));
  background: linear-gradient(180deg, #9a21f4 0%, #ff55d8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn.btn-outline-default:hover {
  background: #9a21f4;
  color: var(--color-white);
  background-clip: unset;
  -webkit-text-fill-color: #fff;
}

.header {
  background: -webkit-gradient(linear, left top, left bottom, from(#9a21f4), to(#ff55d8));
  background: linear-gradient(180deg, #9a21f4 0%, #ff55d8 100%);
  padding: 17.5px 0;
}

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -15px;
}

.header__left {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.header__center {
  padding: 0 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.header__menu-icon {
  display: none;
}

.header__right {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  z-index: 12;
}

.header__location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
}

.header__location-text {
  border-radius: 15px;
  background: var(--color-white);
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3px;
     -moz-column-gap: 3px;
          column-gap: 3px;
  padding: 10px 25px;
}

.header__location-text svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
}

.header__location-text span {
  color: var(--color-black);
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.header__location-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 30px;
  max-width: 100%;
  height: 30px;
  color: var(--color-blue);
}

.header__location-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.icon-menu {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 35px;
  max-width: 100%;
  height: 35px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--color-white);
  border-radius: 8px;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.icon-menu.open span {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.icon-menu.open span:first-child {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 6px;
}

.icon-menu.open span:last-child {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: 6px;
}

.icon-menu__body {
  position: relative;
  width: 17px;
  height: 14px;
}

.icon-menu__body span {
  position: absolute;
  top: 6px;
  width: 100%;
  height: 2px;
  left: 0;
  background: #fff;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  border-radius: 2px;
}

.icon-menu__body span:first-child {
  top: 0;
}

.icon-menu__body span:last-child {
  top: auto;
  bottom: 0;
}

.logo {
  display: inline-block;
  width: 163px;
}

.logo img {
  max-width: 100%;
}

.menu__list {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.menu__link {
  color: var(--color-white);
  font-size: 12px;
  line-height: 176%;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.footer {
  padding-top: 30px;
  padding-bottom: 50px;
  background: #f5f5f7;
}

.footer__top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -10px;
}

.footer__top-col-1 {
  padding: 0 10px;
  line-height: 1;
}

.footer__top-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: var(--color-black);
  font-size: 12px;
  font-weight: 200;
  line-height: 170%;
}

.footer__top-link:hover span {
  border-color: transparent;
}

.footer__top-link span {
  border-bottom: 1px solid var(--color-black);
}

.footer__top-link svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.footer__top-col-2 {
  padding: 0 10px;
  line-height: 1;
}

.footer__top-col-3 {
  padding: 0 10px;
  line-height: 1;
}

.footer__top-btn {
  color: var(--color-black);
  font-size: 12px;
  font-weight: 200;
  line-height: 140%;
  border-bottom: 1px solid var(--color-black);
}

.footer__top-btn:hover {
  border-color: transparent;
}

.footer__top-col-4 {
  padding: 0 10px;
  line-height: 1;
}

.footer__top-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.footer__center {
  margin: 31px 0;
  padding-top: 13px;
  padding-bottom: 13px;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
}

.footer__center-btn {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 12px;
}

.footer__center-text {
  color: var(--color-black);
  font-size: 12px;
  font-weight: 300;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: center;
}

.footer__bottom-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -25px;
}

.footer__bottom-left {
  padding: 0 25px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 45%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__bottom-text {
  color: var(--color-black);
  font-size: 10px;
  font-weight: 300;
  line-height: 120%;
}

.footer__bottom-text strong {
  font-weight: 600;
}

.footer__bottom-text p:not(:last-child) {
  margin-bottom: 14px;
}

.footer__bottom-icons {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 35px;
     -moz-column-gap: 35px;
          column-gap: 35px;
  row-gap: 20px;
}

.footer__bottom-icon img {
  max-width: 100%;
}

.footer__bottom-links {
  margin-top: auto;
  margin-top: 20px;
}

.footer__bottom-links li {
  line-height: 1;
  color: var(--color-black);
}

.footer__bottom-links li a {
  color: var(--color-black);
  font-size: 10px;
  font-weight: 700;
  line-height: 140%;
  text-decoration: underline;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.footer__bottom-links li a:hover {
  text-decoration: none;
}

.footer__bottom-right {
  padding: 0 25px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 55%;
  max-width: 100%;
}

.main-popup {
  display: none;
}

.main-popup.fancybox__content {
  width: 100%;
  max-width: 800px;
  border-radius: 30px;
  padding: 50px 55px;
  color: var(--color-black);
  font-size: 12px;
  font-weight: 400;
  line-height: 220%;
}

.main-popup.fancybox__content .f-button.is-close-btn {
  top: 24px;
  right: 24px;
  color: var(--color-black);
}

.call-back {
  display: none;
}

.call-back.fancybox__content {
  width: 100%;
  max-width: 375px;
  border-radius: 25px;
  padding: 18px 36px 26px;
}

.call-back.fancybox__content .f-button.is-close-btn {
  top: 14px;
  right: 14px;
  color: var(--color-black);
}

.call-back__title {
  color: var(--color-black);
  font-size: 20px;
  font-weight: 600;
  line-height: 176%;
  margin-bottom: 24px;
  text-align: center;
}

.call-back__check {
  margin-top: 14px;
  cursor: pointer;
  position: relative;
}

.call-back__check input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1px;
  height: 1px;
  position: absolute;
  top: 7px;
  left: 7px;
}

.call-back__check input:checked + span:after {
  opacity: 1;
}

.call-back__check span {
  color: var(--color-black);
  font-size: 8px;
  font-weight: 400;
  line-height: 120%;
  position: relative;
  display: block;
  padding-left: 20px;
}

.call-back__check span:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #ebebeb;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: -1px;
}

.call-back__check span:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--color-black);
  position: absolute;
  top: 3px;
  left: 4px;
  z-index: 2;
  opacity: 0;
}

.call-back__check span a {
  color: inherit;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  text-decoration: underline;
}

.call-back__check span a:hover {
  text-decoration: none;
}

.call-back__bottom-text {
  margin-top: 8px;
  padding-top: 3px;
  position: relative;
  padding-left: 20px;
  color: var(--color-black);
  font-size: 8px;
  font-weight: 400;
  line-height: 120%;
}

.call-back__bottom-text:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: url("../img/form-icon.png") center/16px 16px no-repeat;
}

.call-back__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

.call-back__btn .btn {
  padding: 5px 20px;
}

.form-group {
  position: relative;
}

.form-group:not(:last-child) {
  margin-bottom: 10px;
}

.form-group__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 30px;
  max-width: 100%;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-group__icon img,
.form-group__icon svg {
  max-width: 100%;
  max-height: 100%;
}

.form-fontrol {
  border-radius: 100px;
  background: #f5f5f5;
  width: 100%;
  height: 40px;
  padding: 5px 15px 5px 46px;
  color: var(--color-black);
  font-size: 12px;
  font-weight: 400;
  line-height: 176%;
}

textarea.form-fontrol {
  border-radius: 15px;
  text-align: center;
  height: 100px;
  resize: none;
  padding: 5px 15px;
}

.offer-block {
  margin-top: 52px;
  margin-bottom: 52px;
  border-radius: 25px;
  background: -webkit-gradient(linear, left top, right top, from(#874da2), to(#c43a30));
  background: linear-gradient(90deg, #874da2 0%, #c43a30 100%);
  padding: 25px 30px 25px 35px;
  overflow: hidden;
}

.offer-block:first-child {
  margin-top: 0;
}

.offer-block:last-child {
  margin-bottom: 0;
}

.offer-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.offer-block__left {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 445px;
  padding: 113px 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 3;
}

.offer-block__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 113%;
  color: var(--color-white);
}

.offer-block__subtitle {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 500;
  line-height: 113%;
  margin-top: 15px;
}

.offer-block__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.offer-block__box {
  position: relative;
}

.offer-block__bg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: calc(100% - 120px);
  height: calc(100% + 50px);
}

.offer-block__bg img {
  max-height: 100%;
}

.offer-block__block {
  position: relative;
  z-index: 3;
  width: 375px;
  padding: 25px 36px 5px 36px;
  border-radius: 22px;
  background: var(--color-white);
}

.offer-block__block > span {
  height: 390px;
  display: block;
  text-align: center;
  color: var(--color-black);
}

.how-work {
  margin-top: 52px;
  margin-bottom: 52px;
}

.how-work:first-child {
  margin-top: 0;
}

.how-work:first-child {
  margin-bottom: 0;
}

.how-work__title {
  text-align: center;
  margin-bottom: 30px;
}

.how-work__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -7.5px;
}

.how-work__col {
  padding: 7.5px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
}

.how-work__item {
  padding: 16px 24px 16px;
  border-radius: 16px;
  background: #f2f2f2;
  height: 100%;
}

.how-work__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.how-work__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.how-work__icon img,
.how-work__icon svg {
  width: 24px;
  height: 24px;
}

.how-work__heading {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  background: -webkit-gradient(linear, left top, left bottom, from(#9a21f4), to(#ff55d8));
  background: linear-gradient(180deg, #9a21f4 0%, #ff55d8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.how-work__text {
  color: var(--color-black);
  font-size: 14px;
  font-weight: 300;
  line-height: 105%;
  margin-top: 8px;
}

.requirements {
  margin-top: 52px;
  margin-bottom: 52px;
}

.requirements:first-child {
  margin-top: 0;
}

.requirements:last-child {
  margin-bottom: 0;
}

.requirements__title {
  text-align: center;
  margin-bottom: 35px;
}

.requirements__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -9px;
}

.requirements__col {
  padding: 9px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.requirements__col:nth-child(2),
.requirements__col:nth-child(3) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.requirements__item {
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#9a21f4), to(#ff55d8));
  background: linear-gradient(180deg, #9a21f4 0%, #ff55d8 100%);
  padding: 2px;
  height: 100%;
}

.requirements__body {
  background: var(--color-white);
  border-radius: 18px;
  padding: 18px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  height: 100%;
}

.requirements__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 30px;
  max-width: 100%;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.requirements__icon img,
.requirements__icon svg {
  max-width: 100%;
  max-height: 100%;
}

.requirements__heading {
  color: var(--color-black);
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
}

.our-advantages {
  margin-top: 53px;
  margin-bottom: 58px;
  border-radius: 25px;
  background: -webkit-gradient(linear, left top, right top, from(#e56b31), to(#be368f));
  background: linear-gradient(90deg, #e56b31 0%, #be368f 100%);
  padding: 34px 37px 53px;
}

.our-advantages:first-child {
  margin-top: 0;
}

.our-advantages:last-child {
  margin-bottom: 0;
}

.our-advantages__title {
  color: var(--color-white);
  margin-bottom: 44px;
}

.our-advantages__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}

.our-advantages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.our-advantages__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 30px;
  max-width: 100%;
  height: 30px;
}

.our-advantages__icon img,
.our-advantages__icon svg {
  max-width: 100%;
  max-height: 100%;
}

.our-advantages__heading {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 800;
  line-height: 110%;
}

.our-advantages__text {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  line-height: 110%;
}

.our-tariffs {
  margin-top: 58px;
  margin-bottom: 75px;
}

.our-tariffs:first-child {
  margin-top: 0;
}

.our-tariffs:last-child {
  margin-bottom: 0;
}

.our-tariffs__title {
  text-align: center;
  margin-bottom: 32px;
}

.our-tariffs__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
}

.our-tariffs__col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 280px;
  max-width: 100%;
}

.our-tariffs__item {
  border-radius: 20px 20px 12px 12px;
  background: #f5f5f5;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.our-tariffs__top {
  padding: 20px 30px 40px;
}

.our-tariffs__heading {
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 34px;
  padding: 5px 22px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border-radius: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(#9a21f4), to(#ff55d8));
  background: linear-gradient(180deg, #9a21f4 0%, #ff55d8 100%);
  height: 30px;
}

.our-tariffs__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 17px;
     -moz-column-gap: 17px;
          column-gap: 17px;
}

.our-tariffs__box:not(:last-child) {
  margin-bottom: 30px;
}

.our-tariffs__box-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.our-tariffs__box-icon svg {
  width: 55px;
  height: 30px;
}

.our-tariffs__label {
  color: var(--color-black);
  font-size: 10px;
  font-weight: 400;
  line-height: 120%;
}

.our-tariffs__price {
  color: var(--color-black);
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}

.our-tariffs__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100%;
  height: 45px;
  border-radius: 12px;
  background: -webkit-gradient(linear, left top, right top, from(#aa3afd), to(#db3afd));
  background: linear-gradient(90deg, #aa3afd 0%, #db3afd 100%);
  margin-top: auto;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  line-height: 176%;
  text-transform: uppercase;
  padding: 5px 10px 5px;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.faq-block {
  margin-top: 75px;
  margin-bottom: 47px;
  border-radius: 32px;
  background: #f6f7f9;
  padding-left: 90px;
  padding-right: 90px;
}

.faq-block:first-child {
  margin-top: 0;
}

.faq-block:last-child {
  margin-bottom: 0;
}

.faq-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 90px;
     -moz-column-gap: 90px;
          column-gap: 90px;
}

.faq-block__left {
  padding: 42px 0 48px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 430px;
  max-width: 100%;
}

.faq-block__title {
  margin-bottom: 45px;
}

.faq-block__right {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  padding-top: 20px;
}

.faq-block__img img {
  max-width: 100%;
}

.faq-spoiler__item {
  border-bottom: 1px solid #d5d5d5;
}

.faq-spoiler__item:first-child {
  border-top: 1px solid #d5d5d5;
}

.faq-spoiler__item.active .faq-spoiler__arrow svg {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.faq-spoiler__title {
  padding: 12px 0;
  cursor: pointer;
  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;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.faq-spoiler__heading {
  color: var(--color-black);
  font-size: 15px;
  line-height: 120%;
}

.faq-spoiler__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.faq-spoiler__arrow svg {
  width: 24px;
  height: 24px;
}

.faq-spoiler__body {
  display: none;
  padding: 10px 0 22px;
  color: var(--color-black);
  font-size: 14px;
  font-weight: 300;
  line-height: 105%;
}

.faq-spoiler__body.active {
  display: block;
}

.reviews-block {
  margin-top: 47px;
  margin-bottom: 44px;
}

.reviews-block:first-child {
  margin-top: 0;
}

.reviews-block:last-child {
  margin-bottom: 0;
}

.reviews-block__title {
  text-align: center;
  margin-bottom: 46px;
}

.reviews-slider {
  position: relative;
  overflow: hidden;
  margin: -15px -21px;
  padding: 15px 21px;
}

.reviews-slider__slide {
  height: auto;
}

.reviews-slider__prev {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 35px;
  max-width: 100%;
  height: 35px;
  border-radius: 50%;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.15));
  background: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-black);
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 4px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 4;
  padding: 5px;
}

.reviews-slider__next {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 35px;
  max-width: 100%;
  height: 35px;
  border-radius: 50%;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.15));
  background: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-black);
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 4px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 4;
  padding: 5px;
}

.item-reviews {
  height: 100%;
  padding: 20px 28px 35px;
  border-radius: 10px;
  background: var(--color-white);
  -webkit-box-shadow: 0px 2.503px 14.203px 0.626px rgba(0, 0, 0, 0.11);
          box-shadow: 0px 2.503px 14.203px 0.626px rgba(0, 0, 0, 0.11);
}

.item-reviews__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.item-reviews__name {
  color: var(--color-black);
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
}

.item-reviews__rating {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  margin-left: auto;
}

.item-reviews__text {
  color: var(--color-black);
  font-size: 11px;
  font-weight: 300;
  line-height: 120%;
  margin-top: 16px;
}

.block-top {
  margin: 50px 0;
}

.block-top:first-child {
  margin-top: 0;
}

.block-top__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}

.block-top__logo .logo__text {
  font-size: 29px;
}

.block-top__title {
  color: var(--color-black);
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  line-height: 113%;
  max-width: 750px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.block-top__body {
  border-radius: 40px;
  background: -webkit-gradient(linear, left top, left bottom, from(#9a21f4), to(#ff55d8));
  background: linear-gradient(180deg, #9a21f4 0%, #ff55d8 100%);
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  padding: 2px;
}

.block-top__body:not(:last-child) {
  margin-bottom: 28px;
}

.block-top__box {
  background: var(--color-white);
  border-radius: 38px;
  padding: 28px;
}

.fancybox__backdrop {
  background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 1199.98px) {
  .header__row {
    margin: 0 -10px;
  }

  .header__left {
    padding: 0 10px;
  }

  .header__center {
    padding: 0 10px;
  }

  .header__right {
    padding: 0 10px;
  }

  .menu__list {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .footer__top-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .footer__top-col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 40%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .footer__top-col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 40%;
    max-width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    text-align: right;
  }

  .footer__top-col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
  }

  .footer__top-col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-top: 19px;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .footer__top-buttons {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .offer-block__bg {
    right: calc(100% - 140px);
  }

  .requirements__body {
    padding: 16px 20px;
  }

  .requirements__icon {
    width: 24px;
    height: 24px;
  }

  .requirements__heading {
    font-size: 14px;
  }
}

@media (max-width: 1100px) {
  .offer-block__bg {
    right: calc(100% - 195px);
  }

  .faq-block {
    padding-left: 40px;
    padding-right: 40px;
  }

  .faq-block__row {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}

@media (max-width: 991.98px) {
  .main {
    padding-top: 32px;
  }

  h2 {
    font-size: 20px;
  }

  .header {
    padding: 7px 0;
  }

  .header__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.333%;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    z-index: 12;
  }

  .header__center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.333%;
    max-width: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .header__menu-icon {
    display: block;
    position: relative;
    z-index: 12;
  }

  .header__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.333%;
    max-width: 100%;
  }

  .header__location {
    -webkit-column-gap: 7px;
       -moz-column-gap: 7px;
            column-gap: 7px;
  }

  .header__location-text {
    border-radius: 12px;
    height: 35px;
    padding: 8px 19px 8px 10px;
  }

  .header__location-text span {
    font-size: 11px;
  }

  .header__location-icon {
    width: 24px;
    height: 24px;
  }

  .header__location-icon svg {
    width: 24px;
    height: 24px;
  }

  .menu {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: var(--transition-normal);
    transition: var(--transition-normal);
    padding-top: 71px;
  }

  .menu:before {
    content: "";
    display: block;
    width: 100%;
    height: 51px;
    background: -webkit-gradient(linear, left top, left bottom, from(#9a21f4), to(#ff55d8));
    background: linear-gradient(180deg, #9a21f4 0%, #ff55d8 100%);
    position: fixed;
    top: 0;
    left: -100%;
    -webkit-transition: var(--transition-normal);
    transition: var(--transition-normal);
    z-index: 11;
  }

  .menu.open {
    left: 0;
  }

  .menu.open:before {
    left: 0;
  }

  .menu__body {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .menu__list {
    display: block;
  }

  .menu__item {
    text-align: center;
  }

  .menu__item:not(:last-child) {
    margin-bottom: 10px;
  }

  .menu__link {
    font-size: 20px;
    color: var(--color-black);
  }

  .footer {
    padding-top: 26px;
  }

  .footer__top-link span {
    border: none;
  }

  .footer__top-btn {
    border: none;
    text-decoration: underline;
  }

  .footer__top-btn:hover {
    text-decoration: none;
  }

  .footer__center {
    margin: 21px 0 28px;
  }

  .footer__bottom-row {
    margin: 0 -18px;
  }

  .footer__bottom-left {
    padding: 0 18px;
  }

  .footer__bottom-right {
    padding: 0 18px;
  }

  .offer-block {
    padding: 24px 28px 24px 32px;
    margin-top: 47px;
    margin-bottom: 47px;
    border-radius: 16px;
  }

  .offer-block__left {
    max-width: 270px;
    padding: 14px 0;
  }

  .offer-block__title {
    font-size: 26px;
  }

  .offer-block__subtitle {
    font-size: 18px;
  }

  .offer-block__bg {
    width: 425px;
    right: calc(100% - 230px);
    height: calc(100% + 48px);
  }

  .offer-block__block {
    padding: 20px 24px;
    width: 310px;
    border-radius: 18px;
  }

  .offer-block__block > span {
    height: 290px;
  }

  .how-work {
    margin-top: 47px;
    margin-bottom: 53px;
  }

  .how-work__title {
    margin-bottom: 27px;
  }

  .how-work__heading {
    font-size: 14px;
  }

  .how-work__text {
    font-size: 12px;
  }

  .requirements {
    margin-top: 46px;
    margin-bottom: 46px;
  }

  .requirements__title {
    margin-bottom: 23px;
  }

  .requirements__row {
    margin: -6px;
  }

  .requirements__col {
    padding: 6px;
  }

  .requirements__col:nth-child(2),
  .requirements__col:nth-child(3) {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
  }

  .requirements__item {
    border-radius: 12px;
  }

  .requirements__body {
    padding: 11px 12px;
    border-radius: 10px;
  }

  .requirements__icon {
    width: 19px;
    height: 19px;
  }

  .requirements__heading {
    font-size: 10px;
  }

  .our-advantages {
    margin-top: 46px;
    margin-bottom: 48px;
    padding: 22px 24px;
    border-radius: 16px;
  }

  .our-advantages__title {
    text-align: center;
    margin-bottom: 26px;
  }

  .our-advantages__row {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .our-advantages__item {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }

  .our-advantages__icon {
    width: 24px;
    height: 24px;
  }

  .our-advantages__heading {
    font-size: 12px;
  }

  .our-advantages__text {
    font-size: 12px;
    font-weight: 400;
  }

  .our-tariffs {
    margin-top: 48px;
    margin-bottom: 50px;
  }

  .our-tariffs__title {
    margin-bottom: 17px;
  }

  .our-tariffs__row {
    -webkit-column-gap: 9px;
       -moz-column-gap: 9px;
            column-gap: 9px;
  }

  .our-tariffs__col {
    width: 230px;
  }

  .our-tariffs__item {
    border-radius: 16px 16px 9px 9px;
  }

  .our-tariffs__top {
    padding: 19px 25px 34px;
  }

  .our-tariffs__heading {
    height: 25px;
    padding: 5px 11px;
    font-size: 10px;
    margin-bottom: 26px;
  }

  .our-tariffs__box {
    -webkit-column-gap: 14px;
       -moz-column-gap: 14px;
            column-gap: 14px;
  }

  .our-tariffs__box:not(:last-child) {
    margin-bottom: 24px;
  }

  .our-tariffs__box-icon svg {
    width: 45px;
    height: 24px;
  }

  .our-tariffs__label {
    font-size: 8px;
  }

  .our-tariffs__price {
    font-size: 16px;
  }

  .our-tariffs__btn {
    border-radius: 9px;
    height: 40px;
    font-size: 10px;
  }

  .faq-block {
    margin-top: 50px;
    margin-bottom: 48px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 20px;
  }

  .faq-block__row {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }

  .faq-block__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 350px;
    max-width: 100%;
    padding: 36px 0;
  }

  .faq-block__title {
    margin-bottom: 23px;
  }

  .faq-spoiler__title {
    padding: 7px 0;
  }

  .faq-spoiler__heading {
    font-size: 12px;
  }

  .faq-spoiler__body {
    font-size: 11px;
  }

  .reviews-block {
    margin-top: 48px;
    margin-bottom: 58px;
  }

  .reviews-block__title {
    margin-bottom: 34px;
  }

  .reviews-slider {
    margin: -15px -15px;
    padding: 15px 15px;
  }

  .reviews-slider__prev {
    width: 30px;
    height: 30px;
  }

  .reviews-slider__next {
    width: 30px;
    height: 30px;
  }

  .item-reviews {
    padding: 20px 15px 20px 30px;
  }

  .item-reviews__text {
    font-size: 10px;
  }

  .block-top {
    margin: 34px 0;
  }

  .block-top__logo {
    margin-bottom: 16px;
  }

  .block-top__logo .logo__text {
    font-size: 22.5px;
  }
}

@media (max-width: 850px) {
  .requirements__col:nth-child(2),
  .requirements__col:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .fancybox-slide {
    padding: 30px 15px;
  }

  .main {
    padding-top: 20px;
  }

  .btn {
    font-size: 10px;
    padding: 5px 15px 5px;
  }

  .header__row {
    margin: 0 -5px;
  }

  .header__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
    padding: 0 5px;
  }

  .header__center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
    max-width: 100%;
    padding: 0 5px;
  }

  .header__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
    max-width: 100%;
    padding: 0 5px;
  }

  .header__location-text {
   
  }

  .header__location-icon {
    width: 35px;
    height: 35px;
 
  }

  .header__location-icon svg {
    width: 35px;
    height: 35px;
  }

  .logo {
    width: 148px;
  }

  .menu__body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer {
    margin-top: 37px;
  }

  .footer__top-row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .footer__top-col-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .footer__top-col-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    text-align: center;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 9px;
  }

  .footer__top-col-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 15px;
  }

  .footer__top-col-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 15px;
  }

  .footer__top-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .footer__top-btn1 {
    display: none;
  }

  .footer__top-btn2 .btn {
    min-width: 145px;
  }

  .footer__top-btn3 .btn {
    min-width: 145px;
  }

  .footer__center {
    padding-top: 25px;
    padding-bottom: 25px;
    margin: 20px 0;
  }

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

  .footer__center-btn .btn {
    min-width: 145px;
  }

  .footer__bottom-left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .footer__bottom-icons {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .footer__bottom-right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
  }

  .main-popup.fancybox__content {
    padding: 50px 20px;
  }

  .call-back.fancybox__content {
    padding: 50px 20px;
  }

  .offer-block {
    padding: 34px 10px 13px 10px;
    border-radius: 20px;
    margin-top: 27px;
    margin-bottom: 27px;
  }

  .offer-block__row {
    display: block;
  }

  .offer-block__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 0 25px;
    margin-bottom: 20px;
  }

  .offer-block__bg {
    display: none;
  }

  .offer-block__block {
    width: 100%;
    border-radius: 20px;
    padding: 15px 25px;
  }

  .how-work {
    margin-top: 27px;
    margin-bottom: 38px;
  }

  .how-work__title {
    margin-bottom: 20px;
  }

  .how-work__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .how-work__heading {
    font-size: 16px;
  }

  .requirements {
    margin-top: 36px;
    margin-bottom: 36px;
  }

  .requirements__title {
    margin-bottom: 20px;
  }

  .requirements__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .requirements__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .requirements__col:nth-child(2),
  .requirements__col:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .requirements__item {
    padding: 1px;
    border-radius: 18px;
  }

  .requirements__body {
    border-radius: 16px;
    padding: 13px 11px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .requirements__icon {
    width: 25px;
    height: 25px;
  }

  .requirements__heading {
    font-size: 14px;
  }

  .our-advantages {
    margin-top: 36px;
    margin-bottom: 33px;
    padding: 22px 24px 30px;
  }

  .our-advantages__title {
    margin-bottom: 29px;
  }

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

  .our-advantages__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .our-advantages__col:not(:last-child) {
    margin-bottom: 25px;
  }

  .our-advantages__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }

  .our-tariffs {
    margin-top: 33px;
    margin-bottom: 38px;
  }

  .our-tariffs__title {
    margin-bottom: 33px;
  }

  .our-tariffs__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 25px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .our-tariffs__col {
    width: 280px;
  }

  .our-tariffs__item {
    border-radius: 20px 20px 12px 12px;
  }

  .our-tariffs__top {
    padding: 20px 30px 40px;
  }

  .our-tariffs__heading {
    height: 30px;
    font-size: 12px;
    padding: 5px 22px;
    margin-bottom: 34px;
  }

  .our-tariffs__box {
    -webkit-column-gap: 17px;
       -moz-column-gap: 17px;
            column-gap: 17px;
  }

  .our-tariffs__box:not(:last-child) {
    margin-bottom: 26px;
  }

  .our-tariffs__box-icon svg {
    width: 55px;
    height: 30px;
  }

  .our-tariffs__label {
    font-size: 10px;
  }

  .our-tariffs__price {
    font-size: 20px;
  }

  .our-tariffs__btn {
    border-radius: 12px;
    height: 45px;
    font-size: 12px;
  }

  .faq-block {
    margin-top: 38px;
    margin-bottom: 43px;
    padding: 18px 20px 27px;
  }

  .faq-block__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .faq-block__title {
    margin-bottom: 17px;
  }

  .faq-block__right {
    display: none;
  }

  .reviews-block {
    margin-top: 43px;
    margin-bottom: 47px;
  }

  .reviews-block__title {
    margin-bottom: 22px;
  }

  .item-reviews {
    padding: 20px 18px;
  }

  .block-top {
    margin: 24px 0;
  }

  .block-top__logo {
    margin-bottom: 22px;
  }

  .block-top__logo .logo__text {
    font-size: 21px;
  }

  .block-top__title {
    font-size: 16px;
  }

  .block-top__box {
    padding: 20px 10px;
  }
}

@media (max-width: 578px) {
  .main-popup.fancybox__content .f-button.is-close-btn {
    background: transparent;
  }

  .call-back.fancybox__content .f-button.is-close-btn {
    background: transparent;
  }
}

@media (max-width: 575.98px) {
  .reviews-slider {
    margin: -15px -7px;
    padding: 15px 26px;
  }
}

@media (any-hover: hover) {
  .menu__link:hover {
    opacity: 0.8;
  }

  .our-tariffs__btn:hover {
    opacity: 0.9;
  }
}

@media (max-height: 578px) {
  .main-popup.fancybox__content .f-button.is-close-btn {
    background: transparent;
  }

  .call-back.fancybox__content .f-button.is-close-btn {
    background: transparent;
  }
}

.vue-app{
    font-family: "Commissioner", sans-serif !important;
}
/* стили spinner */
.vue-app-preloader {
  height: 400px; /* сделать как у формы */
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.vue-app-preloader__spinner {
  width: 48px;
  height: 48px;
  border: 5px solid #ccc;
  border-top-color: var(--color-violet);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg) }
}