@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Thin.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Monsieur La Doulaise";
  src: url("../fonts/MonsieurLaDoulaise-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

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

html {
  font-size: 16px;
}

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

body {
  line-height: 1;
  font-family: "Montserrat";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

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

button {
  cursor: pointer;
  background-color: inherit;
}

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

/*
&::-webkit-scrollbar {
	display: none;
}
*/
body {
  color: #343434;
  background: #f8f3ef;
}
body._lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.02em;
}
.button {
  display: inline-flex;
  padding: 0px 0px;
}
.button._fw {
  width: 100%;
}

.select {
  position: relative;
  color: #858FA4;
}
.select__item {
  position: relative;
}
.select__title {
  color: #000;
  cursor: pointer;
  border-radius: 4px;
}
.select__value {
  display: flex;
  font-size: 14px;
  height: 30px;
  padding: 0px 15px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  line-height: 140%;
  /* identical to box height, or 20px */
  text-align: right;
  color: #858FA4;
}
.select__value span {
  padding-right: 10px;
}
.select__value:before {
  content: "";
  display: inline-block;
  transition: all 0.3s ease 0s;
  width: 6px;
  height: 6px;
  background: url("../img/arrow.png") center/100% no-repeat;
}
.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}
.select__options {
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  border-top: 0;
  border-top: 0;
  font-size: 14px;
  padding: 10px 0px 5px 0px;
}
@media (max-width: 991.98px) {
  .select__options {
    font-size: 18px;
  }
}
.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}
@media (min-width: 992px) {
  .select__option:hover {
    background: #d9d9d9;
  }
}
.select._active {
  z-index: 5;
}
.select._active .select__value:before {
  transform: rotate(-180deg);
}
.select._active .select__options {
  display: block;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  outline: none;
}

.input {
  border-radius: 0 !important;
  width: 100%;
  display: block;
  padding: 0px 20px;
}
textarea.input {
  resize: none;
  padding: 0px 0px;
}

.checkbox {
  position: relative;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.checkbox__input:checked + .checkbox__text:before {
  background: #fff url("../img/icons/check.svg") center no-repeat;
}
.checkbox__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
  cursor: pointer;
}
.checkbox__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.checkbox a {
  color: #fff;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .checkbox a:hover {
    text-decoration: none;
  }
}
.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.options__item {
  position: relative;
  cursor: pointer;
}
.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}
.options__input:checked + .options__text:after {
  transform: scale(1);
}
.options__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.options__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.options__text:after {
  content: "";
  transition: all 0.3s ease 0s;
  transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 4px;
}

.rating {
  display: flex;
  align-items: flex-end;
  font-size: 40px;
  line-height: 0.75;
  transition: opacity 0.3s ease 0s;
}

.rating.rating_sending {
  opacity: 0.2;
}

.rating.rating_set .rating__active,
.rating.rating_set .rating__item {
  cursor: pointer;
}

.rating__body {
  position: relative;
}

.rating__body::before {
  content: "★★★★★";
  display: block;
}

.rating__active {
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.rating__active::before {
  content: "★★★★★";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #ffd300;
}

.rating__items {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rating__item {
  flex: 0 0 20%;
  height: 100%;
  opacity: 0;
}

.rating__value {
  font-size: 50%;
  line-height: 1;
  padding: 0px 0px 0px 10px;
}

.quantity {
  width: 88px;
  height: 40px;
  display: flex;
  border: 1px solid rgba(166, 166, 166, 0.45);
}
.quantity__button {
  flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}
.quantity__button::before, .quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}
@media (min-width: 991.98px) {
  .quantity__button:hover::before, .quantity__button:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.quantity__button_plus::before {
  transform: rotate(-90deg);
}
.quantity__input {
  flex: 1 1 auto;
}
.quantity__input input {
  height: 100%;
  color: #a6a6a6;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

.row:after {
  display: block;
  content: "";
  clear: both;
}

.rub:after {
  content: "₽";
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}
ol.counter li {
  position: relative;
  padding: 0px 0px 0px 45px;
}
ol.counter li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: #818181;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #4274bb;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}
.cell.full {
  width: 100%;
}

._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

._video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
._video video,
._video iframe,
._video object,
._video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

._more-content {
  transition: all 0.3s ease 0s;
  overflow: hidden;
}

._more-link {
  cursor: pointer;
}
._more-link span {
  font-style: normal;
}
._more-link span:first-child {
  display: block;
}
._more-link span:last-child {
  display: none;
}
._more-link._active span {
  font-style: normal;
}
._more-link._active span:first-child {
  display: none;
}
._more-link._active span:last-child {
  display: block;
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

.swiper {
  overflow: hidden;
}
.swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative;
}
.swiper.swiper-container-vertical .swiper-wrapper {
  flex-direction: column;
}
.swiper.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
  flex-shrink: 0;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

._tabs-block {
  display: none;
}
._tabs-block._active {
  display: block;
}

.mirror {
  transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}
._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}
.popup::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
}
.popup.show {
  visibility: visible;
  overflow: auto;
}
.popup.show::before {
  opacity: 1;
}
.popup.show .popup__body {
  transform: scale(1);
}
.popup._active {
  overflow: auto;
  visibility: visible;
}
.popup._active::before {
  opacity: 1;
}
.popup._active .popup__body {
  transition: all 0.3s ease 0.2s;
  transform: scale(1);
}
.popup__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup__body {
  transform: scale(0);
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 50px;
  width: 100%;
  max-width: 800px;
}
.popup__close {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 30;
  background: url("../img/icons/close.svg") 0 0 no-repeat;
}

.page {
  flex: 1 1 auto;
}

._btn {
  padding: 20px 25px;
  background: #bc686a;
  border-radius: 100px;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: max-content;
  gap: 10px;
}
._btn img {
  width: 28px;
}
._btn._v2 {
  border: 2px solid #e8dfda;
  color: #c3967f;
  background: transparent;
}
._btn._v2:hover {
  color: #fff;
}
._btn:hover {
  background: #904748;
}

._title {
  text-align: center;
  font-weight: 500;
  font-size: 36px;
}
._title.scr-itemm {
  transform: translate(0px, 30px);
  opacity: 0;
  transition: 0.4s;
  transition-delay: 0.1s;
}
._title.scr-itemm._active {
  opacity: 1;
  transform: translate(0);
}
@media (max-width: 998px) {
  ._title {
    font-size: 30px;
  }
}

._m-t {
  margin-top: 38px;
}

.inp__wp._error span {
  display: block;
}
.inp__wp span {
  display: none;
}

._resp {
  overflow: hidden;
  transition: 0.3s;
}

.tttt {
  margin-top: 150px;
}

.zones__container {
  padding-top: 40px;
}
@media (max-width: 998px) {
  .zones__container {
    padding-top: 26px;
  }
}
.zones__block {
  overflow: visible;
}
@media (min-width: 998px) {
  .zones__block .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
}
@media (min-width: 998px) and (max-width: 1300px) {
  .zones__block .swiper-wrapper {
    gap: 10px;
  }
}
.zones__item {
  border: 2px solid #e8dfda;
  border-radius: 14px;
  padding-bottom: 35px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: inherit;
  transition: 0.3s;
}
.zones__item:hover {
  color: #904748;
}
.zones__item:hover .zones__img img {
  transform: scale(1.1);
}
@media (min-width: 998px) {
  .zones:not(._show-all) .zones__item:nth-child(n+6) {
    display: none;
  }
}
.zones__img {
  width: 100%;
  overflow: hidden;
}
.zones__img img {
  aspect-ratio: 240/278;
  object-fit: cover;
  width: 100%;
  transition: 0.3s;
}
.zones__icon {
  width: 60px;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}
.zones__icon img {
  width: 100%;
}
.zones__info {
  font-size: 20px;
  margin-top: 20px;
  padding: 0px 2px;
}
@media (max-width: 1300px) {
  .zones__info {
    font-size: 16px;
    margin-top: 15px;
  }
}
@media (max-width: 998px) {
  .zones__info {
    font-size: 20px;
    margin-top: 20px;
  }
}
@media (max-width: 380px) {
  .zones__info {
    font-size: 18px;
  }
}
.zones__btns {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  gap: 10px;
}
@media (max-width: 600px) {
  .zones__btns {
    flex-direction: column;
  }
  .zones__btns a {
    width: 100%;
    max-width: 100%;
  }
}
.zones._show-all .zones__all {
  display: none;
}
@media (max-width: 998px) {
  .zones__all {
    display: none;
  }
}

.aktia__block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}
@media (max-width: 998px) {
  .aktia__block {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .aktia__block {
    grid-template-columns: 1fr;
  }
}
.aktia__block._active .aktia__item {
  opacity: 1;
  transform: scale(1);
}
.aktia__item {
  border: 2px solid #e8dfda;
  border-radius: 14px;
  padding: 20px;
  flex-direction: column;
  display: flex;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: scale(0.7);
  transition: 0.4s;
}
.aktia__item:nth-child(2) {
  transition-delay: 0.2s;
}
.aktia__item:nth-child(3) {
  transition-delay: 0.4s;
}
.aktia__icon {
  height: 123px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.aktia__icon img {
  max-height: 100%;
  max-width: 80%;
  object-fit: contain;
}
.aktia__head {
  min-height: 68px;
  margin-top: 20px;
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 700px) {
  .aktia__head {
    min-height: auto;
  }
}
.aktia__price {
  margin-top: 16px;
  font-size: 23px;
  color: #bc686a;
}
@media (max-width: 700px) {
  .aktia__price {
    margin-top: 40px;
  }
}
.aktia__old-price {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.aktia__old-price span {
  text-decoration: line-through;
  color: rgba(52, 52, 52, 0.7);
}
.aktia__old-price p {
  padding: 6px 15px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  background: #bc686a;
  border-radius: 100px;
}
.aktia__text {
  max-width: 240px;
  line-height: 150%;
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
  position: relative;
}
.aktia__text::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  content: "";
  background: #ddcac1;
  width: 167px;
  height: 1px;
}
.aktia__btn {
  margin: 0px auto;
  margin-top: 28px;
}
@media (max-width: 600px) {
  .aktia__btn {
    max-width: 100%;
    width: 100%;
    padding: 16px;
  }
}

.why__block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1200px) {
  .why__block {
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
  }
}
@media (max-width: 600px) {
  .why__block {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.why__block._active .why__item {
  opacity: 1;
  transform: translate(0);
}
.why__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 0px 20px;
  transform: translate(-40px);
  opacity: 0;
  transition: 0.4s;
}
.why__item:not(:last-child) {
  border-right: 2px solid #e8dfda;
}
.why__item:nth-child(2) {
  transition-delay: 0.3s;
}
.why__item:nth-child(3) {
  transition-delay: 0.6s;
}
.why__item:nth-child(4) {
  transition-delay: 0.9s;
}
@media (max-width: 1200px) {
  .why__item:nth-child(2) {
    border-right: none;
  }
}
@media (max-width: 600px) {
  .why__item {
    border: 1px solid #ddcac1;
    border-radius: 20px;
    text-align: left;
    align-items: flex-start;
    padding: 20px;
  }
}
.why__icon {
  width: 80px;
}
@media (max-width: 600px) {
  .why__icon {
    width: 70px;
  }
}
.why__icon img {
  width: 100%;
}
.why__head {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  max-width: 215px;
}
@media (max-width: 600px) {
  .why__head {
    max-width: 100%;
    font-size: 18px;
  }
}
.why__desc {
  line-height: 1.7;
  max-width: 260px;
}
@media (max-width: 600px) {
  .why__desc {
    max-width: 100%;
  }
}

.how__block {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.3fr 1.1fr;
  gap: 12px;
}
@media (max-width: 1200px) {
  .how__block {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .how__block {
    grid-template-columns: 1fr;
    gap: 13px;
  }
}
.how__block._active .how__item {
  opacity: 1;
}
.how__item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  position: relative;
  opacity: 0;
  transition: 0.4s ease;
}
.how__item:nth-child(2) {
  transition-delay: 0.4s;
}
.how__item:nth-child(3) {
  transition-delay: 0.8s;
}
.how__item:nth-child(4) {
  transition-delay: 1.2s;
}
@media (max-width: 1300px) {
  .how__item {
    grid-template-columns: 40px 1fr;
  }
}
@media (max-width: 1200px) {
  .how__item {
    grid-template-columns: 50px 1fr;
    padding-bottom: 15px;
  }
}
@media (max-width: 700px) {
  .how__item:not(:last-child)::before {
    position: absolute;
    bottom: -3px;
    left: 21px;
    content: "";
    transform: translate(0%, 100%) rotate(90deg);
    width: 8px;
    aspect-ratio: 1/1;
    background-image: url(../img/Polygon.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .how__item:not(:last-child)::after {
    position: absolute;
    height: 100%;
    width: 1px;
    top: 0px;
    left: 24.5px;
    content: "";
    border-bottom: none;
    background-image: repeating-linear-gradient(to bottom, #bc686a 0, #bc686a 5px, transparent 5px, transparent 10px);
  }
}
.how__cif {
  aspect-ratio: 1/1;
  width: 100%;
  border: 1px solid #bc686a;
  border-radius: 100px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #bc686a;
  position: relative;
  z-index: 2;
  background: #f8f3ef;
}
@media (max-width: 1300px) {
  .how__cif {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .how__cif {
    font-size: 20px;
  }
}
.how__content h3 {
  padding-top: 13px;
  padding-bottom: 13px;
  font-size: 20px;
  position: relative;
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  padding-right: 5px;
  gap: 11px;
}
@media (max-width: 1300px) {
  .how__content h3 {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .how__content h3 {
    font-size: 20px;
  }
}
@media (min-width: 700px) {
  .how__item:not(:last-child) .how__content h3::before {
    position: absolute;
    top: 50%;
    right: 4px;
    content: "";
    transform: translate(100%, -50%);
    width: 8px;
    aspect-ratio: 1/1;
    background-image: url(../img/Polygon.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .how__item:not(:last-child) .how__content h3::after {
    position: relative;
    left: 0;
    content: "";
    border-bottom: none;
    height: 1px;
    background-image: repeating-linear-gradient(to right, #bc686a 0, #bc686a 6px, transparent 6px, transparent 12px);
    background-position: bottom;
    background-size: 100% 1px;
    /* толщина линии */
    background-repeat: no-repeat;
  }
}
.how__content p {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: rgba(52, 52, 52, 0.7);
}

.result__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 998px) {
  .result__block {
    grid-template-columns: 1fr;
  }
}
.result__item {
  display: flex;
  justify-content: space-between;
  border: 1px solid #ddcac1;
  border-radius: 20px;
  background: #f6f0ea;
  overflow: hidden;
}
.result__item:nth-child(1) .result__img img {
  height: 100%;
  object-fit: cover;
  object-position: top right;
}
@media (max-width: 998px) {
  .result__item:nth-child(1) {
    background-image: url(../img/mob.webp);
    background-size: 150px;
    background-repeat: no-repeat;
    background-position: right 30px;
  }
}
@media (max-width: 500px) {
  .result__item:nth-child(1) {
    background-size: 120px;
  }
}
.result__item:nth-child(2) .result__img {
  width: 180px;
  flex: 0 0 180px;
}
@media (max-width: 1200px) {
  .result__item:nth-child(2) .result__img {
    width: 160px;
    flex: 0 0 160px;
  }
}
@media (max-width: 1100px) {
  .result__item:nth-child(2) .result__img {
    width: 140px;
    flex: 0 0 140px;
  }
}
.result__item:nth-child(2) .result__content {
  padding: 30px;
}
@media (max-width: 1200px) {
  .result__item:nth-child(2) .result__content {
    padding: 20px;
  }
}
@media (max-width: 998px) {
  .result__item:nth-child(2) .result__content {
    padding: 30px;
  }
}
@media (max-width: 998px) {
  .result__item:nth-child(2) {
    background-image: url(../img/mob2.webp);
    background-size: 200px;
    background-repeat: no-repeat;
    background-position: left bottom;
    padding-bottom: 80px;
  }
}
@media (max-width: 500px) {
  .result__item:nth-child(2) {
    background-size: 160px;
  }
}
.result__img {
  width: 200px;
  flex: 0 0 200px;
}
@media (max-width: 1200px) {
  .result__img {
    width: 160px;
    flex: 0 0 160px;
  }
}
@media (max-width: 1100px) {
  .result__img {
    width: 140px;
    flex: 0 0 140px;
  }
}
@media (max-width: 998px) {
  .result__img {
    display: none;
  }
}
.result__img img {
  width: 100%;
}
.result__content {
  padding: 30px 20px;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(52, 52, 52, 0.7);
}
@media (max-width: 1200px) {
  .result__content {
    padding: 20px 20px;
    padding-left: 10px;
  }
}
@media (max-width: 998px) {
  .result__content {
    padding: 30px;
  }
}
.result__head {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
}
.result__txt._v2 {
  font-size: 12px;
  line-height: 1.7;
}
.result__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.result__list li {
  display: grid;
  gap: 10px;
  grid-template-columns: 24px 1fr;
  align-items: center;
}
.result__list li::before {
  position: relative;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  aspect-ratio: 1/1;
  background-image: url(../img/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.about__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 998px) {
  .about__block {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.about__block._active .about__img,
.about__block._active .about__content {
  opacity: 1;
  transform: translate(0);
}
.about__img {
  position: relative;
  overflow: hidden;
  transform: translate(-100%);
  opacity: 0;
  transition: 1s;
}
@media (max-width: 998px) {
  .about__img {
    max-width: 600px;
  }
}
.about__img img {
  border-radius: 10px;
  width: 100%;
}
.about__img::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 235px;
  height: 100%;
  background: linear-gradient(270deg, #f8f3ef 0%, rgba(248, 243, 239, 0) 100%);
}
@media (max-width: 998px) {
  .about__img::before {
    display: none;
  }
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translate(100%);
  opacity: 0;
  transition: 1s;
}
@media (max-width: 998px) {
  .about__content {
    padding: 0px 20px;
  }
}
.about__head {
  font-weight: 600;
  font-size: 18px;
}
.about__title {
  font-size: 30px;
}
.about__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: rgba(52, 52, 52, 0.7);
}
.about__wp {
  display: flex;
  gap: 45px;
}
@media (max-width: 600px) {
  .about__wp {
    flex-direction: column;
    gap: 10px;
  }
}
.about__item {
  max-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
}
@media (max-width: 600px) {
  .about__item {
    display: grid;
    gap: 5px;
    grid-template-columns: 48px 1fr;
    max-width: 100%;
    text-align: left;
  }
  .about__item br {
    display: none;
  }
}
.about__item img {
  width: 48px;
}

.specialist__block {
  padding-top: 38px;
}
@media (max-width: 998px) {
  .specialist__block {
    overflow: visible;
  }
}
.specialist__slide {
  background: #f7f3ee;
  border: 2px solid #e8dfda;
  border-radius: 14px;
  padding: 20px;
  display: grid;
  grid-template-columns: 206px 1fr;
  gap: 30px;
}
@media (max-width: 1200px) {
  .specialist__slide {
    grid-template-columns: 160px 1fr;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .specialist__slide {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.specialist__img {
  border-radius: 20px;
  aspect-ratio: 1/1;
  background: #ede7e0;
  position: relative;
}
@media (max-width: 1200px) {
  .specialist__img {
    margin-top: auto;
  }
}
.specialist__img img {
  position: absolute;
  width: calc(100% - 15px);
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}
.specialist__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.specialist__name {
  font-weight: 500;
  font-size: 24px;
}
.specialist__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: rgba(52, 52, 52, 0.7);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.specialist__info {
  font-size: 34px;
  font-family: "Monsieur La Doulaise";
  color: #343434;
}

.reviews__body {
  position: relative;
}
.reviews__block {
  width: calc(100% - 132px);
  left: 50%;
  transform: translate(-50%);
  position: relative;
}
@media (max-width: 998px) {
  .reviews__block {
    width: 100%;
  }
}
.reviews__slide {
  border: 2px solid #f0e3dd;
  border-radius: 14px;
  padding: 30px;
  background: #f5f0eb;
}
@media (max-width: 600px) {
  .reviews__slide {
    padding: 20px;
  }
}
.reviews__top {
  display: grid;
  grid-template-columns: 69px 1fr;
  gap: 12px;
  align-items: center;
}
.reviews__img img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
}
.reviews__wp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px;
}
@media (max-width: 600px) {
  .reviews__wp {
    flex-direction: column;
    align-items: flex-start;
  }
}
.reviews__name {
  font-weight: 500;
  font-size: 20px;
}
.reviews__stars {
  display: flex;
}
.reviews__stars img {
  width: 20px;
}
.reviews__text {
  margin-top: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(52, 52, 52, 0.7);
}
.reviews__arr {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  background: #c3967f;
  border-radius: 100px;
  width: 50px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 998px) {
  .reviews__arr {
    bottom: -20px;
    top: auto;
    transform: translate(0, 100%);
  }
}
.reviews__arr:hover {
  background: #904748;
}
.reviews__arr img {
  width: 20px;
}
.reviews__arr_l {
  left: 0;
}
.reviews__arr_l img {
  transform: rotate(180deg);
}
.reviews__arr_r {
  right: 0;
}
.reviews__pug {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 8px;
}
@media (max-width: 998px) {
  .reviews__pug {
    padding: 20px 60px;
    margin-top: 20px;
  }
}
.reviews__pug span {
  width: 10px;
  aspect-ratio: 1/1;
  background: #eadad3;
  border-radius: 50%;
  transition: 0.3s;
}
.reviews__pug span.swiper-pagination-bullet-active {
  background: #c3967f;
}

.faq__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media (max-width: 998px) {
  .faq__block {
    grid-template-columns: 1fr;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq__item {
  background: #f5f0eb;
  border: 2px solid #f0e3dd;
  border-radius: 14px;
  padding: 20px;
}
.faq__quest {
  font-weight: 500;
  gap: 20px;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.faq__quest::after {
  position: relative;
  top: 0;
  left: 0;
  content: "";
  width: 24px;
  flex: 0 0 24px;
  aspect-ratio: 1/1;
  background-image: url(../img/arb.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
}
.faq__quest._active::after {
  background-image: url(../img/arba.svg);
  transform: rotate(180deg);
}
.faq__resp > div {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7;
  gap: 15px;
}

.contacts {
  position: relative;
  margin-top: 70px;
  z-index: 1;
}
.contacts__img {
  position: absolute;
  left: 0;
  top: 22px;
  width: 150px;
}
@media (max-width: 998px) {
  .contacts__img {
    right: 0;
    width: 138px;
    bottom: 0;
    top: auto;
    z-index: -1;
    left: auto;
  }
  .contacts__img img {
    transform: scale(-1, 1);
  }
}
.contacts__img img {
  width: 100%;
}
.contacts__container {
  padding-top: 0;
}
.contacts__block {
  border: 2px solid #f2e3e2;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  margin: 0px 20px;
}
@media (max-width: 998px) {
  .contacts__block {
    display: flex;
    flex-direction: column-reverse;
    margin: 0;
    gap: 50px;
    border: none;
  }
}
.contacts__left {
  padding: 33px 50px;
  padding-right: 0;
}
@media (max-width: 998px) {
  .contacts__left {
    padding: 0;
  }
}
.contacts__logo {
  width: 158px;
}
.contacts__logo img {
  width: 100%;
}
.contacts__txt {
  font-weight: 500;
  line-height: 1.5;
  color: rgba(52, 52, 52, 0.7);
  margin-top: 20px;
  max-width: 250px;
}
.contacts__links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contacts__links a {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 8px;
  align-items: center;
  color: inherit;
  transition: 0.3s;
  font-weight: 500;
}
.contacts__links a:hover {
  opacity: 0.7;
}
.contacts__links a img {
  width: 100%;
}
.contacts__btn {
  margin-top: 14px;
  padding: 15px 25px;
  font-size: 16px;
}
.contacts__map {
  border: 2px solid #f2e3e2;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 337px;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 35px;
  padding-bottom: 35px;
}
@media (max-width: 998px) {
  .footer__container {
    justify-content: center;
    text-align: center;
    padding-bottom: 25px;
  }
}
.footer__container a {
  color: inherit;
  transition: 0.3s;
}
@media (max-width: 998px) {
  .footer__container a {
    display: none;
  }
}
.footer__container a:hover {
  color: #bc686a;
}

.custom-marker {
  display: flex;
  align-items: center;
  gap: 15px;
}

.custom-marker__info {
  transform: translate(-80%);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.7);
  min-width: 255px;
  border: 2px solid #f0e3dd;
  border-radius: 14px;
  padding: 20px;
}
@media (max-width: 600px) {
  .custom-marker__info {
    transform: translate(-40%);
  }
}

.custom-marker__title {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 22px;
  text-align: left;
  color: #bc686a;
}

.custom-marker__text {
  font-size: 14px;
  text-align: left;
  line-height: 150%;
  font-weight: 500;
  color: rgba(52, 52, 52, 0.7);
}

.popup_popup::before {
  backdrop-filter: blur(20px);
  background: rgba(52, 52, 52, 0.6);
}
.popup__close {
  background-image: url(../img/x.svg);
  transition: 0.3s;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  background-size: contain;
}
.popup:not(._active) .popup__close {
  opacity: 0;
}
.popup__close:hover {
  transform: scale(1.1);
}
.popup__body {
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  max-width: 500px;
  background: #f8f3ef;
}
.popup__top {
  background-image: url(../img/pb2.png);
  background-size: cover;
  background-position: center;
  padding-top: 26px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 10px;
}
@media (max-width: 600px) {
  .popup__top {
    padding-top: 20px;
    padding-left: 15px;
    padding-bottom: 8px;
    padding-right: 8px;
  }
}
.popup__actia {
  border-radius: 0 100px 100px 0;
  padding: 6px 25px 7px 26px;
  background: #bc686a;
  color: #fff;
  font-weight: 600;
  transform: translate(-20px);
  max-width: max-content;
}
@media (max-width: 600px) {
  .popup__actia {
    transform: translate(-15px);
    padding: 8px 23px 8px 20px;
    font-size: 14px;
  }
}
.popup__zone {
  font-size: 28px;
  margin-top: 37px;
}
@media (max-width: 600px) {
  .popup__zone {
    margin-top: 24px;
    font-size: 24px;
  }
}
.popup__price {
  margin-top: 10px;
  font-weight: 500;
  font-size: 32px;
  color: #c3967f;
}
@media (max-width: 600px) {
  .popup__price {
    font-size: 29px;
  }
}
.popup__bottom {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .popup__bottom {
    margin-top: 49px;
  }
}
.popup__bottom > img {
  width: 76px;
}
.popup__bottom a {
  gap: 8px;
  display: grid;
  grid-template-columns: 25px 1fr;
  color: inherit;
  transition: 0.3s;
  border: 1px solid #bc686a;
  border-radius: 100px;
  padding: 4px 12px;
  background: #fff;
  align-items: center;
}
@media (max-width: 600px) {
  .popup__bottom a {
    font-size: 13px;
    grid-template-columns: 20px 1fr;
  }
}
.popup__bottom a img {
  width: 100%;
}
.popup__bottom a:hover {
  opacity: 0.8;
}
.popup__form {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.popup__form button {
  max-width: 100%;
  width: 100%;
}
.popup__form input._check {
  display: none;
}
.popup__form input._check + label {
  padding-left: 37px;
  position: relative;
  font-weight: 500;
  font-size: 12px;
  line-height: 170%;
}
.popup__form input._check + label::before {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  left: 0;
  content: "";
  width: 27px;
  aspect-ratio: 1/1;
  background-color: #bc686a;
  border-radius: 8px;
  cursor: pointer;
}
.popup__form input._check + label a {
  color: #bc686a;
  transition: 0.3s;
}
.popup__form input._check + label a:hover {
  color: #904748;
}
.popup__form input._check:checked + label::before {
  background-image: url(../img/check2.svg);
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
}
.popup__form input._check._error + label::before {
  opacity: 0.7;
}
.popup__inp {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 10px;
  background: #f5f0eb;
  border: 2px solid #f0e3dd;
  border-radius: 100px;
  padding: 13px 20px;
  transition: 0.3s;
}
.popup__inp._error {
  border-color: #904748;
}
.popup__inp img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.popup__inp input {
  background: transparent;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
}
.popup__inp input::placeholder {
  font-weight: 500;
  font-size: 14px;
}
.popup__title {
  font-weight: 500;
  font-size: 23px;
  text-align: center;
}

.popup_thanks {
  text-align: center;
}
.popup_thanks .popup__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  max-width: 550px;
  width: 100%;
  gap: 20px;
}