/* ===================== Base Scroll Animation Setup ===================== */
/* .scroll-animation {
    overflow: hidden;
}

.animated-scroll-animation {
    overflow: unset;
} */

/* ===================== Common Animation Settings ===================== */
.slide-left,
.slide-right,
.slide-up,
.slide-down,
.zoom-in,
.fade {
    will-change: transform, opacity;
    transition: all var(--duration) cubic-bezier(0.25, 1, 0.5, 1);
}

/* ===================== Slide Effects ===================== */
.slide-left {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
}

.animated-scroll-animation.slide-left,
.activeScrollAnimation .slide-left {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    visibility: visible;
}

.slide-right {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
}

.animated-scroll-animation.slide-right,
.activeScrollAnimation .slide-right {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    visibility: visible;
}

.slide-up {
    opacity: 0;
    transform: translateY(100%);
    visibility: hidden;
}

.animated-scroll-animation.slide-up {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.slide-down {
    opacity: 0;
    transform: translateY(-100%);
    visibility: hidden;
}

.animated-scroll-animation.slide-down {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* ===================== Fade Effect ===================== */
.fade {
    opacity: 0;
}

.animated-scroll-animation.fade {
    opacity: 1;
}

/* ===================== Zoom In ===================== */
.zoom-in {
    transform: scale(0.2);
}

.animated-scroll-animation.zoom-in {
    transform: scale(1);
}

/* ===================== Transition Duration Classes ===================== */
.transition-025s {
    --duration: 0.25s;
}

.transition-030s {
    --duration: 0.3s;
}

.transition-040s {
    --duration: 0.4s;
}

.transition-050s {
    --duration: 0.5s;
}

.transition-060s {
    --duration: 0.6s;
}

.transition-075s {
    --duration: 0.75s;
}

.transition-080s {
    --duration: 0.8s;
}

.transition-100s {
    --duration: 1s;
}

.transition-125s {
    --duration: 1.25s;
}

.transition-150s {
    --duration: 1.5s;
}

.transition-175s {
    --duration: 1.75s;
}

/* ===================== Delay Classes ===================== */
.delay-0 {
    transition-delay: 0s;
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

.delay-7 {
    transition-delay: 0.7s;
}

.delay-8 {
    transition-delay: 0.8s;
}

.delay-9 {
    transition-delay: 0.9s;
}

.delay-10 {
    transition-delay: 1s;
}

/* ===================== Accessibility ===================== */
@media (prefers-reduced-motion: reduce) {

    .slide-left,
    .slide-right,
    .slide-up,
    .slide-down,
    .fade {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* =============== Banner Heading =============== */
.slick-active .hero-heading.scroll-animation {
    transform: translateX(-110%);
}

.slick-active .hero-heading.scroll-animation.animated-scroll-animation {
    transform: translate(0);
}

.hero-heading {
    transform: translateX(-110%);
    visibility: hidden;
}

.slick-current .hero-heading {
    visibility: visible;
    transform: translateX(0);
}

/* =============== Under Hero Section =============== */

@media (min-width:992px) {
    #fullScrollSection {
        height: 3500px;
        overflow: unset;
    }

    #fullScrollSection .under-hero-top-image {
        height: 100vh;
        position: sticky;
        top: 0;
        overflow: hidden;
    }

    #fullScrollSection .fullScrollRow {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        height: 100%;
        width: 100%;
        transition: all 0.5s linear;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #fullScrollSection .fullScrollRow.activeScrollAnimation {
        z-index: 9;
    }

    #fullScrollSection .fullScrollRow.activeScrollAnimation .slide-left,
    #fullScrollSection .fullScrollRow.activeScrollAnimation .slide-right {
        transition-delay: 0.75s;
        animation-timing-function: linear;
    }
}

/* =============== Under Hero Section =============== */