@media (min-width: 1200px) {
    body:not(.turn-off-sparkle) {
        .animated-content > p,
        .animated-content > ul li,
        .animated-content > ol li,
        .animated-content > div:not(.reviews),
        .animated-content > h2,
        .animated-content > h3,
        .animated-content > h4,
        .animated-content > h5,
        .animated-content > h6,
        .animated-content > blockquote,
        .animated-content > article,
        .animated-content > img {
            opacity: 0;
            transform: translateY(50px);
        }

        .animated-image {
            opacity: 0;
            transform: translateX(60px);

            > img {
                opacity: 0;
                transform: translateX(60px);
            }
        }

        .image-block-left {
            .animated-image {
                opacity: 0;
                transform: translateX(-60px);

                > img {
                    opacity: 0;
                    transform: translateX(-60px);
                }
            }
        }

        .animated-slider .slick-slide,
        .animated-card-item {
            transform: translateY(100px);
            opacity: 0;
        }

        .masthead.masthead--homepage .slick__arrows-custom .slick-arrow {
            border: 2px solid var(--primary-color);
            transition: background 0.3s ease-in-out;
        }

        .masthead.masthead--homepage .slick__arrows-custom .slick-arrow:hover {
            background-color: var(--white);
            color: var(--primary-color);
        }
    }
}