/* fontawasome-link */
@import url('https://pro.fontawesome.com/releases/v6.0.0-beta3/css/all.css');

/* fontawasome-link */


:root {
    --primary-color: #274a48;
    --deep-black: #000000;
    --secondry-color: #1b3634;
    --color-black: #1f2a2a;
    --color-white: #ffffff;
    --theme-color: #f8f6f1;
    --color-red-light: #6d1d30;
    --color-red-dark: #8b263e;
    --white-bg: #fcfaf6;
    --dark-bg: #202828;
    --light-black: #6f7b7b;
    --heading-color: #274a48;
    --light-white: #faf9f7;
    --gold-light: #d8bc8c;
    --primary-font: "Roboto", sans-serif;
    --secondry-font: "Exo 2", sans-serif;
}

html {
    font-size: 62.5%;
}

body {
    background: url(../images/body-bg.png);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--primary-font);
}

a {
    text-decoration: none !important;
}

ul {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

h1,
h2,
h3,
h4,
h5,
a {
    font-family: var(--secondry-font);
}

.img-coverr {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ptb {
    padding: 6rem 0;
}

.sec-pt {
    padding-top: 6rem;
}

.sec-pb {
    padding-bottom: 6rem;
}

.sec-title {
    /* font-weight: 600; */
    font-size: 30px;
    line-height: 1.6;
    letter-spacing: 0.05rem;
    line-height: 1.4;
    margin-bottom: .8rem;
}


.abt-btn {
    position: relative;
    display: inline-block;
    padding: 13px 30px;
    background-color: var(--primary-color);
    color: var(--color-white);
    font-family: var(--secondry-font);
    font-weight: 500;
    text-transform: uppercase;
    overflow: clip;
    transition: color 0.3s ease;
    z-index: 1;
    font-size: 1.5rem;
    border-radius: .5rem;
}

.abt-btn:hover i {
    transform: translateX(2px);
    transition: 0.4s linear;
}

.abt-btn span {
    position: relative;
    z-index: 2;
}

.abt-btn::before,
.abt-btn::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--color-red-light);
    transition: transform 0.3s ease;
    z-index: 1;
}

.abt-btn::before {
    top: 0;
    transform: translateX(-100%);
}

.abt-btn::after {
    bottom: 0;
    transform: translateX(100%);
}

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

.abt-btn:hover::before,
.abt-btn:hover::after {
    transform: translateX(0);
}


p {
    font-size: 1.6rem;
    line-height: 1.7;
    letter-spacing: 0.02rem;
}

.f-bold-500 {
    font-weight: 500 !important;
}

.f-bold-600 {
    font-weight: 600 !important;
}

.f-bold-700 {
    font-weight: 700 !important;
}

.f-bold-800 {
    font-weight: 800 !important;
}

.f-s-13 {
    font-size: 13px !important;
}

.f-s-14 {
    font-size: 14px !important;
}

.f-s-15 {
    font-size: 15px !important;
}

.f-s-16 {
    font-size: 16px !important;
}

.f-s-17 {
    font-size: 17px !important;
}


/* header-start */

.main-header-wrap {
    width: 100%;
    position: relative;
    z-index: 100;
}

.header-marquee-bar {
    background-color: var(--deep-black);
    color: var(--color-white);
    padding: 0.8rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 0.1rem solid #2d2d2d;
}

.marquee-wrapper {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-scroll 34s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 10rem;
}

.marquee-content span {
    font-family: var(--primary-font);
    font-size: 1.5rem;
    letter-spacing: 0.05rem;
}

@keyframes marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

.navbar-custom {
    background-color: var(--dark-bg);
    height: 10.5rem;
    display: flex;
    align-items: center;
    position: relative;
}

.logo-box {
    background-color: var(--color-white);
    height: 120px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2.5rem;
    position: relative;
    top: 19px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05),
        0 12px 30px rgba(0, 0, 0, 0.08);
}

.logo-link img {
    max-height: 9rem;
    width: auto;
    object-fit: contain;
}

.desktop-menu-wrapper {
    margin-left: 4rem;
    display: flex;
    flex-grow: 1;
    justify-content: center;
    gap: 1rem;
}

.nav-links-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.2rem;
    margin: 0;
    padding: 0;
}

.nav-links-list li a {
    color: var(--light-white);
    font-size: 1.6rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.08rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links-list li a:hover {
    color: var(--gold-light);
}


.desktop-hamburger {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
}


.desktop-double-dropdown {
    position: absolute;
    top: calc(100% + 3.5rem);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondry-color);
    border: 0.1rem solid #2c4745;
    width: 28rem;
    display: none;
    /* grid-template-columns: 1fr 1fr; */
    gap: 2.2rem;
    padding: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
}

.desktop-double-dropdown.show {
    display: grid;
}

.dropdown-column h5 {
    color: var(--gold-light);
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    border-bottom: 0.1rem solid rgba(216, 188, 140, 0.2);
    padding-bottom: 0.5rem;
}

.dropdown-column a {
    display: block;
    color: var(--light-white);
    font-size: 1.6rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.08rem;
    padding: 0.5rem 0;
    text-align: end;
}


.right-action-box {
    height: 100%;
}

.toll-free-info {
    text-align: right;
    display: block;
}

.toll-free-info .label {
    display: block;
    color: #a5b1b1;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.toll-free-info .value {
    color: var(--color-white);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.02rem;
}

.btn-book-stay {
    background-color: #2b4947;
    color: var(--color-white);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-decoration: none;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 3rem;
    border-bottom: 0.5rem solid #94b94b;
    position: relative;
    isolation: isolate;
}

.btn-book-stay::before,
.btn-book-stay::after {
    z-index: -1;
}

.mobile-hamburger-btn {
    background: none;
    border: none;
    width: 3.5rem;
    height: 2.4rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 2rem;
    cursor: pointer;
    position: relative;
    z-index: 3000;
}

.mobile-hamburger-btn .bar {
    width: 100%;
    height: 0.3rem;
    background-color: var(--color-white);
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.mobile-hamburger-btn.open .bar-1 {
    transform: translateY(1rem) rotate(45deg);
    background-color: var(--gold-light);
}

.mobile-hamburger-btn.open .bar-2 {
    opacity: 0;
}

.mobile-hamburger-btn.open .bar-3 {
    transform: translateY(-1rem) rotate(-45deg);
    background-color: var(--gold-light);
}

.mobile-left-drawer {
    position: fixed;
    top: 0;
    left: -32rem;
    width: 32rem;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 2500;
    transition: left 0.3s ease-in-out;
    box-shadow: 0.5rem 0 2.5rem rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.mobile-left-drawer.active {
    left: 0 !important;
}

.drawer-header {
    padding: 2.5rem;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.drawer-title {
    color: var(--gold-light);
    font-size: 2rem;
    text-transform: uppercase;
    margin: 0;
}

.drawer-body {
    padding: 2rem 2.5rem;
    overflow-y: auto;
    flex: 1;
}

.drawer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.drawer-links li {
    margin-bottom: 1.8rem;
}

.drawer-links li a {
    color: var(--color-white);
    font-size: 1.6rem;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
}

.drawer-links li.divider {
    height: 0.1rem;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0;
}

.drawer-links li a.highlight-link {
    color: var(--gold-light);
}

.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: none;
}

.drawer-backdrop.active {
    display: block !important;
}

.main-hdr-menu.hdr-fix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2500;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.3);
    animation: navbarSlideDown 0.3s ease-out forwards;
}


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

    to {
        transform: translateY(0);
    }
}



@media(max-width:1540px) {

    .nav-links-list li a,
    .btn-book-stay {
        font-size: 1.5rem;
    }

    .logo-link img {
        max-height: 8rem;
    }

}

@media (max-width: 1199px) {

    .desktop-menu-wrapper,
    .toll-free-info {
        display: none !important;
    }

    .mobile-hamburger-btn {
        display: flex !important;
    }

    .navbar-custom {
        height: 7.5rem;
        justify-content: space-between;
    }

    .logo-box {
        padding: 0 1.5rem;
    }

    .logo-link img {
        max-height: 5.5rem;
    }

    .right-action-box {
        margin-left: auto;
        margin-right: 2rem;
    }

    .btn-book-stay {
        padding: 0 2rem;
        font-size: 1.3rem;
    }

    .main-hdr-menu.hdr-fix {
        height: 7.5rem;
    }

    .main-hdr-menu.hdr-fix~.mobile-left-drawer {
        z-index: 3000;
    }

    .main-hdr-menu.hdr-fix~.drawer-backdrop {
        z-index: 2999;
    }

    .logo-box {
        height: 100%;
        position: static;
    }

    .mobile-left-drawer {
        min-height: 103vh !important;
    }
}

@media(max-width:991px) {

    .right-action-box {
        display: none !important;
    }

    .navbar-custom .hdr-cont-wrpr {
        justify-content: space-between !important;
    }

    .mobile-hamburger-btn {
        width: 3rem;
        height: 2.2rem;
        z-index: 300;
    }

    .mobile-left-drawer {
        width: 26rem;
    }

}

/* header-end */

/* float-btn */

.contact-float {
    position: fixed;
    right: -47px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    background: #2f575a;
    color: #fff;
    padding: 14px 23px !important;
    line-height: 1;
    letter-spacing: 0.2rem;
    font-size: 16px !important;
    font-weight: 400;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
    z-index: 999;
    border-radius: .2rem;
    isolation: isolate;
    outline: none !important;
    border: none;
}

.contact-float::after,
.contact-float::before {
    z-index: -1;
}

/* float-btn */

/* contact-from-modal */



.cnct-mdoal-frm .custom-modal-width {
    max-width: 48.0rem;
    width: 92%;
    margin-top: 2.0rem;
    margin-bottom: 2.0rem;
}

.cnct-mdoal-frm .custom-modal-content {
    background-color: var(--white-bg);
    border: none;
    border-radius: 0;
    position: relative;
    box-shadow: 0 1.0rem 3.0rem rgba(0, 0, 0, 0.15);
}


.cnct-mdoal-frm .custom-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 4.5rem;
    height: 4.5rem;
    background-color: #b3b3b3;
    border: none;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    z-index: 10;
}

.cnct-mdoal-frm .custom-close-btn:hover {
    background-color: #a6a6a6;
}


.cnct-mdoal-frm .custom-modal-body {
    padding: 5.0rem 4.0rem 4.0rem 4.0rem;
}


.cnct-mdoal-frm .form-group-custom {
    margin-bottom: 2.5rem;
}

.cnct-mdoal-frm .form-group-custom label {
    display: block;
    font-family: var(--primary-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: #909d9d;
    letter-spacing: 0.14rem;
    margin-bottom: .84rem;
}

.cnct-mdoal-frm .form-control-custom {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 0.1rem solid #b8c4c4;
    border-radius: 0;
    padding: 0.6rem 0;
    font-family: var(--primary-font);
    font-size: 1.6rem;
    color: var(--primary-color);
    outline: none;
    transition: border-color 0.2s ease;
}

.cnct-mdoal-frm .form-control-custom:focus {
    border-color: var(--primary-color);
}


.cnct-mdoal-frm .form-control-custom::placeholder {
    color: #b8c4c4;
    opacity: 1;
}

.cnct-mdoal-frm .phone-input-wrapper {
    display: flex;
    align-items: center;
}

.cnct-mdoal-frm .flag-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-right: 1.0rem;
    border-bottom: 0.1rem solid #b8c4c4;
    height: 3.5rem;
    cursor: pointer;
}

.cnct-mdoal-frm .flag-dropdown img {
    width: 2.0rem;
    height: auto;
    object-fit: contain;
}

.cnct-mdoal-frmv .flag-dropdown i {
    font-size: 1.0rem;
    color: var(--light-black);
}

.cnct-mdoal-frm .phone-input-wrapper .form-control-custom {
    padding-left: 1.0rem;
}


.cnct-mdoal-frm .select-custom {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.cnct-mdoal-frm .select-icon-custom {
    position: absolute;
    right: 0;
    bottom: 1.0rem;
    font-size: 1.2rem;
    /* color: #9cb44c; */
    pointer-events: none;
}


.cnct-mdoal-frm .textarea-custom {
    resize: vertical;
    min-height: 3.5rem;
}


.cnct-mdoal-frm .btn-submit-custom {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--color-white);
    border: none;
    padding: 1.4rem 2.0rem;
    font-family: var(--secondry-font);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 3.5rem;
    isolation: isolate;
}

.cnct-mdoal-frm .btn-submit-custom:after,
.cnct-mdoal-frm .btn-submit-custom:before {
    z-index: -1;
}

.cnct-mdoal-frm .flag-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 0.1rem solid #b8c4c4;
    height: 3.5rem;
}

.cnct-mdoal-frm .flag-select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.cnct-mdoal-frm .flag-select option,
.contact-pg-from .flag-select option {
    font-size: 1.4rem;
}

.cnct-mdoal-frm .flag-visual {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-right: 1.0rem;
    pointer-events: none;
    z-index: 1;
}

.flag-visual img {
    width: 2.0rem;
    height: auto;
    object-fit: contain;
}

.cnct-mdoal-frm .flag-visual i {
    font-size: 1.0rem;
    color: var(--light-black);
}

.cnct-mdoal-frm .phone-input-wrapper {
    display: flex;
    align-items: center;
}

.cnct-mdoal-frm .phone-input-wrapper .form-control-custom {
    padding-left: 1.2rem;
}

@media (max-height: 575px) {
    .cnct-mdoal-frm .custom-modal-body {
        padding: 4.0rem 3.0rem 3.0rem 3.0rem;
    }

    .cnct-mdoal-frm .form-group-custom {
        margin-bottom: 1.8rem;
    }

    .cnct-mdoal-frm .btn-submit-custom {
        margin-top: 2.0rem;
    }
}

/* contact-from-modal */


/* banner-start */
.hero-slider-section {
    position: relative;
    width: 100%;
}

.hero-slider-section .item {
    position: relative;
    width: 100%;
}

.hero-slider-section .slide-img-box {
    width: 100%;
    height: 65vh;
    overflow: hidden;
}

.hero-slider-section .slide-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-slider-section .slider-info-bar {
    background-color: #f1f3f3;
    padding: 2.5rem 4rem;
    width: 100%;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.05);
}

.hero-slider-section .slider-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 0.05rem;
    margin: 0;
    text-transform: uppercase;
}


.hero-slider-section .slider-call-btn {
    width: 4.5rem;
    height: 4.5rem;
    background-color: var(--color-white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.08);
    font-size: 1.6rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-slider-section .slider-call-btn:hover {
    background-color: var(--primary-color);
    color: var(--color-white);
}


.heroslider.owl-carousel {
    position: relative;
}

.heroslider .owl-nav {
    position: absolute;
    top: 32.5vh;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 4rem;
    pointer-events: none;
    margin-top: 0;
}


.heroslider .owl-nav button.owl-prev,
.heroslider .owl-nav button.owl-next {
    width: 4.5rem;
    height: 4.5rem;
    background: rgba(0, 0, 0, 0.3) !important;
    color: var(--color-white) !important;
    border-radius: 50%;
    border: 0.1rem solid rgba(255, 255, 255, 0.6) !important;
    font-size: 1.6rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.heroslider .owl-nav button.owl-prev:hover,
.heroslider .owl-nav button.owl-next:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}


.heroslider .owl-dots {
    position: absolute;
    bottom: 10.5rem;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
}

.heroslider .owl-dots .owl-dot span {
    width: 0.8rem;
    height: 0.8rem;
    background: rgba(255, 255, 255, 0.6);
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.heroslider .owl-dots .owl-dot.active span {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* banner-end */

/* banner-booking-form-start */

.booking-engine-container {
    width: 100%;
    background-color: transparent;
}

.booking-engine-container .bnr-bking-frm {
    background-color: #175959;
    padding: 3.5rem 4rem 2.5rem 4rem;
    border-radius: 0.4rem;
}

.booking-engine-container .bnr-bking-frm .booking-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 1.6fr 1.4fr 1fr;
    gap: 2rem;
    align-items: flex-end;
}

.booking-engine-container .bnr-bking-frm .bking-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.booking-engine-container .bnr-bking-frm .bking-label {
    font-family: var(--primary-font);
    font-size: 1.4rem;
    font-weight: 500;
    color: #a9cbcb;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
}

.booking-engine-container .bnr-bking-frm .select-field-box {
    position: relative;
    width: 100%;
}

.booking-engine-container .bnr-bking-frm .bking-select,
.booking-engine-container .bnr-bking-frm .room-selector-trigger,
.booking-engine-container .bnr-bking-frm .bking-input {
    width: 100%;
    height: 4.8rem;
    background-color: var(--color-white);
    border: 0.1rem solid var(--deep-black);
    border-radius: 0.4rem;
    padding: 0 1.5rem;
    font-family: var(--primary-font);
    font-size: 1.5rem;
    color: var(--color-black);
    display: flex;
    align-items: center;
    cursor: pointer;
    outline: none;
    appearance: none;
}

.booking-engine-container .bnr-bking-frm .bking-select {
    padding-right: 3.5rem;
}

.booking-engine-container .bnr-bking-frm .select-arrow {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--color-black);
    pointer-events: none;
}


.booking-engine-container .bnr-bking-frm .native-date-range-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 4.8rem;
    background-color: #ffffff;
    border: 0.1rem solid var(--deep-black);
    border-radius: 0.4rem;
    padding: 0 1.5rem;
}

.booking-engine-container .bnr-bking-frm .date-input-block {
    flex: 1;
    display: flex;
    align-items: center;
}

.booking-engine-container .bnr-bking-frm .bking-date-input {
    width: 100%;
    border: none;
    background: transparent;
    font-family: var(--primary-font);
    font-size: 1.5rem;
    color: var(--color-black);
    font-weight: 500;
    outline: none;
    cursor: pointer;
}

.booking-engine-container .bnr-bking-frm .bking-date-input::-webkit-calendar-picker-indicator {
    color: #a88a58;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.booking-engine-container .bnr-bking-frm .bking-date-input::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.booking-engine-container .bnr-bking-frm .date-arrow-sep {
    color: var(--color-black);
    font-size: 1.5rem;
    padding: 0 1rem;
    display: flex;
    align-items: center;
}


.booking-engine-container .bnr-bking-frm .room-selector-trigger {
    position: relative;
    padding: 0;
}

.booking-engine-container .bnr-bking-frm .room-display-input {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    padding: 0 4rem 0 1.5rem;
    cursor: pointer;
    font-size: 1.5rem;
}

.booking-engine-container .bnr-bking-frm .trigger-plus-icon {
    position: absolute;
    right: 1.5rem;
    font-size: 1.6rem;
    color: var(--color-black);
}

.booking-engine-container .bnr-bking-frm .custom-room-dropdown {
    position: absolute;
    top: 105%;
    right: 0;
    width: 28rem;
    background-color: var(--color-white);
    border: 0.1rem solid #cccccc;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.12);
    z-index: 2000;
    display: none;
    flex-direction: column;
}

.booking-engine-container .bnr-bking-frm .custom-room-dropdown.show {
    display: flex;
}

.booking-engine-container .bnr-bking-frm .room-config-block {
    border-bottom: 0.2rem solid #eeeeee;
}

.booking-engine-container .bnr-bking-frm .room-block-hdr {
    background-color: var(--secondry-color);
    color: var(--color-white);
    padding: 0.6rem 1.2rem;
    font-family: var(--secondry-font);
    font-size: 1.3rem;
}

.booking-engine-container .bnr-bking-frm .btn-remove-room {
    background: none;
    border: 0.1rem solid var(--color-white);
    color: var(--color-white);
    border-radius: 50%;
    width: 1.8rem;
    height: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
}

.booking-engine-container .bnr-bking-frm .guest-selector-row {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-engine-container .bnr-bking-frm .guest-type-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-engine-container .bnr-bking-frm .guest-lbl {
    font-family: var(--primary-font);
    font-size: 1.4rem;
    color: var(--light-black);
}

.booking-engine-container .bnr-bking-frm .counter-control {
    display: flex;
    align-items: center;
    border: 0.1rem solid #dddddd;
    border-radius: 0.4rem;
    overflow: hidden;
}

.booking-engine-container .bnr-bking-frm .count-btn {
    width: 2.8rem;
    height: 2.6rem;
    background-color: #fafafa;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000ad;
}

.booking-engine-container .bnr-bking-frm .count-btn:hover {
    background-color: #eeeeee;
}

.booking-engine-container .bnr-bking-frm .count-val {
    width: 3rem;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-black);
}

.booking-engine-container .bnr-bking-frm .room-block-hdr .room-title {
    font-size: 1.42rem;
}

.booking-engine-container .bnr-bking-frm .dropdown-actions-footer {
    padding: 1rem;
    background-color: #f9f9f9;
    text-align: center;
}

.booking-engine-container .bnr-bking-frm .btn-add-new-room {
    background: none;
    border: none;
    color: var(--primary-color);
    font-family: var(--secondry-font);
    font-size: 1.38rem;
    font-weight: 600;
    cursor: pointer;
}


.booking-engine-container .bnr-bking-frm .search-btn-wrapper {
    margin-top: 2.5rem;
    text-align: center;
}

.booking-engine-container .bnr-bking-frm .btn-frm-search {
    background-color: var(--primary-color);
    color: var(--color-white);
    font-family: var(--secondry-font);
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 1rem 4.5rem;
    border: none;
    border-radius: 0.4rem;
    letter-spacing: 0.05rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    isolation: isolate;
}

.booking-engine-container .bnr-bking-frm .btn-frm-search:after,
.booking-engine-container .bnr-bking-frm .btn-frm-search:before {
    z-index: -1;
}

.booking-engine-container .bnr-bking-frm .btn-frm-search:hover {
    background-color: var(--secondry-color);
}

/* banner-booking-form-end*/

/* about-sec-start*/

.hme-pg-abt-sec .abt-title {
    color: var(--heading-color);
}

.hme-pg-abt-sec .abt-text {
    color: var(--color-black);
    line-height: 1.7;
}

.hme-pg-abt-sec .abt-img img {
    border-radius: 8px;
}

/* about-sec-end*/

/* luxury-sec-start*/

.luxury-sec {
    background: #f5f6fa;
}

.luxury-badge-hdr {
    background: radial-gradient(15px at 40px 40px, #0000 90%, #E0E5E6) -40px -40px;
    padding: 2rem 5rem;
    position: relative;
}

.luxury-badge-hdr h2 {
    font-family: var(--secondry-font);
    color: var(--primary-color);
    /* font-size: 30px; */
    font-weight: 500;
    letter-spacing: 0.15rem;
    margin: 0;
    text-transform: uppercase;
}

.luxury-sec .luxury-slide-item {
    padding: 1rem;
}


.luxury-sec .luxury-img-box {
    position: relative;
    overflow: hidden;
    mask: radial-gradient(15px at 0 40px, #0000 90%, #000) 0 -40px;
}

.luxury-sec .luxury-img-box img {
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.luxury-sec .luxury-slide-item:hover .luxury-img-box img {
    transform: scale(1.03);
}


.luxury-sec .luxury-content-box {
    text-align: left;
}

.luxury-sec .luxury-title {
    font-family: var(--secondry-font);
    color: var(--primary-color);
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.luxury-sec .luxury-desc {
    margin-bottom: 2.2rem;

}


.luxury-sec .luxury-carousel.owl-carousel {
    position: relative;
}

.luxury-sec .luxury-carousel.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}


.luxury-sec .luxury-carousel.owl-carousel .owl-nav button.owl-prev,
.luxury-sec .luxury-carousel.owl-carousel .owl-nav button.owl-next {
    width: 4.5rem;
    height: 4.5rem;
    background: var(--color-white) !important;
    border: 1px solid var(--primary-color) !important;
    border-radius: 50% !important;
    color: var(--primary-color) !important;
    font-size: 1.5rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}


.luxury-sec .luxury-carousel.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -6rem;
}

.luxury-sec .luxury-carousel.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -11rem;
}

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


.luxury-sec .luxury-carousel.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 3rem;
}

.luxury-sec .luxury-carousel.owl-carousel .owl-dot span {
    background: #d1dedd !important;
    width: 1rem;
    height: 1rem;
    margin: 0 0.5rem;
    display: inline-block;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.luxury-sec .luxury-carousel.owl-carousel .owl-dot.active span {
    background: var(--primary-color) !important;
    transform: scale(1.2);
}

/* luxury-sec-end*/

/* spotlight-sec-start */


.spotlight-sec .spotlight-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: transparent;
}

.spotlight-sec .spotlight-img-box {
    overflow: hidden;
    margin-bottom: 2.5rem;
    border-radius: 1.2rem;
}

.spotlight-sec .spotlight-img-box img {
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
    transition: transform 0.4s ease;
}

.spotlight-sec .spotlight-card:hover .spotlight-img-box img {
    transform: scale(1.03);
}

.spotlight-sec .spotlight-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.spotlight-sec .spotlight-title {
    font-family: var(--secondry-font);
    color: var(--primary-color);
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.05rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    line-height: 1.6;

}

.spotlight-sec .spotlight-desc {
    color: var(--light-black);
    line-height: 1.7;
    text-align: start;
}

/* spotlight-sec-end */


/* cta-sec-start */

.cta-sec .cta-cont-wrpr .cta-text-overlay {
    position: absolute;
    top: 54px;
    left: 52px;
    max-width: 38%;
    z-index: 10;
}

.cta-sec .cta-cont-wrpr .cta-text-overlay p {
    font-size: 19px;
    line-height: 1.9;
}

.cta-sec .cta-cont-wrpr:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 97%;
    height: 92%;
    background: radial-gradient(circle at top left, rgba(255, 196, 90, .25) 0%, transparent 40%), radial-gradient(circle at bottom right, rgba(0, 200, 255, .15) 0%, transparent 45%), linear-gradient(90deg, rgba(15, 25, 25, .92) 0%, rgba(15, 25, 25, .75) 35%, rgba(15, 25, 25, .35) 65%, rgba(15, 25, 25, .10) 100%);
    z-index: 5;
    border-radius: 1rem;
    border: 2px solid #ffc107;
}

/* cta-sec-end */

/* room-sec-start  */

.hme-pg-room-sec .hme-pg-room-sec {
    background: #f5f6fa;
}

.hme-pg-room-sec .room-grid-card {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.hme-pg-room-sec .room-img-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 1.2rem;
}

.hme-pg-room-sec .room-img-box img {
    object-fit: cover;
    display: block;
    aspect-ratio: 1 / 1;
    transition: transform 0.5s ease;
    object-position: 0;
}


.hme-pg-room-sec .room-img-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}


.hme-pg-room-sec .room-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 2;
    text-align: left;
}

.hme-pg-room-sec .room-hotel-name {
    font-family: var(--secondry-font);
    color: var(--color-white);
    font-size: 1.9rem;
    display: block;
    font-weight: 600;
    margin-bottom: .8rem;
    letter-spacing: 0.03rem;
}

.hme-pg-room-sec .room-location {
    font-family: var(--primary-font);
    color: var(--color-white);
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.04rem;
}

.hme-pg-room-sec .room-grid-card:hover .room-img-box img {
    transform: scale(1.04);
}


/* room-sec-end  */

/* features-sec-start  */

.wht-knwn-sec {
    position: relative;
    background: #f5f6fa;
    overflow: hidden;
}

.wht-knwn-sec .marquee-wrapper {
    position: relative;
    width: 100%;
}

.wht-knwn-sec .marquee-track {
    display: flex;
    width: max-content;
}

.wht-knwn-sec .marquee-group {
    display: flex;
    align-items: center;
    gap: 6rem;
    animation: marquee-scroll-2 34s linear infinite;
}

.wht-knwn-sec .marquee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.wht-knwn-sec .marquee-icon {
    width: 42px;
    height: 42px;
    font-size: 2rem;
    color: #35535a;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wht-knwn-sec .marquee-content {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.wht-knwn-sec .marquee-content h4 {
    margin: 0;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    color: #173845;
}

.wht-knwn-sec .marquee-content p {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.3;
    color: #173845;
    opacity: .9;
    letter-spacing: 0.02rem;
    padding-top: .4rem;
}


@keyframes marquee-scroll-2 {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.wht-knwn-sec::before,
.wht-knwn-sec::after {
    content: "";
    position: absolute;
    top: 0;
    width: 30rem;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.wht-knwn-sec::before {
    left: 0;
    background: linear-gradient(to right, #f5f6fa 0%, transparent 100%);
}

.wht-knwn-sec::after {
    right: 0;
    background: linear-gradient(to left, #f5f6fa 0%, transparent 100%);
}


/* features-sec-end  */


/* footer-sec-start  */


.ftr-sec-main {
    background-color: var(--dark-bg);
    padding: 6rem 0 0 0;
    color: var(--color-white);
    overflow: hidden;
}

.ftr-sec-main .ftr-widget {
    text-align: left;
}

.ftr-sec-main .ftr-heading {
    font-family: var(--secondry-font);
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.08rem;
    margin-bottom: 3rem;
    position: relative;
}


.ftr-sec-main .ftr-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ftr-sec-main .ftr-links-list li {
    margin-bottom: 1.2rem;
}

.ftr-sec-main .ftr-links-list li a {
    font-family: var(--primary-font);
    color: #b3c1c0;
    font-size: 1.6rem;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    display: inline-block;
}

.ftr-sec-main .ftr-links-list li a:hover {
    color: var(--color-red-light);
}


.ftr-sec-main .ftr-contact-info .company-name {
    font-family: var(--secondry-font);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.03rem;
    margin-bottom: 2.5rem;
    color: var(--color-white);
}

.ftr-sec-main .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.ftr-sec-main .contact-item .icon-box {
    font-size: 1.7rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}


.ftr-sec-main .contact-item .location-icon {
    color: #a3c465;
}

.ftr-sec-main .contact-item p {
    font-family: var(--primary-font);
    font-size: 1.6rem;
    line-height: 1.6;
    color: #b3c1c0;
    margin: 0;
}

.ftr-sec-main .contact-item p a {
    color: #b3c1c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ftr-sec-main .contact-item p a:hover,
.ftr-sec-main .contact-item p a.link-url:hover {
    color: var(--color-red-light);
}

.ftr-sec-main .text-muted-label {
    font-size: 1.3rem;
    color: #7b8e8d;
    margin-top: 0.2rem;
}

.ftr-sec-main .contact-item p a.link-url {
    margin-top: 0.5rem;
}


.ftr-sec-main .ftr-brand-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ftr-sec-main .ftr-logo-box {
    margin-bottom: 4rem;
    max-width: 19rem;
}

.ftr-sec-main .ftr-logo-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.ftr-sec-main .ftr-social-links .social-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    gap: 1.2rem;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.ftr-sec-main .ftr-social-links .social-icon:hover {
    background-color: var(--color-red-light);
    color: var(--color-white);
    transform: translateY(-3px);
}


.ftr-sec-main .ftr-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 0;
    margin-top: 6rem;
    background-color: #1a2222;
}

.ftr-sec-main .copyright-text a.ftr-highlight:hover {
    color: #a3c465 !important;
    border-bottom-color: #a3c465 !important;
}


.ftr-sec-main .time-highlight {
    color: #ffffff;
    font-weight: 400;
}


.ftr-sec-main .ftr-bottom-socket {
    background-color: #202828;
    border-top: 0.05rem solid rgba(255, 255, 255, 0.08);
}

.ftr-sec-main .copyright-text {
    color: var(--color-white);
    font-size: 15px;
    letter-spacing: 0.03rem;
    line-height: 2rem;
    opacity: 0.7;
}

.ftr-sec-main .copyright-text .ftr-highlight {
    font-size: 17px;
    color: #a3c465 !important;
    font-weight: 500;
}

.ftr-sec-main .copyright-text a.ftr-highlight {
    border-bottom: 0.1rem solid transparent;
    transition: 0.3s ease;
}

/* footer-sec-end  */


/* carrer-page */

/* bnr */

.carrrer-innr-bnr {
    background-color: var(--dark-bg);
    overflow: clip;
    padding-bottom: 3.5rem;
}


.carrrer-innr-bnr .banner-img-wrap {
    width: 100%;
    height: 70rem;
    position: relative;
}

.carrrer-innr-bnr .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


.carrrer-innr-bnr .banner-caption-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(156, 163, 168, 0.85);
    padding: 2.2rem 1.5rem;
    z-index: 5;
    backdrop-filter: blur(0.4rem);
}

.carrrer-innr-bnr .banner-caption-title {
    font-family: var(--secondry-font);
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--secondry-color);
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    margin: 0;
}


.carrrer-innr-bnr .owl-dots {
    position: absolute;
    bottom: -3.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 0.8rem;
    margin-top: 0 !important;
    padding: 1.5rem 0;
}

.carrrer-innr-bnr .owl-dots .owl-dot {
    outline: none;
}

.carrrer-innr-bnr .owl-dots .owl-dot span {
    display: block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #515e5e !important;
    margin: 0 !important;
    transition: background-color 0.3s ease, transform 0.3s ease;
}


.carrrer-innr-bnr .owl-dots .owl-dot.active span,
.carrrer-innr-bnr .owl-dots .owl-dot:hover span {
    background-color: var(--primary-color) !important;
    transform: scale(1.15);
}

/* bnr */


/* join-sec */

.join-sec .join-sec-main-cont p {
    font-size: 1.9rem;
    line-height: 1.8;
    letter-spacing: 0.03rem;
}

/* join-sec */

/* carrer-abt */
.carrer-abt-dtls.custom-video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 0.8rem;
    background-color: var(--deep-black);
    aspect-ratio: 16 / 10;
}

.mayfair-about-overview .custom-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.carrer-abt-dtls .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6rem;
    height: 6rem;
    background-color: var(--primary-color);
    border: 0.2rem solid var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease;
}

.carrer-abt-dtls .video-play-btn i {
    font-size: 2rem;
    color: var(--color-white);
}

.carrer-abt-dtls .video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--secondry-color);
}


.carrer-abt-dtls .custom-video-wrapper.video-playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}


.carrer-abt-dtls .custom-video-wrapper {
    height: 40rem;
    border-radius: 1.2rem;
}


.carrer-abt-dtls .about-image-frame {
    border-radius: 0.8rem;
    aspect-ratio: 16 / 10;
}

.carrer-abt-dtls .about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.carrer-abt-dtls .about-section-subtitle {
    font-family: var(--secondry-font);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--heading-color);
    letter-spacing: 0.05rem;
    line-height: 1.4;
}

.carrer-abt-dtls .about-section-desc,
.aspir-sec .aspire-btm-pra {
    font-family: var(--primary-font);
    font-size: 1.7rem;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.8;
    text-align: left;
}

/* carrer-abt */

/* aspire-sec */

.aspire-slider .owl-nav {
    margin-top: 0 !important;
    position: static;
}

.aspire-slider .owl-nav button.owl-prev,
.aspire-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4.6rem;
    height: 4.6rem;
    background-color: var(--color-white) !important;
    border: 0.15rem solid var(--color-black) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.04);
}


.aspire-slider .owl-nav button.owl-prev {
    left: -6rem;
}

.aspire-slider .owl-nav button.owl-next {
    right: -6rem;
}

.aspire-slider .owl-nav button i {
    font-size: 1.4rem;
    color: var(--color-black);
    font-weight: 600;
    transition: transform 0.2s ease, color 0.2s ease;
}


.aspire-slider .owl-nav button:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.aspire-slider .owl-nav button:hover i {
    color: var(--color-white);
}


.aspire-slider .owl-nav button.owl-prev:hover i {
    transform: translateX(-0.2rem);
}

.aspire-slider .owl-nav button.owl-next:hover i {
    transform: translateX(0.2rem);
}


/* aspire-sec */


/* carrer-page */

/* dinning-page */

/* dining-experience */

.dinin-exper-sub-tle {
    font-size: 24px;
    font-weight: 500;
    color: var(--heading-color);
    line-height: 1.8;
    letter-spacing: 0.03rem;
    display: inline-block;
    padding: .5rem 0 1.5rem;
}

/* chef-sec */

.chef-sec .owl-carousel .owl-nav.disabled {
    display: block !important;
}

/* chef-sec */

/* dining-loc-sec */

.dinng-loc-sec .loc-sub-title {
    font-size: 24px;
    color: #9ca3af;
    letter-spacing: 0.15rem;
    font-weight: 500;
}

.dinng-loc-sec .dining-tab-dropdown {
    max-width: 26rem;
    border-bottom: 0.1rem solid #8f9399fc;
}

.dinng-loc-sec .dining-tab-dropdown .dropdown-toggle {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0.6rem 0.5rem;
    font-family: var(--primary-font);
    font-size: 1.6rem;
    color: #6b7280;
    box-shadow: none !important;
}

.dinng-loc-sec .dining-tab-dropdown .dropdown-toggle i {
    font-size: 1.4rem;
    color: #6b7280;
    font-weight: 600;
}

.dinng-loc-sec .dining-tab-dropdown .dropdown-menu {
    border: 0.1rem solid #e5e7eb;
    border-radius: 0.6rem;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.05);
    background-color: var(--color-white);
    padding: 0.5rem 0;
}

.dinng-loc-sec .dining-tab-dropdown .dropdown-item,
.dinng-loc-sec .dining-tab-dropdown #selectedLocation {
    font-family: var(--primary-font);
    font-size: 1.7rem;
    color: var(--color-black);
    padding: 0.8rem 1.6rem;
    text-align: left;
    background: none;
    border: none;
    width: 100%;
}

.dinng-loc-sec .dining-tab-dropdown .dropdown-item:hover,
.dinng-loc-sec .dining-tab-dropdown .dropdown-item.active {
    background-color: var(--theme-color);
    color: var(--primary-color);
}


.dinng-loc-sec .dining-card {
    background: transparent;
    transition: transform 0.3s ease;
}

.dinng-loc-sec .dining-card .img-wrapper {
    aspect-ratio: 1 / 1;
    background-color: #f3f4f6;
}

.dinng-loc-sec .dining-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dinng-loc-sec .dining-card:hover .img-wrapper img {
    transform: scale(1.04);
}

.dinng-loc-sec .dining-title {
    font-family: var(--secondry-font);
    font-size: 1.6rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.dinng-loc-sec .dining-desc {
    font-family: var(--primary-font);
    font-size: 1.4rem;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0;
}

.dining-tab-dropdown .dropdown-toggle::after {
    display: none;
}

/* dining-loc-sec */

/* dining-experience */

/* dinning-page */


/* contact-page */

/* bnr */

.contact-innr-bnr {
    background-size: cover !important;
    background-position: bottom center !important;
    background-repeat: no-repeat !important;
    padding: 11rem 0;
    position: relative;
    isolation: isolate;
}

.contact-innr-bnr .innr-bnr-txt-cont {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

.contact-innr-bnr .innr-bnr-txt-cont h1 {
    font-size: 42px;
    color: var(--color-white);
    font-weight: 600;
    letter-spacing: 0.1rem;
}

.contact-innr-bnr.innr-bnr-txt-cont .innr-bredcumb {
    position: relative;
    padding-top: 1.5rem;
}

.contact-innr-bnr:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000094;
    z-index: -1;
}

.contact-innr-bnr .innr-bnr-txt-cont .innr-bredcumb nav {
    justify-content: center;
    margin-bottom: 0;
    padding: 0;
    background: transparent;
}


.contact-innr-bnr .innr-bnr-txt-cont .innr-bredcumb .breadcrumb-item {
    font-weight: 500;
    display: flex;
    align-items: center;
    font-size: 1.8rem;
}


.contact-innr-bnr .innr-bnr-txt-cont .innr-bredcumb .breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-innr-bnr .innr-bnr-txt-cont .innr-bredcumb .breadcrumb-item a:hover {
    color: var(--color-red-dark);
}


.contact-innr-bnr .innr-bnr-txt-cont .innr-bredcumb .breadcrumb-item.active {
    color: var(--color-red-dark) !important;
}

.innr-bnr-txt-cont .innr-bredcumb .breadcrumb-item+.breadcrumb-item::before {
    content: "\f105" !important;
    font-family: "Font Awesome 6 Pro" !important;
    font-weight: 900;
    color: #ffffff;
    font-size: 1.6rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    opacity: 0.8;
    display: inline-block;
    vertical-align: middle;
    padding-top: .5rem;
}

/* bnr */

/* contact-main-start */

.contct-tle-badge .sec-title {
    font-size: 24px;
    letter-spacing: 0.02rem;
}

.contact-pg-from .contct-tle {
    font-family: var(--secondry-font);
    font-size: 2.9rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.05rem;
}

.contact-pg-from .info-contact-item .icon-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.contact-pg-from .contact-link {
    font-family: var(--secondry-font);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.05rem;
    transition: color 0.2s ease;
}

.contact-pg-from .contact-link:hover {
    color: var(--secondry-color);
}

.contact-pg-from .section-bottom-note {
    font-family: var(--primary-font);
    font-size: 1.72rem;
    color: #556161;
    font-style: italic;
    letter-spacing: 0.05rem;
}

.contact-pg-from .form-label-custom {
    font-family: var(--secondry-font);
    font-size: 18px;
    font-weight: 700;
    color: #4b5563;
    letter-spacing: 0.05rem;
    margin-bottom: 0;
}


.contact-pg-from .form-control-custom {
    width: 100%;
    height: 4.4rem;
    padding: 0.6rem 1.2rem;
    font-family: var(--primary-font);
    font-size: 1.5rem;
    color: var(--color-black);
    background-color: var(--color-white);
    border: 0.1rem solid #cccccc;
    border-radius: 0.3rem;
    box-shadow: none !important;
    outline: none;
    transition: border-color 0.2s ease;
}

.contact-pg-from .form-control-custom:focus {
    border-color: var(--primary-color);
}

.contact-pg-from .form-control-custom::placeholder {
    color: #a3a3a3;
    font-size: 1.5rem;
}


.contact-pg-from .select-wrapper-custom {
    position: relative;
}

.contact-pg-from .form-select-custom {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 3.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234b5563' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1.5rem !important;
}


.contact-pg-from .phone-input-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    border: 0.1rem solid #cccccc;
    border-radius: 0.3rem;
    background-color: var(--color-white);
}

.contact-pg-from .phone-input-wrapper:focus-within {
    border-color: var(--primary-color);
}

.contact-pg-from .phone-input-wrapper .form-control-custom {
    border: none;
    height: 4rem;
}

.contact-pg-from .flag-dropdown-wrapper {
    position: relative;
    width: 6.5rem;
    height: 4rem;
    border-right: 0.1rem solid #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-pg-from .flag-select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.contact-pg-from .flag-visual {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
}

.contact-pg-from .flag-visual img {
    width: 2rem;
    height: auto;
    display: block;
}

.contact-pg-from .flag-visual i {
    font-size: 1rem;
    color: #6f7b7b;
}

.contact-pg-from .btn-submit-custom {
    background-color: var(--primary-color);
    border: none;
    border-radius: 0.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    isolation: isolate;
}

.contact-pg-from .btn-submit-custom:after,
.contact-pg-from .btn-submit-custom::before {
    z-index: -1;
}

/* contact-main-end */

/* contact-hotel-loc-start */

.cnct-htl-loc .office-loc-card {
    background: transparent;
    padding: 1.2rem 1.6rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--primary-color);
    border-radius: 1.2rem;
}

.cnct-htl-loc .office-title {
    font-size: 1.9rem;
    font-weight: 500;
    color: var(--secondry-color);
    letter-spacing: 0.06rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}


.cnct-htl-loc .office-address {
    font-size: 1.5rem;
    font-weight: 400;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 2rem;
}


.cnct-htl-loc .office-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.cnct-htl-loc .contact-item {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: #555555;
}

.cnct-htl-loc .contact-item i {
    font-size: 1.5rem;
    color: #777777;
    width: 2.4rem;
    flex-shrink: 0;
}

.cnct-htl-loc .contact-item a {
    color: #555555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cnct-htl-loc .contact-item a:hover {
    color: var(--primary-color);
}


/* contact-hotel-loc-end */

/* contact-hotel-card-start*/

.contct-htl-card-tle {
    font-size: 2.1rem !important;
    min-height: calc(1.3em * 2);

}

/* contact-hotel-card-end */



/* contact-page */





/* responsive */

@media(max-width:1540px) {

    .hero-slider-section .slider-title {
        font-size: 2rem;
    }

    .hero-slider-section .slider-call-btn {
        width: 4rem;
        height: 4rem;
        font-size: 1.5rem;
    }

    .abt-btn {
        font-size: 1.5rem !important;
    }

    .sec-title {
        font-size: 28px;
    }

    .hme-pg-abt-sec .abt-title {
        margin-bottom: .8rem !important;
    }

    p {
        font-size: 1.5rem;
    }

    .luxury-badge-hdr {
        padding: 1.5rem 4rem;
        position: relative;
    }

    .luxury-sec .luxury-carousel.owl-carousel .owl-nav button.owl-next {
        right: -6rem;
    }

    .cta-sec .cta-cont-wrpr .cta-text-overlay p {
        font-size: 1.7rem;
        line-height: 1.8;
    }

    .hme-pg-room-sec .room-location {
        font-size: 1.4rem;
    }

    .spotlight-sec .spotlight-title {
        font-size: 2.3rem;
        margin-bottom: 1.5rem;
    }



}

@media(max-width:1340px) {

    .hme-pg-abt-sec .abt-title {
        margin-bottom: 0 !important;
    }

    .sec-title {
        font-size: 26px;
    }

    .abt-btn {
        font-size: 1.4rem !important;
        letter-spacing: 0.02rem;
    }

    .ptb,
    .sec-pt,
    .sec-pb {
        padding: 4rem 0 !important;
    }

    .hme-pg-abt-sec {
        padding-top: 0rem !important;
    }

}

@media(max-width:1199px) {

    .luxury-sec .luxury-carousel.owl-carousel .owl-nav {
        width: auto;
        left: 0;
        transform: none;
        justify-content: normal !important;
        top: -60px;
        right: 72px;
    }

    .luxury-sec .luxury-carousel.owl-carousel .owl-nav button.owl-prev,
    .luxury-sec .luxury-carousel.owl-carousel .owl-nav button.owl-next {
        width: 3.8rem;
        height: 3.8rem;
        font-size: 1.4rem !important;
    }

    .luxury-sec .luxury-carousel.owl-carousel .owl-nav button.owl-prev {
        position: absolute;
        left: 97%;
    }

    .sec-title {
        font-size: 24px;
    }

    .spotlight-sec .spotlight-title {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }


    .ftr-sec-main .ftr-links-list li a {
        font-size: 1.5rem;
    }

    .ftr-sec-main .ftr-social-links .social-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.6rem;
    }

    .ftr-sec-main .ftr-logo-box {
        margin-bottom: 3rem;
        max-width: 14.5rem;
    }

    .hero-slider-section .slide-img-box {
        height: 46vh;
    }

    .ftr-sec-main .ftr-brand-widget .ftr-social-links {
        gap: 1.4rem !important;
    }

    .spotlight-sec .spotlight-title {
        font-size: 19px;
        margin-bottom: 1rem;
    }

    .hme-pg-room-sec .room-hotel-name {
        font-size: 1.7rem;
        margin-bottom: .5rem;
    }
}

@media(max-width:991px) {

    .hero-slider-section .slider-title {
        font-size: 1.7rem;
    }

    .booking-engine-container .bnr-bking-frm {
        padding: 2.5rem;
    }

    .booking-engine-container .bnr-bking-frm .booking-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
        row-gap: 2.4rem;
    }

    .luxury-sec .luxury-carousel.owl-carousel .owl-nav button.owl-prev,
    .luxury-sec .luxury-carousel.owl-carousel .owl-nav button.owl-next {
        width: 3.4rem;
        height: 3.4rem;
        font-size: 1.3rem !important;
    }

    .luxury-sec .luxury-title {
        font-size: 2.3rem;
        margin-bottom: 2.4rem;
    }

    .cta-sec .cta-cont-wrpr .cta-text-overlay {
        top: 25px;
        left: 40px;
        max-width: 100%;
    }

}

@media(max-width:575px) {

    .hero-slider-section .slide-img-box {
        height: auto;
    }

    .booking-engine-container .bnr-bking-frm .booking-grid-layout {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
        row-gap: 1.4rem;
    }

    .hero-slider-section .slider-info-bar .container-fluid {
        padding: 0 !important;
    }

    .heroslider .owl-nav {
        display: none;
    }

    .hero-slider-section .slider-title {
        font-size: 1.6rem;
        line-height: 1.7;
        text-align: center;
    }

    .hero-slider-section .slider-info-bar {
        padding: 1.5rem;
    }

    .hero-slider-section .slider-info-bar .container-fluid {
        padding: 0 !important;
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .booking-engine-container .bnr-bking-frm {
        padding: 1.5rem;
    }

    .booking-engine-container .bnr-bking-frm .room-display-input,
    .booking-engine-container .bnr-bking-frm .bking-select,
    .booking-engine-container .bnr-bking-frm .room-selector-trigger,
    .booking-engine-container .bnr-bking-frm .bking-input,
    .booking-engine-container .bnr-bking-frm .bking-date-input {
        font-size: 1.4rem;
    }

    .hme-pg-abt-sec .abt-content {
        padding-left: 1.2rem;
    }

    .sec-title {
        font-size: 20px;
    }

    .luxury-sec .luxury-carousel.owl-carousel .owl-nav {
        display: none;
    }

    .luxury-sec .luxury-title {
        font-size: 1.9rem;
        margin-bottom: 1.2rem;
    }

    .spotlight-sec .spotlight-content {
        padding-left: 1.2rem;
    }

    footer.ftr-sec-main {
        padding: 4rem 0 4rem 1.5rem;
    }

}