:root {
    /* Fonts */
    --font-primary: "Jost", sans-serif;
    --font-cmt: "Cormorant Garamond", serif;

    /*Colors */
    --black: #1A1A1A;
    --white: #ffffff;
    --primary: #005F73;
    --secondary: #787878;
    --sky-blue: #FAF5EF;

}



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

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

/* Pseudo default styles start */

::placeholder {
    color: #898989 !important;
    opacity: 1;
}

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

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

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

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

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

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

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

/* Pseudo default styles end */


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

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



/* 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;
    letter-spacing: 1px;
    background-color: var(--primary);
    color: var(--white);
    border: 0px solid transparent;
    border-radius: 2px;
    padding: 17px 26px;
    /* width: 150px;
    height: 52px; */
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-shadow: none;
}

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

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

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

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

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



/* Button Css End */

.sec-spacing {
    padding: 120px 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 */
header {
    width: 100%;
    left: 0;
    right: 0;
}

.header-top {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--black);
    color: var(--white);
    padding: 15px 0;

}

.header-top a,
.head-top-add {
    color: var(--white);
    font-size: 15px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.header-top a {
    margin-right: 40px;
}

.ht-icons {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: var(--primary);
    padding: 6px;
    margin-right: 10px;
}

.ht-icons svg {
    /* font-size: 14px; */
    color: var(--white);
    transition: all 0.9s ease;
}

.header-top a:hover .ht-icons svg,
.head-top-add:hover .ht-icons svg {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

.navbar {
    padding: 0px;
    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-color: var(--white);
    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: 120px;
    height: 110px;
    padding: 0;
    margin: 0;
    /* 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: 400;
    letter-spacing: 0.2px;
    width: max-content;
    color: #000000;
    margin-right: 50px;
    -webkit-transition: all 0.3s;
    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;
}

.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-res,
.service-amenities {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 760px;
}

.hero-banner::before,
.page-hero-banner::before,
.booking-res::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: .4;
}

.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-banner.hero-four {
    background-image: url('../images/hero-bg-img/hero-index-four.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: 58px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.sec-page-title {
    font-size: 38px;
    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: #179ab4;
    color: #fff;
}

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

/* Hero styles end */
.hero-text-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 111;
}

.hero-text {
    width: 100%;
    text-align: center;

}

.hero-text h4 {
    font-size: 20px;
    font-style: italic;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1;
}

.hero-text h1 {
    text-transform: capitalize;
    line-height: 90px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    max-width: 733px;
}

.hero-text .prime-btn {
    padding: 18px 22px;
}

/* owl Arrow start */

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    padding: 12px !important;
    font-size: 40px;
    border: 1px solid #EEEEEE;
    border-radius: 100%;
    margin: 0;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out 0.4s;
}

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

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

.owl-theme .owl-nav [class*=owl-]:hover {
    background: var(--primary);
    color: #FFF;
    border-color: var(--primary);
}

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

/* owl Arrow end */

/* About section Start */

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

.sec-sub-title {
    position: relative;
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 auto 16px auto;
    max-width: max-content;
    display: flex;
    align-items: center;
}

.title-img {
    width: 20px;
    height: 5px;
    display: inline-flex;
}

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

.sec-sub-title::before,
.sec-sub-title::after {
    content: '';
    /* background-image: url('../images/icons/title-img.png'); */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: var(--primary);
}

.sec-sub-title::before {
    left: -40px;
}

.sec-sub-title::after {
    right: -35px;
}


.about-content-wrap .sec-sub-title::after {
    display: none;
}

.about-content-wrap .sec-sub-title::before {
    left: 0px;
}

.about-content-wrap .sec-sub-title {
    margin: 0 0 10px;
    font-size: 18px;
    padding-left: 40px;
}

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

.about-wrapper {
    border-radius: 30px;
    background: white;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}

.about-image-wrap {
    width: 100%;
    height: 100%;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
}

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

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

.about-content-wrap {
    padding: 60px 24px 60px 40px;
}

.about-content-wrap p {
    text-transform: capitalize;
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 20px;
    color: #787878;
}

.about-content-wrap .prime-btn {
    margin-top: 36px;
}

/* About section End */


/*Exclusive Offers section Start */
.exclusive-offer-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.exclusive-offer-grid-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.exclusive-offer-grid-item:hover img {
    transform: scale(1.08);
}

.exclusive-offer-grid-content {
    padding: 40px 40px 40px 30px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: calc(100% - 200px);
}

.exclusive-offer-grid-content-title {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.exclusive-offer-content-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 auto;
}

.exclusive-offer-content-icon img {
    width: inherit;
    height: inherit;
    object-fit: contain;
    transition: all 0.9s ease;
}

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


.exclusive-offer-grid-content-title span {
    width: 1px;
    height: 60px;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 20px;
}

.exclusive-offer-grid-content p {
    text-transform: capitalize;
    font-size: 15px;
    line-height: 28px;
    margin: 24px 0 30px 0;
}

.exclusive-offer-grid-content .prime-btn {
    font-size: 12px;
    max-width: max-content;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 15%);
    border-radius: 30px;
    color: #1A1A1A;
    transition: all ease-in-out 0.3s;
}

.eo-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    z-index: 111;
    margin-left: 6px;
    background: var(--primary);
    color: var(--white);
    border-radius: 100%;
    transition: all ease-in-out 0.3s;
}

.eo-icon svg {
    font-size: 10px;
}

.exclusive-offer-grid-content .prime-btn::after {
    background-color: var(--primary);
}

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

.exclusive-offer-grid-content .prime-btn:hover .eo-icon {
    background: #a9c0c5;
    color: var(--primary);
}

/*Exclusive Offers section  End */


/*Booking reservation section  Start */
.booking-res {
    background-image: url('../images/sec-bg-img/booking-res-bg.jpg');
    min-height: auto;
}

.booking-res::before {
    opacity: 0.65;
}

.booking-res.sec-spacing {
    padding: 80px 0;
}


/* Booking Form */
.web-res-form {
    padding: 50px;
    background-color: var(--white);
    border-radius: 4px;
    z-index: 111;
    position: relative;
}

.web-res-form h2 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    font-size: 20px;
    font-weight: 600;
    color: #1C1C1C;
    font-family: var(--font-cmt);
    margin-bottom: 10px;
    line-height: 24px;
}

.form-control {
    font-size: 16px;
    width: 100%;
    height: 50px;
    border: 1px solid transparent;
    border-radius: 0px;
    background-color: #E5E5E5;
    font-weight: 400;
    line-height: 1;
    color: var(--black);
    padding: 10px 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-family: var(--font-primary);
}

.form-control:focus {
    border: 1px solid #E5E5E5;
    outline: 0;
    box-shadow: none;
}

.input-group {
    position: relative;
}

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

.web-res-form .prime-btn {
    width: 100%;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 6px;
    background-color: var(--primary);
    margin-top: 10px;
}

.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-res select,
.booking-res .input-group>.form-select,
.booking-res .input-group>.form-select option {
    width: 80% !important;
} */


/* Booking Form*/

.general-policies-details-wrap {
    position: relative;
    z-index: 111;
    padding-left: 70px;
}

.star-wrap {
    margin-bottom: 20px;
}

.star-img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.general-policies-details-text {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.general-policies-details-text span {
    font-size: 16px;
}

.br-info-wrap {
    margin-top: 30px;
}

.br-info-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    flex: 0 0 auto;
}

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

.br-info-content-title,
.br-info-content-text {
    line-height: 1;
    letter-spacing: 0.5px;
}

.br-info-content-title {
    font-size: 16px;
    margin-bottom: 12px;
}

.br-info-content-text {
    font-size: 20px;
    word-break: break-all;
    transition: all ease-in-out 0.3s;
}

a.br-info-content-text:hover {
    color: #00acd0;
}

.booking-res-map-wrap {
    width: 484px;
    height: 187px;
    margin-top: 40px;
}

/*Booking reservation section  End */

/* Service Amenities section Start */
.service-amenities {
    background-image: url('../images/sec-bg-img/service-amenities-bg.png');
    min-height: auto;
    height: 630px;
}

.service-amenities-left-wrapper {
    padding-left: 40px;
}

.service-amenities-left-wrapper .sec-sub-title {
    margin: 0 0 12px;
}

.service-amenities-left-wrapper .sec-sub-title::before {
    display: none;
}

.service-amenities-left-wrapper .sec-title h2 {
    width: 400px;
    line-height: 55px;
}

.service-amenities-left-wrapper .sec-title {
    margin-bottom: 24px;
}

.service-amenities-left-wrapper p {
    font-size: 16px;
    line-height: 30px;
    padding-right: 40px;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.sa-view-all-link {
    font-size: 20px;
    display: inline-block;
}

.sa-arrow img {
    object-fit: contain;
}

.sa-ada-feature-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    width: 160px;
    height: 160px;
    border-radius: 100%;
    background-color: var(--primary);
    border: 17px solid white;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.20);

}

.sa-ada-feature-wrap img {
    transition: all 0.9s ease;
}

.sa-ada-feature-wrap:hover img {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}


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

.service-amenities-grid-item {
    padding: 30px 24px 24px;
    min-height: 275px;
    background-color: var(--white);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.10);
}

.service-amenities-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
}

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

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

.service-amenities-grid-item h4 {
    margin-bottom: 16px;
    line-height: 1.5;
}

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


/* Service Amenities section End */


/* Our Rooms section start */
.our-room.sec-spacing {
    padding: 240px 0 120px 0;
}

.our-rooms-slider-item {
    width: 100%;
    display: flex;
    padding: 26px;
    background-color: var(--white);
    margin: 10px;
    border-radius: 10px;
    /* box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06); */
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;

}

.our-rooms-slider-image {
    width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;

}

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

.our-rooms-slider-item:hover img {
    transform: scale(1.08);
}


.our-rooms-slider-content {
    width: calc(100% - 300px);
    padding: 20px 0 0 24px;
}

.our-rooms-slider-content h3 {
    font-size: 22px;
}

.icon-wrap {
    margin-bottom: 20px;
    font-size: 14px;
}

.icon-wrap:last-child {
    margin-bottom: 25px;
}

.rooms-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    margin-right: 8px;
}

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

.our-rooms-slider-content h3 {
    font-size: 30px;
    line-height: 1.5;
    letter-spacing: 0;
    margin-bottom: 18px;
}

.our-rooms-slider-content p {
    font-size: 15px;
    color: #787878;
    line-height: 1.5;
    margin-bottom: 20px;
}

.icon-wrap {
    display: flex;
    align-items: center;
}

.our-rooms-slider .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 60px;
}

.our-rooms-slider .owl-theme .owl-dots .owl-dot span {
    width: 30px;
    height: 8px;
    margin: 0px 4px;
    background: #dddddd;
    border-radius: 26px;
}

.our-rooms-slider .owl-theme .owl-dots .owl-dot.active span {
    width: 32px;
    background: var(--primary);
}

/* Our Rooms section end */

/* Gallery section start */
.gallery {
    position: relative;
}

.gallery::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 200px;
    background: #17191F;
    left: 0;
    right: 0;
    bottom: -2px;
    z-index: 11;
}

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

.gallery-grid-wrap {
    max-width: 1496px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    z-index: 111;
    position: relative;
}


.gallery-image-wrap.img-375 {
    height: 375px;
}

.gallery-image-wrap.gap-24 {
    margin-bottom: 24px;
}

.gallery-image-wrap {
    width: 280px;
    height: 265px;
    position: relative;
    display: block;
}

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

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

.gallery-image-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;
    padding: 18px 30px;
}

/* Gallery section end */

/* Feedback Section start */
.feedback {
    background-color: #17191F;
}

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

.feedback-icon {
    width: 240px;
    height: 240px;
    border: 1px solid white;
    border-radius: 100%;
    flex: 0 0 auto;
    margin-right: 50px;
}

.feedback-icon img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.feedback-grid-item p {
    text-transform: capitalize;
    font-size: 24px;
    line-height: 48px;
    color: #DAD6D6;
    margin-bottom: 40px;
    width: 740px;
    letter-spacing: 0.5px;
}

.feedback-grid-item span {
    font-size: 30px;
    position: relative;
    padding-left: 80px;
}

.feedback-grid-item span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 1px;
    background: white;
}

.feedback-slider .owl-carousel .owl-nav button.owl-next,
.feedback-slider .owl-carousel .owl-nav button.owl-prev {
    font-size: 16px;
    width: 40px;
    height: 40px;
    right: 10%;
    left: auto;
    background-color: transparent;
}

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


.feedback-slider .owl-carousel .owl-nav button.owl-prev {
    top: 30%;
}

.feedback-slider .owl-carousel .owl-nav button.owl-next {
    top: 50%;
}

.feedback-slider #feedback-owl-carousel {
    overflow: hidden;
}

/* Feedback Section end */


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

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

.ft-about-us-wrap p {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 32px;
    color: #626262;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
    padding-right: 16px;
}

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

.ft-contact-us-wrap p,
.ft-contact-us-wrap a {
    font-size: 18px;
    line-height: 32px;
    color: #626262;
    z-index: 111;
    letter-spacing: 0.5px;
    position: relative;
    font-weight: 400;
    margin-bottom: 26px;
    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(0, 0, 0, 0.1);

}

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

.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(0, 0, 0, 0.1);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.footer-link {
    color: #1c1c1c;
    font-size: 18px;
    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: 15px;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

/* Footer Section 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: 400px;
    width: 100%;
}

/* //-- Photo-gallery page Style 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);
    /* color: rgba(0, 95, 115,0.4); */

}

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

.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: 100%;
    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 --// */



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

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

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

.contact-us-content-items a,
.contact-us-content-items p {
    color: #686868;
    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 */


/* -- // Local Attraction Page Styles Start // -- */
.attraction-page-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
}

.attraction-section-wrap {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    padding: 30px;
    background-color: var(--sky-blue);
    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: 320px;
    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: 30px;

}


.item-list {
    margin-bottom: 10px;
    background-color: var(--white);
    color: var(--secondary);
    padding: 10px 18px;
    line-height: 1;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    transition: all ease-in-out 0.3s;
}

.item-list p {
    font-size: 18px;
    line-height: 2.2;
    transition: all ease-in-out 0.3s;
}

.item-list:hover {
    background-color: var(--primary);
}

.item-list:hover P {
    color: var(--white);
}

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