*{
	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: 18px;
	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: #ff0505;
	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;
}
.glider{
	overflow: hidden;
}
.academicas_slider,
.culturales_slider,
.deportivas_slider{	
	position: relative;
	width: 90vw;
	height: auto;	
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: 50px auto;
}
.slider_academicas,
.slider_culturales,
.slider_deportivas{
	width: 100%;
	height: 100%;	
}
.slider_elemento{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.slider_title{
	position: absolute;
	top: 70%;
	width: 100%;
	height: 150px;	
	text-align: center;		
}
.slider_title_header{
	margin-top: 50px;	
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.slider_title_header::after{
	position: absolute;
	content: "";
	width: 300px;
	height: 5px;
	background-color: red;	
	left: calc(50vw - 150px);
	top: 120%;
}
.slider_title h2{	
	font-size: 50px;
	color: #fff;
}
.slider_text{
	/*margin-top: 50px;*/
	position: absolute;
	top: 75%;	
	width: 100%;
	height: 210px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: justify;
	/*background-color: rgba(0,0,0,0.5)	;*/	
	background: linear-gradient(to bottom, transparent 8%, #ea5151);
	padding: 10px;
}
.slider_text p{
	font-size: 18px;
	color: #fff;
}
.slider_prev, .slider_next{	
	width: 50px;
	height: 50px;
	position: absolute;
	top: calc(50% - 25px);
	border: 2px solid #fff;
	border-radius: 100%;
	z-index: 5;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;	
}
.slider_prev{
	left: 45px;
}
.slider_next{
	right: 45px;
}
.slider_prev i, .slider_next i{
	font-size: 30px;
	color: #fff;
}
@media screen and (max-width: 800px){
	@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;
	}
	.slider_title{
		top: 20%;
	}
	.slider_title h2{
		font-size: 35px;
	}
	.slider_prev, 
	.slider_next{	
	width: 40px;
	height: 40px;
	}
	.slider_prev i, 
	.slider_next i{
	font-size: 20px;
	}
}
@media screen and (max-width: 600px){
	.main_container{	
		background-image: url("../images/background/background_responsive.png");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		background-attachment: fixed;
	}
}
@media screen and (max-width: 450px){	
	.slider_title h2{
		font-size: 20px;
	}
	.academicas_slider,
	.culturales_slider,
	.deportivas_slider{		
	width: 100%;
	}
	.slider_prev, 
	.slider_next{	
	width: 30px;
	height: 30px;
	}
	.slider_prev i, 
	.slider_next i{
	font-size: 15px;
	}
	.slider_prev{
		left: 15px;
	}
	.slider_next{
		right: 15px;
	}
}