html, body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden !important;
    background-color: #ffffff;
    font-family: 'Della Respira', serif;
    font-family: 'Raleway', sans-serif;
    font-family: 'Italiana', sans-serif;
    font-family: 'Roboto', sans-serif;
    font-family: 'Marcellus', serif;
    font-family: 'Marcellus SC', serif;
    font-family: 'Work Sans', sans-serif;
    font-family: 'Lato', sans-serif;
    font-family: 'Lora', serif;
    font-family: 'Cormorant Garamond', serif;
    font-family: 'Literata', serif;
    color: rgb(0, 0, 0);
  
  }
  
  ::selection {
    color: #ffffff;
    background: #74685E;
  }
  
  .background-container {
  
    animation: zoom 10s ease-in-out forwards;
  }
  
  @keyframes zoom {
    0% {
      transform: scale(1);
    }
  
    100% {
      transform: scale(1.1);
    }
  }
  button {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 17px;
    padding: 1em 2.7em;
    font-weight: 500;
    background: #B8A680;
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    border-radius: 0.6em;
  }
  
  .gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 0.6em;
    margin-top: -0.25em;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
  }
  
  .label {
    position: relative;
    top: -1px;
  }
  
  .transition {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    transition-duration: 500ms;
    background-color: #5A7B24;
    border-radius: 9999px;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  button:hover .transition {
    width: 14em;
    height: 14em;
  }
  
  button:active {
    transform: scale(0.97);
  }
  nav.navbar {
    background-color: #F6F6F6;
  
    backdrop-filter: blur(0px) !important;
    transition: background .5s !important;
  
    font-family: 'Literata', serif;
    text-transform: uppercase;
  font-weight: 500;
    z-index: 1000;
    width: 100%;
    height: 100px;
    position: relative;
  text-align: center !important;
  
  }
  
  li.nav-item a.nav-link {
    color: rgb(0, 0, 0) !important;
    font-size: 15px !important;

  
  
  }
  
  .nav-item {
    margin-top: 25px;
    margin-bottom: 20px;
    text-align: center;
  
  }
  
  a.nav-link:hover {
    transform: scale(1.07);
  
  }
  
  .navbar li a.active {
    color: #B8A680 !important;
    transform: scale(1.05);
    border-bottom: 1px #B8A680 solid !important;
    background-color: transparent;
  
  }
  
  
  .dropdown-menu {
    background-color: rgb(0, 0, 0) !important;
    color: #ffffff;
    backdrop-filter: blur(0px) !important;
    transition: background .5s !important;
    border: 1px solid #AE9555;
    font-family: 'Cormorant Garamond', serif;
  
    font-weight: 400;
    z-index: 100;
    width: 100%;
    text-align: center;
    padding: 10px;
  }
  
  .dropdown-menu .dropdown-item {
    color: rgb(255, 255, 255);
    text-align: left;
  }
  
  .dropdown-menu .dropdown-item:hover {
    background-color: #000000;
    border: 1px solid #AE9555;
    transform: scale(1.02);
    color: rgb(255, 255, 255);
  }



  *, html{
    scroll-behavior: smooth;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:root{
    --white:#FFF;
    --black:#232323;
    --lite:rgba(255, 255, 255, 0.774);
    --gray:rgba(1,1,1,0.6);
    --dark:#3c3d3c;
    --primary:linear-gradient(145deg,#679913,#7dad2a);
    --primary_dark:#970104;
    --primary_lite:#c24a4e;
    --secondary:#000a17;
    --default_font:'Ysabeau Infant', sans-serif;
    --title_font:'Outfit', sans-serif;
}

::-webkit-scrollbar {
    height: 12px;
    width: 8px;
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: gray;
    -webkit-box-shadow: 0px 1px 2px var(--dark);
}

::-webkit-scrollbar-corner {
    background: var(--dark);
}



/***************************
            DEFAULT
****************************/
body{
    margin:0;
    overflow-x:hidden !important;
    font-family: var(--default_font);
}

a{
    text-decoration:none !important;
    min-width: fit-content;
    width: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
}

a, button{
    transition:0.5s;
}

em{
    font-style:normal;
    color:var(--primary_lite);
}

a, p, .btn{
    font-size:20px;
}

p{
    line-height:1.9em;
    color:var(--lite);
}

a, button, input, textarea, select{
    outline:none !important;
}

fieldset{
    border:0;
}

h1, h2, h3, h4, h5, h6{
    margin:0;
}

.title, .sub_title{
    font-family:var(--title_font);
    font-weight:400;
    margin:0;
}

.flex, .fixed_flex{
    display:flex;
}

.flex_content{
    width:100%;
    position:relative;
}

.padding_1x{
    padding:1rem;
}

.padding_2x{
    padding:2rem;
}

.padding_3x{
    padding:3rem;
}

.padding_4x{
    padding:4rem;
}

.big{
    font-size:3.5em;
}

.medium{
    font-size:2em;
}

.small{
    font-size:1.3em;
}

.btn{
    padding:1rem;
    border-radius:5px;
    color:var(--white);
    position:relative;
    border:0;
    text-align:center;
    
}

.btn_3{
    display:block;
    background-color:0;
    color:var(--white);
    position:relative;
    font-family:var(--default_font);
    font-weight:400;
    text-transform:uppercase;
}

.btn_3:before{
    content:"";
    border-radius:50%;
    background-color:rgba(255,255,255,0.2);
    position:absolute;
    left:0;
    top:50%;
    width:40px;
    height:40px;
    transition:0.5s;
    transform:translate(0%, -50%);
}

.btn_3:after{
    content:"\f178";
    font-family:"FontAwesome";
    margin-left:5px;
}

.btn_3:hover:before{
    border-radius:40px;
    width:100%;
}

@media (max-width:920px){
    nav.navbar{
        height: auto;
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .flex{
        flex-wrap:wrap;
    }
    
    .padding_1x, .padding_2x, .padding_3x, .padding_4x{
        padding:1rem;
    }
    
    .big{
        font-size:1.8em;
    }
    
    .medium{
        font-size:1.3em;
    }
    
    .small{
        font-size:1.1em;
    }
    
    .btn{
        padding:0.5rem 1rem;
    }
    
    a, p, .btn{
        font-size:12px;
    }
}

.slider {
    position: relative;
    width: 100%;
    height: 80vh;
}

ul{
    padding:0;
    margin:0;
}

.slider .title{
    font-weight:400;
}

.slider li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    transition: clip .7s ease-in-out, z-index 0s .7s;
    clip: rect(0, 100vw, 100vh, 100vw);
    display:flex;
    align-items:center;
    justify-content:left;
}

.slider li:nth-child(1){
    background:linear-gradient(to right, rgba(1, 1, 1, 0.616) 10%, rgba(1, 1, 1, 0.404) 51%, rgba(1,1,1,0.2) 100%), url('../photos/carousel1.jpg');
    background-size: cover;
    background-position:center center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

.slider li:before{
    content:"";
    position:absolute;
    top:-20px;
    right:0;
    width:250px;
    height:250px;
    background-image:url('../photos/icons/output-onlinepngtools\ \(8\).png');
    background-size:100% 100%;
    transition-delay: 1s;
    transform: rotate(-90deg);
    z-index:1;
}

.slider li:after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:300px;
    height:300px;
    background-image:url("https://i.postimg.cc/KjKbwDfR/slider-shape-2.png");
    background-size:100% 100%;
    transform:rotate(360deg);
	transition: all 1.5s cubic-bezier(0,0,.2,1);
    z-index:1;
    background-position:center left;
}

.slider li:nth-child(2){
    background:linear-gradient(to right, rgba(1, 1, 1, 0.616) 10%, rgba(1, 1, 1, 0.404) 51%, rgba(1,1,1,0.2) 100%), url('../photos/carousel2.jpg');
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-size: cover;
    background-position:center center;
}

.slider li:nth-child(3){
    background:linear-gradient(to right, rgba(1, 1, 1, 0.616) 10%, rgba(1, 1, 1, 0.404) 51%, rgba(1,1,1,0.2) 100%), url('../photos/carousel3.jpg');
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-size: cover;
    background-position:center center;
}

.slider article{
    width:60%;
    margin-top:4rem;
    color: #fff;
    z-index:11;
}

.slider h3 + p {
    display: inline-block;
    color: var(--lite);
    font-weight:300;
}

.slider h3, .slider h3 + p, .slider p + .btn, li:after{
    opacity: 0;
    transition: opacity .7s 0s, transform .5s .2s;
    transform: translate3d(0, 50%, 0);
}

li.current h3, li.current h3 + p, li.current p + .btn, li.current:after {
    opacity: 1;
    transition-delay: 1s;
    transform: translate3d(0, 0, 0);
}

.slider li:before{
    transition: 0.5s;
    top:-250px !important;
}

li.current:before{
    transition-delay: 1s;
    transform: rotate(-90deg);
    top:-20px !important;
}

li.current {
    z-index: 1;
    clip: rect(0, 100vw, 100vh, 0);
}

li.prev {
    clip: rect(0, 0, 100vh, 0);
}

.slider aside {
    position: absolute;
    bottom: 2rem;
    left: 21rem;
    text-align: center;
    z-index: 10;
}

.slider aside a {
    display: inline-block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    background-color: var(--white);
    margin: 0 0.2rem;
    transition: transform .3s;
}

.slider em{
    background: var(--primary);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

a.current_dot {
    transform: scale(1.4);
    background:var(--primary) !important;
}


.about-section{
    margin-top: 100px;
    margin-bottom: 100px;
}

.icon-container {
    display: flex;
    align-items: center;
  }

  /* Style for the icon */
  .icon {
    width: 24px; /* Adjust the width as needed */
    height: 24px; /* Adjust the height as needed */
    margin-right: 8px; /* Adjust the spacing between icon and line */
  }

  /* Style for the horizontal line */
  .line {
    width: 100px; /* Adjust the width as needed */
    height: 1px; /* Adjust the height as needed */
    background-color: #B8A680; /* Adjust the color as needed */
  }

  .section-background{
    background-image: url('../photos/carousel1.jpg');
    background-color: #000000da;
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .image-container {
    position: relative;
    overflow: hidden;
    display: inline-block;
  }

  .image-container::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 94%;
    background: rgba(0, 0, 0, 0.5); /* Dark shadow color */
    transition: transform 0.3s ease; /* Adjust the transition duration as needed */
    transform: translateY(0%);
  }

  .image-container:hover::before {
    transform: translateY(100%);
  }


  .image {
    display: block;
    max-width: 100%;
    height: auto;
  }

  .img-box {
    padding: 20px;
    text-align: center;
    background-color: #777777; /* Initial background color */
    transition: background-color 0.3s ease; /* Transition for color change */
  }

  .image-container:hover .img-box {
    background-color: #B8A680; /* Color change on hover */
  }



 .rooms-section{
    margin-top: 100px;
    margin-bottom: 100px;
 }
  .room-content{
    background-color: white;
    margin-left: 20px;
    margin-right: 20px;
    padding: 40px;
    position: relative;
    margin-top: -50px;
  }

  .rooms-button {
    padding: 10px;
    background-color: #AE9555;
    color: white;
    font-size: 20px;
    width: 300px !important;
    position: relative;
    margin-top: -150px !important;
    margin-left: 300px;
  }

  .section-background1{
    background: url('../photos/gallery-bg.PNG');

    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    padding-top: 70px;
    padding-bottom: 70px;
  }


  @keyframes scroll {
    0% {
      transform: translateX(0);
   }
    100% {
      transform: translateX(calc(-250px * 7));
   }
 }
  .slider1 {
    background: #211c1800;
    height: 300px;
    margin: auto;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
 }
  .slider1::before, .slider::after {
    content: "";
    height: 300px;
    position: absolute;
    width: 300px;
    z-index: 2;
 }
  .slider1::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
 }
  .slider1::before {
    left: 0;
    top: 0;
 }
  .slider1 .slide-track {
    animation: scroll 60s linear infinite;
    display: flex;
 }
  .slider1 .slide1 {
    height: 300px;
    width: 300px;
 }
  /*gallery slider end*/



  .testimonial-card{
   
    padding: 50px;
    background-color: rgba(255, 255, 255, 0.418);
    border: 2px solid #B8A680;
    border-bottom: none;
    color: #000000 !important;
    transition: 0.4s ease-in-out;
  }
  .testimonial-card:hover{
  text-align: center;
  padding: 50px;
  background: url('../photos/testimonial-img.png')  rgba(20, 19, 19, 0.733) ;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-blend-mode: multiply;
  background-position: top;

  color: #FFFFFF !important;

  transition: background 0.4s ease-in-out;
  }
  .testimonial-card:hover {
  color: #FFFFFF !important;
  text-align: left;
  }
  .testimonial-section{
    padding-top: 70px !important;
    justify-content: center;
    align-items: center;
    }

    /*Rooms.html*/
    .section-background2{
        background: url('../photos/39389418\ \ \(40\).jpg')  rgba(20, 19, 19, 0.562) ;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-blend-mode: multiply;
        background-position: top;
        height:400px;
    }
    .section-title h1{
        padding-top: 9%;
        text-align: center;
font-size: 70px;
color: white;
font-weight: 200;
text-transform: uppercase;
letter-spacing: 5px;
    }
   .rooms{
    margin-top: 100px;
   } 
  .rooms-button1 {
    padding: 20px;
    background-color: #AE9555;
    color: white;
    font-size: 20px;
    width: 400px !important;
    position: relative;
    margin-top: -150px !important;
    margin-left: 500px;
  }

  .img-wrapper1 {
    position: relative;
    overflow: hidden;
    display: inline-block;
  }

  .img-wrapper1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark shadow color */
    opacity: 0;
    transition: opacity 0.3s ease; /* Adjust the transition duration as needed */
  }

  .img-wrapper1:hover::before {
    opacity: 1;
  }

  .image1 {
    display: block;
    max-width: 100%;
    height: auto;
  }


  /*Aboutus.html*/
  .section-background3{
    background: url('../photos/39389418\ \ \(35\).jpg')  rgba(20, 19, 19, 0.562) ;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-blend-mode: multiply;
    background-position: center;
    height:400px;
}
.facilities{
    margin-top: 100px;
    margin-bottom: 100px;
}
.testimonial-section1{
    padding-top: 70px !important;
    padding-bottom: 70px;
    justify-content: center;
    align-items: center;
    background: url('../photos/gallery-bg.PNG');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    }


    /*Contact.html*/
    .section-background4{
        background: url('../photos/39389418\ \ \(32\).jpg')  rgba(20, 19, 19, 0.562) ;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-blend-mode: multiply;
        background-position: top;
        height:400px; 
    }
    .contact-row{

        justify-content: center;
        align-items: center;
        background: url('../photos/img4.jpg')  rgba(20, 19, 19, 0.877) ;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background-attachment: fixed;
        background-blend-mode: multiply;
        padding: 50px;
    }
    .contact-card{
        background: rgba(255, 255, 255, 0.295);
        color: white;
        padding: 30px;
    }


    
    /*Animations*/
.fadeinleft {
  opacity:0;
  transform: translateX(200px);
  transition: all 1.3s ease-out;
}
.fadeinright{
  opacity: 0;
  transform: translateX(-200px);
  transition: all 0.8s ease-out;
}
.fadeindown{
  opacity: 0;
  transform: translateY(-100px);
  transition: all 1.2s ease-out;
}
.fadeinup{
  opacity: 0;
  transform: translateY(100px);
  transition: all 1.2s ease-out;
}
.fade-in{
  opacity:0;
  transition: all 1.3s ease-in;
}
.active-left,.active,.active-right,.active-down,.active-up{
  opacity:1;
  transform: translateX(0);
  transform: translateY(0);
}
.fadein{
opacity: 0;
}
@media screen and (max-width: 920px) {
    .map-col{
        text-align:center !important;
        justify-content:center !important;
        al
    }
  .section-background2, .section-background3, .section-background4{
  height: 400px;
  }
  .section-title h1{
    padding-top: 40%;
    font-size: 40px !important;
  }
  .rooms-button1 {
    padding: 10px;
    background-color: #AE9555;
    color: white;
    font-size: 20px;
    width: 300px !important;
    position: relative;
    margin-top: -10px !important;
    margin-left: 230px;
    margin-bottom: 50px;
  }
  .testimonial-section1{
   margin-top: 0px !important;
  }
  .about-title {
    font-size: 30px !important;
  }
  .image-container{
    margin: 30px !important;
    margin-bottom: 0px !important;
  }
  .section-background1 h1{
    font-size: 35px !important;
  }
  .section-background1 h6{
    font-size: 15px !important;
  }
  .rooms-section h1{
    font-size: 35px !important; 
  }
  .section-background h1{
    font-size: 35px !important;
  }
  .about-section h1{
    font-size: 35px !important;
  }
    .contact-row{
        padding: 12px !important;
    }
    .contact-card{
        padding: 30px !important;
    }
.room-box{
    margin-bottom: 50px;
}
    .rooms-button {
        padding: 10px;
        background-color: #AE9555;
        color: white;
        font-size: 20px;
        width: 300px !important;
        position: relative;
        margin-top: -10px !important;
        margin-left: 250px;
        margin-bottom: 50px;
      }
    
    header{
        height:70vh;
        position:relative;
    }
    
    .cs-down{
        display:none;
    }

    .slider{
        height:70vh;
    }
    
    .slider article{
        width:100%;
        margin-top:2rem;
    }
    
    .slider li:nth-child(2){
        background-position:top center;
    }
    
    .slider li:nth-child(3){
        background-position:top center;
    }
    
    li.current:before{
        top:-30px;
        right:-10px;
    }
}