* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
}

.slide-patrocinadores {
    display: flex;
    background: gold;
}

.slide-patrocinadores--list-itens {
    display: flex;
    align-items: center;
    transition: all ease 0.3s;
}


.list-itens--item > img {
    width: 300px;
    transform: scale(0.8);
    background: #856306;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.8);
}

@keyframes firstPatrocinador {
    0% {
        transform: translateX(0%) scale(0.8);
    }
    100% {
        transform: translateX(-100%) scale(0.2);
    }
}

@keyframes movePatrocinador {
    0% {
        transform: translateX(0%) scale(0.8);
    }
    100% {
        transform: translateX(-100%) scale(0.8);
    }
}

@keyframes lastPatrocinador {
    0% {
        transform: translateX(0%) scale(0.2);
    }   
    100% {
        transform: translateX(0%) scale(0.8);
    }
}
