@charset "UTF-8";

:root {
  --color-white: #fff;
  --color-black: #000;
  --color-red: #e52323;
  --color-green: #008f31;
  --color-green-100: #00c644;
  --color-orange: #ea7500;
  --color-gray: #e9e9e9;
  --color-blue: #19a5d8;
  --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: "Tilda-Sans";
  src: url("../fonts/TildaSans-Light.woff2") format("woff2"), url("../fonts/TildaSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

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

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

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

body.lock {
  overflow: hidden;
}

body.page-bg {
  background: #fff;
}

body.page-bg .header {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

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

h1 {
  color: inherit;
  font-size: 44px;
  font-weight: 600;
  line-height: 100%;
}

h2 {
  color: inherit;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
}

.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;
  height: 46px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  border-radius: 8px;
  background: var(--color-green);
  color: var(--color-white);
  padding: 5px 40px;
  font-size: 12px;
  font-weight: 600;
  line-height: 176%;
}

.btn:hover {
  background: var(--color-green-100);
}

.btn.btn-outline-white {
  background: var(--color-green);
  color: var(--color-white);
  border: 1px solid var(--color-green);
  transition: all 0.3s ease;
}

.btn.btn-outline-white:hover {
  
  background: var(--color-green-100);
}

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

.btn.btn-green:hover {
  background: var(--color-green-100);
}

.header {
  background: var(--color-white);
  padding: 17px 0;
}

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  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%;
  position: relative;
  z-index: 12;
}

.header__center {
  padding: 0 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__right {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  position: relative;
  z-index: 12;
}

.header__location {
  color: var(--color-red);
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  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;
}

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

.header__menu-icon {
  display: none;
}

.logo {
  display: inline-block;
  width: 100%;
  max-width: 196px;
}

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

.menu:before {
  content: "";
  display: none;
  width: 100%;
  height: 80px;
  background: var(--color-white);
  -webkit-box-shadow: 0 4px 14px 0 rgba(104, 97, 97, 0.1);
          box-shadow: 0 4px 14px 0 rgba(104, 97, 97, 0.1);
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 11;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.menu__list {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 5px;
}

.menu__link {
  color: var(--color-black);
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.menu__link:hover {
  color: var(--color-red);
}

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

.icon-menu {
  cursor: pointer;
  width: 35px;
  height: 35px;
  position: relative;
  border-radius: 50%;
  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-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

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

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

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

.icon-menu__body {
  position: relative;
  width: 20px;
  height: 15px;
}

.icon-menu__body span {
  position: absolute;
  top: 6px;
  width: 100%;
  height: 3px;
  left: 0;
  background: var(--color-black);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 3px;
}

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

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

.footer {
  color: var(--color-white);
  padding-bottom: 40px;
  position: relative;
  z-index: 5;
}

.footer__content {
  border-radius: 32px;
  background: #2d2d2d;
  padding: 30px 48px 40px;
}

.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-white);
  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-red);
}

.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-white);
  font-size: 12px;
  font-weight: 300;
  line-height: 140%;
  border-bottom: 1px solid var(--color-red);
  padding-bottom: 4px;
}

.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__top-btn1 .btn {
  min-width: 120px;
  padding-left: 15px;
  padding-right: 15px;
  height: 43px;
}

.footer__top-btn2 .btn {
  padding-left: 15px;
  padding-right: 15px;
  height: 43px;
}

.footer__center {
  margin: 28px 0 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
}

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

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

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

.footer__bottom-left {
  padding: 0 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  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-white);
  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: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  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-white);
  font-size: 10px;
}

.footer__bottom-links li a {
  color: var(--color-white);
  font-size: 10px;
  font-weight: 300;
  line-height: 180%;
  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 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  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);
}

.form-block__content {
  padding-bottom: 105px;
  position: relative;
}

.form-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
}

.form-block__left {
  padding: 0 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  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;
  position: relative;
}

.form-block__title {
  font-size: 40px;
  margin-bottom: 20px;
  max-width: 354px;
}

.form-block__text {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 110%;
  max-width: 297px;
}

.form-block__text span {
  display: inline-block;
  color: var(--color-red);
}

.form-block__img {
  position: absolute;
  pointer-events: none;
  bottom: -106px;
  right: -40px;
  z-index: 3;
  max-width: 77%;
}

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

.form-block__right {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 493px;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.form-block__box {
  border-radius: 30px;
  background: var(--color-red);
  padding: 40px;
}

.form-block__box > span {
  height: 260px;
  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;
}

.reviews-block {
  margin: 80px 0;
  position: relative;
  z-index: 4;
}

.reviews-block__content {
  padding: 55px 56px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}

.reviews-block__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.reviews-block__bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.reviews-block__body {
  position: relative;
  z-index: 2;
}

.reviews-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -10px;
}

.reviews-block__left {
  padding: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.reviews-block__right {
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.reviews-block__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.reviews-block__prev {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 34px;
  max-width: 100%;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  background: var(--color-green);
  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-white);
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.reviews-block__prev:hover {
  color: var(--color-white);
  background: var(--color-green-100);
}

.reviews-block__prev.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.reviews-block__prev.swiper-button-lock {
  display: none;
}

.reviews-block__prev svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.reviews-block__next {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 34px;
  max-width: 100%;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  background: var(--color-green);
  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-white);
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.reviews-block__next:hover {
  color: var(--color-white);
  background: var(--color-green-100);
}

.reviews-block__next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.reviews-block__next.swiper-button-lock {
  display: none;
}

.reviews-block__next svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.reviews-block__slider {
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
}

.reviews-slider {
  position: relative;
  overflow: hidden;
}

.reviews-slider__slide {
  height: auto;
}

.reviews-slider__item {
  border-radius: 16px;
  height: 100%;
  background: var(--color-white);
  padding: 25px 28px 28px;
}

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

.reviews-slider__name {
  color: var(--color-black);
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  margin-top: 14px;
}

.reviews-slider__rating {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  height: 31px;
  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;
}

.reviews-slider__text {
  color: var(--color-black);
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  margin-top: 8px;
}

.reviews-slider__label {
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 8px 0 0 8px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
  margin-right: -28px;
  text-align: right;
}

.reviews-slider__label span {
  display: inline-block;
}

.faq-block {
  position: relative;
  margin-bottom: 80px;
  margin-top: 80px;
}

.faq-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -20px;
}

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

.faq-block__content {
  position: relative;
  z-index: 2;
}

.faq-block__body {
  position: relative;
  height: 100%;
}

.faq-block__bg {
  position: absolute;
  bottom: -169px;
  right: -33px;
  pointer-events: none;
  -webkit-transform: rotate(-15deg);
      -ms-transform: rotate(-15deg);
          transform: rotate(-15deg);
}

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

.faq-block__right {
  position: relative;
  z-index: 3;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
}

.faq-spoiler__item {
  border-radius: 10px;
  background: #e8fff0;
}

.faq-spoiler__item:not(:last-child) {
  margin-bottom: 16px;
}

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

.faq-spoiler__title {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  min-height: 50px;
  padding: 10px 28px 10px 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.faq-spoiler__title:hover .faq-spoiler__arrow {
  background: var(--color-green-100);
}

.faq-spoiler__heading {
  color: var(--color-black);
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
}

.faq-spoiler__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 34px;
  max-width: 100%;
  height: 34px;
  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;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-white);
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.faq-spoiler__arrow svg {
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.faq-spoiler__body {
  display: none;
  padding-bottom: 16px;
  padding-left: 32px;
  padding-right: 28px;
}

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

.our-tariffs {
  background: #f4f4f5;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 3;
}

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

.our-tariffs__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -20px;
}

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

.our-tariffs__box {
  border-radius: 20px;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.our-tariffs__bg {
  position: absolute;
  top: -170px;
  right: -163px;
}

.our-tariffs__img {
  position: absolute;
  top: 38px;
  right: 0;
  pointer-events: none;
  width: 157px;
}

.our-tariffs__img img {
  max-width: 100%;
}

.our-tariffs__body {
  position: relative;
  z-index: 2;
  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;
}

.our-tariffs__name {
  color: var(--color-black);
  font-size: 24px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.our-tariffs__name span {
  color: var(--color-red);
}

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

.our-tariffs__item:not(:last-child) {
  margin-bottom: 14px;
}

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

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

.our-tariffs__btn {
  margin-top: 24px;
  width: 100%;
}

.our-tariffs__btn .btn {
  font-size: 16px;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

.how-get {
  margin-top: 80px;
  margin-bottom: 80px;
  position: relative;
  z-index: 3;
}

.how-get__title {
  margin-bottom: 28px;
}

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

.how-get__col {
  padding: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
  position: relative;
}

.how-get__item {
  border-radius: 20px;
  padding: 21px 30px 21px 35px;
  height: 100%;
  background: var(--color-red) url("../img/how-get-item-bg.png") center/cover no-repeat;
  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: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.how-get__number {
  color: rgba(255, 255, 255, 0.4);
  font-size: 90px;
  font-weight: 700;
  line-height: 100%;
}

.how-get__heading {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  line-height: 110%;
}

.how-get__text {
  color: var(--color-white);
  font-size: 16px;
  line-height: 140%;
  margin-top: 8px;
}

.requirements-block {
  margin-top: 80px;
  margin-bottom: 80px;
}

.requirements-block__content {
  position: relative;
}

.requirements-block__body {
  max-width: calc(50% - 20px);
  margin-left: auto;
}

.requirements-block__title {
  margin-bottom: 20px;
}

.requirements-block__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.requirements-block__list-item:not(:last-child) {
  margin-bottom: 12px;
}

.requirements-block__list-item-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20px;
  max-width: 100%;
  height: 20px;
  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-block__list-item-text {
  color: var(--color-black);
  font-size: 16px;
  line-height: 140%;
}

.requirements-block__img {
  position: absolute;
  pointer-events: none;
  bottom: -80px;
  left: 0;
  max-height: calc(100% + 160px);
}

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

.requirements-block__items {
  margin-top: 28px;
  max-width: calc(50% - 20px);
  margin-left: auto;
}

.requirements-block__item {
  border-radius: 16px;
  background: #2d2d2d;
  padding: 20px 28px;
}

.requirements-block__item:not(:last-child) {
  margin-bottom: 16px;
}

.requirements-block__item-title {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  line-height: 110%;
}

.requirements-block__item-text {
  color: var(--color-white);
  font-size: 16px;
  line-height: 140%;
  margin-top: 8px;
}

.offer-block__content {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  padding: 60px 56px;
}

.offer-block__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.offer-block__bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.offer-block__block {
  position: relative;
  z-index: 2;
}

.offer-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
}

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

.offer-block__body {
  position: relative;
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.offer-block__title {
  position: relative;
  z-index: 4;
  max-width: 421px;
}

.offer-block__title span {
  display: inline-block;
  color: var(--color-red);
}

.offer-block__items {
  position: relative;
  z-index: 4;
  margin-top: 36px;
}

.offer-block__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  border-radius: 100px;
  border: 2px solid var(--color-red);
  padding: 10px 18px;
}

.offer-block__item:not(:last-child) {
  margin-bottom: 15px;
}

.offer-block__item-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20px;
  max-width: 100%;
  height: 20px;
  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;
}

.offer-block__item-text {
  color: var(--color-black);
  font-size: 18px;
  line-height: 140%;
}

.offer-block__img {
  position: absolute;
  right: -292px;
  bottom: -161px;
  pointer-events: none;
}

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

.offer-block__right {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 493px;
  max-width: 100%;
  position: relative;
  z-index: 4;
}

.offer-block__box {
  border-radius: 30px;
  background: var(--color-red);
  padding: 40px;
}

.offer-block__box > span {
  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;
  height: 260px;
}

.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__title {
  color: var(--color-black);
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 176%;
  margin-bottom: 26px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}

.block-top__heading {
  color: var(--color-black);
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 113%;
  margin-bottom: 36px;
}

.block-top__body {
  border-radius: 20px;
  background: var(--color-red);
  -webkit-box-shadow: 0 0 14px 0 rgba(50, 46, 46, 0.1);
          box-shadow: 0 0 14px 0 rgba(50, 46, 46, 0.1);
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  padding: 28px 40px;
}

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

.stretched-text {
  color: inherit;
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: 70px;
  display: inline-block;
}

@media (max-width: 1199.98px) {
  .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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .footer__top-btn1 .btn {
    min-width: 200px;
    height: 40px;
  }

  .footer__top-btn2 .btn {
    min-width: 200px;
    height: 40px;
  }

  .form-block__img {
    max-width: 72%;
  }

  .reviews-block__content {
    padding: 50px 40px 60px;
  }

  .our-tariffs__row {
    margin: -15px;
  }

  .our-tariffs__col {
    padding: 15px;
  }

  .how-get__row {
    margin: -10px;
  }

  .how-get__col {
    padding: 10px;
  }

  .how-get__item {
    padding: 21px 30px 21px 30px;
  }

  .offer-block__content {
    padding: 60px 40px;
  }

  .offer-block__right {
    width: 453px;
  }
}

@media (max-width: 1100px) {
  .header__location {
    font-size: 15px;
  }

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

  .menu__link {
    font-size: 15px;
  }

  .our-tariffs__bg {
    top: -200px;
    right: -193px;
  }

  .our-tariffs__img {
    width: 130px;
  }
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  .header {
    height: 80px;
  }

  .header__left {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
  }

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

  .header__right {
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 36px;
       -moz-column-gap: 36px;
            column-gap: 36px;
  }

  .header__location {
    font-size: 16px;
  }

  .header__menu-icon {
    display: block;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 10;
    padding-top: 110px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-transition: var(--transition-normal);
    transition: var(--transition-normal);
    background: var(--color-white);
  }

  .menu.open {
    right: 0;
  }

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

  .menu:before {
    display: block;
  }

  .menu__list {
    display: block;
  }

  .menu__item {
    text-align: center;
  }

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

  .menu__link {
    font-size: 20px;
  }

  .menu__link-icon {
    display: none;
  }

  .footer__content {
    padding: 26px 20px 40px;
    border-radius: 30px;
  }

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

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

  .footer__center-text {
    text-align: center;
  }

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

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

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

  .form-block__content {
    padding-bottom: 156px;
  }

  .form-block__title {
    font-size: 28px;
    margin-bottom: 20px;
    max-width: none;
  }

  .form-block__img {
    width: 390px;
    max-width: none;
    bottom: -220px;
    right: auto;
    left: -18px;
  }

  .form-block__right {
    width: 336px;
  }

  .form-block__box {
    padding: 40px 20px;
    border-radius: 24px;
  }

  .form-block__box > span {
    height: 220px;
  }

  .faq-block {
    padding-bottom: 76px;
  }

  .faq-block__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

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

  .faq-block__body {
    position: static;
  }

  .faq-block__bg {
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
    right: auto;
    left: 51%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -307px;
  }

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

  .our-tariffs {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .our-tariffs__row {
    margin: -10px;
  }

  .our-tariffs__col {
    padding: 10px;
  }

  .our-tariffs__box {
    padding: 28px 20px;
  }

  .our-tariffs__bg {
    top: auto;
    right: -163px;
    bottom: -170px;
    -webkit-transform: rotate(180deg) scaleX(-1);
        -ms-transform: rotate(180deg) scaleX(-1);
            transform: rotate(180deg) scaleX(-1);
  }

  .our-tariffs__img {
    width: 77px;
    top: auto;
    bottom: 72px;
    right: -2px;
  }

  .our-tariffs__btn {
    margin-top: 22px;
  }

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

  .how-get__item {
    padding: 18px 26px 18px 35px;
  }

  .how-get__number {
    font-size: 70px;
    text-align: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41px;
    max-width: 100%;
  }

  .requirements-block__body {
    max-width: none;
    margin-left: 0;
  }

  .requirements-block__list {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }

  .requirements-block__list-item {
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid-column;
  }

  .requirements-block__img {
    right: -24px;
    bottom: -80px;
    width: 282px;
    left: auto;
  }

  .requirements-block__items {
    max-width: 500px;
    margin-left: 0;
    margin-top: 22px;
  }

  .offer-block__content {
    border-radius: 32px;
    padding: 28px 28px 104px;
  }

  .offer-block__left {
    padding: 0 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .offer-block__items {
    margin-top: 24px;
  }

  .offer-block__item {
    padding: 12px 18px 11px;
  }

  .offer-block__item-text {
    font-size: 16px;
  }

  .offer-block__img {
    width: 342px;
    right: -161px;
    bottom: -225px;
  }

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

  .offer-block__box {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .offer-block__box > span {
    height: 244px;
  }

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

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

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

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

  .main {
    padding-top: 10px;
  }

  h1 {
    font-size: 28px;
  }

  .header {
    height: 60px;
    padding: 13px 0 11px;
  }

  .header__row {
    margin: 0 -10px;
  }

  .header__left {
    padding: 0 10px;
  }

  .header__right {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    padding: 0 10px;
    max-width: 50%;
  }

  .header__location {
    font-size: 14px;
    text-align: right;
  }

  .logo {
    max-width: 155px;
  }

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

  .menu:before {
    height: 60px;
  }

  .footer__content {
    border-radius: 20px;
    padding: 30px 17px;
  }

  .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-btn1 .btn {
    min-width: 270px;
  }

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

  .footer__center {
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 16px 0;
  }

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

  .footer__center-btn .btn {
    min-width: 270px;
    height: 40px;
  }

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

  .form-block__content {
    padding-bottom: 318px;
  }

  .form-block__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .form-block__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    position: static;
  }

  .form-block__title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .form-block__text {
    font-size: 14px;
  }

  .form-block__img {
    width: 321px;
    bottom: -31px;
    left: -25px;
  }

  .form-block__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
  }

  .form-block__box {
    border-radius: 20px;
    padding: 30px 20px;
    -webkit-box-shadow: 0 0 14px 0 rgba(50, 46, 46, 0.1);
            box-shadow: 0 0 14px 0 rgba(50, 46, 46, 0.1);
  }

  .form-block__box > span {
    height: 208px;
  }

  .reviews-block {
    margin: 40px 0;
  }

  .reviews-block__content {
    border-radius: 20px;
    padding: 40px 20px;
    margin: 0 -20px;
  }

  .reviews-block__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }

  .reviews-block__prev {
    width: 24px;
    height: 24px;
  }

  .reviews-block__next {
    width: 24px;
    height: 24px;
  }

  .reviews-slider {
    overflow: visible;
  }

  .reviews-slider__item {
    padding: 22px 20px 28px;
  }

  .reviews-slider__label {
    margin-right: -20px;
  }

  .faq-block {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-bottom: 52px;
  }

  .faq-block__bg {
    width: 279px;
    bottom: -183px;
  }

  .faq-spoiler__item:not(:last-child) {
    margin-bottom: 12px;
  }

  .faq-spoiler__title {
    padding: 15px 20px;
  }

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

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

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

  .faq-spoiler__body {
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-spoiler__text {
    font-size: 14px;
  }

  .our-tariffs {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .our-tariffs__title {
    text-align: center;
  }

  .our-tariffs__row {
    margin: -8px;
  }

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

  .our-tariffs__box {
    max-width: 400px;
    margin: 0 auto;
  }

  .how-get {
    margin-top: 40px;
    margin-bottom: 40px;
  }

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

  .how-get__row {
    margin: -6px;
  }

  .how-get__col {
    padding: 6px;
  }

  .how-get__item {
    padding: 20px 22px 20px 28px;
  }

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

  .requirements-block {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .requirements-block__content {
    padding-bottom: 339px;
  }

  .requirements-block__list {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }

  .requirements-block__list-item:not(:last-child) {
    margin-bottom: 14px;
  }

  .requirements-block__list-item-text {
    font-size: 14px;
  }

  .requirements-block__img {
    bottom: -45px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .requirements-block__items {
    max-width: none;
    margin-top: 28px;
  }

  .requirements-block__item {
    padding: 20px 30px 20px 20px;
  }

  .requirements-block__item:not(:last-child) {
    margin-bottom: 12px;
  }

  .requirements-block__item-text {
    font-size: 14px;
  }

  .offer-block__content {
    padding: 40px 20px;
    margin: 0 -20px;
    border-radius: 20px;
  }

  .offer-block__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

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

  .offer-block__title {
    max-width: none;
  }

  .offer-block__items {
    width: 100%;
  }

  .offer-block__item {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }

  .offer-block__img {
    width: 310px;
    right: -102px;
    bottom: -228px;
  }

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

  .offer-block__box {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .offer-block__box > span {
    height: 236px;
  }

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

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

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

  .block-top__heading {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .block-top__body {
    padding: 20px 20px;
  }

  .stretched-text {
    text-align: center;
    display: block;
    margin-top: 35px;
  }
}

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

@media (max-width: 479.98px) {
  .our-tariffs__box {
    max-width: 223px;
  }
}

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