:root {
    /* Fonts */
    --font-primary: "Teachers", serif;
    --font-lora: "Lora", serif;

    /*Colors */
    --black: #010101;
    --white: #ffffff;
    --primary: #4F95DA;
    --green: #30918C;
    --secondary: #787878;
    --sky-blue: #F2F2EC;

}



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

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: 70px;
}

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

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

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0;
}

/* Pseudo default styles start */

::placeholder {
    color: white !important;
    opacity: 1;
}

::-webkit-input-placeholder {
    color: white !important;
}

:-ms-input-placeholder {
    color: white !important;
}

::-ms-input-placeholder {
    color: white !important;
}

*::-moz-selection {
    background: var(--primary);
    color: black;
}

*::selection {
    background: var(--primary);
    color: black;
}

*::-moz-selection {
    background: var(--primary);
    color: black;
}

*::-webkit-selection {
    background: var(--primary);
    color: black;
}

/* Pseudo default styles end */


.font-primary {
    font-family: var(--font-primary);
}

.font-lora {
    font-family: var(--font-lora);
}



/* COLORS */
.bg-black-color {
    background-color: var(--black);
}

.bg-white-color {
    background-color: var(--white);
}

.bg-primary-color {
    background-color: var(--primary);
}

.bg-secondary-color {
    background-color: var(--secondary);
}

.bg-skyblue-color {
    background-color: var(--sky-blue);
}

.color-black {
    color: var(--black);
}

.color-white {
    color: var(--white);
}

.color-primary {
    color: var(--primary);
}

.color-secondary {
    color: var(--secondary);
}

.color-skyblue {
    color: var(--sky-blue);
}

/* COLORS */

/* font weight */
.fw-700 {
    font-weight: 700;
}

.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.fw-400 {
    font-weight: 400;
}

.fw-300 {
    font-weight: 300;
}

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

.flex-auto-0 {
    flex: 0 0 auto;
}

img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

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

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

/* Button Css Start */
.prime-btn {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-lora);
    line-height: 1;
    letter-spacing: 1px;
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 1px;
    padding: 17px 26px;
    /* width: 152px;
    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 {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .363);
    width: 170px;
    height: 60px;
    transform: translate3d(-90%, 15px, 0) rotate3d(0, 0, 1, 45deg);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.prime-btn:hover::after {
    background-color: rgba(255, 255, 255, .363);
    left: 100%;
    transform: translate3d(-10%, -30px, 0) rotate3d(0, 0, 1, 70deg);
    z-index: 0;
}

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

.prime-btn.dark-btn {
    color: white
}

.prime-btn.light-btn {
    color: var(--primary);
}

.prime-btn.dark-btn:hover {
    color: var(--primary);
    font-size: 16px;
    background-color: var(--white);
    border: 1px solid var(--primary);
}

.prime-btn.light-btn:hover {
    color: var(--white);
    font-size: 14px;
    background-color: var(--primary);
    border: 1px solid var(--white);
}

/* Button Css End */
.sec-spacing {
    padding: 100px 0;
}

.text-upper {
    text-transform: uppercase;
}

.text-decoration {
    text-decoration: underline;
}

.spinner-wrapper {
    width: 100%;
    height: 100%;
    background-color: #f8f6f6;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    position: relative;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
}

.spinner::before,
.spinner:after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.spinner:before {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #3b0000 0%, #BC8C33 100%);
    animation: spin .5s infinite linear;
}

.spinner:after {
    width: 90%;
    height: 90%;
    background-color: #f3f0f0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Default styles end */


/* ---- Index Page Style start ---- */

/* Header styles start */
.main-wrapper {
    width: 100%;
    position: relative;
}

header {
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 1111;

}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 11111;
    animation: slideDown 0.50s ease;
    margin-top: 0;
    background-color: rgb(0 0 0 / 80%);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
}

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

    to {
        transform: translateY(0);
    }
}


.navbar {
    padding: 8px 0;
    z-index: 222;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;

}


.navbar-brand {
    width: 170px;
    height: 100px;
    padding: 0;
    margin: 0;
    flex: 0 0 auto;
    /* z-index: 111; */
}

.navbar-brand img {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

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

.nav-link {
    text-transform: uppercase;
    position: relative;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: max-content;
    color: var(--white);
    margin-right: 50px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-link::after {
    position: absolute;
    content: '';
    background: white;
    height: 1px;
    width: 0;
    bottom: -4px;
    left: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::after {
    width: 60%;
}


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

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
}

.nav-item:last-child .nav-link {
    margin-right: 60px;
}

/* Header styles end */


/* Hero styles Start */
.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: 800px;
}

.hero-banner::before,
.page-hero-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    /* background-image: linear-gradient(to right, black, rgba(0, 0, 0, 0.5)); */
    opacity: .4;
}

.hero-banner::before {
    background-color: #30918C;
    opacity: 0.34;
}

.hero-banner.hero-one {
    background-image: url('../images/hero-bg-img/hero-index-one.jpg');
}

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

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

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


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

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

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

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

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

/* Hero section of all page end */

/* hero-content of all page start */
.page-hero-content {
    z-index: 11;
    position: absolute;
    bottom: 15%;
    left: 15%;
    text-align: left;
}

.page-hero-content h1 {
    font-size: 56px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

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

/* hero-content of all page end */


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

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


/* breadcrumb style end */


/* Back to top button */
.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: #244AB4;
    color: #fff;
}

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


/* About section style Start */
.sec-title {
    margin-bottom: 60px;
}

.about-content .sec-title {
    margin-bottom: 20px;
}

.about-image {
    height: 400px;
    background: #FFF;
    padding: 20px;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.25);
    margin: 10px;
}

.about-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.sec-title h6 {
    font-size: 16px;
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;

}

.sec-title h2 {
    text-transform: capitalize;
    color: #30918C;
    letter-spacing: 0.5px;
}

.about-content {
    padding-top: 10px;
    padding-left: 30px;
}

.about-content p {
    font-size: 16px;
    line-height: 36px;
    color: #010101;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.about-content a {
    font-size: 20px;
    margin-top: 20px;
    color: #30918C;
}

.about-wrapper {
    position: relative;
}

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

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px !important;
    font-size: 20px;
    width: 44px;
    height: 44px;
    border-radius: 100%;
    margin: 0;
    color: white;
    background: linear-gradient(136deg, rgba(255, 255, 255, 0.40) 14.75%, rgba(255, 255, 255, 0.10) 86.36%);
    stroke-width: 0.5px;
    stroke: rgba(255, 255, 255, 0.50);
    opacity: 0.8;
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.25));
    backdrop-filter: blur(2px);
    transition: all ease-in-out 0.3s;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 10%;
}

.owl-carousel .owl-nav button.owl-next {
    right: 10%;
}



/* About section style End */


/* Book Stay section style Start */

.booking-stay {
    background-image: url('../images/sec-bg-img/book-stay.jpg');
    min-height: auto;
}


.booking-stay-wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    max-width: 1314px;
    margin: 0 auto;
}

.booking-stay-wrap h2 {
    font-size: 64px;
    margin-bottom: 34px;
}

.booking-stay-wrap p {
    font-size: 36px;
    line-height: 56px;
    text-transform: capitalize;
}

.booking-stay-wrap a {
    margin-top: 36px;
}

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

.amenities-grid-item {
    width: 144px;
    height: 144px;
    border-radius: 144px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.20) 5.84%, rgba(255, 255, 255, 0.05) 93.66%);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
}

.amenities-grid-item-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    margin-bottom: 10px;
}


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

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

.amenities-grid-item h6 {
    font-size: 16px;
    text-transform: capitalize;
    line-height: 1.5;
}

.amenities-section {
    margin-top: 80px;
}

.amenities-section .prime-btn {
    margin-top: 60px;
}

/* Book Stay section style End */


/*-- Exclusive Offers section Start --*/
.exclusive-offer .sec-title {
    margin-bottom: 80px;
}

.exoff-bottom {
    margin-bottom: 120px;
}

.exclusive-offer-image-wrap {
    width: 100%;
    height: 330px;
    flex: 0 0 auto;
    overflow: hidden;
    z-index: 111;
    position: relative;
}


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

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

.exclusive-offer-content-wrap {
    position: relative;
    padding: 60px 90px 60px 80px;
    background: #FFF;
}

.exclusive-offer-content-wrap::after {
    content: '';
    position: absolute;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    width: 110%;
    height: 120%;
    left: -10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.center.exclusive-offer-content-wrap::after {
    right: -10%;
    left: auto;
}

.center.exclusive-offer-content-wrap {
    padding: 60px 90px 60px 100px;
}

.exclusive-offer-content-wrap h3 {
    font-size: 34px;
    color: #4F95DA;
    margin-bottom: 30px;
}

.exclusive-offer-content-wrap p {
    letter-spacing: 0.5px;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 34px;
    color: #787878;
}

.exclusive-offer-content-wrap a {
    font-size: 16px;
    color: #4F95DA;
}

/*-- Exclusive Offers section End --*/


/*-- Our Rooms section Start --*/
.our-room {
    background-image: url('../images/sec-bg-img/our-room-bg.jpg');
    min-height: auto;
}

.our-room .sec-title,
.our-room-wrapper {
    z-index: 111;
    position: relative;
}

.our-room .sec-title h2 {
    color: white;
}

.our-room-image {
    /* width: 100%; */
    height: 284px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.our-room-wrapper {
    padding: 22px 22px 60px;
    border-radius: 10px;
    border: 1px solid #FFF;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.40) 0%, rgba(153, 153, 153, 0.10) 98.85%);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
}

.our-room-content span {
    display: block;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.our-room-content h4 {
    font-size: 24px;
    margin-bottom: 30px;
}

.room-icon {
    width: 16px !important;
    height: 16px !important;
    margin-right: 22px;
    margin-left: 0;
}

.room-icon img {
    width: inherit;
    height: inherit;
    object-fit: contain;

}

.star-wrap svg {
    font-size: 14px;
    color: white;
}

.our-room-content .prime-btn {
    padding: 10px 14px;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    font-size: 16px;
    letter-spacing: 4px;
    margin-top: 20px;
}

.our-room-slider .owl-carousel .owl-nav button.owl-next,
.our-room-slider .owl-carousel .owl-nav button.owl-prev {
    font-size: 28px;
    width: 60px;
    height: 60px;
}

.our-room-slider .owl-carousel .owl-nav button.owl-prev {
    left: -10%;
}

.our-room-slider .owl-carousel .owl-nav button.owl-next {
    right: -10%;
}

/*-- Our Rooms section End --*/


/*-- Gallery section Start --*/

.gallery-image-wrap {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.25);
    padding: 12px;
    border-radius: 4px;
    overflow: hidden;
}

.gallery-image-wrap.gh-286 {
    height: 286px;
}


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

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


.photo-gallery-overlay {
    position: absolute;
    background-color: rgba(0 0 0 / 60%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

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


.search-icon {
    width: 30px;
    width: 30px;
    color: var(--white);
}

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


/*-- Gallery section Start --*/


/*-- Booking Banner section Start --*/

.booking-banner.sec-spacing {
    padding: 260px 0;
}

.booking-banner {
    background-image: url('../images/sec-bg-img/booking-banner.jpg');
    min-height: auto;
    position: relative;
}

.booking-banner-wrap {
    position: relative;
    z-index: 111;
}

.booking-banner-wrap h2 {
    font-size: 48px;
    line-height: 62px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 70px;
    max-width: 1180px;
}

.booking-banner-img {
    position: absolute;
    width: 300px;
    height: 170px;
    padding: 8px;
    border-radius: 2px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.25);
}

.booking-banner-img.left-top {
    top: 10%;
    left: 4%;
    transform: rotate(13.402deg);

}

.booking-banner-img.left-bottom {
    bottom: 10%;
    left: 4%;
    transform: rotate(-14.78deg);
}

.booking-banner-img.right-top {
    top: 10%;
    right: 4%;
    transform: rotate(-14.376deg);
}

.booking-banner-img.right-bottom {
    bottom: 12%;
    right: 4%;
    transform: rotate(29.918deg);
}

.booking-banner-img img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

/*-- Booking Banner section End --*/


/* Feedback Testimonial section start*/

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

.feedback .sec-title {
    margin-bottom: 30px;
}

.feedback-slider .owl-stage-outer {
    padding: 50px 0;
}

.feedback-slider-item {
    position: relative;
    padding: 50px 30px;
}

.feedback-slider-item::after,
.feedback-slider-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    background: #30918C;
    left: 50%;
    transform: translateX(-50%);
}

.feedback-slider-item::after {
    top: -10px;
}

.feedback-slider-item::before {
    bottom: -10px;
}

.fd-star-wrap {
    margin-bottom: 24px;
}

.fd-star-wrap svg {
    font-size: 14px;
    color: #4F95DA;
}

.feedback-slider-item p {
    font-size: 16px;
    letter-spacing: 0.5px;
    font-style: italic;
    text-transform: capitalize;
    color: #616161;
    line-height: 34px;
    margin-bottom: 50px;
}

.feedback-icon {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    margin-right: 22px;
    background-color: #30918C;
}

.feedback-bottom-wrap span {
    font-size: 20px;
    font-style: italic;
    letter-spacing: 0.5px;
}

.feedback .owl-carousel .owl-nav button.owl-next,
.feedback .owl-carousel .owl-nav button.owl-prev {
    background-color: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    font-size: 28px;
    top: 116%;
}

.feedback .owl-carousel .owl-nav button.owl-prev {
    left: 44%;
}

.feedback .owl-carousel .owl-nav button.owl-next {
    right: 44%;
}

/* Feedback Testimonial section end */



/* Footer start */
.footer-top-wrap {
    padding: 100px 0 60px 0;
    background-color: var(--primary);
}

.footer-top-wrap h3 {
    position: relative;
    font-size: 30px;
    line-height: 26px;
    margin: 40px 0 50px 0;
    max-width: max-content;
    letter-spacing: 0.5px;
}

.footer-top-wrap h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 50%;
    height: 1px;
    background: white;
}

.footer-top-wrap a,
.footer-top-wrap p {
    font-size: 16px;
    font-family: var(--font-lora);
    line-height: 2;
    letter-spacing: 0.5px;
    font-weight: 400;
    color: var(--white);
}

.footer-top-wrap svg {
    font-size: 18px;
    line-height: 1;
    margin-right: 12px;

}

.footer-top-wrap .contact-info {
    margin: 28px 0;
}


a.footer-link {
    position: relative;
    color: var(--white);
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    padding-left: 10px;
    transition: all ease-in-out 0.3s;
}

a.footer-link::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: white;
}

a.footer-link:hover {
    color: #30918C;
}

a.footer-link:not(:last-child) {
    margin-bottom: 30px;
}

.ref-content {
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
    margin: 30px auto 0 auto;
}

.footer-pl {
    padding-left: 60px;
}

.footer-top-wrap .ada-link {
    margin-top: 28px;
    position: relative;
    width: max-content;
}

.footer-top-wrap .ada-link::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: white;
}

.footer-logo {
    width: 148px;
    height: 90px;
    margin-left: 76px;
}

.footer-about {
    position: relative;
}

/* .footer-about::after,
.footer-about::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: rgba(110, 0, 0, 0.1);
}

.footer-about::after {
    right: 4%;
}

.footer-about::before {
    left: 4%;
} */

.footer-ls-contact {
    display: -webkit-flex !important;
}

.footer-bottom-wrap {
    background-color: #30918C;
    padding: 15px 10px;
}

.footer-bottom-wrap p {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

/* Footer End */

/* booking-form start */
.booking-form {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 111;
    width: 100%;
}

.booking-form-grid-wrap {
    background: rgba(0, 0, 0, 0.61);
    backdrop-filter: blur(1px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.booking-form-grid-item:not(:last-child) {
    padding: 40px 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.form-label {
    font-size: 22px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-weight: 400;
    color: white;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.form-control {
    font-size: 26px;
    font-weight: 400;
    font-family: var(--font-lora);
    background-color: transparent;
    border: none;
    border-radius: 0;
    color: white;
    padding: 10px;
    text-align: center;
}

.form-control:focus {
    outline: 0;
    box-shadow: none;
    border: none;
    background-color: transparent;
    color: white;
}


option {
    color: var(--primary);
    font-size: 20px;
}


.booking-form .prime-btn:hover {
    color: white;
}

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

.booking-form-grid-item:nth-child(1),
.booking-form-grid-item:nth-child(2) {
    position: relative;
}

.booking-form-grid-item:nth-child(1)::after {
    content: '';
    position: absolute;
    left: 90%;
    bottom: 38px;
    width: 72px;
    height: 20px;
    background: url('../images/icons/download.png') no-repeat;
    top: 50%;
    transform: translateY(-50%);
}


.booking-form-grid-item:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 60%;
    background: white;
}

.select-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}


.select-wrap svg {
    color: white;
}

select.form-control {
    text-align: left;
}

.form-control.form-number {
    width: 50px;
    padding: 0;
    font-size: 40px;
    text-align: center;
}

.booking-form-grid-item:nth-child(3) .form-group {
    display: flex;
    align-items: flex-start;
    padding-left: 30px;
}

/* booking-form end */



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

.service-page .service-amenities-grid-item {
    position: relative;
    min-height: auto;
}

.service-page .service-amenities-wrapper {
    display: grid;
    gap: 80px 40px;
    grid-template-columns: repeat(2, 1fr);
    margin: 80px 0;
}

.service-page .service-amenities-icon {
    position: absolute;
    top: -50px;
    right: 0;
    background-color: var(--white);
    width: 100px;
    height: 100px;
    border-radius: 100%;
    padding: 26px;
    box-shadow: 1px 2px 8px 0px rgba(0, 95, 115, 0.2);
}

.service-page .service-amenities-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.service-page .service-amenities-grid-item h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 0;
}

.service-page .service-amenities-grid-item {
    border-radius: 5px;
    padding: 60px 10px 30px 30px;
    box-shadow: 1px 2px 8px 0px rgba(0, 95, 115, 0.2);
}

.service-page-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.service-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in-out 0.3s;
}

.service-page-image:hover img {
    transform: scale(1.08);
}

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

/* //-- Photo-gallery page Style Start --// */

.photo-gallery-page-wrapper .nav-pills {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.photo-gallery-page-wrapper .nav-pills .nav-link {
    padding: 10px 16px;
    font-size: 18px;
    margin-right: 20px;
    margin-bottom: 0;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 0px;
    text-transform: capitalize;
}

.photo-gallery-page-wrapper .nav-link:after {
    display: none;
}

.photo-gallery-page-wrapper .nav-pills .nav-link.active,
.photo-gallery-page-wrapper .nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--primary);
}

button:focus-visible {
    outline: none;
}

.gallery-page .gallery-image-wrap {
    height: 360px;
    box-shadow: none;
    padding: 0px;
    border-radius: 2px;
    width: 100%;
}

/* //-- Photo-gallery page Style end --// */



/* Contact-us Page start */
.contact-page.sec-spacing {
    padding: 0 0 120px;
}

.contact-page-wrapper {
    width: 100%;
    padding: 80px 60px;
}

.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: 20px;
    font-weight: 400;
    line-height: 1;
    color: var(--black);
    margin-bottom: 10px;
    font-family: var(--font-lora);
}

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

.contact-us-content-items a,
.contact-us-content-items p {
    color: var(--secondary);
    font-size: 16px;
}


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

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

/* -- // 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-size: 16px;
    line-height: 1.5;
    padding: 0 0 10px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid #f2f2f2;
}

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

.ada-feature-item:last-child {
    border-bottom: none;
}

.ada-feature-image-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.note {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

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



/* -- // Attraction Page Styles Start // -- */
.attraction-main-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    margin-bottom: 60px;
}

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


.attraction-image-wrapper {
    /* width: 680px; */
    height: 420px;
    overflow: hidden;
    z-index: 111;
}

.attraction-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}

.attraction-content-wrapper:hover .attraction-image-wrapper img,
.attraction-image-wrapper:hover img {
    transform: scale(1.08);
}

.attraction-content-wrapper {
    z-index: 111;
    background: var(--sky-blue);
    margin-top: 4%;
    z-index: 11;
    border-radius: 2px;

}

.attraction-content-wrapper.pedding-left {
    padding: 50px 30px 50px 100px;
    margin-left: -5%;
}

.attraction-content-wrapper.pedding-right {
    padding: 50px 100px 50px 50px;
    margin-right: -5%;
}


.attraction-content-wrapper h5 {
    font-size: 30px;
    margin-bottom: 26px;
    letter-spacing: 0.5px;
}

.att-content-text {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.att-content-text:last-child {
    margin-bottom: 0;
}


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