@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: none;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  font: none !important;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

body {
  font-family: "Rethink Sans", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  color: #2B2A29;
}

button {
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.1s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.1s ease;
  transition: background-color 0.2s ease, transform 0.1s ease;
  transition: background-color 0.2s ease, transform 0.1s ease, -webkit-transform 0.1s ease;
  cursor: pointer;
}

button:hover {
  background-color: #e3a753 !important;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.active {
  color: #e3a753 !important;
}

.container {
  max-width: 1300px;
  padding: 0 10px;
  margin: 0 auto;
  position: relative;
}

.header {
  background-color: #7bb4e561;
  font-weight: 700;
  position: relative;
}

.header__top {
  padding-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo {
  width: 100px !important;
  height: 126px !important;
}

.logo img {
  width: 100px;
  height: 126px;
}

.header__top .custom-logo-link img,
.footer__inner .custom-logo-link img {
  width: 100px !important;
  height: 126px !important;
}

.site-header {
  display: none !important;
}

.menu {
  text-transform: uppercase;
}

.menu__btn {
  display: block;
  width: 40px;
  height: 33px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: none;
  border: none;
}

.menu__btn span {
  background-color: black;
  height: 4px;
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.menu li {
  position: relative;
}

.menu a {
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  color: #333;
}

.sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: white;
  list-style: none;
  padding: 10px 0;
  min-width: 220px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  font-size: 15px;
  text-transform: lowercase;
  opacity: 0.9;
}

.sub-menu li {
  display: block;
}

.menu-item-has-children:hover .sub-menu {
  display: block;
}

.menu-item-has-children > a {
  font-weight: bold;
  position: relative;
}

.menu-item-has-children > a:after {
  content: ' ▼';
  font-size: 0.8em;
}

.menu a {
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.menu a:hover,
.menu li.current-menu-item a {
  color: #e3a753;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.2s ease;
  transition: color 0.3s ease, -webkit-transform 0.2s ease;
  transition: color 0.3s ease, transform 0.2s ease;
  transition: color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

#menu-item-532,
#menu-item-491 {
  text-transform: initial;
}

.header__contacts-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
}

.social-list {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.social-item {
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.social-item:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

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

.top-btn {
  -webkit-transition: background-color 0.1s ease, -webkit-transform 0.1s ease;
  transition: background-color 0.1s ease, -webkit-transform 0.1s ease;
  transition: background-color 0.1s ease, transform 0.1s ease;
  transition: background-color 0.1s ease, transform 0.1s ease, -webkit-transform 0.1s ease;
  cursor: pointer;
}

.top__inner-btn:hover {
  background-color: #e3a753;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.top {
  position: relative;
  height: 780px;
  overflow: hidden;
}

.swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.swiper-container .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

#popmake-762,
#popmake-775 {
  background: #0189da;
  max-width: 440px !important;
}

.pum-theme-762 .pum-content,
.pum-theme-enterprise-blue .pum-content {
  padding-top: 15px;
}

.pum-theme-775 .pum-content,
.pum-theme-enterprise-blue .pum-content {
  padding-top: 15px;
}

#pum_popup_title_762,
#pum_popup_title_775 {
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  padding-top: 20px;
}

.pum-container .pum-content + .pum-close {
  top: 5px;
  right: 4px;
}

.top .container {
  padding-top: calc(400px - 75px);
}

.top__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  text-align: left;
}

.top__inner-title {
  font-size: 65px;
  color: #fff;
  font-weight: 700;
  padding-bottom: 50px;
  text-shadow: 4px 2px 0px #0748c6;
}

.top__inner-btn {
  padding: 10px 15px;
  border-radius: 25px;
  background-color: #007bc5;
  border: none;
  font-family: "Rethink Sans", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  color: #FFF;
}

.about {
  background-color: #7bb4e561;
  padding: 60px 0 60px;
}

.about__inner-text .form__room-flex input {
  margin: 0 auto;
}

.foto {
  padding-top: 60px;
}

.about__wrap {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}

.about__inner {
  word-wrap: break-word;
  /* Переносит длинные слова */
  overflow-wrap: break-word;
  /* Современный аналог для переноса слов */
  white-space: normal;
  /* Позволяет перенос строк */
}

.about__inner,
.about__video {
  max-width: 50%;
}

.title {
  font-size: 45px;
  font-weight: 700;
  padding-bottom: 15px;
  max-width: 100%;
  /* Ограничивает ширину блока */
}

.about__inner-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.about__inner-text {
  padding-bottom: 15px;
}

.about__list {
  padding-bottom: 40px;
}

.about__description {
  padding: 10px 15px;
  border-radius: 25px;
  background-color: deepskyblue;
  border: none;
  font-family: "Rethink Sans", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.1s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.1s ease;
  transition: background-color 0.2s ease, transform 0.1s ease;
  transition: background-color 0.2s ease, transform 0.1s ease, -webkit-transform 0.1s ease;
  color: #FFF;
  word-wrap: normal;
  overflow-wrap: normal;
  white-space: normal;
}

.about__description:hover {
  background-color: #e3a753 !important;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.about__video {
  width: 500px !important;
  height: 300px !important;
  margin-top: 20px;
}

iframe {
  width: 100%;
  height: 283px;
}

.section__form {
  background-color: #0189da;
  padding-bottom: 60px;
  padding-top: 60px;
}

.section__form .title {
  text-align: center;
  color: #fff;
}

.section__form
.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

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

.form__room-flex button {
  margin-left: 45px;
}

.form__input {
  border-radius: 15px;
  height: 40px;
  max-width: 400px;
  font-size: 16px;
  line-height: 1.3;
  border: none;
  padding: 15px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.init {
  margin-top: 15px;
}

.form__input::-webkit-input-placeholder {
  font-family: "Rethink Sans", sans-serif;
  font-size: 16px;
}

.form__input:-ms-input-placeholder {
  font-family: "Rethink Sans", sans-serif;
  font-size: 16px;
}

.form__input::-ms-input-placeholder {
  font-family: "Rethink Sans", sans-serif;
  font-size: 16px;
}

.form__input::placeholder {
  font-family: "Rethink Sans", sans-serif;
  font-size: 16px;
}

.form__button {
  height: 38px;
  width: 184px;
  background-color: #e3a753;
  border: none;
  font-family: "Rethink Sans", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  border-radius: 30px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  color: #fff;
}

.rooms {
  padding: 60px 0 60px;
}

.rooms .title {
  text-align: center;
}

.foto {
  margin-bottom: 40px;
}

.rooms__foto {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
}

.rooms__foto-item {
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.rooms__foto-item:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.foto__link {
  display: block;
  position: relative;
  overflow: hidden;
}

.foto__link img {
  background-color: gray;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  height: 296px;
  position: relative;
}

.foto__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 296px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 10px;
}

.foto__link-name {
  position: absolute;
  bottom: 35px;
  left: 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
  color: #FF9800;
  z-index: 2;
}

.foto__link-cost {
  position: absolute;
  bottom: 13px;
  left: 20px;
  font-size: 18px;
  color: white;
  font-style: italic;
  z-index: 2;
}

.foto__link-cost span {
  color: #FF9800;
}

.gallery {
  position: relative;
  margin-bottom: 60px;
}

.gallery__inner {
  position: relative;
}

.gallery__inner .title {
  text-align: center;
}

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

.swiper__inner {
  height: 330px !important;
  display: block;
}

.swiper__inner img {
  width: 100%;
  height: 100%;
}

.swiper-button-prev-one,
.swiper-button-next-one {
  position: absolute;
  width: 51px;
  height: 51px;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.swiper-button-prev-one {
  left: -50px;
}

.swiper-button-next-one {
  right: -50px;
}

.swiper-button-prev-one::after,
.swiper-button-next-one::after {
  font-size: 14px;
  font-weight: bold;
  color: var(--black);
}

.swiper-button-prev-one:hover,
.swiper-button-next-one:hover {
  background-color: #e3a753;
  -webkit-transition: background-color 0.3s ease-in-out 0.2s;
  transition: background-color 0.3s ease-in-out 0.2s;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: relative;
  top: 0;
}

.feedback__inner {
  position: relative;
}

.feedback__inner .title {
  text-align: center;
}

.feedback {
  padding: 60px 0;
}

.feedback__swiper {
  margin: 0 auto;
  position: relative;
}

.feedback__inner .swiper-two {
  overflow: hidden;
}

.feedback__inner .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.feedback__inner .swiper-slide {
  text-align: center;
}

.swiper__two-inner {
  height: 300px;
  display: block;
}

.swiper__two-inner img {
  max-width: 100%;
  height: 290px;
}

.swiper-button-prev-two,
.swiper-button-next-two {
  position: absolute;
  width: 51px;
  height: 51px;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.swiper-button-prev-two {
  left: -55px;
}

.swiper-button-next-two {
  right: -55px;
}

.swiper-button-prev-two::after,
.swiper-button-next-two::after {
  font-size: 14px;
  font-weight: bold;
  color: var(--black);
}

.swiper-button-prev-two:hover,
.swiper-button-next-two:hover {
  background-color: #e3a753;
  -webkit-transition: background-color 0.3s ease-in-out 0.2s;
  transition: background-color 0.3s ease-in-out 0.2s;
}

.swiper-two .swiper-pagination-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  bottom: 20px;
  z-index: 2;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  background-color: #FF9800;
}

.seo {
  background-color: #edebe5;
  padding: 60px 0 60px;
  position: relative;
  overflow: hidden;
}

.seo__description .title {
  text-align: center;
}

.seo__text-container {
  max-height: 210px;
  overflow: hidden;
  position: relative;
  -webkit-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
  margin-bottom: 20px;
}

.seo__text-container.expanded {
  max-height: 500px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.btn-see-more {
  padding: 8px 10px;
  border-radius: 25px;
  background-color: #007bc5;
  border: none;
  font-family: "Rethink Sans", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  display: block;
  text-align: center;
  height: 38px;
  width: 140px;
  margin: 0 auto;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.1s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.1s ease;
  transition: background-color 0.2s ease, transform 0.1s ease;
  transition: background-color 0.2s ease, transform 0.1s ease, -webkit-transform 0.1s ease;
  cursor: pointer;
  color: #FFF;
}

.btn-see-more:hover {
  background-color: #e3a753 !important;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.footer {
  padding: 5px 0 5px;
  background-color: #e3e3e3;
}

.location {
  padding-top: 60px;
}

.location__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.location__map {
  width: 1300px;
  height: 454px;
}

.location__map p {
  width: 100%;
  height: 100%;
}

.location__map iframe {
  width: 100%;
  height: 100%;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__contacts {
  max-width: 320px;
  margin-left: 120px;
}

.footer__contacts-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contacts__discription {
  padding-bottom: 5px;
  text-align: center;
}

.contacts__item .contacts__phone {
  text-align: center;
}

.footer__address {
  padding-top: 15px;
  text-align: center;
}

.footer .social__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}

.footer .social-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__btn {
  width: 242px;
}

.footer__btn a {
  padding-left: 22px;
  cursor: pointer;
  text-decoration: underline;
}

.contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  z-index: 20;
}

.scroll-to-top:hover {
  background-color: #0056b3;
}

.scroll-to-top span {
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: white;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.scroll-to-top span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 20px;
  left: 22px;
}

.scroll-to-top span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 20px;
  right: 20px;
}

.foto__wrap .title {
  text-align: center;
}

.foto__wrap-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.foto__img {
  width: 380px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.foto__img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.description {
  padding: 60px 0 60px;
}

.description__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.description__inner img {
  width: 400px;
  height: 300px;
  margin-left: auto;
}

.contacts__rest {
  padding: 60px 0 60px;
  background: url("<?php echo esc_url($contacts_rest_bg); ?>") no-repeat center/cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 500px;
}

.contacts__rest::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.contacts__rest-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
}

.rules {
  padding: 60px 0 60px;
}

.rules .title {
  margin: 0 auto;
  text-align: center;
  padding-bottom: 15px;
}

.rules__inner-text {
  text-align: justify;
}

.footer-text {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 2px 0 0;
  font-size: 12px;
}

@media (max-width: 1399.98px) {
  .location__map {
    width: 1000px;
    height: 450px;
  }
  .swiper-button-prev-one {
    left: 10px;
  }
  .swiper-button-next-one {
    right: 10px;
  }
  .swiper-button-prev-two {
    left: 10px;
  }
  .swiper-button-next-two {
    right: 10px;
  }
}

@media (max-width: 1199.98px) {
  .rooms__foto {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .location__map {
    width: 950px;
    height: 430px;
  }
  .description__inner .about__video {
    width: 450px;
    height: 300px;
  }
  .foto__wrap-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}

@media (max-width: 991.98px) {
  .location__map {
    width: 740px;
    height: 350px;
  }
  .menu-toggle {
    display: block;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  #site-navigation {
    position: absolute;
    left: 50px;
    -webkit-transform: translateY(-164%);
            transform: translateY(-164%);
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
  }
  #site-navigation.active {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 100;
    opacity: 0.9;
    background-color: white;
  }
  .foto__wrap-grid .foto__img {
    width: 350px;
    height: 200px;
  }
  .header__top button:hover {
    background-color: none !important;
  }
}

@media (max-width: 767.98px) {
  .menu__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-top: 20px;
  }
  .menu__list {
    -webkit-transform: translateY(-110%);
            transform: translateY(-110%);
    position: absolute;
    top: 5px;
    left: 10px;
    width: 200px;
    height: 250px;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto;
    background-color: skyblue;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    padding-top: 10px;
    -webkit-transition: -webkit-transform .6s ease;
    transition: -webkit-transform .6s ease;
    transition: transform .6s ease;
    transition: transform .6s ease, -webkit-transform .6s ease;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .menu__list.menu__list--open {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    z-index: 6;
  }
  .menu__close {
    display: block;
  }
  .menu__close-btn {
    position: absolute;
    top: 18px;
    right: 8px;
    background: none;
    border: none;
  }
  .title {
    font-size: 40px;
  }
  .about__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about__inner {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about__inner,
  .about__video {
    max-width: 100%;
  }
  .about__description {
    width: 116px;
    margin: 0 auto;
  }
  .section__form .title {
    font-size: 30px;
  }
  .rooms__foto {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .swiper-button-prev-one,
  .swiper-button-next-one,
  .swiper-button-prev-two,
  .swiper-button-next-two {
    display: none;
  }
  .location__inner .title {
    font-size: 35px;
  }
  .location__map {
    width: 500px;
    height: 300px;
  }
  .description__inner .title {
    text-align: center;
  }
  .description__inner {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .description__inner .about__video {
    margin: 0 auto;
  }
  .description__inner .about__video {
    width: 600px;
    height: 300px;
  }
  .about__inner .form input,
  .about__inner .form button {
    margin: 0 auto;
  }
  .foto__wrap-grid .foto__img {
    width: 280px;
    height: 180px;
  }
}

@media (max-width: 649.98px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__contacts {
    margin-top: 10px;
  }
  .description__inner .about__video {
    width: 500px;
    height: 260px;
  }
  .about__inner .form input {
    width: 100%;
  }
  .foto__wrap .title {
    font-size: 30px;
  }
  .foto__wrap-grid {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }
  .foto__wrap-grid .foto__img {
    width: 300px;
    height: 200px;
  }
  .footer__contacts {
    max-width: 320px;
    margin-left: 0;
  }
  .social__block {
    padding-bottom: 15px;
  }
}

@media (max-width: 575.98px) {
  .logo {
    margin: 0 auto;
  }
  .header__contacts-phone {
    display: none;
  }
  .social-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px;
  }
  .top .container {
    padding-top: calc(320px - 75px);
  }
  .top__inner-title {
    font-size: 45px;
  }
  .top__inner-btn {
    font-size: 13px;
  }
  .custom-logo-link {
    margin: 0 auto;
  }
  .title {
    font-size: 35px;
  }
  .about__video {
    width: 300px !important;
    height: 250px !important;
  }
  .about__video p {
    height: 100%;
    width: 100%;
  }
  .location__inner .title {
    font-size: 30px;
    text-align: center;
  }
  .about__video {
    width: 400px;
    height: 300px;
  }
  .seo__description .title {
    font-size: 30px;
  }
  .description__inner .about__video {
    width: 400px;
    height: 210px;
  }
  .footer .social-list,
  .contacts__rest .social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}

@media (max-width: 449.98px) {
  .top-title {
    font-size: 35px;
  }
  .form__input {
    width: 250px;
  }
  .foto__link-name,
  .foto__link-name {
    font-size: 15px;
  }
  .about__video {
    width: 320px;
    height: 280px;
  }
  .location__map {
    width: 300px;
    height: 300px;
  }
  .description__inner .about__video {
    width: 330px;
    height: 200px;
  }
}
/*# sourceMappingURL=main.css.map */