.clients-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.clients-track {
    display: inline-flex;
    animation: scroll 40s linear infinite;
}

.clients-track img {
    height: 70px;
    margin: 0 40px;
    object-fit: contain;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

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