@charset "UTF-8";

/*Обнуление*/

:root {
  --color-gold: #b68d44;
  --color-black: #231f20;
  --color-gray: #6d655e;
  --color-secondary-black: #2d292a;
  --color-white: #f6f2ed;
  --color-secondary-gray: #b5b3b1;
  --color-secondary-white: #ebe7e3;
  --color-stroke: #d3d1cf;
  --color-tertiary-white: #e5e0db;
  --font-family: "Geologica", sans-serif;
}


* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body._active {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

a {
  cursor: pointer;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  margin: 0;
  line-height: 100%;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

.ibg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

button {
  background: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

/*--------------------*/


body {
  font-family: var(--font-family), sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFF;
  min-height: 100vh;
}

body._lock {
  overflow: hidden;
}

button {
  font-size: 20px;
}

a {
  display: block;
  line-height: normal;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--color-gold);
}



.main-title {
  font-size: 96px;
  font-weight: 600;
  color: #5F5B5B;
}

.button {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  border-radius: 10px;
  padding: 12px 16px;
  background: var(--color-gold);
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  text-align: center;
  color: var(--color-white);
  border: 1px solid var(--color-gold);
}

.button:hover {
  background-color: var(--color-white);;
  box-shadow: 0 0 40px 40px var(--color-white) inset;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: var(--color-black);
  border: 1px solid var(--color-gold);
}

.button_second {
  background-color: #fff;
}

.button_second._active {
  background-color: #00E700;
}


.label {
  font-size: 24px;
  font-weight: 300;
  line-height: 133%;
}

.section__top {
  margin-bottom: 65px;
}

.page {
  padding: 80px 0px 0 0;
}

.page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
}

.page__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
}

.page__content {

}

.dropdown__content {
  position: relative;
}

.dropdown__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 14px 30px;
  font-size: 20px;
  border-radius: 8px;
  border: 2px solid rgba(237, 130, 130, 0.6);
  line-height: 160%;
}

.dropdown__button:after {
  content: "";
  display: block;
  background-image: url(../img/icons/drop-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 15px;
  height: 10px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.dropdown__button._active:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.dropdown__list {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  width: 100%;
  border-radius: 8px;
  border: 2px solid rgba(237, 130, 130, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  background-color: #fff;
}

.dropdown__list._active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.dropdown__list-item {
  font-size: 20px;
  padding: 14px 30px;
  cursor: pointer;
}

.dropdown__input-hidden {
  display: none;
}

._has-padding {
  padding: 0px 24px;
}

.title {
  font-weight: 700;
  font-size: 64px;
  line-height: 113%;
  text-align: center;
  color: var(--color-white);
  padding-bottom: 16PX;
}

.subtitle {
  font-weight: 700;
  font-size: 48px;
  line-height: 117%;
  text-align: center;
  color: var(--color-black);
  padding-bottom: 32px;
  max-width: 724px;
  margin: auto;
}
.color-gold{
  color: var(--color-gold);
}
.subtitle .block{
  display: block;
}
.label {
  font-size: 24px;
  color: #00E700;
}

.section {
  padding: 64px 0px;
}

.checkbox input {
  display: none;
}

.checkbox input:checked ~ label:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.checkbox label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 16px;
  cursor: pointer;
  font-size: 20px;
}

.checkbox label:after,
.checkbox label:before {
  content: "";
  display: block;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  border-radius: 1px;
}

.checkbox label:before {
  border: 1px solid #ED8282;
}

.checkbox label:after {
  top: 0;
  left: 0;
  background-image: url(../img/icons/checkbox.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  background-color: #ED8282;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.container {
  margin: 0 auto;
  max-width: 1320px;
  padding: 0px 20px;
}

.blog__container {
    padding: 0 24px;
}
.black {
  color: #30323A;
}

.modal {
  min-height: 100vh;
  padding: 100px 36px;
}

.header {
  padding: 12px 0;
  backdrop-filter: blur(16px);
  background: rgba(246, 242, 237, 0.88);
  position: relative;
  z-index: 2;
}

.header__container {
  padding: 0px 16px;
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 11;
}

.header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header__link {
  border: 1px solid var(--color-gold);
  transition: all 300ms ease-in-out;
  border-radius: 888px;
  padding: 8px 16px;
  background: var(--color-gold);
  display: flex;
  gap: 6px;
  align-items: center;
  font-weight: 500;
  font-size: 13px;
  line-height: 154%;
  color: var(--color-white);
  text-decoration: none;
}
.header__link:hover {
  background-color: #b68d4400;
  color: var(--color-black);
  box-shadow: 0 0 40px 40px #b68d4400 inset;
}
.header__link img{
  transition: all 300ms ease-in-out;
}
.header__link:hover img{
  filter: brightness(0) saturate(100%) invert(59%) sepia(10%) saturate(2257%) hue-rotate(360deg) brightness(95%) contrast(88%);
}
.header__menu-button {
  display: none;
  cursor: pointer;
  width: 16px;
  height: 12px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
  position: relative;
}

.header__menu-button span,
.header__menu-button:before,
.header__menu-button:after {
  height: 1.5px;
  width: 100%;
  left: 0;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  border-radius: 5px;
  background-color: var(--color-white);;
}

.header__menu-button:after,
.header__menu-button:before {
  content: "";
}

.header__menu-button:before {
  top: 0;
}

.header__menu-button:after {
  bottom: 0;
  width: 100%;
}

.header__menu-button span {
  top: 50%;
  width: 100%;
  -webkit-transform: scale(1) translate(0px, -50%);
      -ms-transform: scale(1) translate(0px, -50%);
          transform: scale(1) translate(0px, -50%);
}
.menuIcon__text{
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  color: var(--color-secondary-gray);
}
.header__menu-button._active span {
  -webkit-transform: scale(0) translate(0px, -50%);
      -ms-transform: scale(0) translate(0px, -50%);
          transform: scale(0) translate(0px, -50%);
  background-color: var(--color-white);
}

.header__menu-button._active:before {
  top: 50%;
  -webkit-transform: rotate(-45deg) translate(0px, -50%);
      -ms-transform: rotate(-45deg) translate(0px, -50%);
          transform: rotate(-45deg) translate(0px, -50%);
}

.header__menu-button._active:after {
  bottom: 50%;
  width: 100%;
  -webkit-transform: rotate(45deg) translate(0px, 50%);
      -ms-transform: rotate(45deg) translate(0px, 50%);
          transform: rotate(45deg) translate(0px, 50%);
}


.menu._active {
  left: 0;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.menu__link {
  line-height: 120%;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  color: #30323A;
}

.menu__link:hover {
  color: #00E700;
}


.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  left: 24px;
}


.popup {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 20;
  background: rgba(48, 50, 58, 0.75);
}

.popup.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.popup__body {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 16px;
}

.popup__content {
  background-color: #fff;
  max-width: 512px;
  padding: 32px;
  position: relative;
  width: 100%;
  border-radius: 16px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.close-popup {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 32px;
  right: 32px;
}
input {
  border: 1px solid var(--color-stroke);
  border-radius: 10px;
  padding: 12px 16px 12px 20px;
  width: 100%;
  font-weight: 300;
  font-size: 17px;
  line-height: 153%;
  color: var(--color-gray);
}
.feedback__inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
}
.feedback__agree {
  font-weight: 300;
  font-size: 14px;
  line-height: 171%;
  color: var(--color-black);
}
.feedback__agree a {
  text-decoration: none;
  display: inline;
}
.feedback__agree {
  display: flex;
  align-items: start;
  gap: 12px;
}
.feedback__agree input {
  border-radius: 5px;
  width: 24px;
  height: 24px;
  min-width: 16px;
}
.feedback--checkbox {
  display: flex;
  align-items: start;
  gap: 12px;
  flex-direction: column;
  padding-bottom: 12px;
}
.feedback__button {
  width: 100%;
}
.dont-click {
  pointer-events: none;
  opacity: 0.5;
}

input[type="checkbox"] {
   accent-color: var(--color-gold); /* Задаёт цвет фона элемента */
 }
@media (max-width: 1024px) {


  .header__menu-button{
    display: block;
  }
    .subtitle {
        font-size: 48px;
    }

}


@media (max-width: 767px) {
  .menu {
    padding: 120px 0px 30px 0px;
  }

  .menu nav {
    padding: 0px 12px;
  }

  .menu__list {
    margin-bottom: 20px;
    gap: 20px;
  }

  .item {
    padding: 12px;
  }
    .subtitle {
      font-size: 28px;
      padding-bottom: 16px;
    }
  .section {
    padding: 32px 0px;
  }

}

@media (max-width: 600px) {
  .header__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .header__icon {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }


  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    left: 12px;
  }

}

@media (max-width: 492px) {

  .item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }

}
.input-text {
  padding: 12px 12px 12px 0;
  display: block;
  width: 100%;
  background: transparent;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border-bottom: 2px solid #464954;
  font-variant-numeric: lining-nums proportional-nums;
  font-weight: 500;
  color: #000;
  font-size: 18px;
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 500;
  column-gap: 32px;
}
.header__menu a:hover {
  color: var(--color-white);
}
.header__menu a{
  position: relative;
}
.header__menu a:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-white);
  transition: width 0.4s;
}
.header__menu a:hover:before{
  width: 100%;
}
.header__button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 6px;
  border: 1px solid var(--color-gold);
  border-radius: 888px;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 13px;
  line-height: 154%;
  color: var(--color-black);
  text-decoration: none;
  transition: all 300ms ease-in-out;
}
.header__button:hover {
  background: var(--color-gold);
  color: var(--color-white);
}
.header__button:hover img{
  filter: brightness(0) saturate(100%) invert(100%) sepia(19%) saturate(1452%) hue-rotate(26deg) brightness(113%) contrast(99%);
}
.header__button img {
  transition: all 300ms ease-in-out;
}
.header__logo img {
  width: 268px;
}
.header__menu a {
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  color: var(--color-secondary-gray);
  text-decoration: none;
}
.menuIcon{
  display: none;
}

@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
  .header__menu-button {
    display: block;
  }
  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    background-color: #fff;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: auto;
    padding: 150px 0 30px 0;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }
  .menu._active nav.header__nav {
    display: block;
  }
  .header__logo {
    z-index: 11;
  }
  .header__content {
    z-index: 11;
  }
  .header__menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 20px;
  }
  .menu._active nav.header__nav {
    display: block;
    margin-left: 97px;
  }
  .header__menu a {
    font-size: 18px;
    font-weight: 600;
  }
  .menuIcon{
    display: flex;
    border-radius: 0 0 12px 12px;
    padding: 0px 32px;
    width: 143px;
    height: 48px;
    backdrop-filter: blur(16px);
    background: rgba(45, 41, 42, 0.96);
    gap: 12px;
    align-items: center;
    position: absolute;
    bottom: -48px;
    left: calc(50% - 71px);
  }
}

.header__nav {
  position: absolute;
  border-radius: 0 0 12px 12px;
  width: 963px;
  backdrop-filter: blur(16px);
  background: rgba(45, 41, 42, 0.96);
  margin: auto;
  display: flex;
  justify-content: center;
  left: calc(50% - 475px);
  bottom: -48px;
  padding: 12px 32px;
}
.header__buttons {
  display: flex;
  gap: 24px;
  align-items: center;
}
.header__address {
  display: flex;
  gap: 6px;
  align-items: center;
  font-weight: 300;
  font-size: 13px;
  line-height: 154%;
  color: var(--color-black);
}
.header__max {
  display: flex;
  gap: 6px;
  align-items: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  line-height: 154%;
  color: var(--color-black);
  position: relative;
}
.header__max span{
  position: relative;
}
.header__max span:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-black);
  transition: width 0.4s;
}

.header__max:hover span:after {
  width: 100%;
}

.menu-item__popup a {
  color: var(--color-gold);
}
.menu-item__popup a:before{
  width: 100%;
  background-color: var(--color-gold);
}
.menu-item__popup a:hover{
  color: var(--color-white);
}
.menu-item__popup a:hover:before{
  background-color:var(--color-white);
}
.header__nav--info{
  display: none;
}
@media (max-width: 1130px) {
  .header__logo img {
    width: 150px;
  }
}
@media (max-width: 1024px) {
  .header__address, .header__max {
    display: none;
  }
  .header__logo img {
    width: 234px;
  }
  .header__nav--info{
    display: block;
  }
  .header__menu .header__nav--nomer{
    font-weight: 700;
    font-size: 32px;
    line-height: 125%;
    text-align: center;
    color: var(--color-black);
  }
  .header__menu .header__nav--max{
    display: flex;
    gap: 6px;
    align-items: c;
  }
  .header__menu .header__nav--max span{
    font-weight: 500;
    font-size: 13px;
    line-height: 154%;
    color: var(--color-black);
  }
  .header__menu .header__nav--address, .header__menu .header__nav--email{
    font-weight: 400;
    font-size: 14px;
    line-height: 171%;
    text-align: center;
    color: var(--color-black);
  }
  .header__menu .header__nav--marshrut{
    font-weight: 500;
    font-size: 14px;
    line-height: 171%;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-align: center;
    color: var(--color-gold);
  }
  .header__container._active .header__content {
    display: none;
  }
  .menuIcon._active p {
    display: none;
  }
  .header__menu-button._active {
    margin: auto;
  }
  .menuIcon._active {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 11;
    padding: 0;
    gap: 0;
    margin: auto;
    right: 16px;
    left: auto;
    top: 16px;
    margin: 0;
    background: var(--color-gold);
  }
  .header__nav--info {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .menu._active {
    left: 0;
    height: 100vh;
    padding: 0;
    position: absolute;
    left: 0;
    padding-top: 32px;
  }
  .menu._active nav.header__nav {
    display: block;
    margin-left: 0;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    left: 0;
    background: #ffffff;
  }
 .header__nav {
    background: #ffffff;
  }
  .header_menus {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
  }
  .menu._active nav.header__nav {
    display: block;
    margin-left: 0;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    left: 0;
    background: var(--color-white);
    top: 0;
    height: 100%;
    padding: 32px 16px;
  }
  .menu._active {
    min-height: 100vh;
    padding: 0;
    position: absolute;
    left: 0;
    padding-top: 58px;
    top: 0;
    background: var(--color-white);
  }
  .menu{
    top: -100vh;
    left: 0;
  }
  .header__nav--max {
    margin: auto;
  }
  .menu-item__popup {
    display: none;
  }
  .header__menu .menu-item a {
    font-weight: 700;
    font-size: 32px;
    line-height: 125%;
    color: var(--color-gray);
  }
  .header__menu .menu-item a:hover {
    color: var(--color-gold);
  }
  .header__menu .header__nav--nomer:hover {
    color: var(--color-gold);
  }
  .header__menu .menu-item {
    border-bottom: 1px solid var(--color-stroke);
    padding: 16px;
    width: 100%;
    padding-top: 0;
  }
  .header__menu li.menu-item:nth-child(6) {
    border-bottom: 0;
  }
  a.header__nav--button {
    color: var(--color-white);
  }
  .header {
    z-index: 3;
    position: relative;
  }
}

@media (max-width: 767px) {
  .header__menu .menu-item a {
    font-size: 24px;
  }
  .header__menu .header__nav--nomer {
    font-size: 24px;
  }
  .header__menu .header__nav--max span {
    font-size: 12px;
  }
  .header__menu .header__nav--address, .header__menu .header__nav--email {
    font-size: 13px;
  }
  .header__logo img {
    width: 170px;
  }
  .header__content--1 {
    order: 2;
  }
  .header__content--2 {
    order: 3;
  }
  .header__logo {
    order: 1;
  }
  .header__link span, .header__button span{
    display: none;
  }
  .header__link, .header__button {
    padding: 8px;
  }
  .menuIcon__text {
    display: none;
  }
  .menuIcon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
    background: #ffffff00;
    border: 1px solid var(--color-secondary-gray);
    position: relative;
    left: 0;
    top: 0;
    min-width: 42px;
  }
  .header__menu-button span, .header__menu-button:before, .header__menu-button:after {
    background-color: #231f20;
  }
  .header__container {
    display: flex;
    gap: 8px;
  }
  .header__body {
    gap: 8px;
    width: 100%;
    z-index: 12;
    background: var(--color-white);
  }
  .header__logo {
    margin-right: auto;
  }
  .menuIcon._active {
    width: 42px;
    height: 42px;
    top: 0;
    right: 0;
  }
  .header__menu-button._active:before,.header__menu-button._active:after{
    background: var(--color-white);
  }
  a.header__nav--button.button {
    font-size: 13px;
  }
  .header {
    border-radius: 0 0 16px 16px;
  }
}
.banner{
  border-radius: 0 0 24px 24px;
  padding: 144px 16px 16px;
  background-image: url(/img/banner.jpg);
  min-height: 748px;
  background-size: cover;
  background-position-y: bottom;
  position: relative;
}
.banner:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(/img/banner-fone.svg);
  border-radius: 0 0 24px 24px;
  background-size: cover;
  background-position-y: bottom;
  z-index: 1;
}
.banner__container {
  position: relative;
  z-index: 2;
}
.banner__title {
  max-width: 683px;
  margin: auto;
  padding-bottom: 24px;
}
.banner__text {
  font-weight: 400;
  font-size: 17px;
  line-height: 153%;
  text-align: center;
  color: var(--color-white);
  max-width: 524px;
  margin: auto;
}
.banner-services {
  background-image: url(/img/banner-services.jpg);
 /* min-height: 590px;*/
}
@media (max-width: 1024px) {
  .banner{
    background-position: center;
  }
}

@media (max-width: 767px) {
  .banner {
    min-height: 600px;
    padding: 96px 0px 32px;
  }
  .banner__title {
    font-size: 32px;
    line-height: 125%;
  }
  .banner__text {
    font-size: 15px;
    line-height: 160%;
  }
  .container {
    padding: 0 16px;
  }
}
.subtitles {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 32px;
}
.complex__text {
  font-weight: 300;
  font-size: 17px;
  line-height: 153%;
  text-align: center;
  color: var(--color-black);
  max-width: 948px;
  margin: auto;
}
.complex__plashki {
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: center;
  color: var(--color-gold);
  cursor: pointer;
}
.complex__plashkis {
  display: flex;
  gap: 32px;
  padding: 32px 0 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.complex__plashki--active {
  color: var(--color-black);
  text-decoration: none;
}
.complex__slide img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;

}
.complex__slide {
  position: relative;
  border-radius: 16px;
}
.complex__slide:hover:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("/img/complex/hover.png");
  border-radius: 16px;
}
.complex__wrapper {
  align-items: stretch;
}

.complex__slide.swiper-slide {
  height: auto;
}
.complex__slider-navigations {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 32px;
}
.swiper-prev, .swiper-next {
  border-radius: 888px;
  width: 40px;
  height: 40px;
  background: var(--color-tertiary-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.complex__slider.swiper{
  display: none;
  opacity: 0;
  transition: opacity 500ms ease-in-out;
}
.complex__slider--active.swiper{
  display: block;
}
.complex__slider--active.swiper.complex__slider--active-opacity{
  opacity: 1;
}
.hrefs{
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--color-gold);
  text-align: center;
  padding-top: 32px;
}
@media (max-width: 1024px) {
  .complex__slider-navigations {

    padding-top: 24px;
  }
  .hrefs{
    padding-top: 24px;
  }
}

@media (max-width: 767px) {
  .subtitles {
    padding-bottom: 16px;
  }
  .complex__text {
    font-size: 15px;
    line-height: 160%;
  }
  .complex__plashkis {
    padding: 16px 15px 24px;
    gap: 18px;
    justify-content: center;
  }
  .complex__plashki {
    font-size: 13px;
  }
  .hrefs {
    padding-top: 24px;
    font-size: 13px;
  }
}
.services__name{
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: var(--color-black);
}
.services_info{
  font-weight: 300;
  font-size: 14px;
  line-height: 171%;
  color: var(--color-black);
}
.services__item{
  background: var(--color-secondary-white);
  border-radius: 16px;
  padding: 16px;
  gap: 16px;
  display: flex;
}
.services__advantages{
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.services__img {
  border-radius: 12px;
  width: 100%;
  max-width: 50%;
  object-fit: cover;
  height: 100%;
  min-height: 243px;
}
.wrapper{
  background: var(--color-white);
}
.services__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 10px;
}
.services {
  padding-top: 0;
}
@media (max-width: 1024px) {
  .services__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .services__item {
    flex-direction: column;
  }
  .services__img {
    max-width: 100%;
  }
  .services__advantages {
    padding: 0;
  }
  .services__name {
    font-size: 20px;
    line-height: 140%;
  }
  .services_info {
    font-size: 13px;
    line-height: 169%;
  }
}
.advantages__row{
  display: flex;
  gap: 16px;
  padding-top: 10px;
}
.advantages__icons{
  background: var(--color-gold);
  border-radius: 50%;
  width: 84px;
  height: 84px;
  display: flex;
  justify-content: center;
}
.advantages__item{
  display: flex;
  gap: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.advantages__title{
  font-weight: 700;
  font-size: 15px;
  line-height: 160%;
  text-align: center;
  color: var(--color-white);
}
.advantages{
  background-image: url("/img/advantages.jpg");
  border-radius: 24px;
  background-size: cover;
}
.advantages__titles {
  color: var(--color-white);
}
.advantages__title span {
  display: block;
}
@media (max-width: 1024px) {
  .advantages__item {
    width: 31%;
  }
  .advantages__row {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .advantages__item {
    width: 47%;
    justify-content: stretch;
  }
  .advantages__icons {
    width: 64px;
    height: 64px;
  }
  .advantages__title {
    font-size: 14px;
    line-height: 143%;
  }
  .advantages__title span {
    display: inline;
  }
}
.contacts__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1.50px solid var(--color-gold);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  gap: 16px;
}
.contacts__img{
  border-radius: 12px;
  width: 100%;
}
.contacts__item{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contacts__name{
  font-weight: 400;
  font-size: 14px;
  line-height: 171%;
  text-align: center;
  color: var(--color-gold);
}
.contacts__tel1{
  font-weight: 700;
  font-size: 48px;
  line-height: 117%;
  text-align: center;
  color: var(--color-black);
  text-decoration: none;
}
.contacts__tel2{
  font-weight: 700;
  font-size: 15px;
  line-height: 160%;
  text-align: center;
  color: var(--color-black);
  text-decoration: none;
}
.contacts__info{
  font-weight: 400;
  font-size: 14px;
  line-height: 171%;
  text-align: center;
  color: var(--color-black);
}
.contacts__karta {
  height: 100%;
}
.contacts__karta iframe {
  border-radius: 16px;
}
.contacts__advantages, .contacts__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contacts__email {
  font-size: 14px;
  line-height: 171%;
  text-align: center;
  color: var(--color-black);
}
.contacts__button {
  width: 100%;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .contacts__row {
    grid-template-columns: 1fr;
  }
  .contacts__karta {
    height: 376px;
  }
}

@media (max-width: 767px) {
  .contacts__row {
    display: flex;
    flex-direction: column-reverse;
  }
  .contacts__name, .contacts__info {
    font-size: 13px;
    line-height: 169%;
  }
  .contacts__tel1 {
    font-size: 28px;
    line-height: 129%;
  }
  .contacts__tel2 {
    font-size: 14px;
  }
  .contacts__item {
    gap: 12px;
  }
  .contacts__karta {
    height: 246px;
  }
}
.footer {
  background: var(--color-black);
  border-radius: 24px 24px 0 0;
}
.footer___row{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.footer__item{
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: start;
}
.footer__tel1{
  font-weight: 700;
  font-size: 32px;
  line-height: 125%;
  color: var(--color-white);
  text-decoration: none;
}
.footer__tel2{
  font-weight: 700;
  font-size: 15px;
  line-height: 160%;
  color: var(--color-white);
  text-decoration: none;
}
.footer__address{
  font-weight: 400;
  font-size: 14px;
  line-height: 171%;
  color: var(--color-secondary-gray);
}
.footer__marshrut{
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--color-gold);
}
.footer__email{
  font-weight: 400;
  font-size: 14px;
  line-height: 171%;
  color: var(--color-white);
  text-decoration: none;
}
.footer___menu{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.menu-item a{
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  color: var(--color-secondary-gray);
  position: relative;
  text-decoration: none;
  display: inline;
}
.menu-item a:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-white);
  transition: width 0.4s;
}
.menu-item a:hover{
  color: var(--color-white);
}
.menu-item a:hover:before{
  width: 100%;
}
.footer__item--imgs{
  display: flex;
  gap: 26px;
  justify-content: space-between;
  flex-direction: row;
  align-items: normal;
}
.footer__img{
  border-radius: 12px;
  object-fit: cover;
}
.copyright__text, .copyright__text a{
  font-weight: 400;
  font-size: 14px;
  line-height: 171%;
  color: var(--color-secondary-gray);
  position: relative;
  display: inline;
  text-decoration: none;
}
.copyright__text a:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-white);
  transition: width 0.4s;
}
.copyright__text a:hover{
  color: var(--color-white);
}
.copyright__text a:hover:before{
  width: 100%;
}
.footer__copyright{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.footer__link {
  border: 1px solid var(--color-gold);
  transition: all 300ms ease-in-out;
  border-radius: 888px;
  padding: 8px 16px;
  background: var(--color-gold);
  display: flex;
  gap: 6px;
  align-items: center;
  font-weight: 500;
  font-size: 13px;
  line-height: 154%;
  color: var(--color-white);
  text-decoration: none;
}
.footer__link img {
  transition: all 300ms ease-in-out;
}
.footer__link:hover {
  background-color: #b68d4400;
  color: var(--color-gold);
  box-shadow: 0 0 40px 40px #b68d4400 inset;
}
.footer__link:hover img {
  filter: brightness(0) saturate(100%) invert(59%) sepia(10%) saturate(2257%) hue-rotate(360deg) brightness(95%) contrast(88%);
}

@media (max-width: 1024px) {
  .footer___row {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .footer__item--imgs {
    grid-row: 2 / span 2;
  }
  .footer__item--s {
    grid-row: 1 / span 2;
    grid-column: 1 / span 2;
  }
}

@media (max-width: 767px) {
  .footer___row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer__item {
    align-items: center;
  }
  .footer__tel1 {
    font-size: 24px;
    line-height: 125%;
  }
  .footer__tel2 {
    font-size: 14px;
    line-height: 143%;
  }
  .footer__address, .footer__marshrut, .footer__email {
    font-size: 13px;
    line-height: 169%;
  }
  .footer__item--imgs{
    grid-row: 3;
  }
  .footer__menu {
    align-items: center;
  }
  .footer__container {
    gap: 32px;
  }
  .footer__item.footer__item--s {
    grid-row: 1;
    grid-column: 1;
  }
  .copyright__text {
    text-align: center;
  }
  .footer__item--imgs {
    gap: 8px;
    align-items: normal;
  }
  .footer__img {
    border-radius: 12px;
    width: max-content;
    max-width: 37%;
    object-fit: cover;
  }
  .footer___menu {
    text-align: center;
  }
}
.popup__title{
  font-weight: 700;
  font-size: 32px;
  line-height: 125%;
  color: var(--color-black);
}
.popup__text{
  font-weight: 400;
  font-size: 17px;
  line-height: 153%;
  color: var(--color-gray);
}
.feedback__form{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 767px) {
  .popup__content {
    padding: 16px;
  }
  .popup__title {
    font-size: 24px;
    line-height: 125%;
  }
  .popup__text {
    font-size: 15px;
    line-height: 160%;
  }
  .close-popup {
    top: 16px;
    right: 16px;
  }
  input {
    font-size: 15px;
    line-height: 160%;
  }
  .feedback__agree {
    font-size: 13px;
    line-height: 169%;
  }
}
.breadcrumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding-bottom: 16px;
}
.breadcrumbs__name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 13px;
  line-height: 154%;
  text-align: center;
  color: rgba(255, 255, 255, 0.64);
}
.breadcrumbs__name a {
  color: var(--color-white);
  text-decoration: none;
}
.banner-services .banner__text {
  max-width: 735px;
}
.service__title{
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  color: var(--color-black);
}
.service__text{
  font-weight: 300;
  font-size: 17px;
  line-height: 153%;
  color: var(--color-black);
}
.service__item{
  display: flex;
  border: 1.50px solid var(--color-gold);
  border-radius: 16px;
  padding: 16px;
}
.service__item:nth-child(2n){
  flex-direction: row-reverse;
}
.service__img{
  width: 50%;
  border-radius: 12px;
}
.service__info{
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 0px 48px;
}
.service__row{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1024px) {
  .service__title {
    font-size: 24px;
    line-height: 133%;
  }
}

@media (max-width: 767px) {
  .service__item {
    flex-direction: column;
    gap: 16px;
  }
  .service__img {
    width: 100%;
  }
  .service__info {
    width: 100%;
    padding: 0;
  }
  .service__item:nth-child(2n) {
    flex-direction: column;
  }
  .service__text {
    font-size: 15px;
    line-height: 160%;
  }
  .service__title {
    font-size: 20px;
    line-height: 140%;
  }
}
.contact{
  background: var(--color-secondary-white);
  border-radius: 0 0 24px 24px;
  padding-top: 120px;
}
.contact .breadcrumbs__name {
  color: var(--color-gray);
}
.contact .breadcrumbs__name a{
  color: var(--color-black);
}
.contact__text{
  font-weight: 400;
  font-size: 17px;
  line-height: 153%;
  text-align: center;
  color: var(--color-gray);
}
.contact .breadcrumbs__name span {
  color: var(--color-gold);
}

@media (max-width: 767px) {
  .contact {
    padding-top: 32px;
  }
  .contact__text {
    font-size: 15px;
    line-height: 160%;
  }
}
.thanks{
  background: var(--color-secondary-white);
  min-height: 676px;
  margin-bottom: 32px;
  border-radius: 0 0 24px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.thanks__text{
  font-weight: 400;
  font-size: 17px;
  line-height: 153%;
  text-align: center;
  color: var(--color-gray);
  max-width: 465px;
  margin: auto;
}
.thanks__title {
  max-width: 391px;
}
.thanks_a {
  max-width: 188px;
  margin: auto;
  padding-top: 50px;
}

@media (max-width: 767px) {
  .thanks {
    min-height: 536px;
    margin-bottom: 16px;
  }
  .thanks__text {
    font-size: 15px;
    line-height: 160%;
  }
  .thanks_a {
    padding-top: 24px;
  }
}
.stocks__row{
  display: flex;
  gap :16px;
}
.stocks__item{
  border: 1px solid var(--color-stroke);
  border-radius: 16px;
  background: var(--color-white);
  max-width: calc(25% - 12px);
}
.stocks__img{
  width: 100%;
  border-radius: 12px;
}
.stocks__infos{
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stocks__name{
  font-weight: 700;
  font-size: 18px;
  line-height: 156%;
  color: var(--color-black);
}
.stocks__info{
  font-weight: 300;
  font-size: 14px;
  line-height: 171%;
  color: var(--color-black);
}
@media (max-width: 1024px) {
  .stocks__item {
    max-width: calc(33% - 9px);
  }
  .stocks__row {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .stocks__item {
    max-width: 100%;
    min-width: 100%;
  }
  .stocks__name {
    font-size: 16px;
    line-height: 150%;
  }
  .stocks__info {
    font-size: 13px;
    line-height: 169%;
  }
  .stocks__infos {
    gap: 12px;
  }
}
.feel{
  background: var(--color-white);
}
.banner-about {
  background-image: url(/img/banner-about.jpg);
  min-height: 590px;
  background-position-y: center;
}
.banner-about .banner__text {
  max-width: 738px;
}
.comfortable-rooms__wrapper .complex__slide {
  max-height: 720px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.comfortable-rooms{
  background: var(--color-secondary-white);
}
.comfortable-rooms__title {
  max-width: 538px;
}
.comfortable-rooms__slider-navigations {
  position: absolute;
  top: calc(50% - 20px);
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
}
.comfort__row{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px 16px;
}
.comfort__item{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comfort__img{
  border-radius: 12px;
  width: 100%;
}
.comfort__advantages{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.comfort__name{
  font-weight: 700;
  font-size: 18px;
  line-height: 156%;
  color: var(--color-black);
}
.comfort_info{
  font-weight: 300;
  font-size: 14px;
  line-height: 171%;
  color: var(--color-black);
}
@media (max-width: 1024px) {

}

@media (max-width: 767px) {
  .comfort__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .comfort__name {
    font-size: 16px;
    line-height: 150%;
  }
  .comfort_info {
    font-size: 13px;
    line-height: 169%;
  }
}

.ideoreview__img {
  max-width: 910px;
  width: 100%;
  display: block;
  margin: auto;
}
.banner__sliders{
  position: absolute;
  width: 100%;
  height: 100%;
  top:0;
  left: 0;
  border-radius: 0 0 24px 24px;
}
.banner__slider{
  height: 100%;
}
.banner__slide {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0 0 24px 24px;
}
@media (max-width: 1024px) {

}

@media (max-width: 767px) {

}

@media (max-width: 1024px) {

}

@media (max-width: 767px) {

}

#feedback .alert-danger {
  color: var(--color-gray);
}
.booking__calendars, .booking__lists{
  max-width: 910px;
  margin: auto;
}
.booking__lists{
  padding-top: 20px;
}
.search__formgl {
  max-width: 910px;
  margin: auto;
  margin-top: 40px;
}
#WidgetHorizontalBlockId button{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  text-align: center;
  color: var(--color-white);
  background: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: none;
  width: 100%;
  height: 48px;
  border-radius: 10px;
}
#WidgetHorizontalBlockId .VwZTwv.y_cYOf {
  border-radius: 16px;
  padding: 16px;
  background: var(--color-white);
}
#WidgetHorizontalBlockId .VwZTwv.y_cYOf .MQe7xH {
  width: 50%;
}
#WidgetHorizontalBlockId .C84cPX div div>span {
  border: 1px solid var(--color-stroke);
  border-radius: 10px;
  padding: 12px 16px 12px 20px;
  width: 218px;
  height: 48px;
  background: #ffffff00;

}
#WidgetHorizontalBlockId .uhoNSD {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  line-height: 171%;
  color: var(--color-gray);
  left: 16px;
}
#WidgetHorizontalBlockId .react-ui-12e28zg * {
  box-sizing: border-box;
  fill: #b68d44;
}
#WidgetHorizontalBlockId button.react-ui-14dmzqx {
  border: 1px solid var(--color-gold);
  border-radius: 10px;
  padding: 12px 16px 12px 20px;
  width: 218px;
  height: 48px;
  background: var(--color-white);
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 14px;
    line-height: 171%;
    color: var(--color-black);
}
#WidgetHorizontalBlockId .react-ui-1y3v7w7 {
  height: 48px;
}
#WidgetHorizontalBlockId .VwZTwv.y_cYOf .ZpDuj5 {
  gap: 12px;
}
#WidgetRoomsListId button {
  border-radius: 888px;
  padding: 0px 21px;
  height: 44px;
  background: var(--color-gold);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  text-align: center;
  color: var(--color-white);
  box-shadow: none;
  width: auto;
}
#WidgetHorizontalAvailabilityCalendarId .UKwZzA {
  margin-right: 0;
  width: var(--bm-theme-entitySelect-width, 405px);
}
#WidgetHorizontalAvailabilityCalendarId .GXqgYg .VUyg6j {
  background: var(--color-white);
}
#WidgetHorizontalAvailabilityCalendarId .react-ui-1y3v7w7 {
  height: 100%;
}
#WidgetHorizontalAvailabilityCalendarId .react-ui-1baukbf {
  border: 1px solid var(--color-stroke);
  border-radius: 10px;
  padding: 12px 16px 12px 20px;
  width: 248px;
  height: 48px;
}
span.react-ui-c6gvsf svg path {
  fill: #b68d44;
}
.react-ui .VwZTwv.y_cYOf .MQe7xH {
  width: 50%;
}
.react-ui .react-ui-12e28zg, .react-ui .react-ui-8ldke1 {
  border: 1px solid var(--color-stroke);
  border-radius: 10px;
  padding: 12px 16px 12px 20px;
  height: 48px;
  background: #ffffff00;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  line-height: 171%;
  color: var(--color-black);
  box-shadow: none;
}
.react-ui  button.react-ui-14dmzqx {
  border-radius: 10px;
  padding: 12px 16px 12px 20px;
  height: 48px;
  background: #ffffff00;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  line-height: 171%;
  color: var(--color-black);
}
.react-ui  .react-ui-1y3v7w7{
  height: auto;
}
.react-ui  button.react-ui-f2kams {
  border: 1px solid var(--color-gold);
  border-radius: 10px;
  padding: 12px 16px;
  width: 209px;
  height: 48px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  text-align: center;
  color: var(--color-black);
  background: var(--color-white);
}
.react-ui .IkgEPm button.react-ui-1cdkxzp {
  border-radius: 888px;
  padding: 8px 16px;
  width: 88px;
  height: 36px;
  background: var(--color-gold);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 154%;
  color: var(--color-white);
  box-shadow: none;
}
.react-ui .zg6Y7d {
  background: var(--color-secondary-white);
  border-radius: 16px;
  padding: 12px;
}
button.react-ui-1cdkxzp {
  border: 1px solid var(--color-gold);
  border-radius: 10px;
  padding: 12px 16px;
  width: 209px;
  height: 48px;
  color: var(--color-black);
  background: var(--color-white);
}
.react-ui-95zjob, .VwZTwv {
  background: var(--color-white);
}
.VwZTwv.phfKda .ZpDuj5 {
  background: var(--color-white);
}
@media (max-width: 1024px) {
  #WidgetHorizontalBlockId .rLVYRh.WidgetBookingControlButtonContainer, #WidgetHorizontalBlockId button.react-ui-14dmzqx {
    width: 100%;
  }
  #WidgetHorizontalBlockId .VwZTwv.y_cYOf .MQe7xH {
    width: 66%;
  }
  #WidgetRoomsListId .ke5Cp3.UET1aZ {
    width: 100%;
    height: auto;
    grid-area: auto;
  }
  #WidgetRoomsListId .Mx3l5k {
    align-items: flex-start;
    grid-area: auto;
  }
  #WidgetRoomsListId .BwFaze {
    flex-direction: column;
  }
  #WidgetRoomsListId .IkgEPm {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: none;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  #WidgetHorizontalBlockId .VwZTwv.y_cYOf .MQe7xH {
    width: 55%;
  }
  .react-ui .VwZTwv.y_cYOf .MQe7xH {
    width: 100%;
  }
  .VwZTwv.phfKda .DxgSnE {
    width: calc(50% - 8px)!important;
  }
  .VwZTwv.phfKda .rLVYRh {
    width: calc(50% - 12px)!important;
  }
  .react-ui  button.react-ui-f2kams{
    width: 100%;
  }
  .react-ui .ke5Cp3.QMcHve {
    width: 100%;
    grid-area: auto;
    height: 100%;
  }
  .react-ui .Mx3l5k {
    align-items: flex-start;
    grid-area: auto;
  }
  .react-ui .IkgEPm {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: none;
    gap: 24px;
  }
  .react-ui .IkgEPm {
    display: flex;
    flex-direction: column;
  }
  .react-ui .ke5Cp3 {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 767px) {
  #WidgetHorizontalBlockId .VwZTwv.y_cYOf .MQe7xH {
    width: 100%;
  }
  #WidgetRoomsListId .IkgEPm {
    gap: 0;
  }
  #WidgetHorizontalAvailabilityCalendarId .GXqgYg.eYnHez{
    border: var(--bm-theme-container-border, 1px solid var(--k-color-line-inverted-accent-bold));
    border-radius: var(--bm-theme-container-borderRadius, 12px);
  }
  .VwZTwv.phfKda .rLVYRh {
    width: 100% !important;
  }
  .react-ui-1v564ob {
    max-width: 90%;
    top: 20px;
    border-radius: 20px;
    background: #f6f2ed;
  }
  .VwZTwv.phfKda .DxgSnE {
    width: 100% !important;
  }
  .PRhzjP{
    height: auto;
  }
  .ta0uG0 button.react-ui-1cdkxzp {
    width: 100%;
  }
  #WidgetHorizontalAvailabilityCalendarId .react-ui-1baukbf {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .PRhzjP {

    max-height: 250px;
  }
}
.videoreview__3d video {
  width: 100%;
}
