:root {
    /* Fonts */
    --font-primary: "Roboto", serif;
    --font-old: "Old Standard TT", serif;
    --font-great: "Great Vibes", serif;


    /*Colors */
    --black: #010101;
    --white: #ffffff;
    --primary: #E29626;
    --secondary: #787878;
    --sky-blue: #FAF5F2;

}


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

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

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

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

.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: #c8c8c8 !important;
    opacity: 1;
}

::-webkit-input-placeholder {
    color: #c8c8c8 !important;
}

:-ms-input-placeholder {
    color: #c8c8c8 !important;
}

::-ms-input-placeholder {
    color: #c8c8c8 !important;
}

*::-moz-selection {
    background: var(--primary);
    color: #c8c8c8 !important;
}

*::selection {
    background: var(--primary);
    color: #c8c8c8 !important;
}

*::-moz-selection {
    background: var(--primary);
    color: #c8c8c8 !important;
}

*::-webkit-selection {
    background: var(--primary);
    color: #c8c8c8 !important;
}

/* Pseudo default styles end */


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

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

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


/* 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: 400;
    font-family: var(--font-primary);
    line-height: 1;
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 1px;
    letter-spacing: 0.5px;
    padding: 17px 34px;
    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:hover,
.prime-btn:focus,
.prime-btn:active,
.prime-btn:focus-visible {
    box-shadow: none;
    outline: none;
    color: var(--white);
}

.prime-btn:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #1B2B35;
    /* border: 1px solid transparent; */
    transition: all 0.3s;
    z-index: -1;
}


.prime-btn:hover {
    color: #fff;
    background-color: #1B2B35;
}

.prime-btn:hover:before {
    width: 100%;
    background-color: #1B2B35;

}

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

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

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

/* Default styles end */

/* Loader start */
/* .preloader {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999999;
    overflow: hidden;
}

.preloader .vertical-centered-box {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
}

.preloader .vertical-centered-box:after {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}

.preloader .vertical-centered-box .content {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    font-size: 0;
}

.preloader * {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.preloader .loader-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    -webkit-box-shadow: inset 0 0 0 1px rgb(255 0 0 / 10%);
    box-shadow: inset 0 0 0 1px rgb(255 0 0 / 10%);
    margin-left: -60px;
    margin-top: -60px;
}

.preloader .loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 120px;
    margin-left: -60px;
    margin-top: -60px;
    overflow: hidden;
    -webkit-transform-origin: 60px 60px;
    transform-origin: 60px 60px;
    -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    -webkit-animation: rotate 1.2s infinite linear;
    animation: rotate 1.2s infinite linear;
}

.preloader .loader-line-mask .loader-line {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    -webkit-box-shadow: inset 0 0 0 1px rgb(0 0 0 / 50%);
    box-shadow: inset 0 0 0 1px rgb(0 0 0 / 50%);
}

.preloader #particles-background,
.preloader #particles-foreground {
    left: -51%;
    top: -51%;
    width: 202%;
    height: 202%;
    -webkit-transform: scale3d(0.5, 0.5, 1);
    transform: scale3d(0.5, 0.5, 1);
}

.preloader #particles-background {
    background: #2C2D44;
    background-image: linear-gradient(45deg, #3F3251 2%, #002025 100%);
}

.preloader lesshat-selector {
    -lh-property: 0;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.preloader [not-existing] {
    zoom: 1;
}

.preloader lesshat-selector {
    -lh-property: 0;
}

@-webkit-keyframes fade {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

@keyframes fade {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

.preloader [not-existing] {
    zoom: 1;
}

.preloader lesshat-selector {
    -lh-property: 0;
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.preloader [not-existing] {
    zoom: 1;
}


.loader-image {
    width: 170px;
    height: 100px;
}

.loader-image img {
    width: inherit;
    height: inherit;
    object-fit: contain;
} */

/* Loader End */


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

/* Header styles start */
header {
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    padding: 0 215px;
    position: absolute;
    z-index: 1111;
}

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

}

.navbar-wrapper {
    width: 100%;
    background-color: var(--white);
    z-index: 222;
    display: flex;
    align-items: center;
    padding: 11px 40px;
    border-radius: 4px;
    margin-top: 34px;
}


.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 215px;
    animation: slideDown 0.50s ease;
    background-color: var(--white);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);

}

.fixed-header .navbar-wrapper {
    margin-top: 0;
}

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

    to {
        transform: translateY(0);
    }
}

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

.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: 400;
    width: max-content;
    color: var(--black);
    margin-right: 50px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 15px;
    background: var(--primary);
    right: -25px;
    top: 50%;
    /* transform: translateY(-50%); */
    transform: rotate(0.02turn) translateY(-50%);
}

.nav-item:nth-child(5) .nav-link::after {
    display: none;
}

.nav-item:nth-child(5) .nav-link {
    margin-right: 0;
}

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

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

.navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    align-items: center;
    justify-content: center;
}

.mobile-nav-btn {
    display: none;
}

.desktop-nav-btn {
    display: block;
}

/* Header styles end */


/* Hero styles Start */
.hero-wrapper {
    position: relative;
}

.hero-banner,
.page-hero-banner,
.exclusive-offer::after,
.best-comfort,
.faqs-wrapper {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 900px;
}

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

.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;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.page-hero-content h1 {
    font-size: 68px;
}

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

/* hero-content of all page end */


/* breadcrumb style Start */
.page-hero-banner .breadcrumb-wrap {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -28px;
    text-align: center;
}

.page-hero-banner .breadcrumb {
    position: relative;
    display: inline-block;
    padding: 20px 40px;
    background-color: var(--primary);
    margin-bottom: 0;
}

.page-hero-banner .breadcrumb li {
    font-size: 20px;
    position: relative;
    line-height: 1.2em;
    font-weight: 500;
    display: inline-block;
    color: var(--white);
    border-right: 1px solid #d7c397;
    margin-right: 15px;
    padding-right: 15px;
}

.page-hero-banner .breadcrumb li:last-child {
    border: none;
    margin-right: 0px;
    padding-right: 0px;
    padding-left: 0;
}

.page-hero-banner .breadcrumb li a {
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
}

.page-hero-banner .breadcrumb-item+.breadcrumb-item::before {
    display: none;
}


/* 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: #f3bb55;
    color: #fff;
}

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

/* Hero styles end */

/* owl arrow start */
.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%;
    width: 70px;
    height: 70px;
    background: #F0E4D2;
    color: var(--primary);
    border-radius: 100%;
    font-size: 40px;
    margin: 0;
    transition: all ease-in-out 0.3s;
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
    background: var(--primary);
    color: var(--white);
}

.owl-carousel .owl-nav button.owl-prev {
    left: 80px;
}

.owl-carousel .owl-nav button.owl-next {
    right: 80px;
}

/* owl arrow end */

/* Booking Form style Start */
.booking-form-wrapper {
    position: relative;
    bottom: 60px;
    left: 0;
    margin: 0 200px;
    /* background: #787878; */
    z-index: 111;
}

.web-res-form {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.form-group {
    padding: 42px 50px;
    background-color: #1B2B35;
    /* margin-bottom: 20px; */
}

.form-group:last-child {
    padding: 0;
    background-color: transparent;
}

/* .form-label {
    font-size: 18px;
    color: white;
    font-family: var(--font-primary);
    margin-bottom: 10px;
    line-height: 23px;
} */

.form-control {
    font-size: 22px;
    font-family: var(--font-primary);
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgb(255, 255, 255, 0.5);
    border-radius: 0px;
    background-color: transparent;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    color: white;
    padding: 0 0 17px 0px;
    margin-left: 40px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-family: var(--font-primary);
}

select.form-control option {
    color: #000 !important;
    padding: 4px 10px !important;
}

select {
    padding: 0 8px 17px !important;
}

.form-control:focus,
.form-control:focus-visible {
    color: white;
    background-color: transparent;
    border: 1px solid transparent;
    outline: 0;
    box-shadow: none;
}

.input-group {
    position: relative;
}

.input-icon {
    font-size: 30px;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    color: #898989;
}

.web-res-form .prime-btn {
    width: 230px;
    height: 100%;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
    background-color: var(--primary);
}

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


.ui-widget.ui-widget-content {
    z-index: 111 !important;
}

/* Booking Form style End */


/* About section style Start */

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

.about-image-wrap {
    width: 100%;
    height: 260px;
    border-bottom: 18px solid white;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

.about-image-wrap.mt-40 {
    margin-top: 40px;
}

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

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

.sec-title {
    margin-bottom: 55px;
}

.sec-title h4 {
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: capitalize;
}

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

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

.about-content-wrap p {
    font-size: 16px;
    text-transform: capitalize;
    line-height: 32px;
    margin-bottom: 20px;
    text-align: justify;
    letter-spacing: 0.5px;
}

.about-content-wrap a {
    margin-top: 30px;
    position: relative;
    display: block;
    max-width: max-content;
    letter-spacing: 1px;
    transition: all ease-in-out 0.3s;
}

.about-content-wrap a::after {
    content: '';
    position: absolute;
    display: block;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    width: 75%;
    height: 1px;
    background: var(--primary);
    transition: all ease-in-out 0.3s;
}

.about-content-wrap a:hover::after {
    width: 90%;
}

/* About section style End */

/* Exclusive Offers section Start */
.exclusive-offer {
    position: relative;
}

.exclusive-offer.sec-spacing {
    padding: 200px 0 0px 0;
}

.exclusive-offer::after {
    content: '';
    background-image: url('../images/sec-bg-img/offer-bg.jpg');
    min-height: 637px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    z-index: -1;

}

.exclusive-offer-wrapper {
    padding: 70px;
    background-color: var(--white);
}

.exclusive-offer-wrapper h3 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exclusive-offer-image-wrap {
    height: 224px;
    width: 100%;
    overflow: hidden;
}

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

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


.exclusive-offer-content-wrap {
    background-color: #DAE4DF;

}

.exclusive-offer-content-top-wrap {
    padding: 40px 30px;
    height: 280px;
}

.exclusive-offer-content-wrap h4 {
    font-size: 26px;
    margin-bottom: 16px;
    text-align: center;
    color: #000000;
}

.exclusive-offer-content-wrap p {
    font-size: 16px;
    color: #787878;
    line-height: 30px;
    text-transform: capitalize;
    /* margin-bottom: 40px; */

}

.exclusive-offer-btn .prime-btn {
    background-color: #1B2B35;
    width: 170px;
    letter-spacing: 1px;
    padding: 17px 12px;
}

.exclusive-offer-btn .prime-btn:hover:before {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Exclusive Offers section End */


/* Best Comfort section Start */
.best-comfort {
    background-image: url('../images/sec-bg-img/stay-comfort.jpg');
    min-height: auto;
}

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

.best-comfort-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 100px;
}

.best-comfort-wrap h3 {
    font-style: italic;
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.best-comfort-wrap h2 {
    font-size: 52px;
    line-height: 68px;
    letter-spacing: -2px;
    margin-bottom: 50px;
}

.best-comfort-email-wrap {
    width: 100%;
}

.comfort-info-wrap {
    margin-bottom: 40px;
}

.comfort-info-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    background-color: var(--primary);
    border-radius: 6px;
    margin-right: 12px;
}

.comfort-info-icon svg {
    font-size: 22px;
    color: var(--white);
}

.comfort-info-wrap:hover .comfort-info-icon svg {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

.comfort-info-content p {
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    line-height: 1;
}

.comfort-info-content span {
    font-size: 22px;
    line-height: 1;
    word-break: break-word;
}

/* Best Comfort section End */


/* Service Amenities section Start */
.service-amenities {
    background-color: #1B2B35;
}

.service-amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 60px;
}

.service-amenities-grid-item-icon {
    width: 75px;
    height: 75px;
    margin-bottom: 30px;
}

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

.service-amenities-grid-item h3 {
    font-size: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    line-height: 30px;
}

.service-amenities-grid-item p {
    font-size: 18px;
    line-height: 34px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.view-all-link {
    margin-top: 60px;
    font-size: 22px;
    letter-spacing: 0.5px;
    position: relative;
}

.view-all-link::after {
    position: absolute;
    content: '';
    background-image: url('../images/icons/service-arrow.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    bottom: -20px;
    right: -20px;
    height: 16px;
}

/* Service Amenities section End */

/* Our rooms section section Start */
.our-room-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.our-room-content-wrapper {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    padding-top: 8%;
}

.our-room-image-wrapper {
    width: calc(100% - 45%);
}

.our-room-image-item {
    position: relative;
    width: 100%;
    height: 720px;
}

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

.our-room-content-wrap {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 50px 60px;
    width: 80%;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
}

.our-room-content-wrap h3 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.our-room-content-wrap p {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.book-now-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 80px;
    height: 80px;
    color: white;
    background-color: var(--primary);
    border-radius: 50%;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all ease-in-out 0.5s;
}

.book-now-btn:hover {
    background-color: #1B2B35;
    color: var(--white);
}

.our-room-content-wrapper .sec-title {
    margin-bottom: 26px;
}

.our-room-content-wrapper p {
    font-size: 16px;
    text-transform: capitalize;
    line-height: 34px;
    color: #787878;
    letter-spacing: 0.2px;
    width: 584px;
}

.our-room-wrapper .owl-carousel .owl-nav button.owl-next,
.our-room-wrapper .owl-carousel .owl-nav button.owl-prev {
    top: 72%;
    width: 65px;
    height: 65px;
    font-size: 30px;
    margin: 0;
}

.our-room-wrapper .owl-carousel .owl-nav button.owl-prev {
    left: -48%;
}

.our-room-wrapper .owl-carousel .owl-nav button.owl-next {
    right: 134%;
}

/* Our rooms section section End */


/* Feedback section Start */
.feedback {
    background-color: #1B2B35;
}

.oh-none {
    overflow: hidden;
}

.feedback-image-wrap {
    border-radius: 10px;
    /* height: 500px; */
    height: 100%;
    width: 100%;
    /* overflow: hidden; */
    position: relative;
    /* transition: all ease-in-out 0.3s; */
}

.feedback-image-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    border-radius: 10px;
    transition: all ease-in-out 0.3s;
}


.feedback-image-wrap img:hover {
    transform: scale(1.1);
}

.feedback-content-wrap {
    width: 100%;
    height: 100%;
    border: 1px solid white;
    padding: 100px 100px 70px;
    position: relative;
}

.feedback-content-grid p {
    text-transform: capitalize;
    font-size: 20px;
    line-height: 44px;
    letter-spacing: 1px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.feedback-footer {
    margin-top: 40px;
}

.avatar-wrap {
    width: 60px;
    height: 60px;
    margin-right: 12px;
}

.star-wrap svg {
    font-size: 12px;
    margin-right: 4px;
    color: var(--primary);
    margin-bottom: 12px;
}

.fd-content-wrap h6 {
    font-size: 20px;
    letter-spacing: 0.5px;
    line-height: 1;
}

.feedback .owl-carousel .owl-nav button.owl-next,
.feedback .owl-carousel .owl-nav button.owl-prev {
    top: 82%;
    font-size: 22px;
    width: 50px;
    height: 50px;
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.feedback .owl-carousel .owl-nav button.owl-next:hover,
.feedback .owl-carousel .owl-nav button.owl-prev:hover {
    color: var(--primary);
}

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

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

.feedback-icon-wrap {
    position: absolute;
    top: -75px;
    right: -95px;
    z-index: 11;
    /* background-color: var(--primary); */
    /* width: 110px;
    height: 110px;
    border-radius: 50%;
    padding: 22px;
    box-shadow: 0px 0px 0px 15px #1B2B35;
    z-index: 11; */
}

/* .feedback-icon-wrap-border {
    position: absolute;
    top: -49px;
    left: -52px;
    font-size: 25px;
    padding: 56px;
    border-style: solid;
    background-color: #F2F2EC00;
    color: #F2F2EC00;
    border-width: 1px 1px 1px 1px;
    border-color: var(--secondary);
    border-radius: 50% 50% 50% 50%;
    z-index: 1;
} */

/* Feedback section End */


/* FAQ's section Start */

.faqs-wrapper {
    background-image: url('../images/sec-bg-img/faq-bg.jpg');
    min-height: auto;
}

.faqs-accordion {
    margin: 0 110px;
}

.faqs-accordion .accordion-button:focus {
    z-index: 3;
    border-color: rgba(0, 0, 0, 0.01);
    outline: 0;
    box-shadow: none;
}

.faqs-accordion .accordion-button {
    font-family: var(--font-old);
    font-size: 24px;
    line-height: 1.2;
    color: #000000;
    padding: 24px 40px;
    background-color: #FAF5F2;
    border: none;
}

.faqs-accordion .accordion-button:not(.collapsed) {
    color: #000000;
    background-color: #FAF5F2;
    box-shadow: none;
}

.faqs-accordion .accordion-body {
    font-size: 18px;
    letter-spacing: 0.5px;
    line-height: 1.6;
    background-color: #FAF5F2;
    color: #787878;
    padding: 0px 40px 26px 40px;
}

.faqs-accordion .accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url('../images/icons/down.png');
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}

.faqs-accordion .accordion-button:not(.collapsed)::after {
    background-image: url('../images/icons/down.png');
}

.faqs-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.faqs-accordion .accordion-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

.faqs-accordion .accordion-item:first-of-type {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.faqs-accordion .accordion {
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}

/* FAQ's section End */


/* Gallery section Start */
.gallery.sec-spacing {
    padding: 0 0 120px;
}

.photo-gallery-wrap {
    width: 100%;
    height: 368px;
    position: relative;
    display: block;
    overflow: hidden;
}

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

.photo-gallery-wrap:hover img {
    transform: scale(1.08);
}

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

.photo-gallery-overlay {
    position: absolute;
    background-color: rgb(0 0 0 / 50%);
    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 .prime-btn {
    margin-top: 70px;
}

.g-view-more-link {
    position: relative;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.g-view-more-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 60%;
    height: 1px;
    background: var(--primary);
}

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

/* Gallery section End */



/* Footer Section Start */
.footer-top-wrap {
    background-color: #1B2B35;
    padding: 100px 0 0;
}

.ft-title {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1;
}

.ft-about-us-wrap p {
    text-transform: capitalize;
    text-align: justify;
    font-size: 16px;
    line-height: 38px;
    color: var(--white);
    margin-bottom: 38px;
    letter-spacing: 0.5px;
    padding-right: 24px;
}

.footer-wrap .prime-btn {
    max-width: max-content;
    padding: 18px 26px;
}

.footer-wrap .prime-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.ft-contact-us-wrap p,
.ft-contact-us-wrap a {
    font-size: 16px;
    line-height: 32px;
    color: var(--white);
    z-index: 111;
    letter-spacing: 0.5px;
    position: relative;
    font-weight: 400;
    margin-bottom: 30px;
    word-break: break-word;
    transition: all ease-in-out 0.3s;
}

.ft-contact-us-wrap a:hover {
    color: var(--primary);
}

.ft-contact-us-wrap p svg,
.ft-contact-us-wrap a svg {
    color: var(--primary);
}


.ft-contact-us-wrap {
    position: relative;
    width: 100%;
}


.ft-contact-us-wrap::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 90%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.16);

}

.ft-contact-us-wrap a {
    display: block;
    word-break: break-all;

}

.checkIn-checkOut-text span {
    display: block;
    font-size: 16px;
    line-height: 26px;
    z-index: 111;
    position: relative;
    margin-bottom: 2px;
    color: var(--white);
}

.calendar-icon {
    z-index: 111;
    position: relative;
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    margin-right: 12px;
}

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

.ft-contact-us-left-wrap,
.ft-contact-us-wrap .ft-title {
    padding-left: 40px;
}

.ft-contact-us-right-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.ft-image-wrap {
    overflow: hidden;
}

.ft-image-wrap img {
    width: 100%;
    height: 115px;
    object-fit: cover;
    transition: all ease-in-out 0.3s;
}

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

.footer-link-wrap {
    padding: 30px 0;
    margin-top: 50px;
    z-index: 111;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-link-wrap::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.footer-link {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    margin-right: 60px;
    transition: all ease-in-out 0.3s;
}

.footer-link:last-child {
    margin-right: 0px;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-bottom-wrap {
    padding: 14px 10px;
}

.footer-bottom-wrap p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

/* Footer Section end */


/*-- Service Amenities section Start --*/

.service-page .service-amenities-icon-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 30px;
    z-index: 111;
}

.service-page .service-amenities-icon-item {
    padding: 30px 8px;
    border-radius: 8px;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

.service-page .service-amenities-icon {
    width: 84px;
    height: 84px;
    border: 1px solid var(--primary);
    border-radius: 6px;
    padding: 18px;
    margin-bottom: 30px;
    margin-right: 0;
}

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

.service-page .service-amenities-icon-item h5 {
    font-size: 18px;
    line-height: 1.5;
}

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

.general-other-policies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.general-other-policies-wrap {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    width: 100%;
    height: 100%;
}



.policies-content-wrap {
    position: relative;
    text-transform: capitalize;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 16px;
    padding-left: 20px;
}


.policies-content-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: var(--primary);

}


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

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

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

/*-- Service Amenities section End --*/


/* ---- Contact-us page start---- */

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

.info-wrapper-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

}

.info-wrapper {
    padding: 40px 20px;
    background-color: var(--sec-bg-color);
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.info-wrapper svg {
    font-size: 34px;
    margin-bottom: 30px;
}

.info-wrapper h5 {
    font-size: 22px;
    margin-bottom: 18px;
}

.info-wrapper p,
.info-wrapper a {
    font-size: 18px;
    line-height: 1.5;
    word-break: break-word;
}

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

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