:root {
    /* Fonts */
    --font-secondery: 'Urbanist', sans-serif;
    --font-primary: 'Noto Serif', serif;

    /*Colors */
    --black: #000000;
    --white: #ffffff;
    --primary: #756462;
    --secondary: #988C52;
    --sec-bg-color: #7E7E7E;

}



body{

    font-family: var(--font-primary);
    line-height: 1.25;
    margin: 0px;
    
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
}


/* Default styles start */

*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;

}

body {
    font-family: var(--font-primary);
    line-height: 1.25;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    padding: 0;
    color: var(--secondary);
}


/* heading */
.h1,
h1 {
    font-size: 68px;
}

.h2,
h2 {
    font-size: 40px;
}

h3,
.h3 {
    font-size: 30px;
}

h4,
.h4 {
    font-size: 24px;
}

.h4-small {
    font-size: 22px;
}

h5,
.h5 {
    font-size: 20px;
}

h6,
.h6 {
    font-size: 18px;
}

.p {
    font-size: 16px;
}

.p-small {
    font-size: 14px;
}

a {
    text-decoration: none;
    color: var(--primary);
    
}

a:hover{

    color: var(--primary);
}

.sec-title {
    font-family: var(--font-primary);
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
    font-size: 60px;
}

/* Button Css Start */
.prime-btn {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-secondery);
    line-height: 1;
    letter-spacing: 1px;
    background-color: var(--secondary);
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 10px 16px;
    max-width: 150px;
    width: 100%;
    height: 52px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-shadow: none;
    text-transform: uppercase;
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0;
    box-shadow: none;
}
.prime-btn:hover{
    color: var(--white);
}

.prime-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height:52px;
    border: 3px solid var(--secondary);
    transition: opacity 0.3s, border 0.3s;
  }
  .prime-btn:hover::before {
    opacity: 0;
  }

  .prime-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: var(--primary);
    border-color: transparent;
    border-radius: 50%;
    transform: translate(-10px, -70px) scale(0.1);
    opacity: 0;
    z-index: -1;
    transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
  }
  .prime-btn:hover::after {
    opacity: 1;
    transform-origin: 100px 100px;
    transform: scale(1) translate(-10px, -70px);
  }

  

/* Button Css End */

.sec-spacing {
    padding: 120px 0;
}



header {
    width: 100%;
    left: 0;
    right: 0;
}

.header-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 150px 10px 150px;
    background-color: var(--white);
    color: var(--primary);
    font-size: 14px;
    height: 48px;
    font-family: var(--font-secondery);
}

.header-top a {
    color: var(--secondary);
    line-height: 1;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: var(--font-secondery);
}

.head-top {
    line-height: 1;
    font-weight: 400;
    color: var(--secondary);
}

.header-top i {
    color: var(--white);
}

/* header top Section end */

/* Navbar section start */

.navbar{

    padding: 10px 150px 10px 150px;
    background-color: var(--primary);
}

.navbar-brand{

    width: 177px;
    height: 90px;
    padding: 0;
    margin: 0;
}

.navbar-brand img{

    width: inherit;
    height: inherit;
    object-fit: contain;
}

.nav-item {
    width: max-content;
}

.nav-link{

    position: relative;
    text-transform: uppercase;
    font-family: var(--font-secondery);
    font-size: 16px;
    font-weight: 700;
    width: max-content;
    color: var(--white);
    margin-right: 45px;
}

.nav-link:after {
    position: absolute;
    content: " ";
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link:focus,
.nav-item.active .nav-link {
    color: var(--white);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


.nav-link:hover:after,
.nav-link:focus:after,
.nav-item.active .nav-link:after {
    width: 60%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-btn{

  background-color: var(--secondary);
  color: var(--primary);
  border: none;
  transition: all ease 0.3;
  color: var(--white);
}

.nav-btn:hover{

  color: var(--primary);
}

.nav-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 52px;
    border: 3px solid var(--secondary);
    transition: opacity 0.3s, border 0.3s;
    
}

.nav-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: var(--primary);
    border-color: transparent;
    border-radius: 50%;
    transform: translate(-10px, -70px) scale(0.1);
    opacity: 0;
    z-index: -1;
    transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
    
}

.nav-btn:hover::after {
    opacity: 1;
    transform-origin: 100px 100px;
    transform: scale(1) translate(-10px, -70px);
    background-color: var(--white);
    
  }

  .nav-btn:hover::before{

    color: var(--primary);
  }


/*  */



.navbar-nav {
    margin-left: auto;
    margin-right: auto;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
}
/* Navbar section */

/* Hero Section */

.hero{

  position: relative;

}

/* .swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 780px;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 780px;
    object-fit: cover;
  }

  .swiper-button-next, .swiper-button-prev{

    color: var(--white);

  } */

  .hero-wrapper {
    position: relative;
}

.hero-banner,
.page-hero-banner,
.booking-stay,
.our-room,
.booking-banner {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 780px;
}



.hero-banner.hero-one {
    background-image: url('../images/hero-image/hero1.png');
    background-position: bottom;
}

.hero-banner.hero-two {
    background-image: url('../images/hero-image/hero2.jpg');
}

.hero-banner.hero-three {
    background-image: url('../images/hero-image/hero3.jpg');
}



  /* Hero section End*/


/* .hero-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: var(--secondary);
}

.hero-content,
.hero-image-wrapper {
  width: 50%;
} */


/* .hero-text {
  margin-left: 150px;
} */

.hero-text h1 {
  position: relative;
  letter-spacing: 1px;
  line-height: 1.3;
  margin-bottom: 40px;
  padding-left: 40px;
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--primary);
}

.hero-text p {
  font-size: 16px;
  color: rgba(15, 29, 46, 0.6);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 660px;
  letter-spacing: 0.5px;
  font-family: var(--font-primary);
  font-weight: 400;
}

.hero-text .prime-btn {
  max-width: 190px;
  height: 58px;
  letter-spacing: 2px;
}

.hero-text .prime-btn::before{

  display: none;
}

.hero-image {
  width: 100%;
  height: 700px;

  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Hero styles end */

  /* Hero section End*/

  /* Booking Section Start */

/* Booking form start */

.form-section {
    width: 90%;
    padding: 50px 50px;
    background-color: var(--primary);
    border-radius: 50px;
    /* margin: 0 80px; */
    position: absolute;
    bottom: -90px;
    z-index: 111;
    left: 50%;
    /* right: 50%; */
    transform: translateX(-50%);
}

.form-label {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 300;
    font-family: var(--font-secondery);
}

.form-control {
    height: 50px;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: var(--white);
    color: var(--secondary);
    padding: 15px 20px 15px 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.form-control:focus {
    color: var(--secondary);
    border: 1px solid transparent;
    outline: 0;
    box-shadow: none;
}

.form-section .prime-btn {
    max-width: 100%;
    width: 100%;
    height: 50px;
    border: 2px solid var(--white);
}

.form-section .prime-btn::before{

    display: none;
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7E7E7E;
}

.ui-widget-header {
    border: 1px solid var(--primary) !important;
    background: var(--primary) !important;
    color: #fff;
    font-weight: bold;
}

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    color: var(--sec-bg-color);
    font-family: var(--font-secondery);
}

/* Booking form end */

  /* Booking Section End */

  /* About section start */


  .About.sec-spacing{

    padding-top: 200px;
  }

  .about-image-wrap{

   position: relative;

  }

  .image-bottom {
    height: 640px;
    width: 510px;
    overflow: hidden;
    border-radius: 50px;
    transition: all 0.3s;
}

.image-bottom img{

  height: inherit;
  width: inherit;

}

  /* .image-bottom:hover{

    transform: scale(1.1);

  } */

  .image-top {
    height: 280px;
    width: 245px;
    overflow: hidden;
    top: 170px;
    left: -80px;
    border-radius: 50px;
    position: absolute;
    transition: all 0.3s;
}

.image-top img{

  height: inherit;
  width: inherit;

}


.image-top::before {
  content: '';
  position: absolute;
  background-color: var(--primary);
  width: 200px;
  height: 240px;
  border-radius: 50px;
  left: 20px;
  right: 0;
  top: 20px;
  background-image: url('../images/icons/ada.png');
  background-repeat: no-repeat;
  background-position: center;
}



  /* .image-top:hover{

    transform: scale(1.1);

  } */

  .about-content{

    padding-top: 80px;
    padding-bottom: 40px;
  }

  .about .prime-btn{

    background-color: var(--primary);

  }

  .about-content h2 {

        font-family: var(--font-secondery);
        font-weight: 400;
        line-height: normal;
        letter-spacing: 2px;
        padding: 10px 0px; 

  }

  .about-content h1{

    color: var(--secondary);
    font-family: var(--font-primary);
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 3px;
    text-transform: capitalize;
    padding-bottom:30px;

  }

  .about-content p{

    color: #7B7B7B;
    font-family: var(--font-secondery);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px; /* 175% */
    padding-right: 110px;

  }

  .about-heading{

    color: var(--secondary) !important;
    padding: 0px !important;
    font-weight: 400 !important;

  }

  .about-content .prime-btn{

    margin-top: 30px;
    
  }

  .gallery-grid{

    display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;

  }

  .gallery-item {

    width: 100%;
    height: 245px;
    overflow: hidden;
  }

  .gallery-item img{

    width: inherit;
    height: inherit;
  }

  /* About section end */


  .service {

    background-color: #F3EFE9;
  }

.service.sec-spacing {
    padding: 40px 0 120px;
}

.service-amenities-wrap {
    background-color: var(--white);
    padding: 22px 22px 22px 40px;
    border-radius: 30px;
    margin-bottom: 30px;
    /* box-shadow: 0 1px 4px 1px rgba(255, 190, 88, 0.18); */
    box-shadow: 0px 1px 2px 1px rgba(0, 95, 115, 0.15);

}


.service-amenities-icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
}

.service-amenities-icon img {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

.service-amenities-wrap h5 {
    font-weight: 400;
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 0.2px;
    font-family: var(--font-secondery);

}

.service-amenities-image-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-amenities-image-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
    border-radius: 80px;
}



.service-amenities-wrap:hover .service-amenities-icon img {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

.service .prime-btn {
    margin-top: 70px;
}

.explore{

  margin-top: 40px;
  margin-bottom: 40px;
  color: var(--primary);
}

.service-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

 /* SERVICES & AMENTIES PAGE STARTS HERE */






/* Services and Amenities ends */

  /* Rooms-hero-page start  */

/* Our rooms section Start */
.our-rooms-slider-image {
    width: 100%;
    height: 355px;
    overflow: hidden;
}

.our-rooms-slider-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}

.our-rooms-slider-image:hover img {
    transform: scale(1.08);
}


.our-rooms-slider-content {
    padding: 50px 20px;
}

.our-rooms-slider-content h4 {
    margin-bottom: 12px;
}

.our-rooms-slider-content p {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 26px;
    font-family: var(--font-secondery);
    font-weight: 300;
    color: var(--sec-bg-color);
}

.our-room .owl-theme .owl-nav {
    margin-top: 0px;
}

.our-room .owl-carousel .owl-nav button.owl-next,
.our-room .owl-carousel .owl-nav button.owl-prev {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 25px;
    transition: all ease 0.3s;
    
    transform: translateY(-50%);
    position: absolute;
    margin: 0;
}

.our-room .owl-carousel .owl-nav button.owl-prev {
    right: 51%;
}

.our-room .owl-carousel .owl-nav button.owl-next {
    left: 51%;
}

.our-room .owl-carousel .owl-nav button.owl-next:hover,
.our-room .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: rgba(117, 100, 98, 0.51);
    color: var(--white);
}

.our-rooms-slider-item .prime-btn{


  background-color: var(--secondary);

}

.our-rooms-slider-item .prime-btn::before{


  border: none;

}

.our-room h2{

  color: var(--secondary);
}

/* Our rooms section End */


  /* special offer section start */

.offers {
    padding: 60px 0;
    background: #fff;
  }

  .offers .sec-title h2{

    color: var(--secondary);
  }
  
  .offers-subtitle {
    color: #010101;
    text-align: center;
    font-family: var(--font-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 6px;
  }
  
  
  
  .offers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .offer-card {
    background: rgba(117, 100, 98, 0.3);
    border-bottom: 3px solid var(--primary);
    width: 100%;
    max-width: 410px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease-out;
    border-radius: 30px 30px 0 0;
  }
  
  .offer-card:hover {
    transform: translateY(-5px);
  }
  
  .offer-image {
    position: relative;
  }
  
  .offer-image img {
    width: 100%;
    display: block;
    /* border-radius: 30px 30px 0 0; */
  }
  
 .offer-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    padding: 15px;
    border-radius: 60px;
}
  
  .offer-icon img {
    width: 32px;
    height: 32px;
  }
  
  .offer-content {
    padding: 25px 20px;
    text-align: center;
  }
  
  .offer-content h3 {
    font-family: var(--font-primary);
   color: var(--white);
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 400;
  }
  
  .offer-content p {
    font-size: 16px;
    line-height: 1.6;
    font-family: var(--font-primary);
    color: #555555;
    font-weight: 400;
    margin-bottom: 20px;
  }
  
  .read-more-btn {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease-out;
    
   
  }

  .read-more-btn a{

    color: var(--white);
    font-style: var(--font-secondery);
    font-weight: 300;
  }

  
  .read-more-btn span {
    margin-left: 5px;
  }
  
  .read-more-btn:hover {
    background: var(--primary);
  }
  


/* special offer section end */

  /* Special offers end */

  .gallery-section {
       background-color: #F3EFE9;
       /* height: 700px; */
      padding: 90px 0;
  }

  .gallery-section h2{

    color: var(--secondary);
    font-family: var(--font-primary);


  }
  
  
  .gallery-carousel .item img {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
  }
  
  .gallery-carousel .owl-nav {
    position: absolute;
    bottom: -35px;
    left: 90%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
  }
  
  .gallery-carousel .owl-nav .arrow {
    background: black;
    color: white;
    font-size: 24px;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 3px;
    transition: 0.3s;
  }
  
  .gallery-carousel .owl-nav .arrow:hover {
    background: white;
    color: black;
  }
  
  
  .gallery-carousel .item {
    position: relative;
    overflow: hidden;
  }
  
  .gallery-carousel .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color:rgba(0, 0, 0, 0.50);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: 100px 100px 0 100px;
  }
  
  .gallery-carousel .item.item::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background-image: url("../images/icons/instagram.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
  }
  
  .gallery-carousel .item.item:hover::before,
  .gallery-carousel .item.item:hover::after {
    opacity: 1;
  }
  
  .gallery-carousel .item.item img {
    display: block;
    width: 100%;
    transition: transform 0.3s ease;
    border-radius: 100px 100px 0 100px;
  }
  
  


   

/* Feedback start */

.feedback-grid-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background-color: var(--white);
    margin-bottom: 20px;
    height: 350px;
    border-radius: 100px 100px 0px 100px;
    background: #FFF;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
}

.feedback h2{

  color: var(--secondary);

}



.feedback-grid-item p {
  font-size: 18px;
  margin-top: 20px;
  text-align: start;
  color: var(--black);
  font-family: var(--font-primary);
}

.feedback-grid-item span {
  font-style: italic;

  margin: 20px;
  line-height: 1.8;
  letter-spacing: 0.5px;
  font-family: var(--font-secondery);
  font-weight: 300;
}



/* Feedback end */

/* Footer section Start */


.footer.sec-bg-img {
  position: relative;
  background-image: url("../images/sec-bg/footer.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.80);
  
}

footer {
  padding: 100px 0 0 0;
}

.footer-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  z-index: 111;
  position: relative;
  margin-bottom: 60px;
}

.footer-grid-wrapper p{

  color: var(--white);
  font-weight: 300;
  font-family: var(--font-secondery);
}

.ft-logo {
  width: 90px;
  height: 90px;
  margin-bottom: 40px;
}

.ft-logo img {
  width: inherit;
  height: inherit;
  object-fit: contain;
}

.footer-grid-item p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
  text-transform: capitalize;
  font-family: var(--font-secondery);
  
}

.footer-grid-item .prime-btn {
  padding: 10px 12px;
  max-width: 160px;
}

.footer-grid-item h3 {
  font-size: 34px;
  padding: 40px 0 40px 0;
  /* padding-bottom: 50px; */
  letter-spacing: 0.5px;
  color: var(--white);
  font-family: var(--font-secondery);
  font-weight: 600;
}
.footer-link-wrapper {
  padding-left: 120px;
}

.footer-grid-item a{

  color: var(--white);
}

.footer-link {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 26px;
  font-weight: 300;
  font-family: var(--font-secondery);
}


.ft-add,
.footer-add a {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 26px;
  color: var(--white);
  font-weight: 300;
  font-family: var(--font-secondery);
}

.footer-bottom-wrap {
  z-index: 111;
  position: relative;
  border-top: 1px solid rgba(134, 141, 150, 1);
  font-size: 16px;
  padding: 30px 0;
  text-align: center;
  

}

.footer-bottom-wrap p{
color: var(--white);
  font-weight: 300;
  font-family: var(--font-secondery);
}

/* Footer section end */

/* ============================================= */

/* Hero section of all page start */
.page-hero-banner {
  min-height: 560px;
  position: relative;
}



.page-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 1;
}

.page-hero-banner .content {
  position: relative;
  z-index: 2;
}




.hero-service {
  background-image: url('../images/hero-image/hero-bg-image/h1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-gallery {
  background-image: url('../images/hero-image/hero-bg-image/h2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-contact {
  background-image: url('../images/hero-image/hero-bg-image/h4.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
  

.hero-ada {
  background-image: url('../images/hero-image/hero-bg-image/h5.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-attraction {
  background-image: url('../images/hero-image/hero-bg-image/h3.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Hero section of all page end */

/* hero-content of all page start */
.page-hero-content {
  z-index: 11;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}



.page-hero-content h1 {
  font-size: 56px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  color: var(--white);
  font-weight: 500;
  font-family: var(--font-primary);
  text-shadow: 1px 1px 2px #000000;
}

.sec-page-title {
  font-size: 36px;
  letter-spacing: 0px;
  margin-bottom: 50px;
}

/* hero-content of all page end */


/* breadcrumb style Start */
/* breadcrumb style Start */
.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item {
  font-size: 20px;
}

.breadcrumb-item a {
  color: var(--secondary);
  transition: 0.3s;
  font-family: var(--font-secondery);
  font-weight: 500;
  /* text-shadow: 1px 1px 2px #000000; */
}

.breadcrumb-item a:hover {
  color: var(--white);
}

.breadcrumb-item.active,
.breadcrumb-item+.breadcrumb-item::before {
  color: var(--secondary);
  font-family: var(--font-secondery);
  font-weight: 500;
}

/* breadcrumb style end */


/* //-- Service Amenities page start --// */

.Amenities_page{
  margin-top: 100px; 
  padding: 15px 9%;
  padding-bottom: 100px;
  
}


.sec-page-title{

  font-family: var(--font-secondery);
  font-weight: 500;
  text-align: center;
  padding-bottom: 50px;
  font-size: 52px;

}

.Amenities_page .box_container {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 50px;
  padding-top: 30px;
}

.Amenities_page .box_container .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0px;
  /* background: #F6F6F6; */
  padding: 35px 30px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  transition: .5s all ease;
}

.Amenities_page .box_container .box:hover{

  transform: scale(1.2);
}

.Amenities_page .box_container .box {

  font-size: 18px;
  font-family: var(--font-primary);
  /* font-weight: 400; */
  /* padding: 10px 0; */
  margin: 0;
}

.Amenities_page .box_container .box img{

  transition: .5s all ease;
  border: 1px solid var(--secondary);
  border-radius: 6px;
  padding: 18px;
  color: #756462;
}
.Amenities_page .box_container .box img:hover{
  transform: rotateY(180deg);
}

.Amenities_page .box_container .box h6{

  color: var(--secondary);
  font-weight: 400;
}

.vertical_line {
    width: 1px;
    height: 26.195px;
    background: var(--secondary);
    margin: 15px 0;}



/* //-- Service Amenities page end --// */

/* Gallery Page Start*/
.gallery-page .photo-gallery-wrap {
  height: 340px;
}
   
.photo-gallery-wrap {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: block;
}

.photo-gallery h2{

  font-family: var(--font-playfair);
  color: var(--secondary);
  font-weight: 700;
}

.photo-gallery-wrap img {
  width: inherit;
  height: inherit;
  object-fit: cover;
}

.photo-gallery .prime-btn {
  margin-top: 70px;
  
}

.gallery-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.photo-gallery-overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  display: flex;
  align-items: center;
  
}



.photo-gallery-wrap:hover .photo-gallery-overlay {
  opacity: 1;
}


.search-icon {
  width: 30px;
  width: 30px;
  color: var(--white);
  display: flex;
  align-items: center;
  flex-direction: column;
  flex: auto;
}

.search-icon svg {
  width: inherit;
  height: inherit;
  object-fit: contain;
}



/* Gallery Page End*/

/* Contact-us Page start */

.contact-us-top-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;

}

.contact-us-top-items {
  display: flex;
  flex-direction: column;

}

.contact-us-top-items p,
.contact-us-top-items a {
  color: var(--secondary);
  font-size: 16px;
  line-height: 1.2;
  transition: 0.5s;
  font-weight: 400;
  font-family: var(--font-secondery);
}

.contact-us-top-items a:hover {
  color: var(--primary);
}

.contact-title-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
}

.contact-title-wrap svg {
  font-size: 20px;
  margin-right: 10px;
  color: var(--primary);
}

.contact-us-top-items:not(:last-child) {
  margin-right: 40px;
}

.contact-us-iframe {
  width: 100%;
  height: 500px;
}


/* Contact-us Page end */

/* -- // Local Attraction Page Styles End // -- */
.hotel-surrounding-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 40px;
}

.hotel-surrounding-wrap {
  display: flex;
  flex-direction: column;
  /* border: 1px solid #cac8c8; */
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0px 2px 12px 0px rgba(190, 0, 0, 0.2); */
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.hotel-surrounding-image {
  position: relative;
  width: 100%;
  height: 360px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.hotel-surrounding-image img {
  width: inherit;
  height: inherit;
  object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.hotel-surrounding-image img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.hotel-surrounding-title {
  margin-bottom: 20px;
  padding: 0 30px;

}


.hotel-surrounding-content {
  padding: 0 30px 30px;
}

.item-list {
  margin-bottom: 10px;
}

.item-list p {
  font-size: 16px;
  line-height: 2.2;
  font-weight: 400;
  color: var(--secondary);
  font-family: var(--font-secondery);
}

/* -- // Local Attraction Page Styles End // -- */

/* -- // Ada feature Page Styles Start // -- */
.ada-feature-wrap:not(:last-child) {
  margin-bottom: 50px;
}

.ada-feature-wrap h3 {
  margin-bottom: 20px;
}

.ada-feature-item {
  font-weight: 400;
  line-height: 1.5;
  padding: 16px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px 0px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  color: var(--secondary);
  font-family: var(--font-secondery);

}

.ada-feature-note {
  margin-top: 40px;
}

.note{

  color: var(--black);
  font-family: var(--font-secondery);

}

.Ada-btn {
  font-size: 16px;
  background: var(--secondary);
  font-family: var(--font-secondery);
  color: var(--white);
  /* width: 125px; */
  padding: 18px 18px;
  text-align: center;
  transition: 0.5s all ease;
  border: none;
  border-radius: 4px;
}


/* -- // Ada feature Page Styles End // -- */

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 5%;
  bottom: 5%;
  z-index: 9999;
  background: var(--primary);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--secondary);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


.feedback .owl-carousel .owl-stage-outer {
    padding: 10px;
  }