@charset "ISO-8859-1";

@keyframes scroll {
    0%{	
        transform: translateX(0);
    }
    100%{
        transform: translateX(calc(-210px * 5));
    }
}
.slider{
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    max-height: 100px;
        max-width: 100%;
        object-fit: contain;
    width: auto;
}
.slider .slider-track{
    animation: scroll 20s linear infinite;
    display: flex;
    width: calc(210px * 20);
}
.slider .slide{
    height: 80px;
    width: 250px;
}