html {
  font-size: 16px;
}

@media (max-width: 576px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 425px) {
  html {
    font-size: 14px;
  }
}

body {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #212121;
  overflow-x: hidden;
  font-family: 'Myriad Pro', sans-serif;
  padding-top: 4.6875rem;
}

@-webkit-keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-12deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(12deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-12deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(12deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@-webkit-keyframes backgroundFade {
  0% {
    background-color: rgba(255, 255, 255, 0.6);
  }
  100% {
    background-color: rgba(255, 255, 255, 0);
  }
}

@keyframes backgroundFade {
  0% {
    background-color: rgba(255, 255, 255, 0.6);
  }
  100% {
    background-color: rgba(255, 255, 255, 0);
  }
}

@-webkit-keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.6875rem;
  background-color: #fff;
  box-shadow: 0px 0px 1.125rem -0.375rem rgba(0, 0, 0, 0.6);
  position: relative;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  transition: height 0.3s;
}

header.fixed {
  height: 4.6875rem;
}

header .header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 0 2rem;
  max-width: 90rem;
}

header .header .navigation {
  display: flex;
  width: 100%;
  height: 100%;
}

header .header .navigation__item {
  height: 100%;
  display: inline-flex;
  align-items: center;
  position:relative;
  min-width: 75px;

}

header .header .navigation__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

header .header .navigation__link {
  height: 100%;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  width: auto;
  padding: 0px 1rem;
  color: #4F624F;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

header .header .navigation__link:hover {
  color: #c4b176;
  position: relative;
}

header .header .navigation__link:hover:after {
  content: "";
  display: block;
  height: 0.1875rem;
  background-color: #C3B378;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

header .header .navigation__link_active, header .header .navigation__link_active:hover {
  color: #c4b176;
  position: relative;
}

header .header .navigation__link_active:after, header .header .navigation__link_active:hover:after {
  content: "";
  display: block;
  height: 0.1875rem;
  background-color: #C3B378;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

header .header .navigation__dropdown-wrapper {
  height: 100%;
  display: inline-flex;
  align-items: center;
  position: relative;
}

header .header .navigation__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 1rem;
  background: #fff;
  box-shadow: 0px 0.625rem 1.125rem -0.75rem rgba(0, 0, 0, 0.4);
  z-index: 1;
}

header .header .navigation__dropdown.show {
  display: block;
}

header .header .navigation__dropdown .navigation__item {
  width: 100%;
  margin-bottom: 0.375rem;
}

header .header .navigation__dropdown .navigation__item:last-child {
  margin-bottom: 0;
}

header .header .navigation__dropdown .navigation__link {
  padding: 0.125rem 0;
  width: auto;
}

header .header .navigation__dropdown_toggle {
  height: 100%;
  display: none;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  width: auto;
  padding: 0px 1rem;
  color: #4F624F;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  background: none;
  border: none;
  outline: none;
}

header .header .navigation__dropdown_toggle.is-open {
  color: #5F6B88;
}

header .header .navigation__dropdown_toggle.priority-nav-is-visible {
  display: inline-flex;
}

header .header .phone {
  margin-left: 2.5rem;
  line-height: 1;
}

header .header .phone__item {
  display: inline-flex;
  align-items: center;
  color: #4F624F;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

header .header .phone__item:hover .phone__icon {
  -webkit-animation: swing 0.3s infinite linear;
          animation: swing 0.3s infinite linear;
}

header .header .phone__icon {
  display: inline-block;
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 0.75rem;
  background: url("../img/icons/phone-call.svg") center no-repeat;
  background-size: contain;
}

footer {
  display: flex;
  flex-wrap: wrap;
  padding: 3.75rem 6.25rem;
  background-color: #344734;
}

footer .footer-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}

footer .menus-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  justify-content: space-between;
  padding-right: 8.125rem;
}

footer .menus-wrap .menu {
  display: inline-flex;
  flex-direction: column;
  width: auto;
  margin-right: 1.25rem;
}

footer .menus-wrap .menu:last-child {
  margin-right: 0;
}

footer .menus-wrap .menu__title {
  display: inline-flex;
  width: auto;
  font-size: 1.1875rem;
  font-family: 'Philosopher', sans-serif;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

footer .menus-wrap .menu__links {
  display: inline-flex;
  flex-direction: column;
}

footer .menus-wrap .menu__link {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  width: auto;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

footer .menus-wrap .menu__link:hover {
  color: #C4B176;
}

footer .contacts {
  width: auto;
  min-width: 12.5rem;
  margin-right: 10rem;
}

footer .contacts .title {
  display: inline-flex;
  width: auto;
  font-size: 1.1875rem;
  font-family: 'Philosopher', sans-serif;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

footer .contacts .adress {
  display: flex;
  margin-bottom: 2.5rem;
}

footer .contacts .adress__icon {
  display: inline-block;
  width: 1rem;
  height: 1.25rem;
  margin-right: 0.875rem;
  background: url("../img/icons/footer/place.png") center no-repeat;
  background-size: contain;
}

footer .contacts .adress__text {
  color: #fff;
  /*white-space: nowrap;*/
}

footer .contacts .phones {
  display: flex;
  margin-bottom: 2.5rem;
}

footer .contacts .phones__icon {
  display: inline-block;
  width: 1.0625rem;
  height: 1.0625rem;
  margin-right: 0.875rem;
  background: url("../img/icons/footer/phone.png") center no-repeat;
  background-size: contain;
}

footer .contacts .phones__link {
  display: block;
  width: 100%;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

footer .contacts .phones__link:hover {
  color: #C4B176;
}

footer .contacts .email {
  display: flex;
  margin-bottom: 2.5rem;
}

footer .contacts .email__icon {
  display: inline-block;
  width: 1.4375rem;
  height: 0.9375rem;
  margin-right: 0.875rem;
  background: url("../img/icons/footer/email.png") center no-repeat;
  background-size: contain;
}

footer .contacts .email__link {
  display: block;
  width: 100%;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

footer .contacts .email__link:hover {
  color: #C4B176;
}

footer .logo {
  width: auto;
  min-width: 12.5rem;
  text-align: center;
}

footer .logo__image-wrap {
  display: block;
  width: 100%;
  text-align: center;
  height: auto;
  margin-bottom: 1rem;
}

footer .logo__image {
  display: block;
  width: 100%;
  margin: 0 auto;
  max-width: 6.25rem;
  height: auto;
}

footer .logo__text {
  color: #fff;
  text-align: center;
}

footer .pay {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}

footer .pay__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  width: auto;
  background-color: transparent;
  color: #fff;
  padding: 0.75rem 4.875rem;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  border: 3px solid #C4B176;
  margin-right: 3.125rem;
  transition: background-color 0.3s;
}

footer .pay__button:hover {
  background-color: #C4B176;
}

footer .pay__text {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
}

footer .pay__icon {
  display: inline-block;
  width: auto;
  height: auto;
  margin-left: 0.5rem;
  opacity: 0.5;
}

footer .pay__icon_visa {
  width: 3.3125rem;
  height: 1.0625rem;
  background: url("../img/icons/pay/visa.png") center no-repeat;
  background-size: contain;
}

footer .pay__icon_mc {
  width: 2.375rem;
  height: 1.5rem;
  background: url("../img/icons/pay/mc.png") center no-repeat;
  background-size: contain;
}

footer .pay__icon_mir {
  width: 3.625rem;
  height: 1rem;
  background: url("../img/icons/pay/mir.png") center no-repeat;
  background-size: contain;
}

#main-slide {
  /*display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50rem;
  height: calc(100vh - 4.6875rem);
  background: url("../img/main-slide.png") center no-repeat;
  background-position-y: 0;
  background-size: cover;
  margin-bottom: 0.5rem;*/
}

.main-slide_element{
  display: flex!important;
  align-items: center;
  justify-content: center;
  min-height: 50rem;
  height: calc(100vh - 4.6875rem);
  background-position-y: 0;
  background-size: cover;
  margin-bottom: 0.5rem;
}

#main-slide .main-slide__logo {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -12rem;
  max-width: 23.75rem;
}

#main-menu {
  background-color: #344734;
  margin-bottom: 0.5rem;
}

#main-menu .main-navigation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  width: 100%;
  height: 100%;
  padding: 1.125rem 0;
}

#main-menu .main-navigation__item {
  height: 100%;
  display: inline-flex;
  align-items: center;
}

#main-menu .main-navigation__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#main-menu .main-navigation__link {
  height: 100%;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  width: auto;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
}

#main-menu .main-navigation__link:hover {
  color: #C4B176;
}

#socials {
  background-color: #4F624F;
  margin-bottom: 0.5rem;
}

#socials .socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.125rem 0;
}

#socials .socials__link {
  margin-right: 2.25rem;
  line-height: 1;
}

#socials .socials__link:last-child {
  margin: 0;
}

#socials .socials__icon {
  display: inline-block;
  width: auto;
  height: auto;
}

#socials .socials__icon_youtube {
  width: 2.0625rem;
  height: 1.5rem;
  background: url("../img/icons/socials/yt.png") center no-repeat;
  background-size: contain;
}

#socials .socials__icon_rutube {
  width: 2.0625rem;
  height: 1.5rem;
  background: url("/upload/imghosting/174569108179fe0cc044.svg") center no-repeat;
  background-size: contain;
}

#socials .socials__icon_vk {
  width: 2.125rem;
  height: 1.425rem;
  background: url("/upload/imghosting/17456911761d63425c61.svg") center no-repeat;
  background-size: contain;
}

#socials .socials__icon_facebook {
  width: 1.8125rem;
  height: 1.8125rem;
  background: url("../img/icons/socials/fb.png") center no-repeat;
  background-size: contain;
}

#socials .socials__icon_tripadvisor {
  width: 2.0625rem;
  height: 1.375rem;
  background: url("/upload/imghosting/1745691447214ef42254.png") center no-repeat;
  background-size: contain;
}

#socials .socials__icon_instagram {
  width: 1.875rem;
  height: 1.9375rem;
  background: url("../img/icons/socials/ig.png") center no-repeat;
  background-size: contain;
}

.section__title {
  width: 100%;
  text-align: center;
  font-family: 'Philosopher', sans-serif;
  font-size: 2.8125rem;
  line-height: 2.125rem;
  letter-spacing: 1px;
  margin-top: 3.125rem;
  margin-bottom: 2.375rem;
  color: rgba(33, 33, 33, 0.7);
}

.section__title_green {
  color: #4F624F;
}

.section__content {
  display: flex;
  flex-wrap: wrap;
}

.section__content_space {
  margin: 0.5rem;
}

.section__content_banners {
  margin: 0.25rem;
}

.banner-row {
  min-height: 31.25rem;
  display: flex;
  width: 100%;
}

.banner-row_space {
  padding: 0.5rem;
}

.banner-row_space + .banner-row_space {
  padding-top: 0;
}

.banner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #4F624F;
  padding: 2rem;
  width: 100%;
  max-width: 37.5rem;
  min-height: 31.25rem;
  flex-flow: column;
  align-items: center;
}

.banner-card_left {
  margin-right: 0.5rem;
}

.banner-card_right {
  margin-left: 0.5rem;
}

.banner-card_form {
  max-width: 31.25rem;
}

.banner-card__wrap {
  text-align: center;
}

.banner-card__title {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 2.8125rem;
  font-family: 'Philosopher', sans-serif;
  line-height: 2.8125rem;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 1.625rem;
}

.banner-card__hr {
  display: block;
  width: 100%;
  max-width: 10.25rem;
  background-color: #C4B176;
  height: 0.1875rem;
  margin: 0 auto 2.125rem;
}

.banner-card__text {
  display: block;
  text-align: center;
  margin: 0 auto;
  font-size: 0.9375rem;
  color: #fff;
  margin-bottom: 1.875rem;
}

.banner-card__link {
  display: inline-block;
  width: auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  line-height: 1;
  margin: 0 auto;
}

.banner-card__link:hover {
  color: #fff;
  text-decoration: none;
}

.banner-card_image {
  display: inline-flex;
  flex-wrap: wrap;
  /*width: calc(25% - 0.5rem);*/
  max-width:none;
  width: calc(33.3333% - 0.5rem);
  padding: 4.0625rem 3rem 4.6875rem;
  min-height: 35.5rem;
  margin: 0.25rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-card_image .banner-card__wrap {
  padding: 2.8125rem 2.5rem;
  background-color: rgba(79, 98, 79, 0.8);
  border-radius: 1rem;
}

.banner-card_image .banner-card__title {
  font-size: 2rem;
}

.banner-card_image .banner-card__hr {
  margin-bottom: 1.4375rem;
}

.banner-card_image .banner-card__text {
  margin-bottom: 2.375rem;
  color: rgba(255, 255, 255, 0.9);
}

.banner-card_image .banner-card__link {
  padding: 0.75rem 3.75rem;
  border: 2px solid rgba(255, 255, 255, 0.8);
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.7;
}

.banner-card_image .banner-card__link:hover {
  border-color: #C4B176;
  opacity: 1;
}

.banner-card_text {
  background: none;
  max-width: 43.75rem;
  padding: 3.125rem;
}

.banner-card_text .banner-card__wrap {
  text-align: left;
}

.banner-card_text .banner-card__title {
  text-align: left;
  color: rgba(33, 33, 33, 0.7);
}

.banner-card_text .banner-card__text {
  text-align: left;
  color: #666666;
}

.banner-card_text .banner-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.875rem 3.4375rem;
  text-decoration: none;
  transition: background-color 0.3s;
  text-transform: uppercase;
  background-color: #4F624F;
  border: 2px solid #4F624F;
  color: #fff;
  margin-right: 1rem;
}

.banner-card_text .banner-card__link:hover {
  background-color: #fff;
  color: #4F624F;
}

.banner-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  flex-grow: 1;
  min-height: 31.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-image__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 4.75rem 8.75rem;
  background-color: rgba(79, 98, 79, 0.6);
  border-radius: 1rem;
  max-width: 71.25rem;
}

.banner-image__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.banner-image__submenu__item {
  display: inline-flex;
  width: auto;
}

.banner-image__submenu__link {
  display: inline-block;
  width: auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  margin-bottom: 1rem;
  margin-right: 0.5rem;
}

.banner-image__submenu__link_active {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.banner-image__submenu__link:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.banner-image__title {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 2.8125rem;
  font-family: 'Philosopher', sans-serif;
  line-height: 2.375rem;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 1.375rem;
}

.banner-image__link {
  display: inline-block;
  width: auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  line-height: 1;
}

.banner-image__link:hover {
  color: #fff;
  text-decoration: none;
}

.banner-image_rooms {
  background: url("../img/main-banners/rooms33.jpg") center no-repeat;
  background-size: cover;
}

.banner-image_stocks {
  background: url("../img/main-banners/stocks.png") center no-repeat;
  background-size: cover;
}

.banner-image_news {
  background: url("../img/main-banners/news.png") center no-repeat;
  background-size: cover;
}

.banner-image_restaurant {
  background: url("../img/main-banners/restaurant.png") center no-repeat;
  background-size: cover;
}

.banner-image_kids {
  background: url("../img/main-banners/kids.png") center no-repeat;
  background-size: cover;
}

.banner-image_services {
  background: url("../img/main-banners/services.png") center no-repeat;
  background-size: cover;
}

.banner-with-card-slider {
/* background: url("../img/banner-with-card-slider.png") center no-repeat;*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 4.0625rem;
}

.banner-with-card-slider .card-slider-wrap {
  max-width: 35.625rem;
  width: 100%;
  min-height: 31.25rem;
  padding: 2.8125rem;
  margin: 3.125rem 0;
  background-color: rgba(79, 98, 79, 0.8);
  border-radius: 1rem;
}

.banner-with-card-slider .card-slider {
  position: relative;
}

.banner-with-card-slider .card-slider .slide {
  position: relative;
  outline: none;
}

.banner-with-card-slider .card-slider .slide__title {
  font-size: 2.8125rem;
  font-family: 'Philosopher', sans-serif;
  line-height: 3.125rem;
  letter-spacing: 1px;
  color: rgba(33, 33, 33, 0.7);
}

.banner-with-card-slider .card-slider .slide__hr {
  display: block;
  margin: 2.125rem 0;
  height: 3px;
  width: 10.25rem;
  background-color: #C4B176;
}

.banner-with-card-slider .card-slider .slide__text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4.6875rem;
}

.banner-with-card-slider .card-slider .slide__btn {
  display: inline-flex;
  width: auto;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.875rem 3.4375rem;
  text-decoration: none;
  transition: background-color 0.3s;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  opacity: 0.7;
  color: #fff;
  text-transform: uppercase;
}

.banner-with-card-slider .card-slider .slide__btn:hover {
	border-color: #C4B176;
    opacity: 1;
}

.banner-with-card-slider .card-slider .slick-prev, .banner-with-card-slider .card-slider .slick-next {
  display: block;
  left: auto;
  right: 4rem;
  top: auto;
  bottom: 0rem;
  width: 3.5rem;
  height: 3.5rem;
  z-index: 1;
  border: 2px solid #C4B176;
  transform: none;
  background-color: #fff;
}

.banner-with-card-slider .card-slider .slick-prev:before, .banner-with-card-slider .card-slider .slick-next:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 50%;
  height: 100%;
  color: transparent;
  -webkit-mask: url("../img/icons/left-arrow.svg") center no-repeat;
          mask: url("../img/icons/left-arrow.svg") center no-repeat;
  background-color: #C4B176;
  opacity: 1;
}

.banner-with-card-slider .card-slider .slick-next {
  right: 0;
  left: auto;
}

.banner-with-card-slider .card-slider .slick-next:before {
  -webkit-mask: url("../img/icons/right-arrow.svg") center no-repeat;
          mask: url("../img/icons/right-arrow.svg") center no-repeat;
}

.banner-with-card-slider .card-slider .slick-disabled {
  border: 2px solid #afb5c3;
  pointer-events: none;
}

.banner-with-card-slider .card-slider .slick-disabled:before {
  background-color: #afb5c3;
}

.book-form__title {
  display: block;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.625rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.book-form__hr {
  content: url("../img/hr.png");
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 2.375rem;
}

.book-form__input {
  display: block;
  width: 100%;
  border: none;
  border-radius: 1rem;
  background-color: #fff;
  padding: 1rem 1.25rem;
  margin-bottom: 0.875rem;
  position: relative;
  outline: none;
}

.book-form__input::-webkit-input-placeholder {
  text-transform: uppercase;
}

.book-form__input::-moz-placeholder {
  text-transform: uppercase;
}

.book-form__input:-ms-input-placeholder {
  text-transform: uppercase;
}

.book-form__input::-ms-input-placeholder {
  text-transform: uppercase;
}

.book-form__input::placeholder {
  text-transform: uppercase;
}

.book-form__input:after {
  position: absolute;
  content: url("../img/icons/calendar.svg");
  display: inline-block;
  width: auto;
}

.book-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  width: 100%;
  background-color: transparent;
  color: #fff;
  padding: 0.875rem;
  font-size: 1.125rem;
  margin-top: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  outline: none;
  border: 3px solid #C4B176;
  transition: background-color 0.3s;
}

.book-form__submit:hover {
  background-color: #C4B176;
}

.book-row {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4F624F;
  min-height: 5.625rem;
  overflow: hidden;
}

.book-row__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-row__form {
  display: flex;
  align-items: center;
}

.book-row__title {
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.375rem;
  margin: 0 3rem;
  white-space: nowrap;
}

.book-row__hr {
  content: url("../img/hr.png");
  display: inline-block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.book-row__input {
  display: inline-block;
  width: auto;
  border: none;
  border-radius: 2rem;
  background-color: #fff;
  padding: 0.625rem 1.125rem;
  border: 2px solid #fff;
  margin: 0 0.875rem;
  position: relative;
  outline: none;
  min-width: 17.5rem;
}

.book-row__input::-webkit-input-placeholder {
  text-transform: uppercase;
}

.book-row__input::-moz-placeholder {
  text-transform: uppercase;
}

.book-row__input:-ms-input-placeholder {
  text-transform: uppercase;
}

.book-row__input::-ms-input-placeholder {
  text-transform: uppercase;
}

.book-row__input::placeholder {
  text-transform: uppercase;
}

.book-row__input:after {
  position: absolute;
  content: url("../img/icons/calendar.svg");
  display: inline-block;
  width: auto;
}

.book-row__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  width: auto;
  background-color: transparent;
  color: #fff;
  padding: 0.625rem;
  text-transform: uppercase;
  outline: none;
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: background-color 0.3s, border-color 0.3s;
  min-width: 16.25rem;
  margin-right: 3rem;
}

.book-row__submit:hover {
  border-color: #C4B176;
  background-color: #C4B176;
}

.slider-row {
  overflow: hidden;
}

.slider-row__wrap {
  display: block;
  max-width: 65rem;
  width: 100%;
  margin: 0 auto;
}

.slider-row__slide {
  display: block;
  width: 100%;
  margin: 10px 0.3125rem;
  position: relative;
  outline: none;
}

.slider-row__slide.slick-current .slider-row__image:after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 1s;
  -webkit-animation: backgroundFade 1s ease-in-out;
          animation: backgroundFade 1s ease-in-out;
}

.slider-row__image {
  max-width: 65rem;
  min-height: 31.25rem;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slider-row__image:after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.6);
}

.slider-row .slick-list {
  overflow: visible;
}

.slider-row .slick-prev, .slider-row .slick-next,
.slick-lightbox .slick-prev, .slick-lightbox .slick-next {
  display: block;
  left: 0.3125rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3.5rem;
  height: 3.5rem;
  z-index: 1;
  background-color: rgba(79, 98, 79, 0.6);
}

.slider-row .slick-prev:hover:before, .slider-row .slick-next:hover:before,
.slick-lightbox .slick-prev:hover:before, .slick-lightbox .slick-next:hover:before {
  opacity: 1;
}

.slider-row .slick-prev:before, .slider-row .slick-next:before,
.slick-lightbox .slick-prev:before, .slick-lightbox .slick-next:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 50%;
  height: 100%;
  color: transparent;
  -webkit-mask: url("../img/icons/left-arrow.svg") center no-repeat;
          mask: url("../img/icons/left-arrow.svg") center no-repeat;
  background-color: #fff;
  opacity: 0.6;
}

.slider-row .slick-next,
.slick-lightbox .slick-next {
  right: 0.3125rem;
  left: auto;
}

.slider-row .slick-next:before,
.slick-lightbox .slick-next:before {
  -webkit-mask: url("../img/icons/right-arrow.svg") center no-repeat;
          mask: url("../img/icons/right-arrow.svg") center no-repeat;
}

.slick-lightbox .slick-prev, .slick-lightbox .slick-next{
	background-color: rgba(79, 98, 79, 0.8);
}

.text-row {
  display: block;
  width: 100%;
  text-align: center;
}

.text-row__text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #666666;
  padding: 3.125rem;
  font-size: 1.88rem;
  line-height: 1.2;
  max-width: 62.5rem;
  margin: 0 auto;
}

.text-row_small .text-row__text {
  text-align: left;
  font-size: 0.9375rem;
  line-height: normal;
  padding: 3.125rem 0;
  max-width: none;
}

.info-row .main-info{
  display: flex;
  flex-wrap: wrap;
  padding: 3.5rem 0;
  border-top: 1px solid #C4B176;
  border-bottom: 1px solid #C4B176;
  margin-bottom: 3.125rem;
}

.info-row .main-info .title {
	display: flex;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 1.875rem;
    flex-direction: column;
}

.info-row .main-info .title__text {
  width: 100%;
  font-family: 'Philosopher', sans-serif;
  line-height: 3rem;
  letter-spacing: 1px;
  font-size: 2.8125rem;
  color: #4F624F;
  flex-grow: 1;
}

.info-row .main-info .title__price {
  font-size: 1.5625rem;
  white-space: nowrap;
}

.info-row .main-info .description {
  /*width: 50%;*/
  width: 100%;
  color: #666666;
}

.info-row .main-info .description__item_full {
  font-size: 0.9375rem;
}

.info-row .main-info .description__item_full b {
  color: #212121;
  font-size: 0.9375rem;
  font-weight: bold;
  text-transform: uppercase;
}

.info-row .main-info .buttons {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-transform: uppercase;
  width: 50%;
  margin-top: 30px;
}

.info-row .main-info .buttons__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.875rem 1.4375rem;
  text-decoration: none;
  transition: background-color 0.3s;
  text-transform: uppercase;
}

.info-row .main-info .buttons__item_book {
  background-color: #4F624F;
  border: 2px solid #4F624F;
  color: #fff;
  margin-right: 1rem;
}

.info-row .main-info .buttons__item_book:hover {
  background-color: #fff;
  color: #4F624F;
}

.info-row .main-info .buttons__item_rule {
  border: 2px solid #C4B176;
  color: #666666;
}

.info-row .main-info .buttons__item_rule:hover {
  background-color: #C4B176;
  color: #fff;
}

.info-row .extra-info {
  margin-bottom: 4.375rem;
}

.info-row .extra-info .title {
  color: #212121;
  font-size: 0.9375rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.info-row .extra-info .list {
  padding: 0;
  list-style: none;
  -moz-column-count: 3;
       column-count: 3;
}

.info-row .extra-info .list__item {
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  color: #666666;
}

.info-row .extra-info .list__item:before {
  content: '';
  display: inline-block;
  width: 0.5625rem;
  height: 0.5625rem;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid rgba(196, 177, 118, 0.6);
  margin-right: 0.5rem;
}

.info-row_nomer .extra-info .title {
  font-size: 15px !important;
}

.info-row_restaurant {
  margin-top: 3.125rem;
}

.info-row_restaurant .main-info .description {
  width: 100%;
  margin-bottom: 1rem;
}

.info-row_restaurant .main-info .buttons {
  width: 100%;
}

.info-row_restaurant .extra-info .title {
  width: 100%;
  font-family: 'Philosopher', sans-serif;
  line-height: 2.125rem;
  letter-spacing: 1px;
  font-size: 2.8125rem;
  color: #4F624F;
  text-align: center;
  text-transform: none;
  font-weight: normal;
  margin-bottom: 1.5rem;
}

.info-row_restaurant .extra-info .description {
  text-align: center;
  color: #666666;
  font-size: 0.9375rem;
  margin-bottom: 1.625rem;
}

.info-row_restaurant .extra-info_form .form {
  display: flex;
  align-items: center;
}

.info-row_restaurant .extra-info_form .form__input {
  display: inline-flex;
  padding: 0.875rem 1.5rem;
  text-decoration: none;
  transition: background-color 0.3s;
  border: 2px solid rgba(33, 33, 33, 0.2);
  flex-grow: 1;
  margin-right: 1.5rem;
}

.info-row_restaurant .extra-info_form .form__input::-webkit-input-placeholder {
  text-transform: uppercase;
}

.info-row_restaurant .extra-info_form .form__input::-moz-placeholder {
  text-transform: uppercase;
}

.info-row_restaurant .extra-info_form .form__input:-ms-input-placeholder {
  text-transform: uppercase;
}

.info-row_restaurant .extra-info_form .form__input::-ms-input-placeholder {
  text-transform: uppercase;
}

.info-row_restaurant .extra-info_form .form__input::placeholder {
  text-transform: uppercase;
}

.info-row_restaurant .extra-info_form .form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.875rem 5rem;
  text-decoration: none;
  transition: background-color 0.3s;
  text-transform: uppercase;
  background-color: #4F624F;
  border: 2px solid #4F624F;
  color: #fff;
  margin-right: 1rem;
}

.info-row_restaurant .extra-info_form .form__submit:hover {
  background-color: #fff;
  color: #4F624F;
}

.image-with-card {
  margin-top: 3.75rem;
  display: flex;
  align-items: center;
  width: 100%;
}

.image-with-card_right .image, .image-with-card_left .image {
  min-height: 28.125rem;
  height: 28.125rem;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
}

.image-with-card_right .card, .image-with-card_left .card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #4F624F;
  padding: 2.5rem;
  width: 100%;
  max-width: 31.25rem;
  max-width: 31.25rem;
  min-height: 21.875rem;
  max-height: 21.875rem;
  margin-left: -9.25rem;
  border: none;
  border-radius: 0;
}

.image-with-card_right .card__wrap, .image-with-card_left .card__wrap {
  text-align: center;
  overflow-y: auto;
}

.image-with-card_right .card__title, .image-with-card_left .card__title {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 2.1875rem;
  font-family: 'Philosopher', sans-serif;
  line-height: 2.125rem;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 1.25rem;
}

.image-with-card_right .card__hr, .image-with-card_left .card__hr {
  display: block;
  width: 100%;
  max-width: 10.25rem;
  background-color: #C4B176;
  height: 0.1875rem;
  margin: 0 0 1.625rem;
}

.image-with-card_right .card__text, .image-with-card_left .card__text {
  display: block;
  text-align: left;
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.image-with-card_left {
  margin-bottom: 4rem;
}

.image-with-card_left .image {
  order: 1;
  margin-left: -9.25rem;
}

.image-with-card_left .card {
  order: 0;
  margin-left: 0;
}

.video {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}

.video .vjs-big-play-button{
	visibility: hidden;
}

.video__item {
  width: 100%;
  height: auto;
}

.service-card {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  width: calc(33.3% - 0.5rem);
  padding: 2.8125rem;
  min-height: 23.75rem;
  margin: 0.25rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.service-card__wrap {
  padding: 1rem;
  background-color: rgba(79, 98, 79, 0.8);
}

.service-card__title {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.25rem;
  color: #fff;
}

.table-row {
  width: 100%;
  margin: 3.125rem 0;
  border-top: 1px solid #C4B176;
  padding-top: 2.5rem;
}

.table-row .table .props_list {
  padding: 0;
  width: 100%;
  margin: 0;
  color: #666666;
}

.table-row .table .props_list .name,
.table-row .table .props_list .value {
  padding: 0;
  padding-bottom: 0.8rem;
  position: relative;
  vertical-align: bottom;
  font-size: 0.9375rem;
  vertical-align: top;
  background: url("../img/icons/dott.png") no-repeat;
  background-position: 0px 1rem;
  background-repeat: repeat-x;
  width: 50%;
  border: none !important;
}

.table-row .table .props_list .name__item,
.table-row .table .props_list .value__item {
  overflow: hidden;
  text-overflow: ellipsis;
}

.table-row .table .props_list .name__text,
.table-row .table .props_list .value__text {
  background: #fff;
  padding-right: .5rem;
}

.table-row .table .props_list .value {
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
}

.table-row .table .props_list .value__item {
  padding: 0 0 0 .5rem;
  background-color: #fff;
  white-space: nowrap;
}

@media (max-width: 1440px) {
  header .header .navigation__list {
    width: auto;
    justify-content: flex-start;
  }
  footer .footer-wrap {
    justify-content: flex-start;
  }
  footer .menus-wrap {
    width: 50%;
    padding: 0;
    margin-bottom: 0rem;
  }
  footer .menus-wrap .menu {
    width: 49%;
    margin-right: 1%;
    margin-bottom: 1.5rem;
  }
  footer .menus-wrap .menu__title {
    margin-bottom: 1rem;
  }
  footer .menus-wrap .menu__link {
    margin-bottom: 0.5rem;
  }
  footer .contacts {
    width: 24%;
    margin-right: 1%;
  }
  footer .logo {
    width: 24%;
    margin-right: 1%;
  }
  footer .logo__image {
    max-width: 4.375rem;
  }
  .book-row__title {
    margin: 0 2rem;
  }
  .book-row__submit {
    margin-right: 2rem;
  }
  .banner-card_image {
    max-width: none;
    width: calc(50% - 0.5rem);
  }
}

@media (max-width: 1199px) {
  footer .footer-wrap {
    display: block;
    width: 100%;
  }
  footer .menus-wrap {
    width: 100%;
    padding: 0;
    margin-bottom: 0rem;
  }
  footer .menus-wrap .menu {
   /* width: 20%; */
    width: 22%;
    margin-right: 1%;
    margin-bottom: 1.5rem;
  }
  footer .menus-wrap .menu__title {
    margin-bottom: 1rem;
  }
  footer .menus-wrap .menu__link {
    margin-bottom: 0.5rem;
  }
  footer .contacts {
    display: inline-block;
   /* width: 48%;*/
   width: 24%;
    margin-right: 1%;
  }
  footer .logo {
    display: inline-block;
      /* width: 48%;*/
    width: 24%;
    margin-right: 1%;
  }
  footer .logo__image {
    max-width: 4.375rem;
  }
  footer .pay__text {
    width: 100%;
    justify-content: center;
  }
  footer .pay__button {
    margin: 0;
    margin-bottom: 1rem;
  }
  #main-slide, .main-slide_element {
    min-height: 37.5rem;
  }
  .banner-image__wrap {
    flex-direction: column;
    max-width: 90%;
    padding: 3rem 4rem;
  }
  .book-row__hr {
    display: none;
  }
  .book-row__title {
    display: none;
    margin: 0 1rem;
  }
  .book-row__input {
    min-width: 15rem;
  }
  .book-row__submit {
    margin-right: 1rem;
    min-width: 11.875rem;
  }
  .slider-row__slide {
    margin-right: 0;
    margin-left: 0;
  }
  .slider-row button.slick-prev {
    left: 0;
  }
  .slider-row button.slick-next {
    right: 0;
  }
  .slider-row__image {
    min-height: 25rem;
  }
  .info-row .main-info .description {
    width: 100%;
  }
  .info-row .main-info .buttons {
    width: 100%;
  }
  .info-row .extra-info .list {
    -moz-column-count: 2;
         column-count: 2;
  }
  .banner-card_image {
    width: calc(100% - 0.5rem);
  }
}

@media (max-width: 991px) {
  .info-row_restaurant .extra-info_form .form {
    flex-wrap: wrap;
  }
  .info-row_restaurant .extra-info_form .form__input {
   /* width: 49%;*/
    flex-grow: 0;
  /*  margin-bottom: 1rem;*/
    margin-right: 1%;
  }
  .info-row_restaurant .extra-info_form .form__submit {
    margin: 0 auto;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .image-with-card {
    flex-wrap: wrap;
    max-height: unset;
    height: 100%;
  }
  .image-with-card_right .image, .image-with-card_left .image {
    order: 0;
    width: 100%;
    margin: 0;
    margin-left: 0;
    margin-right: 0;
    max-height: 12.5rem;
    min-height: 12.5rem;
  }
  .image-with-card_right .card, .image-with-card_left .card {
    order: 1;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    max-height: none;
  }
  .image-with-card_right .card__wrap, .image-with-card_left .card__wrap {
    overflow-y: visible;
  }
  .service-card {
    width: calc(50% - 0.5rem);
  }
}

@media (max-width: 768px) {
  header .header .navigation__dropdown {
    width: calc(100vw - 2rem);
    left: -1rem;
  }
  header .header .navigation__dropdown_toggle {
    margin-left: -1rem;
    align-items: center;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
  header .header .navigation__dropdown_toggle.is-open:before {
    background-color: #5F6B88;
  }
  header .header .navigation__dropdown_toggle:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 1.125rem;
    height: 1.125rem;
    margin-right: 0.25rem;
    margin-top: -1px;
    color: transparent;
    -webkit-mask: url("../img/icons/menu.svg") center no-repeat;
            mask: url("../img/icons/menu.svg") center no-repeat;
    background-color: #4F624F;
    opacity: 1;
  }
  footer .footer-wrap {
    display: block;
    width: 100%;
  }
  footer .menus-wrap {
    width: 100%;
    padding: 0;
    margin-bottom: 0rem;
  }
  footer .menus-wrap .menu {
    width: 49%;
    margin-right: 1%;
    margin-bottom: 1.5rem;
  }
  footer .menus-wrap .menu__title {
    margin-bottom: 1rem;
  }
  footer .menus-wrap .menu__link {
    margin-bottom: 0.5rem;
  }
  footer .contacts {
    display: inline-block;
    width: 48%;
    margin-right: 1%;
  }
  footer .logo {
    display: inline-block;
    width: 48%;
    margin-right: 1%;
  }
  footer .logo__image {
    max-width: 4.375rem;
  }
  footer .pay__button {
    margin: 0;
    margin-bottom: 1rem;
  }
  #main-slide, .main-slide_element {
    min-height: 25rem;
  }
  .banner-row {
    flex-wrap: wrap;
    min-height: unset;
    height: 100%;
  }
  .banner-row_space {
    padding: 0.5rem;
  }
  .banner-row_text .banner-image {
    min-height: 18.75rem;
  }
  .banner-card {
    order: 1;
    width: 100%;
    max-width: none;
  }
  .banner-card_right, .banner-card_left {
    margin: 0;
  }
  .banner-image {
    order: 0;
    width: 100%;
  }
  .banner-image__wrap {
    flex-direction: column;
    padding: 2.25rem 2.375rem;
  }
  .banner-image__title {
    font-size: 2rem;
  }
  .book-row {
    min-height: 4.625rem;
  }
  .book-row__form {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .book-row__input {
    margin: 0.4rem 0.8rem;
    min-width: 13.125rem;
  }
  .book-row__submit {
    display: block;
    margin: 0.4rem 0.8rem;
    width: 3rem;
    height: 3rem;
    transform: none;
    font-size: 0;
    min-width: unset;
    padding: 0.625rem;
    border: none;
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
  }
  .book-row__submit:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    color: transparent;
    background: url("../img/icons/magnifier.png") center no-repeat;
    background-size: contain;
    opacity: 1;
  }
  .info-row .main-info .title {
    flex-wrap: wrap;
  }
  .info-row .main-info .title__text {
    margin-bottom: 0.8rem;
  }
  .info-row .main-info .title__price {
    width: 100%;
  }
  .card-slider-wrap {
    margin-left: auto;
    margin-right: auto;
  }
  .service-card {
    width: calc(100% - 0.5rem);
    min-height: 16.25rem;
  }
}

@media (max-width: 576px) {
  footer {
    padding: 2rem;
  }
  footer .menus-wrap .menu {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 1.5rem;
  }
  footer .contacts {
    width: 100%;
    margin-right: 0%;
  }
  footer .logo {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 1rem;
  }
  footer .pay__button {
    width: 100%;
    padding: 1rem;
  }
  #main-slide, .main-slide_element {
    max-height: 27rem;
  }
  #main-slide .main-slide__logo {
    padding: 0 2rem;
  }
  #main-menu .main-navigation {
    justify-content: center;
    height: auto;
  }
  #main-menu .main-navigation__item {
    margin: 0.25rem 1rem;
  }
  #socials .socials__link {
    margin-right: 1rem;
  }
  .book-row__input {
    margin: 0.5rem 0.3rem;
    min-width: unset;
    min-width: unset;
    width: 40%;
  }
  .slider-row__image {
    min-height: 17.5rem;
  }
  .slider-row button.slick-prev {
    width: 3rem;
    height: 3rem;
    left: 0;
  }
  .slider-row button.slick-next {
    width: 3rem;
    height: 3rem;
    right: 0;
  }
  .text-row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .text-row__text {
    padding: 3rem 2rem;
    font-size: 1.25rem;
  }
  .info-row {
    padding: 0 1rem;
  }
  .info-row .main-info .description {
    width: 100%;
  }
  .info-row .main-info .description__item_full {
    font-size: 1rem;
	overflow:scroll;
  }
  .info-row .main-info .buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  .info-row .main-info .buttons__item {
    padding: 0.875rem 2.1875rem;
  }
  .info-row .extra-info .list {
    -moz-column-count: 1;
         column-count: 1;
  }
  .info-row_restaurant .extra-info_form .form__input {
    width: 100%;
    margin-right: 0;
  }
  .banner-with-card-slider .card-slider-wrap {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
  .banner-with-card-slider .card-slider .slide__btn {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .image-with-card {
    margin-top: 0;
  }
  .table-row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 425px) {
  .banner-row_text .banner-image {
    min-height: 12.5rem;
  }
  .banner-image {
    min-height: 25rem;
    padding: 1rem 0;
  }
  .banner-image_title {
    padding: 2rem 0;
  }
  .banner-image__wrap {
    padding: 3rem 4rem;
  }
  .banner-image__title {
    font-size: 2.25rem;
  }
  .banner-card {
    min-height: 25rem;
    padding: 1rem;
  }
  .banner-card_text {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
  .banner-card__title {
    font-size: 2.25rem;
  }
  .banner-card_image {
    padding: 0rem;
  }
  .banner-card_image .banner-card__wrap {
    max-width: 90%;
  }
  .book-row__input {
    margin: 0.5rem 0.1rem;
  }
  .book-row__submit {
    margin: 0.5rem 0.2rem;
  }
  .info-row .main-info {
    padding: 1.875rem 0;
    margin-bottom: 2rem;
  }
  .info-row .main-info .title__text {
    font-size: 2.25rem;
  }
  .info-row .main-info .buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  .info-row .main-info .buttons__item {
    width: 100%;
    margin: 0.5rem 0rem;
  }
  .info-row .extra-info {
    margin-bottom: 2rem;
  }
  .info-row .extra-info .title {
    font-size: 2.25rem;
  }
  .text-row__text {
    padding: 2rem 1rem;
  }
  .banner-with-card-slider .card-slider .slide__title {
    font-size: 2.25rem;
  }
  .banner-with-card-slider .card-slider .slide__btn {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .section__title {
    font-size: 2.25rem;
  }
}

@media (max-width: 375px) {
  .banner-image__wrap {
    padding: 2rem 3rem;
  }
  .banner-image__title {
    font-size: 2rem;
  }
  .banner-card__title {
    font-size: 2rem;
  }
  .info-row .main-info .title__text {
    font-size: 2rem;
  }
  .info-row .extra-info {
    margin-bottom: 2rem;
  }
  .info-row .extra-info .title {
    font-size: 2rem;
  }
  .banner-with-card-slider .card-slider .slide__title {
    font-size: 2rem;
  }
  .section__title {
    font-size: 2rem;
  }
}

#block-search {
    background: #4e614e;
  }

@media screen and (min-width:600px){
  .tl-container {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
	width:1000px;
}}

@media screen and (max-width:600px){
  .tl-container {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
	width:160px;
}}

.book-row1{
	display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4F624F;
    min-height: 5.625rem;
    overflow: hidden;
}

@media screen and (min-width: 600px){
.book-row1 .tl-container {
	padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 160px;
}}

.book-row1 .book-row__wrap {
	display: block;
	align-items: center;
    justify-content: center;
}



/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
.animated {
/*CSS transitions*/
-o-transition-property: none !important;
-moz-transition-property: none !important;
-ms-transition-property: none !important;
-webkit-transition-property: none !important;
transition-property: none !important;
/*CSS transforms*/
-o-transform: none !important;
-moz-transform: none !important;
-ms-transform: none !important;
-webkit-transform: none !important;
transform: none !important;
/*CSS animations*/
-webkit-animation: none !important;
-moz-animation: none !important;
-o-animation: none !important;
-ms-animation: none !important;
animation: none !important;
}
}

/* Полная загрузка страницы (Pre-loader) */

#page-preloader {
 position: fixed;
 left: 0;
 top: 0;
 right: 0;
 bottom: 0;
 background: #fff;
 z-index: 100500;
}

#horizontal-multilevel-menu li ul {
	left:0;
}

input[name="captcha_word"] {
    display: inline-flex;
    padding: 0.875rem 1.5rem;
    text-decoration: none;
    transition: background-color 0.3s;
    border: 2px solid rgba(33, 33, 33, 0.2);
    flex-grow: 1;
    margin-right: 1.5rem;
}

header.panel-heading {
    position: inherit!important;
}

@media(max-width:600px){
.sb__dates .sb__form-field {
    width: 100%!important;
}
}

.sb__guests-rooms {
  width: 48%!important;
  margin-right: 16px!important;
}
.sb-screen-xs .sb__btn--verify {
  width: 48%important;
  margin-top: 34pximportant;
}

@media(min-width:451px){
.logo__name{
  height: 10px;
  display: inline-block;
  font-size: 10px;
  line-height: 11px;
  text-align: center;
  margin-top: 5px;
  color: #4F624F;
  font-weight: 600;
}

.phone .phone__item span{
  display: none;
}
}

@media(max-width:450px){
.logo__name{
  height: 10px;
  display: inline-block;
  font-size: 8px;
  line-height: 8px;
  text-align: center;
  margin-top: 3px;
  color: #4F624F;
  font-weight: 600;
  width: 100%;
}
header .header {
  padding: 0 1rem;
}

.phone .col-2{
  display: none;
}

.phone .container .col-10{
  -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

header .header .phone__item {
  flex-direction: column;
  padding-left: 10px;
  padding-bottom: 10px;
}

}

.flex{
  display: flex;
}

.flex-contents{
  padding: 0 1rem;
}