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

 html{
 	font-size: 16px;
 }

 .paralax{
 	position: relative;
 	opacity: .75;
 	background-position: center;
 	background-size: cover;
 	background-repeat: no-repeat;
 	background-attachment: fixed; 
 }

 /*//slider de entrada*/

 .slider{
 	width: 100%;
 	height: 100vh;
 	position: relative;
 	overflow: hidden;
 }

 .slider-item{
 	width: inherit;
 	height: inherit;
 	position: absolute;
 	opacity: 0;
 	animation: cicloImagenes 26s infinite;
 }

 .slider-item img{
 	width: 100%;
 	height: 100%;
 	object-fit: cover;
 	animation: zoom 26s infinite;
 }

 .slider-item:nth-child(1),
 .slider-item:nth-child(1) img{
 	animation-delay: 0s;  
 }

 .slider-item:nth-child(2),
 .slider-item:nth-child(2) img{
 	animation-delay: 5s;  
 }

 .slider-item:nth-child(3),
 .slider-item:nth-child(3) img{
 	animation-delay: 10s;  
 }

 .slider-item:nth-child(4),
 .slider-item:nth-child(4) img{
 	animation-delay: 15s;  
 }

 .slider-item:nth-child(5),
 .slider.item:nth-child(5) img{
 	animation-delay: 20s;  
 }


@keyframes cicloImagenes{
	25%{opacity: 1;}
	40%{opacity: 0;}
}

@keyframes zoom{
	100%{transform: scale(1.5);}
}