:root {
    /* Fonts */
    --font-primary: 'Playfair', serif;
    --font-secondery: 'Roboto', sans-serif;

    /*Colors */
    --black: #000000;
    --white: #ffffff;
    --primary: #005BB4;
    --secondary: #DA3732;
    --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);
}

.flex-center {
    display: flex
;
    align-items: center;
    justify-content: center;
}

/* Button Css Start */
.prime-btn {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-secondery);
    line-height: 1;
    letter-spacing: 0.5px;
    background-color: var(--secondary);
    color: var(--white);
    /* border: 1px solid transparent; */
    border-radius: 2px;
    padding: 18px 34px;
    /* width: 150px;
    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;
}

.prime-btn::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
    background-color: #1a1a1a;
    color: var(--white);
}

.prime-btn:hover::after {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    color: var(--white);
}

.prime-btn:hover {
    color: var(--white);
}

.prime-btn .txt {
    position: relative;
    z-index: 111;
}

.btn-check:focus+.btn,
.btn:focus {
    box-shadow: none;
}


/* Button Css End */

.bg-primary-color {

  background-color: var(--primary);
}

.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(--primary);
    color: var(--white);
    font-size: 14px;
    height: 48px;
    font-family: var(--font-secondery);
}

.header-top a {
    color: var(--white);
    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;
}

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

/* header top Section end */

/* Navbar section start */

.navbar{

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

.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(--black);
    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(--black);
    -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(--white);
  border: none;
  text-transform: uppercase;
}

.nav-btn::before{

  border: none;

}

.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 */


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

  .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: 780px;
    object-fit: cover;
  }

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

    color: var(--white);

  } */

  /* Hero section End*/


.hero-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  
}

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

.hero-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.jpg');
}

.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 of all page start */


/* .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 */
.booking-form {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 60px;
    z-index: 111;
    width: 100%;
}



::-webkit-input-placeholder{ 
  color: var(--black)!important;
}

.booking-form-grid-wrap {
    background-color: white;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.booking-form-grid-item:not(:last-child) {
    border-right: 1px solid rgba(171, 0, 0, 20%);
    padding: 38px 30px;
}

.form-group {
    position: relative;
}

.form-group::after {
    content: '';
    position: absolute;
    width: 76%;
    right: 0;
    bottom: -10px;
    border-bottom: 1px solid rgba(0, 0, 0, 20%);
}

.form-control {
    font-family: var(--font-secondery);
    background-color: white;
    border: none;
    border-radius: 0;
    color: #2A2A2A;
    font-size: 18px;
    font-weight: 400;
    padding: 0 0 0 46px;
}

select.form-control option {
    color: #000 !important;
}


.input-icon {
    position: absolute;
    left: 0;
    top: 70%;
    transform: translateY(-50%);
    color: var(--secondary);
    width: 30px;
    height: 30px;
    z-index: 111;
}

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

.form-control:focus {
    outline: 0;
    box-shadow: none;
    border: none;
}

.booking-form .prime-btn {
    border-radius: 0;
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0;
    background-image: none;
    background-color: var(--secondary);
    color: white;
    transition: all ease-in-out 0.3s;
}

.booking-form .prime-btn:hover {
    color: white;
    /* background-color: #bd0000; */
}

.ui-widget-content {
    z-index: 11111 !important;
    position: relative;
}

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

.ui-widget-header a {
    color: var(--black) !important;
}

/* booking-form end */

  /* About section start */
.about-image-wrap {
    width: 100%;
    height: 630px;
    overflow: hidden;
}

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

.about-image-wrap:hover img {
    transform: scale(1.08);
}

.about-content-wrap {
    padding-left: 26px;
}

.about-content-wrap .sec-title {
    margin-bottom: 25px;
    text-align: start;
    font-size: 42px !important;
}

.sec-title {
    margin-bottom: 55px;
    text-align: center;
    font-size: 60px;
    font-weight: 500;
}

.sec-title h6 {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 6px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: var(--font-secondery);
    font-weight: 400;
}

.sec-title h2 {
    line-height: 1.2;
}

.about-content-wrap p {
    font-size: 16px;
    line-height: 36px;
    padding-right: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    font-family: var(--font-secondery);
    color: var(--sec-bg-color);
    font-weight: 300;
}

.about-content-wrap .prime-btn {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-secondery);
    line-height: 1;
    background-color: var(--secondary);
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 30px;
    padding: 10px 16px;
    width: 150px;
    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;
    margin-top: 30px;
}




/* About section end */

 /* Service-Amenities section Start */
.service-amenities {
    position: relative;
}

.service-amenities::after {
    content: '';
    background-color: var(--sky-blue);
    position: absolute;
    width: 100%;
    height: 310px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
}

.service-amenities-wrap {
    max-width: 1718px;
    width: 100%;
    margin: 0 auto;
    border-radius: 50px;
    padding: 80px 100px;
    position: relative;
    z-index: 111;
}

.service-amenities-wrap h2{

  color: var(--white);

}

.service-amenities-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.service-amenities-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 28px;
}

.service-amenities-icon img {
    width: inherit;
    height: inherit;
    object-fit: contain;
    transition: all 0.9s ease;
}

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



.service-amenities-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.20);
}

.service-amenities-grid-item:last-child {
    border-right: none;
}

.service-amenities-grid-item h4 {
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    color: var(--white);
    font-family: var(--font-secondery);
    font-weight: 300;
}

.service-amenities-wrap .prime-btn {
    margin-top: 80px;
    border: 1px solid var(--white);
    background-color: transparent;
}


.service-amenities-wrap .prime-btn {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-secondery);
    line-height: 1;
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid white;
    border-radius: 30px;
    padding: 10px 16px;
    width: 150px;
    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;
}
/* Service-Amenities section End */


  /* 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;
    font-size: 30px;
    font-weight: 500;
}

.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(--primary);
}

/* Our rooms section End */


 /* special offer section start */

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

  .offers h2{

    color: var(--primary);
  }
  
  .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(242, 245, 250, 1);
    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;
  }
  
  .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;
    bottom: 15px;
    left: 90px;
    transform: translate(100%, 10px);
    background: var(--secondary);
    padding: 20px;
    border-radius: 20px;
    
}
  
  .offer-icon img {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease-out;
  }

  .offer-icon img:hover{
transform: scale(1.2);

  }
  
  .offer-content {
    padding: 25px 20px;
    text-align: center;
    
  }
  
  .offer-content h3 {
    font-family: var(--font-primary);
   color: var(--black);
    font-size: 30px;
    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-family: var(--font-secondery);
    font-weight: 300;
  }

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


/* special offer section end */

  .gallery-section {
    /* background-color: var(--primary); */
    /* height: 700px; */
    padding: 90px 0;
  }

  .gallery-section h2{

    color: var(--primary);

  }
  
  
  .gallery-carousel .item img {
    width: 100%;
    height: 540px;
    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;
  }
  
  .gallery-carousel .item.item::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background-image: url("../images/icons/gallery.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;
    
  }
  
  .gallery-carousel .item.item:hover img {
    transform: scale(1.05);
  }



   

/* Feedback start */

.feedback-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 30px;
  background-color: var(--primary);
  
  margin-bottom: 20px;
  height: 345px;
  position: relative;
}

.feedback h2{

  color: var(--primary);

}

.feedback-icon {
    text-align: start;
    position: absolute;
    top: 10px;
    left: 15px;
}



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

.feedback-grid-item span {
  font-style: italic;
  color: var(--white);
  margin: 10px;
  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.jpg");
  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;
  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: start;
}

.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(--white);
  transition: 0.3s;
  font-family: var(--font-secondery);
  font-weight: 500;
  /* text-shadow: 1px 1px 2px #000000; */
}

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

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

/* breadcrumb style end */


/* Service Amenities Page Start*/
.service-page .service-amenities-grid-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  z-index: 111;
  position: relative;
  gap: 40px 24px;
}

.service-page .service-amenities-grid-item {
  position: relative;
  width: 100%;
  height: 200px;
  border-bottom: 3px solid var(--primary);
  border-radius: 0;
  background: rgba(242, 245, 250, 1);
  transition: 0.3s ease-in-out;
  padding: 40px 10px 30px;
  z-index: -1;
}

.service-page .service-amenities-grid-item:nth-child(13) {
  grid-column: 1 / span 2;
}

.service-page .service-amenities-grid-item:nth-child(14) {
  grid-column: 3 / span 2;
}

.service-page .service-amenities-grid-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  left: 0px;
  bottom: 0px;
  z-index: -1;
  background: var(--primary);
  transition: 500ms;
}

.service-page .service-amenities-grid-item:nth-child(13):before,
.service-page .service-amenities-grid-item:nth-child(14):before {
  display: none;
}

.abs-icons {
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  transition: 0.3s ease-in-out;
}

.abs-icons img {
  width: inherit;
  height: inherit;
  object-fit: contain;
}

.abs-light {
  display: block;
  transition: 0.3s ease-in-out;
}

.abs-dark {
  display: none;
  transition: 0.3s ease-in-out;
}

.service-page .service-amenities-grid-item h5 {

  line-height: 1.5;
  color: var(--primary);
  text-transform: capitalize;
  transition: 0.3s ease-in-out;
}

.service-page .service-amenities-grid-item:hover::before {
  height: 100%;
}

.service-page .service-amenities-grid-item:hover .abs-light {
  display: none;
}

.service-page .service-amenities-grid-item:hover .abs-dark {
  display: block;
}

.service-page .service-amenities-grid-item:hover h5 {
  color: white;
}

/* 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-page-wrapper {
  width: 100%;
  padding: 80px 60px;
  background-color: var(--primary);
}

.contact-us-content-wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px 24px;
  padding-left: 20px;
}

.contact-us-content-items {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  padding: 30px;
  border-radius: 6px;
  background-color: var(--white);
}

.contact-title-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--black);
  margin-bottom: 12px;
  /* font-family: var(--font-cin); */
}

.contact-page-wrapper h2{

  color: var(--white);
}

.contact-us-content-items span {
  display: block;
  width: 1px;
  height: 100%;
  background: var(--primary);
  margin: 0 30px;
}

.contact-play-icons {
  margin-right: 10px;
}

.contact-us-content-items a,
.contact-us-content-items p {
  color: var(--primary);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-secondery);
}


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

.contact-us-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.contact-us-image-wrapper img {
  width: inherit;
  height: inherit;
  object-fit: cover;
  transition: all ease-in-out 0.4s;
}

.contact-us-image-wrapper:hover img {
  transform: scale(1.08);
}

/* 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(--primary);
  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(--primary);
  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;
}


/* -- // 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;
}


