
.carrusel
{
    background: white;
	box-shadow: 0 10px 20px -5px rgba(255, 255, 255, 0.125);
    height: 100px;
	margin: auto;
	overflow:hidden;
	position: relative;
	width: 960px;
    
}
.carrusel_items
{
    display: flex;
    animation: carrusel 80s linear infinite;
}
.carrusel_img
{
    display: block;
    width: 640px;
    object-fit: cover;
}

@keyframes carrusel
{
    0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-550px * 7));
	}
}