@charset "UTF-8";
/* .footer__center-text, .footer__bottom-text, .footer__bottom-text, .stretched-text{
    -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
} */
.vfm-consent-popup-content{
  font-size: 12px;
}
:root {
  --color-white: #fff;
  --color-black: #000;
  --color-red: #f43d3c;
  --color-green: #a9d94f;
  --color-green-100: #d1f6cf;
  --color-orange: #ea7500;
  --color-yellow: #ffc14d;
  --color-yellow-100: #ffa600;
  --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: "Rubik";
  src: url("../fonts/Rubik-Regular.woff2") format("woff2"), url("../fonts/Rubik-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

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

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

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

@font-face {
  font-family: "NAMU";
  src: url("../fonts/NAMU-1960.woff2") format("woff2"), url("../fonts/NAMU-1960.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  color: var(--color-black);
  font-size: 16px;
  line-height: normal;
  font-family: "Rubik", 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,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "NAMU", sans-serif;
}

h1 {
  color: inherit;
  font-size: 46px;
  font-weight: 700;
  line-height: 110%;
}

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

.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: 43px;
  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: 100px;
  background: var(--color-white);
  color: var(--color-black);
  padding: 5px 40px;
  font-size: 12px;
  font-weight: 600;
  line-height: 176%;
  position: relative;
  overflow: hidden;
}

.btn span {
  position: relative;
  z-index: 2;
}

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

.btn.btn-white:hover {
  opacity: 0.8;
}

.btn.btn-red {
  background: var(--color-red);
  color: var(--color-white);
  position: relative;
}

.btn.btn-red:hover {
  opacity: 0.8;
}

.header {
  background: var(--color-white);
  padding: 20px 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;

  max-width: 208px;
}

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

.menu:before {
  content: "";
  display: none;
  width: 100%;
  height: 86px;
  background: var(--color-white);
  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: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 5px;
}

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

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

.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: #2f2f2f;
  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 .f-button.is-close-btn {
  top: 24px;
  right: 24px;
  color: var(--color-black);
}

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

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

.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: -12px -10px;
}

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

.reviews-block__right {
  padding: 12px 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: 32px;
  max-width: 100%;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--color-red);
  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);
}

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

.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: 32px;
  max-width: 100%;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--color-red);
  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);
}

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

.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: 12px 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 {
  height: 100%;
  border-radius: 20px;
  background: #fffce1;
  padding: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.reviews-slider__photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 46px;
  max-width: 100%;
  height: 46px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.reviews-slider__photo 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-slider__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.reviews-slider__top {
  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: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  width: 100%;
}

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

.reviews-slider__rating {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  color: var(--color-red);
}

.reviews-slider__rating svg {
  fill: currentColor;
}

.reviews-slider__text {
  color: var(--color-black);
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin-top: 16px;
}

.reviews-slider__label {
  color: var(--color-black);
  font-size: 14px;
  line-height: 120%;
  margin-top: 10px;
}

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

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

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

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

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

.how-get__item {
  background: url("../img/how-get-bg.svg") 0 0/100% auto no-repeat;
  height: 182px;
  padding: 24px 24px 32px 32px;
  position: relative;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 0 20px 20px 0;
}

.how-get__item:before {
  content: "";
  display: block;
  width: 20px;
  height: calc(100% - 18px);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  background: var(--color-white);
  border-top: 2px solid #a9d94f;
  border-right: 2px solid #a9d94f;
  border-radius: 0 20px 0 0;
}

.how-get__item:after {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  bottom: -2px;
  z-index: 2;
  background: var(--color-white);
  border-bottom: 2px solid #a9d94f;
  border-right: 2px solid #a9d94f;
  border-left: 2px solid #a9d94f;
  border-radius: 0 0 20px 20px;
}

.how-get__item.inner {
  background-image: url("../img/how-get-bg-fill.svg");
}

.how-get__item.inner:before,
.how-get__item.inner:after {
  background: #a9d94f;
}

.how-get__item.inner .how-get__number-block {
  background: var(--color-red);
  color: var(--color-white);
}

.how-get__number {
  width: 18%;
  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;
  position: absolute;
  top: 0;
  left: 5px;
  z-index: 1;
}

.how-get__number-block {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background: #a9d94f;
  border-radius: 50%;
  position: relative;
}

.how-get__number-block span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 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;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

.how-get__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;
  text-align: center;
  margin-left: auto;
}

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

.how-get__name {
  color: var(--color-black);
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  position: relative;
  z-index: 3;
}

.offer-block__content {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  -webkit-box-shadow: 0 0 14px 0 rgba(104, 97, 97, 0.1);
          box-shadow: 0 0 14px 0 rgba(104, 97, 97, 0.1);
  padding: 46px;
}

.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__wrap {
  position: relative;
  z-index: 2;
  max-width: 818px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 46px;
  border: 2px solid var(--color-white);
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  padding: 46px;
}

.offer-block__title {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.offer-block__text {
  color: var(--color-black);
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 20px;
  text-align: center;
}

.offer-block__body {
  border-radius: 32px;
  background: #a9d94f;
  padding: 46px;
}

.offer-block__body > span {
  height: 166px;
  display: block;
  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;
}

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

.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: 22px;
  font-weight: 700;
  line-height: 113%;
  margin-bottom: 36px;
}

.block-top__body {
  border-radius: 38px;
  background: var(--color-green);
  -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: 40px 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;
}

.our-approach__top {
  position: relative;
  padding-bottom: 32px;
}

.our-approach__body {
  position: relative;
  z-index: 3;
  max-width: 480px;
}

.our-approach__list {
  margin-top: 24px;
}

.our-approach__list li {
  color: var(--color-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
}

.our-approach__list li::marker {
  color: var(--color-red);
}

.our-approach__img {
  position: absolute;
  top: -49px;
  right: 0px;
}

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

.our-approach__bottom {
  background: var(--color-green);
  padding: 28px 40px 36px;
  border-radius: 24px;
  position: relative;
  z-index: 3;
}

.our-approach__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.our-approach__heading {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  color: var(--color-white);
  font-family: "NAMU", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 110%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.our-approach__item {
  height: 46px;
  padding: 12px 16px;
  border-radius: 100px;
  background: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
}

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

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

.our-approach__item-text {
  color: var(--color-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

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

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

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

  h2 {
    font-size: 32px;
  }

  .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: 28px;
       -moz-column-gap: 28px;
            column-gap: 28px;
  }

  .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: 24px 20px 28px;
    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;
  }

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

  .reviews-block__row {
    margin: -10px;
  }

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

  .reviews-block__title {
    text-align: center;
  }

  .reviews-block__right {
    padding: 10px;
    -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: 8px;
  }

  .reviews-block__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

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

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

  .how-get__items {
    max-width: 521px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .offer-block__content {
    overflow: hidden;
  }

  .offer-block__wrap {
    max-width: 573px;
  }

  .offer-block__title {
    margin-bottom: 16px;
  }

  .offer-block__text {
    margin-bottom: 24px;
  }

  .offer-block__body {
    padding: 32px;
  }

  .offer-block__body > span {
    height: 226px;
  }

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

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

  .block-top__body {
    border-radius: 38px;
  }

  .our-approach__body {
    max-width: 385px;
  }

  .our-approach__img {
    max-width: 494px;
    top: 17px;
    right: -22px;
  }

  .our-approach__bottom {
    padding: 28px;
  }
}

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

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

  h1 {
    font-size: 28px;
  }

  .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: 153px;
  }

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

  .menu:before {
    height: 75px;
  }

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

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

  .reviews-block__left {
    margin-bottom: 4px;
  }

  .reviews-slider {
    overflow: visible;
  }

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

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

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

  .how-get__items {
    max-width: 248px;
  }

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

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

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

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

  .offer-block__title {
    margin-bottom: 12px;
  }

  .offer-block__text {
    font-size: 16px;
    margin-bottom: 20px;
  }

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

  .offer-block__body > span {
    height: 246px;
  }

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

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

  .block-top__title {
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 113%;
  }

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

  .block-top__body {
    padding: 20px 20px;
    border-radius: 24px;
  }

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

  .our-approach__top {
    padding-bottom: 102px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

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

  .our-approach__img {
    max-width: 360px;
    bottom: -69px;
    top: auto;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
  }

  .our-approach__bottom {
    padding: 20px 14px;
  }

  .our-approach__items {
    row-gap: 12px;
  }

  .our-approach__heading {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 4px;
  }

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

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

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

.success, .params-wrapper{
  font-family: 'Proxima Nova';
    font-weight: 600;
    color: #28123A;
}
.success-title{
  font-size: 24px;

}