.logo-slider {
    overflow: hidden;
    background: #fff;
    width: 100%;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.logo-track img {
    height: 60px;
    margin: 0 40px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
