.slider{
    display: flex;
    height: auto;
    margin: auto;
    overflow: hidden;
    align-items: center;
    /*margin-left: 120px;*/
}

.slider::before{
    position: absolute;
    z-index: 1;
    left: 0;
    content: "";
    width: 20.958%;
    height: 110px;
    background: linear-gradient(-90deg, hsla(0, 0%, 96.9%,  0),#ffffff00);
}

.slider::after{
    position: absolute;
    right: 0;
    content: "";
    width: 20.958%;
    height: 110px;
    background: linear-gradient(90deg, hsla(0, 0%, 96.9%,  0), hsla(0, 0%, 97%, 0) 99%);
}


.slider .slide-track{
    display: flex;
    animation: scroll 35s linear infinite;
    -webkit-animation: scroll 35s linear infinite;
    width: calc(240px*10);
}

.slider .slide{
display: flex;
}

.slider .slide img{
    width: 120px;
    height: 120px;
    padding: 10px;
    background-color: rgba(95, 219, 209, 0.301);
    cursor: pointer;
    margin: 20px;
    border-radius: 8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0,0, 0, 0.3) 0px 1px 3px .1px;
    }
@keyframes scroll{
    0%{
        -webkit-transform: translateX(0);
        transform: translatex(0); 
    }
    100%{
      -webkit-transform: translateX(calc(-200px *9));
      transform: translatex(calc(-200px *9)); 
  }
}


@media screen and (max-width: 480px) {

    .slider{
        display: flex;
        height: auto;
        margin: auto;
        overflow: hidden;
        align-items: center;
        margin-left: 0px;
    }
    .slider .slide img{
        width: 60px;
        height: 60px;
        padding: 10px;
        background-color: rgba(95, 219, 209, 0.651);
        cursor: pointer;
        margin: 20px;
        border-radius: 8px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0,0, 0, 0.3) 0px 1px 3px .1px;
        }
}