/*container para el background*/
#cabecera{
	background-color:#F8B131;
	position:relative;
	z-index:0;
}

/*define clip*/
#cliphd{
	position:absolute;
	z-index:-2;
	clip-path: polygon(0 0, 0 92%, 50% 100%,100% 92%,100% 0);
}

/*definición de imagen de cabecera*/
.mask{
	position:absolute;
	z-index:-1;
	background-position: center; /* Center the image */
	background-repeat: no-repeat; /* Do not repeat the image */
	background-size: cover; /* Resize the background image to cover the entire container */
	background-image: url("../img/slider-header-img01.jpg"); /* The image used */
}
/*Alineamos todos los contenedores*/
.mask,#cliphd,#cabecera{
	top:0;  
	left:0;
	height:53.75vw;
	width:100%;
}

@keyframes fadein{
  from {opacity: .2} 
  to {opacity: 1}
}
@keyframes move{
	0%{
		transform: scale(1);
	}
	100%{
		transform: scale(1.2);
	}
}

.slider01{
	animation-name: fadein, move;
	animation-duration: 800ms, 10s;
	animation-timing-function: linear, ease;
	animation-iteration-count: 1, 1;
/*
     animation:move 30s infinite ease-in;
*/
}

.slide01txt{
	height:51.24vw;
}

.slide01txtp01{
	padding-top: 9.88vw;
}

.slide01txtp01 h1{
	font-family: 'Montserrat', sans-serif;
	color:white;
}
/* definición para texto del slide 01*/
.ml13 {
	font-size: 6.22vw;
	text-transform: uppercase;
	font-weight: 800;

}
/*definición del display para las letras*/
.ml13 .letter, .ml12 .letter {
  display: inline-block;
/*
  line-height: 1em;
*/
}
/*definición para los subtitulos*/
.ml12 {
	font-weight: 400;
	font-size: 2.93vw;
	line-height: 1;
	letter-spacing: 0.07vw;
}

@media only screen and (max-width: 601px) {
	.ml13{
		font-size:8vw;
	}
	.ml12{
		font-size:5vw;
	}
	.mask,#cliphd,#cabecera{
		height:70vw;
		width:100%;
	}
	.slide01txtp01{
		padding-top: 20vw;
	}
}
