html{
	height: auto;
	min-height: 100vh;
}
body{
	min-height: 100vh;
	height: 100%;
	width: 100%;
	position: relative;
	margin: 0;
	font-family: 'Maven Pro', sans-serif;
	font-weight: 400;
}
h1, h2, h3, h4, h5{
	font-family: 'Maven Pro', sans-serif;
	font-weight: 500;
}
input, button, select, textarea{
	font-family: 'Maven Pro', sans-serif;
	font-weight: 400;
}

:root{
	--titulo: #21262B;
	--texto: #425260;
	--enlace: #7E848C;
	--border: #D3DCED;
	--detalles: #6B7784;

	--primary: #002066;
	--secondary: #EFDE67;

	--morado: #3c2aa0;
	--azul: #0264e6;
	--cian: #14ccfe;
	--rojo: #f26a72;
	--gradient: linear-gradient(to right, #046AE7, #1EC8FE);
	--shadow: rgba(38, 44, 52, 0.08);
}
::selection{
	background: #203240;
	color: #f5f5f5;
}
::-moz-selection{
	background: #203240;
	color: #f5f5f5;
}
.form-group{
	margin-bottom: 20px;
}

section.home_sec{
	width: 100%;
	height: 100%;
	min-height: 100vh;
	position: relative;
	background-size: cover;
	background-position: center;
}
.hs_content{
	width: 100%;
	height: auto;
	min-height: 100vh;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0;
}
.hs_modal{
	width: 992px;
	height: 640px;
	min-height: 480px;
	position: relative;
	background-color: #fff;
	border-radius: 2px;
	border: none;
	box-shadow: 0px 20px 30px rgba(0,0,0,0.0.8);
	position: relative;
	display: block;
	transition: all 300ms;
}
.hsm_title{
	width: 100%;
	/*display: flex;*/
	/*align-items: center;
	justify-content: center;*/
	text-align: center;
	padding-top: 40px;
}
.hsm_title h2{
	font-size: 32px;
	font-weight: 600;
	color: var(--titulo);
	margin: 0 0 14px;
	display: inline-block;
	position: relative;
	/*padding: 6px;*/
	z-index: 1;
}
.hsm_title h2:before{
	content: "";
	width: 50px;
	height: 30px;
	position: absolute;
	bottom: 2px;
	left: -2px;
	/*transform: translateX(-50%);*/
	background-color: var(--secondary);
	z-index: -1;
}
.hsm_title h2:after{
	content: "";
	width: 50px;
	height: 28px;
	position: absolute;
	bottom: -4px;
	left: -8px;
	/*transform: translateX(-50%);*/
	background-color: var(--primary);
	z-index: -2;
}
.hsm_title h2 span{
	padding: 0px 4px;
	/*background-color: var(--secondary);*/
}
.hsm_title h1{
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 4px;
	color: var(--titulo);
}
.hsm_title p{
	margin: 0;
	display: inline-block;
	margin-right: auto;
	margin-bottom: auto;
	font-size: 14px;
	font-weight: 400;
	color: var(--texto);
	position: relative;
}
.hsm_title p:before{
	content: "";
	width: 10px;
	height: 1px;
	background-color: var(--border);
	position: absolute;
	top: 54%;
	left: -20px;
}
.hsm_title p:after{
	content: "";
	width: 10px;
	height: 1px;
	background-color: var(--border);
	position: absolute;
	top: 54%;
	right: -20px;
}
.hsm_content{
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	border-radius: 2px;
	padding-bottom: 54px;
}
.hsm_form{
	flex: 0 0 50%;
	width: 50%;
	/*height: 100%;*/
	background-color: #fff;
	padding: 24px 45px;
	position: relative;
}
.hsmf_content{
	width: 320px;
	height: auto;
	position: relative;
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.hsmf_title{
	margin-bottom: 10px;
	position: relative;
}
.hsmf_title h2{
	font-size: 16px;
	margin: 0 0 5px 0;
	color: var(--titulo);
	font-weight: 500;
	line-height: 1em;
}
.hsmf_title p{
	margin: 0;
	color: var(--texto);
	font-size: 14px;
	font-weight: 400;
}
.hsmf_input{
	width: 100%;
	position: relative;
}
.hsm_form label{
	color: var(--titulo);
	font-size: 14px;
	font-weight: 400;
}
.hsm_form input{
	width: 100%;
	height: 42px;
	border: 1px solid var(--border);
	border-radius: 0px;
	padding-left: 20px;
	padding-right: 15px;
	outline: none;
	transition: all 300ms;
	color: var(--texto);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1px;
	/*margin: 1px 1px 0 1px;*/
}
.hsm_form input:focus{
	border-color: var(--secondary);
}
.hsm_form img{
	position: absolute;
	top: 50%;
	left: 12px;
	transform: translateY(-50%);
}
.hsm_form button{
	/*display: block;*/
	width: 100%;
	height: 42px;
	border: none;
	border-radius: 0px;
	text-align: center;
	display: flex;
	justify-content: center;
	background: var(--primary);
	color: #fff;
	margin-left: auto;
	outline: none;
	font-weight: 600;
	align-items: center;
}
.hsm_form a{
	color: var(--enlace);
	font-size: 12px;
	font-weight: 400;
	margin-bottom: 2px;
}
.hsm_form a:hover{
	text-decoration: underline;
}





.hsm_runachay{
	flex: 0 0 50%;
	width: 50%;
	/*height: 100%;*/
	background-color: #FFF;
	position: relative;
}
.hsm_runachay:before{
	content: "";
	width: 1px;
	height: 80%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background-color: #D8E0E8;
}
.hsmr_local{
	width: 100%;
	height: auto;
	position: relative;
	height: 100%;
	/*top: 50%;
	transform: translateY(-62%);*/
	text-align: center;
	z-index: 2;
	padding: 30px;
}
.hsmr_logos{
	width: 90%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.hsmr_logos .hsmrl_item{
	width: 33.33%;
	flex: 0 0 33.33%;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	margin-bottom: 10px;
}
.hsmr_logos .hsmrl_item img{
	width: 78px;
}
/****form***/
.fg_content{
	position: relative;
}
.form-label {
	position: absolute;
	left: 24px;
	top: 30px;
	color: var(--texto);
	z-index: 10;
	transition: all 100ms;
	padding: 0 4px;
	background-color: #fff;
	border-radius: 4px;
	opacity: 0.6;
}
.focused .form-label {
	transform: translate(-8px, -20px);
	color: var(--primary);
	font-size: 13px;
	opacity: 1;
}
.focused .hsmf_input input{
	border-color: var(--secondary);
}

/********Transicion de modal*******/

.hs_colegios.fuera{
	position: absolute;
	z-index: 98;
	transform: scale(0.8);
	opacity: 0;
	transition: all 300ms;
}
.hs_modal.fuera{
	position: absolute;
	z-index: 98;
	transform: scale(1.2);
	opacity: 0;
	transition: all 300ms;
}
.hs_colegios.dentro{
	position: relative;
	z-index: 99;
	transform: scale(1);
	opacity: 1;
	transition: all 300ms;
}
.hs_modal.dentro{
	position: relative;
	z-index: 99;
	transform: scale(1);
	opacity: 1;
	transition: all 300ms;
}



/**************************************************/
.hs_colegios{
	max-width: 800px;
	height: auto;
	min-height: 340px;
	position: relative;
	background-color: #fff;
	border-radius: 12px;
	border: none;
	box-shadow: 8px 16px 50px var(--gradient);
	position: relative;
	display: block;
	transition: all 300ms;
}
.hsc_content{
	padding: 30px 45px;
	position: relative;
}
.hsc_title{
	margin-bottom: 45px;
	position: relative;
}
.hsc_title h2{
	font-size: 28px;
	font-weight: 700;
	color: var(--titulo);
	margin: 0 0 10px 0;
}
.hsc_title p{
	font-weight: 400;
	font-size: 14px;
	color: var(--texto);
}
.hsc_items{
	margin-bottom: 15px;
}
.hsc_items .hsc_item{
	margin-bottom: 15px;
}
.hsc_img{
	width: 100%;
	height: 64px;
	background-color: #fff;
	border-radius: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 8px;
}
.hsc_img img{
	width: 60px;
	height: auto;
	transition: all 240ms ease-out;
}
.hsc_item a{
	color: var(--texto);
	font-size: 14px;
	text-decoration: none;
	text-transform: lowercase;
}
.hsct{
	height: 45px;
	width: 100%;
	position: relative;
	overflow: hidden;
}
.hsct:before{
	content: "";
	width: 100%;
	height: 15px;
	background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0.1));
	position: absolute;
	bottom: 0;
	left: 0;
}
.hsct p{
    margin: 0;
    line-height: 1.4em;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    color: var(--texto);
    transition: all 100ms ease-out;
}
.hsc_item:hover .hsct p{
	color: var(--azul);
}
.hsc_item:hover img{
	transform: scale(1.2);
}

.hsc_foot{
	text-align: right;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.hsc_foot a{
	display: flex;
	text-align: center;
	color: var(--enlace);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	margin-right: 30px;
	line-height: 1em;
	height: 40px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.hsc_foot a img{
	height: 16px;
	width: auto;
	position: relative;
	transition: all 300ms;
}
.btn_hsc{
	margin-right: 8px;
	position: relative;
	height: 16px;
	display: flex;
	transition: all 300ms;
}
.btn_hsc:before{
	content: "";
	width: 0px;
	height: 2px;
	border-radius: 1px;
	background-color: var(--cian);
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%) scale(0);
	transition: all 300ms;
}
.hsc_foot a:hover .btn_hsc{
	padding-right: 12px;
}
.hsc_foot a:hover .btn_hsc:before{
	transform: translateY(-50%) scale(1);
	width: 6px;
}




.msg_modal{
	max-width: 600px;
	height: auto;
	min-height: 200px;
	position: relative;
	background-color: #fff;
	border-radius: 2px;
	border: none;
	box-shadow: 8px 16px 50px var(--shadow);
	position: relative;
	display: block;
	transition: all 300ms;
}
.msg_box{
	padding: 30px 45px;
	position: relative;
}

.msg_modal.fuera{
	position: absolute;
	z-index: 98;
	transform: scale(0.8);
	opacity: 0;
	transition: all 300ms;
}
.msg_modal.dentro{
	position: relative;
	z-index: 99;
	transform: scale(1);
	opacity: 1;
	transition: all 300ms;
}

.msg_text{
	width: 100%;
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
}
.msg_text p{margin: 0;}

.msg_img{
	position: relative;
	display: inline-flex;
	width: 80px;
	margin-right: 20px;
}
.msg_img img{
	width: 100%;
}

/***********Mensaje Error****************/
.hsat_{
	margin-top: 30px;
	position: relative;
}
.hsat_ a{
	margin-bottom: 5px;
	color: var(--enlace);
	text-decoration: none;
}
/*.hsat_ p{
	color: var(--texto);
	font-size: 13px !important;
}*/
.hs_colegios{
	max-width: 920px;
	height: auto;
	min-height: 200px;
	position: relative;
	background-color: #fff;
	border-radius: 2px;
	border: none;
	box-shadow: 8px 16px 50px var(--shadow);
	position: relative;
	display: block;
	transition: all 300ms;
}
.hsa_content{
	padding: 30px 45px;
	position: relative;
}
.hsa_{
	width: 100%;
	display: flex;
	justify-content: center;
}
.hsa_img{
	margin-right: 45px;
}
.hsa_content img{
	width: 64px;
	margin-top: 4px;
}
.hsa_content .hsa_text h5{
	font-size: 16px;
	font-weight: 500;
	color: var(--titulo);
	line-height: 1.3em;
	margin: 0 0 15px 0
}
.hsa_content .hsa_text p{
	font-size: 14px;
	margin: 0;
	color: var(--texto);
	font-weight: 400;
	margin: 0;
}
.hsa_foot{
	text-align: right;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-top: 30px;
}
.hsa_foot a{
	display: flex;
	text-align: center;
	color: var(--enlace);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	margin-right: 30px;
	line-height: 1em;
	height: 40px;
	align-items: center;
	justify-content: center;
}
.hsa_foot a img{
	height: 18px;
	width: auto;
	position: relative;
	transition: all 300ms;
	margin: 0;
}
.btn_hsa{
	margin-right: 8px;
	position: relative;
	height: 16px;
	display: flex;
	transition: all 300ms;
}
.btn_hsa:before{
	content: "";
	width: 0px;
	height: 2px;
	border-radius: 1px;
	background-color: var(--enlace);
	position: absolute;
	top: 8px;
	right: 0;
	transform: scale(0);
	transition: all 300ms;
}
.hsa_foot a:hover .btn_hsa{
	padding-right: 12px;
}
.hsa_foot a:hover .btn_hsa:before{
	transform: scale(1);
	width: 6px;
}

.form_f_f{
	text-align: left;
}


/*APPbar*/
.appbar .appbar_android{
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 998;
	background-color: #F5F8FA;
	width: 100%;
	box-shadow: 0 0 18px rgba(0,0,0,0.08);
	display: none;
}
.appbar .appbar_android.appbr_out{
	display: block !important;
}
.appbr_box{
	padding: 20px 5px;
	display: flex;
	align-items: center;
}
.appbr_content{
	flex: 0 0 90%;
	width: 90%;
	display: flex;
	position: relative;
	align-items: center;
}
.appbr_content img{
	display: inline-block;
	margin-right: 5px;
	width: 52px;
	height: 52px;
	object-fit: contain;
}
.appbr_content .appbr_texto{
	display: inline-block;
	margin-right: 15px;
	/*max-width: 160px;
	width: 160px;*/
}
.appbr_content .appbr_texto h5{
	font-size: 1.2em;
	color: var(--titulo);
	margin: 0;
	font-weight: 600;
	text-transform: uppercase;
}
.appbr_content .appbr_texto p{
	color: var(--texto);
	margin: 0;
	font-size: 0.9em;
}
.appbr_content .appbr_enlace{
	display: inline-block;
	margin-left: auto;
}
.appbr_content .appbr_enlace a{
	display: block;
	width: 90px;
	text-align: center;
	padding: 8px 0;
	border-radius: 18px;
	border: 1px solid var(--azul);
	color: var(--azul);
	font-size: 0.9em;
}
.appbr_close{
	flex: 0 0 10%;
	width: 10%;
	margin-left: auto;
	text-align: right;
}
.appbr_close a{
	width: 30px;
	height: 30px;
	font-size: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	/*border: 1px solid var(--azul);*/
	color: var(--azul);
	margin-left: auto;
	margin-right: auto;
	border-radius: 50%;
}















.border_b{
	width: 60%;
	height: 30px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: var(--primary);
	border-radius: 0 24px 0 0;
}
.border_b:before{
	content: "";
	width: 90%;
	height: 18px;
	position: absolute;
	background-color: var(--secondary);
	left: 0;
	bottom: 0;
	border-radius: 0 14px 0 0;
}
.border_link{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 40%;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.border_link a{
	font-size: 12px;
	font-weight: 400;
	color: var(--texto);
	opacity: 0.6;
	padding-top: 4px;
}
.border_link a:hover{
	opacity: 0.8;
}




.marcarunachay{
	position: absolute;
	bottom: 10px;
	right: 15px;
	text-align: right;
}
.marcarunachay img{
	width: 94px;
	/*margin-bottom: 12px;*/
}
.marcarunachay p{
	font-size: 12px;
	color: var(--detalles);
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.marcarunachay a{
	margin-left: 10px;
}







.estudiantes{
	padding: 20px 40px;
	padding-bottom: 0;
	position: relative;
}
.estudiantes .est_detalles{
	display: flex;
	/*align-items: center;*/
	margin-bottom: 20px;
}
.est_img{
	margin-right: 20px;
}
.est_img img{
	width: 110px;
	height: auto;
}
.estudiantes .est_detalles p{
	margin: 0;
	font-size: 12px;
	line-height: 1.2;
	color: var(--texto);
}
.estudiantes .est_detalles hr{
	margin-top: 10px;
	margin-bottom: 10px;
}
.estudiantes .est_detalles p strong{
	color: var(--titulo);
}
.estudiantes h4{
	font-size: 24px;
	color: var(--titulo);
	margin: 0 0 10px;
	margin-top: 15px;
	font-weight: 600;
}
.estudiantes > p{
	font-size: 12px;
	color: var(--texto);
	margin: 0 0 20px;
}
.estudiantes .estudiante{
	position: relative;
	width: 100%;
	background-color: #f5f5f5;
	padding: 4px 10px;
	text-align: center;
	margin-bottom: 20px;
}
.estudiantes .estudiante img{
	width: 78px;
	height: 90px;
	object-fit: cover;
	margin-bottom: 10px;
}
.estudiantes .estudiante p{
	font-size: 12px;
	margin: 0 0 10px;
	line-height: 1.3;
}

.estudiantes .estudiante a{
	width: 100%;
	background-color: var(--azul);
	display: block;
	font-size: 14px;
	color: #fff;
	padding: 5px 0;
	border-radius: 1px;
	text-decoration: none;
}

#nomrbe_rep{
	margin-right: 8px;
}




/*Colegios*/
.conte_colegios{
	position: relative;
	padding: 20px 40px;
}
.contc_title{
	position: relative;
	margin-bottom: 20px;
}
.contc_title h4{
	font-size: 24px;
	font-weight: 600;
	color: var(--titulo);
	margin: 0 0 10px;
}
.contc_title p{
	font-size: 12px;
	color: var(--texto);
	margin: 0;
}

.contc_box .ue_item{
	text-align: center;
	padding: 10px;
	background-color: #F2F5F6;
	margin-bottom: 20px;
	cursor: pointer;
}
.contc_box .ue_item a{
	text-decoration: none;
}
.contc_box .ue_item img{
	width: 120px;
	margin-bottom: 10px;
}
.contc_box .ue_item p{
	color: var(--titulo);
}





@media (max-width: 1400px){
	.hs_colegios{
		width: 1080px;
		height: auto;
		min-height: 340px;
		max-width: 920px;
	}
}
@media (max-width: 1366px){
	.hs_modal{
		width: 998px;
		height: 620px;
		min-height: 460px;
	}
	.hsmf_content{
		width: 270px;
	}
	.hsmr_local img{
		width: 90px;
		height: auto;
	}
	.hsmr_local .hsmrl_ img{
		margin: 0;
		width: 120px;
	}

	.hsmr_logos .hsmrl_item img{
		width: 68px;
	}
}
@media (max-width: 980px){
	/*.hs_modal{
		width: 60px;
		height: 640px;
		min-height: 460px;
	}*/
}
@media (max-width: 998px){
	.hs_modal{
		width: 540px;
		height: auto;
	}
	.hs_colegios{
		width: 100%;
	}
	.hsmf_content{
		width: 280px;
		left: auto;
		top: 30px;
		transform: translateY(0);
		margin-left: auto;
		margin-right: auto;
	}
	.hsm_runachay{
		display: none;
	}
	.hsm_form{
		flex: 0 0 100%;
		width: 100%;
	}
	.hs_content{
		height: 100vh;
		padding: 0;
	}
	.hsm_content{
		border-radius: 0;
	}
	.form_f_f{
		text-align: center;
	}
}
@media (max-width: 540px){
	.hs_modal{
		width: 100%;
		height: auto;
	}
}

/*@media (max-width: 600px){
	.hs_modal{
		margin-right: 30px;
		margin-left: 30px;
	}
}*/