/* CSS Document */

/* reseteo universal */

* {
	border: 0;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;	/* Firefox */
	-webkit-box-sizing: border-box; /* Safari */
}

article,figcaption,figure,footer,header,hgroup,nav,section {
	display: block;
}




/* Fuentes */


@font-face {
  font-family: 'DINPro-Regular';
  src: url('font/DINPro-Regular.eot?#iefix') format('embedded-opentype'),  url('font/DINPro-Regular.otf')  format('opentype'),
	     url('font/DINPro-Regular.woff') format('woff'), url('font/DINPro-Regular.ttf')  format('truetype'), url('font/DINPro-Regular.svg#DINPro-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}



@font-face {
  font-family: 'DINPro-Black';
  src: url('font/DINPro-Black.eot?#iefix') format('embedded-opentype'),  url('font/DINPro-Black.otf')  format('opentype'),
	     url('font/DINPro-Black.woff') format('woff'), url('font/DINPro-Black.ttf')  format('truetype'), url('font/DINPro-Black.svg#DINPro-Black') format('svg');
  font-weight: normal;
  font-style: normal;
}




/* CSS del sitio */

body {
	background-color: #EDEDED;
	color: #333333;
	font-family: "DINPro-Regular", Helvetica, Arial;
	font-size: 14px;
	width: 100%;
	margin: 0 auto;
}



img, video {
	max-width: 100%;
}



ul {
	list-style: none;
}

a {
	text-decoration: none;
}


/* ------------------ ENCABEZADO Y MENU DEL SITIO ------------------ */



header {

	height: auto;

}



header, 	footer {
	margin: 0 auto;
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
}


footer {
	min-height: 100px;
	background-color: #3C3C3B;
	padding-bottom: 20px;
	height: auto;
}



#techo {
	background-color: #305791;
	height: 5px;
	width: 100%;
	display: block;
	vertical-align: top;
}


#encabezado-top {
	width: 100%;
	padding: 10px;;
	margin: 0 auto;
	border-bottom-style: solid;
	border-bottom-color: #305791;
	border-bottom-width: 1px;

	
}



#logo {
	text-align: left;
	display: inline-block;
	width: 25%;
	vertical-align: middle;
	margin-left: 4%;
}






/* ----------   MENU   -----------  */



nav {
	display: inline-block;	
	width: 70%;
	vertical-align: middle;
	text-align: center;
	font-weight: bold;
}



nav > ul > li {
	display: inline-block;
	margin: 0 auto;
	width: 19%;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
	vertical-align: middle;
	border-right-style: solid;
	border-right-color: #305791;
	border-right-width: 1px;
	border-left-style: solid;
	border-left-color: #305791;
	border-left-width: 1px;
	list-style: none;
}


nav > ul > li {
	list-style: none;
}


nav > ul > li > a {
	padding: 25px;
	color: inherit;
	text-decoration: none;
}


nav li ul {
	position: absolute;
	list-style: none;
    text-align: left;
	max-height: 0px;
    overflow: hidden;
	z-index: 100;
	font-size: 12px;
	-webkit-transition: max-height 0.4s linear;
    -moz-transition: max-height 0.4s linear;
    transition: max-height 0.4s linear;
}


nav li:hover ul {
    max-height: 200px;
	margin-top: 5px;
}


nav li:hover {
    background-color: #305791;
	color: #FFF;
}


nav li ul li a {
    padding: 10px;
    color: #fff !important;
    text-decoration: none !important;
    display: block;
	
}



nav li ul li {
    background-color: #7C7C7C;
	
}


nav li ul li:hover {
    background-color: #305791;
	color: #FFF;
}






/* ------------------ ENCABEZADOS DE TEXTO ------------------ */




h2 {
	font-size: 24px;
	font-family: "DINPro-Black", Helvetica, Arial;
	width: auto;
	color: #305791;
	text-align: left;
	line-height: 35px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #305791;
	margin-top: 10px;
	margin-bottom: 5px;
}



h3, h4 {
	font-family: "DINPro-Black", Helvetica, Arial;
	font-size: 28px;
	font-weight: bold;
	color: #FFF;
	text-align: left;
	background-color: #305791;
	margin-bottom: 10px;
	padding: 10px;

	}



h4 {
	font-size: 22px;
}



h4:hover {
	background-color: #E1E1E1;
	color: #305791;
	-moz-transition: all ease .5s; /*Aplicamos una ligera transición*/
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
}



h5 {
	font-family: "DINPro-Black", Helvetica, Arial;
	font-size: 14px;
	width: 100%;
	text-align: left;
	display: inline-block;
	background-color: #7C7C7C;
	color: #E1E1E1;
	padding: 5px;
	
}


h6 {
	font-family: "DINPro-Black", Helvetica, Arial;
	font-size: 14px;
	width: 100%;
	text-align: left;
	display: inline-block;
	background-color: #305791;
	color: #E1E1E1;
	padding: 5px;
	margin-bottom: 5px;
}






/* ------------------ SITIO ------------------ */




#contenido {
	color: #305791;
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	height: auto;
	display: block;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #3C3C3B;
	margin-bottom: 10px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #E1E1E1;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #E1E1E1;
}




#galeria-inicio {
	background-color: #305791;
	width: 100%;
	display: block;
	text-align: center;
	max-height: 400px;

}


#galeria-prod {
	background-color: #E1E1E1;
	
	height: auto;
	max-height: 100%;
	text-align: center;
}



#txt, #txt-center {
	display: inline-block;
	color: #3C3C3B;
	width: 100%;
	text-align: left;
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 5px;
}


#txt-center {
	text-align: center;
}



#info {
	width: 98%;
	margin-top: 20px;
	margin-bottom: 10px;
	text-align: center;	
	display: block;
	padding-left: 10px;
	
}





/* ------------------ COLUMNAS ------------------ */



#col20, #col30, #col40, #col60, #col80, #col100 {
	text-align: left;
	vertical-align: top;
	display: inline-block;
	margin-right: 5px;
	padding-bottom: 10px;
}


#col20 {
	width: 19%;
}

#col30 {
	width: 29%;
}

#col40 {
	width: 39%;
}

#col60 {
	width: 59%;
}

#col80 {
	width: 79%;
}

#col100 {
	width: 99%;
}


#listado {
	text-align: left;
	font-size: 12px;
	color: #305791;
	font-weight: bold;

}


#listado li {
	padding-left: 10px;
	line-height: 35px;
}



#listado li:hover {
	background-color: #305791;
	color: #E1E1E1;
	-moz-transition: all ease .5s; /*Aplicamos una ligera transición*/
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
}


#tarjetas {
	background-color: #E9E9E9;
	padding: 10px;
	margin: 5px;
	display: inline-block;
	width: 32%;
	text-align: center;
	vertical-align: top;
	min-height: 450px;
	height: auto;
}


#tarjetas:hover, #tarjeta-cliente:hover {
	background-color: #C8C8C8;
	color: #E1E1E1;
	-moz-transition: all ease .5s; /*Aplicamos una ligera transición*/
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	
}


#imgs-serv {
	width: 100%;
	height: auto;
	margin: 0 auto;
	text-align: center;
}


#tarjeta-cliente {
	background-color: #E9E9E9;
	padding: 10px;
	margin: 5px;
	display: inline-block;
	width: 23%;
	text-align: center;
	vertical-align: middle;
	min-height: 100px;
	height: auto;
}


#tarjeta-cliente:hover {
	background-color: #3C3C3C;
	color: #E1E1E1;
	-moz-transition: all ease .5s; /*Aplicamos una ligera transición*/
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	
}





#contacto-imagen {
	text-align: left;
	max-width: 100%;
	display: inline-block;
	vertical-align: top;

}




/* formulario */



#items-formulario {
	text-align: left;
	width: 100%;
	display: block;
	padding-top: 10px;
	vertical-align: top;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #E1E1E1;
	
}


.verif-formu {
	display: none;
}


.formularios, .formularios-area {
	width: 100%;
	background-color: #EDEDED;
	display: flex;
	color: #3C3C3B;
	margin-bottom: 10px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #E1E1E1;
	border-bottom-color: #E1E1E1;
	padding-left: 5px;
}


.formularios {
	height: 30px;
}

.formularios:focus {
	background-color: #E1E1E1;
	
}

.formularios-area {
	height: 100	px;
}


.result-fail {
    background: none repeat scroll 0 0 #BC1010;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    text-align: center;
}

.result-ok {
    background: none repeat scroll 0 0 #1EA700;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    text-align: center;

}



#conte-foot {
	max-width: 1100px;
	margin: 0 auto;
}

#footer-menu {
	width: 20%;
	display: inline-block;
}

#footer-menu ul {
	list-style: none;
	margin: 10px;
}


#footer-menu li {
	text-align: left;
	font-size: 10px;
	color: #E1E1E1;
	display: inline-block;
	margin: 0 auto;
	width: 100%;
	margin-top: 5px;
	padding: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E1E1E1;
}

#footer-menu a:hover {
	background-color: #305791;

}

#footer-logo {
	display: inline-block;
	width: 79%;
	text-align: right;
	vertical-align: top;	
	height: 50px;
}

#footer-logo img{
	display: inline-flex;
	max-height: 70px;
	text-align: right;
	vertical-align: top;	

}


#footer-redes {
	width: 20%;
	display: block;
	color: #E1E1E1;
	vertical-align: top;
	text-align: left;
	margin-top: 10px;
	font-size: 12px;
	height: auto;
}



#footer-redes a {
	text-decoration: none;
	color: #E1E1E1;
}

#footer-redes:hover {
	background-color: #305791;
}




/* CLASES */



.negrita {
	color: #305791;
	font-weight: bold;
	
}


.boton {
	background-color:#305791;
	font-weight: bold;
	color: #E1E1E1;
	padding: 5px;
	font-size: 12px;
	float: right;
	
}


.derechos {
	color: #E1E1E1;
	font-size: 10px;
}
	





@media(max-width: 1000px) {
	
	#tarjetas {
		width: 45%;		
	}
	
	#logo {
		text-align: center;
		display: block;
		width: 100%;
	}

	nav {
		width: 100%;
	}
	
	nav li {
		display: block;
		width: 100%;
		padding: 5px;
		border-bottom-width: 1px;
		border-bottom-style: solid;
		border-bottom-color: #E1E1E1;
		margin-bottom: 5px;
		
	}


}




@media(max-width: 800px) {
	

	#tarjetas {
		display: block;
		width: 100%;
		min-height: auto;

	}
	
	
	
	#contenido {
		padding-right: 1%;
		padding-left: 1%;
		padding-top: 0px;
	}

	
	#galeria-inicio {
		width: 100%;
		display: block;
	}
	
	
	#items-formulario {
		display: block;
		width: 100%;
	
	}



	#col20, #col30, #col40, #col60, #col80, #col100 {
		display: block;
		width: 100%;
		margin-bottom: 10px;
		
	}
	

	#contacto-imagen {
		margin-top: 10px;

	}


	
	.boton {
		display: block;
		margin-top: 10px;
		width: 100%;
	}
	
	
	#footer {
		display: block;
		width: 100%;
		margin: 0 auto;
	}
	
	
	#footer-logo {
		display: block;
		text-align: center;
	}


	#conte-foot {
		padding: 10px;
	}


	#footer-menu {
		width: 100%;
		text-align: center;
		display: block;
	}

	#footer-menu ul li {
		text-align: center;
	}
	
	
	nav li ul {
		width: 80%;
		text-align: center;
		
	}
	
}


@media(max-width: 700px) {
	
	
	nav ul li {
		display: block;
		width: 100%;
		padding: 5px;
		border-bottom-width: 1px;
		border-bottom-style: solid;
		border-bottom-color: #E1E1E1;
		margin-bottom: 5px;
		
	}

}
