*{
	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;
	}
	
}

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

.header hr {
  height: 2px;
  background-color: black;
}

/****** SECTION *****/
.section .seccion{
	margin-top: 20px;
}

.section h2{
	color: #1E296D;
}

.section hr {
  height: 2px;
  background-color: black;
}

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

.main .tarjeta{
	margin-top: 30px;
}

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

/*centrar video */
.main .video{
	 display: flex;
        align-items: center;
}
.main .video iframe{
	margin: 0 auto;
	max-width: 100%;
}
.main .top{
	margin-top: 40px;
}
.main .texto{
	padding: 20px 0;
}
.main .texto p{
	font-size: 15px;
	text-align: justify;
}
.main h2{
	color: #1E296D;
}
/****** 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;
}

/******* FOOTER ******/

.footer{
	margin: 20px 0;
}
.footer .imagen img{
	max-width: 50%;
}

.footer .row{
	margin-top: 10px;
	margin-bottom: 40px;
}

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

	/********* SECTION ********/
	.section h2,
	.section p{
		font-size: 15px;
	}
	/********* MAIN ********/
	.main h2,
	.main p{
		font-size: 15px;
	}
	.main .texto{
		padding: 10px 50px;
	}
	.main .texto p
	{
		font-size: 15px;
	}



	.footer p{
		font-size: 15px;
	}
}


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

	/******* HEADER *********/
	.header{
		margin-top: 60px;
	}
	/********* SECTION ********/
	.section h2,
	.section p{
		font-size: 15px;
	}
	/********* MAIN ********/
	.main h2,
	.main p{
		font-size: 15px;
	}
	

	.main .video{
		max-width: 100%;
	}
	/***** FOOTER ******/
	.footer .imagen img{
		max-width: 100%;
	}
	.footer p{
		font-size: 15px;
	}
}

@media screen and (max-width:400px){
	/********* SECTION ********/
	.section h2,
	.section p{
		font-size: 15px;
	}
	/********* MAIN ********/
	.main h2,
	.main p{
		font-size: 15px;
	}
	.main .texto{
		padding: 10px 30px;
	}
	.main .texto p
	{
		font-size: 15px;
	}
	.main .tarjeta{
		margin-top: 10px;
	}
	/******** FOOTER ******/
	.footer .row{
		margin-bottom: 10px;
	}
}