/* slider */
/* section two */
@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.animate-marquee{

    width:fit-content;
    animation:marquee 20s linear infinite;
    will-change:transform;
}

/* section third */
.six-parallax-img-wrap,
.six-parallax-row > div > div:not(.six-parallax-img-wrap) {
    will-change: transform, opacity;
}

.parallax-img {
    will-change: transform;
    border-radius: 15px !important;
    overflow: hidden;
}