:root {
    /* Fonts */
    --font-primary: 'Be Vietnam Pro', sans-serif;
    --font-playfair: 'Playfair Display', serif;

    /*Colors */
    --black: #0F1D2E;
    --white: #ffffff;
    --primary: #868D96;
    --secondary: #000000;
    --sec-bg-color: #ffffff;

}

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

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

.head-top {
    line-height: 1;
    font-weight: 300;
}

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

/* header top Section end */

/* Navbar section start */

.navbar{

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

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

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

  /* Booking Section Start */

/* Booking form start */

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

.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: #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(--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 h2 {

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

  }

  .about-content p{

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

  }

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

  .amenities-main-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px 30px;
}



.amenities-wrapper{

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

.amenities-inner-wrapper{

    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.amenities-icon-wrap {
    display: flex;
    flex-direction: column;
    width: 110px;
    height: 110px;
    background: white;
    margin-bottom: 36px;
    padding: 22px;
    transition: all .6s ease-in-out;

}

.p-heading {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 0px;
}

.p-heading p{

    padding: 0 10px;
}

.servicebtn{

    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 50px;
}



.amenities-icon-wrap img {
    transition: all 0.3s ease;
}

.amenities-icon-wrap img:hover {
    
    transform: scale(1.2);
   
}

.amenities-inner-wrapper h4{

    font-family: var(--font-playfair);

}


  /* Servie Main section  */

  /* Rooms-hero-page start  */

  .our-rooms-grid-item{

    border-radius: 10px;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);

  }

  .our-room-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.our-room-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all 0.3s;
}

.our-room-image img:hover {
    
    transform: scale(1.1);
}

  .our-rooms-name-wrapper h3 {

    font-family: var(--font-playfair);
    font-weight: 700;

  }

  .our-rooms-name-wrapper p{

    font-family: var(--font-primary);
    color: var(--primary);
    font-weight: 400;

  }

  .our-rooms-name-wrapper {
    padding: 34px;
    text-align: center;
    height: 250px;
}

.our-rooms-name-wrapper h3,
.our-rooms-name-wrapper p {
    margin-bottom: 20px;
}



  /* 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(--secondary);
    color: var(--white);
    padding: 50px;
    text-align: center;
  }
  
  .special-offer-content h3 {
    margin: 0;
    font-weight: 600;
    font-family: var(--font-playfair);
    margin-bottom: 20px;
  }
  
  .see-more-link {
    position: relative;
    color: var(--white);
    font-weight: 300;
}

  .see-more-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background-color: var(--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-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;
}



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

.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: 25%;
  left: 16%;
  text-align: left;
  color: var(--secondary);
}

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

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

/* Gallery Page Start*/
.gallery-page .photo-gallery-wrap {
  height: 340px;
}

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

}


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