@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Rubik:wght@400;500;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  color: #000000;
}

a {
  text-decoration: none;
  color: #000000;
}

ul {
  list-style-type: none;
}

input, button,
input:focus, button:focus {
  outline: none;
  background: transparent;
  border: 0;
}

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

h1, .h1 {
  font-size: 36px;
  line-height: 1.185;
  font-weight: 500;
}

h2, .h2 {
  font-size: 32px;
  line-height: 1.185;
  font-weight: 500;
}

h3, .h3 {
  font-size: 24px;
  line-height: 1.185;
  font-weight: 500;
}

h4, .h4 {
  font-size: 20px;
  line-height: 1.185;
  font-weight: 700;
}

.desc {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #73788C;
}

@media (max-width: 768px) {
  h2, .h2 {
    font-size: 28px;
  }
  h4, .h4 {
    font-size: 18px;
  }
  .desc {
    font-size: 15px;
  }
}
@media (max-width: 425px) {
  h1, .h1 {
    font-size: 32px;
  }
  h2, .h2 {
    font-size: 20px;
  }
  h4, .h4 {
    font-size: 18px;
  }
  .desc {
    font-size: 15px;
  }
}
.container {
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}

.phone {
  color: #3B3B3B;
}
.phone > a {
  display: inline-flex;
  gap: 6px;
  padding: 9px 22px 10px 12px;
  border-radius: 26px;
  background: #fff;
}
.phone > a > span {
  font-weight: 700;
  font-size: 20px;
}

.dashed-btn {
  display: inline-block;
  color: #92AA44;
  border: 1px dashed #92AA44;
  border-radius: 12px;
  background-color: #fff;
  transition: color 0.3s linear;
  transition: background-color 0.3s linear;
}
.dashed-btn:hover {
  background-color: #92AA44;
  color: #fff;
}

body.active {
  overflow: hidden;
}

/* Slider */
.swiper {
  padding: 75px 0;
}

.reviews__title {
  margin-bottom: 44px;
  text-transform: uppercase;
  text-align: center;
}

.reviews__items {
  display: grid;
  justify-content: stretch;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 20px;
}
@media (max-width: 992px) {
  .reviews__items {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
}
@media (max-width: 590px) {
  .reviews__items {
    grid-template-columns: repeat(1, minmax(100px, 1fr));
  }
}

.review {
  background-color: #ffffff;
  padding: 12px;
  border-width: 0;
  border-color: transparent;
  border-radius: 10px;
  border-style: solid;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.review-header {
  position: relative;
  text-align: left;
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 0px;
  height: 65px;
  box-sizing: border-box;
  outline: 0;
  width: auto;
  float: none;
}

.review-user-avatar {
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  flex-shrink: 0;
  display: flex;
}

.review-user {
  display: flex;
  flex-flow: column;
  justify-content: center;
  position: relative;
  width: 100%;
}
.review-user .name {
  font-size: 14px;
  line-height: 1.5rem;
  font-weight: 700;
}
.review-user .rate {
  display: flex;
  gap: 2px;
}

.review-message {
  flex: 1;
}
.review-message .body {
  font-size: 14px;
  text-align: left;
  line-height: 1.3;
  color: #333;
  -webkit-box-align: center;
  align-items: start;
  overflow: hidden;
  display: flex;
  max-height: 3lh;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.review-message .images {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  padding: 7px 0;
  align-content: space-between;
}
.review-message .images a {
  background-position: center;
  background-size: cover;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  border: 1px solid #c4c4c4;
}

.hidden-reviews {
  display: none;
  margin-top: 20px;
}

.show-reviews {
  display: block;
}

.hdesc__gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 15px;
  height: 450px;
}
@media (max-width: 921px) {
  .hdesc__gallery {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .hdesc__gallery {
    grid-template-columns: 1fr;
    height: auto;
  }
}
.hdesc__gallery .main-image {
  position: relative;
  min-height: 400px;
}
@media (max-width: 550px) {
  .hdesc__gallery .main-image {
    min-height: 300px;
  }
}
@media (max-width: 400px) {
  .hdesc__gallery .main-image {
    min-height: 250px;
  }
}
@media (max-width: 360px) {
  .hdesc__gallery .main-image {
    min-height: 180px;
  }
}
.hdesc__gallery .main-image a {
  position: absolute;
  width: 100%;
  height: 100%;
}
.hdesc__gallery .main-image a img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  border-radius: 4px;
}
.hdesc__gallery .small-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  overflow-y: auto;
}
@media (max-width: 920px) {
  .hdesc__gallery .small-images {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .hdesc__gallery .small-images {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 400px) {
  .hdesc__gallery .small-images {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hdesc__gallery .small-images .thumb {
  cursor: pointer;
}
.hdesc__gallery .small-images .thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  border-radius: 4px;
}

/* Header */
header {
  padding: 18px 0;
  background-color: #F5F5F5;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__social {
  flex-basis: 33%;
  display: flex;
  gap: 7px;
}
.header__social > a {
  width: 43px;
  height: 43px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 425px) {
  .header__social {
    flex-direction: column;
  }
}

.header__logo {
  display: flex;
  justify-content: center;
  flex-basis: 33%;
}

.header__phone {
  flex-basis: 33%;
}
.header__phone > a {
  float: right;
  align-items: center;
}
@media (max-width: 920px) {
  .header__phone > a span {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 768px) {
  .header__phone > a {
    gap: 0;
    padding: 8px;
  }
  .header__phone > a span {
    display: none;
  }
}

.header__navigation {
  margin-top: 43px;
  display: flex;
  justify-content: center;
}
.header__navigation > ul {
  gap: 24px;
  display: flex;
}
@media (max-width: 1024px) {
  .header__navigation > ul {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .header__navigation > ul {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .header__navigation {
    margin-top: 0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    flex-direction: column;
    background-color: rgba(95, 107, 57, 0.9);
    z-index: 1000;
    display: none;
  }
}
.header__navigation.active {
  display: flex;
}

.header__navigation-cross {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  display: none;
}
.header__navigation-cross.active {
  display: block;
}
.header__navigation-cross::before, .header__navigation-cross::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  background: #F5F5F5;
  width: 1px;
  height: 100%;
  transform-origin: bottom;
}
.header__navigation-cross::before {
  left: 0;
  transform: rotate(45deg);
}
.header__navigation-cross::after {
  right: 8px;
  transform: rotate(-45deg);
}

.header__navigation-item > a {
  text-transform: uppercase;
  font-size: 15px;
  line-height: 17.78px;
  color: #575252;
  transition: color 0.3s linear;
}
.header__navigation-item > a:hover {
  color: #92AA44;
}
@media (max-width: 768px) {
  .header__navigation-item > a {
    color: #F5F5F5;
  }
}

.burger {
  width: 32px;
  height: 32px;
  margin: 12px auto 0;
  background-color: #fff;
  border-radius: 26px;
  padding: 24px;
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 1000;
  display: none;
}
.burger span {
  width: 28px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #92AA44;
}
.burger span::before, .burger span::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 2px;
  background-color: #92AA44;
}
.burger span::before {
  top: -10px;
}
.burger span::after {
  bottom: -10px;
}
@media (max-width: 768px) {
  .burger {
    display: block;
  }
}
.burger.active {
  display: none;
}

/* Intro */
.intro {
  background: #F5F5F5;
  padding-top: 40px;
  padding-bottom: 28px;
}
@media (max-width: 425px) {
  .intro {
    padding-top: 28px;
  }
}

.intro__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .intro__inner {
    flex-wrap: wrap;
  }
}

.intro__content {
  padding-left: 50px;
  flex-basis: 41%;
}
@media (max-width: 1024px) {
  .intro__content {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .intro__content {
    flex-basis: 100%;
  }
}

.intro__title {
  margin-bottom: 12px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .intro__title {
    font-size: 28px;
    line-height: 1.185;
    font-weight: 500;
  }
}

.intro__gallery {
  display: flex;
  gap: 24px;
  flex-basis: 58%;
}
@media (max-width: 768px) {
  .intro__gallery {
    flex-basis: 100%;
  }
}
.intro__gallery .intro__img {
  border-radius: 26px;
  height: 364px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.intro__gallery .intro__img:nth-child(1) {
  background-image: url("../img/intro-imgs/1.jpg");
  flex-basis: 48%;
}
@media (max-width: 425px) {
  .intro__gallery .intro__img:nth-child(1) {
    flex-basis: 100%;
  }
}
.intro__gallery .intro__img:nth-child(2) {
  background-image: url("../img/intro-imgs/2.jpg");
  flex-basis: 31%;
}
@media (max-width: 425px) {
  .intro__gallery .intro__img:nth-child(2) {
    flex-basis: 100%;
  }
}
.intro__gallery .intro__img:nth-child(3) {
  background-image: url("../img/intro-imgs/3.jpg");
  flex-basis: 20%;
}
@media (max-width: 425px) {
  .intro__gallery .intro__img:nth-child(3) {
    flex-basis: 100%;
  }
}
@media (max-width: 768px) {
  .intro__gallery .intro__img {
    height: 200px;
  }
}
@media (max-width: 1024px) {
  .intro__gallery .intro__img {
    height: 250px;
  }
}
@media (max-width: 768px) {
  .intro__gallery .intro__img {
    height: 200px;
  }
}
@media (max-width: 650px) {
  .intro__gallery .intro__img {
    height: 150px;
  }
}
/* House pick carousel */
.choice {
  padding: 75px 0;
}
.choice .house__dots {
  position: relative;
  background: transparent;
}
@media (max-width: 768px) {
  .choice {
    padding: 40px 0;
  }
}

.choice__inner {
  position: relative;
}

.house__title {
  color: #000000;
  margin-bottom: 10px;
  text-align: left;
  padding-left: 210px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .house__title {
    padding-left: 0px;
  }
}
@media (max-width: 620px) {
  .house__title {
    font-size: 25px;
  }
}
.house__title > span {
  color: #73788C;
}

.house__info {
  display: flex;
  gap: 32px;
}
@media (max-width: 1024px) {
  .house__info {
    align-items: center;
  }
}
@media (max-width: 768px) {
  .house__info {
    flex-wrap: wrap;
  }
}

.house__img {
  height: 340px;
  margin-left: 28px;
  flex-basis: 54%;
  border-radius: 26px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 1024px) {
  .house__img {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .house__img {
    flex-basis: 100%;
  }
}

.house__review {
  box-shadow: 35px 35px 65px 0px rgba(146, 106, 120, 0.1607843137);
  background-color: #FEFEFF;
  border-radius: 26px;
  padding: 20px 20px 10px;
  text-align: center;
  letter-spacing: 0.25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 24px;
    top: -25px;
}
@media (max-width: 1024px) {
  .house__review {
    top: auto;
    bottom: -20px;
  }
}

.review__tick {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -16px;
  box-shadow: 0px 0px 38px 0px rgba(105, 185, 157, 0.32);
  background: transparent;
}
@media (max-width: 1024px) {
  .review__tick {
    background-color: #fff;
    border-radius: 26px;
  }
}

.review__mark {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  line-height: 1;
  color: #054457;
  margin-bottom: 4px;
}

.review__stars {
  margin-bottom: 14px;
  display: flex;
  gap: 3px;
}

.review__trust {
  color: #A6A6A6;
}

.review__amount {
  margin-top: 2px;
  color: #054457;
}

.house__desc {
  flex-basis: 33%;
  margin-right: 74px;
  padding-top: 10px;
}
@media (max-width: 1024px) {
  .house__desc {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .house__desc {
    flex-basis: 100%;
  }
}

.house__price {
  text-transform: uppercase;
  color: #92AA44;
  margin-bottom: 12px;
}

.house__contacts {
  margin-top: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.house__contacts > div {
  display: flex;
  gap: 12px;
}

.house__btn {
  padding: 12px 28px;
}

.btn {
  padding: 12px 28px;
}

.house__next {
  position: absolute;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media (max-width: 768px) {
  .house__next {
    display: none;
  }
}

.swiper-button-next::after {
  content: "";
  background: url(../img/slider-arrow-right.svg);
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  display: flex;
  justify-content: center;
  gap: 11px;
  bottom: 0;
  margin-top: 57px;
  left: 50%;
  transform: translateX(-50%);
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet, .swiper-pagination-custom .swiper-pagination-bullet, .swiper-pagination-fraction .swiper-pagination-bullet {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #F5F5F5;
  cursor: pointer;
  opacity: 1;
  margin: 0;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper-pagination-custom .swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper-pagination-fraction .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #92AA44;
}

.section-reservation {
  background-color: #f5f5f5;
  margin-top: 75px;
  padding: 35px 0;
}
@media (max-width: 768px) {
  .section-reservation {
    margin-top: 40px;
  }
}
.section-reservation .section-reservation-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Adv */
.adv {
  background-color: #f5f5f5;
  margin-top: 75px;
  padding: 35px 0;
}
@media (max-width: 768px) {
  .adv {
    margin-top: 40px;
  }
}

.adv__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.adv__contacts {
  flex-basis: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .adv__contacts {
    flex-basis: 100%;
  }
}

.adv__content {
  flex-basis: 57.5%;
}
@media (max-width: 768px) {
  .adv__content {
    flex-basis: 100%;
  }
}

.adv__title {
  margin-bottom: 16px;
}

/* Benefits */
.benefits {
  margin-top: 60px;
}

.benefits__inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .benefits__inner {
    gap: 24px;
  }
}

.benefits__benefit {
  background-color: #F5F5F5;
  border-radius: 26px;
  padding: 22px 18px 12px 28px;
  flex-basis: 30%;
}
@media (max-width: 768px) {
  .benefits__benefit {
    flex-basis: 100%;
  }
}

.benefits__benefit-title {
  text-transform: uppercase;
  margin-top: 21px;
  margin-bottom: 7px;
}

/* House Description */
.truncate {
  white-space: nowrap; /* Текст не переносится */
  overflow: hidden; /* Обрезаем всё за пределами блока */
  text-overflow: ellipsis; /* Добавляем многоточие */
  height: 150px;
}

.hdesc {
  margin-top: 162px;
}
@media (max-width: 768px) {
  .hdesc {
    margin-top: 80px;
  }
}

.hdesc__headline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hdesc__title {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}
.hdesc__title h2 > span {
  color: #73788C;
}

.hdesc__btn {
  padding: 12px 24px;
  float: right;
}

.hdesc__desc {
  margin-bottom: 24px;
}

.hdesc__amount {
  margin-top: 20px;
  width: max-content;
  height: 70px;
  background-color: #F5F5F5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  padding: 20px 16px;
}
@media (max-width: 425px) {
  .hdesc__amount {
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
  }
}

.hdesc__people {
  display: flex;
  gap: 8px;
  position: relative;
}
.hdesc__people::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 120%;
  background-color: #d9d9d9;
}
@media (max-width: 425px) {
  .hdesc__people::after {
    display: none;
  }
}

.hdesc__time {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 500;
}
.hdesc__time p > span {
  font-weight: 700;
}

.hdesc__price {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 500;
}
.hdesc__price::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 120%;
  background-color: #d9d9d9;
}
@media (max-width: 425px) {
  .hdesc__price::after {
    display: none;
  }
}
.hdesc__price.no-right-border::after {
  display: none;
}
.hdesc__price p > span {
  font-weight: 700;
}

.hdesc__price-icon {
  position: relative;
}

#rc-bookings-widget-root {
  font-family: "Rubik", sans-serif;
  font-weight: normal;
  position: relative;
  padding-top: 100px;
  border-radius: 26px;
}

@media screen and (max-width: 550px) {
  .rc-search_form {
    height: 320px;
  }
  #rc-bookings-widget-root {
    padding-top: 320px;
  }
}
.rc-search_form {
  position: absolute;
  border-radius: 20px;
  top: 5px;
  width: calc(100% - 30px);
}

.price {
  font-size: 17px;
}

.old-price {
  font-weight: normal;
  font-size: 15px;
  position: relative;
  color: #333;
  text-decoration: none;
}

.old-price:before {
  content: "";
  border-bottom: 2px solid rgba(255, 0, 0, 0.7);
  position: absolute;
  width: 100%;
  height: 65%;
  transform: rotate(12deg);
}

.price-popup {
  display: none;
  position: absolute;
  bottom: -50px;
  left: 50%;
  width: 350px;
  height: 150px;
  padding: 15px;
  border-radius: 7px;
  font-weight: normal;
  font-size: 15px;
  transform: translateX(-50%);
  background-color: #fff;
  cursor: help;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  justify-content: center;
  align-items: flex-start;
  z-index: 999;
}

.hdesc__description {
  margin-top: 60px;
}

.hdesc__description-title {
  margin-bottom: 4px;
  text-transform: uppercase;
}

.hdesc__more span {
  font-weight: 700;
}

.hdesc__more-link {
  display: inline-block;
  margin-top: 12px;
  color: #92AA44;
  padding-right: 5px;
  position: relative;
  cursor: pointer;
}
.hdesc__more-link span {
  font-weight: normal;
}
.hdesc__more-link .shown {
  display: inline;
}
.hdesc__more-link .hidden {
  display: none;
}
.hdesc__more-link::after {
  content: "";
  display: block;
  width: 19px;
  height: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -24px;
  background-image: url(../img/more-arrow.svg);
}
.hdesc__more-link.active::after {
  transform: translateY(-50%) rotate(180deg);
}
.hdesc__more-link.active .shown {
  display: none;
}
.hdesc__more-link.active .hidden {
  display: inline;
}

.hdesc__hidden {
  display: none;
}
.hdesc__hidden.active {
  display: block;
}

.hdesc__about {
  margin-top: 52px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hdesc__about-title {
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hdesc__details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.hdesc__details > div {
  flex-basis: 47%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .hdesc__details > div {
    flex-basis: 100%;
  }
}
.hdesc__details .desc {
  display: flex;
  gap: 12px;
}
.hdesc__details .desc > span {
  color: #000000;
}

/* Places */
.places {
  margin-top: 152px;
  text-align: center;
}
@media (max-width: 768px) {
  .places {
    margin-top: 80px;
  }
}

.places__headline {
  margin-bottom: 84px;
}
@media (max-width: 768px) {
  .places__headline {
    margin-bottom: 40px;
  }
}

.places__title {
  margin-bottom: 16px;
}

.places__list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  row-gap: 48px;
}
@media (max-width: 768px) {
  .places__list {
    row-gap: 24px;
  }
}

.places__place {
  border-radius: 26px;
  background-color: #E2F1E8;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-basis: 30%;
  padding: 24px 20px;
  color: #73788C;
  min-height: 150px;
  margin: 0 auto;
}
.places__place.h3 {
  font-size: 16px;
}
.places__place :not(p) {
  font-weight: 700;
}
@media (max-width: 768px) {
  .places__place {
    flex-basis: 47%;
  }
}
@media (max-width: 640px) {
  .places__place {
    flex-basis: 100%;
  }
}

/* Reviews */
.reviews {
  margin-top: 120px;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .reviews {
    margin-top: 120px;
    margin-bottom: 120px;
  }
}
@media (max-width: 425px) {
  .reviews {
    margin-bottom: 60px;
  }
}

/* Footer */
footer {
  background-color: #F5F5F5;
  padding: 36px 0;
}

.footer__title {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 56px;
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.footer__inner .phone {
  text-align: center;
  display: inline-block;
}
.hdesc__map {
  margin-top: 30px;
}

.footer__logo {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-basis: 100%;
  gap: 12px;
  align-items: center;
}
.footer__logo img {
  width: 150px;
}

@media (max-width: 768px) {
  .footer__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .footer__logo {
    display: flex;
    justify-content: center;
    flex-basis: 100%;
  }
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.footer__contacts > .phone > a {
  padding: 10px 40px;
  width: 100%;
  font-weight: 700;
}
@media (max-width: 768px) {
  .footer__contacts > .phone > a {
    width: auto;
  }
}
@media (max-width: 768px) {
  .footer__contacts {
    flex-basis: 100%;
    align-items: center;
  }
}

.footer__navigation {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 768px) {
  .footer__navigation {
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
  }
}
.footer__navigation ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  margin-left: 0;
  padding-left: 0;
}
.footer__navigation ul a {
  color: #92AA44;
}

.footer__social {
  display: flex;
  width: 250px;
  gap: 32px;
}

.footer__copyright {
  text-align: center;
  margin-top: 120px;
  font-family: "Rubik", sans-serif;
  color: #92AA44;
}
.footer__copyright span {
  font-weight: 700;
}

@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 25px;
  }
}

@media (max-width: 768px) {
  .swiper {
    padding: 30px 0;
  }
}

@media screen and (max-width: 550px) {
  h2 {
    font-size: 20px;
  }
  .hdesc__headline {
    justify-content: center;
    align-items: center;
  }
  .popup-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(17, 93, 20, 0.4);
    z-index: 99;
  }
  .hdesc__amount {
    flex-direction: column;
    height: auto;
    gap: 15px;
  }
  .hdesc__people::after, .hdesc__price::after {
    display: none;
  }
  .hdesc__amount, .hdesc__time {
    width: 100%;
  }
  .hdesc__time .desc {
    width: 100%;
    text-align: center;
  }
  .desc br {
    display: none;
  }
  .price-popup {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/*# sourceMappingURL=main.css.map */
