@charset "UTF-8";
* {
  font-family: "Lato", sans-serif !important;
}

.favorite {
  background: none;
  border: none;
  border-radius: 0;
  display: block;
  padding: 0;
  position: absolute;
  z-index: 2;
}

.favorite img {
  display: block;
  width: 1.6rem;
}

.area-info {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.area-info > * {
  min-height: 1px;
  min-width: 1px;
}

.area-info img {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 4px;
}

.area-info div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.5rem;
}

.area-info div span + span:before {
  content: "•";
  padding: 0 0.6rem;
}

.tag {
  background-color: #f18d3f;
  background-color: var(--color-orange);
  border-radius: 0.8rem;
  color: #fff;
  color: var(--color-white);
  font-family: Lato;
  font-family: var(--header-text-font-family);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.6rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.objects__heading {
  border-bottom: 0.1rem solid #000;
  border-bottom: 0.1rem solid var(--color-black);
  margin-bottom: 4.8rem;
  padding-bottom: 0.4rem;
}

.objects__heading-control {
  background: none;
  border: none;
  border-radius: 0;
  display: none;
  margin-bottom: 0;
  padding: 0 3rem 0 0;
  position: relative;
}

.objects__heading-control:after {
  background: url(../img/dropdown.svg) no-repeat 50% 50%/100% 100%;
  content: "";
  display: block;
  height: 1.6rem;
  margin-top: -0.8rem;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  width: 1.6rem;
}

.objects__heading .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.objects__heading .list > * {
  min-height: 1px;
  min-width: 1px;
}

.objects__heading .list__item_active .list__link {
  font-weight: 700;
}

.objects__heading .list__item + .list__item {
  margin-left: 3.2rem;
}

.objects__heading .list__link {
  font-family: Lato;
  font-family: var(--header-text-font-family);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.1rem;
  cursor: pointer;
}

.objects__heading .list__link:hover {
  color: #696969;
  color: var(--color-dark-grey-2);
}

.objects__list {
  grid-column-gap: 20px;
  grid-row-gap: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.objects__list > * {
  min-height: 1px;
  min-width: 1px;
}

.objects__more {
  margin-top: 24px;
  text-align: center;
}

.objects .objects__more a {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: var(--color-btn);
  color: var(--color-black) !important;
}

.objects .objects__more a:hover {
  background-color: var(--color-btn-h);
}

.object {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 3px;
  background-color: #f4e6cb;
  border-radius: 16px;
  border: 2px solid #f4e6cb;
  position: relative;
}

.object:hover {
  border: 2px solid var(--color-orange);
}

.object > * {
  min-height: 1px;
  min-width: 1px;
}

.object__images {
  margin-bottom: 4px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.object__images .swiper-slide {
  padding-bottom: 66.7%;
  position: relative;
}

.object__images .swiper-slide img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.object__info {
  padding: 8px;
}

.object .favorite {
  right: 8px;
  top: 8px;
  width: 35px;
  height: 34px;
  padding: 8px;
  background-color: var(--color-white);
  border-radius: 34px;
  display: flex;
  align-items: center;
}

.object .favorite svg path {
  stroke: var(--color-black) !important;
  fill: var(--color-white) !important;
}

.object .favorite.active svg path {
  stroke: var(--color-orange) !important;
  fill: var(--color-orange) !important;
}

.object .tag {
  left: -1px;
  top: 16px;
  background: url(../img/tag.png) no-repeat center center;
  width: 135px;
  height: 42px;
  line-height: 22px;
  font-weight: 400;
  font-size: 16px;
  text-transform: none;
  padding: 8px 16px 8px 12px;
}

.object__heading {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

.object__heading > * {
  min-height: 1px;
  min-width: 1px;
}

.object__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.object__title:hover {
  color: #f18d3f;
  color: var(--color-orange);
}

.object .score,
.object__price,
.object__marker {
  font-size: 16px;
  line-height: 22px;
  margin-top: 8px;
  font-family: "Lato", sans-serif;
}

.object__marker .area-info {
  align-items: center;
}

.object__marker .area-info div {
  font-size: 16px;
  line-height: 22px;
}

.object__info .dot {
  display: block;
  width: 2px;
  height: 2px;
  border-radius: 2px;
  background-color: #80899c;
  margin: 0 6px;
}

.object__marker {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 8px;
}

.object__marker > * {
  min-height: 1px;
  min-width: 1px;
}

.object__marker-map a {
  display: inline-block;
  font-family: Lato;
  font-family: var(--header-text-font-family);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  vertical-align: top;
}

.object .area-info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 1rem;
}

.object .area-info div {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.object .button {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-top: 4px;
  width: 100%;
  border-radius: 12px;
  border: none;
  color: var(--color-white);
  background-color: var(--color-orange);
  padding: 11px 20px;
  font-size: 16px;
  line-height: 22px;
  font-weight: bold;
}

.object-row {
  border-bottom: 0.1rem solid #000;
  border-bottom: 0.1rem solid var(--color-black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 2.2rem;
}

.object-row > * {
  min-height: 1px;
  min-width: 1px;
}

.object-row + .object-row {
  margin-top: 2.2rem;
}

.object-row__images {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  height: 17rem;
  position: relative;
  width: 35.7%;
}

.object-row__images .slider-gallery {
  height: 100%;
}

.object-row__images .slider-gallery img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.object-row .favorite {
  right: 0.8rem;
  top: 0.9rem;
  width: 34px;
  height: 34px;
  padding: 8px;
  background-color: var(--color-white);
  border-radius: 34px;
  display: flex;
  align-items: center;
}

.object-row .favorite svg path {
  stroke: var(--color-black) !important;
  fill: var(--color-white) !important;
}

.object-row .favorite.active svg path {
  stroke: var(--color-orange) !important;
  fill: var(--color-orange) !important;
}

.object-row .tag {
  left: 0.8rem;
  top: 0.8rem;
}

.object-row__content {
  -webkit-box-flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
  flex: 1;
  padding-left: 2rem;
}

.object-row__content > * {
  min-height: 1px;
  min-width: 1px;
}

.object-row__description {
  -webkit-box-flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-right: 2rem;
}

.object-row__description > * {
  min-height: 1px;
  min-width: 1px;
}

.object-row__description .area-info {
  width: 100%;
}

.object-row__headnote {
  font-size: 1.5rem;
  line-height: 2.1rem;
  margin-top: -0.5rem;
}

.object-row__headnote button {
  background: none;
  border: none;
  border-bottom: 0.1rem solid;
  border-radius: 0;
  display: inline-block;
  font-family: Lato;
  font-family: var(--header-text-font-family);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6rem;
  margin-left: 4rem;
  margin-top: 0.3rem;
  padding: 0;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
  vertical-align: top;
}

.object-row__headnote button:hover {
  color: #f18d3f;
  color: var(--color-orange);
}

.object-row__heading {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.object-row__heading > * {
  min-height: 1px;
  min-width: 1px;
}

.object-row__heading .object-row__title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 1;
  margin-bottom: 0;
  margin-top: 0;
  padding-right: 2.4rem;
}

.object-row__heading .score {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.object-row__title {
  display: block;
  margin-bottom: 0.4rem;
  margin-top: -0.6rem;
}

.object-row__title:hover {
  color: #f18d3f;
  color: var(--color-orange);
}

.object-row__text span {
  color: #9e9d9c;
  color: var(--color-dark-grey);
}

.object-row__reviews {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: auto;
  margin-top: 1.2rem;
}

.object-row__reviews > * {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  min-height: 1px;
  min-width: 1px;
}

.object-row__reviews a {
  display: block;
  font-family: Lato;
  font-family: var(--header-text-font-family);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-left: 1.8rem;
}

.object-row__features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.2rem;
  line-height: 1.5rem;
  margin-left: -0.8rem;
  margin-top: 2.8rem;
}

.object-row__features > * {
  min-height: 1px;
  min-width: 1px;
}

.object-row__features span {
  -webkit-box-flex: 0;
  display: block;
  -ms-flex: none;
  flex: none;
  margin: 0.4rem 0 0 0.8rem;
  max-width: calc(100% - 0.8rem);
}

.object-row__order {
  -webkit-box-flex: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: none;
  flex: none;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 37.21%;
}

.object-row__order > * {
  min-height: 1px;
  min-width: 1px;
}

.object-row__order .button {
  margin-top: 3.2rem;
}

.object-row__price {
  font-family: Lato;
  font-family: var(--header-text-font-family);
  margin-bottom: auto;
  padding-top: 0.1rem;
}

.object-row__price div {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}

.object-row__price span {
  display: block;
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 0.8rem;
}

.object-row_profile .object-row__images {
  height: auto;
  width: 31.645%;
}

.object-row_profile img {
  display: block;
}

.object-row_profile .object-row__description {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.object-row_profile .object-row__description > * + * {
  margin-top: 1rem;
}

.object-row_profile .object-row__price {
  margin-bottom: 0.8rem;
  margin-top: -0.3rem;
  text-align: right;
}

.object-row_profile .object-row__order {
  width: 12.5rem;
}

.object-row_profile .object-row__order .tag {
  border-radius: 1rem;
  height: 2rem;
  line-height: 2rem;
  position: static;
  text-align: center;
}

.object-row_profile .object-row__order .button {
  margin-top: auto;
}

.guests {
  position: relative;
  width: 100%;
}

.guests.field:before {
  background-image: url(../img/dropdown.svg);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  bottom: 26px;
}

.guests.field .field__input {
  cursor: pointer;
  line-height: 44px;
  height: 44px;
  padding-top: 0;
}

.guests_show.field:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.guests_show .guests__dropdown {
  -webkit-animation: fadeIn 0.25s forwards;
  animation: fadeIn 0.25s forwards;
  display: block;
}

.guests__dropdown {
  background-color: #fbeed7;
  background-color: var(--color-beige-light);
  -webkit-box-shadow: 0 0.8rem 2.2rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.8rem 2.2rem rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  display: none;
  left: 50%;
  max-width: 50rem;
  margin-left: -25rem;
  opacity: 0;
  position: absolute;
  top: 112%;
  width: calc(200% + 1rem);
  z-index: 3;
}

.main-form .guests__dropdown {
  border: 2px solid var(--color-orange);
  border-radius: 16px;
  padding: 0px;
  overflow: hidden;
  background-color: #f4e6cb;
}

.main-form .guests__dropdown .guests__guests {
  padding: 12px;
}

.main-form .guests__dropdown .guests__children {
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-beige-light);
}

.main-form .guests__label div {
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

.main-form .guests__label span {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #434956;
}

.main-form .guests .counter input {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  width: 52px;
  text-align: center;
  color: black;
  -webkit-text-fill-color: black;
  opacity: 1;
}

.guests__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.guests__item > * {
  min-height: 1px;
  min-width: 1px;
}

.guests__label {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.5rem;
  line-height: 2.1rem;
}

.guests__label div {
  margin-bottom: 0.4rem;
}

.guests__label span {
  color: #9e9d9c;
  color: var(--color-dark-grey);
}

.guests .counter {
  -webkit-box-flex: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: none;
  flex: none;
}

.guests .counter > * {
  min-height: 1px;
  min-width: 1px;
}

.guests .counter button {
  border: none;
  border-radius: 0;
  height: 4.8rem;
  padding: 0;
  width: 4.8rem;
}

.guests .counter input {
  background: none;
  border: none;
  border-radius: 0;
  font-size: 1.5rem;
  font-weight: 700;
  height: 4.8rem;
  text-align: center;
  width: 6.4rem;
}

.guests__guests {
  padding: 2rem 1.4rem;
}

.guests__guests .guests__item + .guests__item {
  margin-top: 2rem;
}

.main-form .guests__guests .guests__item + .guests__item {
  margin-top: 12px;
}

.guests__guests .guests__label div {
  font-weight: 700;
}

.main-form .guests__guests .counter button {
  background-color: var(--color-beige-light);
}

.main-form .guests__children .counter button {
  background-color: #f4e6cb;
  border-radius: 48px;
}

.guests__guests .counter button {
  background: #e6c48e;
  background: var(--color-beige);
  border-radius: 50%;
  position: relative;
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
}

.guests__guests .counter button.counter__minus:after {
  display: none;
}

.guests__guests .counter button:after,
.guests__guests .counter button:before {
  background-color: #000;
  background-color: var(--color-black);
  content: "";
  display: block;
  height: 0.2rem;
  left: 50%;
  margin-left: -1rem;
  margin-top: -0.1rem;
  position: absolute;
  top: 50%;
  width: 2rem;
}

.main-form .guests__guests .counter button:hover:after,
.main-form .guests__guests .counter button:hover:before {
  background-color: var(--color-orange);
}

.main-form .guests__children .counter button:hover svg use {
  fill: var(--color-orange);
}

.guests__guests .counter button:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.guests__guests .counter button:hover {
  background-color: #f18d3f;
  background-color: var(--color-orange);
}

.main-form .guests__guests .counter button:hover {
  background-color: var(--color-beige-light);
}

.guests__children .guests__item {
  border: 0.1rem solid #e6c48e;
  border: 0.1rem solid var(--color-beige);
  padding: 0.8rem 1.3rem;
}

.main-form .guests__children .guests__item {
  border: none;
  padding: 12px 12px 12px;
}

.guests__children .guests__item + .guests__item {
  padding: 0 12px 12px;
}

.guests__children .counter button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
}

.guests__children .counter button > * {
  min-height: 1px;
  min-width: 1px;
}

.guests__children .counter button svg {
  margin-left: -0.2rem;
  pointer-events: none;
}

.main-form .guests__children .counter button svg {
  width: 22px !important;
  height: 22px !important;
  margin-left: 0;
}

.guests__children .counter button.counter__minus {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.calendar {
  position: relative;
}

.calendar__dropdown {
  background-color: #fbeed7;
  background-color: var(--color-beige-light);
  -webkit-box-shadow: 0 0.8rem 2.2rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.8rem 2.2rem rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none;
  left: 0;
  opacity: 0;
  overflow: hidden;
  padding-left: 11.8rem;
  position: absolute;
  top: 100%;
  z-index: 9;
}

.calendar__dropdown > * {
  min-height: 1px;
  min-width: 1px;
}

.calendar__dropdown_show {
  -webkit-animation: fadeIn 0.25s forwards;
  animation: fadeIn 0.25s forwards;
  display: block;
}

.main-form .calendar__dropdown {
  top: 115%;
  border-radius: 12px;
  border: 2px solid var(--color-orange);
  background-color: #f4e6cb;
  padding-left: 140px;
}

.main-form .calendar__navigation {
  border: none;
  width: 140px;
}

.calendar__navigation {
  border-right: 0.1rem solid #e6c48e;
  border-right: 0.1rem solid var(--color-beige);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 11.8rem;
}

.calendar__navigation-label {
  cursor: pointer;
  display: none;
}

.calendar__navigation-label span {
  background: url(../img/dropdown.svg) no-repeat 100% 50%/1.6rem 1.7rem;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  padding-right: 2.4rem;
  vertical-align: top;
}

.calendar__navigation-item {
  height: 100%;
  position: relative;
}

.calendar__navigation-item.calendar__navigation-item_show .list {
  -webkit-animation: fadeIn 0.25s forwards;
  animation: fadeIn 0.25s forwards;
  display: block;
}

.calendar__navigation .list {
  -ms-overflow-style: none;
  max-height: 100%;
  overflow-y: auto;
  padding-bottom: 1.2rem;
  padding-top: 1.2rem;
  scrollbar-width: none;
}

.main-form .calendar__navigation .list {
  padding: 12px 0;
}

.calendar__navigation .list::-webkit-scrollbar {
  display: none;
  height: 0;
  width: 0;
}

.calendar__navigation .list__item + .list__item {
  margin-top: 0.8rem;
}

.calendar__navigation .list__item + .list__item .list__item-year {
  padding-top: 0.8rem;
}

.main-form .calendar__navigation .list__item + .list__item .list__item-year {
  padding: 0;
}

.calendar__navigation .list__item_active button {
  color: #f18d3f;
  color: var(--color-orange);
}

.main-form .calendar__navigation .list__item_active {
  background-color: #f9eed8;
  border-radius: 0 8px 8px 0;
}

.main-form .calendar__navigation .list__item.list__item_active button {
  color: var(--color-black);
  border-bottom: 1px solid var(--color-orange);
}

.calendar__navigation .list__item-year {
  font-size: 1.5rem;
  font-weight: 700;
  padding-left: 2rem;
  padding-right: 2rem;
}

.calendar__navigation .list__item button {
  background: none;
  border: none;
  border-radius: 0;
  display: block;
  padding: 0 2rem;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
}

.main-form .calendar__navigation .list__item {
  margin-top: 0;
  width: 100%;
  padding: 8px 12px;
  text-align: left;
  display: flex;
}

.main-form .calendar__navigation .list__item .list__item-year {
  margin-left: 5px;
}

.main-form .calendar__navigation .list__item button {
  font-size: 14px;
  font-weight: bold;
  font-family: "Lato";
  line-height: 20px;
  border-bottom: 1px solid transparent;
  padding: 0;
}

.calendar__month {
  position: relative;
}

.main-form .calendar__month {
  margin: 6px 6px 0 8px;
  background-color: var(--color-beige-light);
  border-radius: 8px 8px 0 0;
}

.calendar__month > input {
  border: none;
  height: 0;
  left: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 0;
}

.calendar__month .flatpickr-calendar.inline {
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  top: 0;
  width: 33.8rem;
}

.calendar__month .flatpickr-calendar.inline:after,
.calendar__month .flatpickr-calendar.inline:before,
.calendar__month .flatpickr-months {
  display: none;
}

.calendar__month .flatpickr-weekdays {
  -webkit-box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.08);
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: var(--shadow-2);
  box-shadow: var(--shadow-2);
  height: 5rem;
  padding: 0 1.5rem;
}

.main-form .calendar__month .flatpickr-weekdays {
  box-shadow: none;
}

.calendar__month .flatpickr-weekday {
  color: #000;
  color: var(--color-black);
  font-size: 1.5rem;
  font-weight: 700;
}

.calendar__month .flatpickr-days {
  width: 33.8rem;
}

.calendar__month .dayContainer {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  max-width: 33.8rem;
  min-width: 33.8rem;
  padding: 1rem 1.5rem;
  width: 33.8rem;
}

.calendar__month span.flatpickr-day {
  border: none;
}

.calendar__month .rangeMode .flatpickr-day {
  margin-top: 0;
}

.calendar__month .flatpickr-day {
  border-radius: 0;
  color: #000;
  color: var(--color-black);
  display: block;
  font-size: 1.5rem;
  height: 4rem;
  line-height: 4rem;
  max-width: 4.4rem;
}

.calendar__month .flatpickr-day.flatpickr-disabled,
.calendar__month .flatpickr-day.nextMonthDay,
.calendar__month .flatpickr-day.prevMonthDay {
  color: #000;
  color: var(--color-black);
  opacity: 0.3;
}

.calendar__month .flatpickr-day.flatpickr-disabled {
  pointer-events: none;
}

.calendar__month .flatpickr-day.inRange {
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.calendar__month .flatpickr-day.inRange:nth-child(7n):after {
  border-radius: 0 50% 50% 0;
  right: 0.4rem;
}

.calendar__month .flatpickr-day.inRange:nth-child(7n + 1):after {
  border-radius: 50% 0 0 50%;
  left: 0.4rem;
}

.calendar__month .flatpickr-day.inRange:after {
  background-color: #e6c48e;
  background-color: var(--color-beige);
  content: "";
  display: block;
  height: 3.6rem;
  left: 0;
  margin-top: -1.8rem;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: -2;
}

.main-form .calendar__month .flatpickr-day.inRange:after,
.main-form .calendar__month .flatpickr-day.endRange:after,
.main-form .calendar__month .flatpickr-day.startRange:after {
  background-color: #f4e6cb;
}

.calendar__month .flatpickr-day.endRange,
.calendar__month .flatpickr-day.startRange {
  background: none;
  border-radius: 0;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.calendar__month .flatpickr-day.endRange:after,
.calendar__month .flatpickr-day.startRange:after {
  background-color: #e6c48e;
  background-color: var(--color-beige);
  content: "";
  display: block;
  height: 3.6rem;
  left: 0;
  margin-top: -1.8rem;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: -2;
}

.calendar__month .flatpickr-day.startRange:after {
  border-radius: 50% 0 0 50%;
  left: 0.4rem;
}

.calendar__month .flatpickr-day.startRange:nth-child(7n):after {
  border-radius: 50%;
  right: 0.4rem;
}

.calendar__month .flatpickr-day.endRange:after {
  border-radius: 0 50% 50% 0;
  right: 0.4rem;
}

.calendar__month .flatpickr-day.endRange:nth-child(7n + 1):after,
.calendar__month .flatpickr-day.startRange.endRange:after {
  border-radius: 50%;
  left: 0.4rem;
}

.calendar__month .flatpickr-day:before {
  border: 0.1rem solid #f18d3f;
  border: 0.1rem solid var(--color-orange);
  border-radius: 50%;
  content: "";
  display: block;
  height: 3.6rem;
  left: 50%;
  margin: -1.8rem 0 0 -1.8rem;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 3.6rem;
}

.calendar__month .flatpickr-day:focus,
.calendar__month .flatpickr-day:hover {
  background: none;
  color: #000;
  color: var(--color-black);
}

.calendar__month .flatpickr-day:focus:before,
.calendar__month .flatpickr-day:hover:before {
  opacity: 1;
}

.calendar__month .flatpickr-day.selected {
  background: none;
  border-radius: 0 !important;
  color: #fff;
  color: var(--color-white);
}

.main-form .calendar__month .flatpickr-day.selected:before {
  opacity: 1;
}

.calendar__month .flatpickr-day.selected:before {
  background-color: #f18d3f;
  background-color: var(--color-orange);
  border-radius: 50%;
  content: "";
  display: block;
  height: 3.6rem;
  left: 50%;
  margin: -1.8rem 0 0 -1.8rem;
  position: absolute;
  top: 50%;
  width: 3.6rem;
  z-index: -1;
}

.info {
  border-bottom: 0.1rem solid #000;
  border-bottom: 0.1rem solid var(--color-black);
  border-top: 0.1rem solid #000;
  border-top: 0.1rem solid var(--color-black);
}

.info .list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 4.8rem;
  pointer-events: none;
}

.info .list > * {
  min-height: 1px;
  min-width: 1px;
}

.info .list__item {
  -webkit-box-flex: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: none;
  flex: none;
}

.info .list__item > * {
  min-height: 1px;
  min-width: 1px;
}

.info .list__item_large {
  margin-right: auto;
}

.info .list__item_large + .list__item {
  margin-left: 0.4rem;
}

.info .list__item_large img {
  margin-right: 1.5rem;
}

.info .list__item img {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 0.8rem;
}

.info .list__item span {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  font-family: Lato;
  font-family: var(--header-text-font-family);
  font-weight: 500;
}

.info .list__item:not(.list__item_large) + .list__item {
  margin-left: 3rem;
}

.autocomplete-dropdown-wrap {
  -ms-overflow-style: none;
  background-color: #fbeed7;
  background-color: var(--color-beige-light);
  border-radius: 0.2rem;
  -webkit-box-shadow: 0 0.8rem 2.2rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.8rem 2.2rem rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  display: none;
  left: 0;
  max-height: 19rem;
  opacity: 0;
  overflow-y: auto;
  padding: 1.5rem 0;
  position: absolute;
  scrollbar-width: none;
  top: 100%;
  width: 100%;
  z-index: 11;
}

.autocomplete-dropdown-wrap::-webkit-scrollbar {
  display: none;
  height: 0;
  width: 0;
}

.autocomplete-dropdown__message {
  padding: 0 1.6rem;
}

.autocomplete-dropdown__item + .autocomplete-dropdown__item {
  margin-top: 1rem;
}

.autocomplete-dropdown__title {
  font-weight: bold;
  padding: 6px 16px;
  font-size: 14px;
  line-height: 20px;
}

.autocomplete-dropdown-wrap .list__item,
.autocomplete-dropdown__title {
  letter-spacing: 0.02em;
}

.autocomplete-dropdown-wrap .list__item {
  cursor: pointer;
  padding: 12px 16px;
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
}

.autocomplete-dropdown-wrap .list__item-title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}

.autocomplete-dropdown-wrap .list__item-footnote {
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: #596173;
}

.autocomplete-dropdown-wrap .list__item:hover {
  background-color: #f4e6cb;
}

.field_autocomplete-show .autocomplete-dropdown-wrap {
  -webkit-animation: fadeIn 0.25s forwards;
  animation: fadeIn 0.25s forwards;
  display: block;
  border: 2px solid var(--color-orange);
  border-radius: 16px;
  padding: 8px 0;
  top: 115%;
  left: -4px;
}

.section_hero .container {
  /*padding-top: 6.1rem; */
}

.section_form {
  margin-top: 3.2rem;
  position: relative;
}

.section_form .container {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  justify-content: flex-end;
  position: relative;
  z-index: 11;
}

.section_form .house-type.container {
  z-index: 1;
  overflow: hidden;
}

.section_form .container > * {
  min-height: 1px;
  min-width: 1px;
}

.house-type__wrapper {
  margin-top: 12px;
  position: relative;
}

.house-type__wrapper .swiper-slide {
  width: auto;
  display: flex;
}

.house-type__wrapper .swiper-slide a {
  height: 90px;
  margin: 0 50px 0 0;
  list-style: none;
  display: flex;
  transition: 0.1s;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
  box-sizing: border-box;
  border: none;
}

/*.house-type__wrapper .swiper-slide:hover a svg path {
  fill: var(--color-orange);
}*/

.house-type__wrapper .swiper-slide:hover a .house-type__text {
  color: var(--color-orange);
}

.house-type__wrapper .swiper-slide:hover a {
  /*justify-content: center;*/
  padding-bottom: 12px;
}

.house-type__wrapper .house-type__text {
  font-size: 16px;
  line-height: 22px;
  margin-top: 4px;
}

.house-type__wrapper .house-type__shadow {
  width: 100px;
  height: 90px;
  position: absolute;
  top: 0;
  z-index: 2;
  transition: 0.3s;
}

.house-type__wrapper:hover .house-type__shadow.left {
  left: -100px;
}
.house-type__wrapper:hover .house-type__shadow.right {
  right: -100px;
}

.house-type__wrapper .house-type__shadow.left {
  background: linear-gradient(90deg, #f9eed8 0%, rgba(0, 0, 0, 0) 100%);
  left: 0;
}

.house-type__wrapper .house-type__shadow.right {
  background: linear-gradient(270deg, #f9eed8 0%, rgba(0, 0, 0, 0) 100%);
  right: 0;
}

.house-type__wrapper .swiper-button-prev {
  left: -14px;
}

.house-type__wrapper .swiper-button-next {
  right: -14px;
}
.slider-gallery .swiper-pagination-bullets {
  top: -6px;
}
@media (max-width: 1023px) {
  .house-type__wrapper .swiper-button-prev,
  .house-type__wrapper .swiper-button-next,
  .house-type__wrapper .house-type__shadow {
    display: none;
  }

  .house-type__wrapper .swiper-slide a {
    margin: 0 8px;
  }

  .house-type__wrapper {
    margin-left: -16px;
    margin-right: -16px;
  }
}

.section_info {
  margin-top: 3.2rem;
}

.section_offers {
  margin-top: 7.6rem;
}

.section_news {
  margin-top: 3.4rem;
  overflow: hidden;
}

.clip {
  overflow: hidden;
}

.clip,
.clip__bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.clip__bg {
  -webkit-clip-path: url(#clip-circles);
  clip-path: url(#clip-circles);
  -o-object-fit: cover;
  object-fit: cover;
}

.clip__delimiter-item {
  background-color: #000;
  background-color: var(--color-black);
  display: block;
  height: 36rem;
  position: absolute;
  top: 1.6rem;
  width: 0.1rem;
  z-index: 1;
}

.clip__delimiter-item:nth-child(odd) {
  margin-left: 19.5rem;
}

.clip__delimiter-item:nth-child(2n) {
  margin-left: -19.7rem;
}

.clip__loader {
  background: url(../img/triangle.svg) no-repeat 50% 50%/100% 100%;
  height: 2.9rem;
  left: 50%;
  margin-left: -4.6rem;
  margin-top: -1.5rem;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: scale(20);
  -ms-transform: scale(20);
  transform: scale(20);
  -webkit-transition: opacity 0.5s 0.25s, -webkit-transform 0.5s 0.25s;
  transition: opacity 0.5s 0.25s, -webkit-transform 0.5s 0.25s;
  transition: transform 0.5s 0.25s, opacity 0.5s 0.25s;
  transition: transform 0.5s 0.25s, opacity 0.5s 0.25s,
    -webkit-transform 0.5s 0.25s;
  width: 2.2rem;
}

.clip__loader_show {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.main-form {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background-color: #fbeed7;
  background-color: var(--color-beige-light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  justify-content: center;
  border-radius: 16px;
  width: 100%;
}

.main-form > * {
  min-height: 1px;
  min-width: 1px;
}

.main-form .info {
  display: none;
}

.main-form .h1 {
  margin-bottom: 1.6rem;
}

.main-form .form {
  width: 100%;
  background-color: var(--color-orange);
  padding: 4px;
  border-radius: 16px;
  display: flex;
  align-items: center;
}

.main-form .field__input {
  border: none;
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  height: 38px;
  padding-top: 14px;
  position: relative;
  z-index: 5;
}

.main-form .field {
  background-color: var(--color-beige-light);
  border: none;
  height: 56px;
  padding: 6px 16px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.main-form .field.field_autocomplete {
  border-radius: 12px 0 0 12px;
}

.main-form .form__row .form__item {
  max-width: 186px;
  border-left: 2px solid var(--color-btn);
}

.main-form .form__row:last-child .form__item:last-child {
  max-width: 136px;
  border: none;
}

.main-form .form__item {
  max-width: 500px;
  width: 100%;
}

.main-form .field.guests {
  border-radius: 0 12px 12px 0;
}

.main-form .form__row {
  grid-column-gap: 0;
  align-items: center;
  display: flex;
}

.main-form .form__row {
  max-width: 324px;
  width: 100%;
}

.main-form .form__row.calendar {
  max-width: 367px;
}

.main-form .form__item .button {
  width: 100%;
  border: none;
  color: var(--color-white);
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}

.main-form .form__item .button:disabled {
  background-color: transparent;
}

.main-form .form__item .booking-mini__dropdown {
  width: calc(200% + 1rem);
}

.main-form .field_calendar:before {
  bottom: 22px;
}

.main-form label {
  font-size: 14px;
  color: #596173;
  position: absolute;
  bottom: 18px;
  transition: 0.3s;
}

.hero__name {
  display: block;
  width: 100%;
  margin-top: 64px;
}

.hero__footnote {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  /*border-top: 0.1rem solid #000;*/
  /*border-top: 0.1rem solid var(--color-black);*/
  border-bottom: 0.1rem solid var(--color-black);
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: Montserrat;
  justify-content: space-between;
  /*margin-top: 2.55rem;*/
  text-transform: uppercase;
  font-weight: 400;
  /*padding-bottom: 20px;*/
  /*padding-top: 15px;*/
}

.hero__footnote > * {
  min-height: 1px;
  min-width: 1px;
  font-family: 'Montserrat';
}

.news-preview__mobile {
  display: none;
}

.news-preview__mobile .h1 {
  border-bottom: 0.1rem solid #000;
  border-bottom: 0.1rem solid var(--color-black);
  margin-bottom: 2.4rem;
  padding-bottom: 0.4rem;
}

.news-preview__list {
  grid-row-gap: 3.2rem;
  grid-column-gap: 2.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.news-preview__list > * {
  min-height: 1px;
  min-width: 1px;
}

.news-preview__list .news-preview__image {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.news-preview__list .news-preview__title {
  margin-bottom: 1.6rem;
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;
}

.news-preview__list .news-preview__more {
  margin: auto 0 0;
}

.news-preview__show {
  margin-top: 3.2rem;
  text-align: center;
}

.news-preview__show a {
  font-family: Lato;
  font-family: var(--header-text-font-family);
  font-weight: 500;
}

.news-preview
  .swiper-slide.swiper-slide-visible
  + .swiper-slide
  .news-preview__image {
  position: relative;
}

.news-preview
  .swiper-slide.swiper-slide-visible
  + .swiper-slide
  .news-preview__image:before {
  background-color: #000;
  background-color: var(--color-black);
  bottom: 0;
  content: "";
  display: block;
  left: -0.1rem;
  position: absolute;
  top: 0;
  width: 0.1rem;
}

.news-preview__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: Lato;
  font-family: var(--header-text-font-family);
  height: 100%;
}

.news-preview__item > * {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  min-height: 1px;
  min-width: 1px;
}

.news-preview__image {
  margin-bottom: 1.6rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.news-preview__image div {
  border-radius: 50%;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.news-preview__image img {
  display: block;
}

.news-preview__title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 2.6rem;
  padding-left: 2rem;
  padding-right: 1rem;
}

.news-preview__more {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 0.1rem solid #000;
  border-bottom: 0.1rem solid var(--color-black);
  border-top: 0.1rem solid #000;
  border-top: 0.1rem solid var(--color-black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  justify-content: center;
  margin: auto 1rem 0;
  padding-bottom: 1.6rem;
  padding-top: 1.6rem;
  text-align: center;
}

.news-preview__more > * {
  min-height: 1px;
  min-width: 1px;
}

.news-preview__more:hover,
.objects__more a {
  color: #f18d3f;
  color: var(--color-orange);
}

.objects__more a {
  border: none;
  font-family: Lato;
  font-family: var(--header-text-font-family);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.1rem;
  text-decoration: none;
}

.why-naturalist {
  padding-top: 7.6rem;
}

.why-naturalist__title {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-black);
  margin-bottom: 32px;
}

.why-naturalist__wrapper {
  display: flex;
}

.why-naturalist__block {
  width: 25%;
  position: relative;
  text-align: center;
}

.why-naturalist__block p {
  display: block;
  text-align: center;
  position: absolute;
  bottom: 12px;
  width: 100%;
  font-size: 18px;
  line-height: 24px;
  margin: 0;
}

.why-naturalist__block img {
  margin: 0 auto;
}

.why-naturalist__block .mobile {
  display: none;
}

.main-form .calendar__dropdown-close,
.main-form .guests__dropdown-close,
.autocomplete-dropdown-close {
  border-radius: 8px;
  background-color: var(--color-btn);
  padding: 10px 20px;
  width: auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  margin: 12px;
  display: none;
}

.autocomplete-dropdown-search {
  display: none;
}

.main-form__shadow {
  background-color: #0000001f;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
}

@media (min-width: 1140px) {
  .hero__footnote {
    font-size: 3.5rem;
    line-height: 4.8rem;
  }
}

@media (min-width: 1280px) {
  .calendar__navigation-item_years {
    display: none;
  }
}

@media (max-width: 1279px) {
  .main-form .calendar__dropdown,
  .calendar__dropdown {
    padding-left: 0;
  }

  .main-form .calendar__month {
    margin-left: 6px;
  }

  .main-form .calendar__navigation {
    width: auto;
    background-color: var(--color-beige-light);
    border-radius: 0 0 8px 8px;
    box-shadow: none;
    margin: 0 6px;
  }

  .main-form .calendar__navigation .list__item.list__item_active button {
    width: auto;
    margin: 0 auto;
  }

  .calendar__navigation-item.calendar__navigation-item_show .list {
    border-radius: 8px;
  }

  .calendar__navigation {
    border-right: none;
    -webkit-box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.08);
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: var(--shadow-2);
    box-shadow: var(--shadow-2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 5rem;
    position: relative;
    width: auto;
  }

  .calendar__navigation > * {
    min-height: 1px;
    min-width: 1px;
  }

  .calendar__navigation-label {
    display: block;
    text-align: center;
  }

  .calendar__navigation-item {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
  }

  .calendar__navigation-item > * {
    min-height: 1px;
    min-width: 1px;
  }

  .calendar__navigation .list {
    background-color: #fbeed7;
    background-color: var(--color-beige-light);
    border: 0.1rem solid #e6c48e;
    border: 0.1rem solid var(--color-beige);
    border-radius: 0.2rem;
    display: none;
    height: auto;
    left: 0;
    max-height: 16rem;
    opacity: 0;
    padding-bottom: 0.8rem;
    padding-top: 0.8rem;
    position: absolute;
    text-align: center;
    top: 100%;
    width: 100%;
    z-index: 1;
  }

  .calendar__navigation .list__item[data-calendar-delimiter] {
    display: none;
  }

  .calendar__navigation .list__item + .list__item {
    margin-top: 0;
  }

  .calendar__navigation .list__item_hide {
    display: none;
  }

  .calendar__navigation .list__item button {
    font-size: 1.5rem;
    line-height: 2rem;
    padding: 0.4rem 0;
    width: 100%;
  }
}

@media (max-width: 1139px) {
  .object-row_profile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    border-bottom: none;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 0;
  }

  .object-row_profile + .object-row {
    margin-top: 0;
  }

  .object-row_profile .object-row__images {
    width: 100%;
  }

  .object-row_profile .object-row__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-flex: 1;
    -ms-flex: auto 1;
    flex: auto 1;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 1.6rem;
    padding-left: 0;
  }

  .object-row_profile .object-row__description {
    display: block;
    margin-bottom: 1.6rem;
    padding-right: 0;
  }

  .object-row_profile .object-row__description > * + * {
    margin-top: 1.6rem;
  }

  .object-row_profile .object-row__headnote {
    margin-top: 0;
  }

  .object-row_profile .object-row__text span {
    display: block;
  }

  .object-row_profile .object-row__price {
    margin-bottom: 0;
    margin-top: 0;
    text-align: left;
  }

  .object-row_profile .object-row__order {
    -webkit-box-flex: 0;
    display: block;
    -ms-flex: none;
    flex: none;
    margin-top: auto;
    position: relative;
    width: 100%;
  }

  .object-row_profile .object-row__order .tag {
    display: inline-block;
    margin-top: 0.8rem;
    padding-left: 2.7rem;
    padding-right: 2.7rem;
    vertical-align: top;
  }

  .object-row_profile .object-row__order .button {
    bottom: 0;
    position: absolute;
    right: 0;
  }

  .clip__loader {
    left: auto;
    margin-left: 0;
    right: 59.4rem;
    right: calc(var(--container-gap) + 55.4rem);
  }

  .hero__footnote {
    font-size: 2.45614vw;
    line-height: 4.210526vw;
  }
}

@media (max-width: 1023px) {
  .why-naturalist__wrapper {
    flex-wrap: wrap;
  }

  .why-naturalist__block {
    width: 50%;
  }

  .objects__heading {
    border-bottom: none;
    display: inline-block;
    line-height: 1;
    margin-bottom: 2.4rem;
    position: relative;
    vertical-align: top;
  }

  .objects__heading-control {
    display: block;
  }

  .objects__heading .list {
    background-color: #fbeed7;
    background-color: var(--color-beige-light);
    -webkit-box-shadow: 0 0.8rem 2.2rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.8rem 2.2rem rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    display: block;
    left: 0;
    min-width: 24rem;
    opacity: 0;
    padding: 2rem 1.8rem;
    position: absolute;
    top: calc(100% - 0.2rem);
    -webkit-transition: visibility 0.25s, opacity 0.25s;
    transition: visibility 0.25s, opacity 0.25s;
    visibility: hidden;
    width: 100%;
    z-index: 3;
  }

  .objects__heading .list__item_active .list__link {
    color: #f18d3f;
    color: var(--color-orange);
    font-weight: 400;
    pointer-events: none;
  }

  .objects__heading .list__item + .list__item {
    margin-left: 0;
    margin-top: 1.2rem;
  }

  .objects__heading .list__link {
    font-family: Montserrat;
    font-family: var(--base-font-family);
  }

  .objects__heading_show .objects__heading-control:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .objects__heading_show .list {
    opacity: 1;
    visibility: visible;
  }

  .objects__list {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr;
  }

  .objects__more {
    margin-top: 3.2rem;
  }

  .object__marker {
    margin-top: 1.6rem;
  }

  .info {
    max-height: 4.8rem;
    overflow: hidden;
    padding-bottom: 0.7rem;
    padding-top: 0.7rem;
    -webkit-transition: max-height 0.25s;
    transition: max-height 0.25s;
  }

  .info_show {
    max-height: 16.4rem;
  }

  .info_show .list__item_large span:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .info .list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
  }

  .info .list__item_large {
    margin-bottom: 2.4rem;
    width: 100%;
  }

  .info .list__item_large ~ .list__item {
    padding-bottom: 1.6rem;
  }

  .info .list__item_large span {
    display: inline-block;
    line-height: 2rem;
    padding-right: 2.2rem;
    position: relative;
    vertical-align: top;
  }

  .info .list__item_large span:after {
    background: url(../img/dropdown.svg) no-repeat 50% 50%/100% 100%;
    content: "";
    display: block;
    height: 1.6rem;
    margin-top: -0.8rem;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transition: -webkit-transform 0.25s;
    transition: -webkit-transform 0.25s;
    transition: transform 0.25s;
    transition: transform 0.25s, -webkit-transform 0.25s;
    width: 1.6rem;
  }

  .section_hero {
    margin-top: 0.1rem;
  }

  .section_hero .container {
    /*padding-top: 40px;*/
    position: relative;
  }

  .main {
    /*padding-top: 60px;*/
  }

  .section_form {
  }

  .section_info {
    margin-top: 5.8rem;
  }

  .section_news,
  .section_offers {
    margin-top: 5.6rem;
  }

  .section_news {
    overflow: visible;
  }

  .clip__loader {
    left: 21.7rem;
    left: calc(var(--container-gap) + 17.7rem);
    margin-left: -1.1rem;
    right: auto;
  }

  .main-form {
  }

  .hero__footnote {
    font-size: 2.604166vw;
    line-height: 6.25vw;
    /*margin-top: 3.8rem;*/
    font-weight: 400;
  }

  .news-preview__mobile {
    display: block;
  }

  .news-preview__slider {
    display: none;
  }

  .main-form .form {
    flex-direction: column;
    gap: 0;
  }

  .main-form .form__item {
    max-width: 100%;
  }

  .main-form .field.field_autocomplete {
    border-radius: 12px 12px 0 0;
    margin-bottom: 2px;
  }

  .main-form .form__row .form__item {
    border-left: none;
    margin-bottom: 2px;
  }

  .main-form .form__row .form__item + .form__item {
    margin-left: 2px;
  }

  .main-form .form__row.calendar {
    flex-direction: row;
    max-width: 100%;
  }

  .main-form .form__row {
    flex-direction: column;
    max-width: 100%;
  }

  .main-form .form__row .form__item,
  .main-form .form__row:last-child .form__item:last-child {
    max-width: 100%;
  }

  .main-form .form__row:last-child .form__item:last-child {
    margin: 0;
  }

  .main-form .form__row:last-child .form__item:last-child button {
    height: 56px;
    line-height: 56px;
  }

  .main-form .field.guests {
    border-radius: 0 0 12px 12px;
  }
}
@media (max-width: 768px) {
  .object .score,
  .object__price,
  .object__marker .area-info div {
    font-size: 14px;
    line-height: 20px;
  }
  .objects__more {
    margin-top: 16px;
  }

  .objects__more a {
    font-size: 14px;
    line-height: 20px;
  }

  .object__title {
    font-size: 16px;
    line-height: 22px;
  }

  .why-naturalist__block {
    padding: 12px 0;
  }

  .why-naturalist {
    padding-top: 40px;
  }

  .why-naturalist__block p {
    font-size: 16px;
    line-height: 22px;
    bottom: 0;
  }

  .why-naturalist__block .mobile {
    display: block;
  }

  .why-naturalist__block .desctop {
    display: none;
  }

  .why-naturalist__title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 24px;
  }

  .section_offers {
    margin-top: 40px;
  }

  .main-form .calendar__dropdown,
  .main-form .guests__dropdown {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    border-radius: 12px 12px 0 0;
    max-width: 100%;
    width: 100%;
    margin: 0;
    background-color: var(--color-beige-light);
    border: none;
    padding: 12px 16px 0;
    z-index: 6;
  }

  .main-form .calendar__dropdown-close,
  .main-form .guests__dropdown-close,
  .autocomplete-dropdown-close,
  .autocomplete-dropdown-search {
    display: block;
  }

  .main-form .calendar__month .flatpickr-calendar.inline {
    margin: 0 auto;
  }

  .main-form .calendar__month .flatpickr-day {
    font-size: 18px;
    max-width: 48.18px;
  }

  .main-form .calendar__month .dayContainer {
    justify-content: space-between;
  }

  .main-form .calendar__month .flatpickr-weekdays {
    padding: 0;
  }

  .main-form .calendar__month .dayContainer {
    padding: 1rem 0;
  }

  .main-form .guests__dropdown .guests__children {
    background-color: #f4e6cb;
    border-radius: 8px;
  }

  .main-form .guests__guests .counter button:hover:after,
  .main-form .guests__guests .counter button:hover:before {
    background-color: var(--color-black);
  }

  .main-form .guests__children .counter button:hover svg use {
    fill: var(--color-black);
  }

  .main-form .guests__guests .counter button,
  .main-form .guests__guests .counter button:hover {
    background-color: #f4e6cb;
  }

  .main-form .guests__children .counter button {
    background-color: var(--color-beige-light);
  }

  .main-form .autocomplete-dropdown-wrap .field__input {
    background-color: #f4e6cb;
    padding: 11px 12px 11px 40px;
    border-radius: 12px;
    line-height: 22px;
    height: 44px;
    font-size: 16px;
    font-weight: 400;
    background-image: url("../img/search.png");
    background-repeat: no-repeat;
    background-position: 12px center;
  }

  .main-form .autocomplete-dropdown-wrap .field__input::placeholder {
    color: #596173;
  }

  .main-form .field_autocomplete-show .autocomplete-dropdown-wrap {
    top: auto;
    left: 0;
    bottom: 0;
    position: fixed;
    border: none;
    max-height: 460px;
    height: 100%;
    border-radius: 16px 16px 0 0;
    padding: 16px 16px 56px;
  }

  .autocomplete-dropdown-close {
    margin: 0;
  }

  .autocomplete-dropdown-close-wrap {
    position: fixed;
    width: -webkit-fill-available;
    padding: 12px 16px;
    left: 0;
    bottom: 0;
    background-color: var(--color-beige-light);
  }

  .autocomplete-dropdown__message {
    padding: 16px;
  }

  .main-form .autocomplete-dropdown__item + .autocomplete-dropdown__item {
    margin: 0;
  }

  .main-form .autocomplete-dropdown__item:first-child {
    margin-top: 8px;
  }

  .main-form .autocomplete-dropdown__item:last-child {
    margin-bottom: 8px;
  }

  .main-form .autocomplete-dropdown .list__item {
    border-radius: 8px;
  }
}
@media (max-width: 767px) {
  .objects__heading-control {
    font-size: 1.5rem;
    padding-right: 2.4rem;
  }

  .objects__list {
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
  }

  .object-row:not(.object-row_profile) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    border-bottom: none;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 0;
  }

  .object-row:not(.object-row_profile) + .object-row {
    margin-top: 0;
  }

  .object-row:not(.object-row_profile) .object-row__images {
    height: auto;
    width: 100%;
  }

  .object-row:not(.object-row_profile) .object-row__images .slider-gallery {
    height: auto;
  }

  .object-row:not(.object-row_profile)
    .object-row__images
    .slider-gallery
    .swiper-slide {
    padding-bottom: 66.7%;
    position: relative;
  }

  .object-row:not(.object-row_profile)
    .object-row__images
    .slider-gallery
    .swiper-slide
    img {
    left: 0;
    position: absolute;
    top: 0;
  }

  .object-row:not(.object-row_profile) .object-row__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-flex: 1;
    border-top: 0.1rem solid #000;
    border-top: 0.1rem solid var(--color-black);
    -ms-flex: auto 1;
    flex: auto 1;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 1.6rem;
    padding-left: 0;
    padding-top: 1.6rem;
  }

  .object-row:not(.object-row_profile) .object-row__description {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 1.6rem;
    padding-right: 0;
  }

  .object-row:not(.object-row_profile) .object-row__description > * + * {
    margin-top: 1.6rem;
  }

  .object-row:not(.object-row_profile) .object-row__title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 0;
    order: 1;
    padding-right: 1.6rem;
  }

  .object-row:not(.object-row_profile) .area-info {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .object-row:not(.object-row_profile) .object-row__reviews {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-top: 0;
    order: 2;
  }

  .object-row:not(.object-row_profile) .object-row__features {
    display: none;
  }

  .object-row:not(.object-row_profile) .object-row__order {
    -webkit-box-flex: 0;
    display: block;
    -ms-flex: none;
    flex: none;
    margin-top: auto;
    position: relative;
    width: 100%;
  }

  .object-row:not(.object-row_profile) .object-row__order div {
    font-size: 1.5rem;
  }

  .object-row:not(.object-row_profile) .object-row__order span {
    font-size: 1.2rem;
    margin-top: 0;
  }

  .object-row:not(.object-row_profile) .object-row__order .button {
    margin-top: 1.6rem;
    width: 100%;
  }

  .object-row .favorite {
    right: 1.6rem;
    top: 1.7rem;
  }

  .object-row .tag {
    left: 1.6rem;
    top: 1.6rem;
  }

  .object-row_profile .object-row__title {
    font-size: 2.1rem;
    line-height: 1;
  }

  .info {
    margin-left: 0;
    margin-right: 0;
  }

  .info .list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .info .list__item:not(.list__item_large) + .list__item {
    margin-left: 2rem;
  }

  .section_form {
    height: auto;
    margin-top: 3.2rem;
  }

  .section_form .container {
    display: block;
  }

  .section_info {
    display: none;
  }

  .clip {
    height: auto;
    padding-bottom: calc(100% - 3.2rem);
    position: relative;
  }

  .clip__loader {
    left: 50%;
  }

  .main-form {
    background: none;
    display: block;
    padding: 0;
    width: 100%;
  }

  .main-form .info {
    display: block;
    margin-bottom: 2.8rem;
    margin-top: 3.2rem;
  }

  .main-form .h1 {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 2rem;
  }

  .hero__footnote {
    font-size: 13.48px;
    line-height: 17.97px;
    /*margin-top: 12px;*/
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .news-preview__mobile .h1 {
    font-size: 1.5rem;
  }

  .news-preview__list {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .news-preview__list .news-preview__image {
    padding: 0;
  }
}

@media (max-width: 599px) {
  .object-row_profile + .object-row {
    border-top: 0.1rem solid #000;
    border-top: 0.1rem solid var(--color-black);
    padding-top: 3.2rem;
  }

  .objects__more a,
  .objects .objects__more a {
    display: block;
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .hero__name {
    margin-left: 0.4rem;
    margin-right: 0.4rem;
    width: calc(100% - 0.8rem);
  }
}

.b24-widget-button-wrapper.hide {
  display: none !important;
}

.house-type .swiper-slide svg {
  width: 40px;
  height: 40px;
}
