@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Quicksand/Quicksand-Light.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Quicksand/Quicksand-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Quicksand/Quicksand-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Quicksand/Quicksand-SemiBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Quicksand/Quicksand-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "GFS Didot";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/GFS_Didot/GFSDidot-Regular.ttf");
  font-display: swap;
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #F7F4F4;
  font-family: "Quicksand";
  color: #484848;
  position: relative;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

main {
  display: flex;
  flex-direction: column;
  flex-grow: 3;
}

ul, ol {
  padding-left: 0;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.container {
  max-width: 1290px;
  margin: 0 auto;
}

.btn {
  border: none;
  outline: none;
  display: inline-block;
  padding: 16px 40px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.04em;
  font-weight: 500;
  height: 52px;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.4s;
}
@media (max-width: 480px) {
  .btn {
    padding: 16px 20px;
    font-size: 14px;
  }
}

.btn--dark {
  background-color: #B67271;
  color: #fff;
  box-shadow: 5px 10px 30px 0 rgba(72, 72, 72, 0.2);
  border: 1px solid #B67271;
}

.btn--light {
  background: #F7F4F4;
  border: 1px solid #B67271;
  color: #484848;
}

.btn:hover {
  border-color: #484848;
  background: #484848;
  color: #fff;
  box-shadow: none;
}

.second-title {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: end;
}
@media (max-width: 1260px) {
  .second-title {
    justify-content: center;
  }
}

.second-title h2 {
  line-height: 120%;
  font-weight: 400;
  max-width: 625px;
  text-align: center;
  margin: 0;
  font-size: 60px;
  color: #484848;
  font-family: "GFS Didot", sans-serif;
}
@media (max-width: 992px) {
  .second-title h2 {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  .second-title h2 {
    font-size: 46px;
  }
}
@media (max-width: 480px) {
  .second-title h2 {
    font-size: 38px;
  }
}
@media (max-width: 390px) {
  .second-title h2 {
    font-size: 32px;
  }
}

.second-title::before {
  content: "";
  height: 17px;
  max-width: 292px;
  width: 100%;
  display: block;
  background-image: url("../svg/line-left.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  position: relative;
  z-index: 2;
}
@media (max-width: 1260px) {
  .second-title::before {
    display: none;
  }
}

.second-title::after {
  content: "";
  height: 17px;
  max-width: 292px;
  width: 100%;
  display: block;
  background-image: url("../svg/line-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  position: relative;
  z-index: 2;
}
@media (max-width: 1260px) {
  .second-title::after {
    display: none;
  }
}

.swiper {
  overflow-x: clip;
}

.btn-slider {
  outline: none;
  border: none;
  background-color: transparent;
  width: 52px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  cursor: pointer;
  transition: 0.4s;
}

.btn-prev {
  background-image: url("../svg/prev.svg");
}

.btn-next {
  background-image: url("../svg/next.svg");
}

.btn-next:hover {
  background-image: url("../svg/next-hover.svg");
}

.btn-prev:hover {
  background-image: url("../svg/prev-hover.svg");
}

.form-input {
  border: 1px solid #484848;
  padding: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  border-radius: 2px;
  background-color: transparent;
  color: #484848;
  outline: none;
  font-family: "Quicksand", sans-serif;
}
.form-input::placeholder {
  color: #BC9C79;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  font-family: "Quicksand", sans-serif;
}
@media (max-width: 768px) {
  .form-input {
    font-size: 16px;
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .form-input {
    font-size: 14px;
    padding-right: 10px;
  }
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #BC9C79;
  opacity: 50%;
  transition: 0.4s;
}
@media (max-width: 480px) {
  .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
  }
}

.swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background-color: #BC9C79;
  opacity: 1;
}
@media (max-width: 480px) {
  .swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
  }
}

.hide {
  display: none;
}

@media (max-width: 1300px) {
  .container {
    margin: 0 15px;
  }
}
.header {
  position: relative;
  padding: 10px 0;
  z-index: 1;
  transition: 0.4s;
}
.header .container {
  display: flex;
  gap: 40px;
}
@media (max-width: 992px) {
  .header .container {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .header .container {
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 375px) {
  .header .container {
    gap: 15px;
  }
}
.header__logo {
  height: 50px;
}
@media (max-width: 375px) {
  .header__logo {
    height: 30px;
  }
}
.header__menu {
  display: flex;
  gap: 40px;
  padding: 15px 0;
  list-style: none;
  margin: 0;
}
@media (max-width: 1050px) {
  .header__menu {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .header__menu {
    padding: 0;
    flex-direction: column;
    gap: 10px;
  }
}
.header__link {
  color: #484848;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 4%;
  text-transform: uppercase;
  transition: 0.4s;
  border-bottom: 1px solid transparent;
}
.header__link:hover {
  color: #B67271;
  border-color: #B67271;
}
.header__burger {
  display: none;
  outline: none;
  border: none;
  background-color: transparent;
  background-image: url("../svg/burger.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 40px;
  height: 26px;
  cursor: pointer;
  transition: 0.4s;
}
@media (max-width: 768px) {
  .header__burger {
    display: block;
  }
}
@media (max-width: 375px) {
  .header__burger {
    width: 30px;
    height: 30px;
  }
}
.header__burger.close {
  background-image: url("../svg/menu-close.svg");
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    background-color: #F7F4F4;
    padding: 10px 25px 20px 25px;
    width: 100%;
    left: 0;
    top: 70px;
    z-index: 10;
  }
}
@media (max-width: 480px) {
  .header__nav {
    padding: 20px 15px;
  }
}
@media (max-width: 375px) {
  .header__nav {
    top: 50px;
  }
}
.header__btn {
  display: none;
  box-shadow: 5px 5px 20px 0px rgba(72, 72, 72, 0.2);
  padding: 10px 20px;
  height: 40px;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 2%;
  margin-left: auto;
  text-transform: uppercase;
  z-index: 101;
}
@media (max-width: 480px) {
  .header__btn {
    padding: 6px 15px;
    font-size: 14px;
    height: 30px;
  }
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #F7F4F4;
  z-index: 100;
}
.header.fixed .header__btn {
  display: block;
}
.header.open {
  background-color: #F7F4F4;
}

.home {
  margin-top: 70px;
  margin-bottom: 164px;
}
.home__info {
  position: relative;
  max-width: 625px;
  z-index: 2;
}
@media (max-width: 992px) {
  .home__info {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .home__info {
    z-index: 0;
  }
}
.home__title {
  font-family: "GFS Didot", sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .home__title {
    font-size: 62px;
  }
}
@media (max-width: 768px) {
  .home__title {
    font-size: 50px;
  }
}
@media (max-width: 480px) {
  .home__title {
    font-size: 42px;
    margin-bottom: 10px;
  }
}
@media (max-width: 360px) {
  .home__title {
    font-size: 36px;
  }
}
.home__subtitle {
  font-size: 18px;
  line-height: 120%;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .home__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .home__subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.home__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .home__btns {
    gap: 10px;
    margin-bottom: 20px;
  }
}
.home__reviews {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.home__reviews-list {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  margin-right: 20px;
}
.home__reviews_photo {
  position: relative;
  width: 36px;
}
.home__reviews_photo img {
  max-width: 56px;
  width: 56px;
  height: 56px;
  border-radius: 80px;
  border: 1px solid #F7F4F4;
  object-fit: cover;
}
.home__reviews-rating {
  display: flex;
  gap: 10px;
}
.home__reviews-rating-number {
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 480px) {
  .home__reviews-rating-number {
    font-size: 16px;
  }
}
@media (max-width: 390px) {
  .home__reviews-rating-number {
    font-size: 14px;
  }
}
.home__reviews-stars {
  display: flex;
}
.home__reviews-star {
  width: 22px;
  height: 22px;
  background-image: url("../svg/star.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 480px) {
  .home__reviews-star {
    width: 17px;
    height: 17px;
  }
}
@media (max-width: 480px) {
  .home__reviews {
    gap: 10px;
  }
}
.home__reviews-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home__reviews-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 4%;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .home__reviews-title {
    font-size: 16px;
  }
}
.home::before {
  content: "";
  position: absolute;
  width: 582px;
  height: 700px;
  display: block;
  background-image: url("../img/home/spot.png");
  transform: rotate(-90deg);
  opacity: 50%;
  left: 0;
  top: -70px;
}
@media (max-width: 768px) {
  .home::before {
    top: -24%;
  }
}
.home__image {
  position: absolute;
  max-width: 897px;
  top: -140px;
  right: 0;
}
@media (max-width: 1380px) {
  .home__image {
    max-width: 797px;
  }
}
@media (max-width: 1230px) {
  .home__image {
    max-width: 697px;
  }
}
@media (max-width: 1120px) {
  .home__image {
    max-width: 597px;
  }
}
@media (max-width: 992px) {
  .home__image {
    position: relative;
    max-width: 100%;
    top: -30px;
  }
}
@media (max-width: 768px) {
  .home__image {
    top: 0;
  }
}
.home .container {
  position: relative;
}
@media (max-width: 992px) {
  .home .container {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .home {
    margin-top: 60px;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .home {
    position: relative;
    overflow-x: clip;
    margin-top: 50px;
  }
}
@media (max-width: 480px) {
  .home {
    margin-top: 30px;
  }
}

.services {
  margin-bottom: 140px;
  background-image: url("../img/services/back.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.services .container {
  position: relative;
}
.services .second-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .services .second-title {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .services .second-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .services .second-title {
    margin-bottom: 40px;
  }
}
.services__slider {
  margin: 0 92px;
  height: 614px;
}
@media (max-width: 1130px) {
  .services__slider {
    height: auto;
  }
}
@media (max-width: 1080px) {
  .services__slider {
    box-shadow: 10px 15px 50px 0px rgba(72, 72, 72, 0.2);
  }
}
@media (max-width: 860px) {
  .services__slider {
    margin: 0 42px;
  }
}
@media (max-width: 678px) {
  .services__slider {
    margin: 0;
  }
}
.services__slide {
  padding: 0 90px;
}
.services__slide-wrapper {
  background: linear-gradient(0deg, #F4EEEE, #F4EEEE), linear-gradient(0deg, #FCF7F3, #FCF7F3), linear-gradient(0deg, #F7F4F3, #F7F4F3);
  box-shadow: 10px 15px 50px 0px rgba(72, 72, 72, 0.2);
  padding: 40px 40px 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1080px) {
  .services__slide-wrapper {
    box-shadow: none;
  }
}
@media (max-width: 678px) {
  .services__slide-wrapper {
    padding: 20px 20px 30px 20px;
  }
}
@media (max-width: 1080px) {
  .services__slide {
    padding: 0;
  }
}
.services__photo {
  height: 360px;
}
.services__photo img {
  width: 100%;
  object-fit: cover;
  max-height: 100%;
  height: 100%;
}
@media (max-width: 1130px) {
  .services__photo {
    height: 260px;
  }
}
@media (max-width: 480px) {
  .services__photo {
    height: 160px;
  }
}
@media (max-width: 360px) {
  .services__photo {
    height: 106px;
  }
}
.services__slider-nav {
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: space-between;
  top: 50%;
}
@media (max-width: 1080px) {
  .services__slider-nav {
    display: none;
  }
}
.services__slide-name {
  font-size: 40px;
  line-height: 120%;
  font-weight: 400;
  font-family: "GFS Didot", sans-serif;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .services__slide-name {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .services__slide-name {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .services__slide-name {
    font-size: 24px;
  }
}
.services__price {
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 4%;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .services__price {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .services__price {
    font-size: 16px;
  }
}
.services__slide-info {
  text-align: center;
}
.services__link {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 1130px) {
  .services .swiper-wrapper {
    height: auto;
  }
}
.services__controls {
  display: none;
}
@media (max-width: 1080px) {
  .services__controls {
    display: flex;
    position: relative;
    margin-top: 15px;
  }
}
@media (max-width: 480px) {
  .services__controls {
    margin-top: 40px;
  }
}
@media (max-width: 992px) {
  .services {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .services {
    margin-bottom: 80px;
  }
}

.advantages {
  position: relative;
  margin-bottom: 140px;
}
.advantages__list .swiper-wrapper {
  gap: 40px;
  justify-content: space-between;
  height: auto;
}
@media (max-width: 1320px) {
  .advantages__list .swiper-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .advantages__list .swiper-wrapper {
    gap: 0;
    flex-wrap: unset;
  }
}
@media (max-width: 480px) {
  .advantages__list {
    overflow-x: clip;
  }
}
@media (max-width: 992px) {
  .advantages {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .advantages {
    margin-bottom: 80px;
  }
}
.advantages__controls {
  display: none;
}
@media (max-width: 480px) {
  .advantages__controls {
    display: flex;
    position: relative;
    margin-top: 40px;
  }
}

.advantage {
  max-width: 292px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  height: auto;
}
.advantage__image {
  width: 182px;
  height: 182px;
  object-fit: contain;
}
.advantage__name {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 4%;
  text-transform: uppercase;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .advantage__name {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .advantage__name {
    font-size: 16px;
  }
}
.advantage__desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 768px) {
  .advantage__desc {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .advantage__desc {
    font-size: 14px;
  }
}
@media (max-width: 1130px) {
  .advantage {
    max-width: 100%;
    width: calc(50% - 20px);
  }
}

.about {
  margin-bottom: 80px;
}
.about .container {
  position: relative;
}
.about .container::before {
  content: "";
  width: 926px;
  height: 698px;
  display: block;
  background-image: url("../img/about/spot.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
}
.about__title {
  position: relative;
  z-index: 2;
}
.about__block {
  margin: 0 auto;
  margin-top: 80px;
  max-width: 926px;
  border-radius: 2px;
  box-shadow: 10px 15px 50px 0px rgba(72, 72, 72, 0.2);
  background: linear-gradient(0deg, #F4EEEE, #F4EEEE), linear-gradient(0deg, #FCF7F3, #FCF7F3), linear-gradient(0deg, #F7F4F3, #F7F4F3);
  display: flex;
  gap: 40px;
  padding: 40px 40px 50px 40px;
  height: 538px;
  position: relative;
  z-index: 2;
}
@media (max-width: 990px) {
  .about__block {
    height: auto;
    gap: 20px;
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .about__block {
    flex-direction: column;
    margin-top: 50px;
  }
}
@media (max-width: 480px) {
  .about__block {
    margin-top: 40px;
    padding: 20px 20px 30px 20px;
  }
}
.about__left {
  width: 100%;
  max-width: 221px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .about__left {
    max-width: 100%;
    gap: 10px;
  }
}
.about__data-item {
  padding: 12px 0;
  border-bottom: 1px solid #BC9C79;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about__data-info {
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  font-family: "GFS Didot", sans-serif;
  max-width: 112px;
  width: 100%;
}
.about__data-text {
  width: 100%;
  max-width: 109px;
}
@media (max-width: 768px) {
  .about__data-text {
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .about__data-text {
    max-width: 138px;
  }
}
.about__right-title {
  font-family: "GFS Didot", sans-serif;
  font-size: 40px;
  line-height: 120%;
  font-weight: 400;
  margin-bottom: 40px;
  position: relative;
}
.about__right-title::after {
  content: "";
  width: 112px;
  display: block;
  border-bottom: 1px solid #BC9C79;
  position: absolute;
  bottom: -20px;
}
@media (max-width: 992px) {
  .about__right-title {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  .about__right-title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .about__right-title {
    font-size: 24px;
  }
}
.about__right-descr {
  font-size: 18px;
  line-height: 120%;
}
.about__right-descr p {
  margin-bottom: 25px;
}
.about__right-descr p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .about__right-descr {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .about__right-descr {
    font-size: 14px;
  }
}
.about__photo img {
  border-radius: 2px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .about__photo img {
    object-position: center;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .about__photo {
    width: 100%;
    height: 380px;
  }
}
@media (max-width: 390px) {
  .about__photo {
    height: 276px;
  }
}
@media (max-width: 768px) {
  .about {
    margin-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .about {
    margin-bottom: 40px;
  }
}

.office {
  margin-bottom: 140px;
}
.office .container {
  position: relative;
}
.office__slide {
  height: 400px;
}
.office__slide img {
  height: 100%;
  object-fit: cover;
}
.office__slider {
  max-width: 1106px;
  margin: 0 auto;
}
@media (max-width: 1260px) {
  .office__slider {
    max-width: 900px;
  }
}
.office__slide-btns {
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: space-between;
  top: 160px;
}
@media (max-width: 1080px) {
  .office__slide-btns {
    display: none;
  }
}
.office__cotnrols {
  display: none;
}
@media (max-width: 1080px) {
  .office__cotnrols {
    display: flex;
    position: relative;
    margin-top: 15px;
  }
}
@media (max-width: 992px) {
  .office {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .office {
    margin-bottom: 80px;
  }
}

.compare {
  margin-bottom: 140px;
}
.compare__wrapper {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 1080px) {
  .compare__wrapper {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .compare__wrapper {
    margin-top: 60px;
  }
}
@media (max-width: 900px) {
  .compare__wrapper {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .compare__wrapper {
    margin-top: 50px;
  }
}
@media (max-width: 480px) {
  .compare__wrapper {
    margin-top: 40px;
  }
}
.compare__col {
  width: calc(50% - 20px);
}
.compare__col-title {
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  font-family: "GFS Didot", sans-serif;
  margin: 0;
  margin-bottom: 20px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .compare__col-title {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  .compare__col-title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .compare__col-title {
    font-size: 24px;
  }
}
.compare__col-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.compare__col-item {
  display: flex;
  padding: 12px 0;
  gap: 20px;
  align-items: center;
  background-image: url("../img/compare/pain.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: right;
}
.compare__col-item-title {
  font-size: 20px;
  line-height: 120%;
  font-weight: 700;
  letter-spacing: 4%;
  text-transform: uppercase;
  margin-bottom: 6px;
}
@media (max-width: 992px) {
  .compare__col-item-title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .compare__col-item-title {
    font-size: 16px;
  }
}
.compare__col-item-text {
  font-size: 18px;
  line-height: 120%;
  font-weight: 400;
}
@media (max-width: 992px) {
  .compare__col-item-text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .compare__col-item-text {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .compare__col-item {
    gap: 10px;
    padding: 10px 0;
  }
}
@media (max-width: 900px) {
  .compare__col {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .compare {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .compare {
    margin-bottom: 80px;
  }
}

.reviews {
  margin-bottom: 140px;
}
.reviews .container {
  position: relative;
}
.reviews__slider {
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 40px;
  max-width: 1106px;
}
.reviews__slider .swiper-wrapper {
  height: auto;
}
@media (max-width: 1260px) {
  .reviews__slider {
    max-width: 900px;
  }
}
@media (max-width: 1080px) {
  .reviews__slider {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .reviews__slider {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .reviews__slider {
    margin-top: 50px;
  }
}
@media (max-width: 480px) {
  .reviews__slider {
    margin-top: 40px;
  }
}
.reviews__slide {
  max-height: fit-content;
}
.reviews__author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .reviews__author {
    margin-bottom: 10px;
  }
}
.reviews__photo {
  width: 56px;
  height: 56px;
}
.reviews__photo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.reviews__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 4%;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .reviews__name {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .reviews__name {
    font-size: 16px;
  }
}
.reviews__text {
  font-size: 18px;
  line-height: 120%;
  font-weight: 400;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .reviews__text {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .reviews__text {
    font-size: 14px;
  }
}
.reviews__slider-btn {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  top: 249px;
}
@media (max-width: 1080px) {
  .reviews__slider-btn {
    display: none;
  }
}
.reviews__note {
  text-align: center;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0;
  margin-bottom: 80px;
}
@media (max-width: 1080px) {
  .reviews__note {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .reviews__note {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.reviews__google-slide img {
  width: 100%;
}
.reviews__google-slider {
  max-width: 1106px;
  margin: 0 auto;
}
.reviews__google-slider .swiper-wrapper {
  height: auto;
}
@media (max-width: 1260px) {
  .reviews__google-slider {
    max-width: 900px;
  }
}
.reviews__google-btns {
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: absolute;
  bottom: 83px;
}
@media (max-width: 1080px) {
  .reviews__google-btns {
    display: none;
  }
}
.reviews__google-btns.hide {
  display: none;
}
.reviews__controls, .reviews__google-controls {
  display: none;
}
@media (max-width: 1080px) {
  .reviews__controls, .reviews__google-controls {
    display: flex;
    position: relative;
    margin-top: 40px;
  }
}
@media (max-width: 992px) {
  .reviews {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .reviews {
    margin-bottom: 80px;
  }
}

.method {
  overflow-x: clip;
  margin-bottom: 140px;
}
.method__subtitle {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 102px;
  text-align: center;
  font-size: 18px;
  line-height: 120%;
  max-width: 625px;
  position: relative;
}
.method__subtitle::after {
  content: "";
  width: 611px;
  height: 274px;
  display: block;
  background-image: url("../svg/line-vawe.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -43px;
  max-width: 100%;
}
@media (max-width: 992px) {
  .method__subtitle {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .method__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .method__subtitle {
    font-size: 14px;
  }
}
@media (max-width: 350px) {
  .method__subtitle {
    margin-bottom: 40px;
  }
}
.method__list .swiper-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  height: auto;
}
@media (max-width: 480px) {
  .method__list .swiper-wrapper {
    display: flex;
    gap: unset;
  }
}
@media (max-width: 480px) {
  .method__list {
    overflow-x: clip;
  }
}
.method__item {
  display: flex;
  gap: 40px;
  align-items: center;
  height: auto;
}
.method__item-image {
  max-width: 182px;
  width: 100%;
}
.method__item-image img {
  width: 100%;
}
.method__item-info {
  padding: 30px 0;
}
@media (max-width: 1080px) {
  .method__item-info {
    padding: 0;
  }
}
.method__item-title {
  font-size: 20px;
  line-height: 120%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4%;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .method__item-title {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .method__item-title {
    font-size: 16px;
  }
}
.method__item-descr {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
}
@media (max-width: 768px) {
  .method__item-descr {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .method__item-descr {
    font-size: 14px;
  }
}
@media (max-width: 1080px) {
  .method__item {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .method__item {
    gap: 20px;
  }
}
.method__controls {
  display: none;
}
@media (max-width: 480px) {
  .method__controls {
    display: flex;
    position: relative;
    margin-top: 40px;
  }
}
@media (max-width: 992px) {
  .method {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .method {
    margin-bottom: 80px;
  }
}

.contact {
  position: relative;
  background-image: url("../img/services/back.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: 140px;
  overflow-x: clip;
}
.contact__info {
  margin: 80px auto;
  max-width: 926px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .contact__info {
    margin: 60px auto;
  }
}
@media (max-width: 768px) {
  .contact__info {
    margin: 50px auto;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .contact__info {
    margin: 40px auto;
  }
}
.contact__title {
  position: relative;
  z-index: 2;
}
.contact__address {
  font-size: 20px;
  line-height: 120%;
  font-weight: 700;
  letter-spacing: 4%;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .contact__address {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .contact__address {
    font-size: 16px;
  }
}
.contact__phone {
  font-size: 40px;
  line-height: 120%;
  font-weight: 400;
  text-align: center;
  color: #484848;
  font-family: "GFS Didot", sans-serif;
}
@media (max-width: 768px) {
  .contact__phone {
    font-size: 34px;
  }
}
@media (max-width: 480px) {
  .contact__phone {
    font-size: 24px;
  }
}
.contact__btn {
  text-align: center;
}
.contact__slogan {
  color: #B67271;
  font-size: 70px;
  line-height: 120%;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  font-family: "GFS Didot", sans-serif;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .contact__slogan {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .contact__slogan {
    font-size: 50px;
  }
}
@media (max-width: 480px) {
  .contact__slogan {
    font-size: 36px;
  }
}
.contact::before {
  content: "";
  height: 915px;
  width: 1214px;
  display: block;
  background-image: url("../img/about/spot.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  left: -40%;
  top: -15%;
  opacity: 70%;
}
@media (max-width: 1380px) {
  .contact::before {
    left: -60%;
  }
}
@media (max-width: 1080px) {
  .contact::before {
    left: -100%;
  }
}
@media (max-width: 768px) {
  .contact::before {
    left: -130%;
  }
}
@media (max-width: 678px) {
  .contact::before {
    left: -100%;
    width: 708px;
    height: 534px;
  }
}
@media (max-width: 480px) {
  .contact::before {
    left: -135%;
  }
}
@media (max-width: 360px) {
  .contact::before {
    left: -160%;
  }
}
@media (max-width: 330px) {
  .contact::before {
    left: -180%;
  }
}
.contact::after {
  content: "";
  height: 915px;
  width: 1214px;
  display: block;
  background-image: url("../img/about/spot.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  opacity: 70%;
  right: -40%;
  top: -15%;
}
@media (max-width: 1380px) {
  .contact::after {
    right: -60%;
  }
}
@media (max-width: 1080px) {
  .contact::after {
    right: -100%;
  }
}
@media (max-width: 768px) {
  .contact::after {
    right: -130%;
  }
}
@media (max-width: 678px) {
  .contact::after {
    right: -100%;
    width: 708px;
    height: 534px;
  }
}
@media (max-width: 480px) {
  .contact::after {
    right: -135%;
  }
}
@media (max-width: 360px) {
  .contact::after {
    right: -160%;
  }
}
@media (max-width: 330px) {
  .contact::after {
    right: -180%;
  }
}
@media (max-width: 992px) {
  .contact {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .contact {
    margin-bottom: 80px;
  }
}
@media (max-width: 430px) {
  .contact {
    background-size: 180%;
    background-position: top;
  }
}

.map {
  margin-bottom: 140px;
}
.map__img {
  height: 556px;
  position: relative;
  z-index: 20;
  width: 100%;
}
.map__img iframe {
  border-radius: 2px;
}
@media (max-width: 992px) {
  .map__img {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .map__img {
    height: 350px;
  }
}
@media (max-width: 480px) {
  .map__img {
    height: 568px;
    width: 100%;
  }
}
@media (max-width: 992px) {
  .map {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .map {
    margin-bottom: 80px;
  }
}

.disclaimer {
  position: relative;
  overflow-x: clip;
  margin-bottom: 140px;
}
.disclaimer__wrapper {
  max-width: 926px;
  margin: 0 auto;
  padding: 40px 40px 50px 40px;
  background-image: url("../img/disclaimer/back.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  z-index: 2;
}
@media (max-width: 480px) {
  .disclaimer__wrapper {
    background-image: url("../img/disclaimer/back-mobile.png");
  }
}
@media (max-width: 768px) {
  .disclaimer__wrapper {
    padding: 20px 20px 30px 20px;
  }
}
.disclaimer__title {
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
  text-align: center;
  font-family: "GFS Didot", sans-serif;
  margin: 0;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .disclaimer__title {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  .disclaimer__title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .disclaimer__title {
    font-size: 24px;
  }
}
.disclaimer__descr {
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  font-weight: 400;
  margin-bottom: 20px;
}
.disclaimer__descr p {
  margin-bottom: 10px;
}
.disclaimer__descr p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .disclaimer__descr {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .disclaimer__descr {
    font-size: 14px;
  }
}
.disclaimer__btn {
  text-align: center;
}
.disclaimer::before {
  content: "";
  width: 607px;
  height: 458px;
  display: block;
  background-image: url("../img/about/spot.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  position: absolute;
  right: 0;
  top: -40%;
}
@media (max-width: 768px) {
  .disclaimer::before {
    right: -50%;
  }
}
@media (max-width: 480px) {
  .disclaimer::before {
    top: -10%;
  }
}
@media (max-width: 992px) {
  .disclaimer {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .disclaimer {
    margin-bottom: 80px;
  }
}

.popup {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 250;
  align-items: center;
  justify-content: center;
  display: none;
  position: fixed;
}
.popup__body {
  position: relative;
  background-color: #F7F4F4;
  padding: 60px;
  max-width: 625px;
  max-height: 100%;
  overflow-y: auto;
}
@media (max-width: 635px) {
  .popup__body {
    margin: 0 15px;
    padding: 30px;
  }
}
.popup__title {
  position: relative;
  font-family: "GFS Didot", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 40px;
}
.popup__title::before {
  content: "";
  width: 112px;
  display: block;
  position: absolute;
  border-bottom: 1px solid #BC9C79;
  bottom: -20px;
}
@media (max-width: 992px) {
  .popup__title {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  .popup__title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .popup__title {
    font-size: 24px;
  }
}
.popup .form-input {
  width: 100%;
}
.popup__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0;
}
.popup__form p {
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 768px) {
  .popup__form p {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .popup__form p {
    font-size: 14px;
  }
}
.popup__form-policy {
  padding: 20px 0;
}
.popup__form-policy input {
  display: none;
}
.popup__form-policy input:checked + label::after {
  opacity: 1;
}
.popup__form-policy label {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  font-size: 18px;
  line-height: 120%;
  font-weight: 400;
}
.popup__form-policy label a {
  color: #484848;
  text-decoration: underline;
}
.popup__form-policy label::before {
  content: "";
  display: block;
  min-width: 30px;
  height: 30px;
  border: 1px solid #484848;
  border-radius: 2px;
}
@media (max-width: 480px) {
  .popup__form-policy label::before {
    min-width: 25px;
    height: 25px;
  }
}
.popup__form-policy label::after {
  content: "";
  opacity: 0;
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../svg/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 6px;
  transition: 0.4s;
}
@media (max-width: 480px) {
  .popup__form-policy label::after {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 768px) {
  .popup__form-policy label {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .popup__form-policy label {
    gap: 10px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .popup__form-policy {
    padding: 10px 0;
  }
}
@media (max-width: 390px) {
  .popup__form-submit input {
    width: 100%;
  }
}
.popup__form-error {
  display: none;
  font-size: 16px;
}
@media (max-width: 390px) {
  .popup__form-captcha {
    transform: scale(0.8);
    max-width: 100px;
  }
}
@media (max-width: 340px) {
  .popup__form-captcha {
    transform: scale(0.7);
  }
}
.popup__close {
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 30px;
}
.popup__close svg * {
  transition: 0.4s;
}
.popup__close:hover svg * {
  stroke: #484848;
}
@media (max-width: 480px) {
  .popup__close {
    top: 2px;
    right: 0;
  }
}
/*# sourceMappingURL=main.css.map */
