@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap');
@font-face {
    font-family: 'Akira Expanded';
    src: url('fonts/AkiraExpanded-SuperBold.woff2') format('woff2'),
        url('fonts/AkiraExpanded-SuperBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
:root{
	--azul: #00347b;
	--tipografia: "Host Grotesk", sans-serif;;
}
.tope{
	position: relative;
	width: 100%;
	height: 100px;
}
*{
	box-sizing: border-box;
}

/***************************
 * 		BOTON WA
 ***************************/
.boton-wa{
	position: fixed;
	bottom: 100px;
	right: 30px;
	width: 60px;
	border-radius: 30px;
	height: 60px;
	color: #FFF;
	background-color: #25d366;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	animation-name: cierra-boton;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}
.boton-wa:hover{
	animation-name: abre-boton;
}
.boton-wa:hover p:nth-child(2){
	animation-name: fade-in;
}
.boton-wa p{
	position: relative;
	font-size: 16px;
	font-weight: 500;
	margin: 0px;
	height: 100%;
	line-height: 60px;
}
.boton-wa p:nth-child(1){
	font-size: 42px;
	width: 46px;
	text-align: center;
	padding-left: 5px;
	padding-right: 5px;
	margin-left: 8px;
}
.boton-wa p:nth-child(2){
	width: 220px;
	overflow: hidden;
	animation-name: fade-out;
	animation-duration: .5s;
	animation-fill-mode: forwards;
	padding-right: 8px;
}
@keyframes abre-boton{
	from{width: 60px}
	to{width: 280px}
}
@keyframes cierra-boton{
	from{width: 280px}
	to{width: 60px}
}
@keyframes fade-in{
	from{opacity: 0.0}
	to{opacity: 1.0}
}
@keyframes fade-out{
	from{opacity: 1.0}
	to{opacity: 0.0}
}

body{
	margin: 0 auto;
	-webkit-font-smoothing: antialiased;
	font-family: var(--tipografia);
}
section{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

h2{
	color: var(--azul);
	font-weight: 700;
	font-size: 2vw;
}
p{
	position: relative;
	font-size: 1.2vw;
	font-weight: 300;
	line-height: 1.1;
}

header{
	position: fixed;
	width: 100%;
	justify-content: center;
	align-items: center;
	height: 100px;
	background-color: #FFF;
	display: flex;
	top: 0px;
	left: 0px;
	z-index: 2;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
header > div{
	position: relative;
	height: 100%;
	width: 300px;
	background-size: auto 70%;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(images/logo_emnu.jpg);
}
header > nav{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: calc(100% -  602px);
	border-right: solid 1px #ccc;
	border-left: solid 1px #ccc;
}
header > nav > a{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	height: 100%;
	padding-left: 5%;
	padding-right: 5%;
	background-color: #FFF;
}
header > nav > a:hover{
	background-color: var(--azul);
	color: #FFF;
}
header > ul{
	position: relative;
	width: 300px;
	padding: 0px;
	margin: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
}
header > ul > li{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 10px;
	margin-right: 10px;
	color: var(--azul);
	font-size: 20px;
}


/*************
 * SLIDER
 *************/
.slider{
	height: 33vw;
}
.frame{
	position: relative;
	width: 100%;
	height: 33vw;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.frame h2{
	position: relative;
	width: 45%;
	font-size: 3.5vw;
	color: var(--azul);
	padding: 0px;
	margin: 0px;
	margin-left: 5%;
	line-height: .8;
	font-family: 'Akira Expanded';
}
.frame p{
	position: relative;
	width: 25%;
	font-size: 1.2vw;
	color: var(--azul);
	margin-left: 5%;
}


/*************
 * EMPRESA
 *************/
.empresa{
	padding-bottom: 3vw;
	padding-top: 3vw;
}
.empresa > h2{
	width: 50%;
	padding-left: 10%;
	padding-right: 10%;
	font-size: 2.4vw;
}
.empresa > p{
	width: 50%;
	padding-left: 10%;
	padding-right: 10%;
	font-size: 1.4vw;
}

/*************
 * FRANJA
 *************/
.franja{
	height: 10vw;
	background-image: url(images/patron.png);
	background-size: 30px;
}

/*************
 * NOSOTROS
 *************/
.nosotros{
	padding-top: 5vw;
	padding-bottom: 5vw;
}
.nosotros > div{
	width: 40%;
	height: 35vw;
	margin-left: 5%;
	margin-right: 5%;
	border-radius: 2vw;
	background-position: center center;
	background-size: cover;
	background-image: url(images/foto1.jpg);
}
.nosotros > article{
	width: 50%;
	padding-right: 10%;	
}
.nosotros p{
	font-size: 1.2vw;
}

/*************
 * MISION
 *************/
.mision{
	padding-top: 5vw;
	padding-bottom: 5vw;
}
.mision > div{
	width: 43%;
	height: 28vw;
	margin-right: 7%;
	border-radius: 2vw;
	background-position: center center;
	background-size: cover;
	background-image: url(images/foto2.jpg);
}
.mision > article{
	width: 50%;
	padding-left: 8%;
	padding-right: 8%;	
}
.mision p{
	font-size: 1.2vw;
}

/*************
 * SECTORES
 *************/
.sectores{
	background: linear-gradient(180deg, var(--azul) 70%, #FFF 30%);
	flex-direction: column;
	padding-top: 5vw;
	padding-bottom: 10vw;
}
.sectores > h2{
	color: #FFF;
	font-weight: 300;
	font-size: 1.8vw;
	padding-bottom: 5vw;
	width: 60%;
	margin-right: 40%;
	padding-left: 17.5%;
}
.sectores > ul{
	position: relative;
	padding: 0px;
	margin: 0px;
	list-style: none;
	width: 65%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.sectores > ul > li{
	position: relative;
	width: 25%;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height: 25vw;
	padding-bottom: 3vw;
	background-position: center center;
	background-size: cover;
	color: #FFF;
	font-weight: 400;
	font-size: 1.7vw;
	padding-right: 7%;
	padding-left: 7%;
}
.sectores > ul > li:nth-child(1){
	background-image: url(images/metalmecanica.jpg);
}
.sectores > ul > li:nth-child(2){
	background-image: url(images/ganadera.jpg);
}
.sectores > ul > li:nth-child(3){
	background-image: url(images/textil.jpg);
}
.sectores > ul > li:nth-child(4){
	background-image: url(images/automotriz.jpg);
}

/*************
 * PROPUESTA
 *************/
.propuesta{
	flex-direction: column;
	background-color: var(--azul);
}
.propuesta > div{
	position: relative;
	width: 100%;
	height: 50vw;
	background-image: url(images/DSC_0750.png);
	background-position: top left;
	background-size: cover;
}
.propuesta h2, .propuesta p{
	color: #FFF;
    width: 100%;
    text-align: center;
    padding-left: 30%;
    padding-right: 30%;
}

/*************
 * DIVISIONES
 *************/
.divisiones{
	padding-top: 5vw;
	padding-bottom: 5vw;
	flex-direction: column;
}
.divisiones > section{
	position: relative;
	width: 100%;
	display: flex;
	padding-top: 4vw;
	padding-bottom: 4vw;
}
.divisiones > section > article{
	position: relative;
	width: 50%;
	display: flex;
	padding-right: 5%;
	padding-left: 5%;
	align-items: center;
}
.divisiones > section > article > div{
	position: relative;
	width: 80%;
}
.divisiones > section > article > img{
	position: relative;
	width: 18%;
	height: 8vw;
	margin-right: 2%;
}
.divisiones > section > div{
	position: relative;
    width: 35%;
    height: 22vw;
    background-size: cover;
    border-radius: 2vw;
}

/*************
 * DESCANSO
 *************/
.descanso{
	background-color: var(--azul);
	padding-bottom: 5vw;
	padding-top: 5vw;
}

.descanso article, .descanso p{
	color: #FFF;
	width: 50%;
	padding-left: 10%;
	padding-right: 10%;
}
.descanso article{
	font-weight: 700;
	font-size: 1.4vw;
	padding-right: 0%;
}
.descanso img{
	position: relative;
	width: 15%;
	margin-left: 17.5%;
	margin-right: 17.5%;
}

/*************
 * MARCAS
 *************/
.marcas{
	padding-bottom: 20vw;
	padding-top: 5vw;
	flex-direction: column;
	background-image: url(images/patron-gris.png);
	background-size: 30px;
}
.marcas h2{
	width: 100%;
	padding-left: 37%;
	padding-right: 37%;
	line-height: 1.1;
	text-align: center;
	font-size: 2.5vw;
}
.marcas > article{
	position: relative;
	width: 100%;
	display: flex;
	padding-top: 6vw;
	justify-content: center;
	flex-wrap: wrap;
}
.marcas > article aside{
	position: relative;
	margin-left: 2vw;
	margin-right: 2vw;
	width: 10vw;
	height: 10vw;
	background-size: 90%;
	background-position: center center;
	background-repeat: no-repeat;
}


/*************
 * CONTACTO
 *************/
.contacto{
	background-image: url(images/foto-contacto.jpg);
	padding-top: 10vw;
	padding-bottom: 10vw;
	background-position: center center;
	background-size: cover;
}
.contacto h2, .contacto form{
	width: 50%;
	color: #FFF;
}
.contacto h2{
	padding-left: 10%;
	padding-right: 12%;
}
.contacto form{
	padding-right: 7%;
	padding-left: 13%;
}
input, select, textarea{
	border:0px;
	width: 100%;
	padding-bottom: 1vw;
	background-color: transparent;
	border-bottom: solid 1px rgba(255,255,255, .5);
	font-family:var(--tipografia);
	color: #FFF;
/*	-webkit-appearance:none;*/
}
select option{
	cursor: pointer;
	background: var(--azul);
}
input[type=submit]{
	background-color: #FFF;
	color: var(--azul);
	width: 14%;
	margin-left: 43%;
	height: 2vw;
	line-height: 1.8vw;
	font-size: .8vw;
	margin-top: 1vw;
	cursor: pointer;
	border:solid 1px #FFF;
}
input[type=submit]:hover{
	background-color: #007aff;
	color: #FFF;
}
::placeholder{
	color: #FFF;
}


footer{
	border-top: solid 5px #45aff7;
	border-bottom: solid 10px #052851;
	background-color: var(--azul);
	color: #FFF;
	height: 80px;
	display: flex;
}
footer > div{
	position: relative;
	width: 300px;
	height: 100%;
	background-image: url(images/logo-footer.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 80%;
}
footer > nav{
	position: relative;
	width: calc(90% - 300px);
	margin-left: 5%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
footer > nav > a{
	font-size: 13px;
	font-weight: 500;
	margin-left: 20px;
	margin-right: 20px;
}
footer > ul{
	list-style: none;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10%;
    margin: 0px;
    margin-left: 15%;
}
footer > ul > li{
	font-size: 20px;
	margin-left: 10px;
	margin-right: 10px;
}

input[type="checkbox"]{
	display:none;
}
@media (max-width: 480px){
	section{
		flex-direction: column;
	}
	h2{
		font-size: 4vw;
	}
	p, .nosotros p, .mision p, .empresa > p, input, input[type=submit], select, textarea{
		font-size: 3.5vw;
	}
	header > div{
		width: 20%;
        background-size: auto 40%;
        background-position: left;
        margin-right: 5%;
	}
	header > ul{
		width: 55%;
		padding-right: 10%;
	}
	header > nav{
		position: fixed;
		width: 100%;
		left: 0px;
		top: 100px;
		height: calc(100vh - 100px);
/*		padding-top: 20vw;*/
		flex-direction: column;
		background-color: #FFF;
		display: none;
	}
	header > nav > a{
		font-size: 22px;
		height: 20vw;
		width: 100%;
	}
	.slider{
		height: 100vw;
	}
	.frame{
		height: 100vw;
/*		background-position: center center;*/
	}
	.frame h2{
		font-size: 7vw;
		margin-left: 10%;
		width: 80%;
	}
	.frame p{
		font-size: 4vw;
		width: 70%;
		margin-left: 10%;
	}
	.empresa > h2, .empresa > p{
		width: 100%;
	}
	.empresa > h2{
		font-size: 5vw;
	}
	.franja{
		height: 30vw;
	}
	.nosotros > div{
		width: 80%;
		height: 60vw;
	}
	.nosotros > article{
		width: 80%;
    	padding-right: 0%;
	}
	.mision > article {
	    width: 100%;
	    padding-left: 10%;
	    padding-right: 10%;
	}
	.mision > div{
		width: 80%;
	    height: 48vw;
	    margin-right: 10%;
	    margin-left: 10%;
	}
	.sectores > ul{
		flex-wrap: wrap;
	}
	.sectores > ul > li{
		width: 50%;
		height: 45vw;
		font-size: 4vw;
	}
	.sectores > h2 {
	    font-size: 5vw;
	    padding-bottom: 5vw;
	    width: 70%;
	    margin-right: 0%;
	    padding-left: 0%;
	}
	.propuesta h2, .propuesta p{
		padding-right: 10%;
    	padding-left: 10%;
	}
	.propuesta h2{
		padding-top: 4vw;
	}
	.propuesta p{
		padding-bottom: 4vw;
	}
	.divisiones > section > article{
		width: 100%;
		padding-right: 10%;
		padding-left: 10%;
	}
	.divisiones > section > article > img{
		height: 12vw;
		margin-right: 4%;
	}
	.divisiones > section > div{
		width: 80%;
		height: 50vw;
	}
	.divisiones > section:nth-child(2){
		flex-direction: column-reverse;
	}
	.descanso article, .descanso p{
		width: 100%;
		padding-right: 10%;
	}
	.descanso article{
		font-size: 5vw;
	}
	.marcas h2 {
	    width: 100%;
	    padding-left: 20%;
	    padding-right: 20%;
	    line-height: 1;
	    font-size: 5vw;
	}
	.marcas > article aside{
		width: 25vw;
    	height: 25vw;
	}
	.contacto h2, .contacto form{
		width: 100%;
	}
	input[type=submit]{
		height: 7vw;
		margin-top: 4vw;
		width: 30%;
		margin-left: 35%;
	}
	footer > nav{
		display: none;
	}

	label{
		display: flex;
        flex-direction: column;
        width: 50px;
        cursor: pointer;
        right: 5%;
        position:fixed;
        z-index: 11;
        top: 6vw;
        right: 8%;
	}
	label span{
	  background: var(--azul);
	  border-radius:10px;
	  height:4px;
	  margin: 5px 0;
	  transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);
	}
	span:nth-of-type(1){
	  width:50%;
	}
	span:nth-of-type(2){
	  width:100%;
	}
	span:nth-of-type(3){
	  width:75%;
	}
	
	input[type="checkbox"]:checked ~ span:nth-of-type(1){
	  transform-origin:bottom;
	  transform:rotatez(45deg) translate(8px,0px)
	}
	input[type="checkbox"]:checked ~ span:nth-of-type(2){
	  transform-origin:top;
	  transform:rotatez(-45deg)
	}
	input[type="checkbox"]:checked ~ span:nth-of-type(3){ 
	  transform-origin:bottom;
	  width:50%;
	  transform: translate(30px,-11px) rotatez(45deg);
	  transform: translate(21px, -7px) rotatez(45deg);
	}

	.descanso img{
		margin-top: 5vw;
		width: 50%;
	}

}
form > article{
	position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-top: 1vw;
}
#comodin{
	display: none;
}
a{
	text-decoration: none;
	color: inherit;
}