/* RESET */
*{
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header {
	height: 200px;
	background: #000;
	background-image: url(./imagenes/01010101.jpg);
	background-size: 130vh;
	background-repeat: no-repeat;
	background-position: left top;
	padding: 0 50px;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	width: 250px;
	margin-top: 80px;
}

.menu a{
	font-size: 13px;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0 10px;
	transition: 0.4s;
}

.mostrar-menu,
.esconder-menu {
	font-size: 20px;
	cursor: pointer;
	display: none;
	position: absolute;
	right: 30px;
	top: 80px;
	transition: 0.4s;
}

.mostrar-menu {
	order:1;
}

.menu a:hover,
.mostrar-menu:hover,
.esconder-menu:hover{
	color: #f1592a;
}

#check{
	display: none;
}

/* BANNER */
#banner{
	padding: 0 50px;
	background-image: url(./imagenes/banner.jpg);
	height: 90vh;
	background-size: cover;
	background-position: center;
}

#banner::before {
	content: "";
	/*background: rgba(77,77,92,0.6);*/
	position: absolute;
	width: 100%;
	height: 80vh;
	left:0;
}

.contenido-banner{
	position: relative;
	color: rgb(145, 144, 144);
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.contenido-banner div{
	width: 40%;
	margin-top: 60px;
	text-align: center;
}

.contenido-banner div h3 {
	color: #fff;
	font-weight: 600;
}

.contenido-banner div p {
	font-size: 14px;
	font-weight: 300;
	padding-bottom: 50px;
}

.contenido-banner a{
	position: absolute;
	bottom: 380px;
}

.boton-saber-mas{
	font-size: 14px;
	text-decoration: none;
	color: #fff;
	border: 1px solid #f1592a;
	padding: 10px 20px;
	/*align-self: baseline;*/
	transition: all 0.4s;
	border-radius: 30px;
}

.boton-saber-mas:hover{
	background:#f1592a;
}

/* ANDINO */

#andino{
	min-height: 95vh;
	margin-top: -15px;
	padding: 20px 50px;
	display: flex;
	justify-content: center;
	text-align: center;
	/*background-color: #000;*/
	background-image: url(./imagenes/andino.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right bottom;
}

#andino img{
	border-radius: 100%;
	width: 210px;
	height: 200px;
}

#andino div{
	padding: 30px 30px;
}

#andino div h4{
	color:#000;
	font-size: 15 px;
	margin: 15px 0px;
}

#andino div p{
	color:#000;
	font-size: 15px;
}

.boton-ver{
	display: inline-block;
	text-decoration: none;
	font-size: 14px;
	color:#f1592a;
	padding: 10px 30px;
	border: 3px solid #f1592a;
	border-radius: 30px;
	margin-top: 30px;
	transition: all 0.4s;
}

.boton-ver:hover{
	background: #f88f6f;
	color: #fff;
}

/* BENEFICIOS */

#beneficios{
	margin-top: -15px;
	padding: 0px 5px;
	background: rgba(41, 41, 41, 0.6);	
}
.contenido-beneficios{
	padding: 50px 50px 0px 50px;
	display: flex;
	justify-content: space-between;
	text-align: center;
}
.contenido-beneficios div{
	flex: 1;
	margin: 20px 5px;
	border-left: 2px solid rgba(82, 81, 81, 0.2);
}
#icono-mobile{
	border: none;
}

.contenido-beneficios div i{ 
	color: #f1592a;
}
.contenido-beneficios div h6{
	color: #fff;
	font-size: 20px;
	font-weight: 100;
	margin: 20px 0px;
}
.contenido-beneficios div p{
	color: rgba(255,255,255,0.55);
	font-size: 15px;
	margin: 5px 10px;
}

.boton-beneficios{
	text-align: center;
	padding-bottom: 40px;
}

.boton-especificaciones {
	display: inline-block;
	text-decoration: none;
	text-align: center;
	padding-bottom: 40px;
	font-size: 12px;
	color:#fff;
	padding: 10px 30px;
	border: 3px solid #f1592a;
	border-radius: 30px;
	margin-top: 15px;
	transition: all 0.4s;
}

.boton-especificaciones:hover{
	background: #f88f6f;
	color: #fff;
}

/* FRASE */

#frase{
	height: 150px;
	background-image: url(./imagenes/frase.jpg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: left top;
	text-align: center;
	align-items: center;
}

#frase h3{
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	padding-top: 60px;
}

/* FORMULARIO */

#contacto{
	margin-top: -15px;
	background: #000;
	background-image: url(./imagenes/notebook.jpg);
	background-size: 120vh;
	background-repeat: no-repeat;
	background-position: right bottom;
	padding: 30px 0px;
	color: #fff;
	font-size: 12px;
	display: flex;
	justify-content: center;
	text-align: center;
}

#contacto h4{
	text-align: center;
	font-size: 20px;
	margin-bottom: 20px;
}

#contacto form{
	max-width: 100%;
	margin: 0 auto;
	width: 40vw;
	padding: 0px 100px;
}

#vacio{
	max-width: 60%;
}

.datos-form{
	display: flex;
}
.datos-form div{
	padding: 10px;
	flex: 1;
}
form label{
	display: block;
	margin-bottom: 10px;
}
form input,
form textarea{
	background: #4ed7fc;
	background-image: url(./imagenes/andino.jpg);
	background-position: center;
	border-radius: 10px;
	border: 2px solid #f1592a;
	padding: 10px 5px;
	outline: 0;
	color: #094c5f;
	width: 100%;
}
form input:focus,
form textarea:focus{
	border-color: rgb(11, 127, 250);
	box-shadow: 0 0 0 1px rgb(41, 26, 250);
}

form input::placeholder,
form textarea::placeholder{
	color:#094c5f;
}

.mensaje{
	display: flex;
	flex-direction: column;
	padding: 10px;
}

.boton-formulario{
	padding: 10px;
	padding-right: 0px;
}

.boton-formulario .boton-saber-mas{
	display: block;
	border: 1px solid #f1592a;
	color: #fff;
	text-align: center;
	transition: 0.4s;
}

.boton-formulario .boton-saber-mas:hover{
	background: #f1592a;
}

/* FOOTER */
footer{
	background: #000;
	color: #cccccc4a;
	text-align: center;
	padding: 20px 0px ;
	padding-bottom: 30px;
	font-size: 12px;
	border-top: 3px solid #f1592a;
}
footer a{
	color: #f1592a;
}


/* RESPONSIVE */

@media (max-width:768px){
	.mostrar-menu,
	.esconder-menu{
		display: block;
	}

	.menu{
		position: fixed;
		width: 100%;
		height: 100vh;
		background: #f1592a;
		right: -100%;
		top:0;
		text-align: center;
		padding: 100px 0px;
		z-index: 100;
		transition: 0.8s;
	}
	.menu a{
		display: block;
		padding: 20px;
	}

	.esconder-menu{
		position:absolute;
		top: 40px;
		right: 40px;
	}
	#check:checked ~ .menu{
		right: 0;
	}

	.logo {
		width: 180px;
		margin-top: 80px;
	}


	/* BANNER */
	#banner{
		flex-direction: column;
	}

	.contenido-banner div{
		width: 100%;
		margin-top: 70px;
		text-align: center;
	}

	.contenido-banner div h3 {
		color: #fff;
		font-weight: 600;
	}
	
	.contenido-banner div p {
		font-size: 12px;
		font-weight: 200;
	}

	/* ANDINO */
	#andino{
		flex-direction: column;
	}

	#andino div{
		padding: 20px;
	}

	/* BENEFICIOS */
	.contenido-beneficios{
		flex-direction: column;
	}
	.contenido-beneficios div{
		border-left: none;
		border-bottom: 2px solid rgba(82, 81, 81, 0.2);
	}
	
	/* FRASE */
	#frase{
		height: 80px;
	}
	#frase h3{
		color: #fff;
		font-size: 12px;
		padding-top: 20px;
		font-weight: 300;
	}

	/* FORMULARIO */
	#contacto{
		background: #000;
		background-image: url(./imagenes/notebook.jpg);
		background-size: 80vh;
		background-repeat: no-repeat;
		background-position: bottom;
	}
	#contacto form{
		width: 80vw;
	}
	.datos-form{
		flex-direction: column;
	}
	
	form input::placeholder,
	form textarea::placeholder{
		font-size: 10px;
	}

	/* FOOTER */
	footer{
		font-size: 10px;
	}

}