.wrapper__clients{
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider__clients{
    width: 100%;
    height: 120px;
    position: relative;
    background-color: white;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
    display: flex;
    overflow: hidden;
}

.slide__clients{
    
    height: 100px;
    display: flex;
    align-items: center;
    
    animation: slideshow 30s linear infinite;
}

.slide__clients img{
    height: 70px;
    padding: 0 30px 0 30px;
}

@keyframes slideshow{
    0% { transform: translateX(0);}
    100% { transform: translateX(-100%);}
}

.slider__clients::before, .slider::after{
    height: 100px;
    width: 200;
    position: absolute;
    content: "";
    background: linear-gradient(to right, white 0%, rgba(255,255,255,0) 100%);
    z-index: 2;
}

.slider__clients::before {
    left: 0;
    top: 0;
}

.slider__clients::after{
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}