
@font-face {
    font-family: 'OutFit Regular';
    src: url('fonts/Outfit-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;

}

@font-face {
    font-family: 'OutFit Bold';
    src: url('fonts/Outfit-Bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;

}

@font-face {
    font-family: 'OutFit Semibold';
    src: url('fonts/Outfit-SemiBold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;

}

@font-face {
    font-family: 'OutFit Extrabold';
    src: url('fonts/Outfit-ExtraBold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;

}

@font-face {
    font-family: 'OutFit Light';
    src: url('fonts/Outfit-Light.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;

}

@font-face {
    font-family: 'OutFit Medium';
    src: url('fonts/Outfit-Medium.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --neutral-100: #FFFFFF;
    --neutral-200: #F5F5F5;
    --neutral-300: #E6E6E6;
    --neutral-400: #CCCCCC;
    --neutral-600: #808080;
    --neutral-800: #212121;
    --outfit-reg: 'OutFit Regular';
    --outfit-bold: 'OutFit Bold';
    --outfit-semibold: 'OutFit Semibold';
    --outfit-light: 'OutFit Light';
    --outfit-medium: 'OutFit Medium';
    --primary-color: #F1802A;
}

body {
    font-family: var(--outfit-medium), serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--neutral-800);
    overflow-x: hidden;
}

h3 a {
    color: #fff;
}

.header-v2 {
    width: 100%;
}


.logo-v2 > a > img {
    width: auto;
    height: 48px;
}

.card-image-header-component-v2 {
    background-size: cover;
    background-position: center center;
    border-radius: 24px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    color: #fff;
    height: 100%;
}

.card-image-medium-component-v2 {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    border-radius: 24px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 32px;
    color: #fff;
    height: 100%;
    overflow: hidden;
}

@media (max-width: 991px) {
    .card-image-medium-component-v2 {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 16px;
    }
}

.card-image-medium-component-v2 > .arrow-top {
    position: absolute;
    border-radius: 64px;
    padding: 8px;
    background-color: var(--neutral-100);
    right: 16px;
    top: 16px;
    transform: translateY(20%);
}

@media (max-width: 991px) {
    .card-image-medium-component-v2 > .arrow-top {
        padding: 4px 5px;
        right: 12px;
        top: 12px;
        border-radius: 42px;
    }
}

.arrow-top img {
    width: 32px;
    height: 32px;
}

@media (max-width: 991px) {
    .arrow-top img {
        width: 21px;
        height: 21px;
    }
}

.card-image-full-width-component-v2 {
    position: relative;
    background-position: center center;
    border-radius: 24px;
    padding-left: 64px;
    color: #fff;
    height: 400px;
}

@media (max-width: 991px) {
    .card-image-full-width-component-v2 {
        height: 600px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.card-image-full-width-component-v2 > .arrow-top {
    position: absolute;
    border-radius: 64px;
    padding: 8px;
    background-color: var(--neutral-100);
    right: 1%;
    top: 0;
    z-index: 2;
    transform: translateY(20%);
}

@media (max-width: 991px) {
    .card-image-full-width-component-v2 > .arrow-top {
        right: 2%;
    }
}

.toggle-card-content {
    width: 609px;
    z-index: 2;
}

@media (max-width: 991px) {
    .toggle-card-content {
        width: 100%;
        text-align: center;
    }
}

.toggle-title {
    font-family: 'OutFit Semibold', sans-serif;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 1%;
}

@media (max-width: 991px) {
    .toggle-title {
        font-size: 32px;
    }
}

.toggle-desc {
    padding-top: 16px;
    font-family: 'OutFit Regular', sans-serif;
    font-size: 20px;
    line-height: 30px;
}

.first-gradient {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 24px;
    width: 100%;
    height: 100%;
    opacity: 75%;
    /*background: linear-gradient(180deg, rgba(162, 0, 84, 1) 15%, rgba(162, 0, 84, 0) 100%);*/
    background: linear-gradient(
            to bottom,
            rgba(162, 0, 84, 1) 15%,
            rgba(162, 0, 84, 0) 90%
    );
    z-index: 1;
}

.second-gradient {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 24px;
    width: 50%;
    height: 100%;
    opacity: 75%;
    background: linear-gradient(
            to right,
            rgba(241, 128, 42, 1) 0%,
            rgba(241, 128, 42, 0) 100%
    );
    z-index: 1;
    /*background: linear-gradient(to right, rgba(241, 128, 42, 1) 15%, rgba(241, 128, 42, 0) 100%);*/
}

.black-gradient {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 24px;
    width: 100%;
    height: 100%;
    opacity: 75%;
    background: rgba(0,0,0, 30%);
}

.capsule-accordion-tabs-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.capsule-accordion-tabs-scroll {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.capsule-accordion-tabs-scroll-mobile {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.capsule-accordion-tabs {
    display: flex;
    gap: 9px;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding: 8px 0;
    justify-content: center;
}

@media (max-width: 991px) {
    .capsule-accordion-tabs {
        justify-content: start;
    }
}

.capsule-scroll-btn-mobile {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    border: none;
    font-size: 18px;
    width: 24px;
    height: 38px;
    cursor: pointer;
    z-index: 2;
    display: none; /* JS will toggle visibility */
}

.capsule-scroll-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    border: none;
    width: 24px;
    height: 38px;
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
    display: none;
}

.capsule-scroll-btn-mobile.left {
    background: white;
    left: 0;
}

.capsule-scroll-btn-mobile.left img {
    transform: rotate(180deg);
}

.capsule-scroll-btn-mobile.right {
    background: white;
    right: 0;
}


.capsule-scroll-btn.left {
    background: white;
    left: 0;
}

.capsule-scroll-btn.left img {
    transform: rotate(180deg);
}

.capsule-scroll-btn.right {
    background: white;
    right: 0;
}

.capsule-accordion-tabs-scroll::-webkit-scrollbar {
    display: none;
}

.capsule-accordion-tabs-scroll-mobile::-webkit-scrollbar {
    display: none;
}

.header-card-link-carousel {
    display: block;
    width: 305px;
    height: 150px;
    /*aspect-ratio: 305 / 200;*/
}

@media (max-width: 991px) {
    .header-card-link-carousel {
        width: 145px;
        height: 145px;
    }
}

.hotel-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    /*box-shadow: 0 4px 12px rgba(0,0,0,0.1);*/
}

.hotel-card {
    width: 305px;
    height: 200px;
    display: block;
    background-size: cover;
}


/*.hotel-card img {*/
/*    width: 350px;*/
/*    height: 200px;*/
/*    display: block;*/
/*    object-fit: cover;*/
/*}*/

/*@media (max-width: 991px) {*/
/*    .hotel-card img {*/
/*        width: 145px;*/
/*        height: 145px;*/
/*    }*/
/*}*/

@media (min-width: 991px) {
    .hotel-card {
        width: 145px;
        height: 145px;
    }
}

@media (min-width: 768px) {
    .hotel-card {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 575px) {
    .hotel-card {
        /*width: 145px;*/
        width: 100%;
        height: 145px;
    }
}

@media (max-width: 360px) {
    .hotel-card {
        width: 138px;
        height: 138px;
    }
}

@media (max-width: 320px) {
    .hotel-card {
        width: 122px;
        height: 122px;
    }
}

.card-overlay {
    position: absolute;
    bottom: -5%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to bottom,rgba(0, 0, 0, 0) 60%,rgba(0, 0, 0, 1) 100%);
    /*background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);*/
    /*background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20.28%, rgba(0, 0, 0, 1) 108.8%);*/
    box-sizing: border-box;
}


.hotel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    /*background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);*/
    /*background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20.28%, rgba(0, 0, 0, 1) 108.8%);*/
    color: #fff;
    box-sizing: border-box;
}

.post-label {
    position: absolute;
    border-radius: 32px;
    padding: 4px 24px;
    font-size: 16px;
    line-height: 24px;
    color: var(--neutral-100);
    background-color: #A20054;
    left: 16px;
    top: 24px;
    transform: translateY(20%);
    z-index: 2;
}

@media (max-width: 991px) {
    .post-label {
        top: 16px;
        padding: 2px 16px;
        font-size: 14px;
        line-height: 21px;
    }
}

.hotel-overlay > h3 {
    font-family: 'OutFit Semibold', sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
}

@media (max-width: 991px) {
    .hotel-overlay > h3 {
        font-size: 14px;
        line-height: 21px;
    }
}

@media (min-width: 991px) {
    .header-card-link-carousel {
        aspect-ratio: 150/40;
    }
}

@media (min-width: 1200px) {
    .header-card-link-carousel {
        aspect-ratio: 146/145;
    }
}

@media (min-width: 1400px) {
    .header-card-link-carousel {
        aspect-ratio: 305 / 150;
    }
}

.medium-card-link-carousel {
    display: block;
    aspect-ratio: 432 / 500;
}

@media (min-width: 576px) {
    .medium-card-link-carousel {
        aspect-ratio: 250 / 288;
    }
}

@media (min-width: 768px) {
    .medium-card-link-carousel {
        aspect-ratio: 250 / 288;
    }
}

@media (min-width: 992px) {
    .medium-card-link-carousel {
        /*aspect-ratio: 205 / 100;*/
        aspect-ratio: 250 / 288;
        /*height: 145px;*/
    }
}

@media (min-width: 1200px) {
    .medium-card-link-carousel {
        aspect-ratio: 350 / 400;
    }
}

@media (min-width: 1400px) {
    .medium-card-link-carousel {
        aspect-ratio: 432 / 500;
    }
}

.wider-card-link-carousel {
    display: block;
    aspect-ratio: 660 / 400;
}

@media (min-width: 576px) {
    .wider-card-link-carousel {
        aspect-ratio: 335 / 250;
    }
}

@media (min-width: 768px) {
    .wider-card-link-carousel {
        aspect-ratio: 660 / 400;
    }
}

@media (min-width: 992px) {
    .wider-card-link-carousel {
        aspect-ratio: 660 / 400;
    }
}

@media (min-width: 1200px) {
    .wider-card-link-carousel {
        aspect-ratio: 660 / 400;
    }
}

@media (min-width: 1400px) {
    .wider-card-link-carousel {
        aspect-ratio: 660 / 400;
    }
}


.header-card-link {
    display: block;
    width: 305px;
    height: 200px;
}

@media (max-width: 991px) {
    .header-card-link {
        display: block;
        width: 146px;
        height: 145px;
    }
}

.medium-card-link {
    display: block;
    width: 432px;
    height: 500px;
}

@media (max-width: 991px) {
    .medium-card-link {
        display: block;
        width: 250px;
        height: 288px;
    }
}

/*.card-image-header-component-v2 .card-text-v2 {*/
/*    font-family: 'OutFit Semibold', sans-serif;*/
/*    font-size: 16px;*/
/*    line-height: 24px;*/
/*    letter-spacing: 0;*/
/*}*/

.card-image-header-component-v2 > .card-text-v2 > h3 {
    font-family: 'OutFit Semibold', sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
}

@media (max-width: 991px) {
    .card-image-header-component-v2 > .card-text-v2 > h3 {
        font-size: 14px;
        line-height: 21px;
    }
}

.card-image-medium-component-v2 > .card-text-v2 > h3 {
    font-family: 'OutFit Semibold', sans-serif;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0;
    position: relative;
    z-index: 3;
}

@media (max-width: 991px) {
    .card-image-medium-component-v2 > .card-text-v2 > h3 {
        font-size: 18px;
        line-height: 27px;
    }
}

.menu-item-v2 {
    /*font-family: 'OutFit Medium', sans-serif;*/
    padding: 8px;
    cursor: pointer;
    border-bottom: 0 #fff solid;
    transition: border-bottom-color 0.5s ease-in-out, border-bottom-width 0.5s ease-in-out;
}

.menu-item-v2.active {
    font-family: 'OutFit Bold', sans-serif;
    border-bottom: 2px #000 solid;
}

.open-drawer {
    height: 180px;
}

.header-v2 .header-container-v2 {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    padding: 13px 48px;
    border-radius: 32px;
    background-color: var(--neutral-100);
    z-index: 1000;
    max-height: 80px;
    transition: max-height 0.5s ease-in-out;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}


@media only screen and (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
}
/*.drawer-container-v2 {*/
/*    padding-top: 64px;*/
/*}*/
.drawer-content-v2 {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
}

.drawer-content-v2.active {
    max-height: 999px; /* big enough for your content */
    opacity: 1;
    transform: translateY(0);
}

.simple-cards {
    gap: 20px;
}

.icon-header {
    cursor: pointer;
}

.icon-header a {
    font-family: 'OutFit Medium', sans-serif;
}

.icon-header a:hover {
    color: var(--neutral-800);
}

.icon-header svg {
    width: 24px;
    height: 24px;
    padding-right: 4px;
}

.header-container-v2.expanded {
    max-height: 1000px;
}

/*#lang_sel ul ul {*/
/*    position: fixed !important; !* or absolute if you adjust top/left manually *!*/
/*    top: auto !important;       !* override WPML default *!*/
/*    left: auto !important;*/
/*    z-index: 1001;*/
/*    background: white;*/
/*    box-shadow: 0 4px 12px rgba(0,0,0,0.1);*/
/*    display: none;*/
/*}*/

/*#lang_sel ul li:hover > ul {*/
/*    display: block;*/
/*}*/

.overlay-bg {
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    display: none;
    transition: opacity 0.3ms ease-in-out;
}


.capsule-accordion-container {
    width: 100%;
    font-family: 'Outfit Regular', sans-serif;
    font-size: 16px;
    /*padding-top: 24px;*/
}

.capsule-accordion-container-mobile {
    width: 100%;
    font-family: 'Outfit Regular', sans-serif;
    font-size: 16px;
    /*padding-top: 24px;*/
}

/*.capsule-accordion-tabs {*/
/*    display: flex;*/
/*    gap: 9px;*/
/*    flex-wrap: nowrap;*/
/*    white-space: nowrap;*/
/*}*/

.capsule-accordion-tab {
    flex: 0 0 auto;
    cursor: pointer;
    padding: 12px 24px;
    border-radius: 32px;
    background-color: var(--neutral-200);
    color: var(--neutral-600);
    transition: all 0.3s ease;
    margin-bottom: 32px;
}

@media (max-width: 991px) {
    .capsule-accordion-tab {
        padding: 6px 16px;
        margin-bottom: 16px;
    }
}

.capsule-accordion-tab.active {
    background-color: var(--primary-color);
    color: #fff;
}

/*.capsule-accordion-content {*/
/*    max-height: 0;*/
/*    overflow: hidden;*/
/*    transition: max-height 0.5s ease, opacity 0.5s ease;*/
/*    opacity: 0;*/
/*}*/

/*.capsule-accordion-content.active {*/
/*    max-height: 100vh; !* adjust for your content *!*/
/*    opacity: 1;*/
/*    padding-top: 32px;*/
/*}*/
.capsule-accordion-content {
    opacity: 0;
    max-height: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
}

.capsule-accordion-content.active {
    opacity: 1;
    max-height: 100vh;
    visibility: visible;
}

.header-v2-mobile {
    width: 100%;
}

.header-container-v2-mobile {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--neutral-100);
    z-index: 1000;
    padding: 20px 16px;
    height: 64px;
    transition: height 0.5s ease-in-out;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.06);
}

.semi-border {
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    border-bottom: 0;
}

.full-border {
    border-radius: 32px;
}

.menu-main {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    animation: fadeIn 0.3s ease;
}

.menu-main > .menu-item-v2-mobile {
    padding-top: 24px;
}

.menu-item-v2-mobile:first-child {
    padding-top: 0;
}

.menu-sub {
    animation: slideIn 0.3s ease;
    margin-top: 32px;
}

.sub-header {
    display: flex;
}
.main-header,
.sub-header {
    padding: 0 10px 10px;
}


@keyframes slideIn {
    from { opacity: 0; transform: translateX(10px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.header-container-v2 .menu-container {
    height: 48px;
}

.menu-container > .logo-v2 {
    position: absolute;
    /*left: 32px;*/
}

.menu-container > .nav-other-v2 {
    position: absolute;
    /*right: 32px;*/
    top: 25px;
}

.header-container-v2-mobile .logo-v2 img {
    width: auto;
    height: 32px;
}

.mobile-menu-icon {
    top: 25px;
}

.mobile-menu-icon.active {
    top: 30px;
}

.menu-bar-v2 {
    padding-top: 32px;
}

.menu-item-v2-mobile {
    cursor: pointer;
}

.back-button {
    cursor: pointer;
}

.hero-banner-v2 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 600px;
    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;
    padding-top: 188px;
}

.search-container {
    align-items: center;
    height: 48px;
    gap: 16px;
}

.search-container > div > input[type="text"] {
    border: 0;
    box-shadow: none;
    width: 100%;
    padding: 0;
}

.search-container-mobile {
    gap: 16px;
}

.search-container-mobile > div > input[type="text"] {
    border: 0;
    box-shadow: none;
    width: 100%;
    padding: 0;
    height: auto;
}

.search-close {
    cursor: pointer;
}

.search-close-mobile {
    cursor: pointer;
}

.search-loader-mobile {
    margin-top: auto;
    margin-bottom: auto;
}

#live-search-results {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    /*padding-left: 32px;*/
    /*padding-right: 32px;*/
    padding-bottom: 8px;
    background: #fff;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 0 0 24px 24px;
}

#live-search-results p {
    padding-top: 8px;
    padding-left: 32px;
    padding-right: 32px;
}

#live-search-results hr {
    margin-top: 18px;
    margin-bottom: 16px;
}

#live-search-results-mobile {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    /*padding-left: 20px;*/
    /*padding-right: 20px;*/
    padding-bottom: 8px;
    background: #fff;
    z-index: 1000;
    max-height: 370px;
    overflow-y: auto;
    border-radius: 0 0 24px 24px;
}

#live-search-results-mobile hr {
    margin-top: 24px;
    margin-bottom: 16px;
}

.live-search-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.live-search-list li {
    padding-top: 8px;
    padding-bottom: 8px;
    /*border-bottom: 1px solid #eee;*/
}

/*.live-search-list li a svg {*/
/*    margin-right: 8px;*/
/*}*/

.live-search-list li a {
    display: block;
    text-decoration: none;
    color: #333;
    padding-left: 32px;
    padding-right: 32px;
    font-size: 16px;
    line-height: 24px;
}

@media (max-width: 991px) {
    .live-search-list li a {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 14px;
        line-height: 21px;
    }
}

.live-search-list li:hover {
    background: #f5f5f5;
}

@media (max-width: 991px) {
    .hero-banner-v2 {
        height: 480px;
        padding-top: 194px;
    }
}

.hero-banner-v2 .top-text {
    font-family: 'OutFit Medium', sans-serif;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -1%;
    vertical-align: top;
    text-transform: uppercase;
    color: var(--neutral-100);
}

@media (max-width: 991px) {
    .hero-banner-v2 .top-text {
        font-size: 24px;
        line-height: 24px;
    }
}

.hero-banner-v2 .big-text {
    position: relative;
    top: -24px;
    font-family: 'OutFit Bold', sans-serif;
    font-size: 180px;
    line-height: 180px;
    letter-spacing: -1%;
    vertical-align: top;
    text-transform: uppercase;
    color: var(--neutral-100);
    /*margin-bottom: 32px;*/
}

@media (max-width: 991px) {
    .hero-banner-v2 .big-text {
        font-size: 72px;
        line-height: 72px;
        top: -5px;
        margin-bottom: 114px;
    }
}

.btn-explore-v2 {
    padding: 12px 16px;
    border-radius: 32px;
    background-image: linear-gradient(to right, #A20054 0%, #F1802A 100%);
    color: var(--neutral-100) !important;
    background-repeat: no-repeat;
    width: auto;
    height: auto;
}

.btn-explore-v2 h3 {
    font-size: 16px;
    line-height: 24px;
}

@media (max-width: 991px) {
    .btn-explore-v2 {
        max-width: 100%;
        height: 48px;
    }
}

.bottom-control {
    /*position: relative;*/
    /*margin-top: 24px;*/
    /*margin-bottom: 24px;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*padding-bottom: 0;*/
    width: 100%;
    position: relative;
}

.pt-32 {
    padding-top: 32px;
}

/*.my-swiper .bottom-control {*/
/*    padding-top: 24px;*/
/*}*/

.nav-left {
    flex: 1;
}

.my-swiper .bottom-control .nav-right {
    padding-top: 24px;
    padding-bottom: 32px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 24px;
    padding-bottom: 0;
}

.navigation-btn-mobile {
    padding-top: 16px;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
}


.navigation-btn {
    position: absolute;
    right: 0;
    top: 80%;
    transform: translateY(-50%);
}

.navigation-btn .btn-container {
    gap: 16px;
}

.next-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    background-color: #F1802A;
    color: #fff;
}

.next-btn svg path {
    stroke: #fff;
}

.prev-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    background-color: #F1802A;
    color: #fff;
    padding:0;
}

.prev-btn svg path {
    stroke: #fff;
}

@media (max-width: 991px) {
    .prev-btn {
        width: 32px;
        height: 32px;
        padding: 12px;
    }

    .next-btn {
        width: 32px;
        height: 32px;
        padding: 12px;
    }
}


/*.prev-btn svg {*/
/*    filter: brightness(0) invert(1);*/
/*}*/

.carousel-container-v2 {
    width: 100%; /* no flex! */
}

.my-swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.medium-swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.wider-swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 24px;
}

.blog-swiper {
    width: 100%;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
}

.carousel-pagination {
    display: block;
}

/*.swiper-pagination-bullet {*/
/*    transition: border 0.5s ease-in-out !important;*/
/*}*/

/*.swiper-pagination-bullet-active {*/
/*    background-color: #F1802A !important;*/
/*    border-radius: 100px !important;*/
/*    width: 30px !important;*/
/*}*/

.swiper-pagination-bullet {
    transition: width 0.5s ease-in-out,
    border-radius 0.5s ease-in-out !important;
}

.swiper-pagination-bullet-active {
    background-color: #F1802A !important;
    border-radius: 100px !important;
    width: 48px !important;
}

.prev-btn.disabled,
.next-btn.disabled {
    background-color: var(--neutral-300);
    pointer-events: none;
    cursor: default;
}

.prev-btn.disabled svg path {
    stroke: #ABABAB;
}

.next-btn.disabled svg path {
    stroke: #ABABAB;
}

.title-overlay-container {
    display: flex;
    justify-content: center;
    padding-bottom: 24px;
}

.overlay-wrapper {
    position: relative;
    display: inline-block;
    text-align: center;
}

.background-text {
    font-family: 'OutFit Extrabold', sans-serif;
    font-size: 180px;
    line-height: 180px;
    font-weight: bold;
    color: #F1802A;
    opacity: 10%;
    white-space: nowrap;
    text-transform: uppercase;
}

.foreground-text {
    font-family: 'OutFit Semibold', sans-serif;
    font-size: 48px;
    line-height: 96px;
    color: var(--neutral-800);
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .background-text {
        font-size: 72px;
        line-height: 64px;
    }

    .top-things-bg-text {
        font-size: 52px;
        line-height: 52px;
    }

    /*.ready-plan-bg-text {*/
    /*    font-size: 32px;*/
    /*    line-height: 32px;*/
    /*}*/

    .get-inspired-bg-text {
        font-size: 48px;
        line-height: 64px;
    }

    .foreground-text {
        font-size: 24px;
        line-height: 32px;
    }
}

/* Tablet Portrait */
@media (max-width: 991px) {
    .background-text {
        font-size: 72px;
        line-height: 64px;
    }

    .top-things-bg-text {
        font-size: 52px;
        line-height: 52px;
    }

    /*.ready-plan-bg-text {*/
    /*    font-size: 32px;*/
    /*    line-height: 32px;*/
    /*}*/

    .get-inspired-bg-text {
        font-size: 48px;
        line-height: 64px;
    }

    .foreground-text {
        font-size: 24px;
        line-height: 32px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .background-text {
        font-size: 72px;
        line-height: 64px;
    }

    .top-things-bg-text {
        font-size: 52px;
        line-height: 52px;
    }

    /*.ready-plan-bg-text {*/
    /*    font-size: 32px;*/
    /*    line-height: 32px;*/
    /*}*/

    .get-inspired-bg-text {
        font-size: 48px;
        line-height: 64px;
    }

    .foreground-text {
        font-size: 24px;
        line-height: 32px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .background-text {
        font-size: 72px;
        line-height: 64px;
    }

    .top-things-bg-text {
        font-size: 52px;
        line-height: 52px;
    }

    /*.ready-plan-bg-text {*/
    /*    font-size: 32px;*/
    /*    line-height: 32px;*/
    /*}*/

    .get-inspired-bg-text {
        font-size: 48px;
        line-height: 64px;
    }

    .foreground-text {
        font-size: 24px;
        line-height: 32px;
    }
}

@media (max-width: 991px) {
    .medium-swiper > .bottom-control {
        display: none !important;
    }
}

.wpml-ls-legacy-dropdown-click {
    width: auto !important;
}

.language-switcher-trigger {
    display: flex;
    cursor: pointer;
    gap: 4px;
}

.custom-language-dropdown {
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    min-width: 75px;
    border-radius: 16px;
    /*padding: 12px 1px 12px 8px;*/
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    position: absolute;
    top: -30px;
}

.custom-language-dropdown-mobile {
    display: none;
    opacity: 0;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    min-width: 75px;
    border-radius: 16px;
    padding: 6px 0;
    transition: opacity 0.3s ease-in-out;
    max-height: 40vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.search-loader {
    margin-top: auto;
    margin-bottom: auto;
}

.custom-language-dropdown.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.custom-language-dropdown-mobile.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.language-dropdown-inner {
    list-style: none;
    margin: 0;
    padding: 12px 8px 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 82px;
}

.language-dropdown-inner li {
    /*padding: 8px 12px;*/
    /*padding-top: 10px;*/
    /*padding-bottom: 10px;*/
    /*padding-left: 8px;*/
    /*padding: 4px 8px;*/
    padding: 4px 8px;
    /*width: 36px;*/
}

.language-dropdown-inner .active-lang {
    background-color: var(--neutral-200);
    border-radius: 16px;
}

.language-dropdown-inner li a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

.flag-emoji {
    font-size: 18px;
    margin-right: 6px;
}

.lang-arrow-down {
    transition: all 0.3s ease-in-out;
}

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

.rak-common-carousel {
    padding-left: 48px;
    padding-right: 48px;
    padding-top: 64px;
    /*padding-bottom: 64px;*/
}

@media (max-width: 991px) {
    .rak-common-carousel {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.rak-summer-deals {
    padding-top: 64px;
    padding-left: 48px;
    padding-right: 48px;
    /*padding-bottom: 64px;*/
}

@media (max-width: 991px) {
    .rak-summer-deals {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.rak-blog-v2 {
    padding-top: 64px;
    position: relative;
    padding-bottom: 120px;
    z-index: 1;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 2rem;
    padding-left: 48px;
    padding-right: 48px;
}

.featured-article {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    padding-top: 24px;
}

.featured-article img {
    width: 660px;
    height: 300px;
    object-fit: cover;
    object-position: top center;
    border-radius: 24px;
}

.featured-article .content-v2 {
    width: 50%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.article-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.article-card img {
    /*width: 432px;*/
    /*height: 250px;*/
    width: 432px;
    height: 250px;
    aspect-ratio: 432/250;
    object-fit: cover;
    border-radius: 32px;
}

@media (max-width: 991px) {
    .article-card img {
        width: 257px;
        height: 191px;
        aspect-ratio: 257/191;
    }
}

.article-card .content-v2 {
    padding-top: 16px;
}

.content-v2 h2 {
    font-family: 'OutFit Semibold', sans-serif;
    font-size: 32px;
    line-height: 48px;
}

.content-v2 h3 {
    font-family: 'OutFit Semibold', sans-serif;
    font-size: 24px;
    line-height: 32px;
}

@media (max-width: 991px) {
    .content-v2 h3 {
        font-size: 14px;
        line-height: 24px;
    }
}

.content-v2 p {
    font-family: 'OutFit Regular', sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.meta {
    font-family: 'OutFit Regular', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--neutral-600);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
}

.rak-blog-v2 > div > a:hover {
    color: #fff;
}
@media (max-width: 991px) {
    .meta {
        font-size: 14px;
        line-height: 21px;
    }
}


.meta > a > .arrow-top {
    background-color: var(--neutral-800);
    border-radius: 64px;
    width: 48px;
    height: 48px;
    padding: 8px;
}

@media (max-width: 1024px) {
    .meta > a > .arrow-top {
        border-radius: 42px;
        width: 32px;
        height: 32px;
        padding: 4px 5px;
    }
}

.meta > a > .arrow-top > img {
    width: 32px;
    height: 32px;
    filter: invert(1);
}

.date-view {
    padding-top: 12px;
    padding-bottom: 12px;
}

.date-view svg {
    vertical-align: text-bottom;
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .featured-article {
        grid-column: auto;
    }
}

.more-articles-btn {
    background-color: #212121;
    color: var(--neutral-200);
    font-family: 'OutFit Medium', sans-serif;
    font-size: 16px;
    line-height: 24px;
    border-radius: 32px;
    padding: 12px 16px;
    margin-top: 48px;
}

@media (max-width: 991px) {
    .more-articles-btn {
        width: 100%;
        margin-left: 20px;
        margin-right: 20px;
        text-align: center;
    }
}

.cloudy-bg {
    position: absolute;
    /*top: 800px;*/
    /*top: clamp(800px, 50vh, 800px);*/
    top: 30vh;
    right: 0;
    left: 0;
    /*height: 479px;*/
    height: 550px;
    background-size: cover;
    background-position: bottom center;
    z-index: 0;
}

@media (min-width: 320px) {
    .cloudy-bg {
        top: 40vh;
    }
}

@media (min-width: 360px) {
    .cloudy-bg {
        top: 40vh;
    }
}

@media (min-width: 412px) {
    .cloudy-bg {
        top: 35vh;
    }
}

@media (min-width: 432px) {
    .cloudy-bg {
        top: 30vh;
    }
}

@media (min-width: 576px) {
    .cloudy-bg {
        top: 50vh;
    }
}

@media (min-width: 768px) {
    .cloudy-bg {
        top: 60vh;
    }
}

@media (min-width: 800px) {
    .cloudy-bg {
        top: 33vh;
    }
}

@media (min-width: 992px) {
    .cloudy-bg {
        top: 40vh;
    }
}

@media (min-width: 1200px) {
    .cloudy-bg {
        top: 110vh;
    }
}

@media (min-width: 1400px) {
    .cloudy-bg {
        top: 100vh;
    }
}

@media (min-width: 2496px) {
    .cloudy-bg {
        top: 60vh;
    }
}

.video-gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Main Preview */
.main-video-preview {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 4px;
    margin-bottom: 24px;
}

.main-video-preview img {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    pointer-events: none;
    z-index: 1;
}

.play-button svg {
    width: 100px;
    height: 100px;
}

@media (max-width: 991px) {
    .play-button svg {
        width: 50px;
        height: 50px;
    }
}

.play-button-bg {
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.hover-play {
    position: relative;
    cursor: pointer;
}

.play-button,
.play-button-bg {
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (max-width: 991px) {
    .play-button,
    .play-button-bg {
        opacity: 1;
    }

}

.hover-play:hover .play-button,
.hover-play:hover .play-button-bg {
    opacity: 1;
}

/* Thumbnail Slider */
.thumb-slider .swiper-slide {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.thumb-slider img {
    aspect-ratio: 318/318;
    border-radius: 16px;
    object-fit: cover;
}

/* Modal Styling */
/*.modal-v2 {*/
/*    display: none;*/
/*    position: fixed;*/
/*    z-index: 1000;*/
/*    inset: 0;*/
/*    background-color: rgba(0, 0, 0, 0.8);*/
/*}*/

/*.modal-content-v2 {*/
/*    position: relative;*/
/*    !*max-width: 800px;*!*/
/*    width: 100%;*/
/*    margin: 10% auto;*/
/*    background: #000;*/
/*    padding: 1rem;*/
/*    border-radius: 10px;*/
/*}*/

/*.modal-content-v2 video {*/
/*    width: 100%;*/
/*    border-radius: 10px;*/
/*}*/

/*.close-v2 {*/
/*    position: absolute;*/
/*    top: 8px;*/
/*    right: 16px;*/
/*    font-size: 2rem;*/
/*    color: white;*/
/*    cursor: pointer;*/
/*}*/
.modal-v2 {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

#playPauseIcon {
    color: #fff;
    opacity: 0;
    transition: opacity 500ms ease-in-out;
}

/*#playPauseIcon:hover {*/
/*    opacity: 1;*/
/*}*/

#playPauseIcon svg {
    width: 100px;
    height: 100px;
}



@media (max-width: 991px) {
    #playPauseIcon svg {
        width: 25px;
        height: 25px;
    }
}

/*.video-wrapper {*/
/*    position: relative;*/
/*}*/

.video-wrapper-v2 {
    height: 100%;
}

.video-controls-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.video-controls-overlay:hover {
    opacity: 1;
}

/*.modal-content-v2 {*/
/*    position: relative;*/
/*    width: 90%;*/
/*    max-width: 800px;*/
/*    border-radius: 16px;*/
/*    overflow: hidden;*/
/*}*/


/*.modal-content-v2 video {*/
/*    width: 100%;*/
/*    height: auto;*/
/*    display: block;*/
/*    border-radius: 16px;*/
/*    background-color: black;*/
/*}*/

.modal-content-v2 {
    position: relative;
    width: 93.3%; /* aligns with Figma's 1344/1440 */
    max-width: 1344px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background-color: black; /* fallback */
}

/* Video: fill container completely */
.modal-content-v2 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    background-color: black;
}


/* Close button styling */
.close-v2 {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.3s;
}

.close-v2 svg {
    width: 50px;
    height: 50px;
}

@media (max-width: 991px) {
    .close-v2 svg {
        width: 25px;
        height: 25px;
    }
}

.close-v2:hover {
    opacity: 0.6;
}

.rak-video-section {
    position: relative;
    padding-top: 64px;
    padding-left: 48px;
    padding-right: 48px;
    padding-bottom: 96px;
    background-color: #F5F5F5;
}

@media (max-width: 991px) {
    .rak-video-section {
        padding-top: 32px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 64px;
    }
}

.footer-2 {
    position: relative;
    width: 100%;
    background-image: linear-gradient(to right, #A20054, #F1802A);
    padding: 108px 48px 48px;
    border-top-left-radius: 48px;
    border-top-right-radius: 48px;
}

.footer-2-mobile {
    position: relative;
    width: 100%;
    background-image: linear-gradient(to right, #A20054, #F1802A);
    /*padding-top: 64px;*/
    border-top-left-radius: 48px;
    border-top-right-radius: 48px;
}

.footer-2::after {
    content: "";
    position: absolute;
    inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0; */
    background: #F5F5F5; /* example secondary bg */
    z-index: -10; /* ensure it's below the content */
}

.footer-2-mobile::after {
    content: "";
    position: absolute;
    inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0; */
    background: #F5F5F5; /* example secondary bg */
    z-index: -10; /* ensure it's below the content */
}

.footer-2 > .newsletter-section {
    position: absolute;
    top:-50px;
    right: 48px;
    left: 48px;
    background-color: var(--neutral-100);
    border-radius: 32px;
}

.footer-2 > .newsletter-section > .signup-section {
    display: flex;
    justify-content: space-between;
    padding: 36px 48px;
}

.footer-2 > .newsletter-section > .signup-section > .signup-text {
    font-family: 'OutFit Semibold', sans-serif;
    font-size: 24px;
    line-height: 32px;
    align-content: center;
}

.footer-2 > .newsletter-section > .signup-section > .signup-form {
    display: flex;
    gap: 16px;
}


.footer-2 > .newsletter-section > .signup-section > .signup-form > input[type="text"] {
    width: 330px;
    height: 48px;
    border-radius: 32px;
    border: 1px #CCCCCC solid;
    padding: 12px 16px;
}

/*.footer-2 > .newsletter-section > .signup-section > .signup-form > .btn-subscribe {*/
/*    font-family: 'OutFit Medium', sans-serif;*/
/*    font-size: 16px;*/
/*    line-height: 24px;*/
/*    border-radius: 32px;*/
/*    padding: 12px 16px;*/
/*    width: 150px;*/
/*    background-color: #F1802A;*/
/*    color: var(--neutral-100);*/
/*}*/

.footer-2-mobile > .newsletter-section {
    position: relative;
    top:-10px;
    width: 100%;
    background-color: var(--neutral-100);
    border-radius: 32px;
    /*margin-top: 80px;*/
}

.footer-2-mobile > .newsletter-section > .signup-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px 20px;
    gap: 16px;
    align-content: center;
}

.footer-2-mobile > .newsletter-section > .signup-section > .signup-text {
    font-family: 'OutFit Semibold', sans-serif;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
}

.footer-2-mobile > .newsletter-section > .signup-section > .signup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.signup-form > form > div {
    display: flex;
    gap: 16px;
}

@media (max-width: 991px) {
    .signup-form > form > div {
        display: flex !important;
        flex-direction: column;
        gap: 16px;
    }
}

.signup-form input[type="email"] {
    width: 100%;
    height: 48px;
    border-radius: 32px;
    border: 1px #CCCCCC solid;
    padding: 12px 16px;
    box-shadow: none;
}

@media(max-width: 991px) {
    .signup-form input[type="email"] {
        width: 100%;
        height: 48px;
        border-radius: 32px;
        border: 1px #CCCCCC solid;
        padding: 12px 16px;
        box-shadow: none;
    }
}

.btn-subscribe {
    font-family: 'OutFit Medium', sans-serif;
    font-size: 16px;
    line-height: 24px;
    border-radius: 32px;
    padding: 12px 16px;
    width: 150px;
    background-color: #F1802A;
    color: var(--neutral-100);
}

@media (max-width: 991px) {
    .btn-subscribe {
        width: 100%;
    }
}

.up-arrow {
    border-radius: 64px;
    width: 48px;
    height: 48px;
    padding: 8px;
    background-color: var(--neutral-100);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.up-arrow > svg {
    width: 32px;
    height: 32px;
}

.up-arrow.rotated {
    transform: rotate(180deg);
}

.up-arrow-mobile {
    border-radius: 64px;
    width: 48px;
    height: 48px;
    padding: 8px;
    background-color: var(--neutral-100);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.up-arrow-mobile > svg {
    width: 32px;
    height: 32px;
}

.up-arrow-mobile.rotated {
    transform: rotate(180deg);
}

hr {
    border: none;           /* removes default 1px inset border */
    height: 1px;            /* set desired thickness */
    background-color: var(--neutral-400);
    margin: 32px 0;
}

.footer-2 > .footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.footer-2-mobile > .footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-2 > .footer-content > .logo-content {
    display: flex;
    justify-content: space-between;
}

.footer-2-mobile > .footer-content > .logo-content {
    display: flex;
    justify-content: space-between;
}

.footer-2-mobile > .footer-content > .footer-menu-2 {
    padding-top: 32px;
}

.menu-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 34px;
}

.menu-list > a {
    color: #fff;
}

.footer-menu-2 {

}

.footer-menu-2 > div > .footer-link-2 {
    color: #fff;
}

.footer-list {
    display: flex;
    gap: 34px;
}

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

.footer-list-2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.footer-menu-2 > ul > li > a {
    color: #fff;
}

.footer-menu-2 > ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
}

.footer-bottom-mobile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.social-media-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #fff;
}

.social-media-container > .social-icons {
    display: flex;
    gap: 16px;
}

.copyright-text > p{
    color: #fff;
    align-content: center;
}

.footer-bottom-mobile > .copyright-text {
    padding-top: 32px;
    padding-bottom: 98px;
}

/*.toggle-footer {*/
/*    max-height: 0;*/
/*    overflow: hidden;*/
/*    transition: max-height 0.5s ease-in-out;*/
/*}*/

/*.toggle-footer.active {*/
/*    max-height: 1000px;*/
/*}*/

/*.toggle-footer-mobile {*/
/*    max-height: 0;*/
/*    overflow: hidden;*/
/*    transition: max-height 0.5s ease-in-out;*/
/*}*/

/*.toggle-footer-mobile.active {*/
/*    max-height: 1000px;*/
/*}*/

.toggle-footer-mobile > .footer-menu-2 > ul > li > a {
    font-family: 'OutFit Medium', sans-serif;
    font-size: 12px;
    line-height: 18px;
}

@media screen and (max-width: 1200px) {
    .hide-on-mobile {
        display: none !important;
    }

    .hide-on-desktop {
        display: block !important;
    }

    .mobile-menu-icon {
        position: absolute;
        /*right: 20px;*/
        top: auto;
        z-index: 333;
        font-size: 25px;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 30px;
        height: 20px;
    }
    .mobile-menu-icon:hover{
        color:#FF4B2B
    }
    .mobile-menu-icon.active {
        height: 40px;
    }

    .mobile-menu-icon .icon-bar {
        width: 26px;
        height: 2px;
        background: #000;
        position: absolute;
        right: 0;
    }
    .mobile-menu-icon .icon-bar.icon-bar-2 {
        top: 7px;
    }
    .mobile-menu-icon .icon-bar.icon-bar-3 {
        top: 14px;
    }

    .mobile-menu-icon .icon-bar{
        transition:all 0.5s ease;
    }
    .mobile-menu-icon.active .icon-bar-2 {
        opacity: 0;
        visibility: hidden;
    }
    .mobile-menu-icon.active .icon-bar-1 {
        transform: rotate(45deg);
    }
    .mobile-menu-icon.active .icon-bar-3 {
        transform: rotate(-45deg);
        top: 0;
    }
}


#geoRedirectModal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#geoRedirectModal .modal-content {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    max-width: 90%;
    width: 890px;
    text-align: center;
    font-family: sans-serif;
    top: 20%;
}



#geoRedirectModal .modal-content p {
    font-family: 'OutFit Regular', sans-serif;
    font-size: 24px;
    line-height: 36px;
    padding-top: 48px;
}


#geoRedirectModal .modal-content p strong {
    font-family: 'OutFit Semibold', sans-serif;
}

#geoRedirectModal .button-container {
    margin-top: 32px;
}

#geoRedirectModal .button-container button {
    display: block;
    margin: 0.5rem auto;
    padding: 16px 12px;
    border-radius: 32px;
    border: none;
    cursor: pointer;
    font-family: 'OutFit Medium', sans-serif;
    font-size: 16px;
    line-height: 24px;
    width: 241px;
}

#geoRedirectModal .button-container a {
    display: block;
    margin: 0.5rem auto;
    padding: 16px 12px;
    border-radius: 32px;
    border: none;
    cursor: pointer;
    font-family: 'OutFit Medium', sans-serif;
    font-size: 16px;
    line-height: 24px;
    width: 241px;
}

#geoRedirectModal .button-container .btn-primary {
    background-color: #f27c28;
    color: white;
}

#geoRedirectModal .button-container .btn-secondary {
    background: none;
    border: 2px solid #f27c28;
    color: #f27c28;
}

#closeModal {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    padding-top: 32px;
    padding-right: 32px;
}


@media (min-width: 320px) {
    #geoRedirectModal .modal-content {
        width: 300px;
        padding: 20px;
    }

    #closeModal {
        padding-top: 20px;
        padding-right: 20px;
    }

    #geoRedirectModal .modal-content p {
        font-size: 16px;
        line-height: 24px;
        padding-top: 32px;
    }

    #geoRedirectModal .button-container button {
        width: 165px;
    }
}


@media (min-width: 375px) {
    #geoRedirectModal .modal-content {
        width: 335px;
        padding: 20px;
    }

    #closeModal {
        padding-top: 20px;
        padding-right: 20px;
    }

    #geoRedirectModal .modal-content p {
        font-size: 16px;
        line-height: 24px;
        padding-top: 32px;
    }

    #geoRedirectModal .button-container button {
        width: 295px;
    }
}


@media (min-width: 991px) {

    #geoRedirectModal .modal-content {
        width: 335px;
        padding: 20px;
    }

    #closeModal {
        padding-top: 20px;
        padding-right: 20px;
    }

    #geoRedirectModal .modal-content p {
        font-size: 16px;
        line-height: 24px;
        padding-top: 32px;
    }

    #geoRedirectModal .button-container button {
        width: 295px;
    }
}

@media (min-width: 1024px) {

    #geoRedirectModal .modal-content {
        width: 890px;
        padding: 32px;
    }

    #closeModal {
        padding-top: 20px;
        padding-right: 20px;
    }

    #geoRedirectModal .modal-content p {
        font-size: 16px;
        line-height: 24px;
        padding-top: 32px;
    }

    #geoRedirectModal .button-container button {
        width: 241px;
    }
}