h2 {
    font-size: 2.4rem;
}
#header {
    position:static;
}

/***********************************************
            Image Gallery - Details
*************************************************/



.link-back a {
    display:flex;
    align-items:center;
    color: black;
    font-weight: 600;
}

.image-grid {
    --gap: 2rem;
    --num-cols: 2;
    --row-height: 300px;

    box-sizing: border-box;

    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    grid-auto-rows: var(--row-height);
    gap: var(--gap);
    margin-top: 2rem;
}
  
  .image-grid > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
  }
  
  .image-grid-col-2 {
    grid-column: span 2;
  }
  
  .image-grid-row-2 {
    grid-row: span 2;
  }


  .slick-dots {
        top: -5rem;
    }

.slick-dots li.slick-active button:before {
    color: var(--primary-color);
}

.slick-next{
    z-index: 555;
}

.gallery-image {
    margin-top: 6rem;
}

.slick-list{
    max-height: 60rem;
    overflow: hidden;
}


/***********************************************
           Navigation and Hotel Name
*************************************************/



.nav-name h2 {
    text-align: center;
}

.nav-name .detail-star{
    text-align: center;
    margin: 1rem 0;
}

.nav-name .detail-star i {
    font-size: 2rem;
    color: var(--star-color);
}

.nav-name ul {
    display:flex;
    flex-wrap:wrap;
    list-style: none;
    justify-content: center;
    /*margin-bottom: 4rem;*/
}

.nav-name ul li {
    border-bottom: 2px solid var(--border-color);
    color: var(--primary-color);
    cursor:pointer;
}

.nav-name ul li:not(:last-of-type){
    padding-right: 5rem;
    overflow: hidden;
}

.nav-name ul li span {
    padding-bottom: 2rem;
    display: inline-block;
    position: relative;
}

.nav-name ul li span::after{
    content: '';
    width: 0;
    height: .6rem;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: all 300ms ease-out;
    border-radius: 2rem;
}

.nav-name ul li.active span::after{
    width: 100%;
    background: var(--primary-color);
}

.nav-name .members {
    text-align: center;
}


.nav-name .members span {
    padding: 0.8rem 1.2rem;
    background-color: var(--star-color);
    border-radius: 50%;
    display: inline-block;
}
.nav-name .members span i {
    font-size: 2.5rem;
}

.nav-name .members > div {
    margin:.5rem 0;
}



  
  /* Anything udner 1024px */
  @media screen and (max-width: 767px) {
    .image-grid {
      --num-cols: 1;
      --row-height: 200px;
    }
  }


/***********************************************
           Covid 19 Update
*************************************************/
.covid-19  {
    color:var(--text-gray-color);
}
.covid-19 h4 {
    font-size: 2.4rem;
}


/***********************************************
           Amenities Section
*************************************************/
.amenities h3 {
    color:black;
    margin-bottom: 2rem;
}

.amenities-holder{
    display:flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.amenity {
    display: flex;
    align-items: center;
    flex-basis: 22%;
    margin-bottom: 2.5rem;
}

.amenity > div:first-of-type{
    background: var(--primary-color);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
}

.amenity > div:first-of-type i {
    color:white;
    font-size: 2rem;
}


/********************************************
            ROOMS Section
********************************************/
.detailed-room article {
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    box-shadow:2px 1px 10px 0px rgb(0 0 0 / 10%);
    padding:3rem;
}
/*
.detailed-room article > div {
    --gap: 2rem;
    --num-cols: 4;
    
  
    box-sizing: border-box;
  
    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    
    gap: var(--gap);

    
    padding: 1.5rem 0;
    
    
}

.detailed-room article > div:not(:last-of-type){
    margin-bottom: 8rem;
}

.detailed-room article header, .detailed-room article .price {
    text-transform: uppercase;
    font-size:2rem;
    margin-bottom: 1rem;
}

.detailed-room article > div > div:nth-of-type(4){
    text-align:center;
    font-size: 1.4rem;
}

.detailed-room article button {
    background-color:var(--primary-color);
    color: var(--white-color);
    display:block;
    width: 100%;
    border-radius: 2rem;
    padding:1rem;
    font-size: 1.8rem;
}


article {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow:2px 1px 10px 0px rgb(0 0 0 / 10%);
    margin-bottom: 3rem;
}

.detailed-img{ 
    flex-basis: 50rem;
    height: 30rem;
}

.detailed-img img {
    object-fit: cover;
    width: 100%;
}

.room-data-info{
    flex-grow: 1;
    padding: 3rem;
}

.room-data-info h4 {
    font-size: 2rem;
}

.price-and-icons {
    display: flex;
}


.room-data-info .icons {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
}

.room-data-info .icons > div {
    flex-basis: 46%;
}

.room-data-info .icons > div span:nth-of-type(1) {
    color: var(--star-color);
    font-size: 3rem;
}

.room-data-info .price {
    flex-basis: 25%;
    text-align: right;
}

.room-data-info .price a {
    display:inline-block;
    background: var(--btn-red-color);
    color:var(--white-color);
    padding: 1rem 4rem;
    border-radius: .5rem;
    margin-top: 3rem;
}

.room-data-info .price > div:first-of-type {
    font-size: 3.4rem;
    color: var(--primary-color);
    font-weight: 600;
}

.room-data-info > div:nth-of-type(1){
    color:var(--primary-color);
}

*/

/********************************************
    LOCATION - About this area Section
********************************************/

.location-area {
    --gap: 2rem;
    --num-cols: 3;
    --row-height: 300px;
  
    box-sizing: border-box;
  
    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    /*grid-auto-rows: var(--row-height);*/
    gap: var(--gap);
    margin-top: 2rem;
    background:var(--background-gray);
    padding-top: 4rem;
    padding-bottom: 8rem;
    margin-bottom: 8rem;
  }

.location-area h4 {
    font-size: 2rem;
}
.location-area > div:nth-of-type(1) > div {
    color:var(--text-gray-color);
    max-width: 45rem;
}

.location-area > div:not(:nth-of-type(1)), .location-area > div:not(:nth-of-type(2)) {
    margin-top: 4rem;
}

.location-area #google_map {
    border-radius: 1.5rem;
    border:1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    background:var(--white-color);
    overflow: hidden;
}
.location-area #google_map button{
    color:var(--primary-color);
    font-size: 1.8rem;
    display: block;
    text-align: center;
    background:var(--white-color);
    padding: 1.5rem;
    width: 100%;
    font-weight: 600;
    margin-top: -.7rem;
}
.about-box {
    color:var(--text-gray-color);
    max-width: 45rem;
}

.about-box i {
    font-size: 2rem;
    color:var(--primary-color);
}

/***********************************************
        About this property Section
************************************************/
.about-property{
    background:var(--background-gray);
    color:var(--text-gray-color);
    margin-bottom: 8rem;
}



/***********************************************
        Cleaning and safety practices Section
************************************************/

.cleaning-practices {
    color:var(--text-gray-color);
    background:var(--background-gray);
    font-size: 1.4rem;
}

.cleaning-practices h2 {
    margin-bottom: 3rem; 
}

.cleaning-practices h4 {
    font-size: 1.8rem;

}
.cleaning-practices i {
    color: var(--primary-color);
    font-size: 3rem;
    
}

/***********************************************
        Property amenities
************************************************/
.property-amenities {
    color:var(--text-gray-color);
    font-size: 1.4rem;
    --gap: 2rem;
    --num-cols: 3;
    --row-height: 300px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    gap: var(--gap);
}
/*
.property-amenities > div:first-of-type {
    grid-column: span 2;
}
*/

.property-amenities > div {
    margin-bottom: 3rem;
}

.property-amenities > div:not(:last-of-type){
    margin-right: 3rem;
}


.property-amenities main {
    display:flex;
    flex-wrap: wrap;
    overflow: auto;
    justify-content: space-between;
}

.property-amenities main > div {
    flex-basis: 48%;
    margin-bottom: 2rem;
}

.property-amenities main h4 {
    font-size: 1.8rem;
}

.property-amenities main i {
    font-size: 3rem;
    color:var(--primary-color);
}


.property-amenities:first-of-type{
    background:red;
}

/***********************************************
        Property amenities
************************************************/
.policies {
    color:var(--text-gray-color);
    font-size: 1.4rem;
}

.policies h2 {
    margin-bottom: 3rem;
    
}

.policies main {
    display:flex;
    flex-wrap: wrap;

}

.policies main > div {
    flex-basis: 33%;
    margin-bottom: 4rem;
}

.policies main > div h4 {
    font-size: 1.8rem;
}

.policies main > div i {
    color:var(--gray-color);
    font-size: 3rem;
}

.mb-1{
 margin-bottom: 10px;
}




/*  Mobile  */
@media (max-width:767px){

    h2 {
        font-size: 2.4rem;
    }

    .image-grid > img:not(:nth-of-type(1)){
        display:none;
    }
    .image-grid-row-2 {
        grid-row: span 1;
    }

    .nav-name ul {
        overflow-x: auto;
    }

    .amenity {
        flex-basis: 48%;
    }
    .amenity > div:first-of-type {
        width: 3.5rem;
        height: 3.5rem;
    }
    .amenity > div:first-of-type i {
        font-size: 1.4rem;
    }
    .amenity > div:nth-of-type(2){
        font-size: 1.4rem;
        flex-basis: 10rem;
    }

    .detailed-room article > div {
        --num-cols: 1;
    }
    .detailed-room article > div:not(:last-of-type) {
        margin-bottom: 2rem;
        border-bottom: 1px solid var(--room-separator);
    }

    .detailed-room article header {
        font-size: 1.8rem;
    }
    .detailed-room article > div > div:not(:nth-of-type(3)) > div{
        font-size: 1.4rem;
        color:var(--text-gray-color)
    }
    .detailed-room article .price {
        text-align: center;
        font-weight: 600;
        color:var(--primary-color);
        margin-bottom: 0;
    }
    /*
    .detailed-img  {
        height:auto;
        border-radius: 1.5rem 1.5rem 0 0;
        overflow:hidden;
    }
    .room-data-info {
        padding:1.5rem;
    }
    .price-and-icons {
        display: block;
    }
    .room-data-info .icons {
        justify-content: space-between;
    }
    .room-data-info .icons > div span:nth-of-type(1) {
        font-size: 2rem;
    }
    .room-data-info .icons > div span:nth-of-type(2){
        font-size: 1.4rem;
    }

    .room-data-info .price > div:first-of-type {
        font-size: 2.4rem;
    }
    .price {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-around;
        margin-top: 1.5rem;
    }
    .price > div:nth-of-type(2){
        color: var(--text-gray-color);
        order: 2;
        flex-basis: 100%;
        text-align: center;
        font-size: 1.4rem;
        margin-top: 1rem;
    }
    .room-data-info .price a {
        margin-top: 0;
    }
    */
    .location-area {
        --num-cols: 1;
        font-size: 1.4rem;
    }

    .about-property > div {
        font-size: 1.4rem;
    }

    .property-amenities main > div {
        flex-basis: 48%;
    }
    .property-amenities main i {
        font-size: 2rem;
    }
    .property-amenities main h4 {
        font-size: 1.6rem;
    }

    .property-amenities main > div > div > div {
        font-size: 1.2rem;
    }
    .policies main{
        justify-content: space-between;
    }
    .policies main > div {
        flex-basis: 100%;
    }

    .policies main > div:nth-of-type(1), .policies main > div:nth-of-type(2){
        flex-basis: 48%;
    }
}

.featured-hotels__holder{
    justify-content: center;
    gap: 24px;
}
/* Tablet */
@media(min-width:768px) and (max-width:991px){
    .amenity > div:nth-of-type(2){
        font-size: 1.4rem;
        flex-basis: 10rem;
    }
    .detailed-room article {
        display: block;
    }
    .detailed-img{
        overflow:hidden;
    }
    .room-data-info .price {
        flex-basis: 30%;
        margin-top: -4rem;
    }
    .price > div:nth-of-type(2){
        font-size: 1.4rem;
    }
    .room-data-info .price a {
        margin-top: 1.5rem;
    }
    .location-area {
        --num-cols: 2;
    }
}




article>div{
	margin-bottom:8rem !important;
}
.featured-hotels__holder>article>div{
    margin:1rem !important;
}
.booking-form form > div:first-of-type {
    flex-basis: 80%;
    border: 1px solid white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    padding: 0.6rem;
}
/* Only desktop */

@media (min-width: 992px){
    .room-data-info .price {
        margin-top:-4rem;
    }
    .location-area > div:nth-of-type(2){
        grid-column: span 2;
        grid-row: span 2;
    }

}

@media(min-width:992px) and (max-width:1300px){
    .room-data-info .price {
        flex-basis:40%;
    }
    .room-data-info .price > div:nth-of-type(2){
        font-size: 1.4rem;
    }
    .detailed-img {
        height:25rem;
    }
}
@media (max-width: 1440px){
	.property-amenities {
    --num-cols: 2;
}
.booking-form .d-flex {
    border-bottom: 1px solid #efefef;
    width: 100%;
    }
   .booking-form .nights {
     padding: 10px 0px;
    }
   label#view_booking_holder {
       border-top: 1px solid #efefef !important;
       padding: 10px 0px;
   }
   .nights {
    border-left: 0px !important;
    border-right: 0px !important;
   }
}
@media (max-width: 1199px){
	.property-amenities {
    --num-cols: 1;
}

}

@media (max-width: 991px){
    .d-flex {
	  justify-content: center;
 }
    .location-area {
        --num-cols: 1;
		 display: flex;
        flex-direction: column;
        align-items: center;
    }
	.location-area #google_map {
		width:100%;
 }
 section.location-area.about-section.section-padding {
	& h4{
        display: flex;
        align-items: center;
	}
}
label#view_booking_holder {
    border-top:none !important;
}
}

@media (max-width: 767px){
 .nav-name ul{
	 gap:15px;
     overflow-x: hidden;
	 font-size: 1.4rem;
 }
	.nav-name ul li:not(:last-of-type) {
     padding-right: 0rem;
}
.detailed-room article div h4{
    flex-basis:80%;
}
.mb-1:nth-of-type(8) {
	margin-bottom:1rem;
}
.detailed-room article > div:not(:last-of-type) {
    border-bottom: none;
}
}
@media (max-width: 576px){
    h2 {
        font-size: 2rem;
        text-align: center;
	
    }
.property-amenities main > div {
    flex-basis: 100%;
}

.detailed-room article div{
    flex-basis: 100%;
	/*display: flex;*/
    justify-content: center;
	
	
}
.detailed-room article div h4{
		flex-basis:100%;
	text-align:center;
}
.property-amenities main > div > div > div {
    font-size: 1rem;
}
.tab-content div:nth-of-type(4)  {
	width:100%;
	}
}
@media (max-width: 400px){
    .section-padding {
    padding: 2rem;
}
.detailed-room article {
padding: 1rem;
}

}

@media (max-width: 370px){
	.nav-name ul{
	gap:12px;
	font-size: 1.2rem;
 }
	
}

.clamp-2-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 3.4em;
  line-height: 1.6em;
}

.thing-keep-in-mind{
    margin-top: 30px;
    max-width: 500px;
}

.about-section h4{
    font-size:2rem !important;
}
.about-section h5{
    font-size:1.6rem !important;
}
.property-amenities h2{
    font-size:2.4rem !important;
}
/* Deals cards */
.mb-2{
    margin-bottom: 40px;
}
.offer-box {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.card-text{
    padding:6px;
}

.justify-content-left{
    justify-content: left;
}

.offer-box > div {
    max-width: 28rem;
    box-shadow: var(--box-shadow);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offer-box > div img {
    width: 100%;
    border-radius: 1.5rem 1.5rem 0 0;
    height: 16rem;
    object-fit: cover;
    cursor: pointer;
}

.offer-box  .img {
    position: relative;
}

.offer-box .img span {
    position: absolute;
    bottom: 1.5rem;
    right: 1rem;
    background: rgba(255,255,255, .6);
    padding: .5rem 1rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.offer-box > div h3 {
    font-size: 1.4rem;
    text-align: center;
    margin-top: 1.5rem 0;
}
.offer-box > div .date {
    color: var(--text-gray-color);
    text-align: center ;
    margin: 1rem 0;
}
.offer-box > div p {
    color: var(--text-gray-color);
}
.offer-box > div .cta {
    text-align: center;;
}
.offer-box > div .cta a {
    display: inline-block;
    background-color: var(--primary-color);
    color:white;
    text-align: center;
    font-size: 1.8rem;
    padding:1.5rem;
    margin-top: 1.5rem;
    border-radius: .5rem;
    margin-bottom: 1rem;
}

.deal-offer h2 {
    text-align: center;
}
.deal-offer{
    background-color: var(--background-gray);
}

.deal-offer > p {
    color:var(--text-gray-color);
    font-size: 1.6rem;
    text-align: center;
    max-width: 90rem;
    margin: auto;  
    padding: 0 1rem;
    margin-bottom: 3rem;
}








/* .deal-offer h2{
    font-size: 2.4rem !important;
}
.featured-hotels h2{
    font-size: 2.4rem !important;

} */