:root {
    /* Fonts */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondery: 'Teachers', sans-serif;

    /*Colors */
    --black: #000000;
    --white: #ffffff;
    --primary: #162D47;
    --secondary: #000000;
    --sec-bg-color: #edbcbc;
    --p-color:#7B7B7B;

}

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);
}

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

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

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

.head-top {
    line-height: 1;
    font-weight: 300;
    display: flex;
    align-items: center;
}

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

/* header top Section end */

/* Navbar section start */

.navbar {
  position: fixed;
  width: 100%;
  padding: 6px 100px;
  z-index: 222;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
 
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: slideDown 0.50s ease;
  background: rgba(22, 45, 71, 0.60);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);

}

@keyframes slideDown {
  from {
      transform: translateY(-100%);
  }

  to {
      transform: translateY(0);
  }
}

.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: #374353;
    -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;
}

.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-wrapper {
  position: relative;
}

.hero-banner{
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 800px;
}



.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-text-wrapper {
  position: absolute;
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%);
  z-index: 11;
  width: 100%;
} */

.hero-text-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(48%, -40%);
  z-index: 11;
  /* width: 100%; */
}

.hero-text {

  color: var(--white);
}

.h1-small{

  font-family: var(--font-primary);
  color: var(--white);
  font-size: 100px;
  font-weight: 700;

}

.hero-text p{

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

.hero-btn{

  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  padding: 50px 0;

}

.hero-btn .prime-btn{

  border-radius: 50px;
  color: var(--white);
}

.hero-btn .prime-btn:hover{

  color: var(--primary);

}




.hero-btn .prime-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-color: var(--white);
  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;
}
.hero-btn .prime-btn:hover::after {
  opacity: 1;
  transform-origin: 100px 100px;
  transform: scale(1) translate(-10px, -70px);
}
  /* Hero section End*/



/* Booking form start */



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


.form-section {
    padding: 70px 0;
    background-color: var(--primary);
}

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

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

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

/* Booking form end */

  /* Booking Section End */

  /* About section start */

  .about-image-wrap{

   position: relative;

  }

  .image-bottom{
   
    
   width: 540px;
   height: 530px;
   overflow: hidden;
   border-radius: 26px;
   transition: all 0.3s;

  }

  .image-bottom:hover{

    transform: scale(1.1);

  }

  .image-top {
    width: 345px;
    height: 235px;
    overflow: hidden;
    border-radius: 26px;
    border: 8px solid #ffffff;
    position: absolute;
    right: 0px;
    top: -40px;
    transition: all 0.3s;

}

  .image-top:hover{

    transform: scale(1.1);

  }
  
  .about-content {
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

  .about-content h2 {

        font-family: var(--font-primary);
        font-weight: 700;
        line-height: normal;
        letter-spacing: 2px;
        padding: 30px 0px; 
        color: var(--primary);

  }

  .about-content p{

    color: var(--p-color);
    font-style: normal;
    font-weight: 300;
    line-height: 28px; /* 175% */
    text-transform: capitalize;
    padding: 10px 0px;
    text-align: center;

  }

  .about-heading{

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

  }

  .about-content .prime-btn{

    margin-top: 30px;
    
  }

  /* About section end */

  /* Servie Main section  */


  .sec-title{

    font-family: var(--font-playfair);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
  }

  .bg-section-color {
    background-color: var(--sec-bg-color);
  }
  
  
  .service {
    position: relative;
  }
  
  .service .sec-title {
    margin-bottom: 110px;
  }
  
  .amenities-main-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px 30px;
  }
  
  .amenities-wrapper {
    
    position: relative;
    padding: 40px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
    min-height: 170px;
    -moz-transition: all .6s ease-in-out;
    -webkit-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
  }
  
  .icon-blue {
    display: block;
    transition: all .6s ease-in-out;
  
  }
  
  .icon-white {
    display: none;
    transition: all .6s ease-in-out;
  }
  
  
  .amenities-inner-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    transition: all .6s ease-in-out;
  }
  
  
  .amenities-icon-wrap {
    display: flex;
    flex-direction: column;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 6%);
    background: white;
    margin-bottom: 36px;
    padding: 22px;
    border: 2px solid transparent;
    transition: all .6s ease-in-out;
  
  }
  
  .amenities-wrapper h4 {
    letter-spacing: 1.2px;
    color: var(--primary);
    font-family: var(--font-secondery);
    -moz-transition: all .6s ease-in-out;
    -webkit-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
  }
  
  .amenities-wrapper:hover {
    background-color: rgb(22 45 71 / 80%);
  }
  
  .amenities-wrapper:hover .amenities-inner-wrapper h4 {
    color: var(--white);
  }
  
  
  
  .amenities-icon-wrap img {
    transition: all 0.9s ease;
  }
  
  /* .amenities-wrapper:hover .amenities-icon-wrap img {
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    transform: rotateY(360deg);
    transition: all 0.9s ease;
  } */
  
  .amenities-wrapper:hover .icon-white {
    display: block;
  }
  
  .amenities-wrapper:hover .icon-blue {
    display: none;
  }
  
  .amenities-wrapper:hover .amenities-icon-wrap {
    background-color: #162D47;
    border: 2px solid var(--white);
    box-shadow: none;
  
  }
  
  .service .prime-btn {
    margin-top: 70px;
  }
  
  .service-vector {
    position: absolute;
  
  }
  
  .service-vector.one {
    top: 0;
    left: 0;
  
  }
  
  .service-vector.two {
    bottom: 8%;
    left: 4%;
  
  }
  
  .service-vector.three {
    top: 0;
    right: 0;
  
  }
  
  .service-vector.four {
    bottom: 0;
    right: 0;
  
  }
  
  .servicebtn{
  
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  

  /* Servie Main section  */

  /* Rooms-hero-page start  */

  .rooms-page-container{

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
 
 }
 
 .rooms-page-image-wrapper {
     position: relative;
   
   }
 
   .room-page-img {
     width: 100%;
     border-radius: 30px;
     display: block;
   }
   
   
 
   .our-rooms {
    position: relative;
  }
  
  .our-rooms-grid-item {
    position: relative;
    height: 600px;
    width: 100%;
  }
  
  .our-rooms-grid-item img {
    width: inherit;
    height: inherit;
    object-fit: cover;
  }
  
  .our-rooms-name-wrapper {
    position: absolute;
    display: flex;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: #162D47;
    min-height: 110px;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
  
  .our-rooms-name-wrapper h4 {
    /* margin-bottom: 26px; */
    font-family: var(--secondary);
    /* font-size: 30px; */
    font-weight: 700;
    color: var(--white);
    gap:0 50px;
  }
  
 .our-rooms-name-wrapper .rooms-icons-wrap img {
    width: 20px;
    height: 20px;
    display: inline-flex;
    object-fit: contain;
  }
  
  .rooms-book {
  
    max-width: 80px;
    height: 46px;
    letter-spacing: 2px;
    background: var(--white);
    border: none;
    
  }
   

  .our-rooms-name-wrapper .prime-btn {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-secondery);
    line-height: 1;
    letter-spacing: 1px;
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 10px 16px;
    max-width: 90px;
    width: 100%;
    height: 35px;
    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;
}
  .our-rooms-name-wrapper .prime-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 52px;
    border: 0px solid var(--primary) !important;
    transition: opacity 0.3s, border 0.3s;
}


.our-rooms-name-wrapper .prime-btn:hover{

  color: #ffffff;

}


  /* Rooms-hero-page end  */

  /* Special offers start */

  .special-offer-wrapper {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
    height: 100%;
  }
  
  .special-offer-img img {
    width: 100%;
    height: 330px;
    display: block;
    object-fit: cover;
  }
  
  /* This is the left-side big block */
  .special-offer-wrapper > .special-offer-img {
    position: relative;
  }
  
 
  .special-offer-content {
    background-color: var(--primary);
    color: var(--white);
    padding: 50px;
    text-align: center;
  }
  
  .special-offer-content h3 {
    margin: 0;
    font-weight: 600;
    font-family: var(--font-primary);
    margin-bottom: 20px;
  }
  
  .see-more-link {
    position: relative;
    color: var(--white);
    font-weight: 300;
}

  .see-more-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background-color: var(--white);
}
  

.see-more-link:hover{

  color: white;
}

  .second-wrap {
    display: flex;
    align-items: stretch;
    background-color: var(--secondary);
    color: var(--white);
    gap: 0;
    margin: 20px 0 0px 0;
  }
  
  .second-wrap .special-offer-img {
    width: 50%;
  }
  
  .second-wrap .special-offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .second-wrap .special-offer-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .special-offer-wrapper:first-child .special-offer-img img {
    margin-bottom: 0;
    display: block;
  }

  
  

  /* Special offers end */



  /* Photo gallery section start*/
.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;
}

/* Photo gallery section end */

/* Feedback start */

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

.feedback-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 20px;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  min-height: 400px;
  position: relative;
}



.feedback-grid-item p {
  font-size: 18px;
  margin-top: 20px;
  text-align: start;
}

.feedback-grid-item span {
  font-style: italic;
  color: var(--primary);
  margin: 20px;
  line-height: 1.8;
  letter-spacing: 0.5px;
}


.feedback-inner-wrapper{

    
    display: flex;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    transition: all .6s ease-in-out;

}

.avatar-img {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 4px solid #f3f6fb;
  background: white;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* Feedback end */

/* Footer section Start */


.footer.sec-bg-img {
  position: relative;
  background-image: url('../images/sec-bg/footer.jpg');
  background-position: center;
}



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

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

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

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

.footer-grid-item p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 40px;
  text-transform: capitalize;
  
}

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


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

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

}

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

/* Footer section end */

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

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


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

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

.hero-contact {
  background-image: url('../images/hero-image/hero-bg-image/h3.jpg');
  
}

.hero-ada {
  background-image: url('../images/hero-image/hero-bg-image/h4.jpg');
  background-position: center;
}

.hero-attraction {
  background-image: url('../images/hero-image/hero-bg-image/h5.jpg');
  background-position: center;
}

/* Hero section of all page end */

/* hero-content of all page start */
.page-hero-content {
  z-index: 11;
  position: absolute;
  bottom: 40%;
  left: 16%;
  text-align: left;
  color: var(--secondary);
}

.page-hero-content h1 {
  color: white;
  margin-bottom: 16px;
  letter-spacing: 1px;
  font-family: var(--font-primary);
  text-shadow: 1px 1px 2px #000000;
  font-weight: 700;
}
.sec-page-title {
  letter-spacing: 0px;
  margin-bottom: 50px;
  font-weight: 700;
  font-family: var(--font-primary);
  text-align: center;
}

/* hero-content of all page end */


/* breadcrumb style Start */
.breadcrumb-item {
  font-size: 18px;
}

.breadcrumb-item a {
  color: var(--white);
  transition: 0.3s;
  text-shadow: 1px 1px 2px #000000;
}

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

.breadcrumb-item.active,
.breadcrumb-item+.breadcrumb-item::before {
  color: var(--white);
}


/* breadcrumb style end */


/* Service Amenities Page Start*/

/* 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: #dedede;
  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*/




/* Contact-us Page start */


.contact-page-wrapper {
  width: 100%;
  padding: 80px 60px;
  background-color: var(--primary);
}

.contact-page-wrapper h2{

  color: var(--white);

}

.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-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;
}


.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;
  font-family: var(--font-primary);
  font-weight: 500;

}


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

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

}

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


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

