.container-roler {
	width: 100%;
	height: 850px;
	position: sticky;
	z-index: -2;
	top: -80px;
	
}

@keyframes fade {
	
	0% {
		opacity: 1;
	}
	
	33% {
		opacity: 0;
	}
	
	67% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
	
}


.imgcarrossel {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	z-index: -1;
	animation: fade 13s ease-in-out infinite alternate;
}

.imgcarrossel:nth-of-type(1) {
	animation-delay: 12s;
}

.imgcarrossel:nth-of-type(2) {
	animation-delay: 9s;
}

.imgcarrossel:nth-of-type(3) {
	animation-delay: 6s;
}

.imgcarrossel:nth-of-type(4) {
	animation-delay: 3s;
}

.imgcarrossel:nth-of-type(5) {
	animation-delay: 0s;
}