@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
body{
    font-family: 'Poppins', sans-serif;
}

/*Global Tags*/
h1{
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
}

span{
    font-size: .9rem;
    color: black;
}

h6{
    font-size: 1.1rem;
    color: black;
}
:root{
    --red:#f0653f;
    --yellow: #fcb75f;
    --grey: #514e4d;
    --dark:#514e4d;
    --text:#ECE7DF;
    --white:#fff;
    --transition: all 0.7s ease;
    --border:.1rem solid #ece7df;
}


/* navigation Bar */

nav{
    width: 100%;
    background-color:var(--yellow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .8vw 8vw;
    position: fixed;
    z-index: 10000;
    box-shadow: 1px 1px 5px var(--grey);
}
/* sticky nav  */
nav.sticky{
    padding: .3vw 8vw;
    top: 0;  
}
nav.sticky img {
    width:120px ;
    height: 55px;
   

}
nav.sticky .navigation ul li a{
    font-size: 14px;
    font-weight: 600;
}
nav.sticky .navigation .navbtn{
    width: 120px;
    height: 55px;

}

.nav-micon{
    position: absolute;
    font-size: 2rem;
    color: var(--grey);
    cursor: pointer;
    display: none;
    right: 2vw;
}
 #close-icon{
    font-size: 2rem;
}
#check-box{
    display: none;
}


nav img{
    width: 150px;
    height: 70px;
    cursor: pointer;
    position: relative;
    
}

nav .navigation ul{
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
nav .navigation ul li{
    position: relative;
    list-style: none;
    margin: 0 20px;

}

nav .navigation ul li a{
    position: relative;
    text-decoration: none;
    color: var(--grey);
    font-size: 15px;
    font-weight: 600;
    transition: 0.1s ease;
    
}
nav .navigation ul li a:hover{
    color: var(--red);
    
}
nav .navigation ul li i{
    color: var(--grey);
    font-size: 16px;
    font-weight: 600;
}
nav .navigation ul li i:hover{
    color: var(--red);
}


/* sub hotel nav */
nav .navigation .sub-hotel{
    display: none;
   position: relative;
    
}
nav .navigation .sub-hotel ul li a{
    font-size: 1rem;
    font-weight: 400;
    transition: .1s ease;
}

nav .navigation ul li:hover .sub-hotel{
    display: block;
    position: absolute;
    background-color: var(--yellow);
    margin-left: -33px;
}
nav .navigation ul li:hover .sub-hotel ul{
    display: block;
    margin: 25px 0 10px 0;
    
}
nav .navigation ul li:hover .sub-hotel ul li{
    width: 180px;
    padding: 10px 0;
    border-bottom: 1px solid var(--grey);
    background:transparent;
    border-radius: 0;
    text-align: left;
    
    
}
nav .navigation ul li:hover .sub-hotel ul li:last-child{
    border-bottom: none;
}

nav .navigation .navbtn{
    width: 150px;
    height: 60px;
    background-color:transparent;
    border-color:var(--red);
    border-radius: 10px;
    transition: 0.3s ease;
    cursor: pointer;
    
}

nav .navigation .navbtn {
    text-decoration: none;
    text-align: center;
    color: var(--grey);
    font-size: 15px;
    font-weight: 600;
}
nav .navigation .navbtn:hover{
    background-color: var(--grey);
    border: none;
    color:var(--yellow);
    border-radius: 35px;
    

}

nav .navigation button a:hover{
    color: var(--red);
}




@media (max-width:992px) {
    nav.sticky {
      display: none;
    }
    nav .nav-micon{
        display: inline-flex;

    }
    #check-box:checked~.nav-micon #menu-icon{
        display: none;
    }
    #close-icon{
        display: none;
    }

    #check-box:checked~.nav-micon #close-icon{
        display: block;
    }
    #check-box:checked~.navigation {
        height: 100vh;
    }
    #check-box:checked~.navigation ul li a{
        display: block;
        
    }
    nav{
        position: relative;
    }
    nav .navigation {
        position: absolute;
        top:100%;
        left: 0;
        width: 100%;
        height:0;
        background-color: var(--red);
        transition: .3s ease;
        
    }
    nav .navigation ul li a{
        display: none;
        
    }
    
    nav img{
        left: 0;
        width: 100px;
        height: 50px;
    }
    nav .navigation ul{
        display: block;
        padding: 1rem;
        
    }
    nav .navigation ul li{
        margin: .8rem;
        display: flex;
       justify-content: space-evenly;
    }
    nav .navigation .navbtn{
        margin-top: 1vh;
        background-color:transparent;
        border:.1rem solid var(--yellow);
        border-radius: 10px; 
    }

    nav .navigation .navbtn {
        text-decoration: none;
        text-align: center;
        color: var(--grey);
        border: 2px solid var(--grey);
        font-size: 15px;
        font-weight: 600;
    }
    nav .navigation .navbtn:hover{
        background-color: var(--grey);
        border: none;
        color:var(--yellow);
        border-radius: 35px;
        
    
    }
    nav .navigation ul li a:hover{
        color: var(--grey);
        
    }
   #close-icon{
    color: var(--text);
    font-size: 2.3rem;
   }
  
nav .navigation .sub-hotel{
    display: none; 
    margin: 0  -120px 0;
    width: 100%;
}
nav .navigation .sub-hotel ul li a{
    font-size: .9rem;
    font-weight: 400; 
}

nav .navigation ul li:hover .sub-hotel{
    display:block;
    position: relative;
    background-color: transparent;
    text-align: center;
    margin-left: -300px;
}
nav .navigation ul li:hover .sub-hotel ul {
    display: block;
    text-align: center;

}
nav .navigation ul li:hover .sub-hotel ul li {
    width: 100%;
    padding:  0;
    margin: 0;
    border-bottom:none;
    background:transparent;
    border-radius: 0;
    
}
}

/* footer nav  */

.footer-navigation .sub-hotel{
    display: none;
    
}
.footer-navigation .sub-hotel ul li a{
    font-size: 1rem;
    font-weight: 400;
    transition: .5s;
    
}
.footer-navigation ul li:hover .sub-hotel{
    display: block;
  
}

/* Banner */
.banner{
    width: 100%;
    height: 100vh;
}

.slider{
    width: 100%;
    height: 100%;
    position: absolute;

}

#slideImg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    background-size: cover;
}

.overlay{
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0,0,0,0.5));
    position: absolute;
    top: 0;
  
    

}

.content{
    width: 60%;
    margin: 160px auto 0;
    text-align: center;
    color: var(--yellow);
   
    
   
}

.content h1{
    color: var(--text);
    padding: 22px 0;
    font-size: 45px;
    border-bottom: 1px solid #F0653F;
}
.content h3{
    color: var(--text);
    opacity: 0.7;
    font-size: 20px;
    margin: 45px auto;
    width: 60vw;
}
.content button{
    width: 200px;
    padding: 15px 0;
    text-align: center;
    margin: 2vw 1vw;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    border: 2px solid #F0653F;
    background:var(--red);
    color: aliceblue;
    cursor: pointer;
    transition: 0.3s ease ;

}
.content button:hover{
    background: transparent;
    border: 2px solid #F0653F;
}

.content .btn-2{
    background: transparent;
    border: 2px solid #FCB75F;
    margin-bottom: 2vw;
}
.content .btn-2:hover{
    background: var(--yellow);
    border: 2px solid #FCB75F;
}
@media (max-width:768px) {
    .content{
        width: 100%;
        padding: 0 1vh;
        margin: 100px auto 0;
    }
    .content h3{
        width: 95%;
        font-size: .8rem;
    }
    .banner{
        position: relative;
    }
    .content button{
        width: 180px;
        padding: 10px 0;
    }
    
    .banner{
            width: 100%;
            height: 100vh;
        }
        .content .btn-2{
            margin-bottom: 2vh;
        }
 
}
@media (max-width:378px) {
    
        .content h3{
            font-size: 1rem;
            margin: 8px 0;
        }
      
}


   
   

  


/* story */
.story{
    width: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3vw 6vw 4vw;
    gap: 40px;
}

.abt {
    width: 100%;
}
.abt h1{
    padding-bottom: 20px;
    color: var(--grey);

}


.abt p{
    line-height: 20px;
    color: var(--grey);
}
.abt-img-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    justify-content: space-between;
    position: relative;
    gap: 20px;
    overflow: hidden;
   
}
.abt-img-container .v-stretch img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.abt-img-container .abt-img1{
  margin-top: 40px;
}
.abt-img-container .abt-img2{
  margin-top: -20px;
  
}

.abt button{
    padding:  1.5vh 4vh;
    background: transparent;
    color: var(--grey);
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    border: 2px solid var(--grey);
    transition: 0.1s ease;
    cursor: pointer;
    margin-top: 30px;
}

.abt button:hover{
    color: var(--text);
    background-color: var(--grey);   
}

@media(max-width:1370px){
    .abt h1{
        line-height: 50px;
        margin: 10px 0;
    }
   
}
@media(max-width:768px){
    .story{
        flex-direction: column;
    }
    .story img{
        width: 100%;
    }
    .abt{
        align-items: center;
        padding: 0;
    }
    .abt h1{
        line-height: 50px;
        margin: 10px 0;
    }
    .abt button{
        padding:  1.5vh 4vh;
       background: transparent;
       color: var(--grey);
       font-size: 17px;
       font-weight: 600;
       text-align: center;
       border: 2px solid var(--grey);
       transition: 0.1s ease;
       cursor: pointer;
   }
   
}


 
 .landing-map{
    width: 100%;
    height: 60vh;
    background-color: var(--text);
    padding: 3vw 4vw;
 }    
.map-warper-cont{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.map-warper-cont .map-loc{
    width: 100%;
   
}
.map-warper-cont .map-loc iframe{
    width: 100%;
    height: 100%;
}
.map-textcont{
    padding: 2vw ;
    width: 50%;
    background-color: var(--white);
    position: relative;
}
.map-textcont p{

    margin-top: 10px;
    font-size: .9rem;
    color: var(--grey);

}
.map-textcont h1{
    color: var(--grey);

}
.map-textcont i{
    color: var(--red);
    padding-right: 5px;
}
.map-textcont button{
       padding: .8vw 1vw ;
       background: transparent;
       color: var(--grey);
       font-size: 17px;
       font-weight: 600;
       text-align: center;
       border: 2px solid var(--grey);
       transition: 0.1s ease;
       cursor: pointer;
        margin-top: 20px;
}
.map-textcont button:hover{
    background-color: var(--grey);
    color: var(--text);
}
.map-textcont a{
    text-decoration: none;
}
@media (max-width:768px) {
    .map-warper-cont{
        flex-direction: column;
        padding: 4vh 0;
       }
       .landing-map{
        width: 100%;
        height: 100%;
        padding: 2vw;
     }   
     .map-textcont{
        width: 100%;
        height: 100%;
        padding: 2vh;
     }
     .map-textcont p{
        font-size: .9rem;
     }
     .map-textcont button{
        padding: 1.5vh 1.5vh ;
          margin-bottom: 20px;
    }
    .abt-img-container{
        padding-top: 5vh;
       
    }
   .abt p{
    font-size: .9rem;
   }
   .abt h1{
    margin-bottom: 5px;
   }
    
    .abt button{
        padding:  1.5vh 4vh;
        background: transparent;
        color: var(--grey);
        font-size: 17px;
        font-weight: 600;
        text-align: center;
        border: 2px solid var(--grey);
        transition: 0.1s ease;
        cursor: pointer;
        margin-top: 30px;
    }
    
}

/* room */
.landingpagerooms{
    text-align: center;
    margin: 1rem 0;
    
     
     
 }
 
 .landingpagerooms .alist{
     display: flex;
     flex-direction: column;
     margin-top: 30px;
 }
 .landingpagerooms .alist a{
     color: var(--grey);
 
 }
 .landingpagerooms .alist a:hover{
     color: var(--red);
 }
 .landingpagerooms h1{
     text-align: center;
     font-size: 30px;
     font-weight: 550;
     margin-top: 100px;
     padding: 2px 2px;
 
 }
 .landingpagerooms p{
     color: var(--grey);
 }


.rooms{
    margin: 0px 0;
    padding: 2vw 5vw;
    background-color:var(--red);
 
}
.title h1{
    text-align: center;
    margin-bottom: 15px;
    color: var(--grey);
}
.room{
    width: 100%;
    margin: 45px 0;
    background-color: var(--text);
    color:var(--grey);
    
    
    
}
.room-text{
    padding: 2rem;
    
}
.room-text h3{
    font-size: 24px;
}
.room-text ul{
    list-style-type: none;
    margin: 15px 0;
}
.room-text ul li{
    padding: 7px 0;
}
.room-text ul li i{
    color: var(--red);
    margin-right: 10px;
}
.rate{
    opacity: 0.8;
}
.rate span{
    font-size:2rem;
    font-weight: 600;
    color: var(--grey);
}
.room-image{
    overflow: hidden;
    
}

.room-text p{
    font-variant: 12px;
    font-weight: 400;
}
.room-image img{
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
}
.room-image:hover img{
    transform: scale(1.1);
}
@media (min-width: 900px){
    .rooms-container{
        display: flex;
        flex-wrap: wrap;
    }
    .room{
        flex: 0 0 calc(50% - 20px);
        margin: 10px;
    }
}
@media(min-width: 1370px){
    .rooms-container{
        flex-direction: column;
    }
    .room{
        display: flex;
        padding-bottom: 0;
        margin: 5px 0;
    }
    .room-image{
        flex: 1;
    }
    .room-image img{
        height: 100%;
    }
    .room-text{
        flex: 1;
    }
    .room:nth-child(even){
        flex-direction: row-reverse;
    }
}


/* landing page Service section  */


.services .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 1rem;
    justify-content: center;
    align-items: flex-start;
    background-color: var(--text);
    padding: 3vw 6vw;
 }
 
 .services .box-container .box{
    padding: 1rem;
    text-align: center;
    background-color: var(--white);
    border-radius: 10px;
 }
 
 .services .box-container .box img{
    height: 4rem;
    margin-bottom: 1rem;
 }
 
 .services .box-container .box h3{
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--grey);
    text-transform: capitalize;
    margin: 1rem 0;
 }
 
 .services .box-container .box p{
    line-height: 2;
    font-size: 1rem;
    font-weight: 400;
    color:var(--grey);
 }
@media (max-width:700px) {
    .services .box-container{
        display: flex;
        flex-wrap: wrap;
    }
    
    
}

/* landing page gallery section */


.gallery{
    padding: 3vw 3vw;

    background-color: var(--yellow);
}
.gallery img{
    width: 35rem;
    border-radius: .5rem;
    object-fit: cover;
    margin-bottom: 3rem;
    user-select: none;
 }
 
 .swiper-pagination-bullets.swiper-pagination-horizontal{
    bottom: 0;
 }
 
 .swiper-pagination-bullet{
    background-color: var(--red);
 }
 
 .swiper-pagination-bullet-active{
    background-color: var(--text);
 }


/*-------------about us page ---------------*/
.about-container{
    height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(48, 47, 46, 0.5),rgba(77, 76, 75, 0.5)),url(images/room1.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;   
}
.about-container h1{
    top: 10%;
    position: relative;
}

.abbody{
    width: 100%;
    height: 100%;
    background-color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3vw 10vw;
    padding-bottom: 5vw;
}
.abbody h1{
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--grey);
    margin-bottom: 10px;
}
.abbody p{
    width: 50%;
    font-size: 1rem;
    font-weight: 300;
    color: var(--grey);
}

/* ---------------- */
.aboutus-body1{
    width: 100%;
    height: 50vh;
    padding: 2vw 15vw;
    background-color: var(--text);
}

.aboutbody-warper1{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    padding: 2vw;
    gap: 5vw;
}
.abw1-images {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    object-fit: cover;
}
.abw1-images img{
   
    height: 100%;
    object-fit: cover;
}
.abwarper-textcontent h1{
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
}
.abwarper-textcontent h4{
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--grey);
}
.abwarper-textcontent p{
    font-size: 1rem;
    font-weight: 400;
    color: var(--grey);
}
.aboutus-body2{
    width: 100%;
    height: 50vh;
    padding: 2vw 15vw;
    background-color: var(--text);
}
.aboutbody-warper2{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row-reverse;
    padding: 2vw;
    gap: 5vw;
}
.abw2-images {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    
}
.abw2-images img{
    
    height: 100%;
    object-fit: cover;

}
.abwarper-textcontent button{
    padding: 1rem 2rem ;
    font-size: 1.2rem;
    font-weight: 500;
    background-color: transparent;
   border: 2px solid var(--grey);
    margin:1rem 0;
    transition: .3s ease;
    color: var(--grey);
}
.abwarper-textcontent button:hover{
    background: var(--grey);
    color: var(--text);
}

@media (max-width:768px) {
    .abbody p{
        width: 100%;
    }
    .aboutus-body1{
        height: 100%;
        padding: 2vw 1vw;
        overflow: hidden;
    }
    .aboutbody-warper1{
        flex-direction: column;
        gap: 1.2vw;
    }
    .abw1-images {
        flex-direction: column;
        gap: 1rem;
    }
    .abw1-images img{
        width: 100%;
        height: 200px;
        object-fit: cover;
        background-size: cover;
       
    }
    
    .abwarper-textcontent h1{
        font-size: 2rem;
        font-weight: 500;
        color: #000;
    }
    .abwarper-textcontent p{
        font-size: .8rem;
        font-weight: 400;
        color: var(--grey);
    }
   
    .aboutus-body2{
        height: 100%;
        padding: 3vw 1vw;
        overflow: hidden;
    }
    .aboutbody-warper2{
        flex-direction: column;
        gap: 1.2vw;
    }
    .abw2-images {
        flex-direction: column;
         gap: 1rem;
         padding: 2vw 0;
    }
    .abw2-images img{
        width: 100%;
        height: 200px;
        object-fit: cover;
        background-size: cover;
        
        
    }
    .abwarper-textcontent button{
        padding: .8rem 1.5rem;
    }
    
  
}
/* ------------- */

.about {
    width: 100%;
    height: 60vh;
    
  }

.about-container .header-line{
    color:var(--text);
    padding-top: 200px; 
    font-size: 3rem; 
    position: relative;
}

.about-container p{
    color: var(text);
    font-size: 14px;
    font-weight: 400;
}
/* benefit for guest banner */
.benefits-container{
    height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(49, 36, 16, 0.7),rgba(49, 36, 16, 0.7)),url(images/room3.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;   
}


.benefits-container .header-line{
    color:var(--text);
    padding-top: 200px;  
}
.benefits-container .header-line::after{
    content: "";
    width: 50px;
    height: 3px;
    background-color:var(--text);
    border: none;
    display: block; 
    margin: 2vw 48%;
}
/* customer feedback banner */
.cfeedback-container{
    height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(49, 36, 16, 0.7),rgba(49, 36, 16, 0.7)),url(images/room4.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;   
}


.cfeedback-container .header-line{
    color:var(--text);
    padding-top: 200px;  
}
.cfeedback-container .header-line::after{
    content: "";
    width: 50px;
    height: 3px;
    background-color:var(--red);
    border: none;
    display: block; 
    margin: 2vw 48%;
}
/* Service page banner */
.spb-container{
    height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(49, 36, 16, 0.7),rgba(49, 36, 16, 0.7)),url(images/room5.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;   
}


.spb-container .header-line{
    color:var(--text);
    padding-top: 200px;  
}
.spb-container .header-line::after{
    content: "";
    width: 50px;
    height: 3px;
    background-color:var(--text);
    border: none;
    display: block; 
    margin: 2vw 48%;
}
/* Room page banner */
.rpb-container{
    height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(49, 36, 16, 0.7),rgba(49, 36, 16, 0.7)),url(images/room5.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;   
}


.rpb-container .header-line{
    color:var(--text);
    padding-top: 200px;  
}
.rpb-container .header-line::after{
    content: "";
    width: 50px;
    height: 3px;
    background-color:var(--red);
    border: none;
    display: block; 
    margin: 2vw 48%;
}
/* Offer page banner */
.opb-container{
    height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(49, 36, 16, 0.7),rgba(49, 36, 16, 0.7)),url(images/room6.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;   
}


.opb-container .header-line{
    color:var(--text);
    padding-top: 200px;  
}
.opb-container .header-line::after{
    content: "";
    width: 50px;
    height: 3px;
    background-color:var(--red);
    border: none;
    display: block; 
    margin: 2vw 48%;
}
/* News page banner */
.npb-container{
    height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(49, 36, 16, 0.7),rgba(49, 36, 16, 0.7)),url(images/room7.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;   
}


.npb-container .header-line{
    color:var(--text);
    padding-top: 200px;  
}
.npb-container .header-line::after{
    content: "";
    width: 50px;
    height: 3px;
    background-color:var(--text);
    border: none;
    display: block; 
    margin: 2vw 48%;
}
/* FAQ page banner */
.faqpb-container{
    height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(49, 36, 16, 0.7),rgba(49, 36, 16, 0.7)),url(images/room8.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;   
}


.faqpb-container .header-line{
    color:var(--text);
    padding-top: 200px;  
}
.faqpb-container .header-line::after{
    content: "";
    width: 50px;
    height: 3px;
    background-color:var(--text);
    border: none;
    display: block; 
    margin: 2vw 48%;
}
/* contact page banner */
.conpb-container{
    height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(49, 36, 16, 0.7),rgba(49, 36, 16, 0.7)),url(images/room4.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;   
}


.conpb-container .header-line{
    color:var(--text);
    padding-top: 200px;  
}
.conpb-container .header-line::after{
    content: "";
    width: 50px;
    height: 3px;
    background-color:var(--red);
    border: none;
    display: block; 
    margin: 2vw 48%;
}
/* booking page banner */
.bookpb-container{
    height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(49, 36, 16, 0.7),rgba(49, 36, 16, 0.7)),url(images/room4.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;   
}


.bookpb-container .header-line{
    color:var(--text);
    padding-top: 200px;  
}
.bookpb-container .header-line::after{
    content: "";
    width: 50px;
    height: 3px;
    background-color:var(--red);
    border: none;
    display: block; 
    margin: 2vw 48%;
}
@media (max-width:768px) {
    .bookpb-container .header-line{
        color:var(--text);
        padding-top: 100px;  
    }
}
/* blog page banner */
.blogpb-container{
    height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(49, 36, 16, 0.7),rgba(49, 36, 16, 0.7)),url(images/room4.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;   
}
.restb-container{
    height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(49, 36, 16, 0.7),rgba(49, 36, 16, 0.7)),url(restaurane/2.jpg) ;
    background-position: center;
    background-size: cover;
    text-align: center;   
}
.restb-container .header-line{
    color:var(--text);
    padding-top: 200px;  
}
.restb-container .header-line::after{
    content: "";
    width: 50px;
    height: 3px;
    background-color:var(--red);
    border: none;
    display: block; 
    margin: 2vw 48%;
}


.blogpb-container .header-line{
    color:var(--text);
    padding-top: 200px;  
}
.blogpb-container .header-line::after{
    content: "";
    width: 50px;
    height: 3px;
    background-color:var(--red);
    border: none;
    display: block; 
    margin: 2vw 48%;
}
/* -----end banner pages------- */

.about-body{
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.about-body-header{
    text-align: center;
    padding: 3vw 4vw;
    align-items: center;
    
    
}
.about-body-header p{
    margin: 0 20vw;
}

.about-header-line{
    font-size: 35px;
    font-weight: 250;
   
}


.about-body-header h2{
    font-size: 16px;
    font-weight: 600;
    
}
.about-rooms{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 3rem;
    justify-content: center;
    align-items: flex-start;
    background-color: var(--red);
    padding: 3vw 15vw;
    text-align: start;   
}
.about-roomscontainer{
    height: 100%;
    display:flex;
    flex-direction: column;
    overflow: hidden;
    
    
    
    
}
.about-roomscontainer img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    background-size: cover;
    transition: var(--transition);  
   
}
.about-roomscontainer img:hover{
    transform: scale(1.1);
}
.about-roomscontent{
   position: relative;
    background-color: var(--text);
    padding:3vw 2vw 2vw 2vw  ;
    
   
    
}
.about-roomscontent h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--grey);
}
.about-roomscontent h2::after{
    content: "";
    width: 2.5rem;
    height: .2rem;
    background-color: var(--grey);
    display: block;
    margin: 1.8vw 0;
    
}

.about-roomscontent button{
    transition: .2s ease;
    background: transparent;
    border: 2px solid var(--grey);
    font-size: 1.3rem;
    font-weight: 600;
    padding: .8vw 1.5vw;
    text-decoration: none;
    color: var(--grey);
    cursor: pointer;
}


.about-roomscontent button:hover{
    background-color: var(--dark);
    color: var(--text);
}
@media (max-width:768px) {
    .about-body{
        height: 100%;
        width: 100%;
        
    }
    .about-rooms{
        display: flex;
        flex-wrap: wrap;
        padding: 3vw;
        gap: 3vw;

    }
    .about-body-header p{
        margin: 0 3vw;
    }
    .about-roomscontent button{
        padding: 1.5vh 2vh;
        margin: 2vh 0;
    }
    .about-roomscontent h2 {
        font-size: 1.7rem;
    }
}


/* Footer */

.footer{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    background:var(--dark);
    padding:3vw 10vw;
    position: relative;
    
}
.footer-contact a{
    display: flex;
    flex-direction: column;
    
}

.footer-navigation{
    position: relative;
}
.footer-navigation ul li{
    list-style: none;
    margin: 5px;

}

.footer-navigation ul li a{
    text-decoration: none;
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}
.footer-navigation ul li a:hover{
    color: var(--red);
}


.footer-contact{
    color: var(--text);
    margin-bottom: 10px;
   position: relative;
    
}
.footer-contact h3{
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;

}
.footer-contact p{
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 10px;

}
.footer-contact a{
    color: var(--text);
    margin-top: 5px;
    font-size: 1rem;
    font-weight: 300;
}
.footer-contact a:hover{
    color: var(--red);
}
.social-media{
    color: var(--text);
    position: relative;
   
   
}
.social-media h3{
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.footer-blog a{
    color: var(--text);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
}
.footer-blog a:hover{
    color: var(--red);
}

@media(max-width:700px){
    .footer{
        flex-direction: column;
        align-items: left;
        padding:20px 0;
       
    }
    .footer-line{
       width: 90%;
       height: 1px;
       
    }
}
.end{
    padding: 10px 15%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color:var(--grey);

}

.copyright{
    color:var(--text);
    font-size: 14px;
    font-weight: 500;
   
}

.footer-navigation::before{
    content: "";
    width: 1px;
    height:100%;
    background-color: var(--text);
    display: block;
    position: absolute;
    margin: 0 -20px;
}
.footer-contact::before{
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--text);
    display: block;
    position: absolute;
    margin: 0 -20px;
}
.social-media::before{
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--text);
    display: block;
    position: absolute;
    margin: 0 -20px;
}



.social-media i{
    color: var(--yellow);
    margin-bottom: 10px;
    padding: 0 5px;
    font-size: 30px;
    font-weight: 900;
    transition: var(--transition);
}
.social-media i:hover{
    color: #F0653F;
    transform: scale(1.1);
}

@media (max-width:768px) {
    .footer{
        text-align: center; 
        flex-direction: column;
    }
    .footer-contact{
        margin: 2rem 0;
    }
    .copyright p{
        text-align: center;
     }
     .social-media::before{
        display: none;
     }
     .footer-contact::before{
        display: none;
     }
     .footer-navigation::before{
        display: none;
     }
     
}
/* end Footer */

/*---------- contact us page-------------- */

.header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(49, 36, 16, 0.7),rgba(49, 36, 16, 0.7)),url(images/room9.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
   
   
    
}
/* review, contactus faq */
.contact{
    text-align: center; 
   
 }
 
 .contact .alist{
     display: flex;
     flex-direction: column;
     margin-top: 10px;
     margin-bottom:30px;

 }
 .contact .alist a{
     color: var(--grey);
 
 }
 .contact .alist a:hover{
     color: var(--red);
 }
 .contact h1{
     text-align: center;
     font-size: 30px;
     font-weight: 550;   
 }
 .contact p{
     color: var(--grey);
 }

.contact{
    width: 100%;
    height: 80vh;
    
}
 .contact .row{
    
    display: flex;
    align-items: flex-start;
    gap: 8rem;
    flex-wrap: wrap;
    background: linear-gradient(#514e4dbe ,#514e4dd5), url("images/mountain1.jpg") center/cover no-repeat fixed;
    padding: 3vw 10vw;
   
 }
 
 .contact .row form{
    background-color: transparent;
    flex: 1 1 20rem;
    border: .1rem solid var(--text);
    border-radius: .5rem;
    padding: 2rem;
    text-align: center;

 }
 
 .contact .row .faq{
    flex: 1 1 30rem;
    
    
 }
 
 .contact .row form .box{
    padding: 1rem 1rem;
    margin: .5rem 0;
    border: none;
    border-bottom:.1rem solid var(--text) ;
    font-size: 1rem;
    color: var(--text);
    background:transparent;
    width: 100%

 }
 
 .contact .row form .box::placeholder{
    color: var(--text);
    opacity: 0.7;
    font-size: 1.2rem;
    
 }
 
 .contact .row form textarea{
    height: 8rem;
    resize: none;
 }
 
 .contact .row .faq .title{
   
    font-size: 1.5rem;
    color: var(--text);
    text-transform: capitalize;
    text-align: center;
 }
 
 .contact .row .faq .box{
    border-radius: .5rem;
    background-color: transparent;
    border: .1rem solid var(--text);
    margin-top: 2rem;
    transition: .3s ease;
 }
 .contact .row .faq .box:hover{
    transform: translateY(-18px);
    
 }
 
 .contact .row .faq .box h3{
    background-color: transparent;
    color: var(--text);
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 400;
    border-radius: .5rem;
    cursor: pointer;
 }
 
 .contact .row .faq .box p{
    padding:1rem 2rem;
    line-height: 1;
    font-size: 1.2rem;
    color:var(--white);
    opacity: 0.7;
    display: none;
 }
 
 .contact .row .faq .box.active p{
    display: inline-block;
 }
 

 .landcontactbtn{
    width: 12em;
    height: 2.5rem;
    border:.1rem solid var(--text);
    background: transparent;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    color: var(--text);
    transition: .3s ease;
    cursor: pointer;
 }
 .landcontactbtn:hover{
    
    background: var(--text);
    border: none;
    border-radius: 20px;
    color: var(--grey);
 }


 .row .star-widget input{
    display: none;
    
}
 
.row .star-widget label{
    font-size: 2.5rem;
    color: var(--text);
   padding: 15px 14px 20px;
    padding-right: 20px;
    float: right;
    transition: all 0.2s ease;
}
.row .star-widget input:not(:checked) ~ label:hover,
.row .star-widget input:not(:checked) ~ label:hover ~ label{
    color: var(--yellow);
}
.row .star-widget input#rate-5:checked ~ label{
    color: var(--yellow);
    text-shadow: 0 0 20px var(--text);
}
.row .star-widget input:checked ~ label{
    color: var(--yellow);
   
}
@media (max-width:1370px) {
    .row .star-widget label{
        font-size: 2rem;
        padding:0 0 0 0;
        padding-right: 15px;
    } 
}
@media (max-width:500px) {
    .row .star-widget label{
        font-size: 2rem;
        padding:0 0 0 0;
        padding-right: 15px;
    } 
}
@media (max-width:768px) {
    .contact .row {
        padding: 2vh ;
    }
    #contact h1{
        font-size: 30px;
    }
    #contact p{
        font-size: 13px;
    }
    
  
}


/* end contact and FAQ */

/* ---------------------contact page --------------- */
.contact{
    width: 100%;
    height: 100%;
    margin: auto;
    text-align: center;
    justify-content: center;
    padding-top: 100px;
  
}

.contact h1{
    font-size: 45px;
    font-weight: 300;
    color: #333232;
    
}
.contact h2{
    font-size: 28px;
    font-weight: 400;
    color: #333232;
}

.contact p{
    font-size: 19px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    color: var(--grey);
}

.contact-detail{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
    padding: 0 25vw;


}

.contact-details{
    flex-basis: 48%;
    background:var(--text);
    margin-bottom: 5%;
    padding: 20px 2px;
   
}

@media(max-width:992px){
    .contact-detail{
       padding: 0 3vh;
       flex-direction: row;

       
    }
}
@media(max-width:768px){
    .contact-detail{
        flex-direction: column;
       flex-wrap: wrap;
       padding:0 5vh;
       
    }
}

.links{
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 12px 18px;
    
}
.contact .links a{
    color:var(--grey);
    transition: .3s ease;
}
.contact .links a:hover{
    color: #F0653F;
}

/* ----------------------google map ----------------------*/
.google-map{
    width: 100%;
    height: 84vh;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 100px;
  
   
}



iframe{
    width: 100%;
    height: 600px;
    filter: invert(100%);
    margin-bottom: 0;
    
}

 .google-map h1{
     text-align: center;
     font-size: 34px;
     font-weight: 300;
     margin-top: 100px;
     
     color: var(--grey);
 }
 .google-map p{
     color: var(--grey);
     margin-bottom: 30px;
 }

 
@media(min-width: 600px){
   .google-map{
       display: flex;
       align-items: center;

   }
   .google-map h1 {
       font-size: 45px;
     text-align: center;
}
}




/* ------------Gallery--------------- */
/* Banner */
 .autply .swiper {
    width: 100%;
    height: 100vh;
  }

  .autply .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    

  }
  .swiper-button-next{
    padding: 0  8vw;
    
  }
  .swiper-button-prev{
    padding: 0 8vw;
   
  }
  .glry-textcontainer{
    text-align: center;
    padding: 4vw 0;
    /* background-color: var(--text); */
  }
  .glry-textcontainer h1{
    font-size: 2.5rem;
    color: var(--grey);
    font-weight:400;

  }
  .glry-textcontainer p{
    font-size: 1.2rem;
    color: var(--grey);
    font-weight:400;

  }
  /* ----comment out gallary */
 .glry-container{
    width: 100%;
    padding: 2vw ;
    margin: 0 auto;
    /* background-color: var(--text); */
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    
 }
 /* stretch vertically */
 .v-stretch{
    grid-row: span 2;
 }
 /* stretch horizontal */
 .h-stretch{
    grid-column: span 2;
 }
 /* stretch vertically & horizontally */
 .big-stretch{
    grid-row: span 2;
    grid-column: span 2;
 }
 .glry-container div img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
 }
 .glry-container div img:hover{
    border: .1rem solid var(--red);
 }
  @media (max-width:(768px)) {
    .v-stretch{
        grid-row: span 1;

    }
    .h-stretch{
        grid-column: span 1;
     }
     .big-stretch{
        grid-row: span 1;
        grid-column: span 1;
     }
    
  }
  /* ---------end comment out gallery--------- */
  .gly-container{
    width: 100%;
    padding: 2vw 14vw ;
    margin: 0 auto;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    
  }
  .gly-container div img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
    cursor: pointer;
 }
 .gly-container .popup-imag{
    position: fixed;
    top: 0; left: 0;
    background-color: #514e4dc2;
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
 }
 .gly-container .popup-imag span i {
     position: absolute;
     top: 10%; right: 25px;
     font-size: 30px;
     font-weight: 400;
     color: var(--yellow);
     cursor: pointer;
     z-index: 100;
 }
 .gly-container .popup-imag img{
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-50%);
    border: 5px solid #ECE7DF;
    border-radius: 5px;
    width: 750px;
    object-fit: cover;
    height: 80%;
 }
@media (max-width:768px) {
    .gly-container .popup-imag img{
        width: 95%;

    }
    .gly-container{
        padding: 2vw 4vw ;
        gap: 10px;
    }
}

/* ----------------blog-------------- */

/* blog scroll container */
.blog-body{
    width: 100%;
    height: 60vh;
    background-color: var(--red);
    display: flex;
    flex-direction: column;
    padding: 3vw 10vw ;   
    
}

.blog-container{
    display: flex;
    flex-direction: row;   
    position: relative;
      
}

.blog-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.blog-content{
    background-color: var(--text);
    padding: 2vw 1vw;
    position: relative;
 
}
.blog-container h2{
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--grey);
    padding: 1.5vw;
    
}
.blog-container h2::after{
    content: "";
     width: 2.5rem;
     height: .2rem;
     background-color: var(--grey);
     display: block;
     margin-top: 1vw;
     
}
.blog-container p{
    font-size: 1rem;
    font-weight:400;
    color: #000;
    padding: 0 1.5vw;
    
}


.blog-container .blog-readmore{
    padding: .8rem 1.8rem;
    margin:4rem 0 0 1.5rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--grey);
    border: 2px solid var(--grey);
    background: none;
    cursor: pointer;
    transition: .2s ease;
}

.blog-container .blog-readmore:hover{
    background-color: var(--grey);
    color: var(--text);
    
}
@media (max-width:700px) {
    .blog-container{

        flex-direction: column;
    }
    .blog-body{
        height: 100%;
        padding: 2vh 4vh ; 
    }
    .blog-content{
        padding-bottom: 4vh;
    }
    .blog-container .blog-readmore{
        margin-left: 1vh;
    }
    .blog-container h2{
        font-size: 1.3rem;
        padding: 0 1.5vh;
        
    }
    .blog-container p{ 
        padding:  1.5vh ;
    }
    .blog-body{
        padding: 3vh ;   
        
    }
    .blog-container .blog-readmore{
        margin:1.5vh;
       
    }
}

  /* ----------------------------Rooms Page start------------------------------ */
  
  .room-main{
    padding: 8vw 8vw 0 8vw;
    text-align: center;

  }

  .room-main .rooms-page{
    text-align: start;
    background: #aaa7a6;
    height: 100%;
  }
  .room-main .rooms-page img{
    width: 100%;
    height: 60%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    
  }
  /* ---------------------landing page rooms section ---------------*/
  
  .landRooms{
    text-align: center;
    margin-top: 5vw;
    
 }
 
 .landRooms .alist{
     display: flex;
     flex-direction: column;
     margin-top: 30px;
     margin-bottom:30px;

 }
 .landRooms .alist a{
     color: var(--grey);
 
 }
 .landRooms .alist a:hover{
     color: var(--red);
 }
 .landRooms h1{
     text-align: center;
     font-size: 30px;
     font-weight: 550; 
 }
 .landRooms p{
     color: var(--grey);
 }
 .landRooms h1::after{
     content: "";
     width: 100px;
     height: 2.5px;
     background-color: var(--red);
     display: block;
     margin: 1vw 46.5%;
 }
.rooms-main{
    justify-content: center;
    align-items: flex-start;
   background-color: var(--red);
    padding: 3vw 8vw;
    text-align: start;
}

  .landrooms-header{
    font-size: 36px;
    font-weight: 600;
    color: var(--grey);
    text-align: center;
    margin-bottom: 3rem;
  }

  .landRooms .slide{
    background-color: var(--text);
    margin: 1rem 0;
    display: flex;
    flex-direction: row;
  }

  .landRooms .slide .roomimages{
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .landRooms .slide .roomimages img{
    width: 100%;
    height: 100%;
    border-radius: .5rem;
    object-fit: cover;
    transition: var(--transition);
  }
  .landRooms .slide .roomimages img:hover{
    transform: scale(1.1);
    border-radius: 1rem;
  }

  .landRooms .slide .roomimages .price{
    position: absolute;
    top: 2.5rem; left: 2.5rem;
    background: linear-gradient(rgba(49, 36, 16, 0.7),rgba(49, 36, 16, 0.7));
    border: var(--border);
    color: var(--text);
    font-size: 1.2rem;
    padding: .5rem 1rem;
    border-radius: .5rem;
    text-transform: lowercase;
  }

  .landroomscontect{
    padding: 2rem 3rem;
    
  }

  .landroomscontect h3{
    font-size: 1.8rem;
    color: var(--grey);
    font-weight: 500;
  }
  .landroomscontect p{
    font-size: 1.2rem;
    color: var(--grey);
    padding: .5rem 0;
    line-height: 1.5rem;
  }

  .landroomscontect .landrooms-stars{
    padding: .5rem 0;
  }

  .landroomscontect .landrooms-stars i{
    font-size: 1.2rem;
    color:rgb(252, 183, 95, 0.7);
  }



.landroomscontect .landrooms-btn{
    padding: .5rem 1.2rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--grey);
    border: 2px solid var(--grey);
    background: none;
    margin-top: 6vw ;
    cursor: pointer;
}

.landroomscontect .landrooms-btn:hover{
    background-color: var(--grey);
    color: var(--text);
    border: none;
}
  /* --------------book now pages ----------------- */
  /* book now form */
  .availability{
    margin-bottom: 8rem;
  }
  .availability form .flex{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 8rem .8rem 8rem ;
 }
 
 .availability form .flex .box{
    flex: 1 1 10rem;
 }
 
 .availability form .flex .box p{
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--grey);
 }
 
 .availability form .flex .box .input{
    width: 100%;
    padding: .5rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    background-color: transparent;
    color: var(--red);
    border: none;
    border-bottom: .1rem solid var(--grey);
    margin: .5rem 0;
 }
  .availability form .flex .box span{
    color:var(--red);
 }
 
 .availability form .flex .box input[type="date"]::-webkit-calendar-picker-indicator{
    filter: invert(1);
 }
 .booknowformbtn{
    width: 14rem;
    height: 2.5rem;
    background: transparent;
    border: .1rem solid var(--grey);
    margin: 0 8rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--grey);
    transition: .2s ease;
    cursor: pointer;
 }
 .booknowformbtn:hover{
    color: var(--yellow);
    background-color: var(--grey);
    border-radius: 35px;
    border: none;
 }


/* /* reservation form */
 .reservation-form{
    width: 100%;
    height: 100%;
    background-color: var(--text);
    padding: 3vw 20vw;
}

.reservation-form h1{
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--grey);
}
.reservation-form h1::after{
    content: "";
    width: 70px;
    height: 3px;
    background-color: var(--grey);
    display: block;
    margin: 1rem 0 2rem;
}
.reservation-text{
    display: flex;
    flex-direction: column;
    margin: 0 0 3rem ;
}
.reservation-text a{
    font-size: 1rem;
    font-weight: 400;
    color: var(--grey);
    transition: .2s ease; 
}
.reservation-text a:hover{
    color: var(--red);
}

.reservation-container{
    width: 100%;

}
.input-group{
    margin-bottom: 30px;
    position: relative;
}
.input-group input, textarea{
    width: 100%;
    padding: 10px 20px;
    outline: none;
    border: 2px solid var(--grey);
    color: #514E4D;
    background: transparent;
    font-size: 15px;
    resize: none;
}
.input-group label{
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px 20px;
    color: #514E4D;
    cursor: text;
    transition: .3s ease;
}
.reservation-form button{
    padding: 15px 60px;
    color: var(--grey);
    outline: none;
    background: transparent;
    border: 2px solid var(--grey);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
}
.reservation-form button:hover{
    background-color: var(--grey);
    color: var(--text);
}
.input-group input:focus ~ label,
.input-group input:valid ~ label,
.input-group textarea:focus~label,
.input-group textarea:valid~label{
    top: -35px;
    font-size: 1rem;
    font-weight: 500;
}
.reservetaion-date{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.reservetaion-date .input-group{
   flex-basis: 48%;
}

.input-group #room-option{
    width: 100%;
    padding: 10px 20px;
    outline: none;
    border: 2px solid var(--grey);
    color: #514E4D;
    background: transparent;
    font-size: 15px;
    resize: none;

}
.input-group #room-option option{
    font-size: 1rem;
    font-weight: 500;
    color: var(--grey);
    background-color: var(--text);
}
.input-group #room-option .roomtype{
    font-size: 1rem;
    font-weight: 600;
    color: var(--red);
}

@media (max-width:992px) {
    .reservation-form{
        padding: 3vh 8vh;
    }
}
@media (max-width:768px) {
    .reservation-form{
        padding: 3vh 4vh;
    }
    .reservation-form button{
        padding: 10px 40px;
    }
    
    .reservetaion-date{
        display: block;
    }
    
} 

 /* ---------------------Offer page  ------------------- */

 .offer-body{
    width: 100%;
    background-color: var(--red);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3vw 8vw;
    
 }
 .offers-main{
    display: flex;
    flex-direction: row;
    margin-bottom: 2vw;  
    background-color: var(--text);
 }
.frist-offer {
    width: 100%;
    padding: 3vw;
    
}
.frist-offerimg{
    width: 100%;
    object-fit: cover;
    position: relative;
    overflow: hidden;
}
.frist-offer h2{
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--grey);

    
}
.frist-offer h2::after{
    content: "";
     width: 4rem;
     height: .2rem;
     background-color: var(--grey);
     display: block;
     margin-top: 1vw;
}
.frist-offer .offer-pfrist{
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    padding: 1vw 0;
}
.frist-offer .offer-psecond{
    font-size: 1rem;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.3rem;
}

.frist-offer button{
    padding: .8rem 1.6rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--grey);
    border: 2px solid var(--grey);
    background: none;
    margin-top: 6vw ;
    cursor: pointer;
}

.frist-offer button:hover{
    background-color: var(--grey);
    color: var(--text);
  
}


 .offer-spanimg{
    width: 50%;
    position: absolute;
    background-color: var(--text);
    color: var(--grey);
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1rem 0;
    text-transform: lowercase;
    bottom: 2rem;
    text-align: center;
    right: 25%;
    border: none;
    border-radius: 5px;
    
}


.frist-offerimg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    background-size: cover;
    
}


.offer-body2{
    width: 100%;
    height: 90vh;
    background-color: var(--grey);
    display: flex;
    justify-content: center;
}
.offer-body3{
    width: 100%;
    height: 90vh;
    background-color: var(--yellow);
    display: flex;
    justify-content: center;
}

.review-feed{
    width: 100%;
    text-align: center;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}
 
@media (max-width:992px) {
    .offer-body{
        padding: 3vh;
    }
    .offers-main{
        flex-direction: column-reverse;
        margin-bottom: 3vh;
    }
    .frist-offer{
        padding: 2vh 4vh 3vh;
    }
    
   
}
@media (max-width:768px) {
    .offer-body{
        padding: 3vh;
    }
    .offers-main{
        flex-direction: column-reverse;
        margin-bottom: 3vh;
    }
    .frist-offer{
        padding: 2vh 4vh 3vh;
    }
    
   
}

/* feedback coustomer section */
.feedbody{
    width: 100%;
    margin: 3vw 0;
    padding: 0 20vw;
    
}
.feedbody .feed-waper{
    background-color: var(--text);
    padding: 2vw;
}
.feed-waper .feed-header-body{
    font-size: 18px;
    font-weight: 600;
    color:var(--grey);
    margin: 0 0 .5rem ;
}
.feed-waper p{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    
}
.feedbody .name-date{
    padding: 1vw 2vw;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.feedbody .name-date h1{
    font-size: 16px;
    font-weight: 500;
}
.feedbody .name-date p{
    font-size: 14px;
    font-weight: 400;
}
.feedbody .name-date h2{
    font-size: 15px;
    font-weight: 500;
    opacity: .5;
}

.more-feedback-btn-feedpage{
    padding: 2vw 20vw;
    display: flex;
    justify-content: center;
}
.more-feedback-btn-feedpage button{
    padding: 1.2rem 8rem;
    font-size: 1.2rem;
    font-weight: 600;
    border: 2px solid var(--grey);
    background-color: transparent;
    transition: .3s ease;
}
.more-feedback-btn-feedpage button:hover{
    background-color: var(--grey);
    color: var(--white);
}
/* Feedback */
#feedback-body{
    display: grid;
    height: 100vh;
    place-items: center;
    text-align: center;
    background-color: var(--red);
}
.feedback-container{
   width: 80%;
   height: 70%;
   background: var(--text);
   padding: 20px 30px;
   border: 1px solid #444;
   border-radius: 5px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;

}




 
 .feedback-container .alist{
     display: flex;
     flex-direction: column;
     margin-top: 30px;
 }
 .feedback-container .alist a{
     color: var(--grey);
 
 }
 .feedback-container .alist a:hover{
     color: var(--red);
 }
 .feedback-container h1{
     text-align: center;
     font-size: 30px;
     font-weight: 550;
     color: var(--grey);
    padding: 2px 22px;
    border-bottom: 2px solid #F0653F;
  
     
     
 }
 .feedback-container p{
     color: var(--grey);
 }
@media (max-width:992px) {
    .feedbody{
        padding: 2vh 4vh;
    }
}
@media (max-width:768px) {
    .feedbody{
        padding: 2vh 4vh;
    }
}
.feed-waper i{
    color: var(--yellow);
    font-size: 20px;
}

/* customers */
.Customer{
    text-align: center;
    
     
     
 }
 
 .Customer .alist{
     display: flex;
     flex-direction: column;
     margin-top: 30px;
 }
 .Customer .alist a{
     color: var(--grey);
 
 }
 .Customer .alist a:hover{
     color: var(--red);
 }
 .Customer h1{
     text-align: center;
     font-size: 30px;
     font-weight: 550;
     margin-top: 100px;
     
     
 }
 .Customer p{
     color: var(--grey);
 }
 .Customer h1::after{
     content: "";
     width: 100px;
     height: 2.5px;
     background-color: var(--red);
     display: block;
    
     margin: 1vw 50%;
 }
 
 
 .customers{
     margin-top: 40px;
     padding: 40px 0;
     background: linear-gradient(rgba(49, 36, 16, 0.7),rgba(49, 36, 16, 0.7)), url("images/room9.jpg") center/cover no-repeat fixed;
 }
 .customer{
     background-color: rgba(49, 36, 16, 0.7);
     padding: 1rem ;
     text-align: center;
     margin: 1rem 2rem;
     border: .1rem solid #FCB75F;
     box-shadow: 0px 0px 5px rgba(49, 36, 16, 0.7),rgba(49, 36, 16, 0.7);
     cursor: pointer;
     transition: 0.3s ease;
 }
 .customer-rating{
     margin: 10px 0;
     color: var(--red);
     
 }
 .customer h3{
     font-size: 25px;
     color: var(--yellow);
 }
 .customer p{
     opacity: 10;
     line-height: 1.8;
     width: 60%;
     margin: 0 auto;
     color: var(--text);
 }
 
 .customer span{
     font-weight: 700;
     opacity: 0.7;
     color: var(--yellow);
 }
 .customer:hover{
     transform: translateY(-18px);
 }
 @media(min-width: 992px){
     .customers-container{
         display: grid;
         grid-template-columns: repeat(2, 1fr);
         grid-gap: 30px;
     }
 }
 @media(min-width: 1370px){
     .customers-container{
         display: grid;
         grid-template-columns: repeat(3, 1fr);
     }
 }
 @media(max-width: 500px){
     .customer p{
         width: 100%;
     }
     .customer img{
         width: 100px;
         height: 100px;
     }
 }
 
 
 
  /*auto slider review page  */
  .reviews{
     padding-top: 0;
     background:var(--text);
   
  }
  
  .reviews .box{
     text-align: center;
     user-select: none;
     padding: 2rem;
     margin-bottom: 4rem;
     display: flex;
     flex-direction: column;
     align-items: center;
  }
  
  .reviews .box img{
     height: 7rem;
     width: 7rem;
     border-radius: 50%;
     object-fit: cover; 
  }
  
  
  .reviews .box h3{
     margin: 1.5rem 0;
     font-size: 1.5rem;
     color: var(--grey);
  }
  
  .reviews .box p{
     line-height: 2;
     font-size: 1.2rem;
     color: var(--grey);
  }
  .swiper-slide i{
    font-size: 2rem;
    color: var(--grey);
    margin-bottom: 2rem;
  }
  

.feedback-review{
    width: 100%;
    min-height: 100vh;
    background-color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;

}       
.container{
    position: relative;
    width: 100%;
    min-height: 450px;
    background-color: var(--text);
    padding: 2vw 0;
}
.container .contents-wraper{
    width: 70%;
    min-height: inherit;
    margin: 30px auto;
    text-align: center;
}
.feedback-review .container h2{
    position: relative;
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 1px;
}
.feedback-review .container h2::before{
    content: '';
    width: 200px;
    height: 2px;
    background-color: var(--dark);
    border-radius: 15px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
   
}
.contents-wraper .testRow{
    width: 100%;
    min-height: inherit;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.testRow .testItem{
    width: 100%;
    position: absolute;
    display: flex;
    margin-top: 40px;
    flex-direction: column;
}
.testRow .testItem:not(.active){
    top: 0;
    left: -100%;
}
.testRow .testItem i{
    font-size: 2rem;
    color: var(--grey);
    margin-bottom: 2rem;
    
    
    
}
.testRow .testItem h3{
    font-size: 30px;
    font-style: italic;
    padding: 7px;
    color: var(--grey);
}
.testRow .testItem h4{
    font-style: italic;
    color: var(--red);
}
.testRow .testItem p{
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.2;
    padding: 10px;
}
.contents-wraper .indicators{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    cursor: pointer;
}
.contents-wraper .indicators .dot{
    width: 15px;
    height: 15px;
    margin: 0 3px;
    border: 2px solid #514E4D;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.5s ease;
}
.contents-wraper .indicators .active{
    background-color:var(--grey);
}


@keyframes next1{
    from{
        top: 0%;
    }
    to{
        left: -100%;
    }
}
@keyframes next2{
    from{
        left: 100%;
    }
    to{
        left: 0%;
    }
}

@keyframes prev1{
    from{
        left: 0%;
    }
    to{
        left: 100%;
    }
}
@keyframes prev2{
    from{
        left: -100%;
    }
    to{
        left: 0%;
    }
}

@media(max-width: 550px){
    .container .contents-wraper{
        width: 90%;
    }
    .contents-wraper .header h1{
        font-size: 32px;
    }
    .testRow .testItem h3{
        font-size: 26px;
    }
    .testRow .testItem p{
        font-size: 16px;
        letter-spacing: initial;
        line-height: initial;
    }
    .contents-wraper .indicators .dot{
        margin: 0 0;
    }
}

/* ----------------location page------------------- */
.location-body{
    width: 100%;
   
}
.location-body .location-bodytext{
   padding: 3vw 20vw;
}
.location-body .location-bodytext h1{
   font-size: 40px;
   font-weight: 400;
   
}
.location-body .location-bodytext h1::after{
   content: "";
   width: 60px;
   height: 3px;
   background-color: var(--grey);
   display: block;
   margin: 2vw 0;
   margin-top: .7vw;
}
.location-body .location-bodytext h2 {
    font-size: 25px;
    font-weight: 400;
    color: var(--red);
    
 }
.location-body .location-bodytext .distance-header {
    font-size: 25px;
    font-weight: 400;
    color: var(--grey);
    margin-top: 2vw;
    
 }
.location-body .location-bodytext p{
    font-size: 15px;
    font-weight: 400;
    margin: 1vw 0;
 }
.location-body .location-bodytext .distance{
    font-size: 15px;
    font-weight: 400;
    margin: 1vw 1vw;
 }
.location-body .location-bodytext .Arrival{
    font-size: 25px;
    font-weight: 400;
    margin-top: 2vw ;
    
 }
 @media (max-width:992px) {
    .location-body .location-bodytext{
        padding: 2vh 4vh;
    }
   .location-body .location-bodytext .distance-header{
        margin-top: 2rem;
    }
 }
 @media (max-width:768px) {
    .location-body .location-bodytext{
        padding: 2vh 4vh;
    }
   .location-body .location-bodytext .distance-header{
        margin-top: 2rem;
    }
 }
/*-------------- faq body page----------------------- */
.faq-body{
    width: 100%;
    padding: 2vw 23vw;
}


 .faq-body .faq .title{
    margin: 3vw 0 1.2vw 0;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--red);
    text-transform: capitalize;
    text-align: left;
 }
 
 .faq-body .faq .box{
    border-radius: 1px;
    background-color: var(--text);
    border: none;
    margin-top: .5rem;
    transition: .5s ease;
 }
 .faq-body .faq .box:hover {
    background-color: var(--yellow);
 }

 .faq-body .faq .box h3{
    color: #000;
    padding: .5rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 400;
    border-radius: .5rem;
    cursor: pointer;
 }
 
 .faq-body .faq .box p{
    padding:1rem 2rem;
    line-height: 1;
    font-size: 1.2rem;
    color:var(--grey);
    opacity: 0.7;
    display: none;
 }
 
 
 .faq-body .faq .box.active p{
    display: inline-block;
 }

 @media (max-width:992px) {
    .faq-body{
        padding: 2vh 4vh;
    }
    .faq-body .faq .title{
        margin-top: 4vh;
    }
 }
 @media (max-width:768px) {
    .faq-body{
        padding: 2vh 4vh;
    }
    .faq-body .faq .title{
        margin-top: 4vh;
    }
 }

 /* --------------------service page ----------------- */

.service-body{
    width: 100%;
}
.service-body .service-text{
    padding: 3vw 22vw;
}
.service-body .service-text h1{
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--grey);
}
.service-body .service-text h1::after{
    content: "";
   width: 60px;
   height: 3px;
   background-color: var(--red);
   display: block;
   margin: 2vw 0;
   margin-top: .7vw;
}
.service-body .service-text p{
    font-size: 1rem;
    font-weight: 400;
    color: var(--grey);
}
@media (max-width:992px) {
    .service-body .service-text{
        padding: 2vh 4vh;
    }
 }
 @media (max-width:768px) {
    .service-body .service-text{
        padding: 2vh 4vh;
    }
 }
/* ----------------Benefit for guest----------------- */
.header-benefit{
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--red);
    font-style: italic;
    line-height: 1.8rem;
    margin: 0 0 4vw 0;
}
/* --------------News page css--------------- */
.news-body{
    width: 100%;
    height: 100%;
    background-color: var(--red);
    padding: 3vw 10vw;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    
}
.news-waper{
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.news-waper img{
    width: 100% ;
    height: 100%;
    transition: .3s ease;
}
.news-waper img:hover{
    transform: scale(1.1);
}
.newstext-body{
    width: 100%;
    height: 100%;
    background-color: var(--text);
    padding:1vw 2vw ;
    position: relative;
}
.newstext-body h1{
   font-size: 1.5rem;
   font-weight: 400;
   
}
.newstext-body h1::after{
    content: "";
    width: 60px;
    height: 3px;
    background-color: var(--grey);
    display: block;
    margin: 1rem 0;
}
.newstext-body p{
   font-size: 1rem;
   font-weight: 400;
   color: var(--grey);
}
.newstext-body button{
   font-size: 1.2rem;
   font-weight: 600;
   padding: 1rem 2rem;
   border: 2px solid #514E4D;
   background: transparent;
   margin:2rem 0 .5rem 0 ;
   transition: .3s ease;
}
.newstext-body button:hover{
    background-color: var(--grey);
    color: var(--text);
}
@media (max-width:768px) {
    .news-body{
        flex-direction: column;
        padding: 3vh 4vh;
    }
}
@media (max-width:992px) {
    .news-body{
        grid-template-columns: repeat(3 1fr);
        padding: 3vh 4vh;
    }
}
@media (max-width:1370px) {
    .news-body{
        grid-template-columns: repeat(3 1fr);
        padding: 3vh 4vh;
    }
}

/* -------------room  page button--------------- */
.rms-booknow{
    padding: .8vw 2.5vw;
    color: var(--grey);
    background-color: transparent;
    border: 2px solid var(--grey);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
}
.rms-booknow:hover{
    background-color: var(--grey);
    color: var(--white);
}
.rate span{
    color: #F0653F;
}
@media (max-width:768px) {
    .rms-booknow{
        padding: 1.5vh 2vh;
    }
    .room-text{
        padding: 1vh 2vh 4vh;
    }
    .room-text p{
        font-size: .9rem;
    }
}
.red-container{
    width: 100%;
    height: 100px;
    background-color: var(--grey);

}
.grey-container{
    width: 60px;
    height: 60px;
    background-color: rgb(31, 28, 28);
    transform: translate(50%, 110%);
}
.ab-container{
    width: 100%;
    height: 100vh;
    background-color: var(--text);
}

.main-expodarj{
    width: 100%;
    height: 100%;
    background-color:var(--white) ;
}

.expo-imagecontainer{
    width: 100%;
    padding: 2vw 8vw ;
    margin: 0 auto;
    /* background-color: var(--text); */
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    
 }
 /* stretch vertically */
 .v-stretch{
    grid-row: span 2;
 }
 /* stretch horizontal */
 .h-stretch{
    grid-column: span 2;
 }
 /* stretch vertically & horizontally */
 .big-stretch{
    grid-row: span 2;
    grid-column: span 2;
 }
 .expo-imagecontainer div img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
 }
 .expo-textcontaiiner{
    padding: 2vw 8vw;
}
.expo-textcontaiiner h1{
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--grey);
    padding: 1vw 0;
}
.expo-textcontaiiner h3{
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--grey);
    padding: 1vw 0 0;
}
.expo-textcontaiiner h3::after{
    content: '';
    width: 60px;
    height: 2px;
    background-color: var(--red);
    display: block;
    margin: .8rem 0;
    border: none;
}

.expo-textcontaiiner p{
    color: var(--grey);
    width: 90%;
 
 }

 @media (max-width:768px) {
    .expo-imagecontainer{
        padding: 2vh ;
        
        display: grid;
        gap: 5px;
        grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
        grid-auto-rows: 180px;
        grid-auto-flow: dense;
        
     }
     /* stretch vertically */
     .v-stretch{
        grid-row: span 1;
     }
     /* stretch horizontal */
     .h-stretch{
        grid-column: span 2;
     }
     /* stretch vertically & horizontally */
     .big-stretch{
        grid-row: span 1;
        grid-column: span 2;
     }
     .expo-imagecontainer div img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .3s ease;
     }
     .expo-textcontaiiner{
        padding: 2vh;
    }
    .expo-textcontaiiner h1{
        font-size: 1.4rem;
        font-weight: 300;
        color: var(--grey);
        padding: 1vh 0;
    }
    .expo-textcontaiiner h3{
        font-size: 1.4rem;
        font-weight: 300;
        color: var(--grey);
        padding: 1vh 0 0;
    }
    
    .expo-textcontaiiner p{
        color: var(--grey);
        width: 100%;
        font-size: 1rem;
     }

 }

 .landingpagerooms h1{
    font-size: 2rem;
    font-weight: 500;
    color: var(--grey);
 }
 .landingpagerooms p{
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--grey);
 }
 .download-menu-btn{
    width: 100%;
    background: var(--red);
    display: flex;
    justify-content: center;
    padding: 2vw ;
 }
 .download-menu-btn a{
    padding: .8vw 1vw ;
    color:var(--text);
    border: 2px solid var(--text);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: .4s ease;
 }
 .download-menu-btn a:hover{
    background-color: var(--text);
    color: var(--grey);
 }

.ffrom-head{
    border: 1px solid var(--text);
    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    margin: 20px 0 40px;
}
.ffrom-head h2{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
}
 
 