@charset "utf-8";
/* CSS Document */
html {
	box-sizing: border-box;
	font-size: 62.5%; /** 1rem = 10px **/
}
*, *:before, *:after {
	  box-sizing: inherit;
}


/* ----------- GLOBALES -----------*/
.contenedor {
	max-width: 1100px;
	margin: 0 auto;
    width: 95%;
}
h1 {
	font-size: 55px;
	font-weight: 700;
    color: white;
    font-family: var(--typo_2);
    text-shadow: 1px 2px 2px rgba(0,0,0,0.6);
}
h1 span {
    font-family: var(--typo_1);
    color: white;
    font-size: 26px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
}
h2 {
	font-family: var(--typo_2);
	font-size: 38px;
    color: var(--color_azul_medio);
	font-weight: 700;
    margin: 0;
    text-align: center;
}
h3 {
	font-family: var(--typo_2);
	font-size: 36px;
    color:  var(--color_gris);
	font-weight: 400;
    font-style: italic;
    margin: 0;
    padding-bottom: 25px;
    border-bottom: solid 4px var(--color_azul_bajo);
    display: inline-block;
}
h4 {
	font-size: 2.8rem;
}
img {
	max-width: 100%;
    display: block;
}
.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}
:root {
    --typo_1: 'Open Sans', sans-serif;
    --typo_2: 'Montserrat', sans-serif;
    --color_gris: #707070;
    --color_azul_bajo: #2A9DF4;
    --color_azul_medio: #1167B1;
    --color_azul_alto: #03254C;
}


/* ----------- UTILIDADES -----------*/
.centrar_texto {
	text-align: center;
}
.centrar_imagen {
    display: block;
    margin: 0 auto;
}
.top_seccion {
    margin-top: 80px;
}
.centrar_boton {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.fondo_azul {
    background-color: #EFF8FF;
    padding: 60px 0;
}
.fondo_gradient    {
    background-image: linear-gradient(#EFF8FF, white);
    padding: 60px 0;
}
.fondo_gradient_2    {
    background-image: linear-gradient(white, #EFF8FF);
    padding: 80px 0;
}
@media (min-width: 1024px) {
	.animado {
    opacity: 0;
    transition: all 0.5s;
    }
    .mostrarArriba {
        animation: mostrarArriba 1s;
    }
    @keyframes mostrarArriba {
        0% {
            transform: translateY(100px);
        }
        100% {
            transform: translateY(0);
        }
    }
}

/* ----------- ICONOS -----------*/
.fa-ircielo {
	content: url(../img/icon_ir_cielo.svg);
	height: 50px;
}

/* ----------- BOTONES -----------*/
.btn_bco {
    color: white;
    padding: 10px 20px;
    font-family: var(--typo_1);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    border: solid 3px white;
    border-radius: 25px;
    transition: background-color .3s ease-in-out;
}
.btn_bco:hover {
    background-color: var(--color_azul_medio);
}

.btn_azul {
    color: white;
    padding: 10px 20px;
    font-family: var(--typo_1);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    border: solid 3px var(--color_azul_bajo);
    background-color: var(--color_azul_medio);
    transition: background-color .3s ease-in-out;
    
}
.btn_azul:hover {
    background-color: var(--color_azul_alto);
    border: solid 3px var(--color_azul_medio);
}

/* ------------------ BARRA MENU ------------------ */
.menu {
	margin: 0;
	display: block;
	text-align: center;
}
@media (min-width: 768px) {
	.menu {
		text-align: left;
	}
}
.logo img {
	height: 100px;
}
.menu_contenedor {
	padding: 25px 0;
}
@media (min-width: 768px) {
	.menu_contenedor {
		display: flex;
		justify-content: space-between;
		align-items: baseline;
	}
}

/* ------------------ MENU PRINCIPAL ------------------ */
nav.menu_principal a {
	color: var(--color_gris);
	text-decoration: none;
	font-weight: 600;
	display: block;
	font-size: 14px;
	font-family: var(--typo_1);
	position: relative;
    margin-top: 20px;
    text-transform: uppercase;
    text-align: center;
}
@media (min-width: 768px) {
	nav.menu_principal a {
		display: inline-block;
		margin: 0 30px 0 0;
	}
	nav.menu_principal a:last-of-type {
		margin: 0;
	}
	nav.menu_principal {
		margin-left: 35px;
	}
}
nav.menu_principal a:hover {
	color: var(--color_gris);
	font-weight: 700;
}
a.underline:after {
	content: '';
	position: absolute;
	left: 0;
	display: inline-block;
	height: 1em;
	width: 100%;
	border-bottom: 3px solid var(--color_azul_bajo);
	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);
}

/* ----- 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: 144px;
	}
}
.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:var(--color_azul_bajo);
	cursor:pointer;
	position: fixed;
    border-radius: 0 10px 0 10px;
	bottom:20px;
	right:50px;
	z-index: 4;
}

/* ------------- BANNER VIDEO -------------*/
section.banner_video {
	position: relative;
}
div.contenedor_video {
	width: 100%;
	height: 600px;
	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: 1000px;
	margin: 0 auto;
	width: 95%;
}
.mensaje_banner_video {
	position: relative;
	z-index: 1;
	margin: 0;
	text-align: center;
}
.mensaje_banner_video p {
	color: white;
	font-size: 2.5rem;
	font-weight: 600;
	font-family: var(--typo_1);
}

/* ----------- HERO HOME -----------*/
.hero {
	height: 600px;
	background-image: url("../img/banner.jpg");
    background-color: var(--color_gris);
    background-blend-mode: multiply;
    
	background-position: center center;
	background-size: cover;
	display: flex;
}

.hero_titulo {
	margin: auto;
	text-align: center;
}
.hero_titulo p {
    font-family: var(--typo_1);
    color: white;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}


/* --------------------- NOSOTROS --------------------- */

/* ----------- INTRO -----------*/
@media (min-width: 768px) {
	.intro_contenedor {
	display: flex;
	justify-content: space-between;
	}
	.intro_contenido {
	display: flex;
	flex-direction: column;
	max-width: calc(50% - 30px);
	}
}
.intro_contenido p {
    font-family: var(--typo_1);
    color: var(--color_gris);
    line-height: 1.5;
    font-size: 18px;
    text-align: justify;
    margin-top: 40px;
}
@media (min-width: 768px) {
	.intro_contenido p {
    margin: 0;
    }
}
.intro_contenido img {
    border-radius: 0 80px 0 0;
}

/* ----------- AZULES -----------*/
@media (min-width: 768px) {
    .azules_contenedor {
        display: flex;
        flex-direction: row;
    }
}
.azules_texto {
    background-color: var(--color_azul_alto);
    padding: 30px 40px;
}
.azules_img img {
	height: 300px;
	width: 900px;
	object-fit: cover;
	object-position: center top;
	display: block;
}
.mision_img img {
    border-radius: 80px 0 0 0;
}
.vision_img img {
    border-radius: 0 0 80px 0;
}
.azules_texto p {
    font-family: var(--typo_1);
    color: white;
    line-height: 1.5;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    margin: 0;
}
.azules_texto p span {
    text-transform: uppercase;
    font-size: 28px;
    font-style: italic;
}

/* ----------- OBJETIVO -----------*/
@media (min-width: 768px) {
	.objetivo_contenedor {
	display: flex;
	justify-content: space-between;
	}
	.objetivo_contenido {
	display: flex;
	flex-direction: column;
	max-width: calc(50% - 30px);
	}
}
.objetivo_contenido p {
    font-family: var(--typo_1);
    color: var(--color_gris);
    line-height: 1.5;
    font-size: 20px;
    text-align: justify;
    margin: 0;
}
.objetivo_contenido img {
    margin-top: 40px;
}
@media (min-width: 768px) {
	.objetivo_contenido img {
    margin: 0;
    }
}

/* ----------- SERVICIOS EN HOME -----------*/
.servicios_contenedor {
    margin-top: 40px;
}
.servicios_contenido {
    padding: 20px;
    margin-top: 40px;
}
@media (min-width: 768px) {
	.servicios_contenedor {
	display: flex;
	justify-content: space-between;
	}
	.servicios_contenido {
	display: flex;
	flex-direction: column;
	max-width: calc(25% - 20px);
    margin: 0;
	}
}
.servicios_contenido p {
    font-family: var(--typo_1);
    color: var(--color_gris);
    line-height: 1.5;
    font-size: 18px;
    text-align: center;
    margin: 0;
}
.servicios_contenido span {
    color: dodgerblue;
    font-size: 22px;
}
.servicios_contenido img {
    border-radius: 50%;
    transition: all .5s ease-in-out;
}
.servicios_contenido img:hover {
    transform: scale(1.1);
}
.servicios_contenido a {
    text-decoration: none;
    color: var(--color_gris);
}

/* ------------------ KIDS ------------------ */
/* ----------- HERO KIDS -----------*/
.hero_kids {
	height: 600px;
	background-image: url("../img/banner_kids.jpg");
    background-color: var(--color_azul_medio);
    background-blend-mode: multiply;
    
	background-position: center center;
	background-size: cover;
	display: flex;
    
}

.hero_titulo_kids {
	margin: auto;
	text-align: center;
}
.hero_titulo_kids img {
    max-height: 150px;
    display: inline;
}
.hero_titulo_kidsa h1 {
    margin: 100px 0 0 0;
}
.hero_titulo_kids p {
    font-family: var(--typo_1);
    color: white;
    font-size: 20px;
    font-weight: 600;
    line-height: 2;
    margin: 30px 0 0 0;
}

/* ------------------ EDUCACION CONTINUA ------------------ */
/* ----------- HERO EDUCACION CONTINUA -----------*/
.hero_ed_continua {
	height: 600px;
	background-image: url("../img/banner_ed_continua.jpg");
    background-color: var(--color_azul_medio);
    background-blend-mode: multiply;
    
	background-position: center center;
	background-size: cover;
	display: flex;
    
}

.hero_titulo_ed_continua {
	margin: auto;
	text-align: center;
}
.hero_titulo_ed_continua img {
    max-height: 150px;
    display: inline;
}
.hero_titulo_ed_continua h1 {
    margin: 100px 0 0 0;
}
.hero_titulo_ed_continua p {
    font-family: var(--typo_1);
    color: white;
    font-size: 20px;
    font-weight: 600;
    line-height: 2;
    margin: 30px 0 0 0;
}


/* ------------------ SENTIDO DE VIDA ------------------ */
/* ----------- HERO SENTIDO VIDA -----------*/
.hero_sentido_vida {
	height: 600px;
	background-image: url("../img/banner.jpg");
    background-color: var(--color_azul_medio);
    background-blend-mode: multiply;
    
	background-position: center center;
	background-size: cover;
	display: flex;
    
}

.hero_titulo_sentido_vida {
	margin: auto;
	text-align: center;
}
.hero_titulo_sentido_vida img {
    max-height: 150px;
    display: inline;
}
.hero_titulo_sentido_vida h1 {
    margin: 100px 0 0 0;
}
.hero_titulo_sentido_vida p {
    font-family: var(--typo_1);
    color: white;
    font-size: 20px;
    font-weight: 600;
    line-height: 2;
    margin: 30px 0 0 0;
}

/* ---------------- MATERIAL APOYO --------------- */
.pro_home_contenedor {
	display: flex;
	flex-wrap: wrap;
	margin: 30px 0;
}
.pro_home_accesos {
	flex: 0 0 100%;
}
.card_text {
    background-color: #03254C;
    padding: 20px 0;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.12);
    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.12);
    -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.12);
}

@media (min-width: 768px) {
	.pro_home_contenedor {
		justify-content: space-between;
	}
	.pro_home_acceso {
	    display: inline-block;
	    max-width: calc(33.3% - 15px);
	}
}
div.pro_home_img {
	overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.12);
    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.12);
    -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.12);
    border-radius: 45px 45px 0 0;
}
div.pro_home_img img {	
	transition: all .5s ease-in-out;
	bottom: 0;
}
div.pro_home_img:hover img {
	transform: scale(1.15);
}
div.pro_home_acceso:last-of-type {
		margin: 0;
}
div.pro_home_acceso a {
    text-decoration: none;
    
}
div.pro_home_acceso p {
    font-family: var(--typo_2);
    font-size: 20px;
    color: white;
    margin: 0 0 0 20px;
    font-weight: bold;
}

/* ----------- LIBRO CUESTA -----------*/
.libro_cuesta {
    background-color: aliceblue;
    padding: 60px 0;
}
.libro_cuesta img {
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.12);
    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.12);
    -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.12);
}
.libro_cuesta p {
    font-family: var(--typo_2);
    font-size: 26px;
	color: dimgray;
    margin: 0 0 0 20px;
}
.libro_cuesta a {
    font-size: 14px;
}

/* ----------- NUESTROS EXPERTOS-----------*/
/*------------ TARJETAS ------------*/
.tarjetas_container {
	margin: 5em auto;
	max-width: 90%;
}
.tarjetas_contenido {
	margin-bottom: 30px;
}
@media (min-width: 768px) {
	.tarjetas_container {
	max-width: 1100px;
	}
	.tarjetas_contenedor {
	display: flex;
	justify-content: space-between;
	}
	.tarjetas_contenido {
	display: flex;
	flex-direction: column;
	max-width: calc(50% - 20px);
	}
}
.tarjetas_contenido img {
	border-radius: 25px 25px 0 0;
	display: block;
	margin: 0 auto;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.12);
    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.12);
}
.tarjetas_texto {
	padding: 15px 25px;
	background-color: aliceblue;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.tarjetas_detalles {
	display: flex;
	justify-content: space-between;
	padding: 15px 0;
	border-bottom: solid 1px red;
}
.tarjetas_detalles span {
	font-size: 16px;
    font-family: var(--typo_1);
	font-style: italic;
	color: dimgray;
	font-weight: bold;
}
.tarjetas_descrip p {
    font-family: var(--typo_1);
	text-align: justify;
	line-height: 1.5;
    font-size: 14px;
	margin: 15px 0 25px 0;
}
.tarjetas_btn {
	margin-top: auto;
}

/* ----------- PARALLAX HOME-----------*/
.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.contact_home {
	position: relative;
	height: auto;
}
div.contact_home::before {
	background-image: url("../img/famcons.jpg");
	content: '';
}
.contact_home_contenedor {
	position: relative;
	padding: 100px 0;
	text-align: left;
}
.contact_home_contenedor p {
    font-family: var(--typo_1);
    line-height: 1.5;
    font-weight: 600;
    font-style: italic;
    color: white;
    font-size: 22px;
    margin: 0;
}

/* ----------- PARALLAX BAD -----------*/
.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.clc {
	position: relative;
	height: auto;
}
div.clc::before {
	background-image: url("../img/golden-wheat.jpg");
	content: '';
}
.clc_contenedor {
	position: relative;
	padding: 110px 0 50px 0;
	text-align: center;
}
.clc_contenedor_btn {
	position: relative;
	padding: 0 0 110px 0;
	text-align: center;
}
@media (min-width: 768px) {
	.clc_contenedor {
	display: flex;
	justify-content: space-between;
	}
	.clc_contenido {
	display: flex;
	flex-direction: column;
	max-width: calc(50% - 30px);
	}
}
.clc_contenido p {
    font-family: var(--typo_1);
    line-height: 1.5;
    font-weight: 600;
    font-style: italic;
    color: white;
    font-size: 22px;
    margin: 0;
}
.clc_contenido p span {
    font-size: 26px;
    font-weight: 700;
}


/* ----------- SERVICIOS EN NOSOTROS -----------*/
.servicios_contenedor_nos {
    margin-top: 40px;
}
.servicios_contenido_nos {
    padding: 25px;
    margin-top: 40px;
    background-color: aliceblue;
    border-radius: 25px;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.12);
    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.12);
}
@media (min-width: 768px) {
	.servicios_contenedor_nos {
	display: flex;
	justify-content: space-between;
	}
	.servicios_contenido_nos {
	display: flex;
	flex-direction: column;
	max-width: calc(33.3% - 20px);
    margin: 0;
	}
}
.servicios_contenido_nos p {
    font-family: var(--typo_1);
    color: var(--color_gris);
    line-height: 1.5;
    font-size: 13px;
    text-align: justify;
    margin: 0;
}
.servicios_contenido_nos p span {
    font-family: var(--typo_2);
    color: dodgerblue;
    font-size: 16px;
}
.servicios_contenido_nos img {
    border-radius: 50%;
    transition: all .5s ease-in-out;
}
.servicios_contenido_nos img:hover {
    transform: scale(1.1);
}
.servicios_contenido_nos a {
    text-decoration: none;
    color: var(--color_gris);
}

/* ----------- COACHING EJECUTIVO -----------*/
@media (min-width: 768px) {
	.coaching_contenedor {
	display: flex;
	justify-content: space-between;
	}
	.coaching_texto {
	display: flex;
	flex-direction: column;
	max-width: calc(60% - 30px);
	}
    .coaching_imagen {
	display: flex;
	flex-direction: column;
	max-width: calc(40%);
	}
}
.coaching_texto p {
    font-family: var(--typo_1);
    color: var(--color_gris);
    line-height: 1.5;
    font-size: 18px;
    text-align: left;
    margin: 0;
}
.coaching_imagen img {
	height: 450px;
	width: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
    margin: 20px 0 0 0;
}
}
@media (min-width: 768px) {
	.coaching_imagen img {
    margin: 0;
    }
}

/* ------------------ FOOTER ------------------ */
footer.site_footer {
background-color: gray;
    padding: 50px;
	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;
}
.mapa_sitio a:hover {
    font-weight: bold;
}
@media only screen and (min-width: 768px){
	div.footer_contenido > div {
		width: 33.3%;
		float: left;
	}
	.footer_info, .mapa_sitio {
	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);
}


/* ----------- CONTACTO -----------*/
.hero_contacto {
	height: 600px;
	background-image: url("../img/contact3.jpg");
    background-color: var(--color_gris);
    background-blend-mode: multiply;
    
	background-position: center center;
	background-size: cover;
	display: flex;
    
}

.hero_titulo_contacto {
	margin: auto;
	text-align: center;
}
.hero_titulo_contacto p {
    font-family: var(--typo_1);
    color: white;
    font-size: 20px;
    font-weight: 600;
    line-height: 2;
    margin: 30px 0 0 0;
}

/* Contacto */
.contacto p {
	color: lightgray;
	font-size: 1.7rem;
	margin: 2rem 0 0 0;
}
label {
	display: block;
	font-weight: 700;
	text-transform: uppercase;
}
legend {
	font-size: 2.3rem;
	color: dimgray;
}
/* 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;
    margin-top: 10px;
}
input[type="radio"]{
	width: auto;
	margin: 0;
}
select {
	-webkit-appearance: none;
	appearance: none;
}
textarea {
	height: 20rem;
}

fieldset {
    font-family: var(--typo_1);
    font-size: 16px;
}
