:root {
  --color-black: #413c3c;
  --color-red: #c50f3c;
  --color-red-light: #f9e7ec;
  --color-gray: #f8f7f7;
}
@font-face {
  font-family: 'Open Sans';
  src: url(../fonts/OpenSans-Bold.woff2) format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url(../fonts/OpenSans-Regular.woff2) format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url(../fonts/OpenSans-Light.woff2) format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url(../fonts/OpenSans-ExtraBold.woff2) format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url(../fonts/OpenSans-Italic.woff2) format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url(../fonts/OpenSans-Medium.woff2) format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url(../fonts/OpenSans-SemiBold.woff2) format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
html {
  height: 100%;
  min-height: 100%;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body {
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
  min-height: 100vh;
  color: var(--color-black);
  margin: 0;
  background-color: #fff;
}
main {
  display: block;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
img {
  border-style: none;
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.6;
  margin: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
button,
select {
  text-transform: none;
}
[type='button'],
[type='submit'],
button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}
textarea {
  overflow: auto;
  resize: none;
}
[type='checkbox'],
[type='radio'] {
  box-sizing: border-box;
  padding: 0;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  outline-offset: -2px;
}
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  appearance: button;
  font: inherit;
}
[hidden] {
  display: none;
}
*,
::after,
::before {
  box-sizing: inherit;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  line-height: 1.3;
}
ol,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
p {
  margin: 0;
}
a {
  text-decoration: none;
  background-color: transparent;
  color: var(--color-black);
  cursor: pointer;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
input {
  border: none;
  background-color: #fff;
  font: inherit;
}
button {
  border: none;
  padding: 0;
  font: inherit;
  background-color: transparent;
}
.container {
  max-width: 1860px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.overlay::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8) 100%);
  position: absolute;
  left: 0;
  top: 0;
}
.no-overflow {
  overflow: hidden;
}
.header {
  display: block;
}
.header__container {
  display: block;
  padding: 20px 20px 13px;
}
.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.soc {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.soc__item {
  display: block;
  line-height: 1;
}

.soc__item-max {
  display: block;
}

.soc__item-max svg {
  padding: 21px;
  background-color: rgb(237, 242, 247);
  border-radius: 17px;
  fill: #edf2f7;
}

.header__adres {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.8;
  position: relative;
  top: -4px;
}
.logo {
  display: block;
}
.header__logo {
  display: block;
}
.header__contacts {
  display: flex;
  gap: 8px;
  flex-direction: column;
  flex-shrink: 0;
}
.tel {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.tel__ico {
  display: block;
}
.tel__number {
  display: block;
  font-weight: 700;
  font-size: 16px;
}
.tel__soc {
  display: block;
}
.btn {
  border-radius: 18px;
  text-align: center;
  color: #fff;
  background-color: var(--color-red);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  padding: 18px 10px;
  padding: 24px 30px;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  cursor: pointer;
}
.btn:hover {
  background-color: #a60c32;
  color: #fff;
}
.btn-light {
  background-color: var(--color-red-light);
  color: var(--color-red);
}
.btn-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.btn-flex path {
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.btn-flex:hover {
  background-color: #a60c32;
  color: #fff;
}
.btn-flex:hover path {
  fill: #fff;
}
.btn-flex svg {
  display: block;
}
.header__btn {
  max-width: 203px;
  width: 100%;
  position: relative;
  top: -3px;
}
.hamburger {
  display: none;
}
.nav-contacts {
  display: none;
}
.header__nav {
  display: block;
  border-top: 1px solid #e3e2e2;
}
.menu {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}
.menu li {
  display: block;
  flex-shrink: 0;
}
.menu a {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(12px, 0.84vw, 16px);
  padding: 17px 0;
}

.menu a:hover,
.current-menu-item a {
  color: var(--color-red);
}

.menu-item-has-children {
  position: relative;
}
.menu-item-has-children a {
  position: relative;
  padding-right: 18px;
}
.menu-item-has-children > a:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  top: calc(50% - 4px);
  width: 10px;
  height: 6px;
  background-image: url(../svg/ico-menu-daw.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.menu-item-has-children:hover > a:after {
  transform: rotate(180deg);
}
.menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}
.sub-menu {
  position: absolute;
  padding: 20px 23px;
  min-width: -moz-max-content;
  min-width: max-content;
  visibility: hidden;
  opacity: 0;
  z-index: 998;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  background-color: #fff;
  margin-top: -10px;
  margin-left: 0;
  box-shadow: 0 15px 41px 3px #7c7c7c14;
  border-radius: 18px;
}
.sub-menu a {
  padding: 0;
  margin-bottom: 10px;
}
.sub-menu li:last-child a {
  margin-bottom: 0;
}
.hero {
  display: block;
  margin-bottom: 49px;
  position: relative;
}
.hero__cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}
.hero__container {
  display: block;
  max-width: 1860px;
}
.hero__inner {
  display: flex;
  align-items: flex-end;
  position: relative;
  height: 660px;
  border-radius: 18px;
  overflow: hidden;
  padding: 50px;
}
.hero__inner.overlay::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgb(0 0 0 / 10%), rgb(0 0 0 / 20%) 100%);
  position: absolute;
  left: 0;
  top: 0;
}

#block-search {
  background: #ffffff;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-radius: 18px;
  padding: 15px;
  height: 123px;

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

#block-search.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.tl-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 25px;
}

.home-about {
  padding-top: 51px;
  margin-bottom: 103px;
}
.home-about__content {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
}
.home-about__container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  flex-flow: column wrap;
}
.home-about__logo {
  display: block;
  max-width: 174px;
  width: 100%;
  margin: 0 auto 43px;
}
.home-about__text {
  text-align: center;
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 1.8;
}
.home-about__text p {
  display: block;
  margin-bottom: 32px;
}
.home-about__text strong {
  color: var(--color-red);
  font-weight: 700;
  font-size: 20px;
}
.home-about__btn {
  max-width: 180px;
  width: 100%;
  margin: -3px auto 0;
}
.interesting-offers {
  display: block;
  position: relative;
  margin-bottom: 101px;
}
.interesting-offers__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.title {
  font-size: 41px;
  margin-bottom: 40px;
}
.title-page {
  padding-left: 30px;
}
.interesting-offers__title {
  margin-bottom: 0;
}
.interesting-offers__head-btn {
  max-width: 242px;
  width: 100%;
}
.interesting-offers__head-btn-mob {
  display: none;
}
.interesting-offers__slider-wide-wrap {
  display: block;
  margin: 0 0 6px;
}
.interesting-offers__slider-wide {
  display: block;
}
.interesting-offers .swiper-slide {
  height: auto;
}

.swiper-slide {
  box-sizing: border-box;
  height: auto;
}

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

.interesting-offers-item {
  position: relative;
  height: 550px;
  border-radius: 18px;
  overflow: hidden;
  padding: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.interesting-offers-item img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.interesting-offers-item__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  gap: 10px;
}
.interesting-offers-item__content {
  display: block;
}
.interesting-offers-item__title {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}
.interesting-offers-item__text {
  color: #fff;
}
.interesting-offers-item__btn {
  max-width: 180px;
  width: 100%;
}
.interesting-offers__slider-thumb {
  display: block;
}
.interesting-offers__thumb {
  display: block;
  position: relative;
  background-color: var(--color-gray);
  padding: 4px 4px 20px;
  border-radius: 22px;
  transition-duration: 0.3s;
  height: 100%;
}
.swiper-slide-thumb-active .interesting-offers__thumb {
  background-color: var(--color-red);
  color: #fff;
}
.interesting-offers__thumb img {
  display: block;
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 18px;
}
.interesting-offers__thumb-title {
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  display: block;
  line-height: 1.4;
  padding: 0 7px;
}

.interesting-offers-item__title br {
  display: none;
}

.slider__nav {
  display: block;
  position: absolute;
  z-index: 2;
  line-height: 0;
}
.slider__nav-l {
  display: block;
  left: 0;
}
.slider__nav-r {
  display: block;
  right: 0;
}
.interesting-offers .slider__nav {
  top: 38%;
}
.complex {
  display: block;
  margin-bottom: 100px;
}
.complex__title {
  display: block;
}
.multi-slider-wrap {
  padding: 0 110px;
  position: relative;
}
.complex-slider {
  display: block;
  position: relative;
}
.complex-slider .swiper-slide {
  height: auto;
}
.complex-item {
  background-color: var(--color-gray);
  border-radius: 22px;
  padding: 10px 10px 30px;
  height: 100%;
  display: block;
}
.complex-item__inner {
  padding: 0 25px;
}
.complex-item img {
  width: 100%;
  height: 300px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 19px;
  margin-bottom: 25px;
}
.complex-item__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.complex-item__desc {
  font-size: 14px;
}
.complex .slider__nav {
  top: 28%;
}
.room-stock {
  display: block;
  margin-bottom: 53px;
}
.room-stock__title {
  display: block;
}
.room-stock__item {
  position: relative;
  height: 550px;
  overflow: hidden;
  border-radius: 18px;
  padding: 50px;
  display: flex;
  align-items: flex-end;
  margin: 0;
}
.room-stock__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.room-stock__content {
  background-color: #fff;
  padding: 33px 40px;
  border-radius: 18px;
  position: relative;
  z-index: 1;
  max-width: 450px;
  width: 100%;
}
.room-stock__name {
  font-size: 26px;
  display: block;
  margin-bottom: 7px;
}
.room-stock__desc {
  display: block;
  margin-bottom: 25px;
}
.room-stock__buttons {
  margin-top: 26px;
  display: flex;
  gap: 10px;
}
.room-stock__btn {
  width: 100%;
}
.room-stock__btn-mob {
  display: none;
}
.room-options {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.room-options__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.room-options__item-ico {
  display: block;
  height: 16px;
}
.other-rooms {
  display: block;
  margin-bottom: 103px;
}

.other-rooms__title {
  display: block;
}

h2.other-rooms__title_cackes {
  margin-bottom: 0;
}

.other-rooms__head-cakes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.other-rooms-slider {
  display: block;
}
.other-rooms-slider .swiper-slide {
  height: auto;
}
.swiper .room {
  height: 100%;
}

.room {
  padding: 10px 10px 30px;
  border-radius: 22px;
  background-color: var(--color-gray);
  width: 100%;
  display: block;
}
.room__inner {
  padding: 0 20px;
}
.room__img {
  display: block;
  border-radius: 18px;
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 25px;
}
.room__title {
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}
.room .room-options {
  gap: 10px 15px;
}
.other-rooms .slider__nav {
  top: 32%;
}
.add-services {
  display: block;
  margin-bottom: 102px;
}
.add-services__title {
  display: block;
}
.add-services__tabs {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 40px;
  overflow-x: auto;
}
.add-services__tabs-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 27px;
  padding: 18px 29px;
  flex-shrink: 0;
}

.add-services__tabs-item img {
  display: block;
  flex-shrink: 0;
  height: 18px;
}
.add-services__tabs-item.active {
  background-color: var(--color-red);
  color: #fff;
}
.add-services__tabs-item.active img,
.add-services__tabs-item:hover img {
  filter: brightness(0) invert(1);
}

a.add-services__tabs-item:hover path {
  fill: #fff;
}

.add-services__tab-wrap {
  display: block;
  margin: 0;
}
.add-services__body {
  padding: 10px;
  border-radius: 22px;
  background-color: var(--color-gray);
  display: none;
}
.add-services__body.active {
  display: block;
}
.add-services__item {
  display: flex;
  gap: 35px;
  position: relative;
}
.add-services__item-img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 699px;
  min-width: 320px;
  height: 450px;
  width: 100%;
  border-radius: 18px;
}
.add-services__item-content {
  display: flex;
  flex-direction: column;
  padding-top: 28px;
  padding-right: 40px;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.add-services__item-ico {
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
}
.add-services__item-content-text {
  display: block;
}
.add-services__item-title {
  display: block;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.add-services__item-content p {
  margin-bottom: 16px;
}
.add-services__item-content-btn {
  max-width: 180px;
  width: 100%;
  margin-top: 15px;
  left: 0;
  bottom: 26px;
}
.scheme-complex {
  display: block;
  margin-bottom: 100px;
}
.scheme-complex__title {
  display: block;
}
.scheme-complex__inner {
  margin: 0;
  background-color: var(--color-gray);
  padding: 10px 10px 13px;
  border-radius: 22px;
}
.scheme-complex__img {
  border-radius: 18px;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 37px;
}
.scheme-complex__desc {
  padding: 0 24px;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  counter-reset: item;
}
.scheme-complex__desc-item {
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  counter-increment: item;
}
.scheme-complex__desc-item::before {
  content: counter(step);
  content: counter(item);
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--color-red);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.scheme-complex__bottom {
  margin-top: 20px;
  padding: 0 24px;
}
.scheme-complex__bottom-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.scheme-complex__desc-item-num {
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--color-red);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.map-block {
  display: block;
}
.map-block__inner {
  margin: 0;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
.map-block__wrap {
  max-width: 1320px;
  width: 100%;
  height: 706px;
  overflow: hidden;
  border-radius: 18px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  padding-left: 50px;
  padding-bottom: 50px;
}
.map-block__wrap iframe,
.map-block__wrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.map-block__info {
  background-color: #fff;
  padding: 32px 40px 35px;
  position: relative;
  z-index: 1;
  max-width: 450px;
  width: 100%;
  border-radius: 18px;
}
.map-block__info-name {
  display: block;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}
.map-block__info-wrap {
  display: block;
}
.map-block__info-item {
  margin-bottom: 25px;
}
.map-block__info-item_adres {
  font-weight: 700;
}
.map-block__info-item_email {
  font-weight: 700;
}
.map-block__info-item:last-child {
  margin-bottom: 0;
}
.form {
  background-color: var(--color-red-light);
  border-radius: 18px;
}
.map-block__form {
  padding: 35px 50px;
  max-width: 480px;
  width: 100%;
}
.form__name {
  font-size: 40px;
  font-weight: 700;
  display: block;
  margin-bottom: 24px;
  color: var(--color-red);
}
.text-field {
  border-radius: 18px;
  background-color: #fff;
  padding: 20px 58px;
  height: 80px;
  width: 100%;
  border: 1px solid transparent;
  outline: 0;
  font-weight: 600;
  font-size: 14px;
}
.text-field::-moz-placeholder {
  color: #413c3c;
}
.text-field::placeholder {
  color: #413c3c;
}

.text-field:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  -webkit-text-fill-color: #000;
  transition: background-color 9999s ease-in-out 0s;
}

.text-field.wpcf7-not-valid {
  border-color: var(--color-red);
}

.text-field[type='tel'] {
  background-image: url(../svg/ico-tel.svg);
  background-size: 20px;
  background-position: left 26px center;
  background-repeat: no-repeat;
}
.text-field[type='email'] {
  background-image: url(../svg/ico-email.svg);
  background-size: 20px;
  background-position: left 26px center;
  background-repeat: no-repeat;
}
.text-field-name {
  background-image: url(../svg/ico-user.svg);
  background-size: 20px;
  background-position: left 26px center;
  background-repeat: no-repeat;
}
.text-field-date {
  background-image: url(../svg/ico-date.svg);
  background-size: 20px;
  background-position: left 26px center;
  background-repeat: no-repeat;
}
.text-field-users {
  background-image: url(../svg/ico-users.svg);
  background-size: 20px;
  background-position: left 26px center;
  background-repeat: no-repeat;
}
.textarea-field {
  display: block;
  resize: none;
  background-image: url(../svg/ico-chat.svg);
  background-size: 20px;
  background-position: left 26px center;
  background-repeat: no-repeat;
  padding: 27px 58px;
  overflow: hidden;
}
.map-block__form .text-field {
  margin-bottom: 10px;
}
.form-acc {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
  gap: 13px;
  width: 100%;
  font-weight: 600;
}
.map-block__form .form-acc {
  margin-top: 30px;
  margin-bottom: 30px;
}
.form-acc a {
  text-decoration: none;
  color: var(--color-red);
}
.form-acc a:hover {
  text-decoration: none;
}
.form-acc input[type='checkbox'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #000;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  background-color: transparent;
}
.form-acc input[type='checkbox']:checked {
  background-color: var(--color-red);
  outline: 0;
  border: none;
}
.form-acc input[type='checkbox']:checked::after {
  content: '';
  display: block;
  width: 6px;
  height: 11px;
  border-style: solid;
  border-color: #fff;
  -o-border-image: initial;
  border-image: initial;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  position: relative;
  left: 6px;
  top: 2px;
}
.form__btn {
  width: 100%;
  padding: 28px 10px;
}
.footer {
  background-color: var(--color-red);
  color: #fff;
  margin-top: 100px;
}
.footer a {
  color: #fff;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-top: 37px;
  padding-bottom: 29px;
}
.footer__logo {
  display: block;
  margin-top: 58px;
}
.footer__menu {
  display: block;
}
.footer__menu a {
  display: block;
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
}
.footer__contacts {
  display: block;
}
.footer__contacts_last {
  max-width: 450px;
  width: 100%;
}
.footer__contacts-item {
  margin-bottom: 25px;
  display: block;
}
.footer__contacts-item-tel {
  font-size: 17px;
  font-weight: 700;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.footer__contacts-item-name {
  display: block;
  font-size: 13px;
  font-weight: 400;
}
.footer__contacts-adres {
  font-weight: 700;
  font-size: 17px;
  display: block;
  margin-bottom: 25px;
}
.copyright {
  font-size: 13px;
  display: block;
  margin-top: 39px;
}

.copyright_mob {
  display: none;
}

.footer .soc rect {
  fill: #fff;
  fill-opacity: 1;
}
.footer .soc path {
  fill: var(--color-red);
}
.footer-bottom {
  border-top: 1px solid #d65776;
}
.footer-bottom__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 30px;
  padding-bottom: 30px;
}
.footer-bottom a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.breadcrumbs {
  padding: 0;
  font-size: 14px;
  margin-bottom: 29px;
}
.breadcrumbs__container {
  padding-left: 50px;
}
.breadcrumbs__container > span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.breadcrumbs span {
  display: flex;
  color: #413c3c;
}
.breadcrumbs a {
  display: block;
  color: #8d8a8a;
}
.about-desc {
  display: block;
  margin-bottom: 60px;
}
.about-desc__content {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
}
.about-desc p {
  display: block;
}
.about-gallery {
  display: block;
  margin-bottom: 100px;
}
.about-gallery__item {
  display: block;
  height: 100%;
}
.about-gallery__item img {
  display: block;
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 18px;
}
.about-gallery .slider__nav {
  top: 42%;
}
.about-info {
  display: block;
  margin-bottom: 100px;
}
.about-info__container {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  max-width: 1860px;
}
.about-info__block {
  max-width: 900px;
  width: 100%;
  background-color: var(--color-red-light);
  padding: 51px 48px 51px 74px;
  border-radius: 18px;
}
.about-info__block-att {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  padding: 12px 10px 12px 29px;
  border: 1px dashed var(--color-red);
  color: var(--color-red);
  border-radius: 18px;
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 753px;
  width: 100%;
}
.about-info__block-att svg {
  display: block;
  flex-shrink: 0;
}
.about-info__block-text {
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
}
.about-info__block-tiles-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  margin: 40px 0;
}
.about-info__block-tile {
  background-color: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 18px;
}
.about-info__block-tile-name {
  font-weight: 700;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  color: var(--color-red);
}
.about-info__block-tile-desc {
  font-size: 16px;
}
.about-info__block-text_2 {
  display: block;
}
.single-slider-wrap {
  display: block;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.single-slider {
  display: block;
}
.about-info-slider {
  max-width: 900px;
  width: 100%;
  height: 100%;
}
.single-slider__item {
  display: block;
  width: 100%;
  height: 100%;
}
.about-info-slider img,
.single-slider img,
.single-slider video {
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  width: 100%;
  height: 100%;
}
.single-slider .slider__nav {
  top: 46%;
}
.single-slider .slider__nav-l {
  display: block;
  left: 20px;
}
.single-slider .slider__nav-r {
  display: block;
  right: 20px;
}
.about-advantages {
  position: relative;
  margin-bottom: 100px;
}
.about-advantages__title {
  display: block;
}
.about-advantages__wrap {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
.about-advantages__info {
  background-color: var(--color-red-light);
  padding: 46px 50px;
  border-radius: 18px;
  max-width: 1263px;
  width: 100%;
}
.about-advantages__info-name {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: 34px;
  display: block;
  text-align: center;
}
.about-advantages__info-inner {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.about-advantages__info-item {
  border-radius: 18px;
  border: 1px dashed var(--color-red);
  width: calc(50% - 10px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 30px;
}
.about-advantages__info-item svg {
  flex-shrink: 0;
}
.about-advantages__info-item:last-child {
  width: 100%;
}
.about-advantages__info-item-content {
  display: block;
}
.about-advantages__info-item-name {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.about-advantages__info-item-desc {
  font-size: 14px;
}
.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 480px;
  width: 100%;
}
.about-timeline__item {
  border-radius: 18px;
  background-color: var(--color-red);
  color: #fff;
  height: 100%;
  padding: 27px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-timeline__item-date {
  font-size: 66px;
  line-height: 1;
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
}
.about-timeline__item-date i {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  font-style: normal;
}
.about-timeline__item-desc {
  font-size: 16px;
}
.about-awards {
  display: block;
}
.about-awards .slider__nav {
  top: 43%;
}
.fund-of-rooms {
  margin-bottom: 100px;
}
.fund-of-rooms__wrap {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.fund-of-rooms .room {
  width: calc(25% - 15px);
}
.room-info {
  display: block;
  margin-bottom: 100px;
}
.room-info__title {
  display: block;
  padding-left: 31px;
}
.room-info__wrap {
  display: flex;
  justify-content: flex-start;
  gap: 70px;
  align-items: stretch;
}
.room-info__media {
  display: block;
}
.room-info .single-slider {
  display: block;
  max-width: 900px;
  width: 100%;
  min-width: 320px;
}
.room-info .single-slider__item img {
  height: 601px;
}
.single-slider__item img {
  display: block;
  width: 100%;
  border-radius: 18px;
  -o-object-fit: cover;
  object-fit: cover;
}
.room-info__block {
  display: flex;
  flex-direction: column;
  max-width: 790px;
  width: 100%;
}
.room-info__block-title {
  color: var(--color-red);
  font-size: 26px;
  margin-bottom: 25px;
}
.room-info .room-options {
  margin-bottom: 25px;
  gap: 27px;
}
.room-info__block-desc {
  display: block;
  margin-bottom: 25px;
}
.room-info__block-desc p {
  display: block;
  margin-bottom: 20px;
}
.room-info__block-desc p:last-child {
  margin-bottom: 0;
}
.room-info__block-list-wrap {
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.room-info__block-list-item {
  display: block;
}
.list-decor li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 16px;
}
.list-decor li:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-image: url(../svg/ico-star.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 7px;
}
.room-info__block-list-item-name {
  display: block;
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: 17px;
  font-size: 14px;
}
.room-info__btn {
  max-width: 204px;
  width: 100%;
  /* margin: 0px 0; */
  display: inline-block;
}

.gutenberg__btn {
  display: inline-block;
  width: auto;
  max-width: unset;
  min-width: 204px;
  margin-bottom: 20px;
}

.spec-block__wrap {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 100px;
}
.spec-block .complex-item {
  width: calc(25% - 15px);
  display: block;
  height: auto;
}
.cottages .single-slider__item img {
  height: 798px;
}
.rb {
  display: block;
  margin-bottom: 100px;
}
.rb__title {
  display: block;
  padding-left: 30px;
}
.rb__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.rb__left {
  display: block;
  max-width: 390px;
  width: 100%;
}
.gray-block {
  padding: 30px;
  background-color: var(--color-gray);
  border-radius: 18px;
  margin-bottom: 10px;
}

.rb .rb__left {
  display: flex;
  flex-direction: column;
}

.gray-block__name {
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.gray-block__item {
  margin-bottom: 15px;
  display: block;
}

.gray-block__item[data-tab] {
  cursor: pointer;
}

.gray-block__item.active {
  color: var(--color-red);
}
.gray-block__item:last-child {
  margin-bottom: 0;
}
.rb__right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1341px;
  width: 100%;
  gap: 71px;
}
.rb__media {
  display: block;
}
.rb .single-slider {
  display: block;
  max-width: 660px;
  width: 100%;
}
.rb .single-slider__item img,
.hall .single-slider__item img {
  height: 580px;
}

.post-type-archive-platform .single-slider {
  max-width: 460px;
}

.post-type-archive-platform .info-block {
  max-width: 800px;
  width: 100%;
}

.info-block {
  display: block;
  max-width: 560px;
  width: 100%;
}
.info-block__title {
  font-size: 26px;
  display: block;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--color-red);
}

.info-block__btn {
  max-width: 180px;
  width: 100%;
  margin-top: 25px;
}
.cake-price {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}
.cake-price__item {
  display: block;
  font-size: 20px;
  font-weight: 700;
}
.cake-price__per {
  display: block;
  font-size: 16px;
  color: #aeacac;
}
.contact-long {
  display: block;
}
.form-long {
  display: block;
  padding: 30px 0 52px;
}
.form-long__wrap-fields {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 0 50px;
}
.form-long__wrap-fields span {
  width: 100%;
}
.form-long .form-acc {
  margin-top: 31px;
  justify-content: center;
}
.form-long .form__name {
  text-align: center;
}
.bar {
  display: block;
  margin-bottom: 100px;
}
.bar__title {
  display: block;
}
.bar__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 55px;
}
.bar__left {
  display: block;
}
.bar .single-slider {
  display: block;
  max-width: 898px;
  width: 100%;
}
.bar .single-slider img {
  height: 578px;
}
.bar__right {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  max-width: 851px;
  width: 100%;
}
.menu-list {
  max-width: 276px;
  width: 100%;
}
.menu-list__item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: var(--color-red-light);
  border-radius: 18px;
  padding: 32px 10px;
  margin-bottom: 15px;
}
.menu-list__item svg {
  display: block;
}
.menu-list__item-name {
  color: var(--color-red);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}
.afisha-slider img {
  height: 400px;
}
.rb-summer .single-slider__item img {
  height: 601px;
}
.dop-item .spec-block__wrap {
  margin-top: 0;
}
.dop-item {
  margin-bottom: 100px;
}
.dop-item .complex-item__title {
  margin-bottom: 0;
  font-size: 19px;
}
.dop-inner {
  display: block;
}
.dop-inner__title {
  display: block;
}
.dop-inner__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 73px;
}
.dop-inner .single-slider {
  display: block;
  max-width: 900px;
  width: 100%;
}
.dop-inner .single-slider__item img {
  height: 600px;
}
.dop-inner__info {
  display: block;
  max-width: 791px;
  width: 100%;
}
.dop-inner__info-title {
  color: var(--color-red);
  display: block;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
}
.dop-inner__info p {
  display: block;
  margin-bottom: 20px;
}
.info-block .room-options {
  margin-bottom: 25px;
}
.hall .gray-block__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.gray-block__item-count {
  font-weight: 700;
  color: var(--color-red);
}

.hall-advantages {
  display: block;
  margin-bottom: 100px;
}
.hall-advantages__title {
  display: block;
}
.hall-advantages__wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.hall-advantages__item {
  width: 100%;
  padding: 26px 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  border-radius: 28px;
  border: 1px dashed var(--color-red);
}
.hall-advantages__item svg {
  display: block;
  flex-shrink: 0;
}
.hall-advantages__item-desc {
  font-size: 14px;
}
.contact-long-2-row .form-long__wrap-fields {
  margin-bottom: 20px;
}
.hall-tabs {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-left: 31px;
}
.hall-tabs__item {
  display: block;
  padding: 18px 29px;
}

.hall-tabs__item.active {
  color: rgb(255, 255, 255);
  background-color: var(--color-red);
}

.rb-hall-type-1 .single-slider {
  max-width: 900px;
  width: 100%;
}
.rb-hall-type-1 .single-slider__item img {
  height: 600px;
}
.rb-hall-type-1 .room-info__btn {
  margin-top: 25px;
}
.hall-layout {
  display: block;
  margin-bottom: 100px;
}
.hall-layout__title {
  display: block;
}
.hall-layout__wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.hall-layout__item {
  width: 100%;
  background-color: var(--color-gray);
  border-radius: 18px;
  padding: 12px 5px 26px;
}
.hall-layout__item-inner {
  padding: 0 29px;
}
.hall-layout__item img {
  display: block;
  margin-bottom: 22px;
  width: 100%;
  height: 190px;
  -o-object-fit: contain;
  object-fit: contain;
}
.hall-layout__item-name {
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}
.hall-layout__item-qty {
  display: block;
}
.hall-dop {
  margin-bottom: 100px;
}
.hall-dop__title {
  display: block;
  margin-bottom: 17px;
}
.hall-dop__desc {
  display: block;
  margin-bottom: 40px;
  font-size: 20px;
}
.hall-dop__desc p {
  display: block;
}
.hall-dop__wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.hall-dop__item {
  border-radius: 18px;
  padding: 27px 35px;
  background-color: var(--color-gray);
  width: 100%;
}
.hall-dop__item-name {
  font-weight: 700;
  display: block;
  margin-bottom: 11px;
  font-size: 20px;
}
.hall-dop__item-other {
  background-color: var(--color-gray);
  border-radius: 22px;
  padding: 10px 10px 28px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.hall-dop__item-other img {
  display: block;
  width: 100%;
  height: 580px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 23px;
  border-radius: 18px;
}
.hall-dop__item-other-inner {
  padding: 0 25px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex: 1;
}
.hall-dop__item-other-inner p {
  display: block;
  margin: 15px 0;
}
.hall-dop__item-other-inner ul {
  display: block;
}
.hall-dop__item-other-name {
  margin-bottom: 0;
  font-size: 20px;
  display: block;
}
.hall-dop__item-other-btn {
  max-width: 180px;
  width: 100%;
  margin-top: auto;
}
.rb-hall-type-2 .room-info .single-slider__item img {
  height: 705px;
}
.rb-hall-type-2 .room-info__btn {
  max-width: 340px;
  margin-top: 20px;
}
.rb-hall-type-2 .room-info__block {
  display: block;
}
.contact-long-2-vertical .form {
  max-width: 1250px;
  width: 100%;
  padding: 30px 0 52px;
}
.contact-long-2-vertical .form-long__wrap-fields {
  flex-direction: column;
  margin-bottom: 10px;
  gap: 10px;
}
.contact-long-2-vertical__wrap {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.contact-long-2-vertical__wrap .wpcf7 {
  width: 100%;
}

.contact-long-2-vertical__info {
  background-color: var(--color-gray);
  padding: 45px 46px;
  border-radius: 18px;
  max-width: 550px;
  width: 100%;
}

.contact-long-2-vertical__info > :first-child {
  margin-top: 0;
}

.contact-long-2-vertical__info-item {
  display: block;
  margin-bottom: 40px;
}
.contact-long-2-vertical__info-item-name {
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}
.contact-long-2-vertical__info-item-att {
  font-size: 13px;
}
.serts {
  display: block;
}
.serts__item {
  margin-bottom: 100px;
}
.serts__item:last-child {
  margin-bottom: 0;
}
.serts__item-title {
  display: block;
}
.serts__item-wrap {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.serts__item-single {
  width: calc(33.333% - 14px);
  background-color: var(--color-gray);
  padding: 10px 10px 29px;
  border-radius: 22px;
}
.serts__item-single img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  margin-bottom: 28px;
}
.serts__item-single-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 25px;
}
.serts__item-single-price {
  font-size: 20px;
  font-weight: 700;
  display: block;
}
.serts__item-single-btn {
  max-width: 150px;
  width: 100%;
}
.faq__item {
  padding: 43px 42px;
  position: relative;
  background-color: var(--color-gray);
  cursor: pointer;
  border-radius: 18px;
  margin-bottom: 13px;
}
.faq__item-title {
  font-size: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.faq__item-body-inner {
  padding: 15px 0 0;
}
.faq__item-body {
  overflow: hidden;
  transition-duration: 0.3s;
  height: 0;
}
.faq__item.active .faq__item-body {
  height: auto;
  opacity: 1;
}
.faq__item-body p {
  display: block;
  margin-bottom: 10px;
}
.faq__item-body p:last-child {
  margin-bottom: 0;
}
.faq__item-body ul {
  display: list-item;
}
.faq__item-body li {
  font-size: 18px;
}
.faq__item-body a {
  color: #fcd0b7;
}
.faq__item.active .faq__item-cotrol {
  transform: scaleY(-1);
}
.faq__item-cotrol {
  /* position:absolute; */
  transition-duration: 0.3s;
  /* right:24px; */
  /* top:37px; */
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}
.docs {
  display: block;
  margin-bottom: 100px;
}
.docs__item {
  margin-bottom: 100px;
}
.docs__item-name {
  display: block;
}
.docs__item-wrap {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.docs__item-single {
  background-color: var(--color-gray);
  border-radius: 18px;
  padding: 53px 31px 32px;
  width: calc(16% - 6px);
  border: 1px solid transparent;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.docs__item-single:hover {
  border-color: #d3d2d2;
}
.docs__item-single img {
  display: block;
  width: 99px;
  height: 125px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0 auto 40px;
}
.docs__item-single-name {
  display: block;
  font-size: 20px;
  text-align: center;
  line-height: 1.2;
}
.new-year-list {
  display: block;
  max-width: 390px;
  width: 100%;
}
.new-year .single-slider {
  max-width: 517px;
  width: 100%;
}
.new-year .single-slider__item img {
  height: 732px;
}
.new-year .bar__wrap {
  justify-content: space-between;
}
.new-year .info-block {
  max-width: 400px;
  width: 100%;
}
.new-year .bar__right {
  max-width: 100%;
  width: 100%;
}
.contacts {
  display: block;
  margin-bottom: 100px;
}
.contacts__title {
  display: block;
}
.contacts__row {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.contacts__item {
  background-color: var(--color-gray);
  padding: 37px 40px;
  border-radius: 18px;
  width: calc(33.333% - 15px);
  display: block;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.38;
}
.contacts__item-name {
  font-size: 14px;
  display: block;
  font-weight: 400;
  margin-bottom: 7px;
}

.contacts__item a {
  display: block;
  position: relative;
  /* vertical-align: top; */
}

.contacts__item span {
  display: inline-block;
  width: 15px;
  height: 13px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 2px;
  vertical-align: middle;
}

.contacts__item span.wt {
  background-image: url(../svg/ico-wt-black.svg);
  margin-top: -1px;
}

.contacts__item span.tg {
  background-image: url(../svg/ico-tg-black.svg);
}

.contacts__item span.max {
  background-image: url(../svg/ico-max-black.svg);
}

.map {
  display: block;
  margin: 20px 0;
  height: 706px;
}
.map iframe,
.map img {
  display: block;
  border-radius: 18px;
  width: 100%;
  height: 100%;
}
.contacts__item-req {
  color: var(--color-red);
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  position: relative;
  top: 1px;
}
.contacts__item-req svg {
  display: block;
}
.contact-widget {
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 999;
  background-color: transparent;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  display: flex;
}
.contact-widget__toggle {
  background-color: var(--color-red);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 6px;
}
.contact-widget__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  width: 70px;
  height: 70px;
  background-color: var(--color-red);
  border-radius: 18px;
}
.contact-widget__item svg {
  display: block;
}
.contact-widget__icon-open {
  display: none;
  width: 30px;
}
.contact-widget__icon-close {
  display: block;
  width: 17px;
  height: 17px;
}
.contact-widget:not(.is-open) .contact-widget__item {
  display: none;
}
.contact-widget:not(.is-open) .contact-widget__icon-close {
  display: none;
}
.contact-widget:not(.is-open) .contact-widget__icon-open {
  display: block;
}
.float-btn {
  background-color: var(--color-red);
  padding: 18px 15px 18px 8px;
  border-radius: 0 18px 18px 0;
  position: fixed;
  left: 0;
  bottom: 40px;
  color: #fff;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  display: flex;
  z-index: 998;
}
.float-btn_accessibility {
  bottom: 118px;
}
.float-btn_accessibility svg {
  display: block;
}
.float-btn_lang {
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
}

.vac__btn {
  display: block;
  max-width: 305px;
}

.tab-body-block,
.tab-body-flex {
  display: none;
}

.tab-body-block.active {
  display: block;
}

.tab-body-flex.active {
  display: flex;
}

.content-block {
  display: block;
}

.content-block p {
  margin: 20px 0;
}

.content-block strong a {
  text-decoration: underline;
}

.content-block b,
.content-block strong {
  color: var(--color-red);
  font-weight: 700;
}

.content-block ul {
  margin: 10px 0;
}

.content-block li {
  margin-bottom: 7px;
}

.content-block h3 {
  color: var(--color-red);
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.content-block h3 + p {
  margin-top: 7px;
}

.content-block .wp-block-columns h3 {
  margin-top: 0;
}

.content-block .wp-block-columns li:last-child,
.content-block .wp-block-columns ul {
  margin-bottom: 0;
}

.in-top {
  display: block;
  margin-bottom: 100px;
}

.in-top__title {
  display: block;
}
.in-top__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.in-top .complex-item {
  display: block;
  width: calc(25% - 10px);
}

.in-list {
  display: block;
}

.in-list__item {
  background-color: var(--color-gray);
  border-radius: 22px;
  padding: 10px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  /* align-items: flex-start; */
  gap: 35px;
  padding-right: 40px;
  margin-bottom: 20px;
}

.in-list__item img {
  display: block;
  border-radius: 18px;
  max-width: 700px;
  width: 100%;
  object-fit: cover;
  height: 450px;
}

.in-list__item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 26px;
  padding-bottom: 26px;
}
.in-list__item-title {
  display: block;
  line-height: 1.3;
  margin-bottom: 10px;
  font-size: 26px;
}
.in-list__btn {
  display: inline-flex;
  padding: 18px 28px;
  /* width: auto; */
  margin-top: auto;
}

.in-list .content-block p {
  margin: 10px 0;
}

.modal {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s,
    visibility 0s 0.5s;
  transition-timing-function: ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s;
}

.modal:not(.active) .modal__content {
  opacity: 0;
}

.modal__content {
  max-width: 709px;
  width: 95%;
  margin: 0 auto;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  z-index: 999;
  padding: 68px 23px 50px;
  border-radius: 25px;
  overflow: hidden;
  background-size: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  display: block;
}

.modal__close {
  position: absolute;
  top: 26px;
  right: 27px;
  width: 23px;
  height: 23px;
  cursor: pointer;
  background: 0 0;
  border-color: transparent;
  outline: none;
}

.modal__close:hover {
  cursor: pointer;
}

.modal__close:hover::after,
.modal__close:hover::before {
  background-color: #ccc;
}

.modal__close::after,
.modal__close::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 3px;
  background-color: #000;
  transform-origin: center center;
  transform: translate(-50%, -50%) rotate(45deg);
  transition-duration: 0.3s;
}

.modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__modal__close {
  display: block;
}

.modal__title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #000;
  text-align: center;
  font-weight: 700;
}

.modal__desc {
  font-size: 19px;
  line-height: 1.1;
  margin-bottom: 32px;
  text-align: center;
}

.modal__btn {
  max-width: 100%;
  width: 100%;
  margin-bottom: 10px;
}

.modal-success .modal__content {
  max-width: 480px;
}

.modal-success__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}

.text-field:focus {
  outline: 0;
  border-color: #d4d4d4;
}
.text-field::-moz-placeholder {
  color: #000;
}
.text-field::placeholder {
  color: #ccc;
}

.text-field:not(:placeholder-shown):invalid {
  border-color: #ef4444;
}

.content__container {
  max-width: 960px;
}

.content {
  display: block;
  /* line-height: 1.6; */
  /* font-size: 18px; */
  font-weight: 500;
  padding-top: 40px;
}

.content h1 {
  font-size: 36px;
  margin-bottom: 35px;
  font-weight: 600;
}

.content h2,
.content h3,
.content h4,
.content h5 {
  margin-top: 35px;
  position: relative;
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 30px;
}
.content p {
  margin: 20px 0;
}
.content a {
  color: var(--color-red);
  text-decoration: underline;
}
.content ol,
.content ul {
  margin: 20px 0 20px 30px;
}
.content li {
  margin-bottom: 8px;
}
.content ul li {
  list-style-type: disc;
}
.content ol li {
  list-style-type: auto;
}
.wp-block-quote {
  background-color: var(--color-gray);
  padding: 30px;
  margin: 30px 0;
  border-left: 4px solid var(--color-red);
}
.wp-block-quote cite {
  display: none;
}
.wp-block-quote p {
  margin-top: 0;
}
.wp-block-quote p:last-child {
  margin-bottom: 0;
}
.content table {
  font-size: 14px;
}
.content img {
  border-radius: 10px;
}
.content figure {
  margin: 0 0 20px;
}

.content .columns-default {
  --wp--style--gallery-gap-default: 24px;
}

.content iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  background: 0 0;
  position: absolute;
  bottom: -35px;
  margin-top: 0;
  color: #000;
}

.hidden-fields-container,
.wpcf7-response-output,
.screen-reader-response,
.wpcf7-not-valid-tip {
  display: none;
}

.cf7-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  max-width: 320px;
  background: #1f2937;
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 9999;
}

.cf7-toast.active {
  opacity: 1;
  transform: translateY(0);
}

.cf7-toast.error {
  background: var(--color-red);
}

.cf7-toast.success {
  background: #15803d;
}

.complex-item__cackes {
  display: flex;
  flex-direction: column;
}

.complex-item__cackes .complex-item__inner {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.complex-item__cackes .complex-item__desc {
  margin-bottom: 20px;
}

.complex-item__cackes .cake-price {
  margin-top: auto;
}

.postid-181 .dop-inner {
  margin-bottom: 100px;
}

.single-special .title-page br,
.single-special .dop-inner__info-title br,
.complex-item__title br {
  display: none;
}

@media (max-width: 1520px) {
  .room-info__wrap {
    gap: 20px;
  }
  .rb__left {
    max-width: 100%;
    width: 33%;
  }
  .rb__right {
    gap: 20px;
    max-width: 100%;
    width: 67%;
  }
  .single-slider-wrap {
    width: 50%;
    flex-shrink: 0;
  }
  .bar .single-slider-wrap {
    width: 100%;
  }
  .bar .single-slider {
    max-width: 100%;
  }
  .bar__left {
    max-width: 700px;
    width: 100%;
  }
  .spec-block .complex-item {
    width: calc(33.333% - 14px);
  }
  .hall-layout__item img {
    margin-bottom: 10px;
  }
  .hall-layout__item-inner {
    padding: 0 20px;
  }
  .contact-long-2-vertical .form {
    max-width: 100%;
    width: 50%;
  }
  .contact-long-2-vertical__info {
    max-width: 100%;
    width: 50%;
  }
  .new-year .bar__wrap {
    gap: 20px;
  }
  .new-year .single-slider-wrap {
    width: 100%;
  }
  .new-year .single-slider {
    max-width: 100%;
    width: 100%;
  }
  .new-year .bar__left {
    max-width: 380px;
    width: 100%;
  }
  .menu-list {
    width: 100%;
  }
  .hall-advantages__wrap {
    gap: 10px;
  }
  .docs__item-single {
    width: calc(25% - 15px);
  }
}
@media (max-width: 1279px) {
  body {
    font-size: 14px;
  }
  .btn {
    font-size: 14px;
    font-weight: 600;
    padding: 14px 25px;
    border-radius: 10px;
  }
  .title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }
  .title-page {
    text-align: left;
    padding-left: 0;
  }
  .breadcrumbs {
    margin-bottom: 20px;
  }
  .breadcrumbs__container {
    padding-left: 20px;
  }
  .header__container {
    padding: 10px 20px;
  }
  .header__btn {
    display: none;
  }
  .hamburger__opened,
  .header__adres {
    display: none;
  }
  .header__logo {
    order: 1;
    width: 66px;
    position: relative;
    z-index: 999;
  }
  .header__contacts {
    order: 2;
    gap: 0;
  }
  .tel__number {
    font-size: 14px;
  }
  .header .soc {
    order: 3;
  }
  .header .soc svg,
  .footer .soc svg {
    width: 42px;
    height: 42px;
  }

  .soc__item-max svg {
    padding: 15px;
    border-radius: 13px;
  }

  .header__logo.active {
    filter: brightness(0) invert(1);
  }
  .hamburger {
    display: block;
    flex-shrink: 0;
    order: 4;
    position: relative;
    z-index: 999;
    line-height: 0;
  }
  .hamburger.active .hamburger__closed {
    display: none;
  }
  .hamburger.active .hamburger__opened {
    display: block;
  }
  .header__nav-container {
    padding-top: 0;
    padding-bottom: 40px;
  }
  .header__nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-red);
    z-index: 998;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transform: translate(-100%, 0);
  }
  .header__nav.active {
    transform: translate(0);
    overflow-y: auto;
  }
  .menu {
    flex-direction: column;
    gap: 15px;
    padding-top: 94px;
    overflow-y: scroll;
  }
  .menu a {
    padding: 0;
    color: #fff;
    font-size: 14px;
    display: inline-block;
  }

  .menu a:hover {
    color: #fff;
  }

  .menu li {
    display: block;
    width: 100%;
  }
  .menu-item-has-children a {
    padding-right: 18px;
  }
  .menu-item-has-children > a:after {
    filter: invert(1);
    filter: brightness(0) invert(1);
  }
  .sub-menu {
    position: static;
    padding: 8px 20px 0;
    min-width: -moz-max-content;
    min-width: max-content;
    visibility: visible;
    opacity: 1;
    background-color: transparent;
    margin-top: 0;
    margin-left: 0;
    box-shadow: none;
    border-radius: 0;
    display: none;
  }
  .sub-menu a {
    text-transform: none;
    font-weight: 400;
  }
  .menu-item-has-children.active .sub-menu {
    display: block;
    visibility: unset;
    opacity: unset;
  }
  .menu-item-has-children:hover > a:after {
    transform: rotate(0);
  }
  .menu-item-has-children:hover .sub-menu {
    visibility: unset;
    opacity: unset;
  }
  .menu-item-has-children.active > a:after {
    transform: rotate(180deg);
  }
  .nav-contacts {
    display: block;
    margin-top: 40px;
  }
  .nav-contacts .header__contacts {
    filter: brightness(0) invert(1);
    margin: 10px 0 20px;
  }
  .nav-contacts .soc {
    display: flex;
  }
  .nav-contacts .soc path {
    fill: #fff;
  }
  .nav-contacts .soc rect {
    fill: #a60c32;
    fill-opacity: 1;
  }

  .nav-contacts .soc__item-max svg {
    background-color: #a60c32;
  }

  .nav-contacts .header__adres {
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
  }
  .hero__inner {
    height: 440px;
    padding: 40px 20px;
  }
  .home-about {
    padding-top: 0;
    margin-bottom: 50px;
  }
  .home-about__logo {
    max-width: 134px;
    margin: 0 auto 20px;
  }
  .home-about__text {
    font-size: 14px;
  }
  .home-about__text p {
    margin-bottom: 20px;
  }
  .interesting-offers__head .interesting-offers__head-btn {
    display: none;
  }
  .interesting-offers__head {
    margin-bottom: 0;
    justify-content: center;
  }
  .interesting-offers-item {
    height: 300px;
    padding: 20px;
  }
  .interesting-offers-item__title {
    font-size: 20px;
    margin-bottom: 7px;
  }
  .interesting-offers-item__btn {
    max-width: 155px;
  }
  .interesting-offers__head-btn-mob {
    display: flex;
    margin: 20px auto;
    max-width: 300px;
  }
  .interesting-offers__slider-wide-wrap + .multi-slider-wrap {
    display: none;
  }
  .interesting-offers {
    margin-bottom: 50px;
  }
  .interesting-offers__container {
    padding-left: 0;
    padding-right: 0;
  }
  .complex .slider__nav {
    display: none;
  }
  .multi-slider-wrap {
    padding: 0;
  }
  .complex {
    margin-bottom: 50px;
  }
  .complex__container {
    padding-left: 0;
    padding-right: 0;
  }
  .complex-item img {
    height: 200px;
    margin-bottom: 17px;
  }
  .complex-item__title {
    font-size: 18px;
  }
  .complex-item {
    padding: 10px 10px 20px;
  }
  .room-stock {
    margin-bottom: 50px;
  }
  .room-stock__item {
    padding: 0;
    flex-direction: column;
    height: auto;
  }
  .room-stock__content {
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
  }
  .room-stock__img {
    position: static;
    display: block;
    height: 220px;
    margin-bottom: 15px;
    border-radius: 18px;
  }
  .room-stock__name {
    font-size: 20px;
  }
  .room-stock__desc {
    margin-bottom: 18px;
  }
  .room-stock__btn {
    max-width: 160px;
    width: 100%;
  }
  .room-stock__btn-mob {
    display: flex;
    margin: 20px auto 0;
    max-width: 263px;
    width: 100%;
  }
  .other-rooms {
    margin-bottom: 50px;
  }
  .other-rooms__container {
    padding-left: 0;
    padding-right: 0;
  }
  .other-rooms .slider__nav {
    display: none;
  }
  .room__img {
    height: 220px;
    margin-bottom: 15px;
  }
  .add-services {
    margin-bottom: 50px;
  }
  .add-services__tabs {
    justify-content: center;
    margin-bottom: 25px;
  }
  .add-services__tabs-item {
    font-size: 0;
    gap: 0;
    width: 57px;
    height: 50px;
    justify-content: center;
    padding: 10px 10px;
  }
  .add-services__tabs-item:last-child {
    font-size: 13px;
    width: auto;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
    flex-shrink: 0;
  }
  .add-services__item-content {
    padding-top: 5px;
  }
  .add-services__item {
    gap: 20px;
  }
  .add-services__item-ico {
    right: 20px;
    top: 4px;
    width: 26px;
  }
  .add-services__item-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .add-services__item-img {
    height: 200px;
  }
  .scheme-complex {
    margin-bottom: 50px;
  }
  .scheme-complex__img {
    margin-bottom: 20px;
  }
  .scheme-complex__desc {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    grid-template-rows: repeat(5, 1fr 1fr);
    counter-reset: step 0;
    padding: 0 10px;
  }
  .scheme-complex__desc-item {
    font-size: 14px;
  }
  .scheme-complex__desc-item::before {
    width: 26px;
    height: 26px;
  }
  .scheme-complex__bottom {
    padding: 0 10px;
  }
  .map-block__inner {
    flex-direction: column;
  }
  .map-block__wrap {
    height: 580px;
    padding: 20px;
  }
  .map-block__info {
    padding: 15px 20px 25px;
  }
  .map-block__info-name {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .map-block__info-item {
    margin-bottom: 17px;
  }
  .map-block__form {
    padding: 15px 20px 20px;
    max-width: 100%;
  }
  .form__name {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
  }
  .text-field {
    height: 60px;
    background-position: left 15px center;
    padding: 20px 50px;
  }
  .text-field[type='tel'] {
    background-position: left 15px center;
  }
  .text-field[type='email'] {
    background-position: left 15px center;
  }
  .text-field-name {
    background-position: left 15px center;
  }
  .text-field-date {
    background-position: left 15px center;
  }
  .text-field-users {
    background-position: left 15px center;
  }
  .map-block__form .form-acc {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .footer {
    margin-top: 50px;
  }
  .footer__container {
    flex-wrap: wrap;
    padding-top: 30px;
    gap: 0;
  }
  .footer__logo {
    order: 1;
    width: 47%;
    margin-top: 0;
  }
  .footer__contacts {
    order: 2;
    max-width: 480px;
    width: 47%;
  }
  .footer__menu {
    order: 3;
    width: 47%;
    margin-top: -100px;
  }
  .footer__contacts_last {
    order: 4;
    width: 47%;
  }
  .footer__menu a {
    margin-bottom: 20px;
  }
  .footer__menu li:last-child a {
    margin-bottom: 0;
  }
  .footer-bottom__container {
    justify-content: center;
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 0;
  }
  .about-desc__content {
    font-size: 14px;
  }
  .about-desc {
    margin-bottom: 50px;
  }
  .about-gallery {
    margin-bottom: 50px;
  }
  .about-gallery .slider__nav {
    display: none;
  }
  .about-gallery__container {
    padding-left: 0;
    padding-right: 0;
  }
  .about-gallery__item img {
    height: 230px;
  }
  .about-info {
    margin-bottom: 50px;
  }
  .about-info__container {
    flex-direction: column;
  }
  .about-info__block {
    max-width: 100%;
    width: 100%;
    padding: 20px 15px;
  }
  .about-info__block-att {
    max-width: 100%;
    width: 100%;
    font-size: 13px;
    margin-bottom: 20px;
  }
  .about-info__block-text {
    font-size: 14px;
  }
  .about-info__block-tiles-wrap {
    margin: 20px 0;
    gap: 10px;
    align-items: unset;
  }
  .about-info__block-tile-desc {
    font-size: 14px;
  }
  .about-info__block-tile {
    width: 100%;
    padding: 20px;
  }
  .about-info-slider {
    max-width: 100%;
  }
  .about-info .single-slider-wrap {
    width: 100%;
  }
  .slider__nav svg {
    width: 40px;
    height: 40px;
  }
  .about-advantages__wrap {
    flex-direction: column;
    gap: 10px;
  }
  .about-advantages__info {
    padding: 20px 15px;
  }
  .about-advantages__info-name {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .about-advantages__info-inner {
    gap: 15px;
  }
  .about-advantages__info-item {
    width: calc(50% - 8px);
    padding: 20px;
  }
  .about-advantages__info-item-name {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .about-advantages__info-item svg {
    width: 30px;
    height: auto;
    position: relative;
    top: 3px;
  }
  .about-timeline {
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: unset;
  }
  .about-timeline__item:first-child {
    width: 100%;
    padding: 45px 30px;
  }
  .about-timeline__item {
    width: calc(33.333% - 4px);
    height: auto;
  }
  .about-timeline__item-date {
    font-size: 34px;
    margin-bottom: 8px;
  }
  .about-advantages {
    margin-bottom: 50px;
  }
  .about-awards__container {
    padding-left: 0;
    padding-right: 0;
  }
  .about-awards .slider__nav {
    display: none;
  }
  .fund-of-rooms .room {
    width: calc(50% - 10px);
  }
  .room-info {
    margin-bottom: 50px;
  }
  .room-info__wrap {
    flex-direction: column;
  }
  .single-slider {
    width: 100%;
  }
  .single-slider__item img {
    width: 100%;
    height: 300px !important;
  }
  .single-slider-wrap {
    width: 100%;
  }
  .room-info__block-title {
    margin-bottom: 15px;
  }
  .room-info .room-options {
    margin-bottom: 15px;
    gap: 10px;
  }
  .rb__wrap {
    flex-direction: column;
  }
  .rb__left {
    max-width: 100%;
    width: 100%;
  }
  .gray-block {
    margin-bottom: 0;
    border-radius: 0;
    padding: 5px 20px;
  }
  .gray-block:first-child {
    border-radius: 18px 18px 0 0;
    padding-top: 20px;
  }
  .gray-block:last-child {
    border-radius: 0 0 18px 18px;
    padding-bottom: 14px;
  }
  .gray-block__name {
    background-image: url(../svg/ico-menu-daw.svg);
    background-size: 10px;
    background-position: center right;
    background-repeat: no-repeat;
    font-size: 14px;
    margin-bottom: 7px;
  }
  .gray-block__item,
  .hall .gray-block__item {
    display: none;
    margin-bottom: 7px;
  }
  .gray-block.active .gray-block__item {
    display: flex;
  }
  .rb__right {
    width: 100%;
    flex-direction: column;
  }
  .rb {
    margin-bottom: 50px;
  }
  .form-long__wrap-fields {
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 20px;
  }
  .form-long__wrap-fields span {
    width: calc(50% - 5px);
  }
  .form-long__wrap-fields span:last-child {
    max-width: 100%;
    width: 100%;
  }
  .form-long .form__btn {
    max-width: 100%;
    width: 100%;
    height: 60px;
  }
  .form-long {
    padding: 20px 0;
  }
  .form-long .form-acc {
    margin-top: 20px;
  }
  .bar__wrap {
    flex-direction: column;
    gap: 20px;
  }
  .bar__right {
    max-width: 100%;
    width: 100%;
  }
  .bar__left {
    max-width: 100%;
    width: 100%;
  }
  .menu-list {
    max-width: 240px;
  }
  .menu-list__item {
    padding: 17px 10px;
    margin-bottom: 5px;
  }
  .bar {
    margin-bottom: 50px;
  }
  .afisha-slider img {
    height: 500px;
  }
  .info-block__title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .rb .single-slider {
    max-width: 100%;
    width: 100%;
  }
  .dop-item {
    margin-bottom: 50px;
  }
  .spec-block .complex-item {
    width: calc(50% - 10px);
  }
  .dop-inner__wrap {
    flex-direction: column;
    gap: 20px;
  }
  .dop-inner .single-slider {
    max-width: 100%;
    width: 100%;
  }
  .dop-inner__info-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .dop-inner__info {
    max-width: 100%;
  }
  .hall-advantages__wrap {
    flex-wrap: wrap;
  }
  .hall-advantages__item {
    width: calc(50% - 5px);
    padding: 4px 20px;
  }
  .hall-advantages__item:last-child {
    width: 100%;
  }
  .hall-advantages__item svg {
    width: 30px;
    flex-shrink: 0;
  }
  .hall-advantages__title {
    text-align: left;
  }
  .hall-tabs {
    padding-left: 0;
    margin-bottom: 30px;
  }
  .hall-advantages {
    margin-bottom: 50px;
  }
  .hall-tabs__item {
    padding: 14px 21px;
  }
  .contact-long-2-row .form-long__wrap-fields {
    margin-bottom: 10px;
  }
  .hall-layout__wrap {
    flex-wrap: wrap;
    gap: 10px;
  }
  .hall-layout__item {
    width: calc(33.333% - 7px);
  }
  .hall-layout__item-name {
    font-size: 16px;
  }
  .hall-dop__title,
  .hall-layout__title {
    text-align: left;
  }
  .hall-layout {
    margin-bottom: 50px;
  }
  .hall-dop__desc {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .hall-dop__wrap {
    flex-wrap: wrap;
  }
  .hall-dop__item {
    flex: 1 0 calc(50% - 10px);
    padding: 18px 25px;
  }
  .hall-dop__item-name {
    font-size: 16px;
  }
  .hall-dop {
    margin-bottom: 50px;
  }
  .room-info .single-slider {
    max-width: 100%;
    min-width: 300px;
  }
  .hall-dop__item-other img {
    height: 200px;
    margin-bottom: 20px;
  }
  .hall-dop__item-other-name {
    font-size: 16px;
  }
  .hall-dop__item-other-inner {
    padding: 0 15px;
  }
  .hall-dop__item-other {
    width: calc(50% - 10px);
  }
  .contact-long-2-vertical__wrap {
    flex-direction: column;
  }
  .contact-long-2-vertical .form {
    max-width: 100%;
    width: 100%;
  }
  .contact-long-2-vertical .form-long__wrap-fields span {
    width: 100%;
  }
  .contact-long-2-vertical__info {
    max-width: 100%;
    width: 100%;
    padding: 26px 20px;
  }
  .contact-long-2-vertical__info-item-name {
    font-size: 16px;
    margin-bottom: 11px;
  }
  .contact-long-2-vertical__info-item {
    margin-bottom: 25px;
  }
  .serts__item-single img {
    height: 220px;
    margin-bottom: 20px;
  }
  .serts__item-single-price {
    font-size: 16px;
  }
  .serts__item-single-row {
    gap: 10px;
    padding: 0 15px;
  }
  .serts__item-single {
    width: calc(50% - 10px);
  }
  .faq__item-title {
    font-size: 16px;
  }
  .faq__item {
    padding: 27px 30px 27px 30px;
  }
  .faq__item-cotrol svg {
    width: 40px;
    height: 40px;
  }
  .faq__item-cotrol {
    right: 20px;
    top: 25px;
    width: 40px;
    height: 40px;
  }
  .serts__item-title {
    text-align: left;
  }
  .serts__item {
    margin-bottom: 50px;
  }
  .docs__item-single {
    width: calc(33.333% - 7px);
    padding: 25px;
  }
  .docs__item-single img {
    height: 57px;
    margin: 0 auto 20px;
  }
  .docs__item-single-name {
    font-size: 16px;
    line-height: 1.2;
  }
  .docs__item-wrap {
    gap: 10px;
  }
  .docs__item {
    margin-bottom: 50px;
  }
  .new-year .bar__left {
    max-width: 100%;
    width: 100%;
  }
  .new-year .bar__right {
    max-width: 100%;
    width: 100%;
  }
  .contacts__item {
    padding: 20px;
    width: calc(50% - 5px);
  }
  .contacts__item-elem-contact {
    font-size: 14px;
  }
  .contacts__row {
    gap: 10px;
  }
  .map {
    height: 400px;
  }
  .contacts {
    margin-bottom: 50px;
  }

  .contact-widget {
    right: 10px;
    bottom: 10px;
  }

  .float-btn {
    bottom: 10px;
  }

  .float-btn_accessibility {
    bottom: 83px;
  }

  .contact-widget__item {
    padding: 10px;
    width: 55px;
    height: 55px;
  }

  .contact-widget__item svg {
    display: block;
    width: 20px;
  }

  .float-btn {
    width: 55px;
    height: 55px;
  }

  .in-top .complex-item {
    width: calc(50% - 10px);
  }
  .in-list__item {
    gap: 20px;
  }
  .in-list__item img {
    height: 220px;
    flex-shrink: 0;
    min-width: 280px;
    max-width: 50%;
  }

  .in-list__item-title {
    font-size: 18px;
  }

  .in-list__btn {
    margin-top: 20px;
  }

  .in-list__item-content {
    padding-top: 8px;
  }

  .in-top {
    margin-bottom: 50px;
  }
  #block-search {
    height: auto;
  }
  .hero {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .header__top {
    gap: 10px;
  }
  .header .soc {
    display: none;
  }
  .nav-contacts .soc {
    display: flex;
  }
  .add-services__tabs {
    flex-wrap: wrap;
    gap: 6px;
  }
  .add-services__item {
    flex-wrap: wrap;
  }
  .add-services__item-content {
    padding: 0 15px 30px;
  }
  .add-services__item-ico {
    right: 15px;
    top: 0;
    width: 26px;
  }
  .scheme-complex__desc {
    grid-template-columns: unset;
    grid-template-rows: unset;
    display: block;
  }
  .footer__container {
    display: block;
    padding-bottom: 20px;
  }
  .footer__menu {
    margin-top: 30px;
    margin-bottom: 37px;
  }
  .footer__menu a {
    margin-bottom: 15px;
    font-size: 16px;
  }
  .footer__contacts {
    max-width: 100%;
    width: 100%;
    margin-bottom: 40px;
  }
  .footer__contacts-adres {
    margin-bottom: -10px;
  }
  .footer__contacts:last-child {
    margin-bottom: 0;
  }
  .copyright {
    display: none;
  }
  .copyright_mob {
    display: block;
    text-align: center;
    margin-top: 10px;
  }
  .about-info__block-tiles-wrap {
    flex-direction: column;
  }
  .about-info__block-att {
    padding-left: 15px;
    padding-right: 15px;
  }
  .about-advantages__info-inner {
    flex-direction: column;
  }
  .about-advantages__info-item {
    width: 100%;
  }
  .about-timeline__item {
    width: 100%;
  }
  .about-timeline__item:first-child svg {
    width: 90%;
  }
  .fund-of-rooms .room {
    width: 100%;
  }
  .afisha-slider img {
    height: 440px;
  }
  .form-long__wrap-fields {
    flex-direction: column;
  }
  .form-long__wrap-fields span {
    width: 100%;
  }
  .form-long .form-acc {
    padding: 0 20px;
  }
  .bar__right {
    flex-direction: column;
  }
  .menu-list {
    max-width: 100%;
  }
  .spec-block .complex-item {
    width: 100%;
  }
  .hall-advantages__item {
    width: 100%;
  }
  .hall-layout__item {
    width: calc(50% - 5px);
  }
  .hall-dop__item {
    flex: 1 0 calc(100% - 10px);
    padding: 18px 25px 10px;
  }
  .list-decor li:before {
    top: 5px;
  }
  .hall-dop__item-other {
    width: 100%;
  }
  .serts__item-single {
    width: 100%;
  }
  .docs__item-single {
    width: calc(50% - 5px);
  }
  .contacts__item {
    width: 100%;
  }
  .in-list__item {
    flex-direction: column;
  }

  .in-list__item {
    padding-right: 10px;
  }

  .in-list__item img {
    min-width: 280px;
    max-width: 100%;
  }
  .in-list__item-content {
    padding-top: 0;
    padding-bottom: 20px;
    padding: 0 25px 20px;
  }
  .in-top .complex-item {
    width: 100%;
  }
  .footer {
    padding-bottom: 20px;
  }
  #block-search {
    padding: 0;
  }
  .hero__inner {
    padding: 20px 20px 40px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: calc(100dvh - 100px);
  }
  .interesting-offers-item__row {
    flex-direction: column;
  }
  .interesting-offers-item__btn {
    max-width: 100%;
  }
  .float-btn {
    width: 38px;
    height: 38px;
    border-radius: 0 10px 10px 0;
    padding: 10px;
    font-size: 15px;
  }
  .float-btn_accessibility {
    bottom: 60px;
  }
  .content-block p {
    margin: 17px 0;
  }

  .wp-block-columns {
    gap: 17px;
  }
}
