*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-family: "Open Sans", Arial, Sans-serif;
	font-size: 16px;
}
/********** NAVBAR ADAPTABLE A DISPOSITIVOS MOVILES ****************/
.fixed-top {
  max-height: 100vh;
  overflow: auto;
}

/*SCROLL DE NAVBAR AÑADIDO POR ALBERTO CRUZ
EL 1 DE SEPTIEMBRE DE 2021
 ****************/
 .DivWithScroll{
    height:65vh;
	width:200px;
    overflow:hidden;
	overflow-y:scroll;
	overflow-x: hidden;
	direction:rtl;
	background-color: #F5F5F5;
    border: 1px solid #DDDDDD;
	font-weight: bold;
	border:1px solid rgba(136, 90, 90, 0.25);
	font-size: 12px;


}
/* estilos webkit solo mejoran apariencia de scroll, aunque mejora no 
se ve en  mozilla porque no es compatible*/
/* width */
::-webkit-scrollbar {
	width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
	background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
	background: #888;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
	background: #555;
  }
/*El tamaño maximo donde se aplicara esta clase
es de 768px. Es decir, para esconcer el navbar de las
PC -- Alberto Cruz*/
@media (max-width: 768px){
	.hide_desk_nav{
		display: none;
	}
	
}

	


/*para cambiar enlaces del navbar*/
/*.linea .container .collapse a{
	font-size: 8px;
	padding: 5px 0px;
}
*/

.container{
	text-align: justify;
}

/****** HEADER ********/
.header img{
	/*background:#1E296D;*/
	max-width: 100%;
	margin-top: 50px;
}


.header .texto{	
	margin-top: 20px;
}

/****** BARRA LATERAL*****/
.aside{

	position: fixed;
	font-size: 14px;
}
.aside li{
	text-align: center;
}
.aside li .active{
	
	color: #fff;
	background: #1E296D;
}
.aside h1{
	font-weight: 300;
}
.aside a{

	color: #000;
}
.aside a:hover{
	color: red;
}
/************ SECTION **************/
.section .elemento{
	margin:20px 0px;
	text-align: center;
}
.section .titulo{
	text-align: justify;
}
.section h2{
	color: #1E296D;
}
.section .elemento h3{
	color: #1E296D;
}
.section .elemento a{
	font-size: 20px;
}
.section .elemento img{
	max-width: 100%;
}
/*para centrar iframe*/
.section .elemento iframe{
	margin: 0 auto; 
	display: block; 
}

/****************** MAIN ****************/


.main img{
	max-width: 100%;
}

.main .row{
	margin-top: 35px;
}

.main .azul{
	color: #1E296D;
}

.main h3{
	color: #1E296D;
}

/************ SECTION 2**************/
.section2 h3{
	margin-top: 60px;
	color: #1E296D;
	text-align: center;
}
.section2 h4,
.section2 h5{
	color: #1E296D;
	margin: 30px 0px;
}

.section2 .centrado{
	text-align: center;
}

.section2 .centrado img,
.section2 .centrado iframe{
	margin-top: 20px;
	margin-bottom: 20px;
}
/************** FOOTER ************/

.footer p{
	margin-top: 30px;
	margin-bottom: 30px;
	font-size: 14px;
}
.footer img{
	width: 70%;
}

/********* MEDIAQUERIES *******/
@media screen and (max-width:600px)
{
	/* NAVBAR */
	.linea .container a{
		font-size: 15px;
	}
	.linea .container .collapse a{
	font-size: 15px;
	padding: 5px 0px;
	}

	/********** HEADER *********/
	.header img{
		max-width: 100%;
		margin-top: 60px;
	}
	/********** SECTION *********/
	.section h2{
		color: #1E296D;
		font-size: 20px;
	}
	.section iframe{
		max-width: 100%;
	}	
	/********** MAIN *********/
	.main{
		padding: 0px 10px;
	}
	.main img{
		 display: block;
   		 margin: 0 auto;
	}
	/********** FOOTER *********/
	.footer{
		margin-bottom: 10px;
	}
	.footer img{
		display: block;
   		margin: 0 auto;
	}

}

@media screen and (max-width:400px)
{
	/********** HEADER *********/
	

}

@media screen and (max-width:300px)
{

	/********** HEADER *********/

	
}