* {
    cursor: none !important;
}

.element-a-fader {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

/*----------------------------
 * About sticky section
 *----------------------------*/
 :root{
    --hidden-sticky-height: 70vh;
    --hidden-sticky-hidden-zone: 40vh;
}
.about-section-1-1,
.about-section-1-1 > .kt-inside-inner-col{
    height: var(--hidden-sticky-height);
}
.about-section-1-2,
.about-section-1-2 > .kt-inside-inner-col{
    height: var(--hidden-sticky-hidden-zone);
}
.about-section-2{
    margin-top: calc(-1 * var(--hidden-sticky-hidden-zone));
    height: calc(var(--sticky-element-height) + var(--hidden-sticky-hidden-zone));
}
.about-section-2 > .kt-inside-inner-col{
    position: sticky;
    top: var(--hidden-sticky-height);
}

/*----------------------------
 * Animated text
 *----------------------------*/
 .animated-text span {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    filter: blur(4px);
}

@keyframes fade-in {
    0% {
        opacity: 0;
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}