@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap");

:root {
    --normal-color: #505050;
    --primary-color: #d4af37;
    --second-color2: #e5e1d8;
    --second-color: #F5E6C8;
    --three-color: #502f1c;
    --three-color: #1a1a1a;
    --accent-color: #0a1128;
    --bg-color: #F5E6C8;
    --btn-color: linear-gradient(135deg, #F5E6C8, #d4af37);
    --normal-font: "Raleway", sans-serif;
    --normal-font: "Roboto", sans-serif;
    --primary-font: "Playfair Display", serif;
    --second-font: "Cormorant", serif;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

img,
picture,
svg,
video {
    max-width: 100%;
}

ol,
ul {
    list-style: none;
}

ul {
    margin-bottom: 0;
}

html {
    font-size: 62.5% !important;
    scroll-behavior: smooth;
}

body {
    font-family: var(--normal-font);
    color: var(--normal-color);
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: 400;
}

.ov-hidden {
    overflow: hidden;
}

.container {
    max-width: 1360px;
}

.row-collapse {
    margin-left: 0;
    margin-right: 0;
}

    .row-collapse > div[class~=col],
    .row-collapse > div[class^=col-] {
        padding-left: 0;
        padding-right: 0;
    }

.row-small {
    margin-left: -10px;
    margin-right: -10px;
}

    .row-small > div[class~=col],
    .row-small > div[class^=col-] {
        padding-left: 10px;
        padding-right: 10px;
    }

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
    color: var(--primary-color);
    font-family: var(--primary-font);
}

blockquote,
dl,
figure,
form,
ol,
p,
pre,
ul {
    margin-bottom: 2rem;
    margin-bottom: 0;
}

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

    a:hover, a:focus, a:active {
        text-decoration: none;
    }

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

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

.btn {
    position: relative;
    width: auto;
    outline: 0;
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 0.2em;
    font-weight: 700;
    text-transform: uppercase;
    box-sizing: border-box;
    margin: 0;
    transition: color 175ms cubic-bezier(0.18, 0.43, 0.58, 1), background-color 175ms cubic-bezier(0.18, 0.43, 0.58, 1), border-color 175ms cubic-bezier(0.18, 0.43, 0.58, 1);
    padding: 12px 45px;
    border-radius: 50px;
    cursor: pointer;
}

.btn-primary {
    color: var(--accent-color);
    background: var(--btn-color);
    border: 0;
}

.btn-more {
    background-color: var(--primary-color);
    color: #fff;
}

    .btn-more:hover {
        background: var(--three-color);
        color: #fff;
    }

.btn-book {
    background-color: var(--accent-color);
    color: #fff;
}

    .btn-book:hover {
        color: #fff;
        opacity: 0.7;
    }

.btn-outline {
    color: var(--accent-color);
    background-color: transparent;
    border: 1px solid var(--accent-color);
}

    .btn-outline:hover {
        color: #fff;
        background-color: var(--three-color);
        border-color: var(--three-color);
    }

.btn-accent {
    background: linear-gradient(135deg, #502f1c, #d4af37);
    color: #fff;
    border: 0;
}

    .btn-accent:hover {
        transform: scale3d(1.06, 1, 1);
    }

.btn-small {
    padding: 9px 30px;
}

.btn-simple {
    padding: 0 !important;
    color: var(--primary-color);
    background-color: transparent;
    border: 0;
    vertical-align: middle;
    font-size: 12px;
    line-height: 1.8em;
    letter-spacing: 0.2em;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}

    .btn-simple span {
        display: inline-block;
        vertical-align: middle;
    }

    .btn-simple::before, .btn-simple::after {
        content: "";
        height: 2px;
        width: 100%;
        position: absolute;
        background-color: var(--primary-color);
        left: 0;
        bottom: -3px;
        transition: none;
    }

    .btn-simple::before {
        transform-origin: right;
        transform: scale(1, 1);
    }

    .btn-simple::after {
        transform-origin: left;
        transform: scale(0, 1);
    }

    .btn-simple:hover {
        color: var(--primary-color);
    }

        .btn-simple:hover::before {
            transform: scale(0, 1);
            transition: all 175ms cubic-bezier(0.18, 0.43, 0.58, 1);
        }

        .btn-simple:hover::after {
            transform: scale(1, 1);
            transition: all 175ms cubic-bezier(0.18, 0.43, 0.58, 1) 175ms;
        }

.tb-space {
    padding: 70px 0;
}

.tb-space-top {
    padding-top: 70px;
}

.tb-space-bottom {
    padding-bottom: 70px;
}

.tb-space-sm {
    padding: 40px 0;
}

.tb-space-sm-top {
    padding-top: 40px;
}

.tb-space-sm-bot {
    padding-bottom: 40px;
}

@media (max-width: 767.98px) {
    .tb-space {
        padding: 40px 0;
    }

    .tb-space-top {
        padding-top: 40px;
    }

    .tb-space-bottom {
        padding-bottom: 40px;
    }
}

.form-control {
    height: 40px;
    padding: 10px 12px;
    font-size: 16px;
}

    .form-control:focus {
        border-color: #ced4da;
        box-shadow: none;
    }

    .form-control:disabled,
    .form-control[readonly] {
        background-color: #fff;
        opacity: 1;
    }

.custom-form-label {
    font-weight: 600;
    margin-bottom: 8px;
}

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

.section-heading {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin-bottom: 50px;
}

    .section-heading .sectitle {
        color: var(--primary-color);
        font-family: var(--primary-font);
        font-size: 48px;
        line-height: 1.3;
        font-weight: 500;
    }

    .section-heading .subtitle {
        display: block;
        margin: 20px 0 0;
        color: var(--normal-color);
        font-size: 18px;
        font-weight: 400;
    }

@media (max-width: 767.98px) {
    .section-heading .sectitle {
        font-size: 2.8rem;
    }

    .section-heading .subtitle {
        margin: 15px 0 0;
    }
}

.stm-title {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: var(--three-color);
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--second-color);
        color: #000;
        border-radius: 50px;
        width: 35px;
        height: 35px;
    }

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

.breadcrumb {
    background-color: transparent;
    padding: 10px 0;
    border-radius: 0;
    margin: 10px 0;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.card {
    border: 0;
}

.smoke-animation,
.smoke-animation-1 {
    opacity: 0;
    transition: all 1.5s ease;
    mask-position: center;
    -webkit-mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: 0% 0%;
    -webkit-mask-size: 0% 0%;
    mask-image: url("../images/shape2.png");
    -webkit-mask-image: url("../images/shape2.png");
    will-change: transform, opacity;
}

.mask-5 {
    mask-image: url(../images/shape3.png);
    -webkit-mask-image: url(../images/shape3.png);
}

/* ảnh */
.smoke-animation img,
.smoke-animation-1 img {
    transform: scale(1.1);
    filter: blur(12px);
    transition: all 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* active */
.smoke-animated {
    mask-size: 180% 180%;
    -webkit-mask-size: 180% 180%;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    opacity: 1;
}

    .smoke-animated img {
        transform: scale(1);
        filter: blur(0);
    }

.smoke-home {
    mask-image: url(../images/shape2.png);
    -webkit-mask-image: url(../images/shape2.png);
}

.smoke-banner {
    mask-image: url(../images/shape5.png);
    -webkit-mask-image: url(../images/shape5.png);
}

.smoke-4 {
    mask-image: url(../images/shape4.png);
    -webkit-mask-image: url(../images/shape4.png);
}

.smoke-5 {
    mask-image: url(../images/shape5.png);
    -webkit-mask-image: url(../images/shape5.png);
}

[data-aos=smoke].aos-animate,
.aos-animate {
    mask-size: 102% 100%;
    -webkit-mask-size: 102% 100%;
    opacity: 1;
}

    [data-aos=smoke].aos-animate img,
    .aos-animate img {
        transform: scale(1);
        filter: blur(0);
    }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.3s ease;
    z-index: 999;
}

.header-top {
    position: relative;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    background-color: var(--three-color);
    z-index: 111;
}

.header-top-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
}

.header-top-left__inner {
    display: flex;
    align-items: center;
    height: 100%;
    vertical-align: middle;
}

    .header-top-left__inner .top-social {
        display: flex;
        align-items: baseline;
        margin-right: 40px;
    }

@media (max-width: 767.98px) {
    .header-top-left__inner .top-social {
        display: none;
    }
}

.header-top-left__inner .top-text {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.header-top-left__inner .social-icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px 0 0;
    color: #fff;
    font-size: 12px;
}

.header-top-left__inner .phone-top {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

    .header-top-left__inner .phone-top a {
        color: inherit;
    }

.header-top-right__inner {
    display: flex;
    align-items: center;
    gap: 10px;
}
/*@media(max-width:480px){
.header-top-right__inner{
display: none;
}
}*/
.header-main {
    background-color: #f5e6c8a8;
}

.header-main-wrap {
    /*height: 80px;*/
}

    .header-main-wrap .logo img {
        height: 87px;
        padding: 6px 0;
    }

.header-nav {
    height: 100%;
}

.header-nav-close {
    display: none;
}

.header-nav ul {
    position: relative;
    height: 100%;
}

    .header-nav ul li {
        position: relative;
        display: inline-block;
    }

    .header-nav ul > li {
        height: 100%;
    }

        .header-nav ul > li > a {
            display: flex;
            align-items: center;
            padding: 28px 10px;
            width: 100%;
            height: 100%;
            vertical-align: middle;
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--normal-color);
        }

        .header-nav ul > li:hover > a {
            color: var(--primary-color);
        }

        .header-nav ul > li .submenu {
            position: absolute;
            display: block;
            left: -16px;
            top: 100%;
            visibility: hidden;
            overflow: hidden;
            opacity: 0;
            z-index: 10;
            transition: top 0.15s ease-out;
            background-color: var(--second-color);
            padding: 10px 0 10px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
            min-width: 200px;
        }

            .header-nav ul > li .submenu li {
                display: block;
                /*width: 165px;*/
                min-width: 165px;
            }

                .header-nav ul > li .submenu li a {
                    display: block;
                    padding: 7px 15px;
                    font-size: 14px;
                    color: var(--normal-color);
                }

                    .header-nav ul > li .submenu li a:hover {
                        color: var(--primary-color);
                    }

@media (min-width: 1200px) {
    .header-nav ul > li.hasChildren:hover .submenu {
        height: auto;
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 1199px) {
    .header-nav {
        display: none;
    }
}

.header.fixed {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.025);
}

    .header.fixed .header-main {
        background-color: var(--second-color);
    }

.header-phone {
    a

{
    font-size: 2.4rem;
    color: var(--three-color);
    margin-left: 10px;
}

@media(min-width:768px) {
    display: none;
}

}

.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 2.6rem;
}

@media (min-width: 1199px) {
    .menu-toggle {
        display: none;
    }
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -15rem;
    width: 90%;
    height: 100%;
    max-width: 450px;
    z-index: 1023;
    overflow-y: auto;
    transition: all 0.3s ease 0s;
    background-color: #fff;
    padding: 40px 24px;
    opacity: 0;
    visibility: hidden;
}

    .mobile-nav.opened {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

.mobile-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff0;
    border: 0;
    width: 4rem;
    height: 4rem;
    position: absolute;
    z-index: 99;
    top: 0;
    right: 0;
    font-size: 2.6rem;
    cursor: pointer;
}

.mobile-nav ul {
    display: block;
    height: auto;
}

    .mobile-nav ul li {
        display: block;
        height: auto;
    }

    .mobile-nav ul > li {
        border-bottom: 1px dotted #DDD;
    }

        .mobile-nav ul > li > a {
            position: relative;
            padding: 8px 0;
            display: flex;
            justify-content: space-between;
            width: 100%;
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--normal-color);
        }

            .mobile-nav ul > li > a .arrow {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 30px;
                height: 30px;
                cursor: pointer;
            }

        .mobile-nav ul > li .submenu {
            position: relative;
            left: 0;
            padding: 8px 16px;
            background-color: transparent;
            opacity: 1;
            visibility: visible;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            display: none;
        }

            .mobile-nav ul > li .submenu li {
                width: 100%;
            }

        .mobile-nav ul > li.active > a .arrow {
            transform: rotate(180deg);
        }

        .mobile-nav ul > li.active .submenu {
            max-height: unset;
            display: block;
            box-shadow: none;
            padding: 0 10px;
        }

@media (min-width: 1200px) {
    .mobile-nav {
        display: none;
    }
}

.bg-overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1002;
    top: 0;
    left: 0;
    display: none;
}

    .bg-overlay.active {
        display: block;
    }

.languages .language {
    padding: 6px 10px;
    border-radius: 50px;
    font-size: 1.4rem;
    outline: 0;
    cursor: pointer;
    background-color: var(--three-color);
    border-color: var(--three-color);
    color: #fff;
}

@media (min-width: 1200px) {
    .languages {
        margin-left: 10px;
    }
}

.banner-video, .banner-wrap {
    position: relative;
    overflow: hidden;
}

    .banner-video video,
    .banner-video img,
    .banner-video iframe, .banner-wrap video,
    .banner-wrap img,
    .banner-wrap iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
        height: 100dvh;
    }

@media (max-width: 1199.98px) {
    .banner-video video,
    .banner-video img,
    .banner-video iframe, .banner-wrap video,
    .banner-wrap img,
    .banner-wrap iframe {
        height: 60dvh;
    }
}

@media (max-width: 767.98px) {
    .banner-video video,
    .banner-video img,
    .banner-video iframe, .banner-wrap video,
    .banner-wrap img,
    .banner-wrap iframe {
        height: 60dvh;
    }
}

.banner-video .banner-content, .banner-wrap .banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 15px;
    text-align: center;
}

.banner-video .banner-content-title, .banner-wrap .banner-content-title {
    font-size: 64px;
    color: #fff;
    margin-bottom: 0;
}

@media (max-width: 1199.98px) {
    .banner-video .banner-content-title, .banner-wrap .banner-content-title {
        font-size: 48px;
    }
}

@media (max-width: 991.98px) {
    .banner-video .banner-content-title, .banner-wrap .banner-content-title {
        font-size: 40px;
    }
}

.banner-video .banner-content-desc, .banner-wrap .banner-content-desc {
    letter-spacing: 2px;
    color: #fff;
    font-size: 1.8rem;
}

.about-image {
    position: relative;
}

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

    .about-image .bg-video {
        background-color: #333;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        min-height: 48rem;
        display: block;
    }

        .about-image .bg-video i {
            background-color: var(--primary-color);
            font-size: 3.2rem;
            border-radius: 50%;
            position: absolute;
            width: 6rem;
            height: 6rem;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

@media (max-width: 767.98px) {
    .about-image .bg-video {
        min-height: 20rem;
    }
}

.about-content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 60px;
}

@media (max-width: 1200px) {
    .about-content-inner {
        padding: 40px 15px;
    }
}

@media (max-width: 767.98px) {
    .about-content-inner {
        padding: 40px 0;
    }
}

.about-content-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

@media (max-width: 767.98px) {
    .about-content-title {
        font-size: 2.4rem;
    }
}

.about-content-desc {
    margin-bottom: 10px;
}

.about-page .box-content .title {
    font-size: 2.9rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

    .about-page .box-content .title span {
        color: var(--three-color);
    }

.about-quotes {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;
}

    .about-quotes::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        background-color: rgba(0, 0, 0, 0.6);
    }

.about-quotes-inner {
    position: relative;
    max-width: 768px;
    margin: 0 auto;
    padding: 0 20px;
}

    .about-quotes-inner .title {
        font-size: 3.4rem;
        color: var(--primary-color);
        margin-bottom: 20px;
        text-align: center;
    }

    .about-quotes-inner .desc {
        text-align: center;
        font-size: 1.8rem;
    }

    .about-quotes-inner .quote-open {
        position: absolute;
        top: -100px;
        left: 0;
    }

    .about-quotes-inner .quote-close {
        position: absolute;
        bottom: -100px;
        right: 0;
    }

@media (min-width: 768px) {
    .about-quotes-inner .quote-open {
        left: -70px;
    }

    .about-quotes-inner .quote-close {
        right: -70px;
    }
}

@media (min-width: 768px) {
    .about-quotes {
        min-height: 550px;
    }
}

.about-corevalues-list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

    .about-corevalues-list .item .icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: #e7e7e7;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .about-corevalues-list .item .icon img {
            width: 30px;
        }

    .about-corevalues-list .item .title {
        font-size: 2.4rem;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 0;
    }

    .about-corevalues-list .item .desc {
        display: block;
    }

@media (max-width: 576px) {
    .about-corevalues-list .item {
        margin-bottom: 30px;
    }
}

.rooms-list .item {
    margin-bottom: 30px;
}

.rooms-detail-image {
    position: relative;
    height: 100%;
}

    .rooms-detail-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media (min-width: 992px) {
    .rooms-detail-image::before {
        content: "";
        background: white;
        background: linear-gradient(to left, white, white, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
        display: block;
        width: 35%;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        z-index: 30;
        display: none;
    }
}

.rooms-detail-content {
    padding: 3rem 1.5rem;
}

.rooms-detail-content-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 4.8rem;
    border: 1px solid #c99246 !important;
    position: relative;
}

@media (max-width: 1200px) {
    .rooms-detail-content-inner {
        padding: 40px 15px;
    }
}

@media (max-width: 991.98px) {
    .rooms-detail-content-inner {
        padding: 2.4rem;
    }
}

.rooms-detail-content-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 0px;
}

@media (max-width: 767.98px) {
    .rooms-detail-content-title {
        font-size: 2.4rem;
    }
}

.rooms-detail-content-desc {
    margin-bottom: 10px;
}

.rooms-detail-content-info li {
    display: flex;
    margin-bottom: 8px;
}

    .rooms-detail-content-info li .icon {
        flex-shrink: 0;
        margin-right: 1.6rem;
        max-height: 2.4rem;
    }

@media (min-width: 576px) {
    .rooms-detail-content-info li .icon {
        margin-right: 2.4rem;
    }
}

.rooms-detail-content-info li span {
    flex-grow: 1;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 8px;
}

.rooms-detail-content .gr-btn-book {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: -15px;
    margin-right: 2.4rem;
}

@media (min-width: 992px) {
    .rooms-detail-content .gr-btn-book {
        margin-right: 4.8rem;
    }
}

.rooms-detail-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

    .rooms-detail-price .price-old {
        font-size: 1.6rem;
        color: var(--primary-color);
        text-decoration: line-through;
    }

    .rooms-detail-price .price-value {
        color: var(--three-color);
        font-size: 1.7rem;
    }

.rooms-detail-slider {
    height: 100%;
}

    .rooms-detail-slider .owl-stage-outer {
        height: 100%;
    }

        .rooms-detail-slider .owl-stage-outer .owl-stage {
            height: 100%;
        }

            .rooms-detail-slider .owl-stage-outer .owl-stage .owl-item {
                height: 100%;
            }

                .rooms-detail-slider .owl-stage-outer .owl-stage .owl-item .item {
                    height: 100%;
                }

    .rooms-detail-slider .owl-nav {
        z-index: 40;
    }

    .rooms-detail-slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.rooms-detail-includ {
    background-color: var(--second-color2);
}

    .rooms-detail-includ .entry-title {
        font-size: 3.6rem;
        color: var(--primary-color);
        margin-bottom: 2rem;
    }

    .rooms-detail-includ .entry-desc {
        margin-bottom: 20px;
    }

    .rooms-detail-includ .block-entry-list {
        display: flex;
        flex-wrap: wrap;
        gap: 2.8rem;
        margin-bottom: 24px;
    }

        .rooms-detail-includ .block-entry-list .block-column {
            flex-grow: 1;
            min-width: 0;
            overflow-wrap: break-word;
            word-break: break-word;
        }

            .rooms-detail-includ .block-entry-list .block-column .title-head {
                font-size: 1.8rem;
                color: var(--three-color);
                margin-bottom: 6px;
            }

            .rooms-detail-includ .block-entry-list .block-column .block-list {
                list-style: disc;
                margin-left: 30px;
            }

@media (min-width: 768px) {
    .rooms-detail-includ .block-entry-list .block-column {
        flex-basis: 0;
        flex-grow: 1;
    }
}

.card-room {
    border-radius: 24px;
    overflow: hidden;
}

    .card-room .box-image {
        position: relative;
        overflow: hidden;
    }

        .card-room .box-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 6/4;
            transition: all 0.3s ease;
        }

    .card-room .box-content {
        padding: 20px 15px;
    }

        .card-room .box-content .title {
            font-size: 2.4rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

            .card-room .box-content .title a {
                color: inherit;
            }

        .card-room .box-content .price {
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.4rem;
        }

        .card-room .box-content .price-old {
            font-size: 1.6rem;
            color: var(--primary-color);
            text-decoration: line-through;
        }

        .card-room .box-content .price-value {
            font-size: 1.7rem;
            color: var(--three-color);
        }

        .card-room .box-content .desc {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            margin-bottom: 20px;
        }

        .card-room .box-content .gr-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
    /*.card-room .box-content .gr-btn .btn{
flex: 1;
}
.card-room .box-content .gr-btn .btn-more{
border-radius: 24px 0 24px 0;
}
.card-room .box-content .gr-btn .btn-book{
border-radius: 24px 0 24px 0;
}*/
    .card-room:hover .box-image img {
        transform: scale(1.1);
    }

.restaurants-about {
    position: relative;
}

    .restaurants-about .image-bg {
        height: 100%;
        width: 100%;
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        object-fit: cover;
    }

@media (min-width: 992px) {
    .restaurants-about .image-bg {
        width: 50%;
    }
}

.restaurants-about .wrap-content {
    background-color: rgba(255, 255, 255, 0.9);
    /*min-height: 350px;*/
    z-index: 2;
    display: flex;
    align-items: center;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
    text-align: center;
}

    .restaurants-about .wrap-content .entry-title {
        text-transform: uppercase;
        color: var(--primary-color);
        font-size: 4rem;
        letter-spacing: 0.2rem;
        margin-bottom: 24px;
    }

@media(max-width:991.98px) {
    .restaurants-about .wrap-content .entry-title {
        font-size: 2.8rem;
    }
}

.restaurants-about .wrap-content .entry-content .gr-btn {
    margin-top: 20px;
}

    .restaurants-about .wrap-content .entry-content .gr-btn p {
        display: block;
        margin-bottom: 20px;
    }

        .restaurants-about .wrap-content .entry-content .gr-btn p:last-child {
            margin-bottom: 0;
        }
/*@media (min-width: 768px) {
	.restaurants-about .wrap-content {
		min-height: 600px;
	}
}*/
@media (min-width: 992px) {
    .restaurants-about .wrap-content {
        background-color: #fff;
    }

        .restaurants-about .wrap-content::before {
            content: "";
            background: white;
            background: -moz-linear-gradient(to left, white, white, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
            background: -webkit-linear-gradient(to left, white, white, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
            background: linear-gradient(to left, white, white, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
            display: block;
            width: 50%;
            position: absolute;
            top: 0;
            bottom: 0;
            right: 100%;
            display: none;
        }
}

.restaurants-listbar .item .box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.restaurants-listbar .item .box-content {
    padding: 40px;
}

    .restaurants-listbar .item .box-content .title {
        font-size: 2.9rem;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .restaurants-listbar .item .box-content .desc {
        margin-bottom: 20px;
    }

    .restaurants-listbar .item .box-content .infor {
        margin-bottom: 20px;
    }

        .restaurants-listbar .item .box-content .infor li {
            display: flex;
            margin-bottom: 8px;
        }

            .restaurants-listbar .item .box-content .infor li .icon {
                flex-shrink: 0;
                margin-right: 1.6rem;
                max-height: 2.4rem;
            }

@media (min-width: 576px) {
    .restaurants-listbar .item .box-content .infor li .icon {
        margin-right: 2.4rem;
    }
}

.restaurants-listbar .item .box-content .infor li span {
    flex-grow: 1;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 8px;
}

@media (max-width: 767.98px) {
    .restaurants-listbar .item .box-content {
        padding: 20px 0px;
    }
}

@media (min-width: 768px) {
    .restaurants-listbar .item:nth-child(even) .col-image {
        order: 2;
    }

    .restaurants-listbar .item:nth-child(even) .col-content {
        order: 1;
    }
}

@media (max-width: 767.98px) {
    .restaurants-listbar .item {
        margin-bottom: 30px;
    }

        .restaurants-listbar .item:last-child {
            margin-bottom: 0;
        }
}

.restaurants-content .title {
    font-size: 4rem;
    margin-bottom: 20px;
}

.restaurants-content .desc {
    display: block;
}

.restaurants-content .gr-btn {
    margin-top: 20px;
}

@media (max-width: 991.98px) {
    .restaurants-content {
        margin-bottom: 30px;
    }
}

.restaurants-slider .item {
    position: relative;
    overflow: hidden;
}

    .restaurants-slider .item img {
        width: 100%;
        transform: scale(0.8);
        object-fit: cover;
        transition: all linear 0.5s;
        border-radius: 40px;
    }

.restaurants-slider .center {
    padding: 10px;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #502f1c, #d4af37);
    z-index: 5;
    border-radius: 30px;
}

    .restaurants-slider .center .item img {
        transform: scale(1);
        object-fit: cover;
        transition: all linear 0.5s;
        border-radius: 20px;
    }

@media (max-width: 767.98px) {
    .restaurants-slider .center {
        padding: 15px;
        border-radius: 35px;
    }
}

.restaurants-infor .box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.restaurants-infor .box-content {
    height: 100%;
}

.restaurants-infor .box-content-inner {
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
    padding: 30px;
    height: 100%;
}

    .restaurants-infor .box-content-inner .title {
        font-size: 4rem;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .restaurants-infor .box-content-inner .desc {
        margin-bottom: 10px;
        display: block;
    }

    .restaurants-infor .box-content-inner .infor li {
        display: flex;
        margin-bottom: 8px;
    }

        .restaurants-infor .box-content-inner .infor li .icon {
            flex-shrink: 0;
            margin-right: 1.6rem;
            max-height: 2.4rem;
        }

@media (min-width: 576px) {
    .restaurants-infor .box-content-inner .infor li .icon {
        margin-right: 2.4rem;
    }
}

.restaurants-infor .box-content-inner .infor li span {
    flex-grow: 1;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 8px;
}

.restaurants-infor .box-content-inner .gr-btn {
    margin-top: 30px;
    text-align: center;
}

.restaurants-signature {
    background-color: var(--three-color);
}

    .restaurants-signature .section-heading .subtitle {
        color: #fff;
    }

.restaurants-signature-list .item {
    position: relative;
    background-color: var(--second-color2);
}

    .restaurants-signature-list .item .box-image {
        display: block;
        width: 100%;
        height: 100%;
    }

        .restaurants-signature-list .item .box-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .restaurants-signature-list .item .box-content {
        padding: 20px;
    }

        .restaurants-signature-list .item .box-content .title {
            font-size: 2.4rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

.restaurants-signature-list.type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
}

    .restaurants-signature-list.type-grid .item {
        position: relative;
    }

        .restaurants-signature-list.type-grid .item .box-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-end;
            padding: 20px;
            background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
        }

            .restaurants-signature-list.type-grid .item .box-content .title {
                color: var(--primary-color);
                font-size: 2.4rem;
            }

            .restaurants-signature-list.type-grid .item .box-content .desc {
                color: #fff;
            }

        .restaurants-signature-list.type-grid .item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 3;
        }

        .restaurants-signature-list.type-grid .item:nth-child(2) {
            grid-column: span 2;
            grid-row: span 2;
        }

@media (max-width: 768px) {
    .restaurants-signature-list.type-grid {
        display: block;
    }

        .restaurants-signature-list.type-grid .item {
            margin-bottom: 15px;
        }
}

.restaurants-skybar .box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.restaurants-skybar .box-content .title {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.restaurants-skybar .box-content .desc {
    margin-bottom: 10px;
}

@media (max-width: 991.98px) {
    .restaurants-skybar .box-content {
        margin-bottom: 30px;
    }
}

.services {
    position: relative;
}

.services-slider .item {
    position: relative;
    overflow: hidden;
}

    .services-slider .item img {
        width: 100%;
        transform: scale(0.8);
        object-fit: cover;
        transition: all linear 0.5s;
        border-radius: 40px;
    }

.services-slider .center {
    padding: 10px;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #502f1c, #d4af37);
    z-index: 5;
    border-radius: 30px;
}

    .services-slider .center .item img {
        transform: scale(1);
        object-fit: cover;
        transition: all linear 0.5s;
        border-radius: 20px;
    }

@media (max-width: 767.98px) {
    .services-slider .center {
        padding: 15px;
        border-radius: 35px;
    }
}

.services .image-bg {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    object-fit: cover;
}

@media (min-width: 992px) {
    .services .image-bg {
        width: 50%;
    }
}

.services .wrap-content {
    background-color: rgba(255, 255, 255, 0.9);
    min-height: 350px;
    z-index: 2;
    display: flex;
    align-items: center;
    /*padding-top: 2.4rem;
	padding-bottom: 2.4rem;
	text-align: center;*/
}

    .services .wrap-content .entry-title {
        color: var(--primary-color);
        font-size: 4rem;
        letter-spacing: 0.2rem;
        margin-bottom: 24px;
    }

    .services .wrap-content .entry-content .gr-btn {
        margin-top: 20px;
    }
/*@media (min-width: 768px) {
	.services .wrap-content {
		min-height: 600px;
	}
}*/
@media(max-width:991.98px) {
    .services .wrap-content {
        margin-bottom: 30px;
    }
}

@media (min-width: 992px) {
    .services .wrap-content {
        background-color: #fff;
    }

        .services .wrap-content::before {
            content: "";
            background: white;
            background: -moz-linear-gradient(to left, white, white, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
            background: -webkit-linear-gradient(to left, white, white, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
            background: linear-gradient(to left, white, white, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
            display: block;
            width: 50%;
            position: absolute;
            top: 0;
            bottom: 0;
            right: 100%;
            display: none;
        }
}

.services-list-item {
    /*display: flex;
	flex-wrap: wrap;*/
    margin-bottom: 50px;
}

    .services-list-item .item-content {
        /*width: 32%;*/
        z-index: 2;
        align-self: center;
        position: relative;
        background-color: #f7f7f7;
    }

    .services-list-item .item-content-inner {
        /*background-color: #f7f7f7;
	padding: 37px 32px;*/
        /*width: 120%;*/
        /*border-top: 5px solid var(--three-color);
	border-bottom: 5px solid var(--primary-color);*/
        /*min-height: 400px;*/
    }

        .services-list-item .item-content-inner .title {
            font-size: 3.6rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #dee2e6;
        }

        .services-list-item .item-content-inner .desc {
            margin-bottom: 24px;
        }

@media(max-width:992px) {
    .services-list-item .item-content-inner .desc {
        margin-bottom: 48px;
    }
}

.services-list-item .item-image {
    /*width: 68%;*/
    border-radius: 24px;
    overflow: hidden;
}

    .services-list-item .item-image .services-item-slider .item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media (min-width: 768px) {
    .services-list-item .item-image .services-item-slider.owl-carousel .owl-nav button.owl-prev {
        position: relative;
        left: 15%;
    }

    .services-list-item .item-image .services-item-slider.owl-carousel .owl-nav button.owl-next {
        position: relative;
        right: 15%;
    }
}

@media(min-width:992px) {
    .services-list-item .item-content {
        width: 92%;
        padding: 2rem 5% 4rem 5%;
        margin-left: 8%;
        border-left: 5px solid var(--three-color);
    }

    .services-list-item .item-image {
        margin-top: -7.5rem;
        margin-right: 30%;
        z-index: 2;
        position: relative;
    }

    .services-list-item .item-content .gr-btn {
        text-align: right;
    }

    .services-list-item:nth-child(2n) .item-content {
        background-position: top right;
        padding-left: 5%;
        padding-right: 5%;
        margin-left: 0;
        border-right: 5px solid var(--three-color);
        border-left: 0;
    }

    .services-list-item:nth-child(2n) .item-image {
        margin-left: 30%;
        margin-right: 0;
    }

    .services-list-item:nth-child(2n) .item-content .gr-btn {
        text-align: left;
    }
}
/*@media (min-width: 768px) {
	.services-list-item:nth-child(even) .item-content {
		order: 2;
	}
	.services-list-item:nth-child(even) .item-content-inner {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	.services-list-item:nth-child(even) .item-image {
		order: 1;
	}
}*/
@media (max-width: 767.98px) {
    .services-list-item {
        flex-direction: column-reverse;
    }

        .services-list-item .item-image,
        .services-list-item .item-content {
            width: 100%;
        }

        .services-list-item .item-content {
            margin-top: 10px;
        }

        .services-list-item .item-content-inner {
            width: 100%;
            min-height: auto;
            padding: 20px 15px;
        }
}

.card-service {
    border-radius: 24px;
    overflow: hidden;
}

    .card-service .box-image {
        position: relative;
        overflow: hidden;
    }

        .card-service .box-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 6/4;
            transition: all 0.3s ease;
        }

    .card-service .box-content {
        padding: 20px 15px;
    }

        .card-service .box-content .title {
            font-size: 2.4rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

            .card-service .box-content .title a {
                color: inherit;
            }

        .card-service .box-content .price {
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.4rem;
        }

        .card-service .box-content .price-old {
            font-size: 1.6rem;
            color: var(--primary-color);
            text-decoration: line-through;
        }

        .card-service .box-content .price-value {
            font-size: 1.7rem;
            color: var(--three-color);
        }

        .card-service .box-content .desc {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            margin-bottom: 20px;
        }

        .card-service .box-content .gr-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

    .card-service:hover .box-image img {
        transform: scale(1.1);
    }

.offers-list {
    position: relative;
}

.offers-page-wrap .box-nav-tab {
    overflow: auto;
}

.offers-page-wrap .tab-nav {
    margin-bottom: 30px;
}

    .offers-page-wrap .tab-nav a {
        display: inline-block;
        padding: 20px 10px;
        font-weight: 600;
    }

        .offers-page-wrap .tab-nav a.active {
            color: var(--primary-color);
            border-bottom: 3px solid var(--primary-color);
        }

.offers-related {
    background-color: var(--three-color);
}

.card-offer {
    border-radius: 24px;
    overflow: hidden;
}

    .card-offer .box-image {
        position: relative;
        overflow: hidden;
    }

        .card-offer .box-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

    .card-offer .box-content {
        padding: 20px;
    }

        .card-offer .box-content .title {
            font-size: 2.4rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .card-offer .box-content .desc {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        .card-offer .box-content .gr-btn {
            margin-top: 10px;
        }

    .card-offer:hover .box-image img {
        transform: scale(1.1);
    }

.gallery {
    padding: 60px 0;
    background-color: var(--three-color);
    background-image: url(../../assets/images/res2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

    .gallery:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.5);
        z-index: 0;
    }

    .gallery .section-heading .btn-simple {
        color: var(--primary-color);
    }

        .gallery .section-heading .btn-simple::after, .gallery .section-heading .btn-simple::before {
            color: var(--primary-color);
        }

.gallery-wrap {
    overflow: hidden;
    position: relative;
    /* BUTTON */
    /* TRACK */
    /* ITEM giữ nguyên */
}

    .gallery-wrap::before, .gallery-wrap::after {
        content: "";
        position: absolute;
        top: 0;
        width: 100px;
        height: 100%;
        z-index: 2;
    }

    .gallery-wrap::before {
        left: 0;
        background: linear-gradient(to right, var(--three-color), transparent);
    }

    .gallery-wrap::after {
        right: 0;
        background: linear-gradient(to left, var(--three-color), transparent);
    }

    .gallery-wrap .nav-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: none;
        background: var(--second-color);
        color: #000;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 20px;
    }

    .gallery-wrap .nav-arrow-prev {
        left: 10px;
    }

    .gallery-wrap .nav-arrow-next {
        right: 10px;
    }

    .gallery-wrap .gallery-magic {
        display: flex;
        align-items: center;
        width: max-content;
        gap: 20px;
        will-change: transform;
    }

    .gallery-wrap .item {
        flex: 0 0 auto;
        width: 300px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

        .gallery-wrap .item:nth-child(odd) {
            transform: translateY(20px);
        }

        .gallery-wrap .item:nth-child(even) {
            transform: translateY(-20px);
        }

        .gallery-wrap .item img {
            aspect-ratio: 6/4;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.gallery-page-wrap .box-nav-tab {
    overflow: auto;
}

.gallery-page-wrap .tab-nav {
    margin-bottom: 30px;
}

    .gallery-page-wrap .tab-nav a {
        display: inline-block;
        padding: 20px 10px;
        font-weight: 600;
    }

        .gallery-page-wrap .tab-nav a.active {
            color: var(--primary-color);
            border-bottom: 3px solid var(--primary-color);
        }

.tours-list .item {
    position: relative;
    margin-bottom: 30px;
}

.tours-detail-image {
    position: relative;
    height: 100%;
}

    .tours-detail-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media (min-width: 992px) {
    .tours-detail-image::before {
        content: "";
        background: white;
        background: linear-gradient(to left, white, white, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
        display: block;
        width: 35%;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        z-index: 30;
        display: none;
    }
}

.tours-detail-content {
    padding: 3rem 1.5rem;
}

.tours-detail-content-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 4.8rem;
    border: 1px solid #c99246 !important;
    position: relative;
}

@media (max-width: 1200px) {
    .tours-detail-content-inner {
        padding: 40px 15px;
    }
}

@media (max-width: 991.98px) {
    .tours-detail-content-inner {
        padding: 2.4rem;
    }
}

.tours-detail-content-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 0px;
}

@media (max-width: 767.98px) {
    .tours-detail-content-title {
        font-size: 2.4rem;
    }
}

.tours-detail-content-desc {
    margin-bottom: 10px;
}

.tours-detail-content-info li {
    display: flex;
    margin-bottom: 8px;
}

    .tours-detail-content-info li .icon {
        flex-shrink: 0;
        margin-right: 1.6rem;
        max-height: 2.4rem;
    }

@media (min-width: 576px) {
    .tours-detail-content-info li .icon {
        margin-right: 2.4rem;
    }
}

.tours-detail-content-info li span {
    flex-grow: 1;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 8px;
}

.tours-detail-content .gr-btn-book {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: -15px;
    margin-right: 2.4rem;
}

@media (min-width: 992px) {
    .tours-detail-content .gr-btn-book {
        margin-right: 4.8rem;
    }
}

.tours-detail-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

    .tours-detail-price .price-old {
        font-size: 1.6rem;
        color: var(--primary-color);
        text-decoration: line-through;
    }

    .tours-detail-price .price-value {
        color: var(--three-color);
        font-size: 1.7rem;
    }

.tours-detail-slider {
    height: 100%;
}

    .tours-detail-slider .owl-stage-outer {
        height: 100%;
    }

        .tours-detail-slider .owl-stage-outer .owl-stage {
            height: 100%;
        }

            .tours-detail-slider .owl-stage-outer .owl-stage .owl-item {
                height: 100%;
            }

                .tours-detail-slider .owl-stage-outer .owl-stage .owl-item .item {
                    height: 100%;
                }

    .tours-detail-slider .owl-nav {
        z-index: 40;
    }

    .tours-detail-slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.tours-detail-includ {
    position: relative;
}

.tours-detail-includ-inner .box-inner {
    margin-bottom: 30px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 24px;
}

.tours-detail-includ-inner .box-inner-head {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.card-tour {
    overflow: hidden;
    position: relative;
    border-radius: 24px;
}

    .card-tour .box-image {
        position: relative;
        overflow: hidden;
    }

        .card-tour .box-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

    .card-tour .box-content {
        padding: 20px;
    }

        .card-tour .box-content .title {
            font-size: 2.4rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

            .card-tour .box-content .title a {
                color: inherit;
            }

        .card-tour .box-content .desc {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            margin-bottom: 20px;
        }

    .card-tour:hover .box-image img {
        transform: scale(1.1);
    }

    .card-tour.--inline {
        border: 0;
    }

        .card-tour.--inline .box-image {
            border-radius: 24px;
        }

            .card-tour.--inline .box-image::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
            }

        .card-tour.--inline .box-content {
            position: relative;
            bottom: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            z-index: 10;
            background-color: var(--three-color);
            border-radius: 12px;
            transition: all 0.3s linear;
            text-align: center;
        }

            .card-tour.--inline .box-content .title {
                color: #fff;
                margin-bottom: 20px;
            }

        .card-tour.--inline:hover .box-content {
            transform: translate(-50%, -20px);
        }

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
}

    .blogs-grid .item {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        background-color: var(--three-color);
        border-radius: 24px;
        overflow: hidden;
    }

        .blogs-grid .item .box-image {
            width: 50%;
            position: relative;
            overflow: hidden;
        }

            .blogs-grid .item .box-image a::before {
                content: "";
                position: absolute;
                inset: 1.5rem;
                border: 1px solid #fff;
                z-index: 11;
                border-radius: 14px;
            }

            .blogs-grid .item .box-image a::after {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.2);
                z-index: 1;
            }

            .blogs-grid .item .box-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all 0.3s ease;
            }

            .blogs-grid .item .box-image:hover img {
                transform: scale(1.1);
            }

        .blogs-grid .item .box-content {
            flex: 1;
        }

        .blogs-grid .item .box-content-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            padding: 15px;
            text-align: center;
        }

            .blogs-grid .item .box-content-inner .title {
                color: var(--primary-color);
                margin-bottom: 10px;
                font-size: 2rem;
            }

                .blogs-grid .item .box-content-inner .title a {
                    color: inherit;
                }

            .blogs-grid .item .box-content-inner .desc {
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                line-clamp: 2;
                -webkit-box-orient: vertical;
                font-size: 1.4rem;
                margin-bottom: 10px;
                color: #fff;
            }

        .blogs-grid .item.item-full .box-image {
            width: 100%;
        }

            .blogs-grid .item.item-full .box-image a::before {
                border-radius: 14px;
            }

            .blogs-grid .item.item-full .box-image a::after {
                background-color: rgba(0, 0, 0, 0.4);
            }

        .blogs-grid .item.item-full .box-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

            .blogs-grid .item.item-full .box-content .title {
                color: #fff;
            }

            .blogs-grid .item.item-full .box-content .desc {
                color: #fff;
            }

@media (min-width: 992px) {
    .blogs-grid .item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .blogs-grid .item:nth-child(2), .blogs-grid .item:nth-child(3), .blogs-grid .item:nth-child(4), .blogs-grid .item:nth-child(5) {
        grid-column: span 2;
    }
}

@media (max-width: 767.98px) {
    .blogs-grid .item .box-image {
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    .blogs-grid {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, 1fr);
    }
}

.blogs-list {
    position: relative;
}

.blogs-related {
    background-color: var(--three-color);
}

.card-blog {
    border-radius: 24px;
    overflow: hidden;
}

    .card-blog .box-image {
        position: relative;
        overflow: hidden;
    }

        .card-blog .box-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

    .card-blog .box-content {
        padding: 20px;
    }

        .card-blog .box-content .title {
            font-size: 2.4rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .card-blog .box-content .desc {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        .card-blog .box-content .gr-btn {
            margin-top: 10px;
        }

    .card-blog:hover .box-image img {
        transform: scale(1.1);
    }

.book-table {
    background-color: var(--three-color);
}

.book-table-wrap {
    background-color: #fff;
    padding: 50px;
}

@media (max-width: 767.98px) {
    .book-table-wrap {
        padding: 30px 15px;
    }
}

.book-table-form .form-group {
    margin-bottom: 20px;
}

.book-tour {
    background-color: var(--three-color);
}

.book-tour-wrap {
    background-color: #fff;
    padding: 50px;
}

@media (max-width: 767.98px) {
    .book-tour-wrap {
        padding: 30px 15px;
    }
}

.book-tour-form .form-group {
    margin-bottom: 20px;
}

.skybar-worktime .worktime-item__icon {
    height: 64px;
    width: 64px;
    margin-bottom: 15px;
}

.skybar-worktime .worktime-item__content {
    margin-bottom: 30px;
}

.skybar-worktime .worktime-btn-wrapper {
    align-self: center;
    text-align: center;
}

@media (min-width: 992px) {
    .skybar-worktime .worktime-btn-wrapper {
        text-align: right;
    }
}

.skybar-highlights-list .item .box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skybar-highlights-list .item .box-content {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
}

    .skybar-highlights-list .item .box-content .title {
        font-size: 2.9rem;
        color: var(--primary-color);
        margin-bottom: 0;
    }

@media (max-width: 767.98px) {
    .skybar-highlights-list .item .box-content {
        padding: 20px 0px;
        gap: 15px;
    }
}

@media (min-width: 768px) {
    .skybar-highlights-list .item:nth-child(even) .col-image {
        order: 2;
    }

    .skybar-highlights-list .item:nth-child(even) .col-content {
        order: 1;
    }
}

@media (max-width: 767.98px) {
    .skybar-highlights-list .item {
        margin-bottom: 30px;
    }
}

.skybar-promotions {
    position: relative;
}

    .skybar-promotions .bg-parallax {
        border: none;
        bottom: 0;
        box-shadow: none;
        height: 100%;
        left: 0;
        margin: 0;
        max-height: none;
        max-width: none;
        object-fit: cover;
        outline: none;
        padding: 0;
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
    }

.skybar-promotions-wrap {
    position: relative;
}

.skybar-promotions-inner {
    color: #fff;
}

    .skybar-promotions-inner > * {
        margin-bottom: 16px;
    }

.skybar-water-wrap .view-menu-more {
    text-align: center;
    margin-top: 30px;
}

    .skybar-water-wrap .view-menu-more a {
        color: var(--primary-color);
        text-decoration: underline;
        transition: all 0.3s ease;
    }

        .skybar-water-wrap .view-menu-more a:hover {
            color: var(--three-color);
        }

.skybar-water-list {
    columns: 3;
    column-gap: 20px;
}

    .skybar-water-list .item {
        position: relative;
        margin-bottom: 20px;
    }

        .skybar-water-list .item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .skybar-water-list .item .title {
            position: absolute;
            top: 15px;
            left: 15px;
            font-size: 2.8rem;
        }

@media (max-width: 767.98px) {
    .skybar-water-list {
        columns: 2;
    }

        .skybar-water-list .item .title {
            font-size: 1.8rem;
        }
}

.skybar-water-type .item {
    position: relative;
}

    .skybar-water-type .item .box-image {
        position: relative;
        overflow: hidden;
    }

    .skybar-water-type .item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 1/1;
    }

    .skybar-water-type .item .gr-btn {
        position: absolute;
        bottom: 20px;
        left: 15px;
        z-index: 1;
    }

        .skybar-water-type .item .gr-btn .btn-outline {
            border-color: #fff;
            color: #fff;
            background-color: rgba(0, 0, 0, 0.5);
        }

            .skybar-water-type .item .gr-btn .btn-outline:hover {
                background-color: var(--three-color);
                border-color: var(--three-color);
            }

@media (max-width: 767.98px) {
    .skybar-water-type .item .gr-btn {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767.98px) {
    .skybar-water-type .item {
        margin-bottom: 30px;
    }
}

.skybar-gallery-list {
    columns: 3;
    column-gap: 20px;
}

    .skybar-gallery-list .item {
        display: block;
        overflow: hidden;
        margin-bottom: 20px;
    }

        .skybar-gallery-list .item img {
            transition: all 0.3s ease;
        }

        .skybar-gallery-list .item:hover img {
            transform: scale(1.1);
        }

.book-skybar-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-skybar-form {
    padding: 40px;
}

    .book-skybar-form .form-head {
        font-size: 4rem;
        color: var(--primary-color);
        margin-bottom: 40px;
    }

    .book-skybar-form .form-group {
        margin-bottom: 20px;
    }

@media (max-width: 767.98px) {
    .book-skybar-form {
        padding: 30px 15px;
    }
}

.meetings-about {
    position: relative;
}

    .meetings-about .image-bg {
        height: 100%;
        width: 100%;
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        object-fit: cover;
    }

@media (min-width: 992px) {
    .meetings-about .image-bg {
        width: 50%;
    }
}

.meetings-about .wrap-content {
    background-color: rgba(255, 255, 255, 0.9);
    /*min-height: 350px;*/
    z-index: 2;
    display: flex;
    align-items: center;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
    text-align: center;
}

    .meetings-about .wrap-content .entry-title {
        text-transform: uppercase;
        color: var(--primary-color);
        font-size: 4rem;
        letter-spacing: 0.2rem;
        margin-bottom: 24px;
    }

@media(max-width:991.98px) {
    .meetings-about .wrap-content .entry-title {
        font-size: 2.8rem;
    }
}

.meetings-about .wrap-content .entry-content .gr-btn {
    margin-top: 20px;
}

    .meetings-about .wrap-content .entry-content .gr-btn p {
        display: block;
        margin-bottom: 20px;
    }

        .meetings-about .wrap-content .entry-content .gr-btn p:last-child {
            margin-bottom: 0px;
        }
/*@media (min-width: 768px) {
	.meetings-about .wrap-content {
		min-height: 600px;
	}
}*/
@media (min-width: 992px) {
    .meetings-about .wrap-content {
        background-color: #fff;
    }

        .meetings-about .wrap-content::before {
            content: "";
            background: white;
            background: -moz-linear-gradient(to left, white, white, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
            background: -webkit-linear-gradient(to left, white, white, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
            background: linear-gradient(to left, white, white, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
            display: block;
            width: 50%;
            position: absolute;
            top: 0;
            bottom: 0;
            right: 100%;
            display: none;
        }
}

.meetings-listbar .item .box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meetings-listbar .item .box-content {
    padding: 40px;
}

    .meetings-listbar .item .box-content .title {
        font-size: 2.9rem;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .meetings-listbar .item .box-content .desc {
        margin-bottom: 20px;
    }

    .meetings-listbar .item .box-content .infor {
        margin-bottom: 20px;
    }

        .meetings-listbar .item .box-content .infor li {
            display: flex;
            margin-bottom: 8px;
        }

            .meetings-listbar .item .box-content .infor li .icon {
                flex-shrink: 0;
                margin-right: 1.6rem;
                max-height: 2.4rem;
            }

@media (min-width: 576px) {
    .meetings-listbar .item .box-content .infor li .icon {
        margin-right: 2.4rem;
    }
}

.meetings-listbar .item .box-content .infor li span {
    flex-grow: 1;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 8px;
}

@media (max-width: 767.98px) {
    .meetings-listbar .item .box-content {
        padding: 20px 0px;
    }
}

@media (min-width: 768px) {
    .meetings-listbar .item:nth-child(even) .col-image {
        order: 2;
    }

    .meetings-listbar .item:nth-child(even) .col-content {
        order: 1;
    }
}

@media (max-width: 767.98px) {
    .meetings-listbar .item {
        margin-bottom: 30px;
    }

        .meetings-listbar .item:last-child {
            margin-bottom: 0;
        }
}

.meetings-detail {
    position: relative;
}

.meetings-detail-infor .box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meetings-detail-infor .box-content {
    height: 100%;
}

.meetings-detail-infor .box-content-inner {
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
    padding: 30px;
    height: 100%;
}

    .meetings-detail-infor .box-content-inner .title {
        font-size: 4rem;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .meetings-detail-infor .box-content-inner .desc {
        margin-bottom: 10px;
        display: block;
    }

    .meetings-detail-infor .box-content-inner .infor li {
        display: flex;
        margin-bottom: 8px;
    }

        .meetings-detail-infor .box-content-inner .infor li .icon {
            flex-shrink: 0;
            margin-right: 1.6rem;
            max-height: 2.4rem;
        }

@media (min-width: 576px) {
    .meetings-detail-infor .box-content-inner .infor li .icon {
        margin-right: 2.4rem;
    }
}

.meetings-detail-infor .box-content-inner .infor li span {
    flex-grow: 1;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 8px;
}

.meetings-detail-infor .box-content-inner .gr-btn {
    margin-top: 30px;
    text-align: center;
}

.contact-inner-form .text-head {
    font-size: 3.8rem;
    color: var(--three-color);
    margin-bottom: 10px;
}

.contact-inner-form .form-contact .form-group {
    margin-bottom: 20px;
}

.contact-inner-form .form-contact .form-control {
    border: 0;
    border-bottom: 1px solid #ccc;
    padding: 8px 0;
}

.contact-inner-infor {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 4.8rem;
    border: 1px solid #c99246 !important;
    position: relative;
}

    .contact-inner-infor .text-head {
        font-size: 3.6rem;
        color: var(--primary-color);
    }

    .contact-inner-infor .infor-list li {
        display: flex;
        margin-bottom: 2.4rem;
    }

        .contact-inner-infor .infor-list li .icon {
            flex-shrink: 0;
            margin-right: 1.6rem;
            max-height: 2.4rem;
        }

@media (min-width: 576px) {
    .contact-inner-infor .infor-list li .icon {
        margin-right: 2.4rem;
    }
}

.contact-inner-infor .infor-list li span {
    flex-grow: 1;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 2.4rem;
}

@media (min-width: 768px) {
    .contact-inner-infor .infor-list {
        font-size: 1.8rem;
    }
}

@media (max-width: 991.98px) {
    .contact-inner-infor {
        padding: 2.4rem;
    }
}

.contact-map {
    margin-top: 40px;
}

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

.timeline {
    padding: 80px 20px;
    background: var(--three-color);
    position: relative;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

    .timeline-container::before {
        content: "";
        position: absolute;
        width: 2px;
        background: #c8a97e;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

    .timeline-item::before {
        content: "";
        position: absolute;
        top: 30px;
        width: 14px;
        height: 14px;
        background: #c8a97e;
        border: 4px solid #fff;
        border-radius: 50%;
        z-index: 1;
    }

    .timeline-item.left {
        left: 0;
        text-align: right;
    }

        .timeline-item.left::before {
            right: -7px;
        }

    .timeline-item.right {
        left: 50%;
    }

        .timeline-item.right::before {
            left: -7px;
        }

    .timeline-item .content {
        background: #fff;
        padding: 20px 25px;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        transition: 0.3s;
    }

        .timeline-item .content .year {
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--three-color);
            display: block;
            margin-bottom: 5px;
        }

        .timeline-item .content .title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--primary-color);
        }

        .timeline-item .content .desc {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        .timeline-item .content:hover {
            transform: translateY(-5px);
        }

@media (max-width: 767.98px) {
    .timeline-container::before {
        left: 10px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 30px;
        padding-right: 0;
    }

        .timeline-item::before {
            left: 0 !important;
        }

        .timeline-item.right {
            left: 0;
        }

        .timeline-item.left {
            text-align: left;
        }
}

.exclusively {
    background-color: var(--second-color2);
}

.exclusively-list .item {
    position: relative;
    background-color: #fff;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

    .exclusively-list .item .icons {
        display: block;
        margin-bottom: 10px;
    }

        .exclusively-list .item .icons img {
            width: 28px;
            height: 30px;
        }

    .exclusively-list .item .title {
        font-size: 2.4rem;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .exclusively-list .item:hover {
        box-shadow: 0px 2px 12px 0 rgba(0, 0, 0, 0.1);
        transform: translateY(-10px);
    }

.awards-list .item .box-image {
    display: block;
    width: 180px;
    height: 180px;
    overflow: hidden;
    margin: 0 auto;
}

    .awards-list .item .box-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.awards-list .item .box-content {
    display: block;
    margin-top: 30px;
}

    .awards-list .item .box-content .title {
        text-align: center;
        color: var(--primary-color);
    }

    .awards-list .item .box-content .text-year {
        text-align: center;
    }

.footer-main {
    padding: 40px 0;
    background-color: var(--second-color);
}

.footer-logo {
    display: block;
    margin-bottom: 20px;
}

    .footer-logo img {
        height: 90px;
    }

.footer-head {
    font-size: 2.4rem;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--three-color);
    margin-bottom: 10px;
}

.footer-info li {
    margin-bottom: 10px;
}

    .footer-info li i {
        margin-right: 6px;
    }

.footer-social a {
    background-color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    color: var(--primary-color);
    font-size: 1.6rem;
}

.footer-col ul li {
    margin-bottom: 8px;
}

    .footer-col ul li:last-child {
        margin-bottom: 0;
    }

@media (max-width: 767.98px) {
    .footer-col {
        margin-bottom: 20px;
    }
}

.backtotop {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    background-color: var(--three-color);
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all linear 0.3s;
    transform: translateY(20px);
    box-shadow: 0 0px 3px 0 rgba(255, 255, 255, 0.2);
    z-index: 9999;
}

@media(max-width:767.98px) {
    .backtotop {
        bottom: 75px;
    }
}

.backtotop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fixed-contact {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 99;
}

    .fixed-contact .item {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        font-size: 2.4rem;
        border-radius: 50%;
        background-color: var(--three-color);
        color: #fff;
        cursor: pointer;
        box-shadow: 0 0px 4px 0 rgba(255, 255, 255, 0.3);
    }

        .fixed-contact .item:hover {
            color: #fff;
        }

        .fixed-contact .item + .item {
            margin-top: 15px;
        }

.copyright {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 0;
}

.popup-warning {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.popup-warning-inner {
    width: 95%;
    max-width: 450px;
    padding: 40px;
    background-color: #fff;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    transform: translateY(40px) scale(0.95);
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(5px);
}

    .popup-warning-inner .popup-close {
        position: absolute;
        top: 20px;
        right: 15px;
        z-index: 1;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center;
        font-size: 2.4rem;
    }

    .popup-warning-inner .popup-title {
        font-size: 2.4rem;
        font-weight: 600;
        color: var(--three-color);
    }

    .popup-warning-inner .popup-content {
        text-align: left;
    }

        .popup-warning-inner .popup-content ul {
            margin: 10px 0;
        }

        .popup-warning-inner .popup-content .cta-hotline {
            margin-top: 10px;
            font-size: 1.4rem;
        }

    .popup-warning-inner .gr-btn {
        width: 100%;
    }

        .popup-warning-inner .gr-btn .btn-close {
            display: block;
            align-items: center;
            text-align: center;
            width: 100%;
            padding: 10px;
            border: 1px solid var(--primary-color);
            background-color: transparent;
            color: var(--three-color);
            font-weight: 600;
            transition: all 0.3s ease;
            border-radius: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

            .popup-warning-inner .gr-btn .btn-close:hover {
                background-color: var(--three-color);
                color: #fff;
            }

.popup-warning.active {
    opacity: 1;
    visibility: visible;
}

    .popup-warning.active .popup-warning-inner {
        transform: translateY(0) scale(1);
    }

.popup-bookpromo {
    position: fixed;
    top: 30%;
    right: 0;
    z-index: 9995;
    max-width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

@media(max-width:991.98px) {
    .popup-bookpromo {
        display: none;
    }
}

.popup-bookpromo .box-inner {
    position: relative;
    background-color: var(--three-color);
    padding: 20px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    transform: translateX(40px) scale(0.95);
    transition: all 0.4s ease;
    border-radius: 24px 0 0 24px;
}

    .popup-bookpromo .box-inner .popup-close {
        position: absolute;
        top: 0px;
        right: 0px;
        z-index: 1;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center;
        font-size: 1.8rem;
        color: #fff;
    }

    .popup-bookpromo .box-inner .title {
        font-size: 2.2rem;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .popup-bookpromo .box-inner .desc {
        display: block;
        color: #fff;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

.popup-bookpromo.active {
    opacity: 1;
    visibility: visible;
}

    .popup-bookpromo.active .box-inner {
        transform: translateX(0) scale(1);
    }

/*# sourceMappingURL=style.css.map */
.rooms-home .rooms-home-imgslide {
    width: 80%;
}

    .rooms-home .rooms-home-imgslide .item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 6/4;
        border-radius: 24px;
    }

.rooms-home .inner-box {
    padding: 15px;
}

.rooms-home-list .item .card-room .box-image {
    border-radius: 24px;
}
/*.rooms-home-list .item .card-room .box-image img{
	aspect-ratio: 6 / 5;
}*/
.rooms-home-list .item .card-room .box-content {
    /*border-radius: 11.25px;
	z-index: 10;
	margin-top: -250px;
	background-image: linear-gradient(to bottom, #f1eee6, rgba(241, 238, 230, 0.9));
	max-width: 520px;
	padding: 50px;
	margin-right: auto;
	margin-left: auto;*/

    position: static;
    margin-top: -60px; /* kéo overlap nhẹ */
    max-width: 80%;
    margin-right: auto;
    margin-left: auto;
    background: rgba(255,255,255,0.95);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 10;
    margin-bottom: 20px;
}

@media(max-width:767.98px) {
    .rooms-home-list .item .card-room .box-content {
        /*width: 90%;
		background-image: linear-gradient(to bottom, #f1eee6, rgba(241, 238, 230, 0.9));
		padding: 40px 20px;
		margin-top: -100px;*/

        max-width: 100%;
        margin-top: 10px;
    }
}

.site-mobile {
    position: fixed;
    z-index: 999;
    bottom: 15px;
    right: 20px;
}

    .site-mobile > a {
        font-size: 1.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 5rem;
    }

    .site-mobile .open-booking {
        border-radius: 25px;
        box-shadow: 0 0 1px 1px;
        padding: 5px 25px;
        /*color: #fff;*/
        background: linear-gradient(135deg, #502f1c, #d4af37);
    }

        .site-mobile .open-booking > * {
            color: #fff;
        }

        .site-mobile .open-booking > span:first-child {
            font-size: 2.4rem;
            margin-right: .8rem;
        }

        .site-mobile .open-booking > span img {
            height: 30px;
        }
