/* CSS Document */
html {
	box-sizing: border-box;
	font-size: 62.5%; /** 1rem = 10px **/
}
*, *:before, *:after {
	  box-sizing: inherit;
}

/* ------------------ GLOBALES ------------------ */
.contenedor {
	max-width: 1200px;
	margin: 0 auto;
	width: 95%;
}
img {
	display: block;
	max-width: 100%;
}
h2 {
	font-family: 'PT Serif', serif;
	color: white;
	font-size: 4rem;
	margin: 0;
	text-shadow: 0px 0px 5px #333333;
}
h3 {
	text-align: center;
	font-family: var(--typo_1);
	color: var(--color_azul_osc);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 3.5rem;
	margin: 0 0 2rem 0;
}
h3 span {
	font-family: var(--typo_ration_bold);
	text-transform: capitalize;
	font-size: 2.2rem;
}
h3 a {
	text-decoration: none;
	color: var(--color_azul_osc);
}
h4 {
	font-family: var(--typo_ration_bold);
	color: var(--color_azul_claro);
	font-weight: 600;
	font-size: 2.5rem;
	text-align: center;
	margin: 0;
}
@font-face {
	font-family: "Rational";
	src: url("rational_book.otf");
	font-display: swap;
}
@font-face {
	font-family: "Rational_bold";
	src: url("rational_bold.otf");
	font-display: swap;
}
@font-face {
	font-family: "Rational_semi_bold";
	src: url("rational_semi_bold.otf");
	font-display: swap;
}
.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}
:root {
    --color_azul_claro: #1c3e93;
    --color_azul_osc: #142d68;
    --color_rojo: #e72d39;
	--color_gris: #F2F2F2;
	--color_yellow: #de9a39;
	--typo_1: 'Open Sans', sans-serif;
	--typo_ration: "Rational", sans-serif;
	--typo_ration_bold: "Rational_semi_bold", sans-serif;
	--typo_ptserif: "PT Serif", serif;
}
.top_seccion {
	margin-top: 5rem;
}
.centrar_contenido {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.centrar_imagen {
	display: block;
  	margin-left: auto;
  	margin-right: auto;
}
.cuerpo_texto_1 p {
	font-family: var(--typo_1);
	font-size: 1.4rem;
	color: #606060;
	line-height: 1.5;
	text-align: justify;
}.cuerpo_texto_1_bco p {
	font-family: var(--typo_1);
	font-size: 1.4rem;
	color: white;
	line-height: 1.5;
	font-weight: 600;
	text-align: justify;
}
.cuerpo_texto_2 p {
	font-family: var(--typo_1);
	font-size: 1.6rem;
	line-height: 1.5;
	font-weight: 300;
}
/* ----- BOTONES ----- */
.boton_bco {
	font-family: var(--typo_1);
	font-size: 1.6rem;
	font-weight: 400;
	margin: 0;
	padding: 10px 20px;
	color: white;
	border: solid 2px white;
	text-decoration: none;
	transition: background-color .3s ease-in-out;
	
	display: inline-block;
}
.boton_bco:hover {
	background-color: var(--color_azul_osc);
}
.boton_azul {
	font-family: var(--typo_1);
	font-size: 1.6rem;
	font-weight: 400;
	margin: 0;
	padding: 10px 20px;
	color: white;
	border: solid 2px var(--color_azul_osc);
	text-decoration: none;
	background-color: var(--color_azul_claro);
	transition: background-color .3s ease-in-out;
	
	display: inline-block;
}
.boton_azul:hover {
	background-color: var(--color_azul_osc);
	border: solid 2px var(--color_rojo);
}

.boton_rojo {
	font-family: var(--typo_1);
	font-size: 1.4rem;
	font-weight: 400;
	margin: 0;
	padding: 5px 30px;
	color: white;
	border: solid 2px var(--color_azul_osc);
	text-decoration: none;
	background-color: var(--color_rojo);
	transition: background-color .3s ease-in-out;
	
	display: inline-block;
}
.boton_rojo:hover {
	background-color: #bd1231;
	border: solid 2px var(--color_rojo);
}

.boton_verde {
	font-family: var(--typo_1);
	font-size: 1.4rem;
	font-weight: 400;
	margin: 0;
	padding: 5px 30px;
	color: white;
	border: solid 2px #1ebea5;
	text-decoration: none;
	background-color: green;
	transition: background-color .3s ease-in-out;
	
	display: inline-block;
}
.boton_verde:hover {
	background-color: #174c11;
	border: solid 2px green;
}
.boton_yellow {
	font-family: var(--typo_1);
	background-color: var(--color_yellow);
	font-size: 1.6rem;
	font-weight: 400;
	margin: 0;
	padding: 10px 20px;
	color: var(--color_azul_claro);
	border: solid 2px white;
	text-decoration: none;
	transition: background-color .3s ease-in-out;
	
	display: inline-block;
}
.boton_yellow:hover {
	background-color: var(--color_azul_claro);
	color: white;
}

.boton_blog {
	font-family: var(--typo_1);
	font-size: 1.2rem;
	font-weight: 400;
	text-transform: uppercase;
	padding: 5px 10px;
	color: white;
	border: solid 2px var(--color_azul_osc);
	text-decoration: none;
	background-color: var(--color_azul_claro);
	transition: background-color .3s ease-in-out;
	margin: 0 0 60px 0;
}
.boton_blog:hover {
	background-color: var(--color_azul_osc);
	border: solid 2px var(--color_rojo);
}

/* ----- ICONOS ----- */
.fa-espiritual {
	content: url(../img/icon_espiritual.png);
	height: 35px;
}
.fa-diferenciada {
	content: url(../img/icon_diferenciada.png);
	height: 35px;
}
.fa-idiomas {
	content: url(../img/icon_idiomas.png);
	height: 35px;
}
.fa-deportes {
	content: url(../img/icon_deporte.png);
	height: 35px;
}
.fa-tec {
	content: url(../img/icon_tec.png);
	height: 35px;
}
.fa-arte {
	content: url(../img/icon_arte.png);
	height: 35px;
}
.fa-play-circle {
	content: url(../img/icon_play.svg);
	height: 20px;
}
.fa-play-circle2 {
	content: url(../img/icon_play.svg);
	height: 80px;
}
.fa-date {
	content: url(../img/icon_date.svg);
	height: 20px;
}
.fa-sie-fam {
	content: url(../img/icon_sie_familias.svg);
	height: 70px;
}
.fa-sie-pre {
	content: url("../img/icon_sie_preceptores.svg");
	height: 70px;
}
.fa-blue-servo {
	content: url("../img/icon_blue_servo.svg");
	height: 70px;
}
.fa-apd {
	content: url(../img/icon_apd.svg);
	height: 80px;
}
.fa-manual {
	content: url(../img/icon_manual.svg);
	height: 80px;
}
.fa-factura {
	content: url(../img/icon_factura.svg);
	height: 80px;
}
.fa-ircielo {
	content: url(../img/icon_ir_cielo.svg);
	height: 50px;
}
.fa-whatsapp {
	content: url(../img/icon_whatsapp.svg);
	height: 15px;
}

.fa-flag-espanol {
	content: url(../img/icon_espanol.svg);
	height: 15px;
}
.fa-flag-english {
	content: url(../img/icon_english.svg);
	height: 15px;
}
.fa-phone {
	content: url(../img/icon_phone.svg);
	height: 20px;
}
.fa-blog_docente {
	content: url(../img/icon_news.svg);
	height: 75px;
}

/* ------------------ MENUS ------------------ */

/*----------------------Estilos del menu----------------------

/* ----- MENU SUPERIOR ----- */
.barra_superior {
	margin: 0;
	display: block;
	text-align: center;
	/* background-color: var(--color_azul_osc); */
	background-image: url(../../img/fondo_menu_azul.jpg);
}
@media (min-width: 768px) {
	.barra_superior {
		text-align: left;
	}
}
.logo_lv img {
	height: 55px;
	display: block;
  	margin-left: auto;
  	margin-right: auto
}
.barra_superior_contenedor {
	padding: 1rem 0;
}
@media (min-width: 768px) {
	.barra_superior_contenedor {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}
@media (max-width: 768px) {
	nav.menu_superior ul {
		padding: 0;
	}
}
nav.menu_superior ul li {
	list-style: none;
}
nav.menu_superior ul li a {
	color: white;
	text-decoration: none;
	font-family: "Rational_semi_bold", sans-serif;
	font-weight: 400;
	display: block;
	font-size: 1.4rem;
	line-height: 1.5;
	text-transform: uppercase;
	padding: 5px 0 5px 0;
}
nav.menu_superior ul li a span {
	font-family: "Rational_bold", sans-serif;
}
nav.menu_superior .agenda_cita {
	border: 2px solid deepskyblue;
	padding: 10px 15px;
	background-color: #111c4e;
}
nav.menu_superior .agenda_cita a:hover{
	background-color: white;
}
nav.menu_superior .idioma_version {
	border: 2px solid deepskyblue;
	padding: 10px 15px;
}

nav.menu_superior a:hover {
	font-weight: 600;
	color: deepskyblue;
}
@media (min-width: 768px) {
	nav.menu_superior ul li {
		display: inline-block;
		margin: 0 1.1rem;
	}
	nav.menu_superior ul li:last-of-type {
		margin: 0 0 0 10px;
	}
}
/* --- Menu superior desplegable ---*/
nav.menu_superior ul li ul {
	display:none;
}

@media (min-width: 992px) {

nav.menu_superior ul li ul {
	display:none;
	margin: 0;
	position: absolute;
 	transform: translateX(-30%);
}
nav.menu_superior ul li:hover > ul {
	display:flex;
	flex-direction: column;
	z-index: 4;
}
nav.menu_superior ul li ul li {
	position:relative;
	padding: 10px;
	background-color: var(--color_azul_osc);
	border: solid 1px deepskyblue;
	margin: 0;
}

nav.menu_superior ul li ul li a {
	font-size: 14px;
	text-align: center;
	padding: 0 15px;
	color: white;
	font-family: var(--typo_1);
}
nav.menu_superior ul li ul li a:hover {
	color: deepskyblue;
}

}


/* ----- MENU INFERIOR ----- */
.barra_inferior {
	padding: 15px 0;
	display: block;
}
nav.menu_inferior ul {
	margin: 0;
	padding: 0;
}
nav.menu_inferior ul li {
	list-style: none;
	text-align: center;
	margin: 10px 0 0 0;
}
nav.menu_inferior ul li a{
	font-family: var(--typo_1);
	text-transform: uppercase;
	line-height: 1.5;
	color: #2c2c2c;
	font-weight: 500;
	font-size: 1.4rem;
	text-decoration: none;
	position: relative;
}
a.underline:after {
	content: '';
	position: absolute;
	left: 0;
	display: inline-block;
	height: 1em;
	width: 100%;
	border-bottom: 2px solid deepskyblue;
	margin-top: 10px;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}

a.underline:hover:after {
  opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

nav.menu_inferior ul li a:hover {
	font-weight: 600;
}
@media (min-width: 768px) {
	nav.menu_inferior ul {
		display: flex;
		justify-content: space-between;
	}
	nav.menu_inferior ul li {
		margin: 0;
	}
}

/* --- Menu inferior desplegable ---*/
nav.menu_inferior ul li ul {
	display:none;
}

@media (min-width: 992px) {

nav.menu_inferior ul li ul {
	display:none;
	position:absolute;
}
nav.menu_inferior ul li:hover > ul {
	display:block;
	z-index: 4;
}
nav.menu_inferior ul li ul li {
	position:relative;
	padding: 10px;
	background-color: var(--color_azul_osc);
}
nav.menu_inferior ul li ul li a {
	font-size: 14px;
	padding: 0 15px;
	color: white;
	font-family: var(--typo_1);
}
nav.menu_inferior ul li ul li a:hover {
	color: deepskyblue;
}

}

/* ----- PLECA  ----- */
div.pleca {
	height: 5px;
	background-color: #e72d39;
}

/* ----- PLECA PROMO ----- */
div.pleca2 {
	background-image: url("../img/pleca_becas.jpg");
	background-repeat: repeat;
	padding: 15px 0;
}
div.pleca2 p {
margin: 0;	
}
div.pleca2 a {
	color: white;
	font-size: 16px;
	font-weight: bold;
	font-family: var(--typo_1);
	text-decoration: none;
	text-align: center;
}

/* ----- MENU SOCIALS ----- */
.menu_socials {
	display: none;
}
@media (min-width: 586px) {
	.menu_socials {
		display: block;
		position: fixed;
		right: -100px;
		top: 0px;
		z-index: 3;
	}
}
@media (min-width: 768px) {
	.menu_socials {
		top: 97px;
	}
}
.menu_socials li {
	transition: all .5s ease-in-out;
}
.menu_socials li:hover {
	transform: translateX(-100px);
	
}	
.menu_socials img {
	height: 35px;
	margin-bottom: 5px;
}
.menu_socials ul {
	list-style-type: none;
}

/* ----- IR AL CIELO ----- */
.ir-arriba {
	display:none;
	padding:20px;
	background:deepskyblue;
	cursor:pointer;
	position: fixed;
	bottom:20px;
	right:50px;
	z-index: 4;
}

/* ------------- BANNER VIDEO -------------*/
section.banner_video {
	position: relative;
}
div.contenedor_video {
	width: 100%;
	height: 550px;
	overflow: hidden;
	display: grid;
	align-content: center;
}
div.contenedor_video::after {
	position: absolute;
	content: '';
	background-color: rgba(0,0,0, .5);
	top: 0; left: 0; bottom: 0; right: 0;
	
}
div.contenido_banner_video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.contenedor_mensaje {
	max-width: 1100px;
	margin: 0 auto;
	width: 95%;
	
	
	padding: 30px;
}
.mensaje_banner_video {
	position: relative;
	z-index: 1;
	margin: 0;
	text-align: center;
	padding: 30px;
}
.mensaje_banner_video p {
	color: white;
	font-size: 2.5rem;
	font-weight: 600;
	font-family: var(--typo_1);
}

/* ------------------ BANNER SLIDE ------------------ */
.slider_frame {
	width: 100%;
	overflow: hidden;
}
.slider_frame ul {
	display: flex;
	padding: 0;
	width: 200%;
	
	animation: slide 8s infinite alternate ease-in-out;
}
.slider_frame li {
	list-style: none;
	width: 100%;
}
.slider_frame img {
	width: 100%;
}

@keyframes slide {
	0% {margin-left: 0%;}
	45% {margin-left: 0%;}
	
	50% {margin-left: -100%;}
	100% {margin-left: -100%;}
}

/* ------------------ AMAZING VIDEO ------------------ */
.mfp-hide {
	display: none !important;
}
.button .fa {
	margin-left: 20px;
}
iframe {
	margin-left: 80px;
}
button.mfp-close {
	overflow: visible;
	cursor: pointer;
	background: white;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: 0;
	padding: 0;
	z-index: 1046;
	box-shadow: none;
}
.mfp-close {
	width: 44px;
	height: 44px;
	border-radius: 50px;
	line-height: 44px;
	position: absolute;
	right: 300px;
}

/* ------------------ INTRO ------------------ */
.fondo_home {
	background-image: url(../img/fondo_home_2.jpg);
	background-position: center center;
	background-size: cover;
}
.intro {
	display: flex;
	flex-wrap: wrap;
}
.intro_banner,
.intro_lateral {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.intro {
		justify-content: space-between;
	}
	.intro_banner {
		flex-basis: 60%;
	}
	.intro_lateral {
		flex-basis: calc(40% - 2rem);
	}
}

.intro_banner {
	padding: 20px;	
	display: inline-block;
	vertical-align: top;
}
.intro_banner h3 {
	font-family: 'PT Serif', serif;
	text-transform: none;
	font-size: 2.9rem;
	margin: 20px 0 0 0;
}
.intro_banner p {
	font-family: var(--typo_1);
	font-size: 1.8rem;
	font-weight: 300;
}

.intro_lateral {
	background-color: #F2F2F2;
	padding: 20px;
	border-radius: 25px 0 25px 0;
}
.lateral_icons {
	display: flex;
	align-items: center;
  	justify-content: flex-start;
	border-bottom: solid 2px #d7d7d7;
	margin: 20px 0;
}
.intro_lateral h3 {
	color: var(--color_azul_osc);
	font-family: var(--typo_1);
	font-size: 2.4rem;
	margin: 0 0 20px 0;
}
.intro_lateral ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.intro_lateral ul li:last-of-type {
	margin: 0;
}
.intro_lateral ul li a {
	margin-left: 25px;
	text-decoration: none;
	color: var(--color_azul_claro);
	font-family: var(--typo_1);
	font-size: 1.6rem;
	font-weight: 600;
}
.intro_lateral ul li a:hover {
	font-weight: 700;
}

/* ------------------ SECCIONES ------------------ */
.secciones {
	display: flex;
	flex-wrap: wrap;
}
.secciones_accesos {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.secciones {
		justify-content: space-between;
	}
	.secciones_acceso {
	display: inline-block;
	max-width: calc(33.3% - 15px);
	margin-right: 10px;
	}
}
div.secciones_acceso:last-of-type {
		margin: 0;
}

div.secciones_acceso img {	
	transition: all .5s ease-in-out;
	height: 160px;
}
div.secciones_acceso:hover img {
	transform: scale(1.1);

}
@media (min-width: 815px) {
	.video_home {
		width: 815px;
		height: 458px;
	}
}

/* ------------------ MINIVIDS ------------------ */

.minivideos_contenedor {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 30px 0;
}
.minivideos_accesos {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.minivideos_contenedor {
		justify-content: space-between;
	}
	.minivideos_acceso {
	display: inline-block;
	max-width: calc(33.3% - 20px);
	margin-right: 10px;
	}
}
div.minivideos_img {
	overflow: hidden;
}
div.minivideos_img img {	
	transition: all .5s ease-in-out;
	bottom: 0;
}
div.minivideos_img:hover img {
	transform: scale(1.1);
}
.minivideos h3 {
	text-transform: none;
}
.minivideos h4 {
	margin: 20px 0;
	color: deepskyblue;
}
.minivideos_acceso p {
	font-size: 15px;
	font-weight: 600;
}
div.minivideos_acceso:last-of-type {
		margin: 0;
}

/* ------------------ DIFERENCIADORES ------------------ */
.diferenciadores {
	background-color: #F2F2F2;
	padding: 3rem 0 0 0;
}
.diferenciadores_contenedor {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 60px 0;
}
.diferenciadores_accesos {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.diferenciadores_contenedor {
		justify-content: space-between;
	}
	.diferenciadores_acceso {
	display: inline-block;
	max-width: calc(33.3% - 10px);
	margin-right: 10px;
	}
}
div.diferenciadores_img {
	overflow: hidden;
}
div.diferenciadores_img img {	
	transition: all .5s ease-in-out;
	bottom: 0;
}
div.diferenciadores_img:hover img {
	transform: scale(1.1);
}
.diferenciadores h4 {
	margin: 20px 0;
	font-style: italic;
	text-transform: uppercase;
}
div.diferenciadores_acceso:last-of-type {
		margin: 0;
}

/* ------------------ CITA ------------------ */
.parallax::before {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	filter: brightness(.5);
}
div.cita {
	position: relative;
	height: auto;
}
div.cita::before {
	background-image: url(../img/parallax_home_cita.jpg);
	content: '';
}
.cita_contenido {
	position: relative;
	padding: 120px 0;
	text-align: center;
}
.cita_contenido p {
	color: white;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.5;
	font-family: var(--typo_1);
}
.cita_contenido p span {
	font-weight: 600;
}
@media only screen and (min-width: 768px) {
	ul.cita_contenido li {
		width: 25%;
	}
}


/* ------------------ AZULES ------------------ */
@media (min-width: 600px) {
.azules_contenedor {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
}
.azul_0 {
	background: #f1f1f1;
	width: 200px;
	height: 150px;
	display: flex;
  	align-items: center;
  	justify-content: center;
}
.azul_0:hover {
  background-color: #52b7e7;
  cursor: pointer;
  -webkit-transition: background-color 1s ease-out;
  -moz-transition: background-color 1s ease-out;
  -o-transition: background-color 1s ease-out;
  transition: background-color 1s ease-out;
}
.azul_1 {
	background: #b0e0f4;
	width: 200px;
	height: 150px;
	display: flex;
  	align-items: center;
  	justify-content: center;
}
.azul_1:hover {
  background-color: lightgrey;
  cursor: pointer;
  -webkit-transition: background-color 1s ease-out;
  -moz-transition: background-color 1s ease-out;
  -o-transition: background-color 1s ease-out;
  transition: background-color 1s ease-out;
}
.azul_2 {
	background: #84ccee;
	width: 200px;
	height: 150px;
	display: flex;
  	align-items: center;
  	justify-content: center;
}
.azul_2:hover {
  background-color: lightgrey;
  cursor: pointer;
  -webkit-transition: background-color 1s ease-out;
  -moz-transition: background-color 1s ease-out;
  -o-transition: background-color 1s ease-out;
  transition: background-color 1s ease-out;
}
.azul_3 {
	background: #52b7e7;
	width: 200px;
	height: 150px;
	display: flex;
  	align-items: center;
  	justify-content: center;
}
.azul_3:hover {
  background-color: lightgrey;
  cursor: pointer;
  -webkit-transition: background-color 1s ease-out;
  -moz-transition: background-color 1s ease-out;
  -o-transition: background-color 1s ease-out;
  transition: background-color 1s ease-out;
}
.azul_4 {
	background: #0099e0;
	width: 200px;
	height: 150px;
	display: flex;
  	align-items: center;
  	justify-content: center;
}
.azul_4:hover {
  background-color: #353535;
  cursor: pointer;
  -webkit-transition: background-color 1s ease-out;
  -moz-transition: background-color 1s ease-out;
  -o-transition: background-color 1s ease-out;
  transition: background-color 1s ease-out;
}

/* ------------------ FOOTER ------------------ */
footer.site_footer {
	background-image: url(../../img/fondo_menu_azul.jpg);
	padding: 40px;
	margin-top: 60px;
}
div.footer_contenido > div {
	color: white;
	padding: 0px 20px;
	font-size: 1.2rem;
	line-height: 1.5;
	font-family: var(--typo_1);
}
.legales a {
	text-decoration: none;
	color: white;
}
.footer_info img {
	height: 85px;
}
.mapa_sitio a {
	color: white;
	text-decoration: none;
}
@media only screen and (min-width: 768px){
	div.footer_contenido > div {
		width: 25%;
		float: left;
	}
	.footer_info, .mapa_sitio, .legales {
	border-right: 1px solid white;
	}
}
footer.site_footer h3 {
	color: white;
	text-transform: uppercase;
	font-family: var(--typo_1);
	margin-bottom: 20px
}
footer.site_footer h3 span {
	color: var(--color_prin);
}



/* -------------------------------- INTERNAS -------------------------------- */

/* ------------------ INSTITUCIÓN ------------------ */
/* --------- MISION & VISION --------- */
.m_v {
	display: flex;
	flex-wrap: wrap;
}
.m_v_texto,
.m_v_foto {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.m_v {
		justify-content: space-between;
	}
	.m_v_texto {
		flex-basis: 50%;
	}
	.m_v_foto {
		flex-basis: calc(50% - 2rem);
	}
}
/* --------- 4 PILARES --------- */
.cuatro_pilares {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}
.pilar {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.cuatro_pilares {
		justify-content: space-between;
	}
	.pilar {
		flex-basis: calc(25% - 2rem);
	}
}
/* --------- HISTORIA --------- */
div.historia {
	position: relative;
	height: auto;
}
div.historia::before {
	background-image: url(../img/parallax_historia.jpg);
	content: '';
}
.historia_contenedor {
	position: relative;
	padding: 100px 0;
}
.historia_contenido {
	display: flex;
	flex-wrap: wrap;
}
.historia_foto,
.historia_texto {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.historia_contenido {
		justify-content: space-between;
	}
	.historia_foto {
		flex-basis: 50%;
	}
	.historia_texto {
		flex-basis: calc(50% - 2rem);
	}
}

.ambiente_contenedor {
	position: relative;
	padding: 100px 0;
}
.ambiente_contenido {
	display: flex;
	flex-wrap: wrap;
}
.ambiente_foto,
.ambiente_texto {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.ambiente_contenido {
		justify-content: space-between;
	}
	.ambiente_foto {
		flex-basis: 50%;
	}
	.ambiente_texto {
		flex-basis: calc(50% - 2rem);
	}
}
/* --------- UBICACIÓN --------- */
.ubicacion {
	display: flex;
	flex-wrap: wrap;
}
.ubicacion_foto,
.ubicacion_texto {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.ubicacion {
		justify-content: space-between;
	}
	.ubicacion_foto {
		flex-basis: 50%;
	}
	.ubicacion_texto {
		flex-basis: calc(50% - 2rem);
	}
}
.google_maps {
        position: relative;
        padding-bottom: 75%;
        height: 0;
        overflow: hidden;
}
.google_maps iframe {
        position: absolute;
        top: 0;
        left: -80px;
        width: 100% !important;
        height: 100% !important;
}
/* --------- HERALDICA --------- */
.heraldica {
	display: flex;
	flex-wrap: wrap;
}
.heraldica_foto,
.heraldica_texto {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.heraldica {
		justify-content: space-between;
	}
	.heraldica_foto {
		flex-basis: 50%;
	}
	.heraldica_texto {
		flex-basis: calc(50% - 2rem);
	}
}
/* --------- EXPOLICEO --------- */
div.expoliceo {
	position: relative;
	height: auto;
}
div.expoliceo::before {
	background-image: url(../img/banner_expoliceo.jpg);
	content: '';
}
.expoliceo_contenido {
	position: relative;
	padding: 120px 0;
	text-align: center;
}
.expoliceo_contenido p {
	color: white;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.5;
	font-family: var(--typo_1);
}
.expoliceo_contenido p span {
	font-weight: 600;
}

/* ------------------ ESTILO EDUCATIVO ------------------ */
/* --------- ID & FORMACION --------- */
.identidad {
	display: flex;
	flex-wrap: wrap;
}
.identidad_texto,
.identidad_foto {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.identidad {
		justify-content: space-between;
	}
	.identidad_texto {
		flex-basis: 50%;
	}
	.identidad_foto {
		flex-basis: calc(50% - 2rem);
	}
}
.formacion {
	display: flex;
	flex-wrap: wrap;
}
.formacion_foto,
.formacion_texto {
	flex: 0 0 100%;
}
@media (min-width: 768px) {
	.formacion {
		justify-content: space-between;
	}
	.formacion_foto {
		flex-basis: 50%;
	}
	.formacion_texto {
		flex-basis: calc(50% - 2rem);
	}
}
/* --------- EDUCACION --------- */
div.educacion {
	position: relative;
	height: auto;
}
div.educacion::before {
	background-image: url(../img/parallax_educacion.jpg);
	content: '';
}
.educacion_contenedor {
	position: relative;
	padding: 100px 0;
}
.opus {
	padding: 20px;
	background-color: #F2F2F2;
}
.opus p {
	text-align: center;
}


/* ------------------ CALIDAD EDUCATIVA ------------------ */
div.sports {
	position: relative;
	height: auto;
}
div.sports::before {
	background-image: url(../img/parallax_deportes.jpg);
	content: '';
}
.sports_contenedor {
	position: relative;
	padding: 100px 0;
}
.arte {
	padding: 20px;
	background-color: #F2F2F2;
}


/* ------------------ MÉTODO PEDAGÓGICO ------------------ */
div.metodo_te {
	position: relative;
	height: auto;
}
div.metodo_te::before {
	background-image: url(../img/parallax_te.jpg);
	content: '';
}
.metodo_te_contenedor {
	position: relative;
	padding: 100px 0;
}
.m_v_texto ul li {
	font-family: var(--typo_1);
	font-size: 1.4rem;
	color: #606060;
	line-height: 1.3;
	margin-bottom: 15px;
}
.forte {
	padding: 20px;
	background-color: #F2F2F2;
}

/* ------------------ IDENTIDAD LICEO ------------------ */
.perfil_egre {
	padding: 20px;
	background-color: #F2F2F2;
}
.perfil_egre ul {
	list-style-position: inside;
}
.perfil_egre ul li {
	font-family: var(--typo_1);
	font-size: 1.4rem;
	color: #606060;
	line-height: 1.5;
	margin-bottom: 15px;
}

/* ------------------ SECCIONES ESCOLARES ------------------ */
.banner_leyenda p {
	color: var(--color_azul_claro);
	font-family: var(--typo_1);
	font-size: 1.6rem;
	text-align: center;
	margin: 0;
}
.pleca_ms {
	height: 8px;
	background-color: #2998cf;
}
.leyenda_ms {
	background-color: #d9ebf5;
	padding: 20px 0;
}
.pleca_es {
	height: 8px;
	background-color: red;
}
.leyenda_es {
	background-color: #f5eaef;
	padding: 15px 0;
}
.pleca_hs {
	height: 8px;
	background-color: #8d7249;
}
.leyenda_hs {
	background-color: #fff8ed;
	padding: 15px 0;
}

div.escolares {
	position: relative;
	height: auto;
}
div.escolares::before {
	background-image: url(../img/fotos_secciones/parallax_secciones.gif);
	content: '';
}
.escolares_contenedor {
	position: relative;
	padding: 100px 0;
}

/* ------------------ INST. AFINES ------------------ */
.inst_afines {
	padding: 20px;
	background-color: #F2F2F2;
}
.afines_pilares {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}
.afin_school,
.afin_web {
	flex: 0 0 100%;
}
@media (max-width: 768px) {
	.afin_school img,
	.afin_web img {
		margin-top: 25px;
	}
}
@media (min-width: 768px) {
	.inst_afines {
		width: 1000px;
	}
	.afines_pilares {
		justify-content: space-between;
	}
	.afin_school {
		flex-basis: calc(25% - 2rem);
	}
	.afin_web {
		flex-basis: calc(33.3% - 2rem);
	}
}
.afin_school a img, .afin_web a img {
	transition: all .5s ease-in-out;
}
.afin_school a img:hover {
	transform: scale(1.1);
}
.afin_web a img:hover {
	transform: scale(1.1);
}

/* ---------- AGENDA CITA - CONTACTO ---------- */
.contacto p {
	color: lightgray;
	font-size: 1.7rem;
	margin: 2rem 0 0 0;
}
label_old {
	display: block;
	font-weight: 700;
	text-transform: uppercase;
	font-family: var(--typo_1);
	font-size: 1.5rem;
}
legend {
	font-size: 2.3rem;
	font-family: var(--typo_1);
	color: var(--color_azul_osc);
}
/* selector de atributo */
input:not([type="submit"]),
textarea,
select {
	padding: 1rem;
	display: block;
	width: 100%;
	background-color: #e1e1e1;
	margin-bottom: 2rem;
	border: none;
	border-radius: 1rem;
	font-family: arial;
	font-size: 14px;
	margin-top: 10px;
}
input[type="radio"]{
	width: auto;
	margin: 0;
}
select {
	-webkit-appearance: none;
	appearance: none;
}
textarea {
	height: 3rem;
	max-width: 1070px;
}
option {
	font-style: italic;
}
div.cuadro_cita {
	background-color: var(--color_gris);
	padding: 25px;
}
div.cuadro_cita p {
	margin: 0;
	font-weight: bold;
}
.agenda_cita_lista ul li {
	font-family: var(--typo_1);
	font-size: 1.4rem;
	color: #606060;
	line-height: 1.5;
	margin-bottom: 15px;
}
.botones_agenda_cita {
	margin-top: 35px;
}
.botones_agenda_cita a {
	margin-right: 20px;
	margin-bottom: 15px;
}

/* ------------------ ADMISIONES ------------------ */
/* ---------- HAZ CITA, INST. PARALLAX ---------- */
div.admisiones_hazcita, div.admisiones_instal {
	position: relative;
	height: auto;
}
div.admisiones_hazcita::before {
	background-image: url(../img/admisiones_hazcita.jpg);
	content: '';
}
div.admisiones_instal::before {
	background-image: url(../img/admisiones_instalaciones.jpg);
	content: '';
}
.admisiones_hazcita_contenido, .admisiones_instal_contenido {
	position: relative;
	padding: 100px 0;
	text-align: center;
}
.admisiones_hazcita_contenido p {
	color: white;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.5;
	font-family: var(--typo_1);
}
.admisiones_hazcita_contenido p span {
	font-weight: 600;
}

/* ---------- PROCESO ---------- */
.proceso_contenedor {
	display: flex;
	flex-direction: column;
}
.proceso_contenido {
	margin-bottom: 20px;
}
.proceso_contenido p {
	font-size: 18px;
	font-family: var(--typo_1);
	color: var(--color_azul_osc);
	margin: 0;
}
.proceso_contenido p a {
	color: inherit;
}
.proceso_contenido span {
	display: inline-block;
	color: #de9a39;
	font-weight: bold;
	font-size: 30px;
	border: solid 5px var(--color_yellow);
	border-radius: 50%;
	padding: 10px 20px;
	margin-right: 24px;
}

/* ---------- ADMISIONES ACCESOS ---------- */
.admision_acceso_contenedor {
	display: flex;
	justify-content: space-between;
}
.admision_acceso_contenido {
	width: calc(50% - 15px);
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.admision_acceso_texto,
.admision_acceso_foto {
	flex: 0 0 100%;
	display: flex;
	flex-direction: column;
}
@media (min-width: 768px) {
	.admision_acceso_contenido {
		justify-content: space-between;
	}
	.admision_acceso_texto {
		flex-basis: 60%;
	}
	.admision_acceso_foto {
		flex-basis: calc(40%);
	}
}
.admision_acceso_texto {
	background-color: var(--color_azul_osc);
	padding: 30px 25px;
}
.admision_acceso_texto p {
	font-size: 18px;
	font-family: var(--typo_1);
	color: var(--color_yellow);
	line-height: 1.2;
	margin: 0 0 20px 0;
}
.admision_acceso_texto p span {
	color: white;
	font-weight: bold;
	font-size: 20px;
}
.admision_acceso_btn {
	margin-top: auto;
}
.admision_acceso_foto img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

/* ---------- ADMISIONES NAYELI ---------- */
.nayeli_contenedor {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.nayeli_texto {
	padding: 20px 25px;
	text-align: center;
	background-color: var(--color_gris);
}
.nayeli_texto p {
	font-size: 22px;
	color: var(--color_azul_osc);
	font-family: var(--typo_1);
	margin: 0;
}
.nayeli_texto a {
	text-decoration: none;
	color: inherit;
}
.nayeli_texto p span {
	font-size: 30px;
	color: var(--color_azul_claro);
	font-weight: bold;
	font-family: var(--typo_1);
}

/* ---------- ProspectusCRM SOLICITUD ---------- */
      ._CategoriaSA2023v1_{
        font-family: var(--typo_ration);
        font-size:18px;
        font-weight: bold;
        color: var(--color_azul_osc);
        border: 1px solid #EEEEEE;
        border-top: 0px solid #eeeeee;
        border-bottom: 1px solid #eeeeee;
        border-right: 0px solid #999999;
        border-left: 0px solid #999999;
        padding-bottom: 5px;
        padding-left: 10px;
        margin-bottom: 30px;
        margin-top:40px;
        margin-left:20px;
      }
    ._EtiquetaSA2023v1_{
        font-family: var(--typo_1);
        font-size: 14px;
        color: #333333;
        padding-left: 25px;   
        padding-top: 5px;
        font-weight: normal;
    }
    ._ElementoSA2023v1_{
        font-family: var(--typo_1);
        font-size: 15px;
        color: #333333;
        padding: 7px;
        background-color: #ffffff;
        border-top: 0px solid #eeeeee;
        border-bottom: 1px solid #eeeeee;
        border-right: 2px solid #999999; 
        border-left: 2px solid #999999; 
        border-radius: 5px;
        margin-left: 30px;
        margin-bottom:6px;
        margin-top: 1px;
        width: 90%;
    }
    .pros_Etiqueta {
       font-family: var(--typo_1);
        font-size: 15px;
        color: #333333;
        padding: 7px;
        background-color: #ffffff;
        margin-left: 30px;
        margin-bottom:6px;
        margin-top: 1px;
    }
    .pros_Select  {
       font-family: var(--typo_1);
        font-size: 15px;
        color: #333333;
        padding: 7px;
        background-color: #ffffff;
        border: 1px solid #eeeeee;
        margin-left: 30px;
        margin-bottom:6px;
        margin-top: 1px;
        width: 90%;
    }
   .pros_Boton{
         font-family: var(--typo_1);
		font-size: 1.6rem;
		font-weight: 400;
		margin: 0;
		padding: 10px 20px;
		color: white;
		border: solid 2px var(--color_azul_osc);
		text-decoration: none;
		background-color: var(--color_azul_claro);
		transition: background-color .3s ease-in-out;

		display: inline-block;
   	}
	.pros_Boton:hover {
		background-color: var(--color_azul_osc);
		border: solid 2px var(--color_rojo);
	}
	label {
		display: inline-block;
		font-weight: 700;
		text-transform: uppercase;
		font-family: var(--typo_1);
		font-size: 20px;
	}
	#__idAvisoPOK {
		height: 28px;
	}
















/* ------------------ BLOG ENTRADA NOTICIAS LV ------------------ */
.contenido_entrada {
	margin-bottom: 30px;
}
@media (min-width: 768px) {
	.contenedor_entrada {
	display: flex;
	justify-content: space-between;
	}
	.contenido_entrada {
	display: flex;
	flex-direction: column;
	max-width: calc(33.3% - 20px);
	}
}
.contenido_entrada a {
	text-decoration: none;
}
.pleca_notilv_red,.pleca_notilv_gold,.pleca_notilv_blue {
	height: 5px;
	border-radius: 5px 5px 0 0;
}
.pleca_notilv_red {background-color: #970639}
.pleca_notilv_gold {background-color: #D7A461}
.pleca_notilv_blue {background-color: #111C4E}

.texto_entrada {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.detalles_entrada {
	display: flex;
	padding: 15px 0;
}
.detalles_entrada p {
	font-family: var(--typo_1);
	font-size: 14px;
	color: #808080;
	margin: 0;
	padding: 20px 0;
}
.detalles_entrada span {
	color: white;
	padding: 10px 15px;
	margin-right: 15px;
	border-radius: 25px;
}
.detalles_entrada span {
	
}
.descripcion_entrada p {
	font-family: var(--typo_ptserif);
	font-size: 18px;
	color: black;
	line-height: 1.5;
	margin: 0;
}
.descripcion_entrada p span{
	font-family: var(--typo_1);
	font-size: 15px;
	color: #a0a0a0;
	line-height: 1.5;
	margin: 0;
}






/* ------------------ BANNER IMAGE/NOTICIAS ------------------ */
.banner {
	width: 100%;
	height: 60rem;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.banner::after {
	position: absolute;
	content: '';
	top: 0; left: 0; bottom: 0; right: 0;
}
@media (min-width: 768px) {
	.banner {
		max-height: 550px;
	}
}
.cuadro_mensaje {
	position: relative;
	z-index: 1;
	margin: 0;
	text-align: center;
}
.cuadro_mensaje p {
	color: white;
	font-size: 40px;
	font-weight: 500;
	font-family: var(--typo_ptserif);
}


/* ------------------------ BLOG NOTICIAS ------------------------*/
.contenedor_blog {
	max-width: 800px;
	margin: 50px auto;
	width: 95%;
}
.blog_intro img {
	margin: 35px 0;
}
.blog_intro h5 {
	font-family: var(--typo_1);
	color: #0c173e;
	font-size: 36px;
	text-align: left;
	margin: 0;
}
.blog_intro h6 {
	font-family: var(--typo_1);
	font-weight: 300;
	font-size: 16px;
	color: #666;
	text-align: left;
	margin: 15px 0 0 0;
}
.blog_intro h6 span {
	color: deepskyblue;
	font-weight: 600;
}
.bibliografia li {
	font-family: 'Bitter', serif;
	font-weight: 300;
	font-size: 14px;
	font-style: italic;
	color: #666;
	text-align: left;
	line-height: 1.5;
}
.superindice li {
	font-family: 'Bitter', serif;
	font-weight: 300;
	font-size: 12px;
	font-style: italic;
	color: black;
	text-align: left;
	line-height: 1.5;
}
.blog_texto img {
	max-width: 500px;
	display: block;
  	margin-left: auto;
  	margin-right: auto;
	border: solid #D7A461 2px;
  	padding: 10px;
}
.blog_texto p {
	text-align: justify;
	color: #666;
	font-family: var(--typo_1);
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
	
}
.blog_texto_sub {
	font-size: 22px;
	color: cadetblue;
}
.blog_texto ul {
	text-align: left;
	color: #666;	
	font-family: 'Bitter', serif;
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
}
.blog_video	{
	width: 800px;
    height: 450px;
}
.blog_video_yt	{
	width: 800px;
    height: 450px;
	margin-left: -80px;
}
