

.contenido-header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.fondo-header-inicio{
	background-image: url(../img/imagenes/arbol-limon.jpg);
	
}
.fondo-header-inicio2{
	background-image: url(../img/imagenes/mandarina11.jpg);
}
/**/
.fondo{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;	
}
.fondo-header{
	display: none;
}
.fondo-header.activar{
	display: block;
	opacity: 0;
	z-index: 1;
	animation-name: fondo-animacion;
	animation-duration: 30s;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
	
}
@keyframes fondo-animacion{
	0%{
		opacity: 0;
		transform: scale(2);
	}
	10%{
		opacity: 1;
		transform: scale(1.0);
	}
	40%{
		opacity: 1;
		transform: scale(1.2);
	}
	50%{
		opacity: 0;
		transform: scale(2);
	}
}
.fondo-header2{
	display: none;
	opacity: 0;
}
.fondo-header2.activar{
	display: block;
	z-index: 2;
	animation-name: fondo-animacion2;
	animation-duration: 30s;
	animation-delay: 15s;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
}
@keyframes fondo-animacion2{
	0%{
		opacity: 0;
		transform: scale(2);
	}
	10%{
		opacity: 1;
		transform: scale(1.0);
	}
	40%{
		opacity: 1;
		transform: scale(1.2);
	}
	50%{
		opacity: 0;
		transform: scale(2);
	}
}
.slider-header{
	width: 30%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	
}
/**/
.icono-header{
	display: none;
}
.icono-header.activar{
	display: block;
	
	animation-name: animacion-icono;
	animation-duration: 15s;
	animation-iteration-count: infinite;
	animation-fill-mode: forwards;
}
@keyframes animacion-icono{

	0%{
		opacity: 0;
		transform: translateY(100px);
	}
	20%{
		opacity: 1;
		transform: translateY(0);
	}
	80%{
		opacity: 1;
		transform: translateY(0);
	}
	90%{
		opacity: 0;
		transform: translateX(-100%);
	}
	100%{
		opacity: 0;
		transform: translateX(-100%);
	}
}
.icono-header img{
	filter:  drop-shadow(0 2px 5px rgba(0, 0, 0, 0.0));
}
.icono-header img.activar{

	animation-name: sombra-icono;
	animation-duration: 6s;
	animation-delay: 3s;
	animation-fill-mode: forwards;

}
@keyframes sombra-icono{
	from{
		filter:  drop-shadow(0 2px 5px rgba(0, 0, 0, 0.0));
	}
	to{
		filter:  drop-shadow(0 2px 5px rgba(0, 0, 0, 0.7));
	}
}


.texto1-header{
	text-align: center;
	display: none;
	opacity: 0;
	color: white;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	font-weight: bold;
}
.texto1-header.activar{
	display: block;
	animation-name: texto-header1;
	animation-duration: 15s;
	
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
	animation-fill-mode: forwards;
	
}
@keyframes texto-header1{

	0%{
		display: block;
		opacity: 0;
		transform: translateY(-50%);
	}
	20%{
		opacity: 1;
		transform: translateY(0);
	}
	80%{
		opacity: 1;
		transform: translateY(0);
	}
	90%{
		opacity: 0;
		transform: translateX(100%);
	}
	100%{
		opacity: 0;
		transform: translateX(100%);
	}

}
.texto1-header p{
	font-size: 1.5em;
	
}

@media screen and (max-width: 500px){
	.slider-header{
		width: 80%;		
	}
}



