/* Para Cel */
/*-----------------------------------------------------------------------------------------------------------------------------------*/
@media only screen and (min-width:320px) and (max-width:1024px){

.header-logo {
	width: 100%;
	height: 100%;
	
	position: relative;
    display: flex;
	/*flex-direction: column;*/
    justify-content: center; /*start, center, end, between, around*/
    align-items: center; /*start, center, end*/	
	
	box-sizing: border-box;	
	/*paddingt: 5%;*/

	/*border: 1px solid red;*/
	background: none;
	
}

.header-logo img {
	width: auto;
	height: 45px;
	
	/*border: 1px solid red;*/
	background: none;

}

.header-span {
	width: auto;
	min-height: 100%;

	position: absolute;
	top: 0;
	right: 0;
	
    display: flex;
	flex-direction: column;
    justify-content: center; /*start, center, end, between, around*/
    align-items: end; /*start, center, end*/
	
	box-sizing: border-box;	
	padding-right: 5px;
	
	/*border: 1px solid red;*/
	background: none;
	
}

.header-span span {
	color: #fff;
	font-size: 36px;
	cursor: pointer;
	
	/*border: 1px solid red;*/
	background: none;

}

.header-nav {
	width: 55%;
	height: auto;
	
	position: absolute;
	top: 65px;
	right: 0;
	
    display: none;
	/*flex-direction: column;*/
    justify-content: center; /*start, center, end, between, around*/
    align-items: start; /*start, center, end*/
	
	box-sizing: border-box;	
	padding: 0;
	
	/*border: 1px solid red;*/
	background: none;
	
}

.header-nav ul {
	width: 100%;
	/*height: 100%;*/
    margin: 0;
	
	position: relative;
    display: flex;
	flex-direction: column;
    justify-content: start; /*start, center, end, between, around*/
    align-items: center; /*start, center, end*/
	
	box-sizing: border-box;	
	padding: 0;

	list-style: none; /* Elimina los puntos */
	/*gap: 1rem; /* Espacio entre enlaces */

	/*border: 1px solid red;*/
	background-color: #21618c;
	/*background-color: #2c3e50;*/
  
}

.header-nav ul li {
	width: 100%;
	/*height: 100%;*/

	position: relative;
	display: block;
	
	/*border: 1px solid red;*/
	background: none;
	
}

.header-nav ul li a {
	width: 100%;
	height: 50px;
	
	position: relative;
	/*display: block; /** probar flex **/
 
	display: flex;
	/*flex-direction: column;*/
    justify-content: center; /*start, center, end, between, around*/
    align-items: center; /*start, center, end*/
	
	box-sizing: border-box;
	padding: 18px 18px;
	
	color: #fff;
	text-align: left;
	font-size: 13px;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	
	/*border: 1px solid red;*/
	background: none;

	transition: all 0.5s ease;

}
	
.header-nav ul li a:hover {
	/*border-bottom: 2px solid #2e86c1; /** Azul claro **/
	
	background-color: #2e86c1; /** Azul claro1 **/	
	/*background-color: #3498db; /** Azul claro2 **/		
	/*background-color: #202d43; /** Azul clasico de 686 **/	
	/*background-color: #f56b00; /** Naranja Saci **/
	
}

.header-nav a i {
	margin-right: 5px;
	
	/*border: 1px solid red*/;
	
}

.header-nav ul li.has-submenu > a:after {
	content: " ▼";
	font-size: 0.7em;
	
}

/** Submenu **/
.header-nav ul li ul {
	width: 200px;
	
	position: absolute !important;

	display: none; /* Oculto por defecto */
	
	flex-direction: column;

	/*border: 1px solid red;*/
	background-color: #34495e;
		
}

.header-nav ul li ul li {
	width: 100%;
}

/* Mostrar submenú al hacer hover */
.header-nav ul li:hover > ul {
	display: flex; /* Aparece como columna */

	/*border: 1px solid red;*/
	
}

.material-icons.md-16 { 
	font-size: 16px;

}

.material-icons.md-18 { 
	font-size: 18px;

}

.material-icons.md-22 { 
	font-size: 22px;

}

.material-icons.md-24 { 
	font-size: 24px;

}

.material-icons.md-color1 { 
	color: #111;

}

.material-icons.md-color2 { 
	color: #fff;

}

}


/* Para PC y Laptop */
/*-----------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1025px) {

.header-logo {
	width: 100%;
	height: 50%;
	
	position: relative;
    display: flex;
	/*flex-direction: column;*/
    justify-content: center; /*start, center, end, between, around*/
    align-items: center; /*start, center, end*/	
	
	box-sizing: border-box;	
	/*paddingt: 5%;*/

	/*border: 1px solid red;*/
	background: none;
	
}

.header-logo img {
	width: auto;
	height: 45px;
	
	/*border: 1px solid red;*/
	background: none;

}

.header-span {
    display: none;
	
}

.header-nav {
	width: 100%;
	height: 100%;

	position: relative;
    display: flex;
	/*flex-direction: column;*/	
    justify-content: center; /*start, center, end, between, around*/
    align-items: start; /*start, center, end*/
	
	box-sizing: border-box;	
	/*padding: 5px;*/
	
	/*border: 1px solid red;*/
	background: none;
	
}

.header-nav ul {
	/*width: auto;
	height: 100%;*/
    margin: 0;
    
	position: relative;
    display: flex;
	/*flex-direction: column;*/
    justify-content: flex-start; /*start, center, end, between, around*/
    align-items: center; /*start, center, end*/
	
	box-sizing: border-box;	
	padding: 0;

	list-style: none; /* Elimina los puntos */
	/*gap: 1rem; /* Espacio entre enlaces */

	/*border: 1px solid red;*/
	background: none;
  
}

.header-nav ul li {
	/*width: auto;
	height: 100%;*/

	position: relative;
	display: block;
	
	/*border: 1px solid red;*/
	background: none;
	
}

.header-nav ul li a {
	width: 100%;
	height: 50px;
	
	position: relative;
	/*display: block; /** probar flex **/
 
	display: flex;
	/*flex-direction: column;*/
    justify-content: start; /*start, center, end, between, around*/
    align-items: center; /*start, center, end*/
	
	box-sizing: border-box;
	padding: 18px 18px;
	
	color: #fff;
	text-align: left;
	font-size: 14px;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	
	/*border: 1px solid red;*/
	background: none;

	transition: all 0.5s ease;

}
	
.header-nav ul li a:hover {
	/*border-bottom: 2px solid #2e86c1; /** Azul claro **/
	
	background-color: #2e86c1; /** Azul claro1 **/	
	/*background-color: #3498db; /** Azul claro2 **/		
	/*background-color: #202d43; /** Azul clasico de 686 **/	
	/*background-color: #f56b00; /** Naranja Saci **/
	
}

.header-nav a i {
	margin-right: 5px;
	
	/*border: 1px solid red*/;
	
}

.header-nav ul li.has-submenu > a:after {
	content: " ▼";
	font-size: 0.7em;
	
}

/** Submenu **/
.header-nav ul li ul {
	width: 200px;
	
	position: absolute !important;

	display: none; /* Oculto por defecto */
	
	flex-direction: column;

	/*border: 1px solid red;*/
	background-color: #34495e;
		
}

.header-nav ul li ul li {
	width: 100%;
}

/* Mostrar submenú al hacer hover */
.header-nav ul li:hover > ul {
	display: flex; /* Aparece como columna */

	/*border: 1px solid red;*/
	
}

.material-icons.md-16 { 
	font-size: 16px;

}

.material-icons.md-18 { 
	font-size: 18px;

}

.material-icons.md-22 { 
	font-size: 22px;

}

.material-icons.md-24 { 
	font-size: 24px;

}

.material-icons.md-color1 { 
	color: #111;

}

.material-icons.md-color2 { 
	color: #fff;

}

}
