/* ========================================
   CLIENT LOGO MARQUEE
======================================== */

@keyframes marquee-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.marquee-left {
    display: flex;
    width: max-content;
    animation: marquee-left 40s linear infinite;
    will-change: transform;
}

.marquee-right {
    display: flex;
    width: max-content;
    animation: marquee-right 40s linear infinite;
    will-change: transform;
}

/* Pause animation on hover */
.marquee-left:hover,
.marquee-right:hover {
    animation-play-state: paused;
}

/* ========================================
   RESPONSIVE SPEED
======================================== */

@media (max-width: 1024px) {
    .marquee-left,
    .marquee-right {
        animation-duration: 30s;
    }
}

@media (max-width: 768px) {
    .marquee-left,
    .marquee-right {
        animation-duration: 25s;
    }
}

/* ========================================
   OPTIONAL LOGO EFFECT
======================================== */

.client-logo {
    transition:
        opacity 0.3s ease,
        filter 0.3s ease,
        transform 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
}