@charset "utf-8";
/*-------------Import fonts ---------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&amp;family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&amp;family=Titillium+Web:wght@200;300;600;700&amp;display=swap');

/*-------------General Style---------------------------------------*/
:root {
    --main-color: #c4a676;
    --main-font: 'Playfair', serif;
    --secondary-font: "Titillium Web", sans-serif;
    --tp-color-2: #673bb7;
    --tp-accent-color: #ffc107;
    --tp-text-color: #6c757d;
    --tp-dark-color: #272535;
    --tp-light-bg: #faf8f2;
    --tp-heading-weight: 500;
    --tp-lazy-placeholder: #f7f4ee;
    --tp-lazy-spinner: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50'%3E%3Ccircle cx='25' cy='25' r='20' fill='none' stroke='%23c4a676' stroke-width='4' stroke-linecap='round' stroke-dasharray='31.4 31.4'%3E%3CanimateTransform attributeName='transform' type='rotate' dur='0.9s' repeatCount='indefinite' values='0 25 25;360 25 25'/%3E%3C/circle%3E%3C/svg%3E");
    --tp-lazy-loader-size: 34px 34px;
    --tp-page-loader-logo: none;
}

html {
    overflow-x: hidden !important;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--secondary-font);
    font-weight: 500;
    font-size: 14px;
    background: var(--tp-dark-color);
    height: 100%;
    text-align: center;
    color: #1e1e1e;
    overflow-x: hidden;
}

img.tp-lazy-media {
    transition: opacity .3s ease, filter .3s ease;
}

img.tp-lazy-media.tp-lazy-pending {
    opacity: 0;
    background-color: var(--tp-lazy-placeholder);
    background-image: var(--tp-lazy-spinner);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: var(--tp-lazy-loader-size);
    min-height: 48px;
}

img.tp-lazy-media.tp-lazy-loaded,
img.tp-lazy-media.tp-lazy-error {
    opacity: 1;
    background: none;
}

.bg.tp-lazy-bg.tp-lazy-pending {
    background-color: var(--tp-lazy-placeholder);
    background-image: var(--tp-lazy-spinner) !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: var(--tp-lazy-loader-size) !important;
}

@-o-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

@media only screen and (max-width: 1068px) {
    .content-section {
        padding: 30px 0;
    }
}

/*--------------Typography--------------------------------------*/
p {
    text-align: left;
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 10px;
    font-weight: 400;
    color: var(--tp-text-color);
    font-family: var(--secondary-font);
}

.has-drop-cap:first-letter {
    font-size: 70px;
    float: left;
    padding: 20px 20px 10px 0;
    font-family: var(--main-font);
    color: var(--main-color);
}

blockquote {

    padding: 10px 20px 0;
    margin: 0 0 20px;
    border-left: 10px solid #eee;
    position: relative;
    text-decoration: underline;

}

blockquote p {
    font-style: italic;
    font-family: var(--main-font);
    color: #333;
    line-height: 20px;
    font-size: 1.3em;
}

/* ---------Page preload--------------------------------------*/
.loader-wrap {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 100;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: -20px 0 0 -20px;
    z-index: 20;
    transform: scale(1.0);
}

.loader.tp-loader-logo {
    display: block;
    width: 220px;
    height: 120px;
    margin: -60px 0 0 -110px;
    animation: tpLogoPulse 1.3s ease-in-out infinite;
}

.loader.tp-loader-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.loader i {
    color: var(--main-color);
    font-size: 3.9em;
    animation: k3d 3.5s infinite linear;
    -webkit-box-reflect: below 10px -webkit-linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.3));
    -webkit-box-reflect: below 10px -o-linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.3));
    -webkit-box-reflect: below 10px linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.3));
}

@keyframes tpLogoPulse {
    0% {
        opacity: .55;
        transform: scale(.96);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: .55;
        transform: scale(.96);
    }
}

@keyframes k3d {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(360deg);
        opacity: 0.3;
    }

    100% {
        transform: rotateY(0deg);
    }
}

.cd-tabs-layer,
.cd-reserv-overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

.cd-loader-layer {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    width: 100%;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
}

.cd-loader-layer .loader-layer {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-98%);
    height: 100%;
    width: 2500%;
    background: url(../images/ink2.png) no-repeat 0 0;
    background-size: 100% 100%;
}

.cd-loader-layer.visible {
    opacity: 1;
    visibility: visible;
}

.cd-loader-layer.opening .loader-layer {
    animation: cd-sequence 0.8s steps(24);
    animation-fill-mode: forwards;
}

.cd-loader-layer.closing .loader-layer {
    animation: cd-sequence-reverse 0.8s steps(24);
    animation-fill-mode: forwards;
}

@keyframes cd-sequence {
    0% {
        transform: translateY(-50%) translateX(-2%);
    }

    100% {
        transform: translateY(-50%) translateX(-98%);
    }
}

@keyframes cd-sequence-reverse {
    0% {
        transform: translateY(-50%) translateX(-98%);
    }

    100% {
        transform: translateY(-50%) translateX(-2%);
    }
}

/* ---------Content Styles--------------------------------------*/
#main {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
}

#wrapper {
    vertical-align: top;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.content {
    position: relative;
    z-index: 3;
    background: #fff;
    box-shadow: 0px 10px 74px 0px rgba(0, 0, 0, .8);
}

.content-dec {
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 36px;
    z-index: 10;
    margin-left: -18px;
}

.content-dec:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--main-color);
    border-radius: 50%;
    margin-left: -3px;
    z-index: 10;
}

.content-dec:after {
    content: '';
    position: absolute;
    top: -90px;
    left: 50%;
    width: 1px;
    height: 25px;
    background: #ddd;
    z-index: 10;
}

.content-dec span {
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 36px;
    height: 36px;
    background: #f9f9f9;
    z-index: 1;
    transform: rotate(45deg);
    box-shadow: 0px 0px 0px 6px rgba(255, 255, 255, 0.2);
}

.content-dec2 {
    z-index: -2;
    background: #f9f9f9;
}

.content-dec2:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
}

.container {
    width: min(100% - 25px, 1600px);
    margin-inline: auto;
    position: relative;
    z-index: 5;
}

.container.small-container {
    width: min(100% - 40px, 1100px);
    z-index: 6;
}

.mid-padding {
    padding: 50px 40px;
}

.fl-wrap {
    float: left;
    width: 100%;
    position: relative;
}

.no-bg {
    background: none !important;
}

.full-height {
    height: 100%;
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
    background-repeat: repeat;
    background-origin: content-box;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.hero-slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.respimg,
.single-slider img {
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #272535;
    opacity: .4;
    z-index: 2
}

.overlay-bold {
    opacity: .6
}

.fs-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.no-padding {
    padding: 0 !important;
}

.dec-corner {
    position: absolute;
    width: 70px;
    height: 70px;
    z-index: 10;
}

.dc_lb {
    left: 30px;
    bottom: 30px;
    border-bottom: 1px dashed;
    border-left: 1px dashed;
    border-radius: 0 0 0 20px
}

.dc_rb {
    right: 30px;
    bottom: 30px;
    border-bottom: 1px dashed;
    border-right: 1px dashed;
    border-radius: 0 0 20px 0
}

.dc_rt {
    right: 30px;
    top: 30px;
    border-top: 1px dashed;
    border-right: 1px dashed;
    border-radius: 0 20px 0 0
}

.dc_lt {
    left: 30px;
    top: 30px;
    border-top: 1px dashed;
    border-left: 1px dashed;
    border-radius: 20px 0 0 0
}

.dec-corner {
    border-color: rgba(255, 255, 255, .4);
}

/*------   Header  -----------*/
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.header-top {
    position: relative;
    z-index: 40;
    height: 100px;
    background: transparent;
    border-radius: 0;
}

.header-social {
    float: left;
}

.header-social li {
    float: left;
    margin-right: 20px;
}

.header-social li a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.3em;
    line-height: 100px;
    transition: all .2s ease-in-out;
}

.header-social li a:hover {
    color: var(--main-color);
}

.logo-holder {
    float: left;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
    padding: 0 20px;
    height: 80px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.nav-holder-wrap .logo-holder.scroll-sticky {
    top: 0px !important;
    height: 105px;
    transition: top .35s ease, height .35s ease, padding .35s ease, border-radius .35s ease, box-shadow .35s ease, transform .35s ease;
}

.nav-holder-wrap .logo-holder {
    position: absolute;
    left: 50%;
    top: -100px;
    transform: translateX(-50%);
    float: none;
    height: 200px;
    width: var(--logo-card-width);
    padding: 0 15px;
    background: #fff;
    border-radius: 0 0 18px 18px;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0px 14px 34px rgba(0, 0, 0, .20);
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: top .35s ease, height .35s ease, padding .35s ease, border-radius .35s ease, box-shadow .35s ease, transform .35s ease;
}

.nav-holder-wrap .logo-holder img {
    float: none;
    position: static;
    top: auto;
    margin: 0;
    height: 100px;
    transition: height .35s ease, transform .35s ease;
}

.logo-holder img {
    width: auto;
    height: 40px;
    float: left;
    position: relative;
    top: 50%;
    margin-top: -20px;
}

.header-top_contacts {
    float: left;
    margin-right: 40px;
    position: relative;
    height: 100px;
    line-height: 100px;
    padding: 0 20px 0 40px;
}

.header-top_contacts:after,
.lang-wrap:before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 1px;
    bottom: 30px;
    background: rgba(255, 255, 255, .2);
}

.header-top_contacts:after,
.lang-wrap:before {
    left: auto;
    right: 0;
}

.header-top_contacts a {
    float: left;
    color: #fff;
    margin-right: 20px;
    font-family: var(--secondary-font);
    transition: all .2s ease-in-out;
}

.header-top_contacts a span {
    padding-right: 10px;
    color: var(--main-color);
}

.lang-wrap {
    float: right;
    margin-right: 0px;
    height: 100px;
    line-height: normal;
    color: #fff;
    font-size: 1.4em;
    padding-right: 20px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-wrap a {
    color: #fff;
    margin: 0 4px;
}

.tp-header-mobile-topbar-select {
    float: right;
    height: 100px;
    padding-right: 20px;
    display: flex;
    align-items: center;
}

.header-top .topbar-select {
    height: 34px;
    min-height: 34px;
    padding: 0 20px 0 12px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-family: var(--secondary-font);
    font-weight: 600;
    font-size: 12px;
    line-height: 34px;
    box-sizing: border-box;
    outline: none;
}

.header-top select.topbar-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px;
    background-repeat: no-repeat;
    background-position: right 11px center;
}

.header-top .topbar-select option {
    color: #111;
}

.header-top .topbar-select.topbar-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding-right: 12px;
    user-select: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    width: 100%;
    justify-content: space-between;
}

.header-top .topbar-select.topbar-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.10);
}

.header-top .topbar-select.topbar-dropdown-btn:focus {
    outline: none;
}

.header-top .topbar-select.topbar-dropdown-btn:after {
    content: "▾";
    margin-left: 6px;
    opacity: 0.85;
    font-size: 12px;
    line-height: 1;
}

.topbar-dropdown {
    position: relative;
    display: inline-block;
    min-width: 125px;
}

.topbar-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    width: 100%;
    min-width: 0;
    background: rgba(16, 18, 20, 26%);
    border-radius: 10px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    display: none;
    z-index: 9999;
    backdrop-filter: blur(10px);
    transform: translateY(-4px);
    opacity: 0;
    transition: transform .18s ease, opacity .18s ease;
}

.topbar-dropdown-menu:focus {
    outline: none;
}

.topbar-dropdown.is-open .topbar-dropdown-menu {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.topbar-dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 8px;
    color: #fff;
    font-family: var(--secondary-font);
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.topbar-dropdown-item:hover,
.topbar-dropdown-item.is-active {
    background: rgba(255, 255, 255, 0.10);
}

.topbar-dropdown-item .topbar-lang-flag {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.lang-wrap a:hover,
.lang-wrap a.act-lang {
    color: var(--main-color);
}

.lang-wrap a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-family: var(--secondary-font);
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    transition: all .2s ease-in-out;
	margin: 5px 0;
}

.lang-wrap a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.topbar-lang-flag {
    width: 18px;
    height: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
    flex: 0 0 auto;
}

.topbar-lang-flag .flag-icon {
    display: block;
    width: 18px;
    height: 12px;
    background-size: cover;
    background-position: center;
}

.topbar-lang-text {
    display: inline-block;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.header-reserv-wrap {
    float: right;
    height: 100px;
    line-height: 100px;
    margin-right: 0px;
    display: flex;
    align-items: center;
}

.header-reserv-btn {
    display: inline-block;
    height: 44px;
    line-height: 44px;
    padding: 0 22px;
    background: var(--main-color);
    color: #272535;
    border-radius: 6px;
    font-family: var(--secondary-font);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.6px;
    transition: all .2s ease-in-out;
}

.header-reserv-btn i {
    margin-right: 10px;
}

.header-reserv-btn:hover {
    background: #272535;
    color: var(--main-color);
}

.nav-holder-wrap.scroll-to-fixed-fixed {
    background: #272535;
    width: 100% !important;
    max-width: 100%;
    left: 0 !important;
}

.nav-holder-wrap {
    position: relative;
    z-index: 20;
    height: 80px;
    --logo-card-width: clamp(260px, 22vw, 250px);
    --logo-gap: calc(var(--logo-card-width) + clamp(80px, 8vw, 120px));
    background: linear-gradient(90deg, rgba(39, 37, 53, 0.00) 0%, rgba(39, 37, 53, 0.92) 22%, rgba(39, 37, 53, 0.92) 78%, rgba(39, 37, 53, 0.00) 100%);
    background: linear-gradient(90deg, rgba(39, 37, 53, 0.00) 0%, rgba(39, 37, 53, 0.92) 22%, rgba(39, 37, 53, 0.92) 78%, rgba(39, 37, 53, 0.00) 100%);
    border-radius: 0;
    overflow: visible;
}

.nav-holder {
    float: left;
    position: relative;
    opacity: 1;
    margin: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    visibility: visible;
    z-index: 20;
}

.nav-holder nav {
    position: relative;
    float: none;
    width: 100%;
    height: 80px;
}

.nav-holder nav>ul.menu-left,
.nav-holder nav>ul.menu-right {
    position: absolute;
    top: 0;
    height: 80px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 0 10px;
    list-style: none;
    max-width: calc(50% - (var(--logo-gap) / 2) - 40px);
}

.nav-holder nav>ul.menu-left {
    right: calc(50% + (var(--logo-gap) / 2));
    justify-content: flex-end;
}

.nav-holder nav>ul.menu-right {
    left: calc(50% + (var(--logo-gap) / 2));
    justify-content: flex-start;
}

.nav-holder nav li {
    float: none;
    position: relative;
    margin-right: 0;
    height: auto;
}

.nav-holder nav>ul.menu-left>li,
.nav-holder nav>ul.menu-right>li {
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-holder nav>ul.menu-left>li>a,
.nav-holder nav>ul.menu-right>li>a {
    float: none;
    display: block;
    line-height: 80px;
    padding: 0 14px;
    padding-right: 30px;
    position: relative;
    white-space: nowrap;
}

.nav-holder nav>ul.menu-left>li>a i,
.nav-holder nav>ul.menu-right>li>a i {
    position: absolute;
    right: 17px;
    top: 49%;
    transform: translateY(-50%);
    padding-left: 0;
    font-size: 11px;
}

.nav-holder nav li ul {
    margin: 30px 0 0 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    min-width: 200px;
    top: 80px;
    left: 0;
    z-index: 1;
    padding: 20px;
    background: rgba(17, 16, 26, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.35);
    transition: all .2s ease-in-out;
    border-radius: 0px;
}

@media only screen and (min-width: 1068px) {
    .has-blog>ul.blog-fallback {
        display: none;
    }

    .mega-menu-panel {
        position: absolute;
        left: 50%;
        right: auto;
        width: 100vw;
        top: 80px;
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, 10px);
        transition: all .25s ease-in-out;
        z-index: 999;
        padding: 55px 25px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0px 24px 54px rgba(0, 0, 0, 0.16);
        box-sizing: border-box;
    }

    .nav-holder-wrap.mega-open .mega-menu-panel {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }

    .services-menu-panel {
        position: absolute;
        left: 50%;
        right: auto;
        width: 100vw;
        top: 80px;
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, 10px);
        transition: all .25s ease-in-out;
        z-index: 999;
        padding: 60px 25px 65px;
        background: #fff;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0px 24px 54px rgba(0, 0, 0, 0.12);
        box-sizing: border-box;
    }

    .nav-holder-wrap.services-open .services-menu-panel {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }

    .blog-menu-panel {
        position: absolute;
        left: 50%;
        right: auto;
        width: 100vw;
        top: 80px;
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, 10px);
        transition: all .25s ease-in-out;
        z-index: 999;
        padding: 60px 25px 70px;
        background: #fff;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0px 24px 54px rgba(0, 0, 0, 0.12);
        box-sizing: border-box;
    }

    .nav-holder-wrap.blog-open .blog-menu-panel {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
    }

    .blog-menu-wrap {
        max-width: 1600px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(240px, 320px) 1fr;
        gap: 18px;
        align-items: start;
    }

    .blog-menu-wrap>* {
        min-width: 0;
    }

    .blog-menu-left h3 {
        margin: 0 0 10px;
        text-align: left;
        font-size: 2.4em;
        color: #272535;
    }

    .blog-menu-left p {
        margin: 0;
        text-align: left;
        color: #5e646a;
    }

    .blog-menu-carousel {
        position: relative;
        width: 100%;
        min-width: 0;
    }

    .blog-menu-carousel .swiper-container {
        width: 100%;
        overflow: hidden;
        padding: 0;
        margin: 0 !important;
    }

    .blog-menu-carousel .swiper-wrapper {
        height: auto;
        align-items: stretch;
    }

    .blog-menu-carousel .swiper-slide {
        height: auto;
        display: block;
    }

    .blog-menu-pagination {
        position: relative;
    }

    .blog-menu-pagination .swiper-pagination-bullet:before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        height: 100%;
        width: 6px;
        border-radius: 100%;
        background: #fff;
        margin-left: -3px;
        transition: all 0.5s ease;
    }

    .blog-menu-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
        background: var(--main-color);
    }

    .blog-menu-pagination .swiper-pagination-bullet:after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        width: 22px;
        height: 22px;
        margin: -11px 0 0 -11px;
        box-sizing: border-box;
        border: 1px solid rgba(255, 255, 255, .5);
        border-radius: 100%;
        transition: all .3s ease;
        transform: scale(0.0);
    }

    .blog-menu-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
        transform: scale(1.0);
    }

    .blog-menu-card {
        display: block;
        width: 100%;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 5px;
        overflow: hidden;
        transition: all .2s ease-in-out;
        height: 100%;
    }

    .blog-menu-thumb {
        display: block;
        width: 100%;
        height: 150px;
        overflow: hidden;
    }

    .blog-menu-thumb img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        display: block;
    }

    .blog-menu-content {
        display: flex;
        flex-direction: column;
        padding: 14px 16px 16px;
    }

    .blog-menu-title {
        display: block;
        text-align: left;
        font-family: var(--secondary-font);
        font-weight: 600;
        color: #272535;
        line-height: 18px;
        font-size: 14px;
    }

    .blog-menu-excerpt {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-top: 8px;
        text-align: left;
        color: #8a8f95;
        font-size: 11px;
        line-height: 16px;
    }

    .blog-menu-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 12px;
        align-self: flex-start;
        font-family: var(--secondary-font);
        font-weight: 600;
        font-size: 12px;
        letter-spacing: 0;
        text-transform: none;
        color: #272535;
        position: relative;
        padding-bottom: 6px;
        transition: color .2s ease-in-out;
    }

    .blog-menu-link:after {
        content: "\f105";
        font-family: "Font Awesome 6 Pro";
        font-weight: 700;
        position: relative;
        top: 1px;
        color: var(--main-color);
        transition: transform .2s ease-in-out, color .2s ease-in-out;
    }

    .blog-menu-link:before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 2px;
        height: 1px;
        background: rgba(39, 37, 53, 0.22);
        transform: scaleX(0.35);
        transform-origin: left center;
        transition: transform .25s ease-in-out, background .25s ease-in-out;
    }

    .blog-menu-card:hover {
        transform: translateY(-2px);
        border-color: color-mix(in srgb, var(--main-color) 60%, #000);
    }

    .blog-menu-card:hover .blog-menu-link {
        color: var(--main-color);
    }

    .blog-menu-card:hover .blog-menu-link:after {
        color: var(--main-color);
        transform: translateX(4px);
    }

    .blog-menu-card:hover .blog-menu-link:before {
        background: color-mix(in srgb, var(--main-color) 70%, #272535);
        transform: scaleX(1);
    }

    .services-fallback {
        display: none;
    }

    .mega-fallback {
        display: none;
    }

    @media only screen and (max-width: 1068px) {

        .mega-menu-panel,
        .services-menu-panel,
        .blog-menu-panel {
            display: none !important;
        }

        .services-fallback {
            display: block;
        }

        .mega-fallback {
            display: block;
        }
    }

    .services-menu-wrap {
        max-width: 1600px;
        margin: 0 auto;
    }

    .services-menu-grid {
        display: grid;
        grid-template-columns: repeat(6, minmax(180px, 1fr));
        gap: 18px;
    }

    .services-menu-card {
        display: block;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0px 10px 22px rgba(0, 0, 0, 0.06);
        transition: all .2s ease-in-out;
    }

    .services-menu-thumb {
        display: block;
        width: 100%;
        height: 150px;
        overflow: hidden;
    }

    .services-menu-thumb img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        display: block;
    }

    .services-menu-noimage {
        width: 100%;
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f1f1f1;
        color: #8a8a8a;
        font-family: var(--secondary-font);
        font-weight: 600;
        font-size: 14px;
    }

    .services-menu-title {
        display: block;
        padding: 14px 14px;
        font-family: var(--secondary-font);
        font-weight: 600;
        font-size: 13px;
        color: #272535;
        text-align: center;
    }

    .services-menu-card:hover {
        transform: translateY(-2px);
        box-shadow: 0px 16px 34px rgba(0, 0, 0, 0.10);
        border-color: color-mix(in srgb, var(--main-color) 60%, #000);
    }

    .services-menu-footer {
        text-align: center;
        margin-top: 24px;
    }

    .services-menu-btn {
        height: 54px;
        line-height: 54px;
        padding: 0 54px;
        position: relative;
        display: inline-block;
        font-family: var(--secondary-font);
        font-weight: 600;
        border-radius: 4px;
        color: var(--main-color);
        background: #272535;
        transition: all .3s ease-in-out;
    }

    .services-menu-btn:before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border-radius: 4px;
        border: 1px dotted #ddd;
        transition: all .3s ease-in-out;
    }

    .services-menu-btn:hover {
        background: var(--main-color);
        color: #222;
    }

    .services-menu-btn:hover:before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .mega-menu-list {
        display: grid;
        grid-template-columns: repeat(6, minmax(140px, 1fr));
        gap: 18px;
        max-width: 1600px;
        margin: 0 auto;
    }

    .mega-menu-list li {
        float: none;
        width: auto;
    }

    .mega-menu-list a {
        float: none;
        width: 100%;
        display: block;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        height: 140px;
        padding: 14px 44px 16px 18px;
        font-size: 14px;
        font-weight: 600;
        color: #272535;
        box-shadow: 0px 10px 22px rgba(0, 0, 0, 0.07);
        position: relative;
        transition: all .2s ease-in-out;
        box-sizing: border-box;
        display: flex;
        align-items: flex-end;
        line-height: 1.2;
    }

    .mega-menu-list a.mega-menu-card.has-thumb {
        background: #11101a;
        color: #fff;
        border-color: rgba(0, 0, 0, 0.15);
        overflow: hidden;
    }

    .mega-menu-list a.mega-menu-card.has-thumb:before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.75) 80%);
        z-index: 1;
        pointer-events: none;
    }

    .mega-menu-list a.mega-menu-card.has-thumb .mega-menu-title {
        position: relative;
        z-index: 2;
        display: block;
        color: #fff;
        text-shadow: 0 6px 16px rgba(0, 0, 0, 0.55);
    }

    .mega-menu-list a.mega-menu-card.has-thumb .mega-menu-thumb {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
    }

    .mega-menu-list a.mega-menu-card.has-thumb .mega-menu-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .nav-holder nav .mega-menu-list a {
        color: #272535;
        font-size: 14px;
        font-weight: 600;
        padding: 14px 44px 16px 18px;
        line-height: 1.2;
    }

    .nav-holder nav .mega-menu-list a.mega-menu-card.has-thumb {
        color: #fff;
    }

    .mega-menu-list a:after {
        content: "\f105";
        font-family: "Font Awesome 6 Pro";
        font-weight: 700;
        position: absolute;
        right: 14px;
        top: 14px;
        transform: none;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        border-radius: 100%;
        background: rgba(39, 37, 53, 0.08);
        color: #272535;
        transition: all .2s ease-in-out;
    }

    .mega-menu-list a.mega-menu-card.has-thumb:after {
        background: rgba(255, 255, 255, 0.18);
        color: #fff;
        z-index: 3;
    }

    .mega-menu-list a:hover {
        border-color: color-mix(in srgb, var(--main-color) 70%, #000);
        box-shadow: 0px 16px 34px rgba(0, 0, 0, 0.10);
    }

    .mega-menu-list a:hover:after {
        background: var(--main-color);
        color: #272535;
    }
}

.nav-holder nav li:hover>ul {
    opacity: 1;
    visibility: visible;
    margin: 0;
}

.nav-holder nav li ul li ul {
    top: -10px;
    left: 100%;
    margin-left: 25px;
    margin-top: 0;
    max-width: 200px;
}

.nav-holder nav li ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    margin-right: 0px;
}

.nav-holder nav li ul li {
    width: 100%;
    float: left;
    height: auto;
    position: relative;
    margin: 0;
}

.nav-holder nav li a {
    padding: 5px 8px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    line-height: 25px;
    transition: all .1s linear;
    position: relative;
    font-family: var(--secondary-font);
    font-size: 14px;
}

.nav-holder nav li a i {
    padding-left: 12px;
    transition: all .2s linear;
}

.nav-holder nav li a:hover i {
    transform: rotateX(180deg);
}

.nav-holder nav li a.act-link,
.nav-holder nav li a:hover,
.nav-holder nav li a.actscr-link {
    color: var(--main-color);
}

.nav-holder nav li ul a {
    float: left;
    width: 100%;
    text-align: left;
    padding: 0 15px;
    line-height: 30px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.86);
}

.dark-header .nav-holder nav li ul a {
    color: rgba(255, 255, 255, 0.86);
}

nav li ul a:before,
nav li ul a:after {
    display: none;
}

.serach-header-btn {
    position: relative;
    width: 44px;
    height: 44px;
    line-height: 44px;
    top: 0;
    color: #c4a676;
    background: transparent;
    border: none;
    padding: 0;
    font-family: var(--secondary-font);
    border-radius: 4px;
    transition: all .2s linear;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.serach-header-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--main-color);
}

.serach-header-btn i {
    margin-right: 0;
}

.serach-header-btn_wrap {
    float: right;
    height: 100px;
    line-height: 100px;
    padding: 0 10px;
    display: flex;
    align-items: center;
}

.show-cart,
.show-share-btn {
    display: none;
}

.show-cart,
.show-share-btn {
    float: right;
    font-size: 1.8em;
    color: rgba(255, 255, 255, 0.76);
    cursor: pointer;
    position: relative;
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
    box-sizing: border-box;
}

.show-cart {
    margin-left: 0;
    font-size: 1.6em;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.show-cart:hover,
.show-share-btn:hover {
    color: var(--main-color);
    background: rgba(255, 255, 255, 0.06);
}

.header-tooltip {
    position: absolute;
    top: 100%;
    right: 0;
    width: 180px;
    height: 60px;
    line-height: 60px;
    color: var(--main-color);
    background: #211F2C;
    font-weight: 600;
    transition: all .3s ease-in-out;
    font-size: 15px;
    opacity: 0;
    visibility: hidden;
    border-top: none;
}

.htact:hover .header-tooltip {
    opacity: 1;
    visibility: visible;
}

.show-cart_count {
    position: absolute;
    bottom: 16px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 100%;
    color: #fff;
    right: 16px;
    z-index: 10;
    font-size: 11px;
    background: var(--main-color);
    font-family: var(--secondary-font);
}

.show-cart i,
.show-cart_count,
.header-cart_wrap {
    transition: all .3s ease-in-out;
}

.show-cart:before {
    content: "";
    display: block;
    width: 1px;
    height: 16.8px;
    position: absolute;
    top: 50%;
    left: -20px;
    background: rgba(255, 255, 255, 0.51);
    margin-top: -8.4px;
    transform: rotate(45deg);
}

.booking-reviews,
.br-counter {
    float: right;
    position: relative;
}

.br-counter {
    float: right;
}

.ribbon {
    width: 80px;
    height: 56px;
    background: var(--main-color);
    position: relative;
    transition: all .2s linear;
}

.ribbon:before {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: -20px;
    border-left: 40px solid var(--main-color);
    border-right: 40px solid var(--main-color);
    border-bottom: 20px solid transparent;
    transition: all .2s linear;
}

.br-counter span {
    color: #fff;
    font-family: var(--secondary-font);
    position: absolute;
    top: 14px;
    right: 24px;
    font-size: 2.0em;
    z-index: 10;
    transition: all .2s linear;
}

.booking-reviews:hover .ribbon {
    background: #fff;
}

.booking-reviews:hover .ribbon:before {
    border-right-color: #fff;
    border-left-color: #fff;
}

.br_link {
    float: left;
    margin: 26px 20px 0 0;
}

.star-rating i {
    margin: 0 2px;
    color: var(--main-color);
    font-size: 1.1em;
}

.star-rating i.is-empty {
    color: rgba(198, 158, 92, 0.35);
}

.br_link .star-rating {
    text-align: right
}

.br_link p {
    text-align: right;
    color: #fff;
}

.booking-reviews:hover .br-counter span {
    color: var(--main-color);
}

.wish-list-wrap {
    position: absolute;
    top: 100%;
    margin-top: 10px;
    background: #fff;
    right: 10px;
    width: 450px;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, .05);
    opacity: 0;
    visibility: visible;
    display: none;
    transition: all .3s ease-in-out;
}

.vis-cart {
    opacity: 1;
    visibility: visible;
    right: 0;
}

.header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #272535;
    opacity: .4;
    z-index: 9;
    display: none;
}

.wish-list-container {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 90px;
    overflow: auto;
    padding: 10px 30px;
}

.wish-list-wrap-btns,
.wish-list-title {
    position: absolute;
    bottom: 0;
    height: 70px;
    left: 0;
    right: 0;
    padding: 0 10px;
}

.wish-list-title {
    bottom: auto;
    top: 0;
    line-height: 70px;
    font-size: 1.7em;
    color: var(--main-color);
    border-bottom: 1px solid #eee;
    background: #f9f9f9;
    text-align: left;
    padding: 0 70px 0 30px;
}

.wl_btn {
    float: left;
    width: 100%;
    height: 60px;
    line-height: 60px;
    color: var(--main-color);
    font-family: var(--secondary-font);
    border-radius: 10px;
    background: #272535;
    font-weight: 600;
}

.wish-list-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    line-height: 70px;
    z-index: 10;
    cursor: pointer;
    font-size: 1.6em;
}

.wish-list-item {
    background: #fff;
    padding: 15px;
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 10px;
}

.wish-list-item:before {
    content: '';
    position: absolute;
    left: calc(35% + 20px);
    width: 1px;
    background: #eee;
    height: 100%;
    top: 0;
}

.wish-list-img {
    float: left;
    width: 35%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, .2);
}

.wish-list-descr {
    float: left;
    width: 65%;
    padding: 0 10px 0 40px;
}

.wish-list-img img {
    width: 100%;
    height: auto;
}

.wish-list-descr h4 {
    text-align: left;
    font-weight: 600;
    color: #666;
    padding-bottom: 2px;
    font-family: var(--secondary-font);
}

.wish-list-price {
    margin: 4px 0 10px;
    text-align: left;
    color: var(--main-color);
    font-size: 1.3em;
    font-weight: 500;
}

.wish-list-price span {
    margin-right: 6px;
}

.clear-wishlist {
    position: absolute;
    right: -1px;
    bottom: -1px;
    background: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 10px 0 0 0;
    border: 1px solid #eee;
    border-right-color: #f9f9f9;
    border-bottom-color: #f9f9f9;
    cursor: pointer;
    font-size: 1.4em;
    color: var(--main-color);
}

.wshil_link {
    display: table;
    padding: 6px 15px;
    border: 1px solid #eee;
    background: #f9f9f9;
    font-size: .9em;
    font-family: var(--secondary-font);
}

.clear-wishlist:hover {
    color: #000;
}

/*------ share------------------------------------------------*/
.share-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 0 20px;
    transition: all .2s ease-in-out;
    background: #211F2C;
    overflow: hidden;
    height: 0;
    line-height: 80px;
}

.visshare {
    height: 80px;
}

.share-container {
    z-index: 2;
}

.share-container a {
    display: inline-block;
    position: relative;
    opacity: 0;
    top: -20px;
    margin: 0 20px;
    font-size: 1.3em;
    font-weight: 600;
    color: var(--main-color);
    transition: all .2s ease-in-out;
}

.share-container a.vissharea {
    opacity: 1;
    top: 0;
}

.share-container a:hover {
    color: #fff;
}

.share-icon-foursquare:before {
    content: "foursquare";
}

.share-icon-facebook:before {
    content: "Facebook";
}

.share-icon-twitter:before {
    content: "X-Twitter";
}

.share-icon-tumblr:before {
    content: "Tumblr";
}

.share-icon-linkedin:before {
    content: "Linkedin";
}

.share-icon-pinterest:before {
    content: "Pinterest";
}

.height-emulator {
    z-index: 1;
    position: relative;
}

.main-footer {
    background: #272535;
    position: relative;
    z-index: 2;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 50px;
}

.footer-inner {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.footer-widget-wrap {
    padding: 90px 0 90px;
    position: relative;
    z-index: 10;
}

.footer-widget-title {
    text-align: left;
    color: var(--main-color);
    font-size: 20px;
    padding-bottom: 36px;
    font-weight: bold;
}

.subcribe-form,
#subscribe {
    position: relative
}

.subcribe-form input.enteremail {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 0 20px;
    height: 60px;
    line-height: 60px;
    box-sizing: border-box;
    border-radius: 4px 0 0 4px;
    position: relative;
    z-index: 1;
    color: #fff;
    outline: none;
    float: left;
    font-family: var(--main-font);
}

.enteremail::-webkit-input-placeholder {
    color: #fff;
}

.subcribe-form .subscribe-button {
    float: right;
    z-index: 2;
    height: 60px;
    position: relative;
    outline: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--secondary-font);
    border-radius: 0 4px 4px 0;
    background: var(--main-color);
    transition: all .2s linear;
}

.subcribe-form .subscribe-button:hover {
    background: #fff;
}

.subscribe-message {
    position: absolute;
    bottom: -90px;
    left: 0;
    width: 100%;
    text-align: left;
    font-weight: 500;
    font-size: 1.2em;
    color: var(--main-color);
}

.footer-widget-content p {
    text-align: left;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-widget-content-link {
    color: var(--main-color);
    font-size: 14px;
    margin-top: 6px;
    position: relative;
    font-family: var(--secondary-font);
    transition: all .2s linear;
    text-align: left;
    display: block;
}

.footer-widget-content-link span {
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
}

.footer-widget-content-link:hover {
    color: #fff;
}

.footer-contacts {
    margin-bottom: 26px;
    padding-top: 4px;
}

.footer-contacts li {
    font-family: var(--secondary-font);
    text-align: left;
    margin-bottom: 10px;
    color: #fff;
}

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

.footer-contacts li span {
    margin-right: 20px;
    float: left;
}

.footer-contacts li a,
.footer-contacts li span {
    color: #fff;
    transition: all .2s linear;
}

.footer-list li {
    display: block;
    margin-bottom: 10px;
    text-align: left;
    position: relative;
    padding-left: 20px;
    font-weight: 500;
    font-family: var(--secondary-font);
}

.footer-contacts li a:hover,
.footer-list li a:hover {
    color: var(--main-color);
}

.footer-list li:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f0da";
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 11px;
    font-weight: 700;
    transition: all .2s linear;
    color: var(--main-color);
}

.footer-list li:hover:before {
    left: 4px;
}

.footer-list li a {
    color: #fff;
}

.footer-title-dec {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
    font-size: 7.0vw;
    color: rgba(255, 255, 255, .05)
}

.footer-social {
    position: relative;
    height: 80px;
    line-height: 80px;
    background: #211F2C;
}

.footer-social li {
    display: inline-block;
    margin: 0 10px;
}

.footer-social li a {
    color: var(--main-color);
    font-size: 1.3em;
    transition: all .2s ease-in-out;
}

.footer-social li a:hover {
    color: #fff;
}

.footer-bottom {
    position: relative;
    height: 80px;
    line-height: 80px;
    background: #211F2C;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-logo {
    float: left;
    height: 60px;
    position: relative;
}

.footer-logo img {
    height: 100%;
    width: auto;
}

.copyright {
    display: inline-block;
    color: #fff;
    font-family: var(--secondary-font);
}

.to-top {
    float: right;
    cursor: pointer;
    color: var(--main-color);
    font-family: var(--secondary-font);
}

.to-top i {
    margin-left: 20px;
    color: #fff;
    position: relative;
    top: 0;
    transition: all .3s ease-in-out;
}

.to-top:hover i {
    top: -5px;
}

.footer-separator-wrap {
    margin: 0 auto 90px;
    max-width: 800px;
    position: relative;
}

.footer-separator-wrap:before,
.footer-separator-wrap:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, .1);
    top: 50%;
}

.footer-separator-wrap:before {
    left: 50%;
    margin-left: 80px;
}

.footer-separator-wrap:after {
    right: 50%;
    margin-right: 80px;
}

.footer-separator {
    position: relative;
    display: inline-table;
    width: 100px;
}

.footer-separator:before,
.footer-separator:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    margin-top: -4px;
}

.footer-separator:before {
    left: 0;
}

.footer-separator:after {
    right: 0;
}

.footer-separator span,
.dc_dec-item_left span,
.dc_dec-item_right span {
    position: relative;
    width: 10px;
    height: 10px;
    background: var(--main-color);
    transform: rotate(45deg);
    display: inline-block;
}

.footer-separator span:before,
.dc_dec-item_left span:before,
.dc_dec-item_right span:before {
    content: '';
    position: absolute;
    border: 1px dotted var(--main-color);
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    border-radius: 50%;
}

/*------ section----*/
.content-section {
    position: relative;
    padding: 80px 0;
    background: #fff;
    z-index: 5;
}

.content-section.hidden-section,
.hidden-content {
    overflow: hidden;
}

.content-section.parallax-section {
    padding: 120px 0;
    z-index: 4;
}

.big-padding {
    padding: 140px 0;
}

.content-section.parallax-section.hero-section {
    padding: 240px 0 80px;
}

.content-section.parallax-section.hero-section .overlay {
    opacity: .5;
}

.small-top-padding {
    padding-top: 40px;
}

.par-elem {
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 0;
    right: 15px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .1)
}

.content-section.parallax-section .bg,
.par-elem .bg {
    height: 140%;
    top: -20%;
}

.par-elem .overlay {
    opacity: .5;
}

.hero-section:before,
.bg-parallax-wrap-gradien:before,
.htc_single_item_dec:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(39, 37, 53, 0) 0%, rgba(39, 37, 53, 0.99) 100%);
    z-index: 1;
    pointer-events: none;
}

.htc_single_item_dec:before {
    z-index: 3
}

.hero-call-wrap {
    position: absolute;
    top: 50%;
    left: -60px;
    height: 50px;
    line-height: 50px;
    border: 1px solid var(--main-color);
    z-index: 10;
    transform: translateY(-50%) rotate(-90deg);
    padding: 0 30px;
    overflow: hidden;
    border-radius: 4px;
    background: rgba(255, 255, 255, .1);
}

.hero-call-wrap i {
    margin: 14px 20px 0 0;
    font-size: 1.7em;
    color: var(--main-color);
    float: left;
}

.hero-call-wrap a {
    float: left;
    color: #fff;
    font-size: 1.3em;
    font-family: var(--secondary-font);
    letter-spacing: 1px;
}

.slide-progress_container {
    position: absolute;
    top: 50%;
    height: 150px;
    margin-top: -75px;
    right: 40px;
    z-index: 10;
}

.slide-progress_container:before,
.slide-progress_container:after {
    content: '';
    position: absolute;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--main-color);
    border-radius: 50%;
    margin-left: -3px;
    box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.2)
}

.slide-progress_container:before {
    top: -20px;
}

.slide-progress_container:after {
    bottom: -20px;
}

.slide-progress-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    bottom: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .2);
}

.slide-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: var(--main-color);
}

.section-dec {
    position: absolute;
    left: 50%;
    top: 40px;
    width: 460px;
    height: 340px;
    margin-left: -230px;
    z-index: -1;
    background: url(../images/map_bg.png) no-repeat center;
    opacity: .7;
}

.map-dec2 {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 324px;
    height: 360px;
    margin: -180px 0 0 -162px;
    z-index: -1;
    background: url(../images/map_bg2.png) no-repeat center;
    opacity: .1;
    transform: scale(.8)
}

.sc-dec {
    position: absolute;
    z-index: -1;
    width: 359px;
    height: 207px;
    background: url(../images/map_bg3.png) no-repeat center;
    opacity: .4;
    transform: scale(.7);
}

.sc-dec2 {
    position: absolute;
    z-index: -1;
    width: 253px;
    height: 349px;
    background: url(../images/map_bg4.png) no-repeat center;
    opacity: .4;
    transform: scale(.8);
}

.sc-dec3 {
    position: absolute;
    z-index: -1;
    width: 359px;
    height: 207px;
    background: url(../images/map_bg5.png) no-repeat center;
    opacity: .4;
    transform: scale(.8);
}

.section-title {
    position: relative;
    z-index: 5;
}

.section-title.text-align_left {
    text-align: left;
}

.section-title h4 {
    color: var(--main-color);
    font-style: italic;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 10px;
    position: relative;
}

.section-title h4:before,
.wide_section-title h5:before,
.rooms-carousel-item_container h3:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 40px;
    height: 1px;
    margin-left: -20px;
    background: var(--main-color);
}

.section-title h2 {
    font-size: 35px;
    color: #323246;
    font-weight: var(--tp-heading-weight);
}

.section-title.text-align_left h4:before,
.rooms-carousel-item_container h3:before {
    margin: 0;
    left: 0;
}

.content-section.parallax-section.hero-section .section-title h2,
.dark-bg .section-title h2 {
    color: #fff;
    font-size: 33px;
    font-weight: var(--tp-heading-weight);
}

.hero-section-scroll-ana {
    position: absolute;
    width: 20px;
    height: 30px;
    z-index: 5;
    bottom: 70px;
    left: 50%;
    margin-left: -10px;
}

.hero-section-scroll {
    position: absolute;
    width: 20px;
    height: 30px;
    z-index: 20;
    bottom: 30px;
    left: 50%;
    margin-left: -10px;
}

.hsc2 {
    bottom: 100px
}

.hero-section-scroll-ana:before {
    content: '';
    position: absolute;
    bottom: -50px;
    height: 40px;
    width: 1px;
    left: 50%;
    background: rgba(255, 255, 255, .2)
}

.hero-section-scroll:before {
    content: '';
    position: absolute;
    bottom: -50px;
    height: 40px;
    width: 1px;
    left: 50%;
    background: rgba(255, 255, 255, .2)
}

.mousey {
    float: left;
    width: 20px;
    height: 30px;
    border-radius: 6px;
    padding: 0 6px;
    border: 1px solid rgba(255, 255, 255, .7);
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

.scroller {
    position: relative;
    left: 50%;
    top: 6px;
    margin-left: -2px;
    width: 4px;
    height: 4px;
    background: var(--main-color);
    border-radius: 4px;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    animation-iteration-count: infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
    }

    10% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

.hero-wrap {
    position: relative;
    z-index: 4;
}

.fs-slider-item {
    position: relative;
}

.slideshow-container_wrap .hero-slide-title {
    display: none;
}

.site-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at top, rgba(196, 166, 118, 0.18), transparent 32%),
        rgba(12, 16, 30, 0.72);
    backdrop-filter: blur(10px);
    z-index: 9998;
    display: none;
}

.site-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.site-search-modal-inner {
    width: min(92vw, 760px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 242, 0.94));
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 30px 80px rgba(7, 10, 18, 0.28);
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.site-search-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 10px;
    background: rgba(39, 37, 53, 0.06);
    color: #272535;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}

.site-search-close:hover {
    background: #272535;
    color: #fff;
}

.site-search-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(196, 166, 118, 0.13);
    color: var(--main-color);
    font-family: var(--secondary-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.site-search-title {
    font-family: var(--secondary-font);
    font-weight: 700;
    color: #272535;
    letter-spacing: 0.3px;
    padding-right: 70px;
    font-size: 34px;
    line-height: 1.2;
    margin-top: 18px;
}

.site-search-subtitle {
    margin-top: 10px;
    padding-right: 80px;
    color: rgba(39, 37, 53, 0.7);
    font-family: var(--secondary-font);
    font-size: 15px;
    line-height: 1.7;
}

.site-search-form {
    margin-top: 26px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(39, 37, 53, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.site-search-input-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(196, 166, 118, 0.16), rgba(39, 37, 53, 0.08));
    color: var(--main-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 16px;
}

.site-search-input {
    width: auto;
    flex: 1 1 auto;
    height: 56px;
    border-radius: 16px;
    border: 0;
    background: transparent;
    padding: 0 6px 0 0;
    font-family: var(--secondary-font);
    color: #272535;
    font-size: 16px;
}

.site-search-input::placeholder {
    color: rgba(39, 37, 53, 0.45);
}

.site-search-input:focus {
    outline: none;
}

.site-search-submit {
    height: 54px;
    padding: 0 24px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #272535 0%, #3b3951 100%);
    color: #fff;
    font-family: var(--secondary-font);
    font-weight: 700;
    letter-spacing: .04em;
    flex: 0 0 auto;
    transition: transform .25s ease, box-shadow .25s ease;
}

.site-search-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(39, 37, 53, 0.18);
}

.site-search-helper {
    margin-top: 14px;
    color: rgba(39, 37, 53, 0.58);
    font-size: 13px;
    font-family: var(--secondary-font);
}

.site-search-results {
    margin-top: 18px;
    max-height: 48vh;
    overflow: auto;
    padding-right: 6px;
}

.site-search-results::-webkit-scrollbar {
    width: 8px;
}

.site-search-results::-webkit-scrollbar-thumb {
    background: rgba(39, 37, 53, 0.18);
    border-radius: 10px;
}

.site-search-result-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 10px;
    color: #272535;
    border: 1px solid rgba(39, 37, 53, 0.08);
    background: rgba(255, 255, 255, 0.74);
    margin-top: 12px;
    font-family: var(--secondary-font);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.site-search-result-card:hover {
    transform: translateY(-2px);
    border-color: rgba(196, 166, 118, 0.38);
    box-shadow: 0 18px 32px rgba(39, 37, 53, 0.08);
    background: rgba(255, 255, 255, 0.94);
}

.site-search-result-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(196, 166, 118, 0.18), rgba(39, 37, 53, 0.08));
    color: var(--main-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 17px;
}

.site-search-result-body {
    min-width: 0;
    display: block;
    flex: 1 1 auto;
    text-align: left;
}

.site-search-result-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
    text-align: left;
}

.site-search-result-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 10px;
    background: rgba(39, 37, 53, 0.07);
    color: #272535;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-search-result-meta {
    color: var(--main-color);
    font-size: 12px;
    font-weight: 600;
}

.site-search-result-card strong {
    display: block;
    font-size: 18px;
    line-height: 1.4;
    color: #171522;
    text-align: left;
}

.site-search-result-excerpt {
    display: block;
    margin-top: 7px;
    color: rgba(39, 37, 53, 0.68);
    font-size: 14px;
    line-height: 1.65;
    text-align: left;
}

body.site-search-open .site-search-overlay {
    display: block;
}

body.site-search-open .site-search-modal {
    display: flex;
}

body.site-search-open {
    overflow: hidden;
}

.site-search-empty {
    padding: 26px 20px;
    color: rgba(39, 37, 53, 0.7);
    font-family: var(--secondary-font);
    text-align: center;
    border: 1px dashed rgba(39, 37, 53, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.55);
}

.site-search-empty strong {
    display: block;
    font-size: 18px;
    color: #272535;
    margin-bottom: 8px;
}

.site-search-empty span {
    display: block;
    font-size: 14px;
    line-height: 1.7;
}

.site-search-empty-icon {
    width: 62px;
    height: 62px;
    border-radius: 10px;
    margin: 0 auto 14px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    background: linear-gradient(135deg, rgba(196, 166, 118, 0.18), rgba(39, 37, 53, 0.07));
    font-size: 22px;
}

.site-search-empty-loading .site-search-empty-icon i {
    animation: siteSearchSpin 1s linear infinite;
}

@keyframes siteSearchSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 767px) {
    .site-search-modal {
        padding: 14px;
    }

    .site-search-modal-inner {
        width: 100%;
        border-radius: 10px;
        padding: 20px;
    }

    .site-search-title {
        font-size: 28px;
        padding-right: 58px;
    }

    .site-search-subtitle {
        padding-right: 0;
    }

    .site-search-form {
        display: block;
        padding: 12px;
    }

    .site-search-input-icon {
        margin-bottom: 10px;
    }

    .site-search-input {
        width: 100%;
        display: block;
        height: 46px;
        padding: 0;
    }

    .site-search-submit {
        width: 100%;
        margin-top: 10px;
    }

    .site-search-result-card {
        gap: 12px;
        padding: 14px;
    }

    .site-search-result-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }
}

.hero-title-container {
    position: relative;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
}

.hero-title-container.htc_single .section-title h4,
.hero-title-container.htc_single .section-title h2,
.hero-title-container.htc_single .section-title .section-separator,
.hero-title-container.htc_single .section-title .hero-detail-btn {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1.4s ease, transform 1.4s ease;
    will-change: opacity, transform;
}

.hero-title-container.htc_single.hero-title-hidden .section-title h4,
.hero-title-container.htc_single.hero-title-hidden .section-title h2,
.hero-title-container.htc_single.hero-title-hidden .section-title .section-separator,
.hero-title-container.htc_single.hero-title-hidden .section-title .hero-detail-btn {
    opacity: 0;
    transform: translateY(10px);
}

.htc_single {
    top: 0;
    transform: translateY(0);
}

.htc_single2 {
    margin-top: 110px;
}

.content-section.parallax-section.hero-section .htc_single .section-title h2 {
    font-size: 50px;
}

.hero-title-container .section-title h2,
.hero-title-container .section-title h2 a {
    color: #fff;
}

.hero-title-container .section-title h2 {
    font-size: 6.7em;
    line-height: normal;
    padding: 20px 0 20px;
}

.hero-title-container .section-title .hero-detail-btn {
    display: inline-block;
    float: none;
    margin-top:20px;
    margin-bottom:20px;
}

.hs_btn {
    position: absolute;
    top: 50%;
    z-index: 120;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    cursor: pointer;
}

.hs_btn i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 6px rgba(255, 255, 255, 0.2);
    transition: all .2s ease-in-out;
    font-size: 1.3em;
    font-weight: bold;
    background: #272535;
    color: var(--main-color);
}

.hs_btn:hover i {
    background: var(--main-color);
    color: #272535;
    box-shadow: 0px 0px 0px 12px rgba(255, 255, 255, 0.2);
}

.hs_btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -90px;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, .2);
    z-index: -3;
    transition: all .5s ease-in-out;
}

.hs_btn:hover:before {
    width: 70px;
    transition-delay: .3s
}

.hs_btn_wrap_preview {
    position: absolute;
    top: 50%;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    margin-top: -50px;
    transition: all .3s ease-in-out;
    box-shadow: 0px 0px 0px 6px rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: scale(0);
}

.hs_btn:hover .hs_btn_wrap_preview {
    opacity: 1;
    transform: scale(1);
    transition-delay: .2s
}

.hs_btn_prev {
    left: 20px;
}

.hs_btn_next {
    right: 20px;
}

.hs_btn_prev:before {
    left: auto;
    right: -90px;
}

.hs_btn_next .hs_btn_wrap_preview {
    right: 120px;
}

.hs_btn_prev .hs_btn_wrap_preview {
    left: 120px;
}

.hs_btn-dec {
    position: absolute;
    top: 50%;
    height: 150px;
    width: 46px;
    background: #fff;
    z-index: -1;
    margin-top: -75px;
}

.hs_btn-dec:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ccc;
}

.hs_btn_prev .hs_btn-dec {
    left: -20px;
    border-radius: 0 20px 20px 0;
}

.hs_btn_next .hs_btn-dec {
    right: -20px;
    border-radius: 20px 0 0 20px;
}

.tcs-pagination_wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    z-index: 4;
    height: 46px;
    padding: 0 80px;
    border-radius: 20px 20px 0 0;
}

.hero-slider-pag {
    margin-top: 15px
}

.section-separator {
    position: relative;
    margin-top: 20px;
}

.section-separator:before,
.section-separator:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 70px;
    height: 1px;
    background: #eee;
}

.section-separator:before {
    left: 50%;
    margin-left: 70px;
}

.section-separator:after {
    right: 50%;
    margin-right: 70px;
}

.parallax-section .section-separator:before,
.parallax-section .section-separator:after,
.fix-bar-init .section-separator:before,
.fix-bar-init .section-separator:after,
.sect_se_transparent:after,
.sect_se_transparent:before {
    background: rgba(255, 255, 255, .3)
}

.section-separator i {
    font-size: 1.7em;
    color: var(--main-color);
}

.breadcrumbs-wrap {
    position: relative;
    height: 80px;
    line-height: 80px;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    box-shadow: 0px 10px 54px 0px rgba(0, 0, 0, .05);
    z-index: 20;
    background: #fff;
}

.breadcrumbs-wrap a,
.breadcrumbs-wrap span {
    display: inline-block;
    margin: 0 20px;
    font-weight: 600;
    font-family: var(--secondary-font);
    position: relative;
    color: #222;
}

.breadcrumbs-wrap span {
    color: #999;
}

.breadcrumbs-wrap a:before {
    font-family: "Font Awesome 6 Pro";
    content: '\f0da';
    position: absolute;
    right: -23px;
    top: 50%;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    margin-top: -10px;
    font-weight: 700;
    color: var(--main-color);
    transition: all .3s ease-in-out;
}

.fw-search-wrap {
    position: relative;
    padding: 30px;
    background: #272535;
    border-radius: 10px;
    z-index: 12;
    margin-bottom: 50px;
}

.fw-search-wrap_hero {
    position: relative;
    box-shadow: 0px 0px 0px 6px rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin-top: 50px;
}

.content-section.parallax-section.hero-section.htc_single_item {
    z-index: 7;
    padding: 270px 0 85px;
}

@media (min-width: 992px) {
    .content-section.parallax-section.hero-section.htc_single_item {
        min-height: 100vh;
    }

    .content-section.parallax-section.hero-section.htc_single_item .slideshow-container_wrap,
    .content-section.parallax-section.hero-section.htc_single_item .multi-slideshow_fs,
    .content-section.parallax-section.hero-section.htc_single_item .swiper-container,
    .content-section.parallax-section.hero-section.htc_single_item .swiper-wrapper,
    .content-section.parallax-section.hero-section.htc_single_item .swiper-slide,
    .content-section.parallax-section.hero-section.htc_single_item .ms-item_fs {
        min-height: 100vh;
        height: 100vh;
    }
}

.fw-search-wrap:before,
.st-gallery:before,
.about-img-hotifer:before,
.content-front:before,
.content-back:before,
.column-section-wrap:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    bottom: 15px;
    right: 15px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    z-index: 1;
}

.column-section-wrap:before {
    background: rgba(255, 255, 255, .02);
}

.content-front:before {
    border: 1px solid rgba(255, 255, 255, .3);
}

.fw-search-wrap:after,
.st-gallery:after,
.about-img-hotifer:after,
.column-section-wrap:after {
    content: '\25CF\25CF\25CF\25CF\25CF\25CF';
    position: absolute;
    top: 12px;
    font-size: 5px;
    height: 4px;
    background: #272535;
    width: 100px;
    margin-left: -50px;
    z-index: 2;
    letter-spacing: 8px;
    color: var(--main-color);
    left: 50%;
    text-align: center;
}

.about-img-hotifer:after {
    content: '\25CF\25CF\25CF';
    width: 60px;
    margin-left: -30px;
}

.custom-form {
    position: relative;
    z-index: 3;
}

.custom-form textarea,
.custom-form input[type="text"],
.custom-form input[type=email],
.custom-form input[type=password],
.custom-form input[type=button] {
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .05);
    width: 100%;
    padding: 0 20px 0 60px;
    height: 60px;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    -webkit-appearance: none;
    text-align: right;
    font-family: var(--secondary-font);
}

.custom-form .nice-select input {
    padding-left: 20px;
}

.custom-form input::-webkit-input-placeholder,
.custom-form textarea::-webkit-input-placeholder {
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    font-family: var(--secondary-font);
}

.custom-form input:-moz-placeholder,
.custom-form textarea:-moz-placeholder {
    color: #fff;
    font-weight: 600;
    font-size: 13px
}

.custom-form textarea {
    height: 200px;
    resize: none;
    padding: 25px 20px;
    -webkit-appearance: none;
}

.daterangepicker {
    width: 506px !important;
    overflow: visible;
    border-radius: 10px;
}

.fw-search-wrap-title {
    position: relative;
    margin: 10px 0 0;
    color: #fff;
    font-size: 1.9em;
}

.fix-bar-init .section-separator,
.fw-search-wrap_hero_box .section-separator {
    margin: 15px 0 30px;
}

.input-wrap,
.fix-bar-init {
    position: relative;
}

.fix-bar-init .input-wrap,
.fw-search-wrap_hero_box .input-wrap {
    margin-bottom: 20px;
}

.shop-header {
    padding: 0 20px 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.shop-header_opt {
    position: absolute;
    top: -10px;
    right: 0;
    width: 250px;
}

.nice-select {
    height: 60px;
    line-height: 60px;
    border-radius: 4px;
    border: 1px solid #eee;
    background: #fff;
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.04);
}

.nice-select:after {
    border-bottom: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
}

.shop-header h4 {
    text-align: left;
    top: 10px;
    font-size: 1.9em;
    font-weight: 500;
    position: relative;
}

.input-wrap label {
    position: absolute;
    top: 18px;
    left: 20px;
    color: #fff;
    z-index: 10;
    font-size: 1.3em;
    font-family: var(--secondary-font);
}

.quantity {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .05);
    overflow: hidden;
    padding: 0 20px;
    height: 60px;
    font-family: var(--secondary-font);
    border-radius: 4px;
}

quantity,
.quantity_title {
    float: left;
    position: relative;
}

.quantity_title {
    font-size: 1.3em;
    top: 18px;
    color: #fff;
}

.quantity input.minus,
.quantity input.plus,
.quantity input.qty {
    width: 30px;
    height: 50px;
    border-radius: 0;
    text-align: center;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    -webkit-appearance: none;
    background: none;
    top: 5px;
    font-size: 1.3em;
    color: var(--main-color);
}

.quantity-item {
    float: right;
    position: relative;
}

.quantity input.qty {
    color: #fff;
    border-right: none;
    border-left: none;
    cursor: default;
    -webkit-appearance: none;
}

.daterangepicker td.active,
.daterangepicker td.active:hover,
.daterangepicker .drp-buttons .btn.btn-primary,
.searchform-submit {
    background: var(--main-color);
}

.daterangepicker .calendar-table table,
.daterangepicker .drp-buttons .btn.btn-primary {
    font-family: var(--secondary-font);
}

.daterangepicker .drp-buttons .btn {
    border: none;
    border-radius: 4px;
    margin-top: 0;
    padding: 12px 22px !important;
}

.daterangepicker .drp-buttons .btn:before {
    display: none
}

.daterangepicker .drp-buttons {
    padding: 12px 30px;
}

.daterangepicker .calendar-table td,
.daterangepicker .calendar-table th {
    font-size: 13px;
    font-weight: 600;
}

.searchform-submit {
    display: block;
    height: 60px;
    cursor: pointer;
    width: 100%;
    border: none;
    -webkit-appearance: none;
    border-radius: 4px;
    position: relative;
    font-weight: 500;
    font-family: var(--secondary-font);
    transition: all .2s ease-in-out;
}

.searchform-submit:hover {
    background: #fff;
    color: var(--main-color);
}

.bs_btn:before,
.bs_btn:after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    width: 30px;
    background: #666;
    transition: all .3s ease-in-out;
}

.bs_btn:before {
    left: 20px;
}

.bs_btn:after {
    right: 20px;
}

.bs_btn:hover:before,
.bs_btn:hover:after {
    width: 50px;
}

/*------gallery------------------------------------------------*/
.grid-item-holder {

    height: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.album-card .grid-item-holder img,
.photo-grid .grid-item-holder img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .3s ease-in-out;
}

.album-card .grid-item-holder,
.photo-grid .grid-item-holder {
    display: block;
    width: 100%;
    overflow: hidden;
}

.photo-grid .grid-item-holder,
.photo-grid .grid-item-holder img,
.photo-grid .grid-item-holder .no-image-box,
.photo-grid-link,
.photo-grid-link:after {
    border-radius: 10px;
}

.photo-grid-link {
    position: relative;
    display: block;
}

.photo-grid-link:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 25, 38, 0.08) 0%, rgba(20, 25, 38, 0.36) 100%);
    opacity: 0;
    transition: opacity .3s ease;
}

.photo-grid-zoom-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 62px;
    height: 62px;
    margin-left: -31px;
    margin-top: -31px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: #b07841;
    font-size: 22px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
    transform: translateY(10px) scale(0.92);
    opacity: 0;
    z-index: 2;
    transition: all .3s ease;
}

.album-card .grid-item-holder .no-image-box,
.photo-grid .grid-item-holder .no-image-box {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    color: #8a8a8a;
    font-weight: 700;
}

@media only screen and (max-width: 768px) {

    .album-card .grid-item-holder img,
    .photo-grid .grid-item-holder img,
    .album-card .grid-item-holder .no-image-box,
    .photo-grid .grid-item-holder .no-image-box {
        height: 200px;
    }
}

.gallery-back-wrap {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.album-card .grid-item-holder:before,
.photo-grid .grid-item-holder:before {
    display: none;
}

.album-card .grid-item-holder:hover img,
.photo-grid .grid-item-holder:hover img {
    transform: scale(1.08);
}

.photo-grid .grid-item-holder:hover .photo-grid-link:after {
    opacity: 1;
}

.photo-grid .grid-item-holder:hover .photo-grid-zoom-icon {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.spad .gallery-item {
    padding: 6px;
}

.min-pad .gallery-item {
    padding: 2px;
}

.hid-port-info .grid-item-holder {
    overflow: hidden;
}

.grid-big-pad .gallery-item {
    padding: 12px;
}

.gallery-item,
.grid-sizer {
    width: 33.333333%;
    position: relative;
    float: left;
    overflow: hidden;
}

.grid-item-holder:before,
.post-item_media a:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #272535;
    z-index: 2;
    opacity: 0;
    transition: all .2s cubic-bezier(.19, 1, .22, 1) 0ms;
}

.grid-item-holder:hover:before,
.post-item_media a:hover:before {
    opacity: .7;
}

.gallery-item-second,
.grid-sizer-second {
    width: 66.6%;
}

.four-column .gallery-item {
    width: 25%;
}

.four-column .gallery-item.gallery-item-second,
.two-column .gallery-item,
.fw-gi .gallery-item .grid-item-holder,
.fw-gi .gallery-item .grid-item-details {
    width: 50%;
}

.fw-gi .gallery-item {
    width: 100%;
}

.gallery-item img,
.grid-sizer img,
.post-item_media a img {
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    z-index: 1;
    background: #272535;
    transform: translateZ(0);
    transition: all .3s ease-in-out;
}

.gallery-item:hover img,
.post-item_media a:hover img {
    transform: scale(1.15);
}

.grid-item-holder {
    overflow: hidden;
    position: relative;
    border-radius: 10px 10px 0 0;
}

.list-single-gallery .grid-item-holder {
    border-radius: 10px;
}

.grid-item-details {
    padding: 30px;
    border: 1px solid #eee;
    background: #fff;
    border-top: none;
    position: relative;
    box-sizing: border-box;
    border-radius: 0 0 10px 10px;
}

.grid-item-details:after {
    content: '';
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    z-index: -1;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 10px 14px 0 rgba(37, 44, 65, 0.12);
    transition: all .3s ease;
}

.gallery-item:hover .grid-item-details:after {
    bottom: 6px;
}

.grid-item-details h3 {
    display: block;
    text-align: left;
    padding-bottom: 12px;
    color: #333;
    font-size: 23px;
    position: relative;
    font-weight: 600;
}

.grid-item-details h3 a {
    color: #333;
}

.grid-item-details h3 span {
    position: absolute;
    right: 0;
    top: 6px;

    font-size: 12px;
    font-style: italic;
}

.grid-item-details p {
    text-align: left;
}

.grid-item_price span {
    font-size: 18px;
    position: relative;
    float: left;
    color: var(--main-color);
    font-weight: 600;
}

.grid-item_price {
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}

.fw-gi .gallery-item .grid-item-holder,
.fw-gi .gallery-item .grid-item-details,
.fw-gi2-column .grid-item-holder,
.fw-gi2-column .gallery-item .grid-item-details {
    float: left;
    overflow: hidden;
}

.fw-gi .gallery-item .grid-item-holder,
.fw-gi2-column .grid-item-holder {
    border-radius: 10px 0 0 10px;
}

.fw-gi2-column .gallery-item .grid-item-details,
.fw-gi .gallery-item .grid-item-details {
    width: 55%;
}

.fw-gi2-column .grid-item-holder,
.fw-gi .gallery-item .grid-item-holder {
    width: 45%;
}

.fw-gi .gallery-item .grid-item-details,
.fw-gi2-column .gallery-item .grid-item-details {
    border: 1px solid #eee;
    border-left: none;
    border-radius: 0 10px 10px 0;
    padding: 22px 30px;
}

.fw-gi2-column .gallery-item .grid-item-details {
    padding: 20px 30px 33px;
    background: #f9f9f9;
}

.fw-gi2-column .gallery-item .grid-item-details .gid_link {
    background: #fff
}

.fw-gi2-column .gallery-item .grid-item-details h3 {
    font-size: 1.8em;
}

.grid-item-details h3:hover a,
.post-item_content h3 a:hover {
    color: var(--main-color);
}

.lg-actions .lg-next,
.lg-actions .lg-prev {
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .2);
}

.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
    color: #fff;
}

.room-card-details {
    overflow: hidden;
    margin: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.rcd-single {
    margin: 20px 0;
    padding: 0 0 40px;
    border-top: none;
}

.room-card-details li {
    float: left;
    margin-right: 20px;
    color: #666;
}

.rcd-single li {
    font-size: 1.5em;
}

.room-card-details li i {
    margin-right: 10px;
    color: var(--main-color);
}

.like-btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 44px;
    background: #fff;
    border-radius: 50%;
    z-index: 10;
    color: var(--main-color);
    box-shadow: 0px 0px 0px 6px rgba(255, 255, 255, 0.2);
    font-size: 1.3em;
}

.like-btn i,
.like-btn,
.like-btn span {
    transition: all .2s ease-in-out;
}

.like-btn span {
    position: absolute;
    left: 100%;
    margin: -24px 0 0 20px;
    top: 50%;
    height: 40px;
    line-height: 40px;
    z-index: 20px;
    background: #fff;
    width: 150px;
    font-size: 11px;
    border-radius: 4px;
    box-shadow: 0px 0px 0px 6px rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    font-family: var(--secondary-font);
    font-weight: 600;
}

.like-btn:hover span {
    opacity: 1;
    visibility: visible;
    margin: -20px 0 0 20px;
}

.like-btn:hover i {
    font-weight: bold
}

.like-btn:hover,
.box-media-zoom:hover,
.pagination a.current-page,
.pagination a:hover {
    background: #272535;
}

.gid_link {
    position: absolute;
    bottom: 20px;
    right: 30px;
    border: 1px solid #eee;
    padding: 10px 20px;
    font-family: var(--secondary-font);
    font-weight: 600;
    color: #666;
    font-size: .9em;
}

.gid_link:hover {
    background: #f9f9f9
}

.gid_link i {
    margin-left: 10px;
    color: var(--main-color);
}

.pagination {
    margin-top: 50px;
    overflow: hidden;
}

.pagination a {
    display: inline-block;
    width: 54px;
    height: 54px;
    line-height: 54px;
    border: 1px solid #eee;
    box-sizing: border-box;
    position: relative;
    font-size: 1.2em;
    margin: 0 2px;
    color: #888DA0;
    font-family: var(--secondary-font);
    background: #f9f9f9;
    border-radius: 4px;
}

.pagination a.current-page,
.pagination a:hover,
.pagination a i {
    color: var(--main-color);
}

.pagination a i {
    font-size: 14px;
}

.svg-corner {
    position: absolute;
    width: 40px;
    height: 40px;
}

.box-media-zoom {
    position: absolute;
    top: 30px;
    right: -50px;
    width: 50px;
    height: 50px;
    opacity: 0;
    line-height: 50px;
    font-size: 1.3em;
    color: var(--main-color);
    background: #fff;
    border-radius: 50%;
    z-index: 15;
    transition: all .2s ease-in-out;
    font-weight: bold;
    box-shadow: 0px 0px 0px 6px rgba(255, 255, 255, 0.2);
}

.hov_zoom:hover .box-media-zoom {
    right: 30px;
    opacity: 1;
}

.text-block-title {
    position: relative;
}

.tb-sin {
    margin-top: 30px;
    padding-right: 50px;
}

.text-block-title h4,
.tbc_subtitle {
    text-align: left;
    font-weight: 500;
    position: relative;
    color: #333;
    font-size: 2.8em;
}

.text-block {
    position: relative;
    z-index: 4;
}

.tbc_subtitle {
    font-size: 2.0em;
    margin: 30px 0;
}

.tbc_subtitle2 {
    margin: 15px 0;
}

.tbc_subtitle:before,
.contacts-card-item span:before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--main-color);
    text-align: left;
}

.contacts-card-item span:before {
    right: 10px;
}

.sr-opt {
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px 40px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, .04);
}

.sa-price {
    font-size: 2.4em;
    position: relative;
    text-align: left;
    color: var(--main-color);
}

.sa_towishlist {
    margin-top: 10px;
    font-family: var(--secondary-font);
    font-weight: 500;
    color: #666;
    font-size: .9em;
    cursor: pointer;
}

.content-section.notp {
    padding-top: 0;
}

.st-gallery {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 20;
    width: 25%;
}

.st-gallery .section-title {
    transform: translateY(-50%);
    top: 50%;
    z-index: 5;
}

.st-gallery .section-title h2,
.column-text .section-title h2 {
    color: #fff;
}

.fs_sin {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.single-carousle-container {
    padding: 20px;
    margin-bottom: 30px;
}

.single-carousle-container2 {
    padding: 15px 15px 15px 0;
}

.single-carousel-wrap {
    border: 1px solid #eee;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    padding: 20px;
    background: #fff;
}

.single-carousel-wrap,
.single-carousle-container,
.single-carousle-container2,
.single-carousel-wrap2 {
    position: relative;
    overflow: hidden;
}

.single-carousel {
    height: 650px;
}

.single-carousel,
.single-carousel2 {
    height: 50vh;
}

.single-carousel .swiper-container,
.single-carousel2 .swiper-container,
.rooms-carousel .swiper-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.single-carousel .swiper-slide,
.single-carousel2 .swiper-slide {
    width: auto !important;
    height: 100% !important;
    display: inherit !important;
    overflow: hidden;
    border-radius: 10px;
}

.single-carousel .swiper-slide img,
.single-carousel2 .swiper-slide img {
    width: auto !important;
    height: 100% !important;
    position: relative;
}



.slider-button {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin-top: -25px;
    border-radius: 50%;
    transition: all .3s ease;
    background: #272535;
    z-index: 50;
    cursor: pointer;
    color: var(--main-color);
    box-shadow: 0px 0px 0px 6px rgba(255, 255, 255, .4);
}

.slider-button:before {
    content: '';
    position: absolute;
    top: 50%;
    width: 70px;
    height: 1px;
    background: rgba(255, 255, 255, .3);
    transition: all .3s ease;
}

.fw-carousel-button-prev {
    left: 40px;
}

.fw-carousel-button-prev:before {
    left: 100%;
    margin-left: 20px;
}

.fw-carousel-button-next {
    right: 40px;
}

.fw-carousel-button-next:before {
    right: 100%;
    margin-right: 20px;
}

.slider-button:hover:before,
.slider-button:hover:after {
    width: 0;
}

.slider-button:hover {
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, .4);
}

.sc-controls .swiper-pagination-bullet {
    background: none;
    position: relative;
    margin: 0 10px;
    height: 6px;
    opacity: 1;
}

.ss-slider-pagination .swiper-pagination-bullet:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 6px;
    border-radius: 100%;
    background: #fff;
    margin-left: -3px;
    transition: all 0.5s ease;
}

.ss-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    background: var(--main-color);
}

.ss-slider-pagination .swiper-pagination-bullet:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 22px;
    margin: -11px 0 0 -11px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 100%;
    transition: all .3s ease;
    transform: scale(0.0);
}

.ss-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    transform: scale(1.0);
}

.sc-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(39, 37, 53, .7);
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 0px 6px rgba(255, 255, 255, .1);
}

.blog-menu-carousel .fwc_pag2 {
    right: 0px;
    bottom: -55px;
}

.fwc_pag2 {
    left: auto;
    transform: translateX(0);
    right: 40px;
    bottom: 40px;
}

.meg_aminites_item {
    position: relative;
    padding: 20px 30px;
    background: #f9f9f9;
    border-radius: 10px;
    font-family: var(--secondary-font);
    font-weight: 500;
    text-align: left;

    border: 1px solid #eee;
    margin: 5px 0;
}

.meg_aminites_item span {
    position: relative;
    top: -2px;
}

.meg_aminites_item i {
    color: var(--main-color);
    font-size: 20px;
    margin-right: 20px;
}

.tbc-separator {
    background: #eee;
    height: 1px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.text-block_list li {
    position: relative;
    text-align: left;
    padding-left: 20px;
    margin-bottom: 20px;
    font-family: var(--secondary-font);
    font-size: 1.3em;
}

.text-block_list li:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f0da";
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 11px;
    font-weight: 700;
    transition: all .2s linear;
    color: var(--main-color);
}

.video-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.video-box video {
    width: 100%;
    height: auto;
    display: block;
}

.text-block_list,
.video-box {
    margin-top: 40px;
}

.video-box-btn {
    position: absolute;
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: -30px 0 0 -30px;
    color: #fff;
    z-index: 20;
    left: 50%;
    top: 50%;
    background: var(--main-color);
    box-shadow: 0px 0px 0px 17px rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all .3s linear;
    cursor: pointer;
}

.video-box-btn:hover,
.promo-link:hover {
    box-shadow: 0px 0px 0px 10px rgba(255, 255, 255, 0.4);
}

.promo-video {
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    transform: translateY(-50%);
    z-index: 10;
}

.promo-video .video-box-btn {
    position: relative;
    display: inline-block;
    margin: 0 0 30px 0;
    left: 0;
    top: 0;
}

.promo-video h4 {
    color: #fff;
    font-size: 1.8em;
    position: relative;
}

.promo-video h4:before {
    content: '';
    position: absolute;
    bottom: -20px;
    height: 1px;
    left: 50%;
    width: 50px;
    background: var(--main-color);
    margin-left: -25px;
}

.post-related {

    margin-top: 50px;
}

.post-related_title {
    margin-bottom: 30px;
}

.post-related_title h6 {
    font-size: 2.0em;
}

.item-related_img {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, .2);
}

.item-related_img span,
.item-related_img .overlay,
.item-related_img {
    transition: all .2s linear;
}

.item-related_img span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 10;
    color: var(--main-color);
    font-family: var(--secondary-font);
    font-weight: 600;
    padding: 15px 30px;
    background: #272535;
    margin-top: 10px;
    opacity: 0;
    border-radius: 10px;
    box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.4);
}

.item-related .overlay {
    opacity: 0;
}

.item-related:hover .overlay {
    opacity: .5;
}

.item-related:hover .item-related_img {
    box-shadow: 0px 0 0px 0px rgba(0, 0, 0, .2);
}

.item-related_img:hover span {
    opacity: 1;
    margin-top: 0;
}

.item-related h3 {
    padding-bottom: 12px;
    color: #666;
    font-size: 1.8em;
    position: relative;
}

.item-related h3 a {
    color: #444;
}

.item-related .post-date {
    font-style: italic;
    color: var(--main-color);
    font-size: 1.4em;
    display: block;
}

.item-related .room-card-details li {
    float: none;
    display: inline-block;
    margin: 0 10px;
}

.blog-media {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

/*------ Video -------------*/
.media-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.video-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mob-bg {
    display: none;
}

.hero-wrap .overlay {
    opacity: .6
}

.video-holder {
    position: absolute;
    width: 100%;
    height: 100% !important;
    display: block;
    overflow: hidden !important;
    top: 0;
    left: 0;
    padding: 0 !important;
}

.video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 0;
    z-index: -1;
}

.video-container video {
    width: 100%;
}

.resp-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.resp-video iframe,
.resp-video object,
.resp-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-media video {
    width: 100%;
    height: auto;
}

.mob-bg {
    display: none;
}

.post-item {
    width: 50%;
    position: relative;
    padding: 0 20px 20px 0;
}

.post-items {
    z-index: 1
}

.news-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.news-toolbar-left {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-chip {
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 16px;
    border: 1px solid #eee;
    border-radius: 999px;
    background: #fff;
    color: #666;
    font-size: 12px;
    letter-spacing: .08em;
}

.news-chip.is-active {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.news-search {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
}

.news-search-input {
    border: none;
    outline: none;
    background: transparent;
    height: 42px;
    padding: 0 14px;
    width: 260px;
    font-size: 14px;
    color: #333;
}

.news-search-btn {
    height: 42px;
    width: 42px;
    border: none;
    background: var(--main-color);
    color: #fff;
}

.news-grid.row,
.album-grid.row,
.photo-grid.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.news-grid.row>[class^="col-"],
.news-grid.row>[class*=" col-"],
.album-grid.row>[class^="col-"],
.album-grid.row>[class*=" col-"],
.photo-grid.row>[class^="col-"],
.photo-grid.row>[class*=" col-"] {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
}

.news-grid.row>.col-12,
.album-grid.row>.col-12,
.photo-grid.row>.col-12 {
    width: 100%;
    max-width: 100%;
}

@media (min-width: 576px) {

    .news-grid.row>.col-sm-6,
    .album-grid.row>.col-sm-6,
    .photo-grid.row>.col-sm-6 {
        width: 50%;
        max-width: 50%;
    }
}

@media (min-width: 768px) {

    .news-grid.row>.col-md-4,
    .album-grid.row>.col-md-4,
    .photo-grid.row>.col-md-4 {
        width: 33.33333333%;
        max-width: 33.33333333%;
    }
}

@media (min-width: 992px) {

    .photo-grid.photo-grid--cols-4.row>.col-lg-3 {
        width: 25%;
        max-width: 25%;
    }
}

.news-card {
    border: 1px solid #eee;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .10);
}

.news-card-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 12px;
    letter-spacing: .06em;
    backdrop-filter: blur(6px);
}

.news-card-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    min-height: 168px;
}

.news-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
}

.news-card-meta i {
    margin-right: 8px;
}

.news-card-title {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 0;
    text-align: left;
    font-weight: 600;
}

.news-card-excerpt {
    color: #666;
    line-height: 24px;
    margin-bottom: 14px;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #eee;
    color: #333;
    font-size: 12px;
    letter-spacing: .08em;
}

.news-card-link i {
    transition: transform .25s ease, background-color .25s ease, color .25s ease;
}

.news-card-body .news-card-footer {
    display: flex;
    justify-content: flex-start;
    margin-top: auto;
    padding-top: 14px;
    text-align: left;
}

.news-card-body .news-card-link {
    position: relative;
    justify-content: flex-start;
    width: auto;
    min-width: 0;
    height: auto;
    padding: 0 0 6px;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #1f2a44;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    gap: 10px;
    transition: color .25s ease, gap .25s ease;
}

.news-card-body .news-card-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 1px;
    background: rgba(31, 42, 68, 0.24);
    transition: width .25s ease, background-color .25s ease;
}

.news-card-body .news-card-link span {
    line-height: 1;
}

.news-card-body .news-card-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: #1f2a44;
    font-size: 12px;
    flex-shrink: 0;
}

.news-card-link:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

.news-card-body .news-card-link:hover {
    gap: 14px;
    color: var(--main-color);
}

.news-card-body .news-card-link:hover i {
    transform: translateX(2px);
}

.news-card-body .news-card-link:hover::after {
    width: 68px;
    background: var(--main-color);
}

.event-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.event-list-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 18px;
    border: 1px solid #eee;
    border-radius: 14px;
    background: #fff;
    color: inherit;
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

.event-list-card:hover {
    transform: translateY(-2px);
    border-color: rgba(176, 120, 65, 0.20);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .07);
}

.event-list-date {
    width: 88px;
    flex: 0 0 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-right: 18px;
    border-right: 1px solid #eee;
    color: #1f2a44;
}

.event-list-day {
    display: block;
    font-size: 30px;
    line-height: 32px;
    font-weight: 700;
}

.event-list-month {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    letter-spacing: .08em;
    color: #6b7280;
}

.event-list-year {
    display: block;
    font-size: 11px;
    letter-spacing: .08em;
    color: #6b7280;
}

.event-list-time {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    color: #9ca3af;
}

.event-list-thumb {
    width: 110px;
    height: 120px;
    flex: 0 0 110px;
    border-radius: 5px;
    overflow: hidden;
    background: #f3f4f6;
}

.event-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-list-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.event-list-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2a44;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-list-loc {
    font-size: 12px;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-list-loc i {
    margin-right: 8px;
    color: #16a34a;
}

.event-detail-split {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 30px;
}

.event-detail-content-col {
    flex: 1 1 auto;
    min-width: 0;
}

.event-detail-title {
    margin-bottom: 12px;
    font-size: 25px;
    text-align: left;
    font-weight: 600;
}

.event-detail-lead {
    color: #666;
    margin-bottom: 18px;
}

.event-detail-meta {
    margin-bottom: 18px;
}

.event-detail-actions {
    margin-top: 18px;
}

.event-detail-poster-col {
    flex: 0 0 420px;
    max-width: 420px;
}

.event-detail-poster {
    border-radius: 14px;
    overflow: hidden;
}

.event-detail-poster img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .event-detail-split {
        gap: 30px;
    }

    .event-detail-poster-col {
        flex-basis: 360px;
        max-width: 360px;
    }
}

@media (max-width: 768px) {
    .event-detail-split {
        flex-direction: column;
    }

    .event-detail-poster-col {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }
}

.bank-accounts-grid {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.bank-accounts-grid>[class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
}

.bank-accounts-grid>.col-md-6,
.bank-accounts-grid>.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

@media (min-width: 768px) {
    .bank-accounts-grid.bank-accounts-grid--cols-12>[class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .bank-accounts-grid.bank-accounts-grid--cols-6>[class*="col-"],
    .bank-accounts-grid.bank-accounts-grid--cols-4>[class*="col-"],
    .bank-accounts-grid.bank-accounts-grid--cols-3>[class*="col-"],
    .bank-accounts-grid.bank-accounts-grid--cols-2>[class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .bank-accounts-grid.bank-accounts-grid--cols-12>[class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .bank-accounts-grid.bank-accounts-grid--cols-6>[class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .bank-accounts-grid.bank-accounts-grid--cols-4>[class*="col-"] {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .bank-accounts-grid.bank-accounts-grid--cols-3>[class*="col-"] {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .bank-accounts-grid.bank-accounts-grid--cols-2>[class*="col-"] {
        flex: 0 0 16.666%;
        max-width: 16.666%;
    }
}

.bank-accounts-layout {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.bank-accounts-layout>.col-lg-8 {
    flex: 1 1 0;
    max-width: none;
}

.bank-accounts-layout>.col-lg-4 {
    flex: 0 0 360px;
    max-width: 360px;
}

.bank-accounts-left {
    width: 100%;
}

.bank-accounts-intro {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: #fff;
    padding: 18px;
    margin-bottom: 24px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
}

.bank-accounts-intro-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 14px;
    background: var(--main-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.bank-accounts-intro-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 6px;
    text-align: left;
}

.bank-accounts-intro-text {
    color: #666;
    line-height: 1.7;
}

.bank-accounts-aside {
    width: 100%;
}

.bank-account-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--main-color);
    border-radius: 16px;
    background: #fff;
    padding: 18px;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
}

.bank-account-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
    border-color: rgba(0, 0, 0, 0.08);
}

.bank-account-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.bank-account-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 50%;
    background: #f6f6f6;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    overflow: hidden;
}

.bank-account-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 8px;
}

.bank-account-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2a44;
}

.bank-account-sub {
    color: #777;
    font-size: 12px;
    margin-top: 4px;
}

.bank-account-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bank-account-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.bank-account-list li:first-child {
    border-top: none;
    padding-top: 0;
}

.bank-account-key {
    color: #8b95a7;
    font-size: 11px;
    letter-spacing: .08em;
    white-space: nowrap;
}

.bank-account-val {
    color: #1f2a44;
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

.bank-iban-row .bank-account-val {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.bank-copy-btn {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
    color: var(--main-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}

.bank-copy-btn:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    transform: translateY(-1px);
}

.bank-copy-btn:disabled {
    opacity: .6;
    cursor: default;
    transform: none;
}

.bank-copy-btn.is-copied {
    background: #16a34a;
    border-color: #16a34a;
    color: #fff;
}

.bank-note {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--main-color);
    border-radius: 16px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
}

.bank-note h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
}

.bank-note p,
.bank-note li {
    color: #666;
}

.bank-note ul {
    padding-left: 18px;
    margin: 0;
}

@media (max-width: 992px) {
    .bank-accounts-layout {
        flex-direction: column;
    }

    .bank-accounts-layout>.col-lg-4 {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .bank-accounts-grid {
        margin-left: -10px;
        margin-right: -10px;
    }

    .bank-accounts-grid>[class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }

    .bank-accounts-grid>.col-md-6,
    .bank-accounts-grid>.col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.reviews-intro {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

.reviews-intro-left h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: #1f2a44;
}

.reviews-intro-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.reviews-intro-left p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}

.reviews-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: #f9f9f9;
    padding: 16px 18px;
    margin: 16px 0 24px 0;
    text-align: left;
}

.reviews-cta-title {
    font-weight: 700;
    color: #1f2a44;
    line-height: 1.2;
}

.reviews-cta-sub {
    margin-top: 6px;
    color: #666;
}

.reviews-cta-right {
    flex: 0 0 auto;
}

.reviews-score {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    background: #f9f9f9;
    padding: 14px 16px;
    min-width: 240px;
}

.review-open-modal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.reviews-score-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.reviews-score-val {
    font-size: 28px;
    font-weight: 700;
    color: #1f2a44;
    line-height: 1;
}

.reviews-score-stars {
    display: inline-flex;
    gap: 4px;
    color: var(--main-color);
}

.reviews-score-stars i {
    font-size: 14px;
}

.reviews-score-sub {
    margin-top: 8px;
    color: #777;
    font-size: 12px;
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.reviews-grid>[class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
    flex: 0 0 100%;
    max-width: 100%;
}

.reviews-grid>.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.review-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    background: #fff;
    padding: 18px;
    height: 100%;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    transition: transform .2s ease, box-shadow .2s ease;
    text-align: left;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
}

.tp-empty-state {
    position: relative;
    overflow: hidden;
    padding: 34px 26px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f5ff 55%, #fff7f2 100%);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.tp-empty-state:before,
.tp-empty-state:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.tp-empty-state:before {
    width: 180px;
    height: 180px;
    top: -90px;
    right: -70px;
    background: rgba(170, 140, 255, 0.12);
}

.tp-empty-state:after {
    width: 120px;
    height: 120px;
    bottom: -60px;
    left: -40px;
    background: rgba(255, 186, 122, 0.12);
}

.tp-empty-state-icon {
    position: relative;
    z-index: 1;
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--tp-color-2) 100%);
    color: #fff;
    font-size: 28px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.tp-empty-state-title,
.tp-empty-state-text,
.tp-empty-state-note {
    position: relative;
    z-index: 1;
}

.tp-empty-state-title {
    margin: 0 0 10px;
    color: #1d2433;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.tp-empty-state-text {
    margin: 0 auto;
    color: #667085;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
    text-align: center;
    max-width: 760px;
}

.tp-empty-state-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: #4b5563;
    font-size: 13px;
    font-weight: 600;
}

.tp-empty-state-note i {
    color: var(--main-color);
}

.tp-404 {
    max-width: 920px;
    margin: 0 auto;
}

.tp-404-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.tp-404-actions .btn {
    float: none;
    margin-top: 0;
    min-width: 160px;
    height: 48px;
    line-height: 48px;
    padding: 0 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(31, 42, 68, 0.12);
    color: #1f2a44;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.tp-404-actions .btn:before {
    display: none;
}

.tp-404-actions .btn:hover {
    background: var(--main-color);
    border-color: rgba(0, 0, 0, 0);
    color: #222;
    transform: translateY(-1px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.10);
}

@media (max-width: 767px) {
    .tp-404-actions .btn {
        min-width: 0;
        width: 100%;
    }
}

.tp-empty-state-sm {
    padding: 28px 22px;
    border-radius: 16px;
}

.tp-empty-state-sm .tp-empty-state-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    border-radius: 20px;
    font-size: 24px;
}

.tp-empty-state-sm .tp-empty-state-title {
    font-size: 20px;
}

.tp-empty-state-sm .tp-empty-state-text {
    font-size: 14px;
    max-width: 620px;
}

.tp-empty-state-sm .tp-empty-state-note {
    margin-top: 16px;
}

.recent-post-widget ul li .tp-empty-state {
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 24px 18px;
}

.recent-post-widget ul li .tp-empty-state:before,
.recent-post-widget ul li .tp-empty-state:after {
    display: none;
}

.rooms-carousel-item_container .tp-empty-state {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.rooms-carousel-item_container .tp-empty-state:before,
.rooms-carousel-item_container .tp-empty-state:after,
.rooms-carousel-item_container .tp-empty-state-title:before {
    display: none;
}

.rooms-carousel-item_container .tp-empty-state-title {
    color: #fff;
    text-align: center;
    padding-bottom: 0;
}

.rooms-carousel-item_container .tp-empty-state-text,
.rooms-carousel-item_container .tp-empty-state-note {
    color: rgba(255, 255, 255, 0.88);
}

.rooms-carousel-item_container .tp-empty-state-note {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.14);
}

.rooms-carousel-item_container .tp-empty-state-note i {
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .tp-empty-state {
        padding: 28px 18px;
        border-radius: 16px;
    }

    .tp-empty-state-title {
        font-size: 20px;
    }

    .tp-empty-state-text {
        font-size: 14px;
    }
}

.review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f6f6f6;
}

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

.review-avatar.review-avatar-text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1f2a44;
    background: #f1f4f9;
    text-transform: uppercase;
}

.review-head-body {
    min-width: 0;
    flex: 1 1 auto;
    text-align: left;
}

.review-name {
    font-weight: 700;
    color: #1f2a44;
    line-height: 1.2;
}

.review-meta {
    margin-top: 4px;
    color: #777;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.review-dot {
    opacity: .6;
}

.review-stars {
    display: inline-flex;
    gap: 3px;
    color: var(--main-color);
    flex: 0 0 auto;
}

.review-stars i {
    font-size: 12px;
}

.review-text {
    color: #666;
    line-height: 1.8;
}

.review-footer {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #16a34a;
    font-weight: 700;
}

.review-form-wrap {
    margin-top: 12px;
}

.review-form-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
}

.review-form-head {
    text-align: center;
}

.review-form-head h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2a44;
}

.review-form-head p {
    margin: 0 0 8px 0;
    color: #666;
    line-height: 1.7;
    text-align: center;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.comment-form select {
    border: 1px solid #eee;
    background: #f9f9f9;
    width: 100%;
    padding: 0 30px;
    height: 60px;
    border-radius: 4px;
    color: #000;
    font-size: 13px;
    -webkit-appearance: none;
    text-align: left;
    margin-top: 20px;
    font-family: var(--secondary-font);
}

.review-rating {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 6px;
    margin-top: 18px;
}

.review-rating.is-error {
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(239, 68, 68, 0.08);
}

.review-rating input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.review-rating label {
    cursor: pointer;
    color: #d1d5db;
    font-size: 18px;
    line-height: 1;
}

.review-rating input:checked~label,
.review-rating label:hover,
.review-rating label:hover~label {
    color: var(--main-color);
}

.review-rating-feedback {
    margin-top: 8px;
    color: #dc2626;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

#review-message {
    text-align: left;
    font-size: 1.3em;
}

.review-form-success {
    padding-top: 10px;
    color: #16a34a;
    font-weight: 700;
}

.review-modal {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.review-modal.is-open {
    display: flex;
}

.review-modal-backdrop {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
}

.ik-page-content {
    text-align: left;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #5e646a;
    font-family: var(--secondary-font);
}

.ik-page-content b,
.ik-page-content strong {
    font-weight: 700;
}

.ik-page-content i,
.ik-page-content em {
    font-style: italic;
}

.ik-page-content u {
    text-decoration: underline;
}

.ik-page-content ul,
.ik-page-content ol {
    padding-left: 20px;
    margin: 0 0 10px 0;
}

.ik-page-content ul {
    list-style: disc;
}

.ik-page-content ol {
    list-style: decimal;
}

.ik-page-content li {
    margin-bottom: 6px;
}

.ik-page-content h1,
.ik-page-content h2,
.ik-page-content h3,
.ik-page-content h4,
.ik-page-content h5,
.ik-page-content h6 {
    font-weight: 700;
    color: #1f2a44;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.ik-page-content h1 {
    font-size: 28px;
}

.ik-page-content h2 {
    font-size: 24px;
}

.ik-page-content h3 {
    font-size: 20px;
}

.ik-page-content h4 {
    font-size: 18px;
}

.ik-page-content h5 {
    font-size: 16px;
}

.ik-page-content h6 {
    font-size: 14px;
}

.ik-page-content p,
.ik-page-content li {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: inherit;
}

.review-modal-dialog {
    position: relative;
    width: min(760px, 100%);
    max-height: calc(100vh - 44px);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1;
}

.review-modal-close {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #fff;
    color: #1f2a44;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.review-modal-close:hover {
    background: #f9f9f9;
}

body.review-modal-open {
    overflow: hidden;
}

.popup-modal {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: none;
    overflow-x: hidden;
    overflow-y: auto;
    pointer-events: auto;
    background: rgba(13, 18, 31, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px 16px;
}

.popup-modal.show {
    display: block;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2147482900;
    background: rgba(13, 18, 31, 0.55);
}

.modal-backdrop.fade.show {
    opacity: 1;
}

body.modal-open {
    overflow: hidden;
}

.popup-modal .modal-dialog {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100vw - 32px));
    margin: 0 auto;
}

.popup-modal .modal-dialog-centered {
    min-height: calc(100vh - 48px);
    display: flex;
    align-items: center;
}

.popup-modal-content {
    position: relative;
    z-index: 3;
    overflow: hidden;
    border: 0;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 34px 90px rgba(7, 11, 24, 0.38);
}

.popup-modal-header {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    padding: 0;
    margin: 0;
    background: transparent;
}

.popup-close {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(18, 23, 38, 0.66);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 5;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.popup-close:hover {
    transform: rotate(90deg);
    background: var(--main-color);
    color: #fff;
}

.popup-close i {
    font-size: 15px;
}

.popup-modal-body {
    padding: 0;
    background: #0f1726;
}

.popup-modal-body .row,
.popup-modal-body [class*="col-"] {
    margin: 0;
    padding: 0;
}

.popup-modal-body a {
    display: block;
}

.popup-modal-image {
    display: block;
    width: 100%;
    max-height: min(78vh, 760px);
    object-fit: cover;
    object-position: center;
}

.popup-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 18px 24px 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
    border-top: 1px solid rgba(31, 42, 68, 0.08);
}

.popup-skip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.popup-check {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    margin: 0;
    border: 1px solid rgba(31, 42, 68, 0.18);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.popup-check:checked {
    background: var(--main-color);
    border-color: var(--main-color);
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.28);
}

.popup-check:checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.popup-check-label {
    margin: 0;
    cursor: pointer;
    color: #44506b;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.popup-check-label span {
    display: block;
    text-align: left;
}

@media (max-width: 767px) {
    .popup-modal {
        padding: 16px 10px;
    }

    .popup-modal .modal-dialog {
        width: calc(100vw - 20px);
    }

    .popup-modal .modal-dialog-centered {
        min-height: calc(100vh - 32px);
    }

    .popup-modal-content {
        border-radius: 18px;
    }

    .popup-modal-header {
        top: 12px;
        right: 12px;
    }

    .popup-close {
        width: 42px;
        height: 42px;
    }

    .popup-modal-image {
        max-height: min(68vh, 520px);
    }

    .popup-modal-footer {
        padding: 14px 16px 18px;
    }
}

.svc-cards .row {
    margin-left: -12px;
    margin-right: -12px;
}

.svc-cards .row>[class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
}

.svc-cards .content-inner {
    height: 420px;
}

.svc-cards .content-inner .cf-inner .inner h2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.12;
    max-height: calc(2 * 1.12em);
}

.svc-cards .content-inner .content-front h4 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.2;
    max-height: calc(1 * 1.2em);
}

@media only screen and (max-width: 1064px) {
    .svc-cards .content-inner {
        height: 380px;
    }
}

@media only screen and (max-width: 640px) {
    .svc-cards .content-inner {
        height: 340px;
    }
}

.faq-layout {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.faq-left {
    flex: 1 1 0;
    min-width: 0;
}

.faq-right {
    flex: 0 0 360px;
    max-width: 360px;
}

.faq-lead {
    max-width: 760px;
    margin: 0 auto 18px;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 14px;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-weight: 700;
    color: #1f2a44;
}

.faq-ico {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
    color: var(--main-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.faq-item.is-open .faq-ico {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .25s ease, opacity .25s ease;
}

.faq-item.is-open .faq-a {
    opacity: 1;
}

.faq-a-inner {
    padding: 0 18px 16px 18px;
    color: #666;
    line-height: 1.8;
}

.faq-a-inner a {
    color: var(--main-color);
    font-weight: 700;
}

.faq-side {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 110px;
}

.faq-side-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 10px;
}

.faq-side-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}

.faq-side-points {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.faq-side-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 12px;
    background: #faf7f2;
    border: 1px solid rgba(176, 120, 65, 0.10);
    color: #5f6572;
    line-height: 1.6;
    font-size: 13px;
    text-align: left;
}

.faq-side-point i {
    color: var(--main-color);
    font-size: 15px;
    margin-top: 2px;
}

.faq-side-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    justify-content: center;
}

.faq-side-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(31, 42, 68, 0.04);
    border: 1px solid rgba(31, 42, 68, 0.08);
    color: #394150;
    font-size: 12px;
    font-weight: 700;
}

.faq-side-badge i {
    color: var(--main-color);
}

.faq-side-actions {
    display: grid;
    gap: 10px;
}

@media (max-width: 992px) {
    .faq-layout {
        flex-direction: column;
    }

    .faq-right {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .faq-side {
        position: relative;
        top: auto;
    }
}

.docs-page-head {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 18px;
}

.docs-page-head-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.docs-page-kicker {
    color: #777;
    letter-spacing: .06em;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 6px;
}

.docs-page-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2a44;
    line-height: 1.25;
}

.docs-page-lead {
    margin-top: 10px;
    color: #666;
    line-height: 1.7;
    max-width: 980px;
}

.docs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
    font-weight: 700;
    color: #1f2a44;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.docs-btn:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    transform: translateY(-1px);
}

.docs-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 768px) {
    .docs-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.doc-row {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: #fff;
    padding: 16px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.doc-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
}

.doc-row-ico {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: var(--main-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex: 0 0 46px;
}

.doc-row-body {
    min-width: 0;
}

.doc-row-title {
    font-size: 15px;
    font-weight: 700;
    color: #1f2a44;
    line-height: 1.35;
}

.doc-row-meta {
    margin-top: 6px;
    color: #777;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.doc-badge {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
    color: #1f2a44;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .04em;
}

.doc-row-actions {
    margin-left: auto;
    display: inline-flex;
    gap: 10px;
    flex: 0 0 auto;
}

.doc-row-act {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
    color: #1f2a44;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.doc-row-act:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    transform: translateY(-1px);
}

.doc-row-act.is-primary {
    background: #272535;
    border-color: #272535;
    color: var(--main-color);
}

.doc-row-act.is-primary:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #222;
}

.docs-page-note {
    margin-top: 14px;
    color: #777;
    font-size: 12px;
    line-height: 1.7;
}

@media (max-width: 520px) {
    .doc-row {
        align-items: flex-start;
    }

    .doc-row-actions {
        flex-direction: column;
    }
}

.docs-certs-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.docs-certs-grid>[class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
}

.docs-certs-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
    padding: 22px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: left;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.docs-certs-card:before {
    content: "";
    position: absolute;
    top: -60px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(176, 120, 65, 0.08);
    pointer-events: none;
}

.docs-certs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.09);
    border-color: rgba(176, 120, 65, 0.25);
}

.docs-certs-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    justify-content: space-between;
}

.docs-certs-ico {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(176, 120, 65, 0.18) 0%, rgba(176, 120, 65, 0.10) 100%);
    color: #b07841;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex: 0 0 58px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.docs-certs-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(31, 42, 68, 0.05);
    color: #8c94a6;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}

.docs-certs-type {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(176, 120, 65, 0.16);
    background: rgba(176, 120, 65, 0.08);
    color: #9e6736;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .08em;
    margin-bottom: 14px;
}

.docs-certs-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2a44;
    line-height: 1.4;
    margin-bottom: 10px;
    text-align: left;
}

.docs-certs-desc {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 14px;
    min-height: 50px;
}

.docs-certs-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7a8190;
    font-size: 13px;
    margin-bottom: 18px;
    text-align: left;
}

.docs-certs-meta i {
    color: rgba(176, 120, 65, 0.9);
}

.docs-certs-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: auto;
}

.docs-certs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    min-width: 124px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid rgba(176, 120, 65, 0.45);
    background: #fff;
    color: #b07841;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .04em;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

.docs-certs-btn:hover {
    transform: translateY(-1px);
    background: rgba(176, 120, 65, 0.10);
    border-color: rgba(176, 120, 65, 0.7);
    color: #b07841;
}

.docs-certs-btn.is-primary {
    background: #b07841;
    border-color: #b07841;
    color: #fff;
}

.docs-certs-btn.is-primary:hover {
    background: #9e6736;
    border-color: #9e6736;
    color: #fff;
}

.docs-certs-btn.is-disabled {
    opacity: .55;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 520px) {
    .docs-certs-card {
        padding: 18px;
    }

    .docs-certs-btn {
        width: 100%;
    }
}

.team-intro {
    margin-bottom: 18px;
    color: #666;
    line-height: 1.7;
    max-width: 860px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.team-grid>[class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
}

.team-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}

.team-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
}

.team-card-media {
    display: block;
    position: relative;
    overflow: hidden;
}

.team-card-media img {
    width: 100%;
    height: 260px;
    display: block;
    object-fit: cover;
}

.team-card-body {
    padding: 16px;
}

.team-card-name {
    font-size: 16px;
    font-weight: 700;
    color: #1f2a44;
    line-height: 1.35;
}

.team-card-role {
    color: #777;
    font-weight: 700;
    font-size: 13px;
    margin-top: 6px;
}

.team-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 12px;
    color: #666;
    font-size: 12px;
}

.team-card-meta i {
    color: rgba(31, 42, 68, 0.55);
    margin-right: 6px;
}

.team-card-social {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
    display: flex;
    gap: 10px;
}

.team-card-social li {
    margin: 0;
}

.team-card-social a {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
    color: #1f2a44;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.team-card-social a:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    transform: translateY(-1px);
}

.team-card-actions {
    margin-top: 14px;
}

.team-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #272535;
    color: var(--main-color);
    font-weight: 700;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.team-card-btn:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #222;
    transform: translateY(-1px);
}

.team-detail-hero {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 18px;
}

.team-detail-hero-media {
    flex: 0 0 360px;
    max-width: 360px;
}

.team-detail-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
    object-fit: cover;
}

.team-detail-hero-body {
    flex: 1 1 0;
    min-width: 0;
    padding: 18px;
}

.team-detail-hero-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.team-detail-hero-body .team-detail-role {
    margin-top: 6px;
}

.team-detail-name {
    font-size: 20px;
    font-weight: 700;
    color: #1f2a44;
    line-height: 1.25;
}

.team-detail-role {
    color: #777;
    font-weight: 700;
    margin-top: 8px;
}

.team-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
    color: #1f2a44;
    font-weight: 700;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.team-detail-back:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    transform: translateY(-1px);
}

.team-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.team-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
    color: #1f2a44;
    font-weight: 700;
    font-size: 12px;
}

.team-tag i {
    color: rgba(31, 42, 68, 0.55);
}

.team-detail-contact {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.team-detail-social {
    margin-top: 12px;
}

.team-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1f2a44;
    font-weight: 700;
}

.team-contact-link i {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
}

.team-contact-link:hover i {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.team-detail-social {
    list-style: none;
    padding: 0;
    margin: 14px 0 0 0;
    display: flex;
    gap: 10px;
}

.team-detail-social li {
    margin: 0;
}

.team-detail-social a {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
    color: #1f2a44;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.team-detail-social a:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    transform: translateY(-1px);
}

.team-detail-side {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    padding: 18px;
    position: sticky;
    top: 110px;
}

.team-detail-side-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 10px;
}

.team-detail-side-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}

.team-detail-side-actions {
    display: grid;
    gap: 10px;
}

.team-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: var(--main-color);
    color: #fff;
    font-weight: 700;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.team-detail-btn:hover {
    background: #272535;
    border-color: #272535;
    color: var(--main-color);
    transform: translateY(-1px);
}

.team-detail-btn.is-secondary {
    background: #f6f6f6;
    color: #1f2a44;
}

.team-detail-btn.is-secondary:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.team-detail-section {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    padding: 18px;
    margin-bottom: 18px;
}

.team-detail-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2a44;
    margin: 0 0 10px 0;
    text-align: left;
}

.team-detail-section p {
    margin: 0 0 12px 0;
    color: #666;
    line-height: 1.8;
    text-align: left;
}

.team-detail-list {
    margin: 0;
    padding-left: 18px;
    color: #666;
    line-height: 1.9;
    text-align: left;
}

.team-detail-note {
    color: #666;
    line-height: 1.8;
    margin-bottom: 14px;
}

.team-detail-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .team-detail-hero {
        flex-direction: column;
    }

    .team-detail-hero-media {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .team-detail-side {
        position: relative;
        top: auto;
    }
}

.team-detail-side-text {
    text-align: left;
}

.team-detail-btn {
    width: 100%;
}
}

.svc-hero-media {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 420px;
}

.svc-hero-media .svc-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    display: block;
}

@media (max-width: 992px) {
    .svc-hero-media {
        min-height: 320px;
        margin-top: 18px;
    }
}

.svc-intro {
    margin-bottom: 24px;
}

.svc-intro h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2a44;
}

.svc-intro p {
    margin: 0;
    color: #666;
    line-height: 1.7;
    max-width: 820px;
}

.svc-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.svc-grid>[class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
    flex: 0 0 100%;
    max-width: 100%;
}

.svc-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}

.svc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
}

.svc-thumb {
    display: block;
    position: relative;
    overflow: hidden;
}

.svc-thumb img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
}

.svc-body {
    padding: 18px;
}

.svc-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--main-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 10px;
}

.svc-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.svc-title a {
    color: #1f2a44;
}

.svc-title a:hover {
    color: var(--main-color);
}

.svc-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}

.svc-points {
    list-style: none;
    margin: 0 0 14px 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.svc-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.svc-points i {
    color: var(--main-color);
}

.svc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.svc-detail-layout {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.svc-detail-content {
    flex: 1 1 0;
    min-width: 0;
}

.svc-detail-aside {
    flex: 0 0 360px;
    max-width: 360px;
}

.svc-detail-top {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 18px;
}

.svc-detail-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 16px;
    background: var(--main-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.svc-detail-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1f2a44;
}

.svc-detail-sub {
    color: #666;
}

.svc-detail-block {
    margin-top: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
}

.svc-detail-block h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2a44;
}

.svc-detail-list {
    margin: 0;
    padding-left: 18px;
    color: #666;
    line-height: 1.8;
}

.svc-steps {
    display: grid;
    gap: 12px;
}

.svc-step {
    display: flex;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background: #f9f9f9;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.svc-step-no {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--main-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-step-title {
    font-weight: 700;
    color: #1f2a44;
}

.svc-step-text {
    margin-top: 4px;
    color: #666;
    line-height: 1.7;
}

.svc-detail-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.svc-detail-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
}

.svc-detail-thumb img {
    width: 100%;
    height: 210px;
    display: block;
    object-fit: cover;
}

.svc-detail-facts {
    list-style: none;
    margin: 0;
    padding: 0;
}

.svc-detail-facts li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.svc-detail-facts li:first-child {
    border-top: none;
}

.svc-detail-facts span {
    color: #8b95a7;
    font-size: 11px;
    letter-spacing: .08em;
    white-space: nowrap;
}

.svc-detail-facts strong {
    color: #1f2a44;
    font-weight: 700;
    text-align: right;
}

.svc-detail-btn {
    display: block;
    margin: 16px;
    text-align: center;
}

.svc-detail-side-links {
    margin-top: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: #fff;
    padding: 16px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
}

.svc-detail-side-title {
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 10px;
}

.svc-side-link {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #f9f9f9;
    color: #1f2a44;
    margin-top: 10px;
}

.svc-side-link:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.svc-related {
    margin-top: 24px;
}

.svc-related-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.svc-related-head h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #1f2a44;
}

.svc-related-link {
    color: var(--main-color);
    font-weight: 700;
}

.svc-related-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.svc-related-grid>[class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
    flex: 0 0 100%;
    max-width: 100%;
}

.svc-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.svc-mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
}

.svc-mini-thumb {
    width: 110px;
    height: 90px;
    flex: 0 0 110px;
    overflow: hidden;
}

.svc-mini-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.svc-mini-body {
    padding: 12px 14px;
    min-width: 0;
}

.svc-mini-title {
    display: block;
    font-weight: 700;
    color: #1f2a44;
    line-height: 1.2;
}

.svc-mini-sub {
    display: block;
    margin-top: 6px;
    color: #666;
}

@media (min-width: 768px) {
    .reviews-grid>[class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .reviews-grid>.col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .reviews-grid.reviews-grid--cols-12>[class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .reviews-grid.reviews-grid--cols-6>[class*="col-"],
    .reviews-grid.reviews-grid--cols-4>[class*="col-"],
    .reviews-grid.reviews-grid--cols-3>[class*="col-"],
    .reviews-grid.reviews-grid--cols-2>[class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .svc-grid>[class*="col-"],
    .svc-related-grid>[class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .reviews-grid>[class*="col-"] {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .reviews-grid>.col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .reviews-grid.reviews-grid--cols-12>[class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .reviews-grid.reviews-grid--cols-6>[class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .reviews-grid.reviews-grid--cols-4>[class*="col-"] {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .reviews-grid.reviews-grid--cols-3>[class*="col-"] {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .reviews-grid.reviews-grid--cols-2>[class*="col-"] {
        flex: 0 0 16.666%;
        max-width: 16.666%;
    }

    .svc-grid>[class*="col-"],
    .svc-related-grid>[class*="col-"] {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media (max-width: 768px) {
    .reviews-intro {
        flex-direction: column;
    }

    .reviews-intro-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-score {
        min-width: 0;
        width: 100%;
    }

    .svc-detail-layout {
        flex-direction: column;
    }

    .svc-detail-aside {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .event-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .event-list-grid.event-list-grid--cols-12 {
        grid-template-columns: 1fr;
    }

    .event-list-grid.event-list-grid--cols-6,
    .event-list-grid.event-list-grid--cols-4,
    .event-list-grid.event-list-grid--cols-3,
    .event-list-grid.event-list-grid--cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .event-list-grid.event-list-grid--cols-12 {
        grid-template-columns: 1fr;
    }

    .event-list-grid.event-list-grid--cols-6 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .event-list-grid.event-list-grid--cols-4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .event-list-grid.event-list-grid--cols-3 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .event-list-grid.event-list-grid--cols-2 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .news-search {
        width: 100%;
    }

    .news-search-input {
        width: 100%;
    }
}

.post-item_media a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.post-item_media img {
    width: 100%;
    height: auto;
}

.post-item_content {
    padding: 30px;
    border-radius: 0 0 10px 10px;
    border: 1px solid #eee;
    border-top: none;
    background: #fff;
}

.post-item_content h3 {
    font-size: 1.9em;
    margin-bottom: 15px;
    text-align: left;
    position: relative;
}

.post-item_content h3 a {
    display: block;
}

.main-sidebar-widget h3 {
    text-align: left;
    padding: 25px 30px;
    font-size: 1.7em;
    background: #fff;
    position: relative;
    border-bottom: 1px solid #eee;
    color: #666;
}

.main-sidebar-widget h3:before {
    content: '';
    position: absolute;
    right: 40px;
    top: 50%;
    width: 18px;
    height: 2px;
    background: var(--main-color);
    margin-top: -1px;
    border-radius: 2px;
}

.comments-header:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f0dd";
    position: absolute;
    right: 40px;
    top: 50%;
    color: var(--main-color);
    height: 20px;
    font-size: 13px;
    line-height: 20px;
    margin-top: -10px;
    font-weight: 700;
}

.vinfo-list {
    list-style: none;
    padding: 18px 30px 8px 30px;
    margin: 0;
    text-align: left;
}

.vinfo-list li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
}

.vinfo-list li:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 1px dotted #d6d6d6;
    transform: translateY(-50%);
}

.vinfo-label,
.vinfo-value {
    position: relative;
    background: #fff;
    padding: 0 8px;
    font-family: var(--secondary-font);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}

.vinfo-label {
    color: #6b7280;
}

.vinfo-value {
    color: #111827;
}

.search-widget {
    padding: 15px 20px;
    overflow: hidden;
    background: #f9f9f9;
}

.search-widget input.search-inpt-item {
    font-family: var(--secondary-font);
    background: #fff;
    font-size: .9em;
    height: 60px;
    padding: 0 20px;
    width: 70%;
    float: left;
    border: 1px solid #eee;
    border-radius: 10px 0 0 10px;
}

.search-submit {
    border: none;
    float: left;
    height: 60px;
    line-height: 60px;
    width: 30%;
    font-size: 1.2em;
    border-radius: 0 10px 10px 0;
    background: var(--main-color);
}

.recent-post-widget {
    overflow: hidden;
    position: relative;
    padding: 30px;
}

.recent-post-widget ul {
    list-style: none;
}

.recent-post-widget ul li {
    float: left;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
    border: 1px solid #eee;
    background: #fff;
    overflow: hidden;
    border-radius: 10px;
    align-items: center;
    display: flex;
}

.recent-post-img {
    float: left;
    width: 140px;
    padding: 10px;
    border-right: 1px solid #eee;
}

.recent-post-img a {
    display: block;
}

.recent-post-img img {
    width: 100%;
    height: 100px;
    border-radius: 5px;
    object-fit: cover;
}

.recent-post-content {
    float: left;
    padding: 10px 10px 0 10px;
    width: calc(100% - 140px);
    box-sizing: border-box;
    min-width: 0;
}

.recent-post-content h4 {
    font-family: var(--secondary-font);
    padding-bottom: 6px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
}

.recent-post-content h4 a:hover {
    color: var(--main-color);
}

.recent-post-opt span.post-date {
    float: left;
    padding-right: 10px;
    font-family: var(--secondary-font);
}

.category-widget .cat-item {
    float: left;
    width: 100%;
    list-style: none;
}

.category-widget .cat-item li {
    float: left;
    text-align: left;
    width: 100%;
    margin-bottom: 20px;
    color: #7c7c7c;
    font-weight: 500;
    position: relative;
}

.category-widget .cat-item li a {
    float: left;
    position: relative;
    font-family: var(--secondary-font);
    z-index: 2;
    padding: 0 40px 0 0;
    top: 4px;
}

.category-widget .cat-item li:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 50px;
    border-top: 1px dotted #ccc;
    z-index: 2;
}

.category-widget .cat-item li span {
    float: right;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    text-align: center;
    font-size: .9em;
    border-radius: 50%;
    background: var(--main-color);

}

.category-widget .cat-item li a:hover {
    text-decoration: underline;
}

.social-widget ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 0;
    margin: 6px 0 0 0;
    list-style: none;
}

.social-widget li {
    float: none;
    margin: 0;
}

.social-widget li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--main-color);
    border-radius: 50%;
    background: #272535;
}

.tags-widget,
.category-widget,
.social-widget {
    padding: 30px;
    overflow: hidden;
}

.tagcloud {
    overflow: hidden;
}

.tagcloud a {
    float: left;
    padding: 12px 15px;
    color: var(--main-color);
    background: #272535;
    margin: 0 4px 4px 0;
    border-radius: 4px;
    font-family: var(--secondary-font);
    font-weight: 600;
    font-size: .9em;
    transition: all .3s ease-in-out;
}

.tagcloud a:hover {
    color: #272535;
    background: var(--main-color);
}

.post-share-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #eee;
}

.post-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.post-share-label {
    font-family: var(--secondary-font);
    font-weight: 600;
    color: #7c7c7c;
    margin-right: 6px;
}

.post-share a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fff;
    color: #111;
}

.post-share a:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #272535;
}

.post-tags .tagcloud a {
    background: #f9f9f9;
    border: 1px solid #eee;
    color: #7c7c7c;
}

.post-tags .tagcloud a:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #272535;
}

.contact-cta-box {
    border: 1px solid #eee;
    background: #fff;
    border-radius: 10px;
    padding: 18px;
}

.contact-cta-title {
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
    text-align: left;
}

.contact-cta-desc {
    color: #7c7c7c;
    margin-bottom: 14px;
    text-align: left;
}

.contact-cta-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.contact-cta-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}

@media only screen and (max-width: 480px) {
    .contact-cta-actions {
        grid-template-columns: 1fr;
    }

    .contact-cta-meta {
        flex-direction: column;
    }
}

.contact-cta-meta {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-cta-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 calc(50% - 10px);
    padding: 10px 12px;
    border-radius: 10px;
    background: #f9f9f9;
    border: 1px solid #eee;
    color: #272535;
    font-weight: 700;
}

.contact-cta-meta-item i {
    color: var(--main-color);
    flex: 0 0 auto;
}

.contact-cta-meta-item a,
.contact-cta-meta-item span {
    color: inherit;
    font-weight: inherit;
}

.contact-cta-meta-item a:hover {
    color: inherit;
}

a.contact-cta-meta-item:hover {
    border-color: var(--main-color);
    transform: translateY(-1px);
}

.news-detail-media {
    border-radius: 10px;
    overflow: hidden;
}

.news-detail-media .popup-image {
    display: block;
}

.news-detail-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

@media only screen and (max-width: 1068px) {
    .news-detail-img {
        height: 340px;
    }
}

@media only screen and (max-width: 768px) {
    .news-detail-img {
        height: 260px;
    }
}

.news-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 14px 0 10px;
}

.news-gallery-item {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #f1f1f1;
}

.news-gallery-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.news-gallery-item:after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.news-gallery-item:hover:after {
    opacity: 1;
}

.news-gallery-item:hover .news-gallery-img {
    transform: scale(1.05);
}

.room-list-grid.room-list-grid--cols-12 .gallery-item,
.room-list-grid.room-list-grid--cols-12 .grid-sizer,
.room-list-grid .room-list-grid-empty {
    width: 100%;
}

@media (min-width: 768px) {

    .room-list-grid.room-list-grid--cols-6 .gallery-item,
    .room-list-grid.room-list-grid--cols-6 .grid-sizer,
    .room-list-grid.room-list-grid--cols-4 .gallery-item,
    .room-list-grid.room-list-grid--cols-4 .grid-sizer,
    .room-list-grid.room-list-grid--cols-3 .gallery-item,
    .room-list-grid.room-list-grid--cols-3 .grid-sizer,
    .room-list-grid.room-list-grid--cols-2 .gallery-item,
    .room-list-grid.room-list-grid--cols-2 .grid-sizer {
        width: 50%;
    }
}

@media (min-width: 992px) {

    .room-list-grid.room-list-grid--cols-12 .gallery-item,
    .room-list-grid.room-list-grid--cols-12 .grid-sizer {
        width: 100%;
    }

    .room-list-grid.room-list-grid--cols-6 .gallery-item,
    .room-list-grid.room-list-grid--cols-6 .grid-sizer {
        width: 50%;
    }

    .room-list-grid.room-list-grid--cols-4 .gallery-item,
    .room-list-grid.room-list-grid--cols-4 .grid-sizer {
        width: 33.333333%;
    }

    .room-list-grid.room-list-grid--cols-3 .gallery-item,
    .room-list-grid.room-list-grid--cols-3 .grid-sizer {
        width: 25%;
    }

    .room-list-grid.room-list-grid--cols-2 .gallery-item,
    .room-list-grid.room-list-grid--cols-2 .grid-sizer {
        width: 16.666667%;
    }
}

.room-showcase {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.room-showcase-main {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
}

.room-showcase-side {
    flex: 0 0 340px;
    max-width: 340px;
    position: sticky;
    top: 110px;
}

.room-showcase-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 24px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #fffaf5 52%, #ffffff 100%);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
}

.room-showcase-hero:before,
.room-showcase-hero:after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.room-showcase-hero:before {
    width: 220px;
    height: 220px;
    right: -90px;
    top: -110px;
    background: radial-gradient(circle, rgba(176, 120, 65, 0.16) 0%, rgba(176, 120, 65, 0) 72%);
}

.room-showcase-hero:after {
    width: 240px;
    height: 240px;
    left: -120px;
    bottom: -150px;
    background: radial-gradient(circle, rgba(31, 42, 68, 0.07) 0%, rgba(31, 42, 68, 0) 72%);
}
.room-showcase-copy{
	text-align:left;
}
.room-showcase-copy,
.room-showcase-gallery-wrap {
    position: relative;
    z-index: 1;
}

.room-showcase-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(176, 120, 65, 0.12);
    color: #9f6532;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.room-showcase-title {
    margin: 14px 0 10px;
    font-size: 38px;
    line-height: 1.1;
    color: #1f2a44;
    font-weight: 700;
}

.room-showcase-lead {
    margin: 0;
    max-width: 760px;
    color: #616b7d;
    font-size: 15px;
    line-height: 1.9;
}

.room-showcase-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.room-showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    color: #485163;
    font-weight: 700;
}

.room-showcase-badge i {
    color: #b07841;
}

.room-showcase-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
	text-align: left;
}

.room-showcase-meta-card {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(176, 120, 65, 0.14);
}

.room-showcase-meta-card span {
    display: block;
    margin-bottom: 6px;
    color: #8b94a4;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.room-showcase-meta-card strong {
    display: block;
    color: #1f2a44;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}

.room-showcase-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.room-showcase-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 50px;
    padding: 0 22px;
    border-radius: 16px;
    background: #b07841;
    border: 1px solid #b07841;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 14px 28px rgba(176, 120, 65, 0.18);
}

.room-showcase-btn:hover {
    background: #9e6736;
    border-color: #9e6736;
    color: #fff;
}

.room-showcase-btn--ghost {
    background: rgba(255, 255, 255, 0.86);
    color: #b07841;
    box-shadow: none;
}

.room-showcase-btn--ghost:hover {
    background: rgba(176, 120, 65, 0.10);
    border-color: rgba(176, 120, 65, 0.75);
    color: #b07841;
}

.room-showcase-gallery {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.room-showcase-gallery .swiper-slide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.album-grid.album-grid--cols-12>[class*="col-"] {
    width: 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .album-grid.album-grid--cols-12>[class*="col-"] {
        width: 100%;
        max-width: 100%;
    }

    .album-grid.album-grid--cols-6>[class*="col-"],
    .album-grid.album-grid--cols-4>[class*="col-"],
    .album-grid.album-grid--cols-3>[class*="col-"],
    .album-grid.album-grid--cols-2>[class*="col-"] {
        width: 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .album-grid.album-grid--cols-12>[class*="col-"] {
        width: 100%;
        max-width: 100%;
    }

    .album-grid.album-grid--cols-6>[class*="col-"] {
        width: 50%;
        max-width: 50%;
    }

    .album-grid.album-grid--cols-4>[class*="col-"] {
        width: 33.333333%;
        max-width: 33.333333%;
    }

    .album-grid.album-grid--cols-3>[class*="col-"] {
        width: 25%;
        max-width: 25%;
    }

    .album-grid.album-grid--cols-2>[class*="col-"] {
        width: 16.666667%;
        max-width: 16.666667%;
    }
}

.room-showcase-gallery-pag {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    z-index: 60;
}

.room-showcase-content {
    margin-top: 20px;
}

.room-showcase-section,
.room-showcase-panel,
.room-showcase-side-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.05);
}

.room-showcase-section {
    padding: 24px;
}

.room-showcase-section-head {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	text-align: left;
}

.room-showcase-section-head span,
.room-showcase-panel-head span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(31, 42, 68, 0.07);
    color: #4c5568;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.room-showcase-section-head h4,
.room-showcase-panel-head h5 {
    margin: 12px 0 0;
    color: #1f2a44;
    font-weight: 700;
}

.room-showcase-section-head h4 {
    font-size: 24px;
}

.room-showcase-panel-head h5 {
    font-size: 18px;
    line-height: 1.35;
}

.room-showcase-richtext,
.room-showcase-richtext p,
.room-showcase-section p {
    color: #5f6574;
    line-height: 1.9;
}

.room-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.room-showcase-panel {
    padding: 22px;
}

.room-showcase-panel--wide {
    grid-column: 1 / -1;
}

.room-showcase-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.room-showcase-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #faf8f5;
    color: #4f586b;
    line-height: 1.65;
    font-weight: 700;
}

.room-showcase-feature i {
    color: #b07841;
    margin-top: 3px;
}

.room-showcase-checklist {
    margin: 16px 0 0;
    padding-left: 18px;
    color: #5f6574;
    line-height: 1.9;
}

.room-showcase-note {
    margin: 16px 0 0;
    color: #5f6574;
    line-height: 1.85;
}

.room-showcase-info-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.room-showcase-info-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    background: #f7f8fb;
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: #4c5568;
    font-weight: 700;
}

.room-showcase-info-chip i {
    color: #b07841;
}

.room-showcase-booking {
    border-radius: 24px;
    padding: 22px;
    background: linear-gradient(145deg, #1f2a44 0%, #2e3755 100%);
    box-shadow: 0 20px 44px rgba(31, 42, 68, 0.24);
    color: #fff;
    margin-bottom: 18px;
}

.room-showcase-booking-label {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.room-showcase-booking-price {
    margin-top: 14px;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 700;
}

.room-showcase-booking-name {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 700;
}

.room-showcase-booking-text {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.room-showcase-booking-points {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.room-showcase-booking-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    line-height: 1.6;
}

.room-showcase-booking-point i {
    width: 18px;
    color: #f1c48f;
    margin-top: 3px;
}

.room-showcase-side-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #1f2a44;
    font-weight: 700;
    margin-top: 14px;
}

.room-showcase-side-btn:hover {
    background: #f6ede4;
    color: #1f2a44;
}

.room-showcase-side-btn--ghost {
    background: transparent;
    color: #fff;
}

.room-showcase-side-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
}

.room-showcase-side-card {
    padding: 20px;
    margin-bottom: 18px;
}

.room-showcase-side-title {
    font-size: 15px;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.room-showcase-side-list {
    display: grid;
    gap: 10px;
}

.room-showcase-side-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #faf8f5;
    color: #4f586b;
    font-weight: 700;
    line-height: 1.6;
}

.room-showcase-side-item i {
    color: #b07841;
    margin-top: 3px;
}

.room-showcase-side-links {
    display: grid;
    gap: 10px;
}

.room-showcase-side-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 14px;
    background: #f7f8fb;
    border: 1px solid rgba(0, 0, 0, 0.07);
    color: #1f2a44;
    font-weight: 700;
}

.room-showcase-side-links a:hover {
    background: rgba(176, 120, 65, 0.10);
    border-color: rgba(176, 120, 65, 0.28);
    color: #9f6532;
}

@media (max-width: 1200px) {
    .room-showcase {
        flex-direction: column;
    }

    .room-showcase-side {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        position: relative;
        top: auto;
    }
}

@media (max-width: 992px) {
    .room-showcase-hero {
        grid-template-columns: 1fr;
    }

    .room-showcase-gallery .swiper-slide img {
        height: 380px;
    }

    .room-showcase-meta,
    .room-showcase-grid,
    .room-showcase-feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .room-showcase {
        gap: 16px;
    }

    .room-showcase-hero {
        display: flex;
        flex-direction: column;
    }

    .room-showcase-gallery-wrap {
        order: 1;
    }

    .room-showcase-copy {
        order: 2;
    }

    .room-showcase-hero,
    .room-showcase-section,
    .room-showcase-panel,
    .room-showcase-booking,
    .room-showcase-side-card {
        padding: 18px;
    }

    .room-showcase-title {
        font-size: 24px;
        line-height: 1.18;
    }

    .room-showcase-gallery .swiper-slide img {
        height: 240px;
    }

    .room-showcase-lead {
        font-size: 14px;
        line-height: 1.7;
    }

    .room-showcase-badges,
    .room-showcase-meta,
    .room-showcase-feature-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .room-showcase-badges {
        display: grid;
    }

    .room-showcase-badge {
        width: auto;
        min-width: 0;
        min-height: 0;
        padding: 10px 12px;
        gap: 8px;
        font-size: 12px;
        line-height: 1.4;
    }

    .room-showcase-meta-card:last-child {
        grid-column: 1 / -1;
    }

    .room-showcase-actions {
        flex-direction: column;
    }

    .room-showcase-btn,
    .room-showcase-side-btn {
        width: 100%;
        min-width: 0;
        height: 46px;
        font-size: 14px;
        line-height: 1;
        white-space: nowrap;
        text-align: center;
    }

    .room-showcase-info-strip {
        gap: 8px;
    }

    .room-showcase-info-chip {
        width: 100%;
        justify-content: flex-start;
        min-height: 0;
        padding: 10px 12px;
        line-height: 1.4;
    }

    .room-showcase-gallery .slider-button {
        width: 34px;
        height: 34px;
        line-height: 34px;
        margin-top: -17px;
    }

    .room-showcase-gallery-pag {
        padding: 0 12px 12px;
    }

    .room-showcase-booking-price {
        font-size: 24px;
    }

    .room-showcase-booking-point,
    .room-showcase-side-item {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .room-showcase-badges,
    .room-showcase-meta,
    .room-showcase-feature-list {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 1068px) {
    .news-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 768px) {
    .news-gallery-img {
        height: 140px;
    }
}

@media only screen and (max-width: 480px) {
    .news-gallery {
        grid-template-columns: 1fr;
    }

    .news-gallery-img {
        height: 220px;
    }
}

.main-sidebar-widget {
    margin-bottom: 30px;
    position: relative;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #f9f9f9;
}

.tc_single {
    margin-top: 30px;
}

.tc_single_title {
    float: left;
    position: relative;
    font-family: var(--secondary-font);
    margin-right: 20px;
    top: 12px;
}

.post-img-row {
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 20px 0 30px;
    grid-gap: 10px;
}

.post-img-row img {
    border-radius: 10px;
}

.content-nav-fixed {
    position: relative;
    padding: 0 30px;
    height: 100px;
    background: #272535;
    margin: 30px 0;
    border-radius: 10px;
}

.content-nav-fixed:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 10px;
    z-index: 1;
    border: 1px dashed rgba(255, 255, 255, .2);
}

.content-nav-fixed:before {
    content: '';
    position: absolute;
    left: 50%;
    width: 1px;
    height: 20px;
    top: 50%;
    margin-top: -10px;
    background: rgba(255, 255, 255, 0.21);
    z-index: 100;
}

.content-nav-fixed ul {
    display: grid;
    grid-template-columns: 50% 50%;
    position: relative;
    z-index: 10;
}

.content-nav-fixed li {
    width: 100%;
    display: block;
    position: relative;
}

.content-nav-fixed li:first-child {
    border: none;
}

.content-nav-fixed li a.ln,
.content-nav-fixed li a.rn {
    color: var(--main-color);
    position: relative;
    width: 100%;
    height: 100px;
    line-height: 100px;
}

.content-nav-fixed li a.ln {
    text-align: left;
    float: left;
    padding-left: 120px;
}

.content-nav-fixed li a.rn {
    text-align: right;
    float: right;
    padding-right: 120px;
}

.content-nav-fixed li a:hover:before {
    top: 0;
}

.content-nav-fixed li a.ln i,
.content-nav-fixed li a.rn i {
    position: relative;
    z-index: 50;
    transform: translateX(0);
    transition: all .3s linear;
    color: #fff;
}

.content-nav-fixed li a.ln:hover i {
    transform: translateX(-85px);
    transition-delay: .35s;
}

.content-nav-fixed li a.rn:hover i {
    transform: translateX(85px);
    transition-delay: .35s;
}

.content-nav-fixed li a span {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    position: relative;
    z-index: 10;
}

.content-nav-fixed li a.ln span {
    padding-left: 15px;
}

.content-nav-fixed li a.rn span {
    padding-right: 15px;
}

.content-nav_mediatooltip {
    position: absolute;
    bottom: 50%;
    margin-bottom: -30px;
    overflow: hidden;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.content-nav-fixed li .overlay {
    opacity: 0;
    transition: all .3s linear;
}

.content-nav-fixed li:hover .overlay {
    opacity: .7;
    transition-delay: .3s
}

.content-nav_mediatooltip.cnmd_leftside {
    left: 0;
}

.content-nav_mediatooltip.cnmd_rightside {
    right: 0;
}

.comments-item {
    position: relative;
    padding-left: 100px;
}

.comments-avatar {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 24px 0px rgba(0, 0, 0, .2);
}

.comments-avatar img {
    width: 100%;
    height: 100%;
}

.comments-item-text {
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 10px;
}

.comments-wrap {
    margin-top: 30px;
}

.comments-item {
    margin-bottom: 30px;
}

.comments-wrap .comments-item:last-child {
    margin-bottom: 0;
}

.comments-header {
    padding: 20px 40px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 1.4em;
    background: #fff;
    position: relative;
}

.comments-item-footer {
    position: relative;
    overflow: hidden;
    padding: 20px 40px;
    border-top: 1px solid #eee;
    font-family: var(--secondary-font);
}

.comments-item-text-wrap {
    padding: 20px 40px;
}

.comments-item-text-wrap p {
    text-align: left;
}

.comments-item-date {
    float: left;
    font-size: 1.1em;
}

.comments-item-date i {
    margin-right: 10px;
    color: var(--main-color);
}

.reply-item {
    float: right;
    background: #fff;
    padding: 8px 20px;
    border: 1px solid #eee;
    box-shadow: 0 10px 14px 0px rgba(0, 0, 0, .05);
}

#message {
    text-align: left;
    font-size: 1.3em;
}

#message div {
    padding-top: 20px;
}

.comment-form input,
.comment-form textarea {
    border: 1px solid #eee;
    background: #f9f9f9;
    width: 100%;
    padding: 0 30px;
    height: 60px;
    border-radius: 4px;
    color: #000;
    font-size: 13px;
    -webkit-appearance: none;
    text-align: left;
    margin-top: 20px;
    font-family: var(--secondary-font);
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
    padding: 25px 30px;
    margin-bottom: 20px;
}

.comment-form input::-webkit-input-placeholder,
.comment-form textarea::-webkit-input-placeholder {
    font-weight: 500;
    font-size: 13px;
    font-family: var(--secondary-font);
}

.commentssubmit {
    display: table;
    height: 60px;
    cursor: pointer;
    padding: 0 50px;
    border: none;
    -webkit-appearance: none;
    border-radius: 4px;
    position: relative;
    color: var(--main-color);
    background: #272535;
    font-weight: 500;
    font-family: var(--secondary-font);
    transition: all .2s linear;
}

.commentssubmit:hover {
    background: var(--main-color);
    color: #272535;
}

#reviewform .commentssubmit {
    margin-left: auto;
    margin-right: auto;
}

.contacts-cards-wrap {
    margin-bottom: 30px;
}

.contacts-card-item {
    position: relative;
    padding: 30px 30px 30px 90px;
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #f9f9f9;
    transition: all .3s ease-in-out;
    text-align: left;
}

.contacts-card-item:hover {
    background: #fff;
    box-shadow: 0px 10px 14px 0px rgba(0, 0, 0, .05);
}

.contacts-card-item i {
    position: absolute;
    top: 50%;
    left: 30px;
    font-size: 2.8em;
    color: var(--main-color);
    transform: translateY(-50%);
}

.contacts-card-item span {
    display: block;
    text-align: left;
    font-size: 2.0em;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
}

.contacts-card-item a {
    float: left;
    font-family: var(--secondary-font);
    margin: 10px 15px 0 0;
    font-size: 1.1em;
    font-weight: 500;
    color: var(--main-color);
    transition: all .2s ease-in-out;
}

.contacts-card-item a:hover {
    color: #666;
}

.map-container {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.mapzoom-in,
.mapzoom-out,
.scrollContorl {
    position: absolute;
    z-index: 100;
    cursor: pointer;
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 6px;
    right: 22px;
    color: var(--main-color);
    bottom: 70px;
    transform: translate3d(0, 0, 0);
    background: #272535;
    box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, .09);
}

.mapzoom-out {
    bottom: 20px;
}

.scrollContorl {
    bottom: 150px;
}

.mapzoom-in:before,
.mapzoom-out:before,
.scrollContorl:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f068";
    font-size: 10px;
    font-weight: 600;
}

.mapzoom-in:before {
    content: "\f067";
}

.scrollContorl:before {
    content: "\f09c";
}

.scrollContorl.enabledsroll:before {
    content: '\f3c1';
}

.mapzoom-in:hover,
.mapzoom-out:hover,
.scrollContorl:hover {
    color: #fff;
}

.gm-style .gm-style-iw {
    border-radius: 0 !important;
    padding: 12px 20px 2px !important;
}

.tabs-container {
    overflow: hidden;
    border: 1px dashed #ddd;
}

.tab-content {
    display: none;
}

.tab {
    position: relative;
}

.first-tab {
    display: block;
}

.hero-menu_header {
    position: relative;
    margin: 30px 0 50px;
    display: inline-table;
    border: 1px solid #eee;
    background: #fff;
    padding: 0 50px;
    border-radius: 10px;
    box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, .04);
}

.hero-menu_header:before,
.hero-menu_header:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 120px;
    height: 1px;
    border-top: 1px solid #eee;
}

.hero-menu_header:before {
    left: -150px;
}

.hero-menu_header:after {
    right: -150px;
}

.hero-menu-det {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.hero-menu_header li {
    text-align: left;
    display: inline-block;
    margin: 0 30px;
    font-size: 1.5em;
    position: relative;
    padding: 25px 0;
}

.hero-menu_header li:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -34px;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-radius: 50%;
    background: var(--main-color);
}

.hero-menu_header li:last-child:after {
    display: none
}

.hero-menu_header li:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f0d8";
    position: absolute;
    bottom: -6px;
    font-size: 15px;
    right: 50%;
    opacity: 0;
    font-weight: 700;
}

.hero-menu_header li a {
    color: #666;
    transition: all .3s ease-in-out;
}

.hero-menu_header li.current a,
.hero-menu_header li.current:before,
.hero-menu_header li a:hover,
.hero-menu_title h4,
.signature_title_item h6 {
    color: var(--main-color);
}

.hero-menu_header li.current:before {
    opacity: 1
}

.dec-container {
    position: relative;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 60px;
    overflow: hidden;
}

.dec-container--rpay {
    overflow: visible;
}

.dec-container--rsv {
    overflow: visible;
}

.signature-opt {
    overflow: hidden;
}

.signature-opt {
    padding: 15px 0 0;
}

.signature_title,
.signature_title_item,
.signature_title img {
    float: left;
}

.signature_title img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.signature_title_item {
    margin-left: 20px;
    text-align: left;
    padding-top: 10px;
}

.signature_title_item h5 {
    font-size: 1.9em;
}

.signature_title_item h6 {
    font-weight: 500;
    font-family: var(--secondary-font);
}

.signature_item {
    float: right;
    width: 100px;
    margin-top: 15px;
}

.dc_dec-item_left,
.dc_dec-item_right {
    position: absolute;
    top: 50%;
    z-index: 5;
}

.dc_dec-item_left {
    left: -60px;
}

.dc_dec-item_right {
    right: -60px;
}

.dc_dec-item_right:before,
.dc_dec-item_left:before {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    width: 100px;
    background: #eee;
}

.dc_dec-item_right:before {
    left: 30px;
}

.dc_dec-item_left:before {
    right: 30px;
}

.dec-container:before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    bottom: 30px;
    right: 30px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    z-index: 1;
}

.hero-menu-item {
    position: relative;
    border-bottom: 1px dashed #ddd;
    z-index: 10;
    opacity: 0;
    left: -30px;
    float: left;
    width: 50%;
    overflow: hidden;
}

.hero-menu-wrap .hero-menu-item:nth-child(even) {
    padding: 30px 0 30px 150px;
}

.hero-menu-wrap .hero-menu-item:nth-child(odd) {
    padding: 30px 20px 30px 150px;
}

.hero-menu-item.uvis-hmi {
    opacity: 1;
    left: 0;
}

.uvis-hmi {
    transition-delay: .2s;
    transition: all .2s ease-in-out;
}

.hero-menu-item-img {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 40px;
    top: 50%;
    margin-top: -40px;
}

.hero-menu-item-img:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 1px dashed #ccc;
    z-index: 2;
}

.hero-menu-item-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, .2);
    position: relative;
    z-index: 1;
}

.hero-menu-item-img:after {
    font-family: "Font Awesome 6 Pro";
    content: "\f002";
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    z-index: 3;
    opacity: 0;
    font-size: 15px;
    transition: all .2s ease-in-out;
    color: var(--main-color);
}

.hero-menu-item-img:hover:after {
    opacity: 1;
}

.hero-menu-item-title h6 {
    text-align: left;
    padding-bottom: 4px;
    color: #444;
    font-size: 1.7em;
    font-weight: 500;
    position: relative;
}

.hot-desc {
    color: var(--main-color);
    margin-left: 10px;
}

.hero-menu-item-price {
    font-weight: 500;
    font-size: 2.2em;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color);
}

.hero-menu-item-details {
    padding-right: 50px;
}

.dwonload_btn,
.btn {
    height: 54px;
    line-height: 54px;
    padding: 0 54px;
    position: relative;
    display: inline-block;
    margin-top: 50px;
    font-family: var(--secondary-font);
    font-weight: 600;
    border-radius: 4px;
    color: var(--main-color);
    background: var(--tp-dark-color);
    transition: all .3s ease-in-out;
}

.btn:before,
.dwonload_btn:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 4px;
    border: 1px dotted #ddd;
    transition: all .3s ease-in-out;
}

.btn:hover:before,
.dwonload_btn:hover:before,
.stg_link:hover:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.btn {
    margin-top: 30px;
}

.fl-btn {
    float: left
}

.dwonload_btn:after {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    width: 1px;
    height: 25px;
    background: #eee;
    z-index: 10;
}

.dwonload_btn:hover,
.btn:hover {
    background: var(--main-color);
    color: #222;
}

.fw-aminit-wrap {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.fw-aminit-item {
    position: relative;
    float: left;
    width: 33.3333333%;
    border-right: 1px solid rgba(255, 255, 255, .2);
    cursor: pointer;
    z-index: 20;
}

.fw-aminit-item:before {
    content: '';
    position: absolute;
    top: 30px;
    bottom: 30px;
    right: 30px;
    left: 30px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    background: rgba(39, 37, 53, .3);
    transition: all .3s ease-in-out;
}

.fw-aminit-item:after {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    height: 0;
    width: 1px;
    background: rgba(255, 255, 255, .2);
    transition: all .3s ease-in-out;
}

.fw-aminit-item.act-index:after {
    height: 100px;
}

.fw-aminit-item.act-index:before {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background: rgba(39, 37, 53, .8);
}

.fw-aminit-wrap .fw-aminit-item:last-child {
    border: none;
}

.fw-aminit-item-container {
    position: relative;
    padding: 0 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.fw-aminit-item-container i {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(0);
    color: var(--main-color);
    opacity: .3;
    z-index: -1;
    font-size: 10.4em;
    transition: all .3s ease-in-out;
}

.fw-aminit-item.act-index .fw-aminit-item-container i {
    transform: translateX(-50%) scale(1.0);
}

.fw-aminit-item-container h3 {
    color: #fff;
    font-size: 3.2em;
    position: relative;
}

.fw-aminit-item-container h3:before {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    width: 50px;
    height: 1px;
    margin-left: -25px;
    background: var(--main-color);
}

.fw-aminit-item-container h5 {
    font-size: 1.7em;
    font-style: italic;
    font-weight: 500;
    color: var(--main-color);
}

.fw-aminit-item-container h6 {
    margin-top: 30px;
}

.aminit-work-time {
    position: absolute;
    left: 50%;
    bottom: 90px;
    transform: translateX(-50%);
    padding: 15px 40px;
    border-radius: 10px;
    border: 1px dotted var(--main-color);
    z-index: 10;
    background: rgba(255, 255, 255, .07);
    box-shadow: 0px 0px 0px 7px rgba(255, 255, 255, .07);
    opacity: 0;
    margin-bottom: 10px;
    transition: all .3s ease-in-out;
}

.fw-aminit-item.act-index .aminit-work-time {
    opacity: 1;
    margin-bottom: 0;
}

.aminit-work-time span,
.aminit-work-time strong,
.fw-aminit-item-container h6 {
    color: #fff;
    font-family: var(--secondary-font);
}

.aminit-work-time span {
    display: block;
    margin-bottom: 10px;
}

.dark-bg {
    background: #272535
}

.gray-bg {
    background: #f9f9f9;
}

.bg-ser .bg {
    opacity: 0;
    will-change: opacity, transform;
    transform: scale(1);
    transition: all 1.2s linear;
}

.bg-ser .bg.active {
    opacity: 1;
    left: 0;
    transform: scale(1.05);
}

/*------ testimonilas------------------------------------------------*/
.testimonilas-carousel-wrap:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
}

.testimonilas-carousel-wrap {
    position: relative;
    margin-top: 50px;
    padding: 0 50px;
    z-index: 10;
}

.testi-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 18px;
    transition: all .3s ease-in-out;
    transform: scale(1.0);
    opacity: 1;
    background: #fff;
    width: 100%;
}

.testi-item:after,
.event-carousel-item:before {
    position: absolute;
    content: '\25CF\25CF\25CF\25CF\25CF';
    width: 50px;
    left: 50%;
    bottom: 50px;
    margin-left: -25px;
    font-size: 6px;
    letter-spacing: 8px;
    color: var(--main-color);
}

.event-carousel-item:before {
    content: '\25CF\25CF\25CF';
    bottom: 0;
}

.testimonilas-text-item {
    position: relative;
    z-index: 2;
}

.testi-item-dec:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #f9f9f9;
    transition: all .3s ease-in-out;
}

.testimonilas-text {
    padding: 58px 30px 42px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    border: 1px solid rgba(39, 37, 53, 0.08);
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
    transition: all .3s ease-in-out;
    text-align: center;
}

.testimonilas-text .star-rating {
    margin-bottom: 20px;
}

.testimonilas-text:before,
.testimonilas-text:after {
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    font-size: 2.2em;
    transition: all .4s linear;
    font-weight: bold;
    color: var(--main-color);
    z-index: 10;
}

.testimonilas-text:after {
    content: "\f10e";
    bottom: 30px;
    right: 35px;
}

.testimonilas-text:before {
    content: "\f10e";
    top: 30px;
    left: 35px;
}

.testimonilas-text h3 {
    font-weight: 600;
    font-size: 1.8em;
    padding-bottom: 12px;
}

@media only screen and (min-width: 992px) {
    .testimonilas-carousel .swiper-slide {
        padding: 30px 0;
    }
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
    .testimonilas-carousel .swiper-slide {
        padding: 30px 0;
    }
}
@media only screen and (max-width: 767px) {
    .testimonilas-carousel .swiper-slide {
        padding: 30px 0;
    }
}
.testimonilas-carousel .swiper-slide {
    padding: 30px 0;
}

.testi-avatar {
    position: relative;
    left: auto;
    top: auto;
    width: 68px;
    height: 68px;
    margin: 0 auto -32px;
    transform: none;
    z-index: 20;
}

.testi-avatar:before {
    content: none;
}

.testi-avatar img {
    width: 68px;
    height: 68px;
    float: left;
    border-radius: 100%;
    position: relative;
    z-index: 2;
}

.testi-avatar.testi-avatar-text {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 4px solid #fff;
    background: linear-gradient(135deg, #caa56a 0%, #9f7740 100%);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .08em;
    box-shadow: 0 14px 28px rgba(159, 119, 64, 0.24);
    position: relative;
    z-index: 2;
}

.testi-avatar.testi-avatar-text:before {
    z-index: 1;
}

.testi-avatar.testi-avatar-text span {
    position: relative;
    z-index: 3;
    line-height: 1;
}

.testimonilas-text p {
    color: #878C9F;
    font-size: 1.3em;
    font-family: var(--main-font);
    font-style: italic;
    text-align: center;
    padding-bottom: 0;
    font-weight: 500;
}

.testimonilas-text {
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.testimonilas-text .testi-item-dec:before {
    background: #fff
}

.swiper-slide-active .testi-item {
    box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, .05);
}

.testi-link {
    position: relative;
    display: inline-block;
    color: var(--main-color);
    margin-top: 20px;
    font-size: 1.3em;
    font-weight: 600;
}

.testi-link:hover {
    color: #666;
}

.testi-number {
    position: absolute;
    bottom: 35px;
    left: 35px;
    font-size: 1.8em;
    color: #999;
    z-index: 10;
}

.tc-button {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin-top: -25px;
    border-radius: 50%;
    background: #272535;
    color: var(--main-color);
    z-index: 50;
    cursor: pointer;
}

.tc-button-next {
    right: 25px;
}

.tc-button-prev {
    left: 25px;
}

.tcs-pagination_init {
    margin-top: 10px;
    overflow: hidden;
}

.tcs-pagination_init {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
}

.tcs-pagination .swiper-pagination-bullet {
    opacity: 1;
    background: #ccc;
    margin: 0 10px;
    display: inline-block;
    width: 6px;
    height: 6px;
    position: relative;
    border-radius: 100%;
    transition: all 300ms ease-out;
}

.tcs-pagination .swiper-pagination-bullet:before {
    content: '';
    position: absolute;
    left: -5px;
    top: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    transition: all 300ms ease-out;
    transform: scale(0);
}

.tcs-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    transform: scale(1.0);
}

.tcs-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--main-color);
}

/*------facts------------------------------------------------*/
.inline-facts-wrap {
    position: relative;
}

.inline-facts {
    float: left;
    width: 25%;
    position: relative;
}

.inline-facts:before {
    content: '';
    position: absolute;
    right: 0;
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, .3);
    top: 50%;
    margin-top: -25px;
}

.inline-facts-wrap .inline-facts:last-child:before {
    display: none
}

.inline-facts .num {
    color: var(--main-color);
    font-size: 6.3em;
    font-weight: 600;
}

.inline-facts h6 {
    margin-top: 20px;
    font-weight: 600;
    position: relative;
    color: #fff;
    font-family: var(--secondary-font);
    font-size: 1.1em;
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .07);
    border-radius: 4px;
}

.inline-facts h6:after {
    position: absolute;
    content: '\25CF\25CF\25CF';
    width: 50px;
    left: 50%;
    bottom: -40px;
    margin-left: -25px;
    font-size: 6px;
    letter-spacing: 4px;
    color: var(--main-color);
}

.team-container {
    margin-top: 30px;
}

.team-box {
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
}

.team-photo {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, .1);
    z-index: 10;
}

.team-photo img {
    width: 100%;
    height: 320px;
    display: block;
    object-fit: cover;
}

.team-info {
    margin-top: 10px;
    padding: 25px 30px 40px;
    border: 1px dotted #ddd;
    background: #fff;
    border-radius: 6px;
}

.team-box .team-info {
    padding: 18px 20px 22px;
}

.team-photo .overlay {
    opacity: 0;
    transition: all .2s ease-in-out;
}

.team-photo:hover .overlay {
    opacity: 0.5;
}

.team-info h3 {
    display: block;
    padding-bottom: 10px;
    font-weight: 500;
    font-size: 2.2em;
    color: var(--main-color);
    text-align: center;
}

.team-box .team-info h3 {
    font-size: 1.6em;
    padding-bottom: 8px;
}

.team-info h4 {
    font-size: .9em;
    font-weight: 500;
    font-family: var(--secondary-font);
}

.team-info p {
    margin-top: 20px;
    text-align: center;
}

.team-box .team-info p {
    margin-top: 12px;
}

.team-box .stg_link {
    margin-top: 16px;
    padding: 12px 28px;
}

.teamx {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.teamx-header {
    display: flex;
    align-items: stretch;
    gap: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    padding: 18px;
}

.teamx-photo {
    flex: 0 0 320px;
    max-width: 320px;
    border-radius: 18px;
    overflow: hidden;
}

.teamx-photo img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: block;
    object-fit: cover;
}

.teamx-summary {
    flex: 1 1 0;
    min-width: 0;
}

.teamx-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.teamx-name {
    font-size: 26px;
    font-weight: 700;
    color: #1f2a44;
    line-height: 1.2;
}

.teamx-role {
    margin-top: 8px;
    color: #777;
    font-weight: 700;
}

.teamx-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
    color: #1f2a44;
    font-weight: 700;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.teamx-back:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    transform: translateY(-1px);
}

.teamx-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.teamx-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
    color: #1f2a44;
    font-weight: 700;
    font-size: 12px;
}

.teamx-badge i {
    color: rgba(31, 42, 68, 0.55);
}

.teamx-contact {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    max-width: 520px;
}

.teamx-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1f2a44;
    font-weight: 700;
}

.teamx-contact-item i {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
}

.teamx-contact-item:hover i {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.teamx-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.teamx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid var(--main-color);
    background: var(--main-color);
    color: #fff;
    font-weight: 700;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.teamx-btn:hover {
    background: #272535;
    border-color: #272535;
    color: var(--main-color);
    transform: translateY(-1px);
}

.teamx-btn--ghost {
    background: #fff;
    color: var(--main-color);
}

.teamx-btn--ghost:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.teamx-social {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
    display: flex;
    gap: 10px;
}

.teamx-social li {
    margin: 0;
}

.teamx-social a {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
    color: #1f2a44;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.teamx-social a:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    transform: translateY(-1px);
}

.teamx-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.9fr;
    gap: 18px;
    margin-top: 18px;
}

.teamx-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    padding: 18px;
}

.teamx-card h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
    color: #1f2a44;
}

.teamx-card p {
    margin: 0 0 12px 0;
    color: #666;
    line-height: 1.8;
}

.teamx-card p:last-child {
    margin-bottom: 0;
}

.teamx-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.teamx-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #666;
    line-height: 1.7;
}

.teamx-list li:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--main-color);
    margin-top: 7px;
    flex: 0 0 8px;
}

.teamx-card--side {
    grid-row: 1 / span 2;
    align-self: start;
}

.teamx-kv {
    display: grid;
    gap: 10px;
}

.teamx-kv-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
}

.teamx-kv-row span {
    color: #777;
    font-weight: 700;
}

.teamx-kv-row strong {
    color: #1f2a44;
    font-weight: 700;
    text-align: right;
}

@media (max-width: 992px) {
    .teamx-header {
        flex-direction: column;
    }

    .teamx-photo {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .teamx-grid {
        grid-template-columns: 1fr;
    }

    .teamx-card--side {
        grid-row: auto;
    }
}

.staffp {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.staffp-cover {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
}

.staffp-cover img {
    width: 100%;
    height: 260px;
    display: block;
    object-fit: cover;
}

.staffp-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.55));
}

.staffp-card {
    position: relative;
    margin-top: -64px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    padding: 18px;
}

.staffp-card-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.staffp-avatar {
    width: 92px;
    height: 92px;
    border-radius: 999px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    flex: 0 0 92px;
    background: #fff;
}

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

.staffp-main {
    flex: 1 1 0;
    min-width: 0;
}

.staffp-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.staffp-name {
    font-size: 24px;
    font-weight: 700;
    color: #1f2a44;
    line-height: 1.2;
}

.staffp-role {
    margin-top: 6px;
    color: #777;
    font-weight: 700;
}

.staffp-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
    color: #1f2a44;
    font-weight: 700;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.staffp-back:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    transform: translateY(-1px);
}

.staffp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.staffp-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
    color: #1f2a44;
    font-weight: 700;
    font-size: 12px;
}

.staffp-chip i {
    color: rgba(31, 42, 68, 0.55);
}

.staffp-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-top: 14px;
}

.staffp-contacts {
    display: grid;
    gap: 10px;
}

.staffp-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1f2a44;
    font-weight: 700;
}

.staffp-contact i {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
}

.staffp-contact:hover i {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.staffp-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
}

.staffp-social li {
    margin: 0;
}

.staffp-social a {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
    color: #1f2a44;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.staffp-social a:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    transform: translateY(-1px);
}

.staffp-actions {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.staffp-section {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    padding: 18px;
    margin-top: 18px;
}

.staffp-section h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
    color: #1f2a44;
}

.staffp-section p {
    margin: 0 0 12px 0;
    color: #666;
    line-height: 1.8;
}

.staffp-section p:last-child {
    margin-bottom: 0;
}

.staffp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.staffp-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #666;
    line-height: 1.7;
}

.staffp-list li:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--main-color);
    margin-top: 7px;
    flex: 0 0 8px;
}

.staffp-side {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    padding: 18px;
    margin-top: 18px;
    position: sticky;
    top: 110px;
}

.staffp-side-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 10px;
}

.staffp-kv {
    display: grid;
    gap: 10px;
}

.staffp-kv-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
}

.staffp-kv-row span {
    color: #777;
    font-weight: 700;
}

.staffp-kv-row strong {
    color: #1f2a44;
    font-weight: 700;
    text-align: right;
}

@media (max-width: 992px) {
    .staffp-card {
        margin-top: -48px;
    }

    .staffp-card-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .staffp-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .staffp-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .staffp-actions .btn {
        width: 100%;
    }

    .staffp-side {
        position: relative;
        top: auto;
    }
}

.teamref-layout {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
}

.teamref-main {
    flex: 1 1 0;
    min-width: 0;
}

.teamref-aside {
    flex: 0 0 320px;
    max-width: 320px;
}

.teamref-profile {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #fffaf5 58%, #fff 100%);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
}

.teamref-profile-head {
    display: flex;
    align-items: stretch;
    gap: 24px;
}

.teamref-profile {
    padding: 24px;
}

.teamref-profile:before,
.teamref-profile:after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.teamref-profile:before {
    width: 180px;
    height: 180px;
    right: -70px;
    top: -70px;
    background: radial-gradient(circle, rgba(176, 120, 65, 0.18) 0%, rgba(176, 120, 65, 0) 72%);
}

.teamref-profile:after {
    width: 220px;
    height: 220px;
    left: -110px;
    bottom: -130px;
    background: radial-gradient(circle, rgba(31, 42, 68, 0.07) 0%, rgba(31, 42, 68, 0) 72%);
}

.teamref-avatar-wrap {
    position: relative;
    flex: 0 0 280px;
    max-width: 280px;
    z-index: 1;
}

.teamref-avatar {
    width: 100%;
    height: 360px;
    border-radius: 22px;
    overflow: hidden;
    background: #f3f3f3;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
}

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

.teamref-avatar-note {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    min-height: 42px;
    padding: 8px 14px;
    border-radius: 14px;
    background: rgba(17, 24, 39, 0.78);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    backdrop-filter: blur(6px);
}

.teamref-head-body {
    min-width: 0;
    flex: 1 1 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.teamref-eyebrow {
    color: #b07841;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.teamref-badge {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(176, 120, 65, 0.12);
    color: #9f6532;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .03em;
    margin-top: 12px;
}

.teamref-name {
    margin: 12px 0 10px 0;
    font-size: 36px;
    font-weight: 700;
    color: #1f2a44;
    line-height: 1.15;
}

.teamref-lead {
    max-width: 720px;
    color: #5f6574;
    line-height: 1.85;
    font-size: 15px;
    margin-bottom: 18px;
}

.teamref-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.teamref-meta-card {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(176, 120, 65, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.teamref-meta-card span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8d95a3;
    margin-bottom: 6px;
}

.teamref-meta-card strong {
    display: block;
    color: #1f2a44;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.teamref-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.teamref-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #465065;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.teamref-highlight i {
    color: #b07841;
}

.teamref-profile-body {
    position: relative;
    z-index: 1;
    margin: 0 24px 24px;
    padding: 24px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: #666;
    line-height: 1.8;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.04);
}

.teamref-profile-body p {
    margin: 0 0 12px 0;
}

.teamref-profile-body p:last-child {
    margin-bottom: 0;
}

.teamref-section-head {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.teamref-section-kicker {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(31, 42, 68, 0.07);
    color: #4c5568;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.teamref-section-head h4 {
    margin: 10px 0 0 0;
    font-size: 22px;
    font-weight: 700;
    color: #1f2a44;
}

.teamref-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.teamref-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 24px;
    border-radius: 16px;
    border: 1px solid #b07841;
    background: #b07841;
    color: #fff;
    font-weight: 700;
    letter-spacing: .04em;
    box-shadow: 0 14px 28px rgba(176, 120, 65, 0.18);
}

.teamref-btn:hover {
    background: #9e6736;
    border-color: #9e6736;
    color: #fff;
}

.teamref-btn--ghost {
    background: rgba(255, 255, 255, 0.86);
    color: #b07841;
    box-shadow: none;
}

.teamref-btn--ghost:hover {
    background: rgba(176, 120, 65, 0.10);
    border-color: rgba(176, 120, 65, 0.75);
    color: #b07841;
}

.teamref-box {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 16px;
}

.teamref-box--accent {
    background: linear-gradient(145deg, #1f2a44 0%, #2d3652 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 38px rgba(31, 42, 68, 0.22);
}

.teamref-box--accent .teamref-box-title {
    color: #fff;
}

.teamref-box-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.teamref-box-subtitle {
    color: #7b8392;
    line-height: 1.75;
    font-size: 13px;
    margin-bottom: 14px;
}

.teamref-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(176, 120, 65, 0.12);
    color: #9f6532;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.teamref-box--contact {
    background: #fff;
}

.teamref-box--contact .teamref-box-title {
    margin-bottom: 8px;
}

.teamref-box--contact .teamref-contact-row {
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid rgba(31, 42, 68, 0.08);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    margin-top: 0;
}

.teamref-box--contact .teamref-contact-row:first-child {
    padding-top: 14px;
    border-top: 1px solid rgba(31, 42, 68, 0.08);
}

.teamref-box--contact .teamref-contact-ico {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border-color: rgba(176, 120, 65, 0.14);
    background: rgba(176, 120, 65, 0.08);
    flex: 0 0 38px;
}

.teamref-box--contact .teamref-contact-label {
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #8d95a3;
}

.teamref-box--contact .teamref-contact-val {
    margin-top: 3px;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 700;
}

.teamref-box--teamcta {
    background: linear-gradient(145deg, #fffaf4 0%, #ffffff 100%);
    border-color: rgba(176, 120, 65, 0.18);
}

.teamref-box--teamcta .teamref-box-title {
    margin-bottom: 8px;
}

.teamref-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.teamref-contact-row:first-child {
    border-top: 0;
    padding-top: 0;
}

.teamref-contact-ico {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #b07841;
    flex: 0 0 34px;
}

.teamref-contact-label {
    color: #777;
    font-weight: 700;
    font-size: 12px;
}

.teamref-contact-val {
    color: #111827;
    font-weight: 700;
    line-height: 1.6;
}

.teamref-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.teamref-social li {
    margin: 0;
}

.teamref-social a {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #f6f6f6;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.teamref-social a:hover {
    background: #b07841;
    border-color: #b07841;
    color: #fff;
    transform: translateY(-1px);
}

.teamref-wide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    width: 100%;
    border-radius: 15px;
    border: 1px solid rgba(176, 120, 65, 0.45);
    background: #fff;
    color: #b07841;
    font-weight: 700;
    letter-spacing: .04em;
}

.teamref-wide-btn:hover {
    background: rgba(176, 120, 65, 0.10);
    border-color: rgba(176, 120, 65, 0.85);
    color: #b07841;
}

.teamref-wide-btn--soft {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
    margin-top: 16px;
}

.teamref-wide-btn--soft:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.26);
    color: #fff;
}

.teamref-wide-btn--primary {
    background: #b07841;
    border-color: #b07841;
    color: #fff;
    box-shadow: 0 14px 28px rgba(176, 120, 65, 0.16);
}

.teamref-wide-btn--primary:hover {
    background: #9e6736;
    border-color: #9e6736;
    color: #fff;
}

.teamref-side-points {
    display: grid;
    gap: 10px;
}

.teamref-side-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    font-weight: 700;
}

.teamref-side-point:first-child {
    border-top: 0;
    padding-top: 0;
}

.teamref-side-point i {
    width: 18px;
    color: #f1c48f;
    margin-top: 3px;
}

.teamref-others {
    margin-top: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.teamref-others-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.teamref-others-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.teamref-other-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: linear-gradient(180deg, #fff 0%, #fcfaf7 100%);
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.teamref-other-card:hover {
    border-color: rgba(176, 120, 65, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.06);
}

.teamref-other-avatar {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    overflow: hidden;
    background: #f6f6f6;
    flex: 0 0 54px;
}

.teamref-other-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.teamref-other-body {
    min-width: 0;
}

.teamref-other-name {
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.teamref-other-role {
    margin-top: 6px;
    color: #777;
    font-weight: 700;
    font-size: 12px;
}

.teamref-other-arrow {
    margin-left: auto;
    color: rgba(17, 24, 39, 0.55);
}

@media (max-width: 992px) {
    .teamref-layout {
        flex-direction: column;
    }

    .teamref-profile-head {
        flex-direction: column;
        align-items: stretch;
    }

    .teamref-avatar-wrap {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .teamref-aside {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .teamref-avatar {
        height: 320px;
    }

    .teamref-meta {
        grid-template-columns: 1fr;
    }

    .teamref-others-grid {
        grid-template-columns: 1fr;
    }
}

.vdetail-layout {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    text-align: left;
}

.vdetail-main {
    flex: 1 1 0;
    min-width: 0;
}

.vdetail-aside {
    flex: 0 0 360px;
    max-width: 360px;
}

.vdetail-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    padding: 16px;
    margin-bottom: 16px;
}

.vdetail-player {
    border-radius: 14px;
    overflow: hidden;
    background: #1f2937;
    aspect-ratio: 16 / 9;
}

.vdetail-player video,
.vdetail-player iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.vdetail-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 12px;
    color: #777;
    font-weight: 700;
    font-size: 12px;
}

.vdetail-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vdetail-meta-item i {
    color: #b07841;
}

.vdetail-title {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    letter-spacing: .01em;
    line-height: 1.25;
}

.vdetail-desc {
    margin-top: 10px;
    color: #777;
    line-height: 1.75;
}

.vdetail-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.vdetail-stat {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    color: #111827;
    font-weight: 700;
}

.vdetail-stat i {
    color: #b07841;
}

.vdetail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #b07841;
    background: #b07841;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .04em;
    margin-top: 12px;
}

.vdetail-btn:hover {
    background: #9e6736;
    border-color: #9e6736;
    color: #fff;
}

.vdetail-btn--outline {
    background: #fff;
    color: #b07841;
    border-color: rgba(176, 120, 65, 0.60);
}

.vdetail-btn--outline:hover {
    background: rgba(176, 120, 65, 0.10);
    border-color: rgba(176, 120, 65, 0.85);
    color: #b07841;
}

.vdetail-rel-list {
    margin-top: 10px;
}

.vdetail-rel-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
}

.vdetail-rel-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.vdetail-rel-thumb {
    width: 68px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    background: #f6f6f6;
    flex: 0 0 68px;
}

.vdetail-rel-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.vdetail-rel-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vdetail-rel-title {
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vdetail-rel-meta {
    font-size: 12px;
    font-weight: 700;
    color: #777;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 992px) {
    .vdetail-layout {
        flex-direction: column;
    }

    .vdetail-aside {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }
}

.rsv-page {
    text-align: left;
    position: relative;
    z-index: 2;
}

.rsv-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.rsv-filter {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    padding: 12px;
    margin-bottom: 16px;
}

.rsv-filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr 160px;
    gap: 10px;
    align-items: end;
}

.rsv-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.rsv-label {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
}

.rsv-input {
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    padding: 0 12px;
    color: #111827;
    font-weight: 700;
    font-size: 13px;
    text-align: left;
}

.rsv-input:focus {
    outline: none;
    border-color: rgba(176, 120, 65, 0.75);
    box-shadow: 0 0 0 3px rgba(176, 120, 65, 0.15);
}

.rsv-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #2d3a58;
    background: #2d3a58;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .04em;
}

.rsv-search-btn:hover {
    background: #24314d;
    border-color: #24314d;
    color: #fff;
}

.rsv-layout {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.rsv-list {
    flex: 1 1 0;
    min-width: 0;
}

.rsv-side {
    flex: 0 0 340px;
    max-width: 340px;
    position: sticky;
    top: 110px;
    align-self: flex-start;
    height: fit-content;
}

.rsv-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    overflow: visible;
    margin-bottom: 14px;
}

.rsv-room {
    display: flex;
    gap: 14px;
    padding: 14px;
}

.rsv-room+.rsv-room {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.rsv-room-media {
    width: 200px;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    background: #f6f6f6;
    flex: 0 0 200px;
    display: block;
}

.rsv-room-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.rsv-room-body {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.rsv-room-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.rsv-room-name {
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
    font-size: 15px;
}

.rsv-room-sub {
    margin-top: 6px;
    color: #6b7280;
    font-weight: 700;
    font-size: 12px;
}

.rsv-room-rate {
    text-align: right;
    white-space: nowrap;
}

.rsv-room-old {
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 700;
    font-size: 12px;
    margin-right: 6px;
}

.rsv-room-price {
    color: #111827;
    font-weight: 700;
    font-size: 14px;
}

.rsv-room-badge {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.10);
    color: #dc2626;
    font-weight: 700;
    font-size: 11px;
}

.rsv-feats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    margin-top: 12px;
    color: #374151;
    font-weight: 700;
    font-size: 12px;
}

.rsv-feat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.rsv-feat i {
    color: #2d3a58;
}

.rsv-room-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
}

.rsv-room-link {
    color: #2d3a58;
    font-weight: 700;
    font-size: 12px;
}

.rsv-room-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #2d3a58;
    background: #2d3a58;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
}

.rsv-room-btn:hover {
    background: #24314d;
    border-color: #24314d;
    color: #fff;
}

.rsv-side-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    padding: 14px;
    margin-bottom: 14px;
}

.rsv-side-card--picked {
    padding: 16px;
}

.rsv-side-title {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.rsv-picked {
    display: flex;
    gap: 12px;
    align-items: center;
}

.rsv-picked-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.rsv-picked-info {
    min-width: 0;
    flex: 1 1 0;
}

.rsv-picked-price {
    margin-top: 0px;
    font-weight: 700;
    color: #111827;
    font-size: 14px;
}

.rsv-picked-remove {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: #111827;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
    flex: 0 0 28px;
}

.rsv-picked-remove:hover {
    background: #f3f4f6;
}

.rsv-side-divider {
    margin: 12px 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.10);
}

.rsv-totalbox {
    text-align: right;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #f4f7fc;
}

.rsv-totalbox-label {
    color: #111827;
    font-weight: 700;
    font-size: 12px;
}

.rsv-totalbox-price {
    margin-top: 0px;
    color: #111827;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: .01em;
}

.rsv-totalbox-note {
    margin-top: 0px;
    color: #6b7280;
    font-weight: 700;
    font-size: 12px;
}

.rsv-picked-thumb {
    width: 56px;
    height: 44px;
    border-radius: 5px;
    overflow: hidden;
    background: #f6f6f6;
    flex: 0 0 56px;
}

.rsv-picked-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.rsv-picked-name {
    font-weight: 700;
    color: #111827;
    font-size: 12px;
    line-height: 1.25;
}

.rsv-picked-meta {
    margin-top: 0px;
    color: #6b7280;
    font-weight: 700;
    font-size: 12px;
}

.rsv-total {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.rsv-total-label {
    color: #6b7280;
    font-weight: 700;
    font-size: 12px;
}

.rsv-total-price {
    color: #111827;
    font-weight: 700;
    font-size: 16px;
}

.rsv-side-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #2d3a58;
    background: #2d3a58;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .04em;
    margin-top: 12px;
}

.rsv-side-btn--big {
    height: 52px;
    border-radius: 6px;
    font-size: 14px;
    letter-spacing: .02em;
}

.rsv-side-btn:hover {
    background: #24314d;
    border-color: #24314d;
    color: #fff;
}

.rsv-coupon-help {
    color: #111827;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 10px;
}

.rsv-coupon-group {
    display: flex;
    width: 100%;
}

.rsv-input--coupon {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.rsv-coupon-apply {
    height: 44px;
    padding: 0 16px;
    border-radius: 0 12px 12px 0;
    border: 1px solid #2d3a58;
    background: #2d3a58;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .02em;
}

.rsv-coupon-apply:hover {
    background: #24314d;
    border-color: #24314d;
    color: #fff;
}

.rsv-room-head {
    display: flex;
    gap: 22px;
    padding: 18px;
}

.rsv-room-pic {
    width: 300px;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    background: #f6f6f6;
    flex: 0 0 300px;
    display: block;
    position: relative;
}

.rsv-room-pic img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.rsv-room-info {
    min-width: 0;
    flex: 1 1 0;
}

.rsv-room-name {
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
    font-size: 20px;
}

.rsv-room-name span {
    color: #6b7280;
    font-weight: 700;
    font-size: 14px;
}

.rsv-room-beds {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    color: #6b7280;
    font-weight: 700;
    font-size: 12px;
}

.rsv-room-beds i {
    color: #2d3a58;
}

.rsv-room-amenities {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 16px;
}

.rsv-amenity {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    font-weight: 700;
    font-size: 12px;
    min-width: 0;
}

.rsv-amenity i {
    color: #2d3a58;
}

.rsv-room-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 12px 18px 18px;
    overflow: visible;
}

.rsv-results {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 0 10px;
}

.rsv-results i {
    color: #2d3a58;
}

.rsv-rate-list {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.rsv-rate-row {
    display: grid;
    grid-template-columns: 1fr 180px 500px;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.rsv-rate-row:first-child {
    border-top: 0;
}

.rsv-rate-left {
    min-width: 0;
}

.rsv-rate-name {
    font-weight: 700;
    color: #111827;
    font-size: 14px;
    line-height: 1.25;
}

.rsv-rate-name span {
    color: #6b7280;
    font-weight: 700;
    font-size: 12px;
}

.rsv-rate-cancel {
    margin-top: 6px;
    color: #dc2626;
    font-weight: 700;
    font-size: 12px;
}

.rsv-rate-mid {
    color: #dc2626;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    justify-self: center;
}

.rsv-rate-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-width: 0;
}

.rsv-rate-action {
    z-index: 0;
}

.rsv-rate-price {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    white-space: nowrap;
    overflow: visible;
}

.booking-total-people {
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
}

.booking-total-people .pagination {
    display: inline-flex;
    margin-top: 0;
    overflow: visible;
}

.booking-total-people .pagination__dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(45, 58, 88, 0.10);
    color: #2d3a58;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: help;
    overflow: visible;
}

.booking-total-people .pagination__dot i {
    font-size: 12px;
}

.booking-total-people .pagination__dot[data-tooltip]:hover {
    z-index: 60;
}

.booking-total-people .pagination__dot[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
    background: #111827;
    color: #fff;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    z-index: 50;
}

.booking-total-people .pagination__dot[data-tooltip]:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(100% + 3px);
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: #111827;
}

.rsv-rate-old {
    color: #dc2626;
    text-decoration: line-through;
    font-weight: 700;
    font-size: 12px;
}

.rsv-rate-new {
    color: #111827;
    font-weight: 700;
    font-size: 18px;
}

.rsv-rate-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
}

.rsv-disc {
    position: absolute;
    left: 12px;
    top: -12px;
    transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    background: #dc2626;
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    z-index: 2;
}

.rsv-pick-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 44px;
    border-radius: 5px;
    border: 1px solid #1f2f5e;
    background: #1f2f5e;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
}

.rsv-pick-btn:hover {
    background: #18254a;
    border-color: #18254a;
    color: #fff;
}

@media (max-width: 992px) {
    .rsv-filter-grid {
        grid-template-columns: 1fr;
    }

    .rsv-layout {
        flex-direction: column;
    }

    .rsv-side {
        position: static;
        max-width: 100%;
        width: 100%;
    }

    .rsv-room {
        flex-direction: column;
    }

    .rsv-room-media {
        width: 100%;
        height: 200px;
        flex: 0 0 auto;
    }

    .rsv-feats {
        grid-template-columns: 1fr;
    }

    .rsv-room-head {
        flex-direction: column;
    }

    .rsv-room-pic {
        width: 100%;
        height: 220px;
        flex: 0 0 auto;
    }

    .rsv-room-amenities {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 12px;
    }

    .rsv-amenity {
        font-size: 11px;
        gap: 8px;
    }

    .rsv-rate-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px 0;
    }

    .rsv-rate-mid {
        text-align: left;
        justify-self: start;
        font-size: 11px;
    }

    .rsv-rate-right {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 10px;
        width: 100%;
    }

    .rsv-rate-price {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        white-space: normal;
    }

    .booking-total-people {
        margin-left: 0;
    }

    .rsv-rate-action {
        display: block;
        width: 100%;
    }

    .rsv-disc {
        left: auto;
        right: 10px;
        top: -10px;
    }

    .rsv-pick-btn {
        width: 100%;
        height: 42px;
    }

    .rsv-rate-new {
        font-size: 16px;
    }

    .rsv-room-footer {
        padding: 12px 14px 16px;
    }
}

.rpay-page {
    text-align: left;
    position: relative;
    z-index: 2;
}

.rpay-layout {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.rpay-main {
    flex: 1 1 0;
    min-width: 0;
}

.rpay-side {
    flex: 0 0 340px;
    max-width: 340px;
    align-self: flex-start;
    height: fit-content;
    position: sticky;
    top: 110px;
}

.rpay-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    padding: 14px;
    margin-bottom: 14px;
}

.rpay-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.rpay-card-title {
    font-weight: 700;
    color: #111827;
    font-size: 13px;
}

.rpay-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: rgba(45, 58, 88, 0.10);
    color: #2d3a58;
    font-weight: 700;
    font-size: 12px;
    flex: 0 0 26px;
}

.rpay-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.rpay-label {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
}

.rpay-input,
.rpay-select,
.rpay-textarea {
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    padding: 0 12px;
    color: #111827;
    font-weight: 700;
    font-size: 13px;
    text-align: left;
    width: 100%;
}

.rpay-input,
.rpay-select {
    height: 44px;
}

.rpay-textarea {
    padding: 12px;
    min-height: 96px;
    resize: vertical;
}

.rpay-input:focus,
.rpay-select:focus,
.rpay-textarea:focus {
    outline: none;
    border-color: rgba(176, 120, 65, 0.75);
    box-shadow: 0 0 0 3px rgba(176, 120, 65, 0.15);
}

.rpay-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.rpay-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.rpay-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.rpay-help {
    margin-top: 10px;
    border-radius: 6px;
    border: 1px solid rgba(245, 158, 11, 0.35);
    background: rgba(245, 158, 11, 0.10);
    color: #92400e;
    padding: 10px 12px;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.6;
}

.rpay-addon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
}

.rpay-addon-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.rpay-addon-left i {
    color: #2d3a58;
}

.rpay-addon-title {
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
}

.rpay-addon-sub {
    margin-top: 4px;
    color: #6b7280;
    font-weight: 700;
    font-size: 12px;
}

.rpay-addon-right {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.rpay-addon-price {
    font-weight: 700;
    color: #111827;
    font-size: 12px;
}

.rpay-mini-btn {
    height: 34px;
    padding: 0 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #f3f4f6;
    color: #111827;
    font-weight: 700;
    font-size: 12px;
}

.rpay-mini-btn:hover {
    background: #e5e7eb;
}

.dropdown-select {
    position: relative;
    display: inline-block;
    width: 118px;
    min-width: 118px;
}

.dropdown-select .dropdown-toggle {
    width: 100%;
    height: 34px;
    padding: 0 34px 0 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #e5e7eb;
    color: #6b7280;
    font-weight: 700;
    font-size: 12px;
    text-align: left;
    position: relative;
}

.dropdown-select .dropdown-toggle:after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(107, 114, 128, 0.95);
    transform: translateY(-30%);
}

.dropdown-select.show .dropdown-toggle {
    background: #d1d5db;
}

.dropdown-select>.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    width: 100%;
    min-width: 118px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
    padding: 6px 0;
    z-index: 80;
    max-height: 260px;
    overflow: auto;
}

.dropdown-select.show>.dropdown-menu,
.dropdown-select>.dropdown-menu.show {
    display: block;
}

.dropdown-select>.dropdown-menu .inner {
    padding: 0;
}

.dropdown-select>.dropdown-menu .dropdown-menu.inner {
    position: static;
    display: block;
    width: 100%;
    min-width: 0;
    border: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.dropdown-select .dropdown-item {
    display: block;
    padding: 9px 12px;
    color: #111827;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
}

.dropdown-select .dropdown-item:hover {
    background: rgba(45, 58, 88, 0.08);
}

.dropdown-select li.selected .dropdown-item {
    background: #1f2f5e;
    color: #fff;
}

.rpay-page .iti {
    width: 100%;
}

.rpay-page .iti__country-list {
    z-index: 200;
}

.rpay-page .iti--allow-dropdown input,
.rpay-page .iti--separate-dial-code input {
    width: 100%;
}

.rpay-person {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 12px;
    margin-top: 12px;
}

.rpay-person:first-child {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}

.rpay-person-title {
    font-weight: 700;
    color: #111827;
    font-size: 12px;
    margin-bottom: 10px;
}

.rpay-pay-grid {
    display: grid;
    grid-template-columns: 1fr 415px;
    gap: 12px;
    align-items: start;
}

.rpay-card-preview {
    border-radius: 6px;
    background: #e5e7eb;
    height: 240px;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.rpay-card-flip {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    transition: transform .55s ease;
}

.rpay-card-preview.is-back .rpay-card-flip,
.rpay-card-preview[data-rpay-card].is-back .rpay-card-flip {
    transform: rotateY(180deg);
}

.rpay-card-face {
    position: absolute;
    inset: 0;
    border-radius: 6px;
    overflow: hidden;
    backface-visibility: hidden;
    background: #d7d7d7;
}

.rpay-card-face:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.00));
}

.rpay-card-front {
    transform: rotateY(0deg);
}

.rpay-card-back {
    transform: rotateY(180deg);
}

.rpay-card-chip {
    position: absolute;
    left: 38px;
    top: 38px;
    width: 44px;
    height: 34px;
    border-radius: 8px;
    background: rgba(17, 24, 39, 0.10);
    border: 1px solid rgba(17, 24, 39, 0.12);
    z-index: 1;
}

.rpay-card-number {
    position: absolute;
    left: 38px;
    right: 38px;
    top: 82px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: .14em;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rpay-card-name {
    position: absolute;
    left: 38px;
    bottom: 38px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .12em;
    text-transform: uppercase;
    z-index: 1;
    max-width: 70%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rpay-card-exp {
    position: absolute;
    right: 38px;
    bottom: 38px;
    text-align: right;
    z-index: 1;
}

.rpay-card-exp-label {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
    font-size: 9px;
    letter-spacing: .12em;
}

.rpay-card-exp-value {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .06em;
}

.rpay-card-stripe {
    position: absolute;
    left: 0;
    right: 0;
    top: 18px;
    height: 34px;
    background: rgba(17, 24, 39, 0.30);
    z-index: 1;
}

.rpay-card-cvv {
    position: absolute;
    right: 18px;
    top: 70px;
    width: 120px;
    text-align: right;
    z-index: 1;
}

.rpay-card-cvv-label {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
    font-size: 9px;
    letter-spacing: .12em;
}

.rpay-card-cvv-value {
    margin-top: 6px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.65);
    color: rgba(17, 24, 39, 0.55);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .22em;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10px;
    min-width: 88px;
}

.rpay-card-visual .bank-logos {
    display: block;
    margin: 12px auto 0;
    width: 100%;
    max-width: 100%;
    pointer-events: none;
}

.rpay-pay-note {
    margin-top: 10px;
    color: #6b7280;
    font-weight: 700;
    font-size: 12px;
}

.rpay-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 100%;
    border-radius: 6px;
    border: 1px solid #2d3a58;
    background: #2d3a58;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .04em;
}

.rpay-primary-btn:hover {
    background: #24314d;
    border-color: #24314d;
    color: #fff;
}

.rpay-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 100%;
    border-radius: 6px;
    border: 1px solid rgba(45, 58, 88, 0.35);
    background: #fff;
    color: #2d3a58;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .04em;
}

.rpay-outline-btn:hover {
    background: rgba(45, 58, 88, 0.08);
    border-color: rgba(45, 58, 88, 0.55);
    color: #2d3a58;
}

.rpay-sum-top {
    color: #6b7280;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.6;
}

.rpay-sum-room {
    margin-top: 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    padding: 12px;
}

.rpay-sum-name {
    font-weight: 700;
    color: #111827;
    font-size: 12px;
    line-height: 1.25;
}

.rpay-sum-meta {
    margin-top: 6px;
    color: #6b7280;
    font-weight: 700;
    font-size: 12px;
}

.rpay-sum-cancel {
    margin-top: 6px;
    color: #dc2626;
    font-weight: 700;
    font-size: 12px;
}

.rpay-sum-room-price {
    margin-top: 8px;
    color: #111827;
    font-weight: 700;
    font-size: 16px;
}

.rpay-sum-total {
    margin-top: 12px;
    padding: 14px 12px;
    border-radius: 6px;
    border: 1px dashed rgba(0, 0, 0, 0.12);
    background: rgba(45, 58, 88, 0.05);
    text-align: right;
}

.rpay-sum-total-label {
    color: #111827;
    font-weight: 700;
    font-size: 12px;
}

.rpay-sum-total-price {
    color: #111827;
    font-weight: 700;
    font-size: 24px;
    margin-top: 0px;
    letter-spacing: .01em;
}

.rpay-sum-total-note {
    margin-top: 0px;
    color: #6b7280;
    font-weight: 700;
    font-size: 12px;
}

.rpay-tax-note {
    margin-top: 10px;
    border-radius: 6px;
    border: 1px solid rgba(245, 158, 11, 0.35);
    background: rgba(245, 158, 11, 0.10);
    color: #92400e;
    padding: 10px 12px;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rpay-tax-ico {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: rgba(146, 64, 14, 0.12);
    border: 1px solid rgba(146, 64, 14, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
    flex: 0 0 20px;
}

@media (max-width: 768px) {
    .rpay-layout {
        flex-direction: column;
    }

    .rpay-side {
        position: static;
        max-width: 100%;
        width: 100%;
    }

    .rpay-grid-2,
    .rpay-grid-3,
    .rpay-grid-5 {
        grid-template-columns: 1fr;
    }

    .rpay-pay-grid {
        grid-template-columns: 1fr;
    }

    .rpay-card-preview {
        height: 120px;
    }
}

.team-social {
    position: absolute;
    top: 50%;
    height: 40px;
    left: 20px;
    right: 20px;
    opacity: 0;
    line-height: 40px;
    margin-top: -20px;
    z-index: 5;
    transition: all .3s ease-in-out;
    padding: 0 10px;
}

.ts_title {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    font-size: 1.1em;
    color: #fff;
    font-weight: 500;
    font-family: var(--secondary-font);
}

.team-photo:hover .team-social {
    opacity: 1;
}

.team-info:after {
    position: absolute;
    content: '\25CF\25CF\25CF\25CF\25CF';
    width: 50px;
    left: 50%;
    bottom: 15px;
    margin-left: -25px;
    font-size: 6px;
    letter-spacing: 8px;
    color: var(--main-color);
}

.team-social li {
    display: inline-block;
    margin: 0 10px;
}

.team-social li a {
    color: var(--main-color);
    font-size: 1.7em;
}

.team-dec {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 26px;
    color: #ADC7DD;
}

.image-collge-wrap {
    position: relative
}

.images-collage-item {
    overflow: hidden;
    height: auto;
    position: absolute;
    z-index: 1;
}

.main-iamge {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 4;
}

.image-collge-wrap:before,
.hero-image-collge-wrap:before {
    content: '';
    position: absolute;
    left: 150px;
    bottom: -50px;
    right: -50px;
    height: 250px;
    background: #f9f9f9;
    border: 1px solid #eee;
    z-index: 1;
    border-radius: 10px;
}

.about-img-hotifer {
    position: absolute;
    right: -40px;
    bottom: 20px;
    width: 380px;
    padding: 40px;
    z-index: 11;
    color: #fff;
    text-align: left;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.about-img-hotifer-wrap {
    position: relative;
    z-index: 4;
}

.about-img-hotifer-wrap:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f10e";
    bottom: -10px;
    right: 10px;
    position: absolute;
    font-size: 1.6em;
    font-weight: bold;
    color: var(--main-color);
}

.about-img-hotifer h4 {
    padding-bottom: 6px;
    font-size: 1.4em;
    color: var(--main-color);
}

.about-img-hotifer h5 {
    font-size: 1.2em;
}

.about-img-hotifer p {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 10px;
    text-align: left;
}

.video_link {
    position: absolute;
    left: 60px;
    bottom: 40px;
    z-index: 10;
    cursor: pointer;
}

.video_link i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #272535;
    box-shadow: 0px 0px 0px 10px rgba(255, 255, 255, 0.2);
    margin-right: 20px;
    font-size: 1.2em;
    color: var(--main-color);
    border-radius: 50%;
    box-sizing: border-box;
}

.video_link:hover i {
    background: var(--main-color);
    color: #272535;
}

.video_link span {
    font-weight: 500;
    font-family: var(--secondary-font);
    color: #fff;
}

.cards-wrap {
    margin: 50px 0 0;
    z-index: 2;
    position: relative;
}

.content-inner {
    width: 100%;
    color: #fff;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    backface-visibility: hidden;
    transition: .9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.content-inner>* {
    backface-visibility: hidden;
    transition: .9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.content-inner:hover .content-front {
    transform: rotateY(-180deg);
}

.content-inner:hover .content-back {
    transform: rotateY(0deg);
}

.content-inner .content-front,
.content-inner .content-back {
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    backface-visibility: hidden;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 10px 34px 0px rgba(0, 0, 0, .2);
}

.content-front {
    background: #272535;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
}

.content-inner .content-back {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transform: rotateY(180deg);
    background: #272535;
    border-radius: 10px;
}

.content-inner .cf-inner {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    width: 100%;
    padding: 130px 40px;
    border-radius: 10px;
}

.content-inner .cf-inner .fs-wrapper {
    border-radius: 10px;
}

.content-inner .cf-inner .inner {
    align-items: stretch;
    transform-style: preserve-3d;
    perspective: 1000px;
    backface-visibility: hidden;
    transform: translateZ(95px) scale(0.81);
    text-align: center;
    position: relative;
    z-index: 2;
}

.content-back i {
    font-size: 54px;
    position: relative;
    color: var(--main-color);
}

.dec-icon {
    position: relative;
    display: inline-table;
    width: 80px;
    height: 80px;
}

.dec-icon:before,
.dec-icon:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.dec-icon:before {
    left: -15px;
    top: 12px;
}

.dec-icon:after {
    right: -15px;
    bottom: 12px;
}

.dec-icon i {
    z-index: 3;
}

.content-back .dec-icon {
    top: -20px;
}

.content-inner .cf-inner .inner p {
    color: #fff;
    text-align: center;
}

.content-back:after {
    position: absolute;
    content: '\25CF\25CF\25CF';
    width: 50px;
    left: 50%;
    bottom: 30px;
    margin-left: -25px;
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--main-color);
}

.serv-num {
    position: absolute;
    bottom: 40px;
    left: 50%;
    color: #fff;
    color: var(--main-color);
    z-index: 3;
    transform: translateX(-50%);
    font-size: 1.8em;
}

.content-inner .cf-inner .inner h2 {
    position: relative;
    font-size: 2.6em;
    font-weight: 500;
    padding-bottom: 10px;
}

.content-inner .cf-inner .inner h2:after {
    content: '';
    position: absolute;
    top: -20px;
    margin-left: -25px;
    left: 50%;
    width: 50px;
    height: 1px;
    background: var(--main-color);
}

.content-inner .content-front h4 {
    display: inline-block;
    color: #fff;
    font-weight: 500;
    margin: 0 4px;
    font-family: var(--secondary-font);
}

.content-inner .cf-inner .inner h2:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 20px;
    height: 2px;
    margin-left: -10px;
}

.single-slider-wrap img {
    width: 100%;
    height: auto;
}

.content-inner .content-front .section-separator:before,
.content-inner .content-front .section-separator:after {
    background: rgba(255, 255, 255, .3);
}

.wide-section {
    z-index: 4
}

.wide-section:before {
    content: '';
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    background: #f9f9f9;
    bottom: 0;
    z-index: 3;
}

.wide-section:after {
    content: '';
    position: absolute;
    top: calc(30% + 20px);
    left: 20px;
    bottom: 20px;
    right: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fff;
    z-index: 4;
}

.wide_section-title {
    margin: 40px 0 90px;
}

.wide_section-title h3 {
    font-size: 3.5em;
    color: #fff;
}

.wide_section-title h5 {
    text-align: center;
    color: var(--main-color);
    font-size: 1.3em;
    padding-bottom: 20px;
    position: relative;
}

.boxed-container {
    position: relative;
    background: #fff;
    box-shadow: 0px 10px 64px 0px rgba(0, 0, 0, .1);
    z-index: 20;
    overflow: hidden;
    border-radius: 20px;
    margin: 50px 0;
}

.boxed-container-title_item {
    position: relative;
    z-index: 10;
    padding: 15px 15px 0;
}

.boxed-container-title {
    float: left;
    width: 50%;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.boxed-container-title h2 {
    text-align: left;
    font-size: 2.2em;
    color: #666;
    padding-bottom: 20px;
    position: relative;
}

.boxed-container-title p {
    color: #292929;
    text-align: justify;
}

.boxed-container-title h4 {
    text-align: left;
    font-weight: 600;
    font-size: 1.2em;
    padding-bottom: 10px;
    color: var(--main-color);
}

.clients-carousel-wrap {
    position: relative;
    overflow: hidden;
    padding: 0 20px;
    top: 30px;
}

.client-item img {
    width: 100%;
    aspect-ratio: 4/2;
    object-fit: contain;
    opacity: .7;
    transform: scale(1.3);
    transition: all .3s ease-in-out;
}

.client-item img:hover {
    opacity: 1;
}

.bic_dec {
    position: absolute;
    right: 30px;
    bottom: -10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 90px;
}

.boxed-container-wrap {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
    width: 50%;
}

.boxed-container-wrap:before,
.column-wrap-bg:before {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    top: 30px;
    border: 1px dashed rgba(255, 255, 255, .4);
    background: rgba(39, 37, 53, .5);
    z-index: 10;
    border-radius: 10px;
}

.column-wrap-bg:before {
    left: 15px;
}

.cc-btn {
    position: absolute;
    z-index: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    cursor: pointer;
    color: var(--main-color);
}

.cc-next {
    right: 0;
}

.cc-prev {
    left: 0;
}

.aminites-cards-wrap {
    margin-top: 30px;
    position: relative;
}

.aminites-card-item {
    position: relative;
    padding: 40px 30px 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin: 15px 0;
    transition: all .3s ease-in-out;
    background: #fff;
}

.aminites-card-item:hover {
    box-shadow: 0px 10px 14px 0px rgba(0, 0, 0, .05);
}

.aminites-card-item i {
    text-align: left;
    display: block;
    color: var(--main-color);
    font-size: 3.0em;
    margin-bottom: 40px;
}

.aminites-card-item .tbc-separator {
    margin-top: 10px;
}

.aminites-card-item h4 {
    font-size: 19px;
    text-align: left;
    margin-bottom: 10px;
    color: #666;
    font-weight: 500;
}

.aci_num {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.4em;
    color: var(--main-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #f9f9f9;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
    border-radius: 0 0 0 10px;
}

.column-wrap-bg {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.column-wrap-bg-text {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    padding: 0 30px;
    z-index: 10;
}

.events-calendar-wrap {
    top: 50%;
    transform: translateY(-50%);
}

.events-calendar {
    max-width: 520px;
    margin: 0 auto;
    padding: 18px;
    border-radius: 14px;
    background: rgba(39, 37, 53, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(8px);
}

.events-calendar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.events-calendar-title {
    font-family: var(--secondary-font);
    font-weight: 700;
    letter-spacing: 0.7px;
    color: #fff;
    font-size: 12px;
}

.events-calendar-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.events-cal-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease-in-out;
}

.events-cal-btn:hover {
    background: var(--main-color);
    border-color: rgba(0, 0, 0, 0.10);
    color: #272535;
}

.events-cal-month {
    min-width: 140px;
    text-align: center;
    font-family: var(--secondary-font);
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--main-color);
    font-size: 12px;
}

.events-cal-weekdays {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.events-cal-weekdays span {
    text-align: center;
    font-size: 11px;
    font-family: var(--secondary-font);
    color: rgba(255, 255, 255, 0.70);
    letter-spacing: 0.4px;
}

.events-cal-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.events-cal-day {
    position: relative;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--secondary-font);
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease-in-out;
    user-select: none;
}

.events-cal-day.is-outside {
    opacity: 0.45;
}

.events-cal-day:hover {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.07);
}

.events-cal-day.has-event:after {
    content: '';
    position: absolute;
    bottom: 7px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    border-radius: 50%;
    background: var(--main-color);
    box-shadow: 0 0 0 6px rgba(210, 172, 107, 0.18);
}

.events-cal-day.is-selected {
    background: rgba(210, 172, 107, 0.22);
    border-color: rgba(210, 172, 107, 0.42);
}

.events-cal-list {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255, 255, 255, 0.18);
}

.events-cal-item {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--secondary-font);
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    transition: all .2s ease-in-out;
}

.events-cal-item+.events-cal-item {
    margin-top: 8px;
}

.events-cal-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.20);
}

.events-cal-item span {
    display: block;
    margin-top: 4px;
    font-family: var(--main-font);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
}

.events-cal-empty {
    color: rgba(255, 255, 255, 0.70);
    font-family: var(--secondary-font);
    font-size: 12px;
    padding: 6px 2px;
}

@media only screen and (max-width: 1068px) {
    .events-calendar-wrap {
        top: auto;
        transform: none;
    }

    .events-calendar {
        max-width: 680px;
    }
}

@media only screen and (max-width: 768px) {
    .events-calendar {
        padding: 14px;
    }

    .events-cal-day {
        height: 38px;
        border-radius: 10px;
    }

    .events-cal-month {
        min-width: 120px;
    }
}

.column-wrap-bg-text h3 {
    font-size: 3.5em;
    color: var(--main-color);
    font-weight: 600;
    position: relative;
}

.column-wrap-bg-text h3:after {
    position: absolute;
    content: '\25CF\25CF\25CF\25CF\25CF';
    width: 50px;
    left: 50%;
    top: -20px;
    margin-left: -25px;
    font-size: 6px;
    letter-spacing: 8px;
    color: #fff;
}

.column-wrap-bg-text h4 {
    font-size: 1.8em;
    font-style: italic;
    letter-spacing: 1px;
    padding: 10px 20px;
    color: #fff;
}

.hero-rsto-link {
    display: inline-block;
    color: #fff;
    position: relative;
    font-family: var(--secondary-font);
    font-weight: 600;
    margin-top: 40px;
    transition: all .3s ease-in-out;
}

.hero-rsto-link:hover {
    color: var(--main-color);
}

.hero-rsto-link:hover:before {
    width: 20px;
    margin-left: -10px;
}

.hero-rsto-link:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 40px;
    height: 1px;
    margin-left: -20px;
    transition: all .3s ease-in-out;
    background: var(--main-color);
}

.column-wrap-bg.left-wrap {
    left: 0;
}

.column-wrap-bg.right-wrap {
    right: 0;
}

.column-section-wrap {
    float: right;
    width: 50%;
    position: relative;
    padding: 120px 50px;
}

.column-section-wrap.left-column-section {
    float: left;
}

.column-text {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.rooms-carousel-item,
.rooms-carousel-wrap,
.rooms-carousel {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.rooms-carousel-item {
    border-radius: 10px;
}

.rooms-carousel-wrap {
    height: 55vh;
    padding: 15px 15px 15px 0;
}

.bg-parallax-wrap-gradien:before,
.rooms-carousel-item_container {
    opacity: 0;
    transition: all .3s ease-in-out;
}

.rooms-carousel-wrap .swiper-slide-active .bg-parallax-wrap-gradien:before,
.rooms-carousel-wrap .swiper-slide-next .bg-parallax-wrap-gradien:before {
    opacity: .9;
    transition-delay: .3s
}

.rooms-carousel-wrap .swiper-slide:hover .bg-parallax-wrap-gradien:before {
    opacity: .9;
    transition-delay: 0s;
}

.rooms-carousel-wrap .swiper-slide-next .bg-parallax-wrap-gradien:before {
    transition-delay: .4s
}

.rooms-carousel-item_container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 30px 40px;
    margin-bottom: 20px;
}

.rooms-carousel-wrap .swiper-slide-active .rooms-carousel-item_container,
.rooms-carousel-wrap .swiper-slide-next .rooms-carousel-item_container {
    margin-bottom: 0;
    opacity: 1;
    transition-delay: .3s
}

.rooms-carousel-wrap .swiper-slide:hover .rooms-carousel-item_container {
    margin-bottom: 0;
    opacity: 1;
    transition-delay: 0s;
}

.rooms-carousel-item_container h3 a {
    color: #fff;
}

.rooms-carousel-item_container h3 {
    text-align: left;
    font-size: 22px;
    position: relative;
    padding-bottom: 10px;
    font-weight: bold;
}

.rooms-carousel-item_container p {
    color: rgba(255, 255, 255, .7);
}

.rooms-carousel-item_container .room-card-details {
    border-bottom: none;
    border-color: rgba(255, 255, 255, .1);
    padding: 20px 0 0;
    margin: 10px 0 0;
    position: relative;
}

.rooms-carousel-item_container .room-card-details li {
    color: #fff;
}

.rooms-carousel-item_container .room-card-details .grid-item_price {
    position: absolute;
    top: 15px;
    right: 0;
    margin: 0;
}

.stg_link {
    position: relative;
    display: inline-block;
    margin-top: 40px;
    margin-bottom: 40px;
    border: 1px solid var(--main-color);
    padding: 15px 40px;
    border-radius: 4px;
    font-family: var(--secondary-font);
    font-weight: 600;
    color: var(--main-color);
    background: rgba(255, 255, 255, .05);
    transition: all .3s ease-in-out;
}

.stg_link:hover {
    background: var(--main-color);
    color: #272535;
}

.stg_link:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    bottom: -10px;
    right: -10px;
    border-radius: 4px;
    border: 1px dotted rgba(255, 255, 255, .2);
    transition: all .3s ease-in-out;
}

.rooms-carousel-item .like-btn {
    bottom: auto;
    top: 30px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: all .3s ease-in-out;
}

.rooms-carousel-wrap .swiper-slide-active .rooms-carousel-item .like-btn,
.rooms-carousel-wrap .swiper-slide-next .rooms-carousel-item .like-btn {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition-delay: .3s
}

.rooms-carousel-wrap .swiper-slide:hover .rooms-carousel-item .like-btn {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition-delay: 0s;
}

/* Homepage room card refinements */
.rooms-carousel-wrap .swiper-slide-active .rooms-carousel-item_container,
.rooms-carousel-wrap .swiper-slide-next .rooms-carousel-item_container,
.rooms-carousel-wrap .swiper-slide:hover .rooms-carousel-item_container {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.58) 58%, transparent 100%);
    padding-top: 28px;
    padding-bottom: 34px;
}

.rooms-carousel-item_container p,
.rooms-carousel-item_container .room-card-details li span {
    color: #fff;
}

.room-price-wrapper {
    margin-top: 14px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.room-price {
    color: #f2c14e;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.room-price-night {
    color: rgba(242, 193, 78, 0.82);
    font-size: 13px;
    font-weight: 600;
}

.rooms-carousel-item .like-btn,
.rooms-carousel-item .like-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rooms-carousel-item .like-btn:hover i,
.rooms-carousel-item .like-btn:hover a {
    color: #fff;
}

.blog-menu-carousel .rc-controls-wrap {
    right: 5px;
}

.rc-controls-wrap {
    position: absolute;
    top: 50%;
    right: 40px;
    z-index: 10;
}

.rc-button {
    float: left;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin-top: -25px;
    border-radius: 50%;
    transition: all .3s ease;
    background: #272535;
    z-index: 50;
    cursor: pointer;
    color: var(--main-color);
    box-shadow: 0px 0px 0px 6px rgba(255, 255, 255, .4);
    margin-left: 20px;
}

.events-carousel-wrap {
    margin-top: 30px;
    padding: 10px 0 0;
}

.events-carousel-wrap .swiper-slide {
    padding: 0 6px;
    height: auto;
}


.ec-button {
    display: none;
}

.event-carousel-item {
    position: relative;
    padding: 22px 22px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.20);
}

.event-carousel-item:before {
    display: none;
}

.column-wrap-bg.right-wrap {
    width: 33.3333%;
}

.right-wrap.column-wrap-bg:before {
    top: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
}

.column-wrap-bg-text.events-calendar-wrap {
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.events-calendar {
    max-width: 100%;
    padding: 20px 30px;
}

.events-calendar-title {
    font-size: 14px;
}

.events-cal-btn {
    width: 36px;
    height: 36px;
}

.events-cal-month {
    font-size: 14px;
    min-width: 140px;
}

.events-cal-weekdays {
    margin-top: 15px;
    gap: 6px;
}

.events-cal-weekdays span {
    font-size: 12px;
}

.events-cal-grid {
    margin-top: 12px;
    gap: 6px;
}

.events-cal-list {
    margin-top: 16px;
}

.hidden-events {
    display: none;
}

.column-section-wrap.left-column-section {
    width: 66.6667%;
    padding: 80px 40px;
}

.column-text {
    max-width: 100%;
}

.events-carousel-wrap .swiper-slide {
    display: flex;
    height: 100%;
}

.modern-news-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.news-card-image {
    position: relative;
    overflow: hidden;
    height: 180px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-card-image-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgba(255, 255, 255, 0.3);
}

.news-card-image-empty i {
    font-size: 48px;
}

.news-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-news-card:hover .news-card-overlay {
    opacity: 1;
}

.news-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 180px;
}

.news-card-date {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.news-card-title {
    margin: 0 0 auto 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-title a {
    color: #1f2a44;
    text-decoration: none;
    transition: color 0.3s ease;
}

.modern-news-card .news-card-title a {
    color: #fff;
}

.modern-news-card:hover .news-card-title a {
    color: #fff;
}

.news-card-footer {
    margin-top: 16px;
    flex-shrink: 0;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tp-accent-color);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.modern-news-card .news-card-footer {
    display: flex;
    justify-content: flex-start;
    margin-top: 14px;
}

/* Dark Background Overrides for Events */
.dark-bg .modern-news-card .news-card-date {
    color: #bbb !important;
}

.dark-bg .modern-news-card .news-card-title {
    color: #fff !important;
}

.dark-bg .modern-news-card .news-card-title a {
    color: #fff !important;
}

.dark-bg .modern-news-card .news-card-title a:hover {
    color: var(--main-color) !important;
}

.dark-bg .modern-news-card .news-card-summary {
    color: #ddd !important;
}

.dark-bg .modern-news-card .news-card-link {
    color: var(--main-color) !important;
}

.dark-bg .modern-news-card .news-card-link:hover {
    color: #fff !important;
    gap: 12px;
}

.modern-news-card .news-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    width: auto;
    height: auto;
    padding: 0 0 8px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    gap: 7px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1;
    text-transform: uppercase;
    opacity: 1;
    text-decoration: none;
    position: relative;
    transition: color .25s ease, gap .25s ease;
}

.modern-news-card .news-card-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 1px;
    background: #fff;
    transition: width .25s ease, background-color .25s ease;
}

.modern-news-card .news-card-link i {
    width: auto;
    height: auto;
    color: inherit;
    font-size: 11px;
    transition: transform .3s ease, color .3s ease;
}

.modern-news-card:hover .news-card-link {
    gap: 9px;
    color: #fff;
}

.modern-news-card:hover .news-card-link::after {
    width: 48px;
    background: color-mix(in srgb, var(--tp-accent-color) 72%, transparent);
}

.modern-news-card:hover .news-card-link i {
    transform: translateX(1px);
}

.event-carousel-item p {
    text-align: left;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 22px;
    padding-bottom: 0;
}

.event-date {
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--secondary-font);
    padding: 0;
    display: inline-flex;
    align-items: center;
    height: 28px;
    line-height: 28px;
    border-radius: 999px;
    padding: 0 12px;
    background: rgba(39, 37, 53, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    letter-spacing: 0.6px;
    font-size: 11px;
    margin-bottom: 12px;
}

.event-carousel-item h4 {
    font-size: 1.2em;
    padding-bottom: 10px;
    line-height: 1.35;
}

.event-carousel-item h4 a {
    color: var(--main-color);
    transition: color .2s ease-in-out;
}

.event-carousel-item h4 a:hover {
    color: #fff;
}

.ec-button {
    position: absolute;
    top: 50%;
    margin-top: -21px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    z-index: 20;
    cursor: pointer;
    font-size: 1.2em;
    color: var(--main-color);
    background: rgba(39, 37, 53, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease-in-out;
}

.ec-button:hover {
    background: var(--main-color);
    color: #272535;
    border-color: rgba(0, 0, 0, 0.10);
}

.ec-button-prev {
    left: -8px
}

.ec-button-next {
    right: -8px;
}

.single-dec_img {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    z-index: 10;
}

.hero-image-collge-wrap {
    position: relative;
    padding-left: 50px;
}

.hero_images-collage-item {
    position: absolute;
    height: auto;
    border-radius: 10px;
}

.hero_images-collage-item:before {
    content: '';
    position: absolute;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border-radius: 10px;
    border: 1px dotted #ccc;
    z-index: 1;
}

.hero_images-collage-item img {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    box-shadow: 0px 30px 64px 0px rgba(0, 0, 0, .4);
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: rgba(85, 85, 85, 0.14)
}

::-webkit-scrollbar {
    width: 4px;
    background-color: #f5f5f5;
    border-radius: 50px
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(85, 85, 85, 0.5)
}

/*------ responsive----*/
@media only screen and (max-width: 1600px) {
    .content-dec2:before {
        display: none
    }

    .rooms-carousel-item_container .room-card-details .grid-item_price {
        position: relative;
        top: 0;
        margin: 25px 0 0 0;
    }

    .recent-post-img {
        padding: 0;
        border-right: none;
    }

    .recent-post-content {
        padding: 20px 0 20px 20px;
    }

    .content-dec2,
    .dec-container,
    .content-dec span {
        background: #fff;
    }

    .fw-gi2-column .gallery-item .grid-item-details,
    .fw-gi .gallery-item .grid-item-details,
    .recent-post-img,
    .rooms-carousel-item_container .room-card-details .grid-item_price,
    .recent-post-content,
    .fw-gi2-column .grid-item-holder,
    .fw-gi .gallery-item .grid-item-holder {
        width: 100%;
    }

    .fw-gi .gallery-item .grid-item-holder,
    .fw-gi2-column .grid-item-holder {
        border-radius: 10px 10px 0 0;
    }

    .fw-gi .gallery-item .grid-item-details,
    .fw-gi2-column .gallery-item .grid-item-details {
        border-left: 1px solid #eee;
        border-radius: 0 0 10px 10px;
    }
}

@media only screen and (max-width: 1268px) {

    .dc_dec-item_left,
    .dc_dec-item_right {
        display: none;
    }

    .two-column .gallery-item {
        width: 100%;
    }
}

@media only screen and (max-width: 1068px) {
    .main-header .container {
        float: left;
        width: 100%;
        --bs-gutter-x: 0;
    }

    .header-top {
        position: relative;
        z-index: 40;
        height: 80px;
        background: transparent;
        border-radius: 0;
    }

    .header-social {
        padding-left: 20px;
    }

    .header-top_contacts:after {
        background: rgba(255, 255, 255, 0.18);
        top: 15px;
    }

    .lang-wrap a,
    .lang-wrap span,
    .header-social li a:hover,
    .header-top_contacts a {
        color: rgba(255, 255, 255, 0.92);
    }

    .header-reserv-wrap {
        height: 80px;
        line-height: 80px;
        margin-right: 0px;
    }

    .header-reserv-btn {
        height: 40px;
        line-height: 40px;
        padding: 0 16px;
        font-size: 11px;
    }

    .nav-holder-wrap {
        border-right: none;
        border-left: none;
    }

    .nav-holder-wrap .logo-holder {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        float: left;
        width: auto;
        height: 80px;
        padding: 0 15px;
        background: transparent;
        border-radius: 0;
        border: none;
        box-shadow: none;
        display: block;
    }

    .nav-holder-wrap .logo-holder img {
        float: left;
        height: 40px;
    }

    .header-top_contacts {
        font-weight: 600;
    }

    .lang-wrap,
    .header-top_contacts,
    .header-social li a {
        line-height: 80px;
    }

    .nav-button-wrap {
        float: right;
        height: 80px;
        width: 80px;
        cursor: pointer;
        position: relative;
        display: block;
        border-left: none;
        left: 0;
        z-index: 60;
    }

    .nav-button {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 22px;
        height: 20px;
        margin-left: -11px;
        margin-top: -6px;
    }

    .nav-button span {
        float: left;
        width: 100%;
        height: 2px;
        background: rgba(255, 255, 255, 0.92);
        margin-bottom: 4px;
        border-radius: 4px;
        transition: all 200ms linear;
    }

    .nav-button span:first-child {
        width: 50%;
    }

    .main-menu nav ul {
        display: none;
    }

    .main-menu {
        position: absolute;
        top: 80px;
        right: -20px;
        width: 300px;
        z-index: 50;
        padding: 15px 10px;
        background: #272535;
        visibility: hidden;
        opacity: 0;
        border-radius: 0 0 10px 10px;
        transition: all .4s ease-in-out;
    }

    .vismobmenu {
        opacity: 1;
        right: 0;
        visibility: visible;
    }

    .menusb {
        display: block;
        float: left;
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .main-menu .menusb ul {
        display: block;
        float: left;
        position: relative;
        width: 100%;
    }

    .menusb li {
        margin: 0;
        float: left;
        width: 100%;
        position: relative;
        overflow: hidden;
        padding: 0 20px;
    }

    .menusb li i {
        position: absolute;
        right: 18px;
        top: 12px;
    }

    .menusb li i:before {
        content: "\f0da"
    }

    .menusb a {
        float: left;
        width: 100%;
        padding: 8px 5px;
        position: relative;
        font-weight: 600;
        font-family: var(--secondary-font);
        color: #fff;
        line-height: 20px;
        text-align: left;
    }

    .menusb a.back {
        padding-left: 24px;
    }

    .menusb a.back:before {
        font-family: "Font Awesome 6 Pro";
        content: "\f177";
        font-size: 14px;
    }

    .menusb a.act-link,
    .menusb a.back:before,
    .menusb li i {
        color: var(--main-color);
    }

    .column-wrap-bg,
    .column-wrap-bg-text,
    .column-wrap-bg.right-wrap,
    .column-section-wrap,
    .column-section-wrap.left-column-section {
        width: 100% !important;
        position: relative;
        float: left;
        padding: 60px 15px;
    }

    .column-wrap-bg-text.events-calendar-wrap {
        top: 0 !important;
        transform: none !important;
    }

    .events-calendar-wrap {
        top: 0;
        transform: none;
    }

    .events-calendar {
        max-width: 100% !important;
        padding: 14px !important;
    }

    .column-section-wrap.left-column-section {
        padding: 60px 15px;
    }

    .modern-news-card {
        height: auto;
    }

    .news-card-content {
        padding: 16px;
        min-height: auto;
    }

    .news-card-title {
        font-size: 14px;
    }

    .column-text {
        max-width: 100%;
    }

    .content-section.dark-bg.no-padding.hidden-section {
        padding: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .height-emulator,
    .booking-reviews,
    .hs_btn_wrap_preview,
    .hs_btn-dec,
    .hs_btn-dec:before,
    .hero_images-collage-item,
    .image-collge-wrap:before,
    .hero-image-collge-wrap:before,
    .section-dec,
    .st-gallery .footer-separator,
    .fwc_pag2,
    .dec-container:before,
    .hero-call-wrap,
    .slide-progress_container,
    .hero-menu-item-img:before,
    .header-tooltip,
    .sc-dec,
    .sc-dec2,
    .sc-dec3,
    .sc-dec4,
    .footer-logo {
        display: none
    }

    .main-footer {
        position: relative;
    }

    .footer-widget-wrap {
        padding: 40px 0 40px;

    }

    .footer-separator-wrap {
        margin: 30px auto 30px;
    }

    .footer-widget-title {
        padding-bottom: 16px;
    }

    .footer-widget {
        margin-bottom: 30px;
    }

    .lang-wrap {
        margin-right: 0;
        padding-right: 10px;
    }

    .hero-wrap {
        height: calc(100% - 160px);
        margin-top: 160px;
    }

    .hs_btn {
        top: 100%;
        margin-top: -70px;
    }

    .hs_btn,
    .hs_btn i {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .text-block {
        overflow: hidden;
    }

    .hero-image-collge-wrap {
        margin-top: 30px;
        padding-left: 0;
    }

    .content-section {
        padding: 30px 0;
    }

    .st-gallery {
        position: relative;
        width: 100%;
        padding: 70px 0 0 0;
    }

    .st-gallery .section-title {
        transform: translateY(0);
        top: 0;
    }

    .rooms-carousel-wrap {
        height: 70vh;
        padding: 15px 15px 70px;
        overflow: inherit;
    }

    .rooms-carousel-item_container {
        padding: 0 20px 10px;
    }

    .content-inner {
        margin-bottom: 20px;
    }

    .boxed-container {
        margin: 0 0 50px;
    }

    .boxed-container-title,
    .column-section-wrap {
        width: 100%;
    }

    .boxed-container-wrap {
        float: left;
        position: relative;
        padding: 70px 0;
        width: 100%;
    }

    .boxed-container-wrap .promo-video {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        transform: translateY(-0);
    }

    .dec-container {
        padding: 10px;
    }

    .client-item img {
        aspect-ratio: 4 / 2;
        transform: scale(1.0);
    }

    .wide-section:after {
        left: 15px;
        bottom: 15px;
        right: 15px;
    }

    .wide_section-title {
        margin: 40px 0 20px;
    }

    .dark-bg .section-title h2,
    .column-wrap-bg-text h3,
    .st-gallery .section-title h2 {
        font-size: clamp(24px, 5.5vw, 36px);
        word-wrap: break-word;
        hyphens: auto;
        padding: 0 10px;
    }

    .content-section.parallax-section.hero-section .htc_single .section-title h2 {
        font-size: 4.0em;
        padding: 20px 0 10px;
        line-height: 56px;
    }

    .hero-title-container .section-title h2 {
        font-size: 4.7em;
    }

    .fw-search-wrap_hero .input-wrap,
    .fw-search-wrap_hero .quantity,
    .fw-search-wrap .input-wrap,
    .fw-search-wrap .quantity {
        margin-bottom: 10px;
    }

    .rc-controls-wrap {
        position: relative;
        top: 0;
        right: 0;
        margin: 25px 0;
    }

    .rc-button {
        display: inline-block;
        float: none;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    .content-section.parallax-section.hero-section.htc_single_item {
        padding: 220px 0 70px;
    }

    .image-collge-wrap {
        margin-top: 20px;
    }

    .about-img-hotifer {
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
        margin-top: 20px;
    }

    .inline-facts {
        width: 50%;
    }

    .post-item {
        width: 100%;
        padding: 0 0 30px 0;
    }

    .pagination {
        margin: 20px 0;
    }

    .blog-media {
        margin-bottom: 0;
    }

    .map-container {
        margin-top: 20px;
        min-height: 280px;
    }

    .map-container .fs-wrapper,
    .map-container iframe,
    .map-container #singleMap {
        width: 100%;
        height: 100%;
        min-height: 280px;
    }

    .scrollContorl {
        right: 14px;
        bottom: 14px;
    }

    .hero-menu-wrap .hero-menu-item:nth-child(odd),
    .hero-menu-wrap .hero-menu-item:nth-child(even) {
        width: 100%;
        padding: 20px 0 20px 80px;
    }

    .hero-menu-wrap .hero-menu-item:last-child {
        border-bottom: none;
    }

    .hero-menu-item-img {
        left: 10px;
        margin-top: 0;
        top: 20px;
    }

    .hero-menu-item-img img,
    .hero-menu-item-img,
    .hero-menu-item-img:after {
        width: 60px;
        height: 60px;
    }

    .hero-menu-item-img:after {
        line-height: 60px;
    }

    .hero-menu-item-details {
        padding-right: 10px;
    }

    .gallery-item,
    .grid-sizer,
    .two-column .gallery-item {
        width: 50%;
    }

    .logo-holder {
        padding: 0 10px;
    }

    .single-carousle-container {
        padding: 0;
        margin-bottom: 10px;
    }

    .tb-sin {
        padding-right: 0;
    }

    .footer-bottom {
        height: auto;
        line-height: 30px;
        text-align: center;
        padding: 30px 0;
    }

    .to-top,
    .copyright {
        float: none;
        display: inline-block;
        width: 100%;

    }
}

@media only screen and (max-width: 900px) {

    .serach-header-btn span,
    .slider-button:before {
        display: none;
    }

    .serach-header-btn {
        padding: 0;
        width: 60px;
        background: #fff;
        top: 0;
    }

    .serach-header-btn:hover,
    .show-cart:hover,
    .show-share-btn:hover {
        background: none;
    }

    .serach-header-btn i {
        margin: 0;
        font-size: 1.2em;
        color: #666;
        font-weight: 500;
    }

    .fw-aminit-wrap {
        height: auto;
    }

    .fw-aminit-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .2);
        padding: 90px 0;
    }

    .fw-aminit-item-container {
        top: 0;
        transform: translateY(0);
    }

    .aminit-work-time {
        position: relative;
        left: 0;
        bottom: 0;
        transform: translateX(0);
        opacity: 1;
        margin: 30px 0 0;
        display: inline-block;
    }
}

@media only screen and (max-width: 768px) {

    .header-top_contacts,
    .comments-avatar,
    .hero-menu_header li:after,
    .hero-menu_header li:before {
        display: none
    }

    .main-header {
        position: relative;
    }

    .content-section.parallax-section.hero-section .slideshow-container_wrap .bg {
        top: 0;
        bottom: 0;
        height: 100%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center top;
    }

    .content-section.parallax-section.hero-section .slideshow-container_wrap .hero-video-bg {
        background: #000;
    }

    .content-section.parallax-section.hero-section .slideshow-container_wrap .hero-slide-video {
        object-fit: contain;
        object-position: center top;
    }

    .header-top {
        height: 44px;
        line-height: 44px;
        background: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 14px;
    }

    .header-social {
        float: none;
        padding-left: 0;
    }

    .rooms-carousel-wrap {
        height: 46vh;
    }

    .rooms-carousel-item_container {
        padding: 0 18px 24px;
    }

    .rooms-carousel-wrap .swiper-slide-active .rooms-carousel-item_container,
    .rooms-carousel-wrap .swiper-slide-next .rooms-carousel-item_container,
    .rooms-carousel-wrap .swiper-slide:hover .rooms-carousel-item_container {
        padding-top: 18px;
        padding-bottom: 24px;
    }

    .header-social li {
        margin-right: 14px;
    }

    .header-social li a {
        line-height: 44px;
        color: var(--main-color);
    }

    .lang-wrap {
        float: none;
        margin: 0;
        padding: 0;
        height: 44px;
        line-height: 44px;
        color: #272535;
        font-size: 1.2em;
    }

    .lang-wrap:before {
        display: none;
    }

    .lang-wrap a,
    .lang-wrap span {
        color: #272535;
    }

    .lang-wrap a:hover,
    .lang-wrap a.act-lang {
        color: var(--main-color);
    }

    .tp-header-mobile-topbar-select {
        float: none;
        margin: 0;
        padding: 0;
        height: 44px;
        display: flex;
        align-items: center;
    }

    .topbar-dropdown {
        min-width: 0;
    }

    .header-top .topbar-select {
        height: 32px;
        min-height: 32px;
        line-height: 32px;
        padding: 0 28px 0 10px;
        background: rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(0, 0, 0, 0.10);
        color: #272535;
        box-sizing: border-box;
		padding-right: 5px !important;
    }

    .header-top .topbar-select.topbar-dropdown-btn {
        width: auto;
        justify-content: flex-start;
        border: 1px solid rgba(0, 0, 0, 0.10);
		padding-right: 3px !important;
    }

    .header-top .topbar-select.topbar-dropdown-btn:after {
        opacity: 0.65;
    }

    .topbar-dropdown-menu {
        left: auto;
        right: 0;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        backdrop-filter: none;
    }

    .topbar-dropdown-item {
        color: #272535;
    }

    .topbar-dropdown-item:hover,
    .topbar-dropdown-item.is-active {
        background: rgba(0, 0, 0, 0.06);
    }

    .header-reserv-wrap,
    .show-cart,
    .show-share-btn {
        display: none;
    }

    .nav-holder-wrap,
    .nav-holder-wrap.scroll-to-fixed-fixed {
        background: #fff;
        border-radius: 0;
    }

    .nav-holder-wrap {
        height: 60px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-holder-wrap .logo-holder {
        height: 60px;
        padding: 0 14px;
        display: flex;
        align-items: center;
    }

    .nav-holder-wrap .logo-holder img {
        height: 32px;
    }

    .serach-header-btn_wrap,
    .nav-button-wrap {
        width: 44px;
        height: 60px;
        border: none;
        margin: 0 10px 0 0;
        color: #272535;
        display: flex;
        align-items: center;
        justify-content: center;
        visibility: visible;
        opacity: 1;
    }

    .nav-button {
        position: relative;
        top: auto;
        left: auto;
        margin: 0;
    }

    .nav-button span {
        background: #272535;
    }

    .serach-header-btn {
        color: #272535;
    }

    .main-menu {
        top: 60px;
    }

    .show-share-btn i {
        position: relative;
        top: 4px;
    }

    .content-section.parallax-section.hero-section.htc_single_item {
        padding: 70px 0 45px;
    }

    .content-section.parallax-section.hero-section.hidden-section {
        height: 300px !important;
        min-height: 300px !important;
        padding: 120px 0 60px !important;
        position: relative !important;
        overflow: visible !important;
        z-index: 1 !important;
    }

    .content-section.parallax-section.hero-section.hidden-section .par-elem {
        top: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        border-radius: 0 !important;
        border: none !important;
        z-index: 0 !important;
    }

    .content-section.parallax-section.hero-section.hidden-section .bg {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        z-index: 0 !important;
    }

    .content-section.parallax-section.hero-section.hidden-section .overlay {
        opacity: 0 !important;
        z-index: 1 !important;
    }

    .content-section.parallax-section.hero-section.hidden-section.room-detail-hero-banner .overlay {
        opacity: 1 !important;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.46) 100%) !important;
    }

    .content-section.parallax-section.hero-section.hidden-section .section-title {
        z-index: 10 !important;
        position: relative !important;
    }

    .content-section.parallax-section.hero-section.hidden-section .section-title h4 {
        color: var(--main-color) !important;
        font-size: 12px !important;
        padding-bottom: 6px !important;
    }

    .content-section.parallax-section.hero-section.hidden-section .section-title h2 {
        color: #fff !important;
        font-size: clamp(20px, 6vw, 32px) !important;
        line-height: 1.25 !important;
        padding: 12px 0 10px !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
    }

    .content {
        position: relative !important;
        z-index: 20 !important;
    }

    .hero-title-container.htc_single {
        top: 0;
        transform: none;
        padding: 0 16px;
        margin-top: 0;
    }

    .content-section.parallax-section.hero-section.htc_single_item {
        padding: 108px 0 42px;
    }

    .content-section.parallax-section.hero-section.htc_single_item .fs-wrapper {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        height: 228px;
        min-height: 228px;
        margin: 0 16px;
        border-radius: 10px 10px 0 0;
        overflow: hidden;
    }

    .content-section.parallax-section.hero-section.htc_single_item .slideshow-container_wrap,
    .content-section.parallax-section.hero-section.htc_single_item .multi-slideshow_fs,
    .content-section.parallax-section.hero-section.htc_single_item .swiper-container,
    .content-section.parallax-section.hero-section.htc_single_item .swiper-wrapper,
    .content-section.parallax-section.hero-section.htc_single_item .swiper-slide,
    .content-section.parallax-section.hero-section.htc_single_item .ms-item_fs {
        height: 228px;
        min-height: 228px;
    }

    .content-section.parallax-section.hero-section.htc_single_item .overlay {
        opacity: 0 !important;
        border-radius: 18px;
    }

    .content-section.parallax-section.hero-section.htc_single_item:before,
    .content-section.parallax-section.hero-section.htc_single_item .htc_single_item_dec:before {
        display: none;
    }

    .content-section.parallax-section.hero-section.htc_single_item .dec-corner {
        display: none;
    }

    .content-section.parallax-section.hero-section.htc_single_item .container {
        position: relative;
        z-index: 4;
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-title-container.htc_single .section-title {
        width: auto;
        max-width: none;
        margin: 0;
        padding: 16px 16px 14px;
        border-radius: 0 0 10px 10px;
        background: rgba(255, 255, 255, .96);
        backdrop-filter: blur(8px);
        box-shadow: 0 12px 28px rgba(8, 9, 18, .10);
    }

    .hero-title-container.htc_single .section-title h4 {
        font-size: 10px;
        letter-spacing: .04em;
        padding-bottom: 4px;
        color: rgba(39, 37, 53, .68);
    }

    .hero-title-container.htc_single .section-title h4:before {
        display: none;
    }

    .content-section.parallax-section.hero-section .htc_single .section-title h2,
    .hero-title-container .section-title h2 {
        font-size: clamp(16px, 5.8vw, 24px);
        line-height: 1.14;
        letter-spacing: -.02em;
        padding: 6px 0 0;
        word-wrap: break-word;
        hyphens: auto;
        color: #272535;
    }

    .hero-title-container .section-title .hero-detail-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 132px;
        height: 38px;
        line-height: 38px;
        padding: 0 16px;
        font-size: 11px;
        letter-spacing: .02em;
        margin: 10px auto 0;
        border-radius: 10px;
        float: none;
    }

    .hero-title-container .section-title .section-separator {
        margin: 10px 0 0;
        transform: scale(.82);
        transform-origin: center;
    }

    .hero-section-scroll,
    .hero-call-wrap,
    .slide-progress_container {
        display: none;
    }

    .hero-section-scroll-ana {
        display: block;
        position: relative;
        left: auto;
        bottom: auto;
        margin: 8px auto 0;
        z-index: 1;
    }

    .mousey {
        border-color: rgba(39, 37, 53, .35);
    }

    .tcs-pagination_wrap {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: auto;
        height: auto;
        margin: 12px 16px 0;
        padding: 8px 0 0;
        background: transparent;
        border-radius: 0;
        z-index: 0;
    }

    .hero-slider-pag {
        transform: scale(.88);
        position: relative;
        z-index: 0;
    }

    .tcs-pagination_init {
        position: static;
        bottom: auto;
        left: auto;
        width: 100%;
        z-index: 0;
    }

    .tcs-pagination .swiper-pagination-bullet {
        background: rgba(39, 37, 53, .28);
        z-index: 0;
    }

    .tcs-pagination .swiper-pagination-bullet:before {
        border-color: rgba(39, 37, 53, .28);
        z-index: 0;
    }

    .tcs-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: var(--main-color);
    }

    .tcs-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
        border-color: rgba(196, 166, 118, .55);
    }

    body.tp-date-picker-open .tcs-pagination_wrap,
    body.tp-date-picker-open .hero-slider-pag,
    body.tp-date-picker-open .tcs-pagination_init,
    body.tp-date-picker-open .tcs-pagination .swiper-pagination-bullet,
    body.tp-date-picker-open .tcs-pagination .swiper-pagination-bullet:before {
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .fw-search-wrap_hero {
        margin-top: 18px;
        box-shadow: 0px 0px 0px 3px rgba(255, 255, 255, .18);
        border-radius: 16px;
    }

    .fw-search-wrap {
        padding: 14px 12px 12px;
        border-radius: 16px;
    }

    .fw-search-wrap:before {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        border-radius: 12px;
    }

    .home-rsv .date-container.input-wrap,
    .home-rsv .rsv-visitor-field {
        margin-bottom: 10px;
    }

    .home-rsv .date-container.input-wrap {
        position: relative;
        z-index: 30;
    }

    .home-rsv .input-wrap label,
    .home-rsv .rsv-visitor-label {
        font-size: 10px;
        letter-spacing: .08em;
    }

    .home-rsv #res_date,
    .home-rsv .rsv-visitor-toggle,
    .home-rsv .searchform-submit {
        min-height: 52px;
        height: 52px;
    }

    .home-rsv .rsv-visitor-toggle {
        padding: 10px 14px;
        border-radius: 10px;
    }

    .home-rsv .rsv-visitor-value {
        font-size: 13px;
    }

    .home-rsv .searchform-submit {
        border-radius: 10px;
        font-size: 13px;
        font-weight: 600;
    }

    .home-rsv .rsv-visitor-dropdown {
        padding: 14px;
        border-radius: 12px;
    }

    .home-rsv .rsv-visitor-top {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stg_link {
        margin-top: 20px;
    }

    .testimonilas-carousel-wrap {
        padding: 0;
    }

    .tc-button {
        top: 100%;
        margin-top: -15px;
    }

    .daterangepicker {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        left: 0 !important;
        right: auto !important;
        z-index: 9999 !important;
    }

    .daterangepicker .drp-calendar,
    .daterangepicker .drp-calendar.left,
    .daterangepicker .drp-calendar.right {
        max-width: 100% !important;
        width: 100% !important;
        float: none !important;
    }

    .daterangepicker .calendar-table,
    .daterangepicker .calendar-table table {
        width: 100% !important;
    }

    .daterangepicker .drp-buttons {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 12px 14px;
    }

    .daterangepicker .drp-buttons .btn {
        flex: 1 1 auto;
        padding: 12px 10px !important;
    }

    .inline-facts {
        width: 100%;
    }

    .single-carousel,
    .single-carousel2 {
        height: 250px;
    }

    .fw-carousel-button-prev {
        left: 10px;
    }

    .fw-carousel-button-next {
        right: 10px;
    }

    .slider-button {
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin-top: -15px;
        box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, .4);
    }

    .sc-controls {
        bottom: 10px;
    }

    .single-carousle-container2 {
        padding: 0 0 15px 0;
    }

    .content-nav-fixed li a.rn {
        padding-right: 60px;
    }

    .content-nav-fixed li a.ln {
        padding-left: 60px;
    }

    .comments-item {
        padding-left: 0;
    }

    .hero-menu_header li {
        text-align: center;
        display: block;
        padding: 10px 0;
    }

    .hero-menu_header {
        width: 100%;
        padding: 15px 0;
        margin-bottom: 10px;
    }

    .dec-container.anim_tabs {
        padding: 10px;
    }

    .gallery-item,
    .grid-sizer,
    .two-column .gallery-item {
        width: 100%;
    }

    .shop-header {
        padding: 0 0 10px;
        margin-bottom: 10px;
    }

    .shop-header_opt {
        position: relative;
        top: 0;
        width: 100%;
        margin-top: 20px;
    }

    .fw-search-wrap {
        margin-bottom: 20px;
    }

    .gid_link {
        position: relative;
        bottom: 0;
        right: 0;
        display: block;
        margin-top: 20px;
    }

    .container {
        width: min(100% - 10px, 1600px);
    }

    .sr-opt {
        position: relative;
        border: none;
        text-align: left;
        padding: 10px 0;
        box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, .0);
    }

    .rcd-single {
        margin: 10px 0;
        padding: 0 0 10px;
    }

    .sa_towishlist {
        margin-top: 10px;
        display: table;
        border: 1px solid #eee;
        padding: 10px 20px;
        background: #f9f9f9;
    }

    .hero-menu-item-price {
        right: auto;
        left: 20px;
        top: 90px;
        transform: translateY(0);
    }
}

@media only screen and (max-width: 640px) {

    .hero-title-container .section-title h2,
    .content-section.parallax-section.hero-section .section-title h2 {
        font-size: clamp(20px, 6vw, 28px);
        padding: 10px 0;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: auto;
    }

    .events-cal-grid {
        gap: 3px;
    }

    .events-cal-day {
        height: 34px;
        font-size: 11px;
        border-radius: 8px;
    }

    .events-cal-weekdays span {
        font-size: 10px;
    }

    .events-cal-btn {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .events-cal-month {
        min-width: 110px;
        font-size: 11px;
    }

    .testimonilas-carousel-wrap {
        padding: 0 15px;
        margin-top: 30px;
    }

    .testimonilas-carousel .swiper-container {
        width: 100%;
        overflow: hidden;
    }

    .testimonilas-carousel .swiper-slide {
        width: 100% !important;
        opacity: 1 !important;
        transform: scale(1) !important;
    }

    .testi-item {
        opacity: 1 !important;
        transform: scale(1) !important;
    }

    .breadcrumbs-wrap {
        font-size: 12px !important;
        padding: 8px 10px !important;
    }

    .breadcrumbs-wrap * {
        font-size: 12px !important;
    }

    .content-section.parallax-section.hero-section.hidden-section:before {
        display: none !important;
    }

    .breadcrumbs-wrap {
        background: #fff !important;
        margin-top: -1px !important;
    }

    .nav-holder-wrap,
    .nav-holder-wrap.init-fix-header,
    .nav-holder-wrap.scroll-to-fixed-fixed,
    .nav-holder-wrap.scroll-to-fixed,
    .nav-holder-wrap.sticky-header,
    .nav-holder-wrap.fixed {
        z-index: 9 !important;
    }

    .nav-holder-wrap .logo-holder.scroll-sticky {
        height: 60px !important;
    }

    .nav-holder-wrap .logo-holder img { 
        height: 50px !important; 
    }

    .content {
        position: relative !important;
        z-index: 1 !important;
    }

    .contacts-card-item {
        padding: 30px;
    }

    .contacts-card-item i {
        display: none;
    }

    .room-card-details li {
        margin: 0 20px 10px 0;
    }

    .text-block-title h4 {
        font-size: 2.4em;
    }

    .wish-list-wrap {
        width: 350px;
        height: 400px;
    }

    .wish-list-container {
        padding: 10px;
    }
}

@media only screen and (max-width: 640px) { 
    .breadcrumbs-wrap { 
        background: #fff !important; 
        margin-top: 0px !important; 
        height: 60px; 
        line-height: normal; 
        display: flex; 
        align-items: center; 
    } 
}

@media only screen and (max-width: 364px) {

    .show-cart,
    .show-share-btn,
    .serach-header-btn_wrap,
    .nav-button-wrap,
    .serach-header-btn {
        width: 30px;
    }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    .bg {
        background-attachment: scroll !important;
        -webkit-background-size: cover;
        background-position: center;
    }
}

/* Page Specific Styles */
/* oda_detay.php */
.room-detail-gallery .swiper-slide a,
.room-detail-gallery .swiper-slide img {
    display: block;
    width: 100%;
}

.room-detail-gallery .swiper-slide img {
    height: 480px;
    object-fit: cover;
}

.room-detail-side-sticky {
    position: sticky;
    top: 110px;
}

.room-detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.room-detail-empty {
    padding: 24px 0;
    color: #6b7280;
    font-weight: 700;
}

.rsv-room-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

@media only screen and (max-width: 991px) {
    .room-detail-gallery .swiper-slide img {
        height: 320px;
    }

    .room-detail-side-sticky {
        position: static;
    }
}

/* rezervasyon_odeme.php */
.rpay-method-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 16px;
}

.rpay-method-item {
    position: relative;
    min-width: 0;
}

.rpay-method-item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rpay-method-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 122px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(31, 47, 94, 0.10);
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.04);
    cursor: pointer;
    transition: .2s ease;
}

.rpay-method-box:hover {
    transform: translateY(-2px);
    border-color: rgba(31, 47, 94, 0.20);
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.08);
}

.rpay-method-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.rpay-method-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 47, 94, 0.07);
    color: #1f2f5e;
    font-size: 18px;
}

.rpay-method-check {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid rgba(31, 47, 94, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    background: #fff;
    transition: .2s ease;
}

.rpay-method-check i {
    font-size: 11px;
}

.rpay-method-title {
    color: #111827;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
}

.rpay-method-desc {
    color: #6b7280;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.45;
}

.rpay-method-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(201, 169, 107, 0.12);
    color: #8d6b32;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
}

.rpay-method-item input:checked+.rpay-method-box {
    border-color: #1f2f5e;
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
    box-shadow: 0 0 0 3px rgba(31, 47, 94, 0.08), 0 14px 28px rgba(31, 47, 94, 0.10);
}

.rpay-method-item input:checked+.rpay-method-box .rpay-method-icon {
    background: #1f2f5e;
    color: #fff;
}

.rpay-method-item input:checked+.rpay-method-box .rpay-method-check {
    border-color: #1f2f5e;
    background: #1f2f5e;
    color: #fff;
}

.rpay-method-item input:checked+.rpay-method-box .rpay-method-badge {
    background: rgba(31, 47, 94, 0.10);
    color: #1f2f5e;
}

.rpay-bank-wrap {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    background: #fbfcfe;
    border: 1px solid rgba(31, 47, 94, 0.08);
}

.rpay-bank-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.rpay-bank-item {
    position: relative;
    min-width: 0;
}

.rpay-bank-item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rpay-bank-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 132px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
    cursor: pointer;
    transition: .18s ease;
}

.rpay-bank-box:hover {
    border-color: rgba(201, 169, 107, 0.45);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transform: translateY(-1px);
}

.rpay-bank-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.rpay-bank-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f4f6fb;
    color: #42507a;
    font-size: 15px;
}

.rpay-bank-check {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    background: #fff;
    transition: .18s ease;
}

.rpay-bank-check i {
    font-size: 10px;
}

.rpay-bank-title {
    color: #0f172a;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
}

.rpay-bank-desc {
    color: #667085;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
}

.rpay-bank-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f7f4ee;
    color: #9a6a1d;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .02em;
}

.rpay-bank-item input:checked+.rpay-bank-box {
    border-color: rgba(31, 47, 94, 0.42);
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
    box-shadow: 0 0 0 2px rgba(31, 47, 94, 0.05), 0 10px 24px rgba(31, 47, 94, 0.08);
}

.rpay-bank-item input:checked+.rpay-bank-box .rpay-bank-icon {
    background: rgba(31, 47, 94, 0.10);
    color: #1f2f5e;
}

.rpay-bank-item input:checked+.rpay-bank-box .rpay-bank-check {
    border-color: #1f2f5e;
    background: #1f2f5e;
    color: #fff;
}

.rpay-bank-link-note {
    margin-top: 12px;
}

.rpay-country-picker {
    position: relative;
}

.rpay-country-trigger {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    transition: .18s ease;
}

.rpay-country-trigger:hover,
.rpay-country-picker.is-open .rpay-country-trigger {
    border-color: rgba(31, 47, 94, 0.22);
    box-shadow: 0 0 0 3px rgba(31, 47, 94, 0.05);
}

.rpay-country-value {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rpay-country-value .iti__flag {
    flex: 0 0 auto;
}

.rpay-country-label {
    color: #111827;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rpay-country-arrow {
    color: #6b7280;
    font-size: 11px;
    transition: transform .18s ease;
}

.rpay-country-picker.is-open .rpay-country-arrow {
    transform: rotate(180deg);
}

.rpay-country-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 40;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    max-height: 260px;
    overflow-y: auto;
    padding: 4px 0;
}

.rpay-country-menu[hidden] {
    display: none;
}

.rpay-country-option {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 7px 12px;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
    transition: background .15s ease;
}

.rpay-country-option:hover,
.rpay-country-option.is-active {
    background: #f8fafc;
}

.rpay-country-option-main {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rpay-country-option-main .iti__flag {
    flex: 0 0 auto;
}

.rpay-country-option-code {
    color: #98a2b3;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
}

.rpay-field .iti {
    width: 100%;
}

.rpay-field .iti input {
    width: 100%;
    padding-left: 94px !important;
}

.rpay-field .iti__flag-container {
    border-radius: 10px 0 0 10px;
}

.rpay-field .iti__selected-flag {
    padding: 0 0 0 12px;
}

.rpay-method-note {
    margin-top: 10px;
    color: #6b7280;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.5;
}

.rpay-sum-discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 1px dashed rgba(31, 47, 94, 0.15);
    margin-top: 12px;
}

.rpay-sum-discount-label {
    color: #10b981;
    font-weight: 700;
    font-size: 14px;
}

.rpay-sum-discount-price {
    color: #10b981;
    font-weight: 700;
    font-size: 16px;
}

.rpay-sum-original-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-weight: 700;
    font-size: 13px;
}

@media (max-width: 991px) {
    .rpay-method-grid {
        grid-template-columns: 1fr;
    }

    .rpay-bank-grid {
        grid-template-columns: 1fr;
    }
}

/* ara.php */
.search-page-form {
    margin-bottom: 28px
}

.search-page-form-row {
    align-items: stretch
}

.search-page-input-col,
.search-page-button-col {
    display: flex
}

.search-page-input-col input {
    width: 100%;
    height: 56px;
    margin: 0
}

.search-page-button-col {
    align-items: stretch
}

.search-page-submit {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0
}

.search-summary {
    margin: 0 0 20px 0;
    color: #5b5b5b;
    font-size: 15px;
    text-align: left
}

.search-empty-box {
    padding: 18px 20px;
    border: 1px solid #ececec;
    background: #fafafa;
    color: #5a5a5a;
    border-radius: 10px
}

.search-result-col {
    display: flex;
    margin-bottom: 24px
}

.search-card {
    display: flex;
    gap: 0;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0;
    height: 100%;
    width: 100%
}

.search-card-media {
    display: block;
    flex: 0 0 180px;
    max-width: 180px;
    background: #f6f6f6
}

.search-card-media img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block
}

.search-card-placeholder {
    height: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
    color: #8b8b8b;
    font-weight: 700;
    padding: 20px;
    text-align: center
}

.search-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    flex: 1 1 auto;
    min-width: 0
}

.search-card-meta {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #b08a5a;
    margin-bottom: 8px;
    text-align: left
}

.search-card-title {
    font-size: 22px;
    line-height: 1.3;
    margin: 0 0 10px 0;
    text-align: left;
    width: 100%
}

.search-card-title a {
    color: #1b1b1b
}

.search-card-excerpt {
    margin: 0 0 12px 0;
    color: #666;
    text-align: left;
    width: 100%
}

.search-card-link {
    font-weight: 600;
    text-align: left
}

@media only screen and (max-width: 767px) {

    .search-page-input-col,
    .search-page-button-col {
        display: block
    }

    .search-page-input-col input {
        height: 52px
    }

    .search-page-button-col {
        margin-top: 12px
    }

    .search-card {
        display: block
    }

    .search-card-media {
        max-width: none;
        min-width: 0;
        display: block
    }

    .search-card-media img {
        min-height: 220px
    }

    .search-card-body {
        padding: 16px
    }
}

/* rezervasyon_sonuc.php */
.rresult-wrap {
    max-width: 1180px;
    margin: 0 auto;
}

.rresult-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.82fr);
    gap: 24px;
    align-items: start;
}

.rresult-card {
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 20px;
    padding: 28px;
    text-align: left;
}

.rresult-main {
    overflow: hidden;
}

.rresult-hero {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(196, 166, 118, 0.18), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
}

.rresult-hero::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #c4a676 0%, #1e293b 100%);
}

.rresult-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 188px;
    gap: 24px;
    align-items: start;
}

.rresult-iconbox {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.rresult-iconbox--success {
    background: linear-gradient(135deg, #0f766e 0%, #10b981 100%);
    color: #fff;
}

.rresult-iconbox--warning {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    color: #fff;
}

.rresult-iconbox--error {
    background: linear-gradient(135deg, #b91c1c 0%, #ef4444 100%);
    color: #fff;
}

.rresult-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.rresult-status--success {
    background: #ecfdf3;
    color: #166534;
}

.rresult-status--warning {
    background: #fff7ed;
    color: #b45309;
}

.rresult-status--error {
    background: #fef2f2;
    color: #b91c1c;
}

.rresult-topline {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
}

.rresult-codebox {
    min-width: 100%;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid #e7edf4;
    color: #0f172a;
    text-align: left;
}

.rresult-codebox-label {
    display: block;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.rresult-codebox-value {
    display: block;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    color: #0f172a;
}

.rresult-codebox-sub {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.5;
    color: #64748b;
}

.rresult-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #c4a676;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.rresult-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

.rresult-title {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 38px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.02em;
    max-width: 720px;
}

.rresult-text {
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    max-width: 760px;
}

.rresult-timeline {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.rresult-timeline-item {
    flex: 1 1 180px;
    min-width: 180px;
    border-radius: 16px;
    border: 1px solid #ebf0f5;
    background: #fff;
    padding: 15px 16px;
}

.rresult-timeline-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-bottom: 10px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 12px;
    font-weight: 700;
}

.rresult-timeline-title {
    display: block;
    margin-bottom: 6px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
}

.rresult-timeline-text {
    display: block;
    color: #64748b;
    font-size: 12px;
    line-height: 1.7;
}

.rresult-highlight {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.rresult-highlight-item {
    border-radius: 16px;
    background: linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
    border: 1px solid #edf2f7;
    padding: 18px;
}

.rresult-highlight-label,
.rresult-label {
    display: block;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 7px;
}

.rresult-highlight-value {
    color: #0f172a;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.rresult-section {
    margin-top: 22px;
}

.rresult-section-title {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: 17px;
    font-weight: 700;
}

.rresult-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.rresult-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rresult-item {
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    border: 1px solid #edf2f7;
    padding: 16px 18px;
}

.rresult-value {
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
}

.rresult-guests {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.rresult-guest-card {
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    border: 1px solid #edf2f7;
    padding: 18px;
}

.rresult-guest-name {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.rresult-guest-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.rresult-guest-meta span {
    display: block;
}

.rresult-aside {
    position: sticky;
    top: 28px;
}

.rresult-side-card {
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    padding: 24px;
}

.rresult-side-card+.rresult-side-card {
    margin-top: 18px;
}

.rresult-side-title {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: 18px;
    font-weight: 700;
}

.rresult-side-text {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.8;
}

.rresult-price {
    margin: 14px 0 4px;
    color: #0f172a;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.rresult-price-sub {
    color: #64748b;
    font-size: 12px;
    line-height: 1.7;
}

.rresult-side-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.rresult-side-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 0;
    border-top: 1px solid #eef2f7;
    color: #0f172a;
    font-size: 13px;
    line-height: 1.6;
}

.rresult-side-list li:first-child {
    border-top: 0;
    padding-top: 0;
}

.rresult-side-list span {
    color: #64748b;
    font-weight: 600;
}

.rresult-side-list strong {
    flex: 0 0 auto;
    text-align: right;
    color: #0f172a;
    font-weight: 700;
}

.rresult-mini-note {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e8edf4;
    color: #64748b;
    font-size: 12px;
    line-height: 1.75;
}

.rresult-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.rresult-btn,
.rresult-btn-alt {
    min-width: 100%;
    min-height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: .2s ease;
}

.rresult-btn {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    border: 1px solid #111827;
    color: #fff;
}

.rresult-btn-alt {
    background: #fff;
    border: 1px solid #d7dee7;
    color: #0f172a;
}

.rresult-btn:hover,
.rresult-btn-alt:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.rresult-print-btn {
    cursor: pointer;
    font-family: inherit;
}

.rresult-note {
    margin-top: 12px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.75;
}

.rresult-alert {
    border-radius: 14px;
    border: 1px solid #fee2e2;
    background: #fffafa;
    color: #991b1b;
    padding: 16px 18px;
    font-size: 14px;
    line-height: 1.8;
}

.rresult-print-card {
    display: none;
    margin-top: 22px;
    background: #fff;
    border: 1px solid #d9e1ea;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.07);
}

.rresult-print-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 22px;
    padding-bottom: 20px;
    border-bottom: 2px solid #0f172a;
}

.rresult-print-brand {
    color: #0f172a;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.rresult-print-sub {
    color: #475569;
    font-size: 13px;
    line-height: 1.7;
    margin-top: 8px;
}

.rresult-print-meta {
    text-align: right;
}

.rresult-print-meta span {
    display: block;
    color: #334155;
    font-size: 12px;
    line-height: 1.85;
}

.rresult-print-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 6px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    color: #0f172a;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.rresult-print-section {
    margin-top: 22px;
}

.rresult-print-title {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: 18px;
    font-weight: 700;
}

.rresult-print-section-title {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.rresult-print-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.rresult-print-panel {
    border: 1px solid #dbe3ec;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.rresult-print-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 16px;
    border-bottom: 1px solid #e8edf4;
}

.rresult-print-row:last-child {
    border-bottom: 0;
}

.rresult-print-row .rresult-label {
    color: #64748b;
    font-size: 12px;
    line-height: 1.6;
}

.rresult-print-row .rresult-value {
    display: block;
    color: #0f172a;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 700;
    text-align: right;
}

.rresult-print-guest-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #dbe3ec;
    border-radius: 14px;
    overflow: hidden;
}

.rresult-print-guest-table th,
.rresult-print-guest-table td {
    padding: 11px 12px;
    border-bottom: 1px solid #e8edf4;
    text-align: left;
    font-size: 12px;
    line-height: 1.55;
    color: #0f172a;
}

.rresult-print-guest-table th {
    background: #f8fafc;
    font-weight: 700;
}

.rresult-print-guest-table tr:last-child td {
    border-bottom: 0;
}

.rresult-print-total {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #dbe3ec;
}

.rresult-print-total-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 10px;
    color: #0f172a;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
}

.rresult-print-total-row:first-child {
    margin-top: 0;
}

.rresult-print-total-row strong {
    font-size: 24px;
    line-height: 1.1;
}

.rresult-print-footer {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid #dbe3ec;
    color: #475569;
    font-size: 12px;
    line-height: 1.8;
}

@media (max-width: 991px) {

    .rresult-shell,
    .rresult-highlight,
    .rresult-grid--compact,
    .rresult-guests {
        grid-template-columns: 1fr;
    }

    .rresult-hero-grid {
        grid-template-columns: 1fr;
    }

    .rresult-aside {
        position: static;
    }
}

@media (max-width: 640px) {
    .rresult-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .rresult-title {
        font-size: 29px;
    }

    .rresult-grid {
        grid-template-columns: 1fr;
    }

    .rresult-guest-meta {
        grid-template-columns: 1fr;
    }

    .rresult-topline,
    .rresult-print-head {
        flex-direction: column;
    }

    .rresult-timeline {
        flex-direction: column;
    }

    .rresult-codebox,
    .rresult-print-meta {
        width: 100%;
        text-align: left;
    }

    .rresult-print-grid {
        grid-template-columns: 1fr;
    }

    .rresult-btn,
    .rresult-btn-alt {
        width: 100%;
    }
}

@media print {
    @page {
        size: A4;
        margin: 12mm;
    }

    html,
    body {
        background: #fff !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .header-overlay,
    .content-section.parallax-section.hero-section.hidden-section,
    .breadcrumbs-wrap,
    .section-dec,
    .content-dec2,
    .content-dec,
    .limit-box,
    .height-emulator,
    .rresult-shell {
        display: none !important;
    }

    .content,
    .content-section,
    .container,
    .rresult-wrap {
        margin: 0 !important;
        padding: 0 !important;
        width: auto !important;
        max-width: none !important;
        min-height: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .rresult-wrap>* {
        display: none !important;
    }

    #reservationPrintArea {
        display: block !important;
        position: static;
        width: auto;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        overflow: visible !important;
    }

    .rresult-print-card,
    .rresult-print-panel,
    .rresult-print-total {
        box-shadow: none !important;
    }

    .rresult-print-grid {
        gap: 14px;
    }

    .rresult-print-guest-table {
        page-break-inside: auto;
    }

    .rresult-print-guest-table tr {
        page-break-inside: avoid;
    }
}

/* iletisim.php */
.contact-phone-field .iti {
    width: 100%;
    margin-top: 20px;
}

.contact-phone-field .iti input {
    width: 100%;
    padding-left: 94px !important;
}

.contact-phone-field .iti__flag-container {
    border-radius: 10px 0 0 10px;
}

.contact-phone-field .iti__selected-flag {
    padding: 0 0 0 12px;
}

/* rezervasyon.php */
.rsv-visitor-field {
    position: relative;
}

.rsv-visitor-toggle {
    width: 100%;
    min-height: 60px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 4px;
    background: rgba(255, 255, 255, .05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    cursor: pointer;
    transition: .2s ease;
}

.rsv-visitor-toggle:hover,
.rsv-visitor-field.is-open .rsv-visitor-toggle {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(201, 169, 107, .55);
}

.rsv-visitor-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.rsv-visitor-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .65);
}

.rsv-date-note {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, .62);
    line-height: 1.45;
}

.rsv-visitor-value {
    font-size: 14px;
    line-height: 1;
}

.rsv-visitor-toggle i {
    color: #c9a96b;
    font-size: 15px;
}

.rsv-visitor-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    z-index: 30;
    background: #232132;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(10, 11, 20, .32);
    border: 1px solid rgba(201, 169, 107, .22);
    padding: 18px;
    display: none;
}

.rsv-visitor-field.is-open .rsv-visitor-dropdown {
    display: block;
}

.rsv-visitor-dropdown:before {
    content: "";
    position: absolute;
    top: -8px;
    left: 34px;
    width: 16px;
    height: 16px;
    background: #232132;
    border-top: 1px solid rgba(201, 169, 107, .18);
    border-left: 1px solid rgba(201, 169, 107, .18);
    transform: rotate(45deg);
}

.rsv-visitor-top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.rsv-visitor-box {
    min-width: 0;
    width: 100%;
}

.rsv-visitor-box-title {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, .72);
}

.rsv-visitor-row {
    display: grid;
    grid-template-columns: 1fr 170px;
    align-items: center;
    gap: 16px;
}

.rsv-visitor-row+.rsv-visitor-row {
    margin-top: 12px;
}

.rsv-visitor-row-label {
    font-size: 14px;
    color: #1f1f1f;
}

.rsv-visitor-row-label small {
    display: block;
    margin-top: 3px;
    color: #7d7d7d;
    font-size: 12px;
}

.rsv-visitor-stepper {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(201, 169, 107, .16);
}

.rsv-visitor-stepper button {
    width: 80px;
    height: 42px;
    border: 0;
    background: rgba(201, 169, 107, .12);
    color: #c9a96b;
    font-size: 24px;
    line-height: 1;
}

.rsv-visitor-stepper button:hover {
    background: rgba(201, 169, 107, .2);
}

.custom-form .rsv-visitor-stepper input[type="text"] {
    width: auto;
    flex: 1 1 auto;
    height: 42px;
    border: 0;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #fff;
    padding: 0;
    min-width: 0;
    line-height: 42px;
    font-family: inherit;
}

.rsv-child-ages {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.rsv-child-age-row {
    display: grid;
    grid-template-columns: 1fr 170px;
    align-items: center;
    gap: 16px;
}

.rsv-child-age-row+.rsv-child-age-row {
    margin-top: 12px;
}

.rsv-child-age-label {
    font-size: 14px;
    color: rgba(255, 255, 255, .72);
    text-align: right;
    padding-right: 6px;
}

.rsv-child-age-select {
    width: 100%;
    height: 42px;
    border: 1px solid rgba(201, 169, 107, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    color: #fff;
    padding: 0 14px;
    font-size: 15px;
}

.rsv-child-age-select option {
    color: #1f1f1f;
}

.rsv-guest-warning {
    display: none;
    margin-top: 10px;
    color: #ffb4b4;
    font-size: 12px;
    font-weight: 700;
}

.rsv-side-reserve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    border-radius: 6px;
    border: 1px solid #1f2f5e;
    background: #1f2f5e;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.rsv-side-reserve-btn:hover {
    background: #18254a;
    border-color: #18254a;
    color: #fff;
}

.rsv-side-reserve-btn.is-disabled,
.rsv-side-reserve-btn[aria-disabled="true"] {
    opacity: .55;
    pointer-events: none;
}

.rsv-picked-empty {
    padding: 18px 0 6px;
    color: #6b7280;
    font-weight: 700;
    font-size: 13px;
}

.rsv-coupon-group,
.rsv-coupon-applied {
    display: flex;
    gap: 8px;
}

.rsv-input--coupon {
    flex: 1;
}

.rsv-coupon-apply,
.rsv-coupon-remove {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.rsv-coupon-apply {
    background-color: #1f2f5e;
    color: white;
}

.rsv-coupon-apply:hover {
    background-color: #18254a;
}

.rsv-coupon-remove {
    background-color: #dc3545;
    color: white;
}

.rsv-coupon-remove:hover {
    background-color: #c82333;
}

.rsv-coupon-code {
    flex: 1;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: #f0f4ff;
    font-weight: 600;
}

.rsv-picked-rate {
    display: block;
    margin-top: 2px;
    color: #6b7280;
    font-weight: 700;
    font-size: 12px;
}

@media (max-width: 991px) {
    .rsv-visitor-dropdown {
        position: static;
        margin-top: 10px;
    }

    .rsv-visitor-dropdown:before {
        display: none;
    }

    .rsv-visitor-top,
    .rsv-visitor-row,
    .rsv-child-age-row {
        grid-template-columns: 1fr;
    }

    .rsv-child-age-label {
        text-align: left;
        padding-right: 0;
    }
}

/* anasayfa.php */
.home-rsv .rsv-visitor-field {
    position: relative;
}

.home-rsv .rsv-visitor-toggle {
    width: 100%;
    min-height: 60px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 4px;
    background: rgba(255, 255, 255, .05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    cursor: pointer;
    transition: .2s ease;
}

.home-rsv .rsv-visitor-toggle:hover,
.home-rsv .rsv-visitor-field.is-open .rsv-visitor-toggle {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(201, 169, 107, .55);
}

.home-rsv .rsv-visitor-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.home-rsv .rsv-visitor-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .65);
}

.home-rsv .rsv-visitor-value {
    font-size: 14px;
    line-height: 1;
}

.home-rsv .rsv-visitor-toggle i {
    color: #c9a96b;
    font-size: 15px;
}

.home-rsv .rsv-visitor-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    z-index: 30;
    background: #232132;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(10, 11, 20, .32);
    border: 1px solid rgba(201, 169, 107, .22);
    padding: 18px;
    display: none;
}

.home-rsv .rsv-visitor-field.is-open .rsv-visitor-dropdown {
    display: block;
}

.home-rsv .rsv-visitor-dropdown:before {
    content: "";
    position: absolute;
    top: -8px;
    left: 34px;
    width: 16px;
    height: 16px;
    background: #232132;
    border-top: 1px solid rgba(201, 169, 107, .18);
    border-left: 1px solid rgba(201, 169, 107, .18);
    transform: rotate(45deg);
}

.home-rsv .rsv-visitor-top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.home-rsv .rsv-visitor-box {
    min-width: 0;
    width: 100%;
}

.home-rsv .rsv-visitor-box-title {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, .72);
}

.home-rsv .rsv-visitor-stepper {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(201, 169, 107, .16);
}

.home-rsv .rsv-visitor-stepper button {
    width: 80px;
    height: 42px;
    border: 0;
    background: rgba(201, 169, 107, .12);
    color: #c9a96b;
    font-size: 24px;
    line-height: 1;
}

.home-rsv .rsv-visitor-stepper button:hover {
    background: rgba(201, 169, 107, .2);
}

.home-rsv .rsv-visitor-stepper input[type="text"] {
    width: auto;
    flex: 1 1 auto;
    height: 42px;
    border: 0;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #fff;
    padding: 0;
    min-width: 0;
    line-height: 42px;
    font-family: inherit;
}

.home-rsv .rsv-child-ages {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.home-rsv .rsv-child-age-row {
    display: grid;
    grid-template-columns: 1fr 170px;
    align-items: center;
    gap: 16px;
}

.home-rsv .rsv-child-age-row+.rsv-child-age-row {
    margin-top: 12px;
}

.home-rsv .rsv-child-age-label {
    font-size: 14px;
    color: rgba(255, 255, 255, .72);
    text-align: right;
    padding-right: 6px;
}

.home-rsv .rsv-child-age-select {
    width: 100%;
    height: 42px;
    border: 1px solid rgba(201, 169, 107, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    color: #fff;
    padding: 0 14px;
    font-size: 15px;
}

.home-rsv .rsv-child-age-select option {
    color: #1f1f1f;
}

.home-rsv .rsv-guest-warning {
    display: none;
    margin-top: 10px;
    color: #ffb4b4;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .home-rsv .rsv-visitor-dropdown {
        position: static;
        margin-top: 10px;
    }

    .home-rsv .rsv-visitor-dropdown:before {
        display: none;
    }

    .home-rsv .rsv-visitor-top,
    .home-rsv .rsv-child-age-row {
        grid-template-columns: 1fr;
    }

    .home-rsv .rsv-child-age-label {
        text-align: left;
        padding-right: 0;
    }
}

/* odalar.php */
.room-list-grid .grid-item-holder {
    position: relative;
    display: block;
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 6px;
    background: #171626;
}

.room-list-grid .grid-item-holder img,
.room-list-grid .grid-item-holder .no-image-box {
    display: block;
    width: 100%;
    height: 100%;
}

.room-list-grid .grid-item-holder img {
    object-fit: cover;
}

.room-list-grid .grid-item-holder .no-image-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #27253a 0%, #171626 100%);
    color: rgba(255, 255, 255, .82);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
    .room-list-grid .grid-item-holder {
        height: 200px;
    }
}
#cookie-alert-popup *,
#cookie-alert-popup *:after,
#cookie-alert-popup *:before {
    box-sizing: inherit !important;
}

#cookie-alert-popup {
    position: fixed !important;
    bottom: 30px;
    left: 30px;
    z-index: 9999 !important;
    opacity: .8;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out
}

#cookie-alert-popup:hover {
    opacity: 1
}

#cookie-alert-popup .alert-popup__card {
    background: #000;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2) !important;
    display: flex !important;
    flex-wrap: wrap !important;
    max-width: 100% !important;
    position: relative !important;
    width: 400px !important;
    line-height: 1.5 !important
}

#cookie-alert-popup .cookie-alert-popup--closed {
    -webkit-animation: cookie-alert-popup--close 0.4s ease-in-out forwards !important;
    animation: cookie-alert-popup--close 0.4s ease-in-out forwards !important
}

#cookie-alert-popup .cookie-alert-popup--opened {
    -webkit-animation: cookie-alert-popup--open 0.4s ease-in-out forwards !important;
    animation: cookie-alert-popup--open 0.4s ease-in-out forwards !important
}

#cookie-alert-popup .alert-popup__content {
    padding: 30px 15px !important;
    text-align: center !important
}

#cookie-alert-popup .alert-popup__content--text-bold {
    font-weight: 600 !important
}

#cookie-alert-popup h3 {
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin: 0 0 0.5em !important;
	text-align: center;
}

#cookie-alert-popup p {
    font-size: 14px !important;
    color: #fff !important;
    margin: 20px 0 !important;
    line-height: normal;
	text-align: center;
}

#cookie-alert-popup a {
    font-size: 14px !important;
    color: #fff !important;
    text-decoration: underline !important
}

#cookie-alert-popup button {
    background: var(--main-color);
    border: none !important;
    color: #fff !important;
    cursor: pointer !important;
    font-size: 14px !important;
    height: 3em !important;
    line-height: 3em !important;
    padding: 0 3em !important;
    transition: box-shadow 0.3s ease !important;
    outline: none !important;
    width: auto;
}

#cookie-alert-popup button:hover {
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3) !important
}

#cookie-alert-popup .cookie-alert-popup--close:after {
    color: #fff !important;
    content: "X" !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    position: absolute !important;
    right: 0.8em !important;
    top: 0.5em !important;
    -webkit-transform: scaleX(1.25) !important;
    transform: scaleX(1.25) !important;
    transition: color 0.3s ease !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important
}

#cookie-alert-popup .cookie-alert-popup--close:hover:after {
    color: #212121 !important
}
@-webkit-keyframes cookie-alert-popup--close {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    20% {
        -webkit-transform: scale(0.9, 1.1);
        transform: scale(0.9, 1.1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }
}

@keyframes cookie-alert-popup--close {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    20% {
        -webkit-transform: scale(0.9, 1.1);
        transform: scale(0.9, 1.1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }
}

@-webkit-keyframes cookie-alert-popup--open {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    80% {
        -webkit-transform: scale(0.9, 1.1);
        transform: scale(0.9, 1.1)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes mio-cookie-popup__open {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    80% {
        -webkit-transform: scale(0.9, 1.1);
        transform: scale(0.9, 1.1)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

/* Testimonials Fix - Override All Rules */
.testimonilas-carousel .swiper-slide .testi-item,
.testimonilas-carousel .swiper-slide .testimonilas-text {
    width: 100% !important;
    opacity: 1 !important;
    transform: scale(1) !important;
    visibility: visible !important;
    display: block !important;
    background: #fff !important;
}
