
.contenedor_nav_completo{
	width: 100%;
	background: #0076a5;
	min-height: calc(100vh - 200px);
	overflow-x: auto;
}
.contenedor_nav_completo .nav_completo {
	width: 100%;
	height: calc(100vh - 200px);
	display: flex;
	align-items:center;
	justify-content: space-around;
	flex-wrap: wrap;
	align-content: space-between;
}
.contenedor_nav_completo .nav_completo li{
	padding: 0 2em;
	height: calc(100% - 2px);
	flex-grow:1;
	list-style:none;
	margin: 1px 1px;
	transition: 1s;
	background:  radial-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.2), rgba(0,0,0,0.3), rgba(0,0,0,0.4));
}
.contenedor_nav_completo .nav_completo li a{
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	text-decoration:none;
	color: #FFF;
	font-size: 1.5em;
	font-weight: bold;
}
.contenedor_nav_completo .nav_completo li:hover{
	background: rgba(255,255,255,0.2);
/*	font-size: 1.5em;*/
	box-shadow: 0px 0px 10px 5px rgba(0, 0, 0,0.6);
	/*padding: 20px;*/
}
.contenedor_nav_completo .nav_completo li a img{
	height: 250px;
	max-height: 50%;
}
/* MEDIA QUERIES */
/* TV */
@media screen and ( min-width: 2049px){
	
}
/* PC */
@media screen and ( max-width: 2048px){
	
}
/* PORTATIL */
@media screen and ( max-width: 1380px){
	
}
/* TABLET */
@media screen and ( max-width: 1600px){
	
}
@media screen and ( max-width: 870px){
	.contenedor_nav_completo .nav_completo li{
		font-size: 0.8em;
	}
	.contenedor_nav_completo .nav_completo li a img{
	height: 150px;
	}
	.contenedor_nav_completo .nav_completo li:hover{
		/*font-size: 1.2em;*/
	}
}
/* MOVIL */
@media screen and ( max-width: 720px){
	.contenedor_nav_completo{
		height: auto;
	}
	.contenedor_nav_completo .nav_completo li{
	height:350px;
	width: 100%;
	margin: 1px 0;
	}
}
/* SMARTWATCH */
@media screen and ( max-width: 330px){
	
}
/* ANIMACIONES */