*{
	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{
	margin-top: 60px;
}
.header img{
	width: 100%;
	height: 650px;
}
.header h4{
	color: #1E296D;
	text-align: center;
}


/******** SECTION 1*************/
.section1{
	margin-top: 40px;
}
.section1 h3{
	color: #1E296D;
}

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

.main .fotos img{
	margin-top: 80px;
	max-width: 100%;
}

.main .lista{
	margin-top: 60px;
}

.main a{
	text-align: center;
	margin-top: 10px;
}

.main .video h4{
	font-size: 1.75rem;
	color: #1E296D;
	margin-bottom: 2rem;
	
}
/**********ALINEACIÓN DEL VIDEO************/
.video{
	display:flex;
	flex-direction: column;
	align-items: center;
	
	/*
	text-align: center;*/  
}

.video iframe{
	padding-bottom: 2rem;
}

/******* SECTION 2 /*****/
.section h3{
	margin-bottom: 20px;
}
.section h4{
	color: #1E296D;
}
.section .titulo{
	color: #1E296D;
}

.justificado{
	text-align: justify;
}


.section iframe{
	max-width: 70%;
}

.section .row{
	margin-bottom: 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;
}
/************** 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;
	}
	
	/********** SECTION1 *********/

	.section1 h3{
		font-size: 15px;
	}
	.header h4{
		font-size: 16px;
	}


	/********** MAIN *********/
	.main{
		padding: 0px 10px;
	}
	/********** FOOTER *********/
	.footer{
		margin-bottom: 10px;
	}
	.footer img{
		display: block;
   		margin: 0 auto;
	}
}

@media screen and (max-width:400px)
{
	.main .video iframe{
		margin-top: 40px;
		margin-bottom: 20px;
		font-size: 15px;
		height:300px;
		width:300px;
	}


	.main .video h4{
		color: #1E296D;
	}	
	
}
@media screen and (max-width:400px)
{
	
}