*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body{
	font-family: 'Oxygen', sans-serif;	
}
.main_container{
	width: 100vw;
	/*height: 100%;*/
	background-image: url("../images/background/background1.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}
/******************************BARRA DE NAVEGACION*****************************/
.navbar{
	position: relative;
	width: 100%;
	height: auto;
	background-color: #ff0505;
	display: flex;
	align-items: center;
	z-index: 10;	
}
.logo_web{
	width: 300px;
	height: 100%;	
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 5px;		
}
.logo_web img{
	width: 100%;
	object-fit: cover;
}
.menu{	
	width: 85%;
	height: 100%;
	display: flex;
	justify-content: space-evenly;
	align-items: flex-end;	
}
.menu_lista{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
}
.menu_lista li{
	list-style-type: none;
	color: #fff;	
	background-color: transparent;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size .5s;
}
.menu_lista li a{
	text-decoration: none;
	font-size: 17px;
	color: #fff;
	cursor: pointer;
}
.menu_lista li a i{
	margin-right: 5px;
}
.menu_lista li:hover, a:focus {
    background-size: 100% 1px;
    cursor: pointer;
}
.cerrar_menu{
	position: absolute;
	top: 5px;
	right: 5px;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 5;
	display: none;
	animation: appear linear forwards 1s;
}
.cerrar_menu i{
	font-size: 30px;
	color: #fff;
}
@keyframes appear{
	0%{
		opacity: 0;
		right: 100%;
	}
	100%{
		opacity: 1
		right: 5px;
	}
}
.menu_responsive{
	position: fixed;
	top: 10px;
	right: 10px;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #ff0505;
	border-radius: 100%;
	display: none;
	z-index: 15;	
}
.responsive_item{
	color: #690a0a;
	font-size: 30px;
	cursor: pointer;
}
@keyframes dissappear{
	0%{
		right: 100%;
		opacity: 15px;
	}
	100%{
		right: 15px;
		opacity: 1;
	}
}
/*********************************LOGO RESPONSIVE*************************************/
.logo_responsive{
	width: 100%;
	height: 170px;
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
}
.logo_responsive img{
	width: 170px;
}
/*********************************CONTENIDO*************************************/
.contenido{
	margin-top: 15px;
	width: 100%;
	height: 100%;	
	display: flex;
	justify-content: center;
	align-items: center;
}
.contain_img{
	width: 50%;		
}
.contain_img img{
	width: 100%;
}
/*********************************INFO*************************************/
.info{
	position: relative;
	margin-top: 10px;
	width: 100%;
	height: 100%;	
}
.title{
	width: 100%;
	text-align: center;
	font-size: 20px;	
}
.title h2{
	position: relative;
	width: 80%;
	margin: 50px auto;
	color: #000000;
}
.menu_becas{
	width: 100%;	
	margin-top: 10px;
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.menu_becas ul{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}
.menu_becas ul .menu_item{
	list-style-type: none;	
	padding: 5px;
	padding: 7px;
	border-radius: 5px 5px 5px 5px;
	cursor: pointer;
	font-size: 18px;
}
.menu_becas ul .menu_item:hover{
	background-color: #ff0505;
	color: #fff;
}
.headers_menu{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.slash{
	width: 21%;	
}
.active{
	border-bottom: solid 2px #ff0505;
}
.text{			
	width: 85%;	
	height: 150px;
	margin: auto;
}
.oficial{
	width: 98%;
	margin: 5px auto;
	text-align: justify;
	font-size: 18px;
	padding-bottom: 50px; 
}
.excelencia{
	width: 98%;
	margin: 5px auto;
	text-align: justify;
	font-size: 18px;
	display: none;
	padding-bottom: 50px; 
}
.financiamiento{
	width: 98%;
	margin: 5px auto;
	text-align: justify;
	font-size: 18px;
	display: none;
	padding-bottom: 50px; 
}
.convenios{
	width: 98%;
	margin: 5px auto;
	text-align: justify;
	font-size: 18px;
	display: none;
	padding-bottom: 50px; 
}
/*******************************RESPONSIVE DESING************************************/
@media screen and (max-width: 1100px){
	.menu{
	width: 80%;	
	margin: auto;
	}
	.text{		
	width: 75%;	
	height: 150px;
	margin: auto;
	}
}
@media screen and (max-width: 1000px){
	.title h2::after{
		top: 100px;
	}
}
@media screen and (max-width: 800px){
	.navbar{
		position: fixed;
		width: 70%;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		display: none;
		position: fixed;
	}
	.menu{
		width: 100%;				
	}
	.menu_lista{
		justify-content: center;
		flex-direction: column;
		align-items: flex-start;		
	}
	.menu_lista li{
		width: 95%;
		margin: 10px;
		border-top: 1px solid #fff;
		background-color: none;
		background-image: none;
    	background-position: none;
    	background-repeat: none;
    	background-size: none;
    	transition: none;
	}
	.menu_responsive{
		display: flex;
	}
	.cerrar_menu{
		display: flex;
	}		
	.logo_responsive{
		display: flex;
	}
	.menu_becas{
		width: 50%;
		margin: auto;
		margin-bottom: 50px;
	}
	.menu_becas ul{
		flex-direction: column;
		align-items: initial;
	}
	.contain_img{
		width: 85%;
	}
}		
@media screen and (max-width: 600px){
	.title h2::after{
		top: 130px;
	}
	.main_container{	
		background-image: url("../images/background/background_responsive.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		background-attachment: fixed;
	}
	.headers_menu{
		display: none;
	}
}
@media screen and (max-width: 450px){
	.logo_web{
		margin-top: 50px;
		width: 100%;
	}
	.contain_img{
		width: 100%;
	}		
}
@media screen and (max-width: 350px){
	.title h2::after{
		display: none;
	}
}