html {
    scroll-behavior: smooth !important;
}

.hotel-meta { display: flex; justify-content: space-between; }
.rating .star { color: gold; font-size: 1.2rem; }
.hotel-gallery-section, .hotel-services, .hotel-rooms, .hotel-restaurant, .hotel-additional, .hotel-faq, .hotel-attractions { margin-bottom: 40px; }
.swiper { width: 100%; height: auto; }
.swiper-slide img { width: 100%; border-radius: 6px; }
.faq-question { cursor: pointer; font-weight: bold; margin: 1rem 0; }
.faq-answer { display: none; padding-left: 1rem; }


/*Hotels Name*/

h1.hotel-title{
	font-size: 36px;
    font-weight: 600;
	font-family: Outfit;
	margin-top: 40px;
}

.hotel-meta{
	margin-bottom: 40px;
}

p.location-left, p.location-right{
	font-size: 30px;
	font-weight: 600;
	font-family: Outfit;
}

.hotel-meta .rating .star{
	font-size: 28px;
}

.location-right span {
  position: relative;
  display: inline-block;
  font-weight: 400;
}

.location-right span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -14px;
  height: 1px;
  width: 100%;
  background-color: #000;
}

@media screen and (max-width: 768px){
	.hotel-meta{
		flex-direction: column;	
	}
}

/*Gallery*/

.gallery-swiper {
  position: relative;
}

.gallery-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}


.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
  color: #1c1c1c;
  background: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: bold;
}


.gallery-swiper .swiper-button-prev {
  left: 10px;
}
.gallery-swiper .swiper-button-next {
  right: 10px;
}


.gallery-swiper .swiper-pagination-fraction {
    position: absolute;
    bottom: 0;
	margin-bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 16px;
    border-radius: 12px;
    line-height: 1;
    width: 100%;
    height: 50px;
    z-index: 10;
    display: inline-block;
    white-space: nowrap;
}


@media screen and (max-width: 768px){
	.gallery-swiper .swiper-pagination-fraction{
		padding: 12px;
		height: 40px;
	}
}

/*Description*/

.hotel-description-title{
	margin-bottom: 20px;
}

.hotel-description p{
	margin-bottom: 40px;
}

/*Short Info*/

.short-info-title{
	margin-bottom: 20px;
}

.hotel-short-info div.info-items{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 40px;
}

.hotel-short-info div.info-items .info-item{
	display: flex;
	gap: 20px;
	align-items: center;
	width: calc((100% - 40px) / 3);
	box-sizing: border-box;
}

.short-info-image, .hotel-services-image{
	border-radius: 50%;
}

@media (max-width: 992px) {
  .hotel-short-info div.info-items .info-item {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .hotel-short-info div.info-items .info-item {
    flex: 1 1 100%;
  }
}

/*Hotel Services*/

.hotel-services-title{
	margin-bottom: 20px;
}

section.hotel-services .service-items{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 40px;
}

section.hotel-services .service-items .service-item{
	display: flex;
	gap: 20px;
	align-items: center;
	width: calc((100% - 40px) / 3);
	box-sizing: border-box;
}


h3.service-item-title, .room-details-title{
	font-size: 22px;
}

@media (max-width: 992px) {
  section.hotel-services .service-items .service-item {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  section.hotel-services .service-items .service-item {
    flex: 1 1 100%;
  }
}

/*Gallery*/


.rooms-gallery-swiper {
  position: relative;
  width: 100%;
  height: 100%;
}


.rooms-gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}


.rooms-gallery-swiper .swiper-button-prev,
.rooms-gallery-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background: #fff;
  color: #1c1c1c;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.rooms-gallery-swiper .swiper-button-prev::after,
.rooms-gallery-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: bold;
}

.rooms-gallery-swiper .swiper-button-prev {
  left: 10px;
}
.rooms-gallery-swiper .swiper-button-next {
  right: 10px;
}


.rooms-gallery-swiper .swiper-pagination-fraction {
    position: absolute;
    margin-bottom: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px 16px;
    border-radius: 12px;
    line-height: 1;
    z-index: 10;
    white-space: nowrap;
}

/*Room*/

section.hotel-rooms h2{
	margin-bottom: 20px;
}

section.hotel-rooms .room-info{
	display: flex;
	gap: 20px;
	margin-bottom: 40px;
}

section.hotel-rooms .room-info .room-text{
	width: 50%;
}

section.hotel-rooms .room-info .rooms-gallery-swiper{
	width: 50%;
}

@media screen and (max-width: 992px){
	
section.hotel-rooms .room-info{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
	
	section.hotel-rooms .room-info .room-text{
	width: 100%;
}

section.hotel-rooms .room-info .rooms-gallery-swiper{
	width: 100%;
}

}

.room-details-swiper{
	padding-bottom: 60px;
}

.room-details-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
	background-color: #000;
}

.room-details-swiper .swiper-pagination .swiper-pagination-bullet{
	border: 2px solid #000;
}

.hotel-restaurant-title{
	margin-bottom: 20px;
}


section.hotel-restaurant .restaurant-content{
	display: flex;
	gap: 20px;
	flex-direction: row-reverse;
	margin-bottom: 40px;
}

section.hotel-restaurant .restaurant-content .rest-text{
	width: 50%;
}

section.hotel-restaurant .restaurant-content .restaurant-gallery-swiper{
	width: 50%;
}


.restaurant-gallery-swiper {
  position: relative;
  width: 100%;
  height: 100%;
}


.restaurant-gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}


.restaurant-gallery-swiper .swiper-button-prev,
.restaurant-gallery-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background: #fff;
  color: #1c1c1c;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.restaurant-gallery-swiper .swiper-button-prev::after,
.restaurant-gallery-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: bold;
}

.restaurant-gallery-swiper .swiper-button-prev {
  left: 10px;
}
.restaurant-gallery-swiper .swiper-button-next {
  right: 10px;
}


.restaurant-gallery-swiper .swiper-pagination-fraction {
    position: absolute;
    margin-bottom: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px 16px;
    border-radius: 12px;
    line-height: 1;
    z-index: 10;
    white-space: nowrap;
}

@media screen and (max-width: 992px){
	
section.hotel-restaurant .restaurant-content{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
	
	section.hotel-restaurant .restaurant-content .rest-text{
	width: 100%;
}

section.hotel-restaurant .restaurant-content .restaurant-gallery-swiper{
	width: 100%;
}

}

section.hotel-additional h2, section.hotel-attractions h2, section.hotel-faq h2{
	margin-bottom: 20px;
}

/*Gallery*/

.attractions-swiper {
  position: relative;
}

.attractions-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}


.attractions-swiper .swiper-button-prev,
.attractions-swiper .swiper-button-next {
  color: #1c1c1c;
  background: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.attractions-swiper .swiper-button-prev::after,
.attractions-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: bold;
}


.attractions-swiper .swiper-button-prev {
  left: 10px;
}
.attractions-swiper .swiper-button-next {
  right: 10px;
}


.attractions-swiper .swiper-pagination-fraction {
    position: absolute;
    bottom: 0;
	margin-bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 16px;
    border-radius: 12px;
    line-height: 1;
    width: 100%;
    height: 50px;
    z-index: 10;
    display: inline-block;
    white-space: nowrap;
}


@media screen and (max-width: 768px){
	.attractions-swiper .swiper-pagination-fraction{
		padding: 12px;
		height: 40px;
	}
}

.faq-list .faq-item .faq-question{
	background-color: #4badc6;
    color: #ffffff;
    padding: 12px;
    border-radius: 8px;
}

h2.hotel-contacts-title, section.hotel-contacts p{
	margin-bottom: 20px;
}

section.hotel-gallery-section{
	display: flex;
	align-items: center;
	gap: 40px;
}

section .swiper.gallery-swiper{
	width: 65%;
}

section.hotel-gallery-section .additional-info-and-price{
	width: 35%;
}

section.hotel-gallery-section .price-block{
	position: relative;
	padding: 40px 20px;
	box-shadow: 0 5px 10px 3px rgba(0, 0, 0, .16);
}

a.book__button{
	display: inline-block;
	position: absolute;
	bottom: -26px;
	left: 50%;
	transform: translateX(-50%);
	color: #ffffff;
	background-color: #1989c7;
	padding: 16px 32px;
	border: 2px solid #1989c7;
	transition: all 350ms ease-in-out;
}

section.hotel-gallery-section .price-block .price-info{
	margin-bottom: 20px;
	padding: 20px;
}

section.hotel-gallery-section .price-block .price-info p{
	font-size: 22px;
	font-weight: 700;
}

section.hotel-gallery-section .price-block .price-info p.act-price{
	font-size: 30px;
}

a.book__button:focus, a.book__button:hover{
	color: #1989c7;
	background-color: #ffffff; 
}

section.additional-iformation{
	margin-bottom: 40px;
}

@media screen and (min-width: 992px){
	section.additional-iformation .row > div:first-child{
		padding-left: 0;
	}
	section.additional-iformation .row > div:last-child{
		padding-right: 0;
	}
}

@media screen and (max-width: 991px){
	section.additional-iformation .row > div{
			padding-left: 0;
			padding-right: 0;
	}
	
	section.hotel-gallery-section{
			flex-direction: column;
	}
	
	section .swiper.gallery-swiper, section.hotel-gallery-section .additional-info-and-price{
		width: 100%;
	}
	
	section.hotel-gallery-section .price-block .price-info p.act-price, section.hotel-gallery-section .price-block .price-info p{
		text-align: center;
	}
}

/*Services*/

section.new-hotel-services{
	margin-bottom: 40px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.service-icon {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.service-items {
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
}

.service-items li {
  position: relative;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.checkmark {
  color: green;
}

.info-trigger {
  position: relative;
  display: inline-block;
  background: #ccc;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}

/* Popover tooltip */
.info-trigger .tooltip-box {
  display: none;
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #1c1c1c;
  color: #fff;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 10;
  min-width: 100px;
}

.info-trigger.active .tooltip-box {
  display: block;
}

.services-grid .service-block{
	display: flex;
	gap: 20px;
}

section.new-hotel-services .service-image{
	min-width: 60px;
}

section.new-hotel-services .service-items{
	display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


.service-block {
  width: calc((100% - 90px) / 4);
}

.hotel-services-title{
	margin-bottom: 20px;
}

.service-description-title{
	font-size: 18px;
}

@media screen and (min-width: 992px) and (max-width: 1200px){
	.service-block {
		width: calc((100% - 60px) / 3);
	}
}

@media screen and (max-width: 992px){
	.service-block {
		width: calc((100% - 30px) / 2);
	}
}

@media screen and (max-width: 768px){
	.service-block {
		width: 100%;
	}
}


/*Acomodations*/

.hotel-section-title{
	margin-bottom: 20px;
}

.hotel-info-section {
  margin: 40px 0;
}

.hotel-info-list{
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hotel-info-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hotel-info-icon {
  font-size: 34px;
  color: #666;
  flex-shrink: 0;
  line-height: 0 !important;
}

.hotel-info-title {
  font-weight: 600;
  margin: 0;
  font-size: 18px;
}

.hotel-info-desc {
  margin-top: 12px;
  color: #555;
}


/*Rooms*/


.hotel-slides { margin: 40px 0; }

.slide-inner {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.slide-left { flex: 1 1 40%; }
.slide-right { flex: 1 1 60%; }
.slide-right img { width: 100%; height: auto; border-radius: 10px; display: block; }

.slide-title { margin: 0 0 12px; font-weight: 700; }


.slide-list-1 { list-style: none; padding: 0; margin: 0 0 16px; }
.slide-list-1 li {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0; border-bottom: 1px solid #eee;
}
.slide-list-1 li .text { flex: 1; }
.slide-list-1 li .check { color: #1a9e2a; font-weight: 700; }


.slide-list-2 { display: grid; gap: 10px; }

.pair-title { font-weight: 600; color: #000; }
.pair-desc { color: #000; }


.hotel-custom-swiper .swiper-button-prev,
.hotel-custom-swiper .swiper-button-next {
  background: #fff; width: 40px; height: 40px; border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  color: #111; --swiper-navigation-size: 18px;
}
.hotel-custom-swiper .swiper-pagination-bullets .swiper-pagination-bullet {
  background: #999; opacity: .6;
}
.hotel-custom-swiper .swiper-pagination-bullet-active { background: #111; opacity: 1; }


@media (max-width: 992px){
  .slide-inner { flex-direction: column; }
  .slide-left, .slide-right { flex: 1 1 100%; width: 100%;}
  .slide-title { font-size: 18px; }
  /*.slide-list-2 .pair { grid-template-columns: 1fr; }*/
}





.hotel-slides-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 20px;
}
.hotel-slides-title{
  margin:0;
  font-size:24px;
  font-weight:700;
}


.hotel-swiper-controls{
  display:flex;
  align-items:center;
  gap:14px;
}


.hotel-swiper-controls .swiper-button-prev,
.hotel-swiper-controls .swiper-button-next{
  position:static;
  width:40px;
  height:40px;
  border-radius:50%;
  background:#fff; 
  color:#111;
  margin-top: 4px;
  box-shadow:0 2px 8px rgba(0,0,0,.12);
  --swiper-navigation-size:18px;
}


.hotel-sw-pagination{
  width: auto; 
  text-align:center;
  font-weight:600; 
  font-size:16px; 
  line-height:1;
  position: static !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: #000;
  margin-top: 10px;
}


.hotel-custom-swiper .swiper-button-prev,
.hotel-custom-swiper .swiper-button-next{
  position:static;
}

@media screen and (max-width: 992px){
	.hotel-sw-pagination{
		margin-top: 4px;
	}
}

@media (max-width: 576px){
  .hotel-swiper-controls{
    gap:10px;
  }
  .hotel-swiper-controls .swiper-button-prev,
  .hotel-swiper-controls .swiper-button-next{
    width:36px;
	height:36px;
	--swiper-navigation-size:16px;
  }
  .hotel-sw-pagination{ font-size:14px; min-width:48px; }
}


.check-avb_button, .offer-button{
    display: block;
    color: #ffffff;
    background-color: #1989c7;
    padding: 16px 32px;
    border: 2px solid #1989c7;
	width: fit-content;
	margin-top: 20px;
    transition: all 350ms ease-in-out;
}

.check-avb_button:hover, .check-avb_button:focus, .offer-button:hover, .offer-button:focus{
	color: #1989c7;
    background-color: #ffffff;
}

/*Reviews*/

.hotel-reviews-section {
    margin: 40px 0;
}
.hotel-reviews-title {
    margin-bottom: 20px;
}
.hotel-reviews-desc {
    margin-bottom: 20px;
    color: #555;
}

.hotel-reviews-swiper .swiper-slide {
    display: flex;
    gap: 16px;
    background: #f9f9f9;
    padding: 16px;
    border-radius: 12px;
}

.review-img img {
    object-fit: cover;
    border-radius: 8px;
	margin-bottom: 10px;
}

.review-content {
    flex: 1;
}

.review-name {
    font-weight: 700;
    margin: 0 0 10px;
}

.review-stars {
    color: #f5a623;
    margin-bottom: 10px;
}

.review-stars .star {
    font-size: 16px;
    color: #ccc;
}

.review-stars .star.filled {
    color: #f5a623;
}

.review-subtitle {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.review-text {
    color: #555;
    margin-bottom: 10px;
}

.review-date {
    font-size: 12px;
    color: #999;
}


.hotel-reviews-swiper .swiper-button-prev,
.hotel-reviews-swiper .swiper-button-next {
    background: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #111;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.hotel-reviews-swiper .swiper-pagination {
    margin-top: 12px;
    text-align: center;
}

/*Offers Block*/

.hotel-offers {
  margin: 40px 0;
}

.hotel-offers-title {
  margin-bottom: 20px;
}

.hotel-offers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hotel-offer-item {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  position: relative;
  transition: all 0.3s ease;
}

.hotel-offer-item:hover {
  transform: translateY(-4px);
}

.offer-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.offer-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.offer-description {
  font-size: 16px;
  margin-bottom: 10px;
}



@media (min-width: 1200px) {
  .hotel-offer-item {
    flex: 0 1 calc(25% - 20px);
  }
}

@media (max-width: 992px) {
  .hotel-offer-item {
    flex: 0 1 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .hotel-offer-item {
    flex: 1 1 100%;
  }
}

/**/

.hotel-sections-menu {
    position: fixed;
    top: 94px;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 9999;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Активный пункт на мобилке */
.hotel-sections-menu .active-section-mobile {
    display: none;
    font-weight: 600;
    color: #ffffff;
}

/* Скрываем ul на мобилке */
.hotel-sections-menu .menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.hotel-sections-menu ul.menu-items {
    display: flex;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav.hotel-sections-menu ul.menu-items li a{
	color: #ffffff;
	font-size: 18px;
	transition: all 350ms ease-in-out;
	font-family: Outfit;
	font-weight: 600;
}

nav.hotel-sections-menu ul.menu-items li:hover a, nav.hotel-sections-menu ul.menu-items li:focus a{
	color: #000000;
}

.hotel-sections-menu ul.menu-items li a.active {
    color: #000000;
}

/* Мобильная версия */
@media screen and (max-width: 768px){
    .hotel-sections-menu .menu-toggle {
        display: block;
    }

    .hotel-sections-menu .active-section-mobile {
        display: block;
        margin-left: auto;
    }

    /* Полноэкранный оверлей */
    .hotel-sections-menu ul.menu-items {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 20px; /* отступ сверху под header */
        gap: 24px;
        max-height: 0;
        overflow-y: auto;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        pointer-events: none;
    }

    .hotel-sections-menu ul.menu-items.open {
        max-height: 100%;
        opacity: 1;
        pointer-events: all;
    }

    .hotel-sections-menu ul.menu-items li {
        width: 100%;
        text-align: center;
        font-size: 20px;
        margin-bottom: 12px;
    }

    body.menu-open {
        overflow: hidden;
    }
}

nav.hotel-sections-menu ul li{
	margin-top: 15px;
}

.newbg, nav.hotel-sections-menu{
    background: #1989c7 !important;
    transition: all 0.9s;
}

.menu-toggle{
	transition: all 350ms ease-in-out;
}

.menu-toggle.active{
	position: absolute;
    z-index: 999 !important;
    right: 20px;
    top: -90px;
}

@media screen and (max-width: 768px){
	section.additional-iformation, .hotel-description p, .hotel-info-section, section.new-hotel-services, .hotel-rooms, .hotel-slides, .hotel-restaurant, .hotel-additional, .hotel-faq, .hotel-attractions, .hotel-info-section, .hotel-reviews-section, .hotel-offers{
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 768px) {
    nav.hotel-sections-menu ul.menu-items li a{
		color: #000000;
		transition: all 350ms ease-in-out;
	}
	
	nav.hotel-sections-menu ul.menu-items li a:hover, nav.hotel-sections-menu ul.menu-items li a:focus{
		color: #1989c7 !important;
	}
	
	.hotel-sections-menu .menu-toggle {
        color: #ffffff;
    }
	
	    .hotel-sections-menu .menu-toggle.active {
        color: #000000;
    }
	
}