@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

:root{
    --primary:#D4AF37;
    --secondary:#172340;
    --black:#333;
    --white:#fff;
    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
}

*{
    font-family: 'Poppins', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none;

    transition: .2s linear;
}
a:link {
    text-decoration: none;
  }

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: .8rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

html::-webkit-scrollbar-thumb{
    background: var(--primary);
    border-radius: .5rem;
}

p{ 
    font-size:15px;
}
section{
    padding: 5rem 7%;
}

.heading{
    font-size: 4rem;
    color: var(--primary);
    text-align: center;
    text-transform: uppercase;
    font-weight: bolder;
    margin-bottom: 3rem;
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 3rem;
    background: #D4AF37;
    border-radius: .5rem;
    border-color: #D4AF37;
    color: var(--white);
    font-size: 1.7rem;
    cursor: pointer;
}

.btn:hover{
    background-color: white;
    color: black;
    border-color: #172340;
}



.header{
    position:fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background:  #383737b4;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 9%;
}

.header .logo{
    font-size: 2.5rem;
    font-weight: bolder;
    color: var(--black);
}

.header .logo i{
    color: var(--primary);
    padding-right: .5rem;
}

.header .navbar a{
    font-size: 1.7rem;
    color: var(--white);
    margin: 0 2rem;
}

.header .navbar a:hover{
    color: var(--primary);
    scale: 1.2;
}

.header .navbar .btn{
    margin-top: 0;
    color: var(--white);
}

.header .navbar .btn:hover{
    color: black;

}
.navbar a.active{
    border-bottom: 2px solid var(--primary);
  }
#menu-btn{
    display: none;
    font-size: 2.5rem;
    margin-left: 1.7rem;
    cursor: pointer;
    color: #D4AF37;
}

#menu-btn:hover{
    color: var(--primary);
}
.home{
    padding: 0;
    
}

.home .slide{
    min-height: 40vh;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.4);
}

.home .slide .content{
    width: 80rem;
    text-align: center;
    justify-content: center;
}

.home1{
    padding: 0;
}

.home1 .slide{
    min-height: 35vh;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.2);
}

.home1 .slide .content{
    width: 80rem;
    text-align: center;
}
.home .slide .content.main-title h3 {
    font-family: "Roboto Slob", serif;
    font-weight: 700;
    font-size: 5rem;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
    padding: 2rem 0;
}
.home .slide .content.main-title h4 {
    font-family: "Roboto Slob", serif;
    font-weight:300;
    font-size: 2rem;
    text-transform:capitalize;
    color: var(--white);
  
}
.home .slide .content h3 {
  
    font-size: 4rem;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
    padding: 2rem 0;
}

.swiper-button-next,
.swiper-button-prev{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    background: transparent;
    color: var(--white);
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    background: var(--primary);
    color: var(--white);
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size: 2rem;
}
.heading {
    text-align: center;
    color: #454343;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    margin-bottom: 70px;
    text-transform: uppercase;
    z-index: 999;
}
.white-heading{
    color: #ffffff;
}
.heading:after {
    content: ' ';
    position: absolute;
    top: 100%;
    left: 50%;
    height: 40px;
    width: 180px;
    border-radius: 4px;
    transform: translateX(-50%);
    background: url(img/heading-line.png);
    background-repeat: no-repeat;
    background-position: center;
}
.white-heading:after {
    background: url(https://i.ibb.co/d7tSD1R/heading-line-white.png);
    background-repeat: no-repeat;
    background-position: center;
}


/*about section*/
.about-section{
    background-color: whitesmoke;
    height: 650px;
}

.about-heading{
    font-family: "Lora", serif;
    font-size: 40px;
    color: black;
    text-transform: uppercase;
    text-align: center;
    justify-content: center;
    display: flex;
}

.lead{
    font-family: "Lora", serif;
    font-size: 15px;
   
    text-align: center;
    justify-content: center;
    display: flex;
}
 .buton {
    display: flex;
    justify-content: center;
    background-color: #555;
    color: white;
    font-size: 16px;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    width: 140px;
  }
  
 .buton:hover {
    background-color: black;
  }
/*rooms section*/

.rooms-section{
    background-color: #1B2E3C;
    padding-top: 100px;
    padding-bottom: 150px;
}

.rooms-heading{
    font-family: "Lora", serif;
font-size: 5rem;
text-transform: uppercase;
color: var(--white);
line-height: 1.1;
padding: 2rem 0;
text-align: left;

}

.room-btn-box{
    display: flex;
    justify-content: end;
}

.card-title{
    font-family: "Lora", serif;
    font-size: medium;
}
.card-text{
    font-family: "Lora", serif;
    font-size: small;
    text-align: left;
}

/*facilities*/

#home-banner{
    display: flex;
    justify-content: center;
    align-items:center;
    background: url('../photos/photo4whiten.png')  ;
    
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    height: 800px;
    z-index: 1;
  }

  

  @media only screen and (max-device-width: 480px) {
  #home-banner{
    height:1300px;
  } 
   /* styles for mobile browsers smaller than 480px; (iPhone) */
   .facility-box{
    padding-bottom: 20px;
    padding-top: 20px;

   }
 }

 .center {
    
    font-family: 'Times New Roman', Times, serif;
    color:black;
    font-size: 100px;
    
    margin-bottom: 160px!important;
    position: relative;
  }




.features{
padding: 80px 0;
padding-bottom: 200px;
}

  
  .facility-box{
    border-right:  1px solid rgb(150, 148, 148);
    border-right-style:double;
    padding-top: 40px;
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: medium;
  }

  /*.facility-box:hover{
    scale: 1.05;
    border-style: groove;
    background-color: #4d647e;
    transition-duration: 0.3s;
  }
*/
.facility-header{
    font-family:  "Lora", serif;
    font-size: 40px;
    color: var(--secondary);
    text-align: center;
}



/*gallery section*/

.gallery-section{
    background-color: #1B2E3C;
    padding-top: 150px;
    padding-bottom: 150px;
}


@media (max-width:991px){

    html{
        font-size: 55%;
    }

    .header{
        padding: 2rem 3rem;
    }

}

/*testimonials section*/
.testimonial-box-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;

}

.testimonial-box{
    width: 650px;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 20px;
    margin: 15px;
    cursor: pointer;
    height: 400px;
}

.profile-img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.profile-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.name-user{
    display: flex;
    flex-direction: column;
}
.name-user strong{
    color: #3d3d3d;
    font-size: 2rem;
    letter-spacing: 0.5px;
}

.name-user span{
    color:#979797;
    font-size: 1rem;
}

.reviews{
    color:#FFD700
}

.box-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.Client-comment{
    font-size: 15px!important;
    color: #4b4b4b;
}

.testimonial-box:hover{
    transform: translateY(-10px);
    transition: all ease 0.3s;
}

.testimonial-heading span{
    font-family: "Lora", serif;
    font-size: 60px;
    text-align: center;
    justify-content: center;
    display: flex;
    padding-bottom: 0;
}
.testimonial-heading h1 {
    font-family: "Lora", serif;
    font-size: 30px;
    text-align: center;
    justify-content: center;
    display: flex;
}
.testimonial-img{
    justify-content: center;
    text-align: center;
    display: flex;
    height: 80px;
    
}

/*footer*/
footer{
    margin-top: 100px;
    background-color:#172340;
    font-family: "Roboto", serif;
    color: #f7f7f7;
  }
.text-center{
    color: #f7f7f7;
}


  /*Aboutus.html*/

  #aboutus-section{
    background-color: #ffffff;
  padding-top: 0px;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
  }
#aboutus-section.container{
    padding-top: 20px;
    padding-bottom: 20px;
}

.home1{
    height: 700px;
}
.swiper{
    height: 600px;
}
div.content h3{
    color: #f7f7f7;
    font-size: 50px;
    font-family: "Lora", serif;
}
#facilities{
    background-color:#1B2E3C;
    height: 900px;

}
.quote-box{
    height: 700px;
    margin-bottom: 100px;
    padding-top: 70px;
    padding-bottom: 50px;
    margin-top: 100px;
}
.quote-background{
	background: url(../photos/Photo\(59\).jpg) no-repeat;
	background-size: cover;
	padding: 100px 0;
	background-attachment: fixed;
	background-position: center center;
	position: relative;
}
 p.lead{
    font-size: 50px;
    font-weight: 300;
  padding-bottom: 50px;
    color: #fff;
	font-family: 'Lora', serif;
	margin-bottom: 20px;
    text-align: center;
    justify-content: center;
    display: flex;
}

.quote-background span {
    color: #fff;
    font-size: 20px;  
	font-weight: 500;	
}

#home-banner1{
    display: flex;
    justify-content: center;
    align-items:center;
     margin-top: 0px;
    
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    height: 600px;
    z-index: 1;
  }

  /*gallery.html*/
  .gallery-box{
	padding: 70px 0px;
}
.all-gallery{
	margin-top: 30px;
}
.all-gallery .image-box img {
    width: 100%;
    margin-bottom: 30px;
    transition: 0.2s ease-in-out;
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}
.all-gallery .image-box img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

/*Rooms.html*/


section.section1{

    padding-bottom: 100px;
    margin-bottom: 0px;
 
  }

  h2.featurette-heading  {
    font-size: 50px;
    text-transform: capitalize;
    font-family:"Roboto Serif", serif;
    letter-spacing: -3px;
    transition: 700ms ease;
    font-variation-settings: "wght" 311;
    margin-bottom: 2em;
    color: rgb(236, 236, 226);
    outline: none;
    text-align: left;
   margin-top: 0px;
  }
  
  h2:hover {
    font-variation-settings: "wght" 582; 
    letter-spacing: 1px;
  }

  .marketing div.col-lg-4:hover{
    transform: translateY(-10px);
    transition: all ease 0.3s;
}
  @media (max-width="380px"){
    section h2 p{
    font-size: 10px;
   
      
    }
  }
  
.card-title{
    font-family: "Lora", serif;
    font-size: 30px;
}
.card-text{
    font-family: "Lora", serif;
    font-size: 15px;
}
/*Contact.html*/
.contact-info-box{
	background: whitesmoke;
	
    padding-top: 10px;
    padding-bottom: 60px;
    justify-content: center;
    text-align: center;
    display: flex;
    height: 200px;
    margin-bottom: 50px;
    margin-top: 50px;
}

.overflow-hidden {
    overflow: hidden;
}

.contact-info-box i{
	display: block;
	float: left;
	width: 60px;
	height: 60px;
    margin-top: 50px;
	line-height: 60px;
	text-align: center;
	background: #fff;
	color: #d0a772;
	font-size: 30px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	margin-right: 20px;
}
.contact-info-box h4 {
    margin: 0px;
    margin-top: 50px;
	color: black;
	font-size: 20px;
	padding: 0px;
	font-weight: 500;
	line-height: 24px;
}
.contact-info-box p {
    margin: 0px;
	color: black;
	font-weight: 300;
    font-size: 20px;
    font-family: "Lora", serif;
}


  @media only screen and (max-device-width: 480px) {
  #home-banner1{
    height:800px;
  } 
   /* styles for mobile browsers smaller than 480px; (iPhone) */
   .facility-box{
    padding-bottom: 20px;
    padding-top: 20px;

   }
   .quote-box{
    height: 1400px;
    padding-top: 10px;
    padding-bottom: 10px;
   }
.contact-info-box{
    height: 400px;
    padding-bottom: 100px;
}
   .quote-box .rooms-heading{
    padding-top: 0px;
   }
 }


/*media queries*/
@media (max-width:991px){

    html{
        font-size: 55%;
    }

    .header{
        padding: 2rem 3rem;
    }
.testimonial-box{
    width: 45%;
    padding: 10px;
}
}
@media (max-width: 820px){

    #menu-btn{
        display: inline-block;
    }

    .header .navbar{
        position: absolute;
        top: 110%; right: -110%;
        width: 20rem;
        box-shadow: var(--box-shadow);
        background: var(--secondary);
        border-radius: .5rem;
    }

    .header .navbar.active{
        right: 2rem;
        transition: .4s linear;
    }

    .header .navbar a{
        font-size: 2rem;
        margin: 2rem 2.5rem;
        display: block;
    }

    .home .slide .content{
        width: 50rem;
    }
    .testimonial-box{
        width: 100%;
    }

}
@media (max-width: 450px){

    html{
        font-size: 50%;
    }

    .home .slide .content{
        width: 30rem;
    }

    .home .slide .content h3{
        font-size: 3rem;
    }
.box-top{
    flex-wrap: wrap;
    margin-bottom: 10px;
   
}
.reviews{
    margin-top: 10px;
}
p.lead{
    margin: 0px;
    padding-bottom: 100px;
}
}