body.turn-off-sparkle .loading-mask {
    display: none;
}

body:not(.turn-off-sparkle) {
    .animated-text-container {
        position: relative;
        display: inline-block;
    }

    .animated-text-inner {
        position: relative;
        display: inline-block;
        opacity: 0;
        line-height: 1em;
    }

    .animated-image {
        position: relative;
        font-size: 0;
        opacity: 0;
        transform: translateX(-100px);
    }

    .animated-image--right {
        transform: translateX(100px);
    }

    .loading-mask {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--dark);
        z-index: 999;
        overflow: hidden;
    }

    .loading-mask__container {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .loading-mask__inner {
        position: relative;
        opacity: 0;
    }

    .loading-mask__ball img {
        width: 100%;
        height: auto;
        position: relative;
    }

    @keyframes rotating {
        0% {
            transform: rotate(0);
        }
        100% {
            transform: rotate(360deg);
        }
    }

    .loading-mask__logo {
        max-width: 500px;
        height: auto;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        right: 0;
        margin: 0 auto;
        text-align: center;
        width: 100%;
    }

    .loading-mask__logo svg {
        height: 100%;
        width: 100%;
    }

    .loading-mask__logo img {
        width: 100%;
        height: auto;
    }

    .loading-mask__logo img:not(.logo-1) {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
    }

    .loading-mask__logo {
        transform: translateY(30px);
        opacity: 0;
    }

    .uncover {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 2;
    }

    .uncover_slice {
        width: 100%;
        flex-grow: 1;
        background: var(--light);
        transform-origin: left;
    }

    .js-image-slice-reveal {
        position: relative;
        overflow: hidden;
    }

    .js-image-slice-reveal img {
        position: relative;
        z-index: 1;
    }

    @media ( min-width: 1200px ) {
        /* Sparkle Animation */
        .js-card-icon-animated .js-card-icon-animated-item {
            position: relative;
            transform: translateY(50px);
            opacity: 0;
        }
    }

    .js-fade-up {
        position: relative;
        opacity: 0;
    }

    @media (min-width: 1200px) {
        .animated-content > :where(p, ul, ol, h2, h3, h4, blockquote, div:not(.testimonials__reviews), article, img) {
            opacity: 0;
            transform: translateY(50px);
        }
    }
}