/* fontawasome-link */

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

/* fontawasome-link */

/* web-font */

@font-face {
    font-family: 'National Book';
    src: url('../web-font/National-Book.woff2') format('woff2'),
        url('../web-font/National-Book.woff') format('woff');
    font-display: swap;
}

/* web-font */


:root {
    --primary-color: #A06E47;
    --color-gold: #e0c474;
    --deep-black: #000;
    --color-black: #545554;
    --color-white: #fff;
    --theme-color: #f5f1ee;
    --footer-color: #2d2d2d;
    --white-bg: #e7effc;
    --dark-bg: #0a0a0a;
    --light-black: #666;
    --light-white: #F7F7F7;
    --primary-font: 'National Book', sans-serif;
    --secondry-font: "Playfair Display", serif;
}

html {
    font-size: 62.5%;
}

body {
    background: url(../images/bg_img_2.jpg);
}

* {
    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 {
    font-family: var(--secondry-font);
}

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

.ptb {
    padding: 7rem 0;
}

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

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


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

/* header */

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
    backdrop-filter: blur(5px);
}

.navbar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}


.header-sec.hdr--fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    /* background: #000; */
    transition: all 0.5s linear;
}

.header-sec.hdr--fixed .navbar.scrolled {
    background: #00000091;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #877e7e5e;
    transition: all 0.5s linear;
}

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

.hamburger-btn {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    margin-right: 25px;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1101;
}

.hamburger-btn img {
    width: 45px;
    height: 43px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1606%) hue-rotate(233deg) brightness(99%) contrast(109%);
}

.nav-links-desktop {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links-desktop li {
    position: relative;
}

.nav-links-desktop li a {
    color: var(--color-white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.7rem;
    letter-spacing: 2px;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    font-family: var(--secondry-font);
}

.nav-links-desktop li a:hover {
    color: var(--primary-color);
}


.desktop-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 15px 0;
    margin-top: 10px;
}

.nav-links-desktop li:hover .desktop-dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.desktop-dropdown a {
    color: var(--color-black) !important;
    padding: 10px 25px;
    display: block;
    font-size: 1.7rem !important;
    letter-spacing: 1px !important;
    margin: 0 !important;
    border-bottom: 1px solid #b4b4b4b5;
}

.desktop-dropdown a:hover {
    background-color: #f9f9f9;
    color: var(--primary-color) !important;
}

.nav-center {
    display: flex;
    justify-content: center;
}

.navbar-brand {
    margin: 0;
    padding: 0;
}

.navbar-brand img {
    width: 100px;
    transition: height 0.3s;
    background: #fff;
}


.navbar.scrolled .navbar-brand img {
    width: 80px;
}

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

.login-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.login-link i {
    font-size: 1.1rem;
    margin-right: 8px;
}

.btn-book {
    background-color: var(--primary-color);
    color: var(--color-white);
    border: none;
    padding: 1.2rem 3rem;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.7rem;
    letter-spacing: 2px;
    border-radius: .5rem;
    transition: background 0.3s;
    display: inline-block;
}

.btn-book:hover {
    background-color: var(--color-gold);
    color: var(--white-bg);
}


.side-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 350px;
    height: 100%;
    background-color: var(--color-white);
    z-index: 2000;
    transition: left 0.6s linear;
    padding: 80px 0;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}



.side-menu.open {
    left: 0;
}

.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    display: none;
}

.side-menu-overlay.show {
    display: block;
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #333;
    cursor: pointer;
}

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

.side-menu-links li {
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 1rem;
}

.side-menu-links li a {
    text-decoration: none;
    font-family: var(--secondry-font);
    font-size: 1.7rem;
    font-weight: 500;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
    text-transform: capitalize;
    letter-spacing: 0.05rem;
    color: #1a1a1a;
}


.side-menu-links li a:hover {
    color: var(--leela-gold);
}


.side-dropdown-content {
    background-color: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.side-dropdown-content.active {
    max-height: 500px;
}

.side-dropdown-content a {
    padding: 12px 60px !important;
    font-size: 0.95rem !important;
    font-family: var(--leela-font-sans) !important;
    border-bottom: none !important;
}

.rotate-icon {
    transition: transform 0.3s;
}

.rotate-icon.active {
    transform: rotate(180deg);
}

/* header */

/* hero-sec */

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.owl-carousel,
.owl-stage-outer,
.owl-stage,
.owl-item {
    height: 100%;
}

.hero-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

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

.owl-nav button {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.2) !important;
    color: var(--color-white) !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    font-size: 24px !important;
    transition: background 0.3s !important;
}

.owl-nav button:hover {
    background: var(--leela-gold) !important;
}


.banner_frm {
    position: absolute;
    bottom: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 100;
}

.banner_frm_content {
    width: 95%;
    max-width: 1200px;
    display: flex;
    background: #00000091;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.frm_field {
    flex: 1;
    padding: 20px 25px;
    border-right: 1px solid #eeeeee4f;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.frm_field:last-child {
    border-right: none;
}

.frm_field label {
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.frm_field input {
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    background: transparent;
}

.banner_frm_content .frm_field label {
    font-size: 1.5rem;
    padding-bottom: 0;
    color: var(--color-white);
}

.qty_box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty_box button {
    width: 3.4rem;
    height: 3.4rem;
    border: none;
    background: #eee;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 27px;
}


.qty_box input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
}

.btn_field {
    flex: 0 0 180px;
    padding: 0;
}

.check_btn {
    width: 100%;
    height: 100%;
    border: none;
    background: #a06e4745;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: 0.3s;
    font-size: 1.7rem;
}

.check_btn:hover {
    background: var(--color-gold);
}


.banner_frm_content .frm_field input[type="date"] {
    padding: 0 2rem;
    height: 4rem;
    background: var(--color-white);
    font-size: 1.6rem;
}

.qty_box {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    background: var(--color-white);
    height: 4rem;
    border-radius: 1rem;
    padding: 0 0.5rem;
}

.qty_box button.plus {
    border-left: 1px solid #4f4f5a5c !important;
}

.qty_box button.minus {
    border-right: 1px solid #4f4f5a5c !important;
    font-size: 35px;
}


/* hero-sec */

/* about-sec */

.hding-area h2 {
    font-size: 3.5rem;
    letter-spacing: 0.04rem;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--color-black);
}

.hding-area {
    padding-bottom: 2.5rem;
}


.abt-rt img {
    border-radius: 1.4rem;
}

/* about-sec */

/* stay-sec */

.stay-img-box {
    background: var(--color-white);
    border: 1px solid #a06e4778;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.hding-area h2 img {
    width: 402px;
}

.stay-img {
    width: 100%;
    overflow: hidden;
}

.stay-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.stay-img-box:hover .stay-img img {
    transform: scale(1.05);
}

.stay-txt {
    padding: 25px 20px;
    text-align: center;
}

.stay-txt h3 {
    font-family: var(--secondry-font);
    color: var(--color-black);
    font-size: 24px;
    margin: 0;
    font-weight: 600;
}

.stay-slide .owl-nav button.owl-prev,
.stay-slide .owl-nav button.owl-next {
    background: #2222229e !important;
}


/* .stay-slide .owl-nav button.owl-next  {
    right: -71px !important;
    position: absolute;
}


.stay-slide .owl-nav button.owl-prev  {
    left: -71px !important;
    position: absolute;
} */


/* stay-sec */

/* offer-sec */

.offer-img-slider {
    position: relative;
}

.offer-txt-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}

.offer-txt-overlay a {
    font-size: 2rem;
    text-transform: capitalize;
    color: var(--color-white);
    background: linear-gradient(45deg, #00000045 70%, transparent);
    padding: 1rem;
    display: inline-block;
}

.offer-slider .owl-nav button {
    background: #2c2b2bb0 !important;
}


/* offer-sec */

/* delight-sec */

.delight-txt-overly {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(45deg, #000000c2, #4f404052);
    width: 100%;
    padding: 1rem 1.5rem;
}

.delight-txt-overly h4,
.clebrt-lt h4 {
    text-transform: capitalize;
    font-size: 2rem;
    color: var(--color-white);
    letter-spacing: 0.02rem;
}

.delight-txt-overly p,
.clebrt-lt p {
    color: #ffffff8a;
}

.delight-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex !important;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.delight-slider .owl-nav button {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.2) !important;
    color: var(--color-white) !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    font-size: 24px !important;
    transition: background 0.3s !important;
}

.delight-slider .owl-nav button:hover {
    background: var(--leela-gold) !important;
}

.delight-slider .owl-nav button {
    background: #2c2b2bb0 !important;
}

/* delight-sec */

/* celebrat-sec */

.celebrate-card {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 44rem;
    border-radius: 1.2rem;
}

.clebrt-ovrlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1rem;
    background: linear-gradient(45deg, #00000054, #2e221c);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.enquiry-btn a {
    padding: 1.2rem 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0c474;
    color: var(--color-white);
    font-size: 19px !important;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    /* width: 100%; */
}

.enquiry-btn a:after,
.enquiry-btn a:before {
    content: "";
    width: 5px;
    height: 5px;
    display: inline-block;
    background-color: #e0c474;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: -3px;
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
}

.enquiry-btn a:before {
    top: 100%;
}

.fact-btn a {
    font-size: 17px;
    text-align: center;
    display: inline-block;
    padding: .5rem 2rem;
    color: var(--color-white);
    text-decoration: underline !important;
    text-underline-offset: .3rem;
    font-weight: 500;
    text-transform: capitalize;
}


.enquiry-btn a:hover {
    color: var(--color-white);
    border: 1px solid var(--color-gold);
    transition: 0.4s linear;
    background: var(--color-gold);
}




.fact-btn a:hover::after {
    width: 100%;
}


.fact-btn a:hover {
    transform: translateY(-2px);
    color: var(--color-gold);
}

/* celebrat-sec */

/* contact-sec */

.contact-bg {
    background-repeat: no-repeat !important;
    background-position: center center;
    background-size: cover;
    height: 90vh;
    position: relative;
}

.contact-main-wrp {
    background: #00000063;
    display: flex;
    justify-content: center;
    position: absolute;
    width: 90%;
    height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    backdrop-filter: blur(2px);
    border: 1.5px solid #e0c474;
    align-items: center;
}

.contact-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.contact-sub-heding h4 {
    font-size: 2.2rem;
    color: var(--color-white);
    font-family: var(--primary-font);
    text-decoration: underline;
    text-decoration-thickness: 1.49px;
    text-underline-offset: 5px;
    padding-bottom: 12px;
}

.contact-list {
    display: flex;
    gap: 2.4rem;
    margin-bottom: 1.5rem !important;
}

ul.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

ul.contact-list li i {
    font-size: 2rem;
    color: var(--color-white);
}

ul.contact-list li .fa-plane {
    transform: rotate(270deg);
}

ul.contact-list li p {
    font-size: 2.2rem;
    color: var(--color-white);
}

.contact-list li.bdr-rt {
    border-right: 1.5px solid #ffffff;
    padding-right: 20px;
}

.contact-cl-area {
    display: flex;
    padding: 2rem 0;
    gap: 1rem;
    align-items: center;
}

.contact-cl-area i {
    font-size: 26px;
    color: var(--color-white);
}

.contact-cl-area p {
    font-size: 22px;
    color: var(--color-white);
}

.contact-btn-wrp {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
}

/* contact-sec */

/* ameniti-sec */

.ameniti-sec-2 .amenities-outer-border {
    border: 2px solid #ca9e5a;
    padding: 10px;
    background-color: #ffffff;
}


.ameniti-sec-2 .title-box {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 30px 20px;
}

.ameniti-sec-2 .title-box h2 {
    font-size: 27px;
    font-weight: 600;
    margin: 0;
    line-height: 43px;
}

.ameniti-sec-2 .slider-container {
    background-color: #fff8eb;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.ameniti-sec-2 .amenities-track {
    display: flex;
    width: max-content;
    animation: scrollAmenities 12s linear infinite;
}


.ameniti-sec-2 .amenity-item {
    width: 180px;
    padding: 20px 10px;
    text-align: center;
    border-right: 1px solid #e2d3bb;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    flex-shrink: 0;
}

.ameniti-sec-2 .amenity-title {
    font-size: 19px;
    font-weight: 500;
    color: #000000e0;
    margin-bottom: 12px;
    display: block;
}

.ameniti-sec-2 .icon-box i {
    font-size: 29px;
    color: var(--primary-color);
}

.ameniti-sec-2 .slider-container:hover .amenities-track {
    animation-play-state: paused;
}


@keyframes scrollAmenities {
    0% {
        transform: translateX(0);
    }

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

/* ameniti-sec */

/* footer-sec */

.ftr-logo img {
    height: 80px;
    object-fit: cover;
}

.ft_btm {
    background: #101116;
    padding-bottom: 1rem;
    border-top: 1px solid #ffffff29;
    padding-top: 1rem;
}

.footer-area {
    background: var(--footer-color);
    padding: 4rem 0;
}


.ft_rt img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}


.copyrt-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyrt-area p {
    color: var(--color-white);
    font-size: 19px;
    text-transform: capitalize;
}

.copyrt-area .ft_rt,
.copyrt-area .ft_rt a {
    color: var(--color-white);
    font-size: 19px;
}

.copyrt-area .ft_rt a {
    color: #cca464;
}

/* ------ */

.footer-main-sec {
    background-size: cover !important;
    background-position: bottom center !important;
    background-repeat: no-repeat !important;
    padding: 44px 0 80px;
    position: relative;
}

.footer-main-sec .text-gold {
    color: #cca464 !important;
}

.footer-main-sec .decorative-line {
    display: inline-block;
    width: 60px;
    height: 1px;
    background-color: rgba(204, 164, 100, 0.3);
}

.footer-main-sec .footer-desc {
    font-size: 16.5px;
    line-height: 27px;
    color: #a0a5b0 !important;
}

.footer-main-sec .column-title {
    color: #ffffff;
    font-size: 23px;
    letter-spacing: 1.5px;
    font-weight: 600;
    position: relative;
    padding-bottom: 11px;
    margin-bottom: 2.4rem !important;
}

.footer-main-sec .column-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #cca464;
}

.footer-main-sec .footer-links a {
    color: #e0e0e0;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-main-sec .footer-links a:hover {
    color: #cca464;
}

.footer-main-sec .footer-links i {
    font-size: 13px;
    vertical-align: middle;
}

.footer-main-sec .contact-info i.fas.fa-phone-alt {
    transform: scaleX(-1);
}

.footer-main-sec .contact-info li {
    font-size: 14px;
    color: #e0e0e0;
}

.footer-main-sec .contact-info i {
    font-size: 18px;
}

.footer-main-sec .contact-info span,
.footer-main-sec .contact-info a {
    font-size: 18px;
}


.footer-main-sec .social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border: 1px solid #cca464;
    border-radius: 50%;
    color: #cca464;
    transition: all 0.3s ease;
    font-size: 16px;
    margin-right: .5rem;
}

.footer-main-sec .social-icon-btn:hover {
    background-color: #cca464;
    color: #0d0f12;
    transform: translateY(-3px);
}

.footer-main-sec .footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    border-top-color: rgba(255, 255, 255, 0.05) !important;
}

.footer-main-sec .footer-bottom p {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.footer-main-sec .brand-logo img {
    width: 166px;
    background: #fff;
    object-fit: cover;
}



/* ------ */

/* footer-sec */

/* about-sub-page */

.innr-bnr-sec {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 16rem;
    padding-bottom: 8rem;
    height: 42vh;
}

.innr-bnr-heding h1 {
    font-size: 34px;
    background: linear-gradient(45deg, #000000cf, #2d2d2da3);
    max-width: 36rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 1.5rem;
    backdrop-filter: blur(5px);
    color: var(--color-white);
    border-radius: 1rem;
}


.dinig-lt-2 .feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.dinig-lt-2 .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dinig-lt-2 .feature-item i {
    font-size: 23px;
    color: var(--primary-color);
}

.dinig-lt-2 .feature-item span {
    font-size: 17.3px;
    font-weight: 500;
    color: #022127ba;
}

.dinnig-rt-2 .dining-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


.ding-lt-pra {
    font-size: 17px;
    padding-bottom: 3rem;
    line-height: 26px;
}

.dinnig-rt-2 .dining-grid .dining-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
}

.dinnig-rt-2 .dining-grid .dining-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dinnig-rt-2 .dining-grid .dining-card:hover img {
    transform: scale(1.1);
}

.dinnig-rt-2 .dining-grid .dining-card .card-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
    backdrop-filter: blur(5px);
    letter-spacing: 0.02rem;
}



/* about-sub-page */

/* room-sub-page-start */

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

.room_box {
    border: .2rem solid #7b74741f;
    border-radius: .5rem;
    margin-top: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.room_txt h3 a {
    font-weight: 700;
    color: var(--black);
    font-size: 2.4rem;
    text-transform: capitalize;
}

.room_box .portfolio_box {
    margin-top: 0;
}

.room_box .portfolio_box::before {
    display: none;
}

.room_box .portfolio_box::after {
    display: none;
}

.room_img_box .portfolio_img .portfolio_link {
    top: 0;
    right: 0;
    background: transparent;
    width: 100%;
    height: 100%;
}

.room_box .portfolio_link::before {
    display: none;
}

/* .room_img .portfolio_img img{height: 34.2rem !important; object-fit: cover;} */
.room_img .owl-nav {
    font-size: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room_img .owl-prev,
.room_img .owl-next {
    background: var(--primary-color);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .2rem;
}

.room_img .owl-prev::before,
.room_img .owl-next::before {
    font: normal 1.8rem/3rem FontAwesome;
    color: var(--white);
    content: "\f060";
    background: var(--brand);
    width: 6.5rem;
    border-radius: 50%;
    font-size: 1.8rem;
}

.room_img .owl-next:before {
    content: "\f061";
}

.room_img .owl-carousel .owl-nav .owl-prev,
.room_img .owl-carousel .owl-nav .owl-next {
    position: absolute;
    left: 1.2rem;
    top: 1.8rem;
}

.room_img .owl-carousel .owl-nav .owl-next {
    left: 5rem;
}

.facilit_list li {
    display: inline-block;
    margin: 1rem 1rem 0 0;
    font-size: 1.4rem;
}

.facilit_list li b {
    color: var(--heading_color);
    display: inline-block;
    padding-right: .5rem;
}

.facilit_list li:last-child {
    margin-right: 0;
}

.facilit_list li span {
    border: .1rem dashed #ccc;
    display: inline-block;
    padding: .5rem 1rem;
    text-transform: capitalize;
    font-size: 1.5rem;
}

.room_sec .portfolio_box img {
    border-radius: 0;
    min-height: 425px;
    object-fit: cover;
}

.book_btn {
    border-top: .1rem dashed #ccc;
    padding: 1rem 0 0 0;
    margin-top: auto;
}


.room_box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room_txt {
    display: flex;
    flex-direction: column;
    flex: 1;
}


.room_txt .book_btn a {
    font-size: 1.6rem;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.room_txt .book_btn a i {
    color: var(--heading_color);
}

.room_txt {
    padding: 1.5rem;
}

.all_btn {
    position: absolute;
    right: 0;
    top: 0;
}

.portfolio_content {
    position: absolute;
    inset: 0;
    pointer-events: none;
}


.portfolio_content a i {
    font-size: 2.2rem;
    background: var(--brand);
    padding: 1rem;
    border-radius: 50%;
    color: var(--white);
}

.portfolio_link {
    width: 4rem;
    height: 4rem;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 2rem;
    top: 2rem;
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--brand);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: auto;
    z-index: 9;
    background: var(--primary-color);
    color: var(--bg-white);
}

.portfolio_box:hover .portfolio_link,
.portfolio_img:hover .portfolio_link {
    opacity: 1;
    visibility: visible;
}

ul.facilit_list li span b {
    color: var(--primary-color);
}

/* .room-active .owl-carousel .item .portfolio_link {
    visibility: visible !important;
    opacity: 1;
} */

.room_box {
    height: 100%;
}


.room_img .owl-item {
    display: flex;
    justify-content: center;
}

.room_img .owl-item img {
    width: 100%;
    display: block;
}

.room_txt .book_btn a:hover {
    color: var(--secondry-color);
    transition: 0.8s;
}

.room_box a.portfolio_link {
    background: transparent !important;
}

/* room-sub-page-end */
/* room-sub-page-start */

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

.room_box {
    border: .2rem solid #7b74741f;
    border-radius: .5rem;
    margin-top: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.room_txt h3 a {
    font-weight: 700;
    color: #2d2d2dcf;
    font-size: 2.8rem;
    text-transform: capitalize;
}

.room_box .portfolio_box {
    margin-top: 0;
}

.room_box .portfolio_box::before {
    display: none;
}

.room_box .portfolio_box::after {
    display: none;
}

.room_img_box .portfolio_img .portfolio_link {
    top: 0;
    right: 0;
    background: transparent;
    width: 100%;
    height: 100%;
}

.room_box .portfolio_link::before {
    display: none;
}


.room_img .owl-nav {
    font-size: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: .5rem;
    left: 2rem;
}


.room_img .owl-prev,
.room_img .owl-next {
    background: var(--primary-color);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .2rem;
}

.room_img .owl-prev::before,
.room_img .owl-next::before {
    font: normal 1.8rem/3rem FontAwesome;
    color: var(--color-white);
    content: "\f060";
    background: var(--color-gold);
    width: 6.5rem;
    border-radius: 50%;
    font-size: 1.8rem;
}

.room_img .owl-next:before {
    content: "\f061";
}

.room_img .owl-carousel .owl-nav .owl-prev,
.room_img .owl-carousel .owl-nav .owl-next {
    position: absolute;
    left: 1.2rem;
    top: 1.8rem;
}

.room_img .owl-carousel .owl-nav .owl-next {
    left: 5rem;
}

.facilit_list li {
    display: inline-block;
    margin: 1rem 1rem 0 0;
    font-size: 1.4rem;
}

.facilit_list li b {
    color: var(--heading_color);
    display: inline-block;
    padding-right: .5rem;
}

.facilit_list li:last-child {
    margin-right: 0;
}

.facilit_list li span {
    border: .1rem dashed #ccc;
    display: inline-block;
    padding: .5rem 1rem;
    text-transform: capitalize;
    font-size: 1.7rem;
}

.room_sec .portfolio_box img {
    border-radius: 0;
    min-height: 425px;
    object-fit: cover;
}

.book_btn {
    border-top: .1rem dashed #ccc;
    padding: 1rem 0 0 0;
    margin-top: auto;
}


.room_box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room_txt {
    display: flex;
    flex-direction: column;
    flex: 1;
}


.room_txt .book_btn a {
    font-size: 1.6rem;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.room_txt .book_btn a i {
    color: var(--heading_color);
}

.room_txt {
    padding: 1.5rem;
}

.all_btn {
    position: absolute;
    right: 0;
    top: 0;
}

.portfolio_content {
    position: absolute;
    inset: 0;
    pointer-events: none;
}


.portfolio_content a i {
    font-size: 2.2rem;
    background: var(--color-gold);
    padding: 1rem;
    border-radius: 50%;
    color: var(--color-white);
}

.portfolio_link {
    width: 4rem;
    height: 4rem;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 2rem;
    top: 2rem;
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--brand);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: auto;
    z-index: 9;
    background: var(--primary-color);
    color: var(--bg-white);
}

.portfolio_box:hover .portfolio_link,
.portfolio_img:hover .portfolio_link {
    opacity: 1;
    visibility: visible;
}

ul.facilit_list li span b {
    color: var(--primary-color);
}

/* .room-active .owl-carousel .item .portfolio_link {
    visibility: visible !important;
    opacity: 1;
} */

.room_box {
    height: 100%;
}


.room_img .owl-item {
    display: flex;
    justify-content: center;
}

.room_img .owl-item img {
    width: 100%;
    display: block;
}

.room_txt .book_btn a:hover {
    color: var(--secondry-color);
    transition: 0.8s;
}

.room_box a.portfolio_link {
    background: transparent !important;
}

/* room-sub-page-end */

/* gallery-sub-page-start */

.iner_gallery .wrapper {
    --_gap: .5rem;
    --_offset: 10%;
    --_offset-1: calc(var(--_offset) * 1);
    --_offset-2: calc(var(--_offset) * 2);
    --_offset-3: calc(var(--_offset) * 3);
    --_offset-7: calc(var(--_offset) * 7);
    --_offset-8: calc(var(--_offset) * 8);
    --_offset-9: calc(var(--_offset) * 9);
    width: calc(100% - 4rem);
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 var(--_gap);
    pointer-events: none;
    transform-style: preserve-3d;
}

.iner_gallery .wrapper>div {
    position: relative;
    pointer-events: auto;
    aspect-ratio: 1;
    transition: scale 500ms ease-in-out, filter 500ms ease-in-out, clip-path 500ms ease-in-out 500ms;
    clip-path: polygon(var(--_clip-path));
    transform: translate3d(0, 0, 0);
}

.iner_gallery .wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.iner_gallery .wrapper>div:nth-child(n+4) {
    margin-top: calc(var(--_offset-3) * -1 + var(--_gap));
}

.iner_gallery .wrapper>div:nth-child(1) {
    --_clip-path: 0 0, 100% 0, 100% var(--_offset-9), 0 100%;
}

.iner_gallery .wrapper>div:nth-child(2) {
    --_clip-path: 0 0, 100% 0, 100% var(--_offset-8), 0 var(--_offset-9);
}

.iner_gallery .wrapper>div:nth-child(3) {
    --_clip-path: 0 0, 100% 0, 100% var(--_offset-7), 0 var(--_offset-8);
}

.iner_gallery .wrapper>div:nth-child(4) {
    --_clip-path: 0 var(--_offset-3), 100% var(--_offset-2), 100% var(--_offset-8), 0 var(--_offset-7);
}

.iner_gallery .wrapper>div:nth-child(5) {
    --_clip-path: 0 var(--_offset-2), 100% var(--_offset-1), 100% var(--_offset-9), 0 var(--_offset-8);
}

.iner_gallery .wrapper>div:nth-child(6) {
    --_clip-path: 0 var(--_offset-1), 100% 0%, 100% 100%, 0 var(--_offset-9);
}

.iner_gallery .wrapper>div:nth-child(7) {
    --_clip-path: 0 0%, 100% var(--_offset-1), 100% 100%, 0 100%;
}

.iner_gallery .wrapper>div:nth-child(8) {
    --_clip-path: 0 var(--_offset-1), 100% var(--_offset-2), 100% 100%, 0 100%;
}

.iner_gallery .wrapper>div:nth-child(9) {
    --_clip-path: 0 var(--_offset-2), 100% var(--_offset-3), 100% 100%, 0 100%;
}

.iner_gallery .wrapper>div.inr_galy_box:hover {
    transition: scale 500ms ease-in-out, filter 500ms ease-in-out, clip-path 500ms ease-in-out 500ms;
    scale: 1.3;
    --_clip-path: 0 0, 100% 0, 100% 100%, 0 100%;
    z-index: 100;
    opacity: 1;
}

.iner_gallery .wrapper:has(:hover)>div:not(:hover) {
    filter: grayscale(1) blur(3px);
    opacity: .5;
    scale: 0.9;
}

@keyframes zIndexHack {

    0%,
    100% {
        z-index: 100;
    }
}


.inr_galy_box .portfolio_box .portfolio_content .portfolio_link {
    top: 50% !important;
    left: 50% !important;
    right: initial !important;
    transform: translate(-50%, -50%);
}


.iner_gallery code {
    color: var(--color-gold);
    border: 1px solid rgba(from var(--color-gold) r g b / .25);
    padding-inline: .25rem;
    border-radius: 5px;
}



.iner_gallery .wrapper>div {
    position: relative;
}

.inr_galy_box {
    position: relative;
    overflow: hidden;
    height: 100%;
}


.inr_galy_box:hover img {
    transform: scale(1.1);
}

.iner_gallery .wrapper>div {
    aspect-ratio: 1;
    transition: 0.5s;
    clip-path: polygon(var(--_clip-path));
}

/* gallery-sub-page-end */

/* amenities-sub-page-start */

.amenity-card {
    border: 1px solid #fceada;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    background: var(--color-white);
    cursor: pointer;
}

.amenity-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #06143757;
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--color-gold);
}

.amenity-title {
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 1rem;
}


.icon-box i {
    font-size: 3rem;
    color: var(--primary-color);
}

/* amenities-sub-page-end */

/*testimonial-start*/

.feed_back_sec {
    background: #f5f1ee;
}

.feed_back_sec .heding .sub_txt {
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.feed_back_sec .heding h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1c2b4a;
    margin-top: 10px;
}


.fed_back_box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: 0.3s;
}

.fed_back_box:hover {
    transform: translateY(-5px);
}


.qutin_box {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    width: 70px;
    height: 70px;
    border-bottom-left-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 12px;
}

.qutin_box img {
    width: 4rem;
}


.person_img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 20px 0 10px;
    object-fit: cover;
}

.person_namr h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.person_namr span {
    font-size: 14px;
    color: #777;
}


.rating {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 15px 0;
}

.rating li {
    list-style: none;
    margin: 0 3px;
}


.bold_icon {
    display: block;
    width: 25px;
    height: 25px;
    background: gold;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%,
            68% 57%, 79% 91%,
            50% 70%, 21% 91%,
            32% 57%, 2% 35%,
            39% 35%);
}


.person_txt p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/*testimonial-end*/

/*contact-start*/

.contact_img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 1rem !important;
}

.contact_form {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 3rem;
    border-radius: 1rem;
}

.contact_form .form-control {
    height: 50px;
    border-radius: 8px;
}

.contact_form textarea.form-control {
    height: auto;
}

.cntct-top-lt {
    padding: 24px;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
}

.btn-main:hover {
    background: #16294a;
}


.map_box-2 {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    margin: 0;
}

.info_box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info_box i {
    font-size: 22px;
    color: #1f355e;
}

.frm-cont-wrp input,
.frm-cont-wrp textarea {
    font-size: 1.6rem;
    margin-top: 2rem;
}


.cntct-top-lt h2 {
    font-size: 27px;
    color: var(--primary-color);
}

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

.contact_info .info_box div h6 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #a06e47f7;
}

.contact_info .info_box div p {
    font-size: 17px;
    text-wrap: balance;
}

.frm-cont-wrp .submit-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 55px;
    background: #3f3935;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.4s ease;

}

.frm-cont-wrp .submit-btn:hover {
    background-color: var(--color-gold);
    color: var(--white-bg);
}

/*contact-end*/

/*policy-start*/

.faq_heading {
    font-size: 2rem;
    text-transform: capitalize;
    color: var(--primary-color);
    line-height: 2.8rem;
    margin-right: 5rem;
}

.faq_number {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1;
    margin-right: 2rem;
}

.faq_content .accordion-button:not(.collapsed) {
    background: transparent;
}

.faq_content .accordion-button {
    padding: 2rem 1.25rem;
}

.faq_content .accordion-button:focus {
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.faq_content .accordion-button:not(.collapsed)::after {
    content: "\f068";
    background-image: none;
}

.faq_content .accordion-button::after {
    color: var(--primary-color);
    width: auto;
    height: auto;
    font-size: 1.8rem;
    background-image: none;
    font-family: "Font Awesome 6 Pro";
    content: "\2b";
}

.faq_content .accordion-body {
    padding: 2rem 1.5rem;
}

.lt_faq {
    margin-right: 5rem;
}

.faq_content .accordion-item,
.faq_content .accordion-button {
    background-color: transparent;
}

.faq_content .accordion-body p {
    font-size: 1.67rem;
    line-height: 23px;
}

.faq_content .accordion-body h5 {
    font-size: 1.8rem;
    text-transform: capitalize;
}


/*policy-end*/




/* responsive */

@media(max-width:1199px) {

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

    .ptb {
        padding: 5rem 0;
    }

    .hding-area h2 {
        font-size: 3.1rem;
        letter-spacing: 0.02rem;
    }


    .banner_frm_content {
        flex-wrap: wrap;
        padding: 10px;
    }

    .frm_field {
        flex: 0 0 19%;
        border-right: none;
        /* border-bottom: 1px solid #eeeeee4f; */
        padding: 15px;
        width: 100%;
    }

    .btn_field {
        flex: 0 0 100%;
        height: 82px;
    }

    .check_btn {
        font-size: 1.5rem;
        background: #a06e47d1 !important;
    }

    ul.contact-list li p {
        font-size: 1.8rem;
    }

    .contact-cl-area {
        padding: 1rem 0;
    }

    .clebrt-rt {
        display: flex;
    }

    .ftr-list-2 {
        padding-top: 1rem !important;
        gap: 1rem;
    }


    .cntct-top-lt h2 {
        font-size: 2.4rem;
        line-height: 3rem;
    }

    .contact_form h4 {
        font-size: 24px;
    }


}

@media (max-width: 991px) {
    .navbar .container {
        grid-template-columns: auto 1fr auto;
    }

    .nav-links-desktop {
        display: none;
    }

    .booking-widget-container {
        display: none;
    }

    .navbar-brand img {
        height: 55px;
    }

    .login-link span {
        display: none;
    }

    .login-link {
        margin-right: 15px;
    }

    .btn-book {
        padding: 8px 20px;
        font-size: 1.5rem;
    }

    .side-menu {
        width: 44%;
    }

    .banner_frm {
        bottom: 15px;
    }

    .banner_frm_content {
        backdrop-filter: blur(5px);
    }

    .frm_field {
        flex: 1 0 20%;
        border-right: none;
        padding: 14px;
        width: 100%;
    }

    .btn_field {
        height: auto;
        margin-top: 2rem;
    }

    .check_btn {
        border-radius: 1rem;
    }

    /* sub-pages */

    .innr-bnr-heding h1 {
        font-size: 30px;
        max-width: 32rem;
    }

    .iner_gallery .wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .header_sec .nav_sec .navbar .header_btn {
        right: 5rem;
    }


    .header_sec .nav_sec .navbar .navbar-nav {
        margin-right: -2rem !important;
    }

    .iner_gallery .wrapper>div {
        clip-path: none !important;
    }

    .iner_gallery .wrapper {
        gap: 1.5rem;
    }

    .iner_gallery .wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .iner_gallery .wrapper>div {
        clip-path: none !important;
        margin-top: 0 !important;
    }


    .map_box-2 iframe {
        height: 360px;
    }

    .contact_info {
        display: flex;
        flex-direction: column;
        row-gap: 1.5rem;
        margin-top: 1.2rem;
    }

    .md-col-reve-2 {
        flex-direction: column-reverse !important;
    }

    .ameniti-sec-2 .amenities-track {
        animation: scrollAmenities 22s linear infinite;
    }

    @keyframes scrollAmenities {
        0% {
            transform: translateX(0);
        }

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

    .ameniti-sec-2 .title-box h2 {
        font-size: 23px;
        line-height: 37px;
        letter-spacing: 0.02rem;
    }

    /* sub-pages */


}

@media(max-width:575px) {

    .banner_frm_content {
        backdrop-filter: blur(2px);
    }

    .btn_field {
        margin-top: 1rem;
        flex: 1 0 100%;
    }

    .side-menu {
        width: 80%;
    }

    .check_btn {
        font-size: 1.5rem;
        height: 5rem;
    }

    .ptb {

        padding: 3rem 0;
    }

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

    .hding-area h2 {
        font-size: 2.6rem;
        letter-spacing: 0.01rem;
    }

    .hding-area h2 img {
        width: auto;
    }

    p {
        font-size: 1.5rem;
    }

    .hding-area {
        padding-bottom: 2rem;
    }

    .stay-txt h3 {
        font-size: 18px;
    }

    .stay-txt {
        padding: 1.5rem;
    }

    .owl-nav button,
    .delight-slider .owl-nav button {
        width: 3rem !important;
        height: 3rem !important;
        font-size: 15px !important;
    }

    .offer-txt-overlay a {
        font-size: 1.6rem;
        background: linear-gradient(45deg, #000000bd 70%, transparent);
        padding: 1rem;
    }

    .delight-txt-overly h4,
    .clebrt-lt h4 {
        font-size: 1.8rem;
        margin-bottom: 0;
    }

    .delight-txt-overly p,
    .clebrt-lt p {
        line-height: 21px;
    }

    .enquiry-btn a {
        padding: .8rem 2rem;
        font-size: 16px !important;
    }

    .contact-sub-heding h4 {
        font-size: 2.1rem;
    }

    .contact-list {
        display: flex;
        gap: 1.8rem;
        margin-bottom: 1.5rem !important;
        flex-direction: column;
    }

    .contact-list li.bdr-rt {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #fff9f5b3;
    }

    .contact-cl-area p {
        font-size: 18px;
    }

    .ftr-wrper .ftr-heading,
    .ft_heding {
        font-size: 19px;
    }

    .copyrt-area {
        flex-direction: column;
        gap: 1rem;
    }

    .ftr-rt,
    .ftr-lt {
        padding-left: 15px;
    }

    .footer-main-sec {
        padding-left: 1.2rem;
    }

    /* sub-pages */

    .innr-bnr-heding h1 {
        font-size: 25px;
        max-width: 24rem;
    }


    .iner_gallery .wrapper {
        grid-template-columns: 1fr;
    }

    .iner_gallery .wrapper>div {
        clip-path: none !important;
    }

    .iner_gallery .wrapper {
        grid-template-columns: 1fr;
        width: calc(100% - 2rem);
    }

    .faq_heading {
        font-size: 1.8rem;
    }

    .faq_content .accordion-body p {
        font-size: 1.6rem;
        line-height: 24px;
    }

    .faq_content .accordion-body {
        padding: 1.6rem;
    }

    .faq_content .accordion-body h5 {
        font-size: 1.6rem;
    }

    .footer-main-sec .column-title {
        font-size: 20px;
        margin-bottom: 2.2rem !important;
    }

    .footer-main-sec .contact-info span,
    .footer-main-sec .contact-info a,
    .footer-main-sec .footer-links a {
        font-size: 17px;
    }

    .footer-main-sec .brand-logo img {
        width: 146px;
    }

    .footer-main-sec {
        padding: 26px 0 56px;
        padding-left: 1rem;
    }

    .hamburger-btn img {
        width: 36px;
        height: 36px;
    }

    .banner_frm {
        bottom: 52px;
    }

    .dinnig-rt-2 .dining-grid {
        grid-template-columns: 1fr;
    }

    .dining-sec-2 {
        padding-left: 1rem;
    }

    .ameniti-sec-2 .amenities-track {
        animation: scrollAmenities 27s linear infinite;
    }

    @keyframes scrollAmenities {
        0% {
            transform: translateX(0);
        }

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


    /* sub-pages */


}

/* responsive */