.company-slider {
    overflow: hidden;
    width: 100%;
    background: white;
}

.company-slider-track {
    display: flex;
    width: max-content;
    animation: scroll 17s linear infinite;
    background: white;
}

.company-slide {
    width: 150px;
    height: 54px;
    margin: 0 10px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

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

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