@font-face {
    font-family: 'Monotype Corsiva Local'; 
    src: url('static/fonts/Monotype-Corsiva.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

/* ========================================================================
   1. ROOT VARIABLES & BASIC SETUP
   ======================================================================== */
:root {
    --icon-blue: #13204c;
    --navy-blue: #15428a;
    --white: #ffffff;
    --background: #f0f4f8;
    --text-dark: #121212;
    --font-family: 'Wix Madefor Display', sans-serif;
    --font-cursive: 'Monotype Corsiva Local', cursive;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis {
    height: auto;
}

body {
    font-family: var(--font-family);
    background-color: var(--background);
    color: var(--text-dark);
    overflow-x: hidden;
    cursor: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.section-padding {
    padding: 12vw 8%;
}

/* ========================================================================
   2. PRELOADER & CURSOR
   ======================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--icon-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.preloader-logo {
    max-width: 150px;
    width: 100%;
    opacity: 0;
}

.cursor {
    pointer-events: none;
    position: fixed;
    z-index: 9999;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px solid var(--white);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    transition: transform 0.2s var(--ease-out-expo);
}

/* ========================================================================
   3. NAVBAR
   ======================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    color: var(--white);
    mix-blend-mode: difference;
}

.nav-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-cta {
    border: 1px solid var(--white);
    border-radius: 100px;
    padding: 10px 20px;
    font-weight: 500;
}

/* ========================================================================
   4. HERO SECTION
   ======================================================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('static/bg/1.jpg'); /* <-- Path to bg image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4); /* Dark overlay to make text readable */
}

/* Gaya untuk seluruh kalimat di hero section */
.hero-title {
    font-size: 4vw; /* Anda bisa sesuaikan ukurannya di sini */
    font-weight: 200; /* Membuat teks dasar menjadi tipis */
    color: var(--white);
    line-height: 1.1;
    text-align: center;
}

/* Gaya khusus hanya untuk kata "ICON" agar menjadi tebal */
.hero-title .hero-title-bold {
    font-weight: 700; /* Menimpa gaya sebelumnya menjadi tebal */
}

/* Memastikan animasi tetap berjalan untuk semua karakter */
.hero-title .char {
    display: inline-block;
}

/* Gaya untuk font tulisan tangan jika masih ingin digunakan di tempat lain */
.hero-cursive {
    font-family: var(--font-cursive);
    font-weight: normal;
}

/* Pastikan animasi tetap berjalan untuk semua karakter */
.hero-title .char, .hero-subtitle .char {
    display: inline-block;
}

/* Gaya untuk font tulisan tangan jika masih ingin digunakan */
.hero-title .hero-cursive {
    font-family: var(--font-cursive);
    font-weight: normal;
}

.hero-title .char {
    display: inline-block;
}

.hero-title .hero-cursive {
    font-family: var(--font-cursive);
    font-weight: normal;
}

/* ========================================================================
   5. GENERAL & SHARED STYLES
   ======================================================================== */
.section-header {
    max-width: 650px;
    margin-bottom: 5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--navy-blue);
}

.section-header p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-top: 1rem;
    color: #555;
    font-family: var(--font-family);
}

.anim-title .word, .philosophy-text .line {
    display: inline-block;
    overflow: hidden;
}

.anim-title .char, .philosophy-text .word {
    transform: translateY(110%) skewY(5deg);
}

.anim-fade-in {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(5px);
}

/* ========================================================================
   6. PAGE SECTIONS
   ======================================================================== */
/* --- PHILOSOPHY --- */

.philosophy-section {
    position: relative;
    color: var(--background);
    text-align: center;
    background-image: url('static/bg/2.jpg'); /* <-- Path to bg image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Simple parallax effect */
    z-index: 1;
}

.philosophy-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(18, 18, 18, 0.8); /* Dark overlay, adjust transparency (0.8) if needed */
    z-index: -1;
}
.philosophy-section .section-title {
    color: var(--background);
}
/* ========================================================================
    Custom shared background for multiple sections
    ======================================================================== */
/* Use the same background image `static/bg/5.jpg` for several sections.
   Desktop: fixed parallax-like effect; Mobile: scroll to avoid performance issues. */
.facilities-section {
    background-image: url('static/bg/5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.coaches-section {
    background-image: url('static/bg/6.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.rackets-section {
    background-image: url('static/bg/7.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.location-section {
    background-image: url('static/bg/8.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Gradient titles for specific sections (user request)
   From #293e91 to #182657 — applied as background-clip text so text shows gradient
   Fallback color is provided for very old browsers. */
.facilities-section .section-title,
.coaches-section .section-title,
.rackets-section .section-title,
.location-section .section-title {
    background: linear-gradient(90deg, #4462dd 0%, #182657 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; /* Chrome, Safari */
    color: #293e91; /* fallback for non-supporting browsers */
}
.contact-cta-section {
    background-image: url('static/bg/9.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.philosophy-text {
    max-width: 800px;
    margin: 2rem auto 5rem;
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
}

/* --- FACILITIES --- */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}
.facility-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 1px solid #e0e6ed;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}
.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(21, 66, 138, 0.1);
}
.facility-icon {
    height: 60px; /* Set icon height */
    width: auto;  /* Width will adjust to maintain aspect ratio */
    margin-bottom: 1.5rem;
}
.facility-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* --- COACHES & RACKETS SLIDERS (FINAL FIX) --- */
.coaches-section, .rackets-section {
    overflow: hidden;
}
.coaches-section .section-padding, .rackets-section .section-padding {
    padding-left: 0;
    padding-right: 0;
}
.coaches-slider-wrapper, .rackets-slider-wrapper {
    width: 100%;
    overflow: visible;
}
.coaches-slider-track, .rackets-slider-track {
    cursor: grab;
    display: flex;
    width: max-content;
    gap: 2rem;
    padding: 2rem 8%;
}
.coaches-slider-track:active, .rackets-slider-track:active {
    cursor: grabbing;
}

.coach-card, .racket-card {
    flex-shrink: 0;
    perspective: 1500px;
    background-color: transparent;
}
.coach-card {
    width: 30vw; max-width: 400px; aspect-ratio: 3 / 4;
}
.racket-card {
    width: 30vw; max-width: 380px;
}

.coach-card-inner, .racket-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s var(--ease-out-expo);
    transform-style: preserve-3d;
    cursor: pointer;
}
.coach-card-inner.is-flipped, .racket-card-inner.is-flipped {
    transform: rotateY(-180deg);
}

.coach-card-front, .coach-card-back,
.racket-card-front, .racket-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.coach-card-front {
    background-color: #e0e0e0;
}

.racket-card-front {
    background: var(--white);
    border: 1px solid #e0e6ed;
    text-align: center;
}

.coach-card-back, .racket-card-back {
    background-color: var(--icon-blue);
    color: var(--white);
    transform: rotateY(180deg);
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.coach-card-content {
    position: absolute; bottom: 0; left: 0; padding: 2rem; color: var(--white); z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%); width: 100%;
}

.coach-card-back {
    justify-content: space-between; /* Push price down */
    align-items: center;
}

.coach-achievements {
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Make the list fill the available space */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center the list vertically */
}

.coach-achievements li {
    font-size: 1.1rem;
    line-height: 1.8;
}
.coach-card-content h3 { font-size: 1.8rem; }
.coach-card-content p { font-size: 1rem; opacity: 0.8; }
.coach-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers area without distortion */
    z-index: 0;
}

/* Back side image sizing: fill the back card and preserve cover behavior */
.coach-back-image-wrapper {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    z-index: 0;
}
.coach-back-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ensure the back content (if any overlay) sits above the image */
.coach-card-back > * { z-index: 1; }

/* Racket Card Specific Styling */
.racket-card-inner {
    min-height: 480px; /* Give the container a minimum height */
}
.racket-card-image {
    background: #ffffff;
    padding: 2rem 2rem 0;
    aspect-ratio: 1 / 1; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.racket-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.racket-card-content {
    padding: 1.5rem 2rem;
    background-color: var(--white);
    text-align: center;
    flex-shrink: 0;
}
.racket-card-content h3 {
    font-size: 1.5rem;
}

.racket-card-back p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.racket-card-back .racket-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    padding: 10px 20px;
    flex-shrink: 0;
}


/* --- GALLERY GRID (REVISED) --- */
.gallery-section {
    overflow: hidden;
}
.gallery-header {
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 30vh); /* Set row height */
    gap: 1.5rem;
    margin-top: 5rem;
}
.gallery-item {
    overflow: hidden;
    border-radius: 1.5rem;
}
.gallery-item.item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3; 
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}


/* --- COURTS STACKING --- */
.courts-section { background-color: var(--text-dark); color: var(--background); }
.courts-header {
    text-align: center;
    position: relative; 
    z-index: 1;
    background-image: url('static/bg/3.jpg'); /* <-- Path to bg image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Simple parallax effect */
}

.courts-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(18, 18, 18, 0.8); /* Dark overlay, adjust transparency (0.8) if needed */
    z-index: -1;
}
.courts-header .section-title { color: var(--white); }
.courts-header p { color: #ccc; max-width: 500px; margin: 1rem auto 0; }
.courts-stack-wrapper { position: relative; min-height: 300vh; }

.court-card {
    height: 100vh;
    width: 100%;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8%;
    /* Background styule */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Dark overlay for cards */
.court-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); 
    z-index: -1;
}

/* Images for each court */
#court-1 { background-image: url('static/court/1.jpg'); }
#court-2 { background-image: url('static/court/2.jpg'); }
#court-3 { background-image: url('static/court/3.jpg'); }
#court-4 { background-image: url('static/court/4.jpg'); }


.court-card:nth-child(1){z-index: 1;} 
.court-card:nth-child(2){z-index: 2;} 
.court-card:nth-child(3){z-index: 3;} 
.court-card:nth-child(4){z-index: 4;}

.court-card-content { 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 2rem; 
}
.court-number { 
    font-size: 1rem; 
    font-weight: 600; 
    border: 1px solid currentColor; 
    border-radius: 50px; 
    width: 50px; 
    height: 50px; 
    display: grid; 
    place-items: center; 
}
.court-card-content h2 { 
    font-size: 3rem; 
}


/* --- TESTIMONIALS --- */
.testimonials-section {
    position: relative; 
    color: var(--background);
    background-image: url('static/bg/4.jpg'); /* <-- Path to bg image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Simple parallax effect */
    z-index: 1;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(18, 18, 18, 0.85); 
    z-index: -1;
}
.testimonials-wrapper {
    position: relative; min-height: 250px; max-width: 800px;
    margin: 0 auto; text-align: center;
}
.testimonial-item {
    position: absolute; inset: 0; opacity: 0;
    transition: opacity 0.8s var(--ease-out-expo);
}
.testimonial-item.active { opacity: 1; }
.testimonial-item p { font-size: 1.8rem; font-weight: 500; line-height: 1.5; }
.testimonial-item h4 {
    margin-top: 2rem; font-size: 1.2rem; font-weight: normal;
    opacity: 0.8; font-family: var(--font-cursive);
}

/* --- CONTACT & FOOTER --- */
.contact-cta-section {
    text-align: center;
    background-image: url('static/bg/9.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--background);
}
.contact-cta-section .section-title { color: var(--background); }
.contact-cta-section p { max-width: 500px; margin: 1rem auto 0; color: #ccc; }
.socials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; max-width: 1000px; margin: 4rem auto;
}
.social-card {
    background: rgba(255,255,255,0.1); padding: 2.5rem; border-radius: 1.5rem;
    font-size: 1.5rem; font-weight: 600; transition: background-color 0.4s var(--ease-out-expo);
}
.social-card:hover { background: rgba(255,255,255,0.2); }
.social-card i { margin-right: 1rem; }
.final-cta-button {
    display: inline-block; margin-top: 2rem; padding: 18px 36px;
    background-color: var(--white); color: var(--navy-blue);
    border-radius: 100px; font-size: 1.2rem; font-weight: 600;
}
.footer { background-color: var(--text-dark); color: #888; }
.footer-bottom {
    padding: 2rem 8%; display: flex; justify-content: space-between; align-items: center;
}

/* ========================================================================
   7. RESPONSIVE STYLES
   ======================================================================== */
@media (max-width: 992px) {
    .coach-card, .racket-card {
        width: 80vw;
    }
    .coaches-slider-track, .rackets-slider-track {
        gap: 1.5rem;
        padding: 0 5%;
    }
}

@media (max-width: 768px) {
    /* --- GENERAL MOBILE ADJUSTMENTS --- */
    .section-padding { padding: 20vw 5%; }
    .cursor { display: none; }
    body { cursor: auto; }

    /* --- NAVBAR MOBILE --- */
    .navbar { padding: 20px 5%; }
    .navbar .nav-logo img { height: 30px; }
    .nav-cta { padding: 8px 16px; font-size: 0.9rem; }

    /* --- HERO MOBILE --- */
    .hero-title { font-size: clamp(3rem, 7vw, 5rem); }

    /* --- TEXT CONTENT MOBILE --- */
    .philosophy-text, .testimonial-item p { font-size: 1rem; line-height: 1.6; }
    .section-header p { font-size: 1.3rem; }
    
    /* --- GALLERY GRID MOBILE --- */
    .gallery-grid {
        grid-template-columns: 1fr; 
        grid-template-rows: auto; 
        gap: 1rem;
    }
    .gallery-item.item-1 {
        grid-row: auto; 
    }

    /* --- COURTS MOBILE --- */
    .court-card-content h2 { font-size: 2rem; }
    .court-card-content { gap: 1.5rem; }

    /* --- CONTACT & CTA MOBILE --- */
    .social-card { padding: 2rem; font-size: 1.2rem; }

    /* --- FOOTER MOBILE --- */
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    
    /* --- GRID LAYOUTS MOBILE (UPDATED) --- */
    .facilities-grid, .socials-grid { grid-template-columns: 1fr; }
}

    /* --- FACILITIES HORIZONTAL PHOTO PARALLAX --- */
    .facilities-parallax-wrapper {
        width: 100%;
        overflow: hidden;
        margin-top: 0; /* remove gap above parallax as requested */
        padding-top: 0;
    }
    .facilities-parallax-wrapper {
        background: #ffffff; /* plain white background as requested */
    }
    .facilities-parallax-track {
        display: flex;
        gap: 2rem;
        align-items: center;
        width: max-content;
        padding: 2rem 8%;
        will-change: transform;
    }
    .facility-photo-card {
        flex-shrink: 0;
        width: 30vw;
        max-width: 400px;
        aspect-ratio: 3 / 4;
        border-radius: 1.5rem;
        overflow: hidden;
        background: #eee;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
    .facility-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* --- LOCATION --- */
.location-section {
    background-color: var(--background);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.location-text .section-title {
    margin-bottom: 1.5rem; /* Gap under the title */
}

.location-text h3 {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2.5rem; /* Gap under the address */
    max-width: 500px;
}

.ps-box {
    background-color: var(--icon-blue);
    color: var(--white);
    padding: 0.7rem 1.2rem;
    border-radius: 100px; /* Rounded rectangle */
    display: inline-block; 
}

.ps-box p {
    font-family: monospace; 
    font-size: 0.8rem;
}

/* Typing cursor style */
.typing-text::after {
    content: '|';
    display: inline-block;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}


.location-map iframe {
    width: 100%;
    height: 450px;
    border-radius: 1.5rem;
    border: 1px solid #e0e6ed;
}

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

.social-card .social-icon {
    height: 1.5em; /* Adjust icon height to match text size */
    width: auto;
    margin-right: 1rem;
    vertical-align: middle; /* Help align icon with text */
    position: relative;
    top: -0.1em; 
}

#ayo-cta {
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.court-card-content .court-price {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--background);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    padding: 8px 18px;
    margin-top: 0.5rem; /* Gap froom court title */
}

.session-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    padding: 10px 20px;
    flex-shrink: 0;
}

/* ========================================================================
   MOBILE: Enlarge Facilities Parallax visuals
   - increase wrapper height, make photo cards wider for better presence on phones
   - keep images cover and maintain aspect
   ======================================================================== */
@media (max-width: 768px) {
    /* Let the wrapper grow based on the actual image/card height to avoid cropping.
       Remove fixed height so the section follows image size. */
    .facilities-parallax-section .facilities-parallax-wrapper {
        padding: 1rem 0;
        /* prevent horizontal overflow while allowing vertical growth */
        overflow-x: hidden;
        overflow-y: visible;
    }

    /* Add breathing room; align items to the top so wrapper height follows tallest card */
    .facilities-parallax-section .facilities-parallax-track {
        gap: 1rem;
        padding: 1rem;
        align-items: flex-start; /* top-align so wrapper grows naturally */
    }

    /* Make each photo card wide on mobile but let height follow the image's natural aspect.
       Use max-height to keep extremely tall images from overflowing the viewport. */
    .facilities-parallax-section .facility-photo-card {
        min-width: 70vw; /* wide cards that feel bigger on phones */
        width: 70vw;
        height: auto; /* allow height to be determined by image */
        max-height: 70vh; /* limit to viewport to avoid extremely tall cards */
        border-radius: 1rem;
        overflow: hidden;
        flex-shrink: 0;
        display: flex;
        align-items: stretch;
    }

    /* Ensure images keep their aspect ratio and expand the card height */
    .facilities-parallax-section .facility-photo {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

    /* Reverse wrapper - don't force height; keep same flexible rules */
    .facilities-parallax-section.reverse .facilities-parallax-wrapper,
    .facilities-parallax-section.reverse .facilities-parallax-track {
        overflow-x: hidden;
        overflow-y: visible;
    }
}