@import url('https://fonts.googleapis.com/css2?family=Oxygen&display=swap');

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body{
	font-family: 'Oxygen', sans-serif;
	font-size: 20px;
}
.main_container{
	width: 100%;
	/*height: 100%;
	min-height: 100vh;
	margin: auto;*/
	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: #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;
}
/*********************************BANNER PRINCIPAL*************************************/
.main_banner_container{
	width: 100%;
	height: auto;	
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	background-color: #E51C22;	
}
.banner_container{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;	
}
.banner_container img{
	width: 100%;
	height: auto;	
}
.wave_container{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.typer_container{
	position: absolute;
	top: calc(40% - 125px);
	left: calc(50% - 300px);
	width: 600px;
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.typer_container h1{
	font-size: 40px;
	color: #000000;
}
.typed{
	color: #FF0505;
}
/***************************************/
.preuniversitario_info_container{
	width: 100%;
	height: auto;
	/*min-height: 100vh;*/
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;	
	text-align: center;
	margin-top: 150px;	
}
.title{
	font-size: 40px;
}
.cards_container{
	width: 100%;
	height: auto;
	/*min-height: 100vh;	*/
	padding: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;		
}
.card{
	width: 400px;
	height: auto;
	min-height: 500px;
	border-radius: 100px 0px 15px 0px;
	background-color: #F5F5F5;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	gap: 15px;
	padding: 15px; 
	box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.75);
	-webkit-box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.75);
}
.card_image{
	width: 100%;
	height: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.card_image_container{
	width: 200px;
	height: 200px;	
	border-radius: 100%;
	border: solid 5px red;
	background-color: #FFFFFF;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.75);
	-webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.75);
	overflow: hidden;
}
.card_image_container img{
	width: auto;
	height: 100%;
}
.card_text{
	width: 100%;
	height: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 15px;
}
.card_info{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: justify;
	font-size: 17px;
}
/***********************************/
.preuniversitario_info_container_2{
	width: 100%;
	/*height: auto;
	min-height: 100vh;*/
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;	
	text-align: center;
	margin-top: 100px;
}
.small_cards_container{
	width: 100%;
	height: 100%;	
	padding: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;	
}
.small_card{
	width: 200px;
	height: 450px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border-radius: 20px;
	box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.75);
	-webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.75);
}
.small_card_image{
	width: 100%;
	height: 50%;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.small_card_image_container{
	width: 100%;
	height: 100%;
	background: #8E0E00;
	background: -webkit-linear-gradient(to right, #FF0505, #8E0E00);
	background: linear-gradient(to right, #FF0505, #8E0E00);
	border-radius: 15px 15px 100px 15px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.icon_container{
	width: 110px;
	height: 110px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.icon_container img{
	width: 100%;
	height: auto;
}
.small_card_text{
	width: 100%;
	height: 50%;
	padding: 10px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	gap: 10px;
}
.small_card_title{
	font-size: 18px;
}
.small_card_info{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: justify;
	font-size: 17px;
}
/**********************************/
.requisitos_container{
	width: 100%;
	height: auto;
	min-height: 100vh;
	background: url("../images/preuniversitario/banner2.png");
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;	
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 100px 0px 100px 0px;
}
.text_container{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;	
	width: auto;
	height: auto;	
	text-align: justify;
	gap: 15px;
	color: #FFFFFF;
	padding: 10px;
	text-align: center;
}
.text_container h2{
	font-size: 40px;
}
.text_container p{
	font-size: 30px;
}
.register{
	padding: 8px 15px;
	border-radius: 25px;
	border: none;
	background-color: #FE0000;
	color: #FFFFFF;
	font-size: 30px;
	font-weight: bold;
	cursor: pointer;
}
/*********************************/
.opiniones{
	width: 100%;
	height: auto;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: #202020;
}
.opiniones .title{
	color: #FFFFFF;
	text-align: center;
}
.slider_container{
	display: block;
	width: 700px;
	height: 600px;	
	overflow: hidden;
	position: relative;
}
.slider{
	width: 300%;
	height: 100%;
	display: flex;
	transition: transform 0.5s ease;
	justify-content: center;
	align-items: center;	
}
.prev,.next{
	width: 50px;
	height: 50px;
	position: absolute;
	top: calc(50% - 25px);	
	border-radius: 100%;
	background-color: rgba(255,255,255,0.5);
	display: flex;
	justify-content: center;
	align-items: center;
}
.prev{
	left: 10px;
}
.prev i, .next i{
	color: #FFFFFF;
	font-size: 35px;
}
.next{
	right: 10px;
}
.slider_section{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.items_container{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 20px;
	padding: 10px;
}
.comentario{
	font-size: 25px;
	color: #FFFFFF;
	text-align: justify;
}
.video_container{
	width: 200px;
	height: 350px;
	display: flex;
	justify-content: center;
	align-items: center;	
}
.video_container video{
	width: 100%;
	height: auto;
}
.cerrar{
	width: auto;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1000;
}
.cerrar i{
	font-size: 40px;
	color: #ff0000;
}
/***********************************/
@media screen and (max-width: 1300px){
	.text_container h2{
		font-size: 40px;
	}
	.text_container p{
		font-size: 35px;
	}
}
@media screen and (max-width: 1100px){
	.menu{
	width: 80%;	
	margin: auto;
	}
	.text{		
	width: 75%;	
	height: 150px;
	margin: auto;
	}
}
@media screen and (max-width: 1000px){
	.text_container h2{
		font-size: 35px;
	}	
	.card_info{
		font-size: 16px;
	}
	.preuniversitario_info_container{
		margin-top: 50px;
	}
	.title h2::after{
		top: 100px;
	}
}
@media screen and (max-width: 860px){
	.card{
		min-height: initial;
	}
	.text_container{
		left: 10px;
	}
	.text_container p{
		font-size: 30px;
	}	
}
@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: 700px){
	.typer_container h1{
		font-size: 30px;
	}
	.slider_container{
		width: 500px;		
	}
}
@media screen and (max-width: 600px){	
	.title{
		font-size: 30px;
	}	
	.card_info{
		font-size: 15px;
	}
	.text_container h2{
		font-size: 25px;		
	}
	.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: 500px){
	.typer_container h1{
		font-size: 20px;
	}	
	.slider_container{
		width: 300px;
		height: 600px;		
	}
	.comentario{
		font-size: 18px;
	}
	.prev{
		top: calc(65% - 25px);
		left: 0px;
	}
	.next{
		top: calc(65% - 25px);
		right: 0px;
	}
}
@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;
	}
}