/*FUENTES*/ 
/* VARIABLES*/
:root{
    --nav_a_COLOR:#333;
    --nav_a_hover_COLOR:#0076A5	;
 
    --nav_MARGIN:10px;      /*-------debe ser igual a la segunda cifra del --navPADDING*/
    --nav_ul_MARGIN_movil:0em;/* segun el numero de botones y eso cuidado con el responsible que pueden desaparecer algunos si se hace mal*/
    --nav_a_MARGIN:5px;  /* segun el numero de botones y eso cuidado con el responsible que pueden desaparecer algunos si se hace mal*/

    --nav_a_FONT_SIZE_movil:1.5em;
}
.volumen-header-fixed{
	height: 125px;
}
.volumen-header-fixed.scroll{
	height: 80px;
}
.submenu_idiomas.scroll{
	transition: 0.9s;
	top:75px;
}

header{
	z-index: 100; 
}
header.fixed_top{
	width: 100%;
	position: fixed;
	top: 0;
  	right: 0;
  	left: 0;
}
header.scroll{
	background: #fff;
}
header.scroll .top{
	height: 0px;
}
header.scroll .cuerpo{
	margin: 0px;
	padding:10px 5px 10px 5px;
	height: 60px;
}
header.scroll .logo{
	height: 100%;
}
header .top{
	transition: 1s;
	height: 25px;
/*	background: url(../rsc/img/top-bg.png) repeat-x top;*/
background: var(--nav_a_hover_COLOR);
}
header .cuerpo{
	transition: 1s;
	padding:5px 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: url(../rsc/img/fondo-bg.png) repeat-x center left;
	margin: 30px 0 20px 0;
	width: calc(100% - 10px);
	height: 40px;
	max-width: 100%;
}
header .burger{
	display: none;
	height:4em;
}
header .burger img{
	height: 100%;
	cursor: pointer;
}
header h1{
	font-weight: normal;
	color: #999;
	text-transform: uppercase;
	font-size: 0.9em;
}
header .logo{
	transition: 1s;	
	height: 200%;
	margin:0  0 0 30px;
}
header .logo img{
	height: 100%;
	cursor: pointer;
}
header nav ul{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
header nav ul li{
	margin-left: 5px;
	font-size: 1em;
}
header nav ul li a{
	text-decoration:none;
	color: var(--nav_a_COLOR);
}

header nav ul li a .resaltar{
	transform:scale(1.2);
	color:  var(--nav_a_hover_COLOR);
}
/*--------------------span para el hover------------------*/
header nav ul li a span{
	font-weight: 900;
	display: block;
	transform: rotateY(0);
	transition: 0.8s;
	padding: 0 10px;
} 
header nav ul li a span:hover{
	transform:scale(1.3);
	color:  var(--nav_a_hover_COLOR);
}
header .logo img{
	display: block;
	transform: rotateY(0);
	transition: 0.8s;
}
header .logo img:hover{
	transform: rotateY(360deg);
}
.submenu_idiomas{
	position: fixed;
	background: rgba(255,255,255,0.8);
	width: 150px;
	height: 200px;
	right: 0px; top: 105px;
	max-width: 100%;
	max-height: calc(100vh - 110px);
	transition: 1.5s;
	transform: translateX(100%);
	z-index: 1000;
}
.submenu_idiomas div{
	width:120px;
	height:170px;
	max-width: 100%;
	max-height: calc(100vh - 110px);
	background: url(../rsc/img/fondo-bg.png) repeat center left;
	display: flex;
	flex-direction: column;
	padding: 30px;
}
.submenu_idiomas div span{
	margin: 3px;
	transition: 1s;
	padding-left: 10px;
		cursor: pointer;
}
.submenu_idiomas div a{
	text-decoration: none;
	color: #333;

}
.submenu_idiomas .marcado{
	color: #0076A5	;
}
.submenu_idiomas .idioma:hover{
	padding-left: 0px;
	color:  var(--nav_a_hover_COLOR);
}
/* MEDIA QUERIES */
/* TV */
@media screen and ( min-width: 2049px){
	
}
/* PC */
@media screen and ( max-width: 2048px){
	
}
/* PORTATIL */
@media screen and ( max-width: 1330px){

}
/* TABLET */
@media screen and ( max-width: 870px){
}
/* MOVIL */
@media screen and ( max-width: 720px){
	.volumen-header-fixed{
		height: 100px;
	}
	header .logo{
		height: 200%;
	}
	header .cuerpo{
		margin: 20px 0;
		height: 30px;
		width: 100vw;
	}
	header {
		position: relative;
		
	}
	header .burger{
		display: block;
	}
	header nav{
		position: fixed;
		width: 100%;
		margin-top:80px;
		height: calc(100vh - 2 * var(--nav_MARGIN));
		
		top: 0px;
		left: calc(-100% - 300px);

		background: #FFF;
		z-index: -1;
	}
	header nav ul{
		margin-top: var(--nav_ul_MARGIN_movil);
		height: calc(100vh - 125px);
	 	flex-direction: column;
	 	align-content: space-around;
	 	justify-content: flex-start;
	}
	header nav ul li{
		padding: 10px;
		margin: 0 auto;
		text-align: center;
		font-size: var(--nav_a_FONT_SIZE_movil);
		margin-top: 5px;
	}
	.submenu_idiomas{
	position: fixed;
	width: 70%;
	height:  calc(100vh - 110px);
	max-width: 100%;
	max-height: calc(100vh - 110px);
	background: rgba(255,255,255,0.9);
	top: 80px;
	}
	.submenu_idiomas div{
	width: 70%;
	height:  calc(100vh - 110px);
	max-width: 100%;
	max-height: calc(100vh - 110px);
	padding: 1em 80px;
	font-size: var(--nav_a_FONT_SIZE_movil);
	}
}
/* SMARTWATCH */
@media screen and ( max-width: 330px){
	header nav ul li{
		padding: 5px;
		font-size: calc( var(--nav_a_FONT_SIZE_movil) * 0.8);
	}
}
/* ANIMACIONES */