@font-face {
    font-family: 'Montserrat';
    src: url('../../fonts/Montserrat-VariableFont_wght.ttf');
}

@font-face {
    font-family: 'Raleway';
    src: url('../../fonts/Raleway-Regular.ttf');
}

@font-face {
    font-family: 'Microsoft JhengHei';
    src: url('../../fonts/microsoft_jhenghei.ttf');
}

* {
    padding: 0;
    margin: 0;
    font-family: 'Microsoft JhengHei', 'Montserrat';
}

html {
    scroll-behavior: smooth;
}

.btn {
    font-size: 14px;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 0;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
    background-color: #b4452c;
    border-color: #b4452c;
    box-shadow: none;
}

.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover {
    background-color: white;
    border-color: #b4452c;
    color: #b4452c;
    box-shadow: none;
}

.btn-transparent:active,
.btn-transparent:focus,
.btn-transparent:hover {
    background-color: black;
    border-color: black;
    color: white;
    box-shadow: none;
    color: white;
}

.btn-primary {
    background-color: white;
    color: #b4452c;
    border-color: #b4452c;
    box-shadow: none;
}

.btn-secondary {
    border-color: #b4452c;
    background-color: #b4452c;
    color: white;
    box-shadow: none;
}

.btn-transparent {
    background-color: transparent;
    color: black;
    border-color: black;
    box-shadow: none;
}

.btn-link {
    color: white;
    border: none;
    box-shadow: none;
    background-color: transparent;
    text-decoration: none;
}

.btn-link:focus,
.btn-link:hover {
    color: white;
    border: none;
    box-shadow: none;
    background-color: transparent;
    text-decoration: none;
}

a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: white;
    cursor: pointer;
}

.inherit-link {
    color: inherit;
    text-decoration: inherit;
    cursor: pointer;
}

a:hover {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    /* color: #505050; */
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 25px;
}

p {
    font-size: 15px;
}

hr {
    opacity: 1;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit;
    border-style: inherit;
    border-width: inherit;
}

.small-text {
    font-size: 14px;
}

.subheading-text {
    font-size: 17px;
}

.white-font,
.white-font span {
    color: white !important;
}

body {
    padding-top: 93px;
}

.form-control {
    border-color: black;
}

.form-control:focus {
    border-color: black;
    box-shadow: none;
}

#header {
    background-image: linear-gradient(to bottom, #5d492f, #816544);
    height: 93px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

#header .header-row {
    width: 100%;
    height: 100%;
}

#header .header-logo-col {
    width: 12.5%;
    height: 100%;
    padding: 0;
    padding-left: 10px;
    padding-right: 10px;
}

#header .header-content-col {
    width: 87.5%;
    height: 100%;
    display: flex;
    padding: 0;
}

.header-links-col {
    width: 81.5%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 75px;
    padding-right: 75px;
}

.header-lang-col {
    width: 7.5%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-text-col {
    width: 8%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.header-buttons-col {
    width: 12%;
    height: 100%;
}

.header-border {
    border-right: solid 1px #ad8c63;
}

#rooms-header,
.content-header {
    background-color: #816544;
    padding-top: 110px;
    padding-bottom: 125px;
}

#header p {
    font-size: 13px;
}

#header .header-wrapper {}

#header .header-items {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-right: solid 1px #ad8c63;
}

#header .header-items:last-child {
    border-right: none;
}

#header .logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#header .header-link-wrapper {
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header .header-link {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Microsoft JhengHei', 'Raleway';
}

#header .header-link-item {
    position: relative;
}

#header .header-link-item a::after {
    content: "";
    left: 0;
    position: absolute;
    bottom: 0;
    height: 3px;
    width: 0;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

#header .header-link-item a:hover::after,
#header .header-link-item a.active::after {
    width: 100%;
}

#header .header-link:hover {
    /* color: #b4452c; */
}

#header .header-link.active {
    /* color: #b4452c; */
}

#header .header-btn {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #bc8e4d;
}

#header .header-btn:hover {
    background-color: #59462d;
}

.header-btn p {
    color: white;
    font-size: 17px !important;
    font-weight: 500;
    font-family: 'Microsoft JhengHei', 'Raleway';
}

#banner-slider {
    /* height: 685px; */
    height: 840px;
}

.banner-lower-overlay {
    position: absolute;
    width: 100%;
    height: 30%;
    left: 0;
    right: 0;
    bottom: 0;
}

.banner-lower-content-wrapper {
    height: 100%;
    width: 25%;
    padding-bottom: 25px;
}

.banner-lower-content {
    width: 100%;
    height: 50%;
}

.book-now-text {
    font-size: 17px;
    font-family: 'Microsoft JhengHei', 'Raleway';
    letter-spacing: 10px;
}

.book-now-border {
    border-left: 1px solid white;
    border-right: 1px solid white;
}

.banner-wrapper {
    padding: 0;
    margin: 0;
    position: relative;
    height: 100%;
}

#banner-slider .banner-slider-item-content {
    padding-bottom: 125px;
}

.banner-wrapper .banner-slider-item-content {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-flow: column;
}

.banner-wrapper .banner-slider-item-content p {
    font-size: 16px;
}

.banner-wrapper .banner-slider-item-content h1 {
    font-size: 75px;
    font-weight: 300;
}

.banner-wrapper .banner-slider-item-content h2 {
    font-size: 50px;
    font-weight: 300;
}

.banner-wrapper .banner-slider-item-content p,
.banner-wrapper .banner-slider-item-content h1,
.banner-wrapper .banner-slider-item-content h2,
.banner-wrapper .banner-slider-item-content h3,
.banner-wrapper .banner-slider-item-content h4,
.banner-wrapper .banner-slider-item-content h5 {
    color: white;
    padding: 0;
    margin: 0;
    line-height: 0.8;
}

.text-slider {
    height: 380px;
}

.text-slider .text-slider-content {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-flow: column;
    margin: 0 auto;
}

#room-slider {
    height: 840px;
    position: relative;
}

#mid-slider {
    height: 840px;
}

#room-slider .room-slider-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    top: 0;
}

#room-slider h1 {
    font-size: 75px;
    color: white;
    font-weight: bold;
    font-family: 'Microsoft JhengHei', 'Montserrat';
}

.left-upper-box {
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-flow: column;
}

.left-bottom-box,
.right-upper-box {
    height: 665px;
}

.right-bottom-box {
    height: 380px;
    text-align: center;
}

.bottom-box {
    height: 665px;
}

#footer {
    background-image: linear-gradient(to bottom, #5d492f, #816544);
}

.footer-padding {
    padding-left: 5%;
    padding-right: 5%;
}

#footer .footer-image-wrapper {
    padding: 25px 0;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-logo {
    width: 55%;
    margin-bottom: 25px;
}

#footer .footer-content-wrapper {
    padding: 25px 25px;
}

.footer-title-wrapper {
    border-bottom: solid 1px white;
}

.footer-content-padding {
    padding-top: 10px;
    padding-right: 15px;
}

.footer-social-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-social-wrapper a {
    width: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.footer-social-wrapper .small-text {
    font-size: 18px;
}

.min-form {
    color: white;
    border: none;
    border-bottom: solid 1px white;
    border-radius: 0;
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
}

.min-form::placeholder {
    color: white;
}

.custom-form {
    border: none;
    border-bottom: solid 1px black;
    border-radius: 0;
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
}

.custom-form::placeholder {
    color: black;
}

.min-form:focus {
    box-shadow: none;
    border-color: white;
    background-color: transparent;
    color: white;
}

.custom-form:focus {
    box-shadow: none;
    border-color: black;
}

.slick-list,
.slick-track {
    height: 100%;
}

#rooms-wrapper,
.content-body {
    margin-top: -50px;
    margin-bottom: 50px;
}

.rooms-box,
.content-box {
    padding-left: 5%;
    padding-right: 5%;
}

.room-desc {
    display: flex;
    align-items: start;
    justify-content: center;
    padding-left: 25px;
    padding-right: 25px;
    flex-flow: column;
    padding-top: 50px;
    padding-bottom: 50px;
}

.room-desc:first-child {
    padding-top: 75px;
}

.room-desc img,
.room-desc table {
    width: 100%;
}

.content-desc {
    display: flex;
    align-items: start;
    justify-content: center;
    padding-left: 50px;
    padding-right: 50px;
    flex-flow: column;
}

.content-desc p {
    padding: 0;
    margin: 0;
}

.overlay-wrapper {
    position: relative;
}

.popup-slider {
    cursor: pointer;
}

.overlay-wrapper::after {
    content: url('../img/expand.png');
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

.overlay-wrapper:hover::after {
    display: flex;
}

.overlay-wrapper .overlay:hover {}

.container-xxl {
    max-width: 1500px !important;
}

.underline {
    border-bottom: solid 1px black;
    padding-bottom: 5px;
}

p a {
    border-bottom: solid 1px black;
    padding-bottom: 5px;
}

.custom-paging .page-item:first-child .page-link {
    border-radius: 0 !important;
    border: none;
}

.custom-paging .page-item.active .page-link {
    background-color: #59462d;
    color: white
}

.custom-paging .page-item .page-link {
    border: none;
    color: #59462d;
    margin-left: 15px;
    margin-right: 15px;
    font-weight: 700;
}

.custom-paging .pagination .page-item.prev-item,
.custom-paging .pagination .page-item.next-item {
    display: none;
}

.custom-dropdown {
    min-width: 6rem;
    background-color: #5d492f;
    padding: 0;
    border-radius: 0;
}

.custom-dropdown a {
    color: white;
    padding: 10px 2px;
    text-align: center;
}

.custom-dropdown a:hover {
    background-color: #ad8c63;
    color: white;
}

.white-font-wrapper h1,
.white-font-wrapper h2,
.white-font-wrapper h3,
.white-font-wrapper h4,
.white-font-wrapper h5,
.white-font-wrapper p {
    color: white;
}

.white-font-wrapper p a {
    text-decoration: none;
    border-color: white;
}

#mobile-sticky {
    display: none;
}

.mobile-sidebar {
    display: none;
}

.content-header-left-pad {
    padding-left: 7.5%;
    padding-right: 0.5%;
}

.content-header-right-pad {
    padding-left: 0.5%;
    padding-right: 7.5%;
}

.offer-link-wrapper {
    width: 35%;
    display: flex;
    justify-content: space-between;
}

.text-slider .slick-dots li.slick-active button:before {
    color: black;
}

.text-slider .slick-dots li {
    width: 5px;
    height: 45px;
}

.left-upper-box:has(h1),
.left-upper-box:has(h2),
.left-upper-box:has(h3),
.left-upper-box:has(h4),
.left-upper-box:has(h5),
.left-upper-box:has(p),
.left-bottom-box:has(h1),
.left-bottom-box:has(h2),
.left-bottom-box:has(h3),
.left-bottom-box:has(h4),
.left-bottom-box:has(h5),
.left-bottom-box:has(p),
.right-upper-box:has(h1),
.right-upper-box:has(h2),
.right-upper-box:has(h3),
.right-upper-box:has(h4),
.right-upper-box:has(h5),
.right-upper-box:has(p),
.half-boxes:has(h1),
.half-boxes:has(h2),
.half-boxes:has(h3),
.half-boxes:has(h4),
.half-boxes:has(h5),
.half-boxes:has(p) {
    padding-left: 25px;
    padding-right: 25px;
}

.footer-text-wrapper {
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    /* padding-left: 12%; */
}

.footer-text-wrapper p {
    font-size: 14px;
}

.no-border {
    border: none;
}

.mobile-lang-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-lang-box {
    margin: 0px 15px;
    background-color: rgba(255, 255, 255, 0.5);
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-lang-box a {
    text-decoration: none;
}

.sticky-toggle {
    display: none !important;
}

.vt-link,
.vt-link:hover {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    color: #786146;
}

.vt-link .underline {
    border-color: #786146;
}

.vt-image {
    max-width: 40px;
    object-fit: contain;
    margin-top: 5px;
    margin-left: 10px;
}

.location-dropdown {
    position: absolute;
    margin: 0px;
    transform: translate(-98px, 95px);
    inset: -3px auto auto 321% !important;
    min-width: 8rem;
}

.location-dropdown a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Raleway';
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
}

.location-dropdown a::after {
    content: "" !important;
    background-color: transparent !important;
}

.dropdown:hover>.dropdown-menu {
    display: block;
}

.dropdown>.dropdown-toggle:active {
    /*Without this, clicking will make it sticky*/
    pointer-events: none;
}

#header-accordian .accordion-item,
#header-accordian .accordion-button,
#header-accordian .accordion-header,
#header-accordian .accordion-button:active,
#header-accordian .accordion-header:active,
#header-accordian .accordion-button:focus,
#header-accordian .accordion-header:focus {
    color: white;
    background-color: #816544;
    border: none;
    box-shadow: none;
    padding-top: 0;
    padding-bottom: 0;
}

#header-accordian .accordion-collapse {
    background-color: #59462d;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 15px;
}

.accordion-button::after {
    margin-left: 15px;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(61deg) brightness(107%) contrast(101%);
}

.slick-prev::before {
    font-family: "Font Awesome 6 Free" !important;
    content: "\f053" !important;
    font-weight: 900 !important;
}

.slick-next::before {
    font-family: "Font Awesome 6 Free" !important;
    content: "\f054" !important;
    font-weight: 900 !important;
}

.slick-prev::before,
.slick-next::before {
    color: white !important;
    font-size: 30px !important;
}

.tri-slider .slick-prev::before,
.tri-slider .slick-next::before {
    color: black !important;
}

.tri-slider .slick-prev {
    left: 1% !important;
}

.tri-slider .slick-next {
    right: 1% !important;
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: inherit !important;
}

.slick-slide>div {
    height: 100%;
}

.tri-slider .content-wrapper {
    min-height: 125px;
}

.no-display,
.is-video {
    display: none;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    padding-bottom: 56.25%;

}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.iframe-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 2;
}

@media only screen and (max-width: 920px) {
    /* #header{
        display: none;
    } */

    #footer {
        padding: 15px 15px;
        padding-bottom: 65px;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 25px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
    }

    .banner-wrapper h1 {
        font-size: 30px;
        white-space: pre-line;
    }

    .offer-link-wrapper {
        width: 55%;
    }
}

@media only screen and (max-width: 768px) {

    .sticky-toggle {
        display: block !important;
        position: absolute;
        height: 50px;
        width: 50px;
        top: 20%;
        right: 2.5%;
    }


    .text-slider .text-slider-content {
        width: 80%;
    }

    .container-xxl {
        max-width: none !important;
    }

    .banner-wrapper .banner-slider-item-content p {
        font-size: 14px;
    }

    .banner-wrapper .banner-slider-item-content h1 {
        font-size: 35px;
        font-weight: 300;
    }

    .banner-wrapper .banner-slider-item-content h2 {
        font-size: 20px;
        font-weight: 300;
    }

    #room-slider h1 {
        font-size: 35px;
        color: white;
        font-weight: bold;
        font-family: 'Microsoft JhengHei', 'Montserrat';
    }

    .left-bottom-box,
    .right-upper-box,
    .left-upper-box,
    .right-bottom-box,
    .bottom-box {
        height: 375px;
    }

    #banner-slider {
        height: calc(100vh - 135px);
    }

    #header {
        height: 80px;
    }

    body {
        padding-top: 80px;
    }

    #banner-slider .banner-slider-item-content {
        padding-bottom: 0px;
    }

    #room-slider,
    #mid-slider {
        height: calc(100vh - 150px);
    }


    .text-slider {
        height: auto;
        padding-bottom: 75px;
        padding-top: 25px;
    }

    .left-upper-box {
        height: 350px;
    }

    .banner-lower-overlay {
        display: none;
    }

    #header .header-logo-col {
        width: 100%;
        padding: 15px 25px;
    }

    #header .header-content-col {
        display: none;
    }

    .footer-logo {
        width: 65%;
    }

    #mobile-sticky {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 55px;
        background-color: #816544;
        z-index: 99;
    }

    .mobile-sticky-col {
        display: flex;
        flex-flow: column;
        justify-content: center;
        text-align: center;
    }

    .mobile-sidebar {
        display: block;
        position: fixed;
        top: 0;
        bottom: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: #816544;
        z-index: 100;
        transition: right 0.5s;
        transition-timing-function: ease-in-out;
        padding: 15px 0;
    }

    .mobile-sidebar.show {
        right: 0;
    }

    .content-header-left-pad,
    .content-header-right-pad {
        padding-left: 2.5%;
        padding-right: 2.5%;
    }

    #rooms-header,
    .content-header {
        background-color: #816544;
        padding-top: 25px;
        padding-bottom: 25px;
        padding-left: 15px;
        padding-right: 15px;
    }


    #rooms-wrapper,
    .content-body {
        margin-top: 0px;
        margin-bottom: 50px;
        padding: 0;
    }

    .rooms-box,
    .content-box {
        padding: 0;
    }
}

@media only screen and (max-width: 575px) {
    .mobile-space-bottom {
        margin-bottom: 10%;
    }
}

@media only screen and (max-width: 425px) {}