@charset "utf-8";
/* CSS Document */
/******************************
[Table of Contents]
Fonts
Body and some general stuff
Header
3.1 Logo
3.2 Main Nav
3.3 Header Side
3.4 Hamburger
Menu
4.1 Menu Social
4.2 Menu copyright
Home
Page Section
About Section
Footer
******************************/

/***********
Fonts
***********/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800|Roboto:400,500,700');

/*********************************
2. Body and some general stuff
*********************************/
* {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}

body {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 400;
	background: #FFFFFF;
	color: #a5a5a5;
}

div {
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

ul {
	list-style: none;
	margin-bottom: 0px;
}

p {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	line-height: 1.8;
	font-weight: 400;
	color: #555;
}

p a {
	display: inline;
	position: relative;
	color: inherit;
	border-bottom: solid 1px #ffa07f;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

a, a:hover, a:visited, a:active, a:link {
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}

::selection {
	background: #FFD266;
	color: #C88E00;
}

p::selection {
	background: #FFD266;
	color: #C88E00;
}

h1 { font-size: 36px; }
h2 { font-size: 22px; }
h3 { font-size: 18px; }
h4 { font-size: 14px; }
h5 { font-size: 11px; }

h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto', sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}

/*********************************
3. Header
*********************************/
.header {
	position: fixed;
	top: 45px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 1318px;
	height: 104px;
	background: #FFFFFF;
	z-index: 10;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.header.scrolled {	
	top: 15px;
}

.header.scrolled .header_content::before {
	box-shadow: 0px 20px 49px rgba(0,0,0,0.17);
}

.header_content {
	width: calc(100% - 279px);
	height: 100%;
}

.header_content::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	box-shadow: 0px 20px 49px rgba(0,0,0,0.67);
	z-index: -1;
}

/*********************************
3.1 Logo
*********************************/
.logo_container {
	display: inline-flex;
	padding-left: 50px;
	align-items: center;
}

.logo span {
	font-family: 'Open Sans', sans-serif;
	font-size: 30px;
	font-weight: 900;
	color: #3a3a3a;
	vertical-align: middle;
	text-transform: uppercase;
	margin-left: 3px;
}

/*********************************
3.2 Main Nav
*********************************/
.main_nav_container {
	display: inline-block;
	margin-left: auto;
	padding-right: 50px;
}

.main_nav {
	margin-top: 7px;
}

.main_nav_item {
	display: inline-block;
	margin-right: 20px;
}

.main_nav_item:last-child {
	margin-right: 0px;
}

.main_nav_item a {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
	color: #3a3a3a;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.main_nav_item a:hover {
	color: #ffb606;
}

/*********************************
3.3 Header Side
*********************************/
.header_side {
	width: 279px;
	height: 100%;
	background: #ffb606;
}

.header_side img {
	width: 29px;
	height: 29px;
}

.header_side span {
	display: block;
	position: relative;
	font-size: 18px;
	font-weight: 500;
	color: #FFFFFF;
	padding-left: 12px;
}

/*********************************
3.4 Hamburger
*********************************/
.hamburger_container {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 20px;
	display: none;
	cursor: pointer;
}

.hamburger_container i {
	font-size: 24px;
	padding: 10px;
	color: #3a3a3a;
}

.hamburger_container:hover i {
	color: #ffb606;
}

/*********************************
4. Menu
*********************************/
.menu_container {
	position: fixed;
	top: 0;
	right: -50vw;
	width: 50vw;
	height: 100vh;
	background: #FFFFFF;
	z-index: 12;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-ms-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	transition: all 0.6s ease;
	visibility: hidden;
	opacity: 0;
}

.menu_container.active {
	visibility: visible;
	opacity: 1;
	right: 0;
}

.menu {
	position: absolute;
	top:150px;
	left: 0;
	padding-left: 15%;
}

.menu_list {
	-webkit-transform: translateY(3.5rem);
	-moz-transform: translateY(3.5rem);
	-ms-transform: translateY(3.5rem);
	-o-transform: translateY(3.5rem);
	transform: translateY(3.5rem);
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 1000ms 600ms ease;
	opacity: 0;
}

.menu_container.active .menu_list {
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
	opacity: 1;
}

.menu_item {
	margin-bottom: 9px;
}

.menu_item a {
	font-family: 'Open Sans', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: #3a3a3a;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.menu_item a:hover {
	color: #ffb606;
}

.menu_close_container {
	position: absolute;
	top: 86px;
	right: 79px;
	width: 21px;
	height: 21px;
	cursor: pointer;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.menu_close {
	top: 9px;
	width: 21px;
	height: 3px;
	background: #3a3a3a;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.menu_close::after {
	display: block;
	position: absolute;
	top: -9px;
	left: 9px;
	content: '';
	width: 3px;
	height: 21px;
	background: #3a3a3a;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.menu_close_container:hover .menu_close,
.menu_close_container:hover .menu_close::after {
	background: #ffb606;
}

/*********************************
4.1 Menu Social
*********************************/
.menu_social_container {
	margin-top: 100px;
	-webkit-transform: translateY(3.5rem);
	-moz-transform: translateY(3.5rem);
	-ms-transform: translateY(3.5rem);
	-o-transform: translateY(3.5rem);
	transform: translateY(3.5rem);
	-webkit-transition: all 1000ms 1000ms ease;
	-moz-transition: all 1000ms 1000ms ease;
	-ms-transition: all 1000ms 1000ms ease;
	-o-transition: all 1000ms 1000ms ease;
	transition: all 1000ms 1000ms ease;
	opacity: 0;
	padding-left: 4px;
}

.menu_social_item {
	display: inline-block;
	margin-right: 27px;
}

.menu_social_item:last-child {
	margin-right: 0px;
}

.menu_social_item a i {
	color: #3a3a3a;
}

.menu_social_item a i:hover {
	color: #ffb606;
}

.menu_container.active .menu_social_container {
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
	opacity: 1;
}

/*********************************
4.2 Menu copyright
*********************************/
.menu_copyright {
	margin-top: 60px;
	-webkit-transform: translateY(3.5rem);
	-moz-transform: translateY(3.5rem);
	-ms-transform: translateY(3.5rem);
	-o-transform: translateY(3.5rem);
	transform: translateY(3.5rem);
	-webkit-transition: all 1000ms 1200ms ease;
	-moz-transition: all 1000ms 1200ms ease;
	-ms-transition: all 1000ms 1200ms ease;
	-o-transition: all 1000ms 1200ms ease;
	transition: all 1000ms 1200ms ease;
	opacity: 0;
	padding-left: 3px;
}

.menu_container.active .menu_copyright {
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
	opacity: 1;
}

/*********************************
5. Home
*********************************/
.home {
	width: 100%;
	height: 447px;
}

.home_background_container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.home_background {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.home_content {
	position: absolute;
	left: 50%;
	bottom: 109px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	background: #ffb606;
	padding-top: 24px;
	padding-bottom: 18px;
	padding-left: 39px;
	padding-right: 42px;
}

.home_content h1 {
	font-size: 72px;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 0.5;
}

/*********************************
7. Page Section
*********************************/
.page_section {
	padding-top: 117px;
	padding-bottom: 117px;
}

.section_title h1 {
	display: block;
	color: #1a1a1a;
	font-weight: 500;
	padding-top: 24px;
}

.section_title h1::before {
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 55px;
	height: 4px;
	content: '';
	background: #ffb606;
}

/*********************************
8. About Section - ESTILOS ESPECÍFICOS
*********************************/
.instituto-info {
	margin: 50px 0;
	padding: 40px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

.instituto-info .section-subtitle {
	color: #2d3e50;
	margin-bottom: 20px;
	font-size: 32px;
	font-weight: 500;
	position: relative;
	padding-bottom: 15px;
}

.instituto-info .section-subtitle::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 4px;
	background: #ffb606;
}

.instituto-text {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	text-align: justify;
}

.directora-section {
	margin: 80px 0;
}

.directora-foto {
	text-align: center;
}

.directora-img {
	width: 100%;
	max-width: 400px;
	border-radius: 15px;
	box-shadow: 0 15px 40px rgba(0,0,0,0.15);
	transition: transform 0.3s ease;
}

.directora-img:hover {
	transform: scale(1.02);
}

.directora-mensaje {
	background: #f8f9fb;
	padding: 40px 35px;
	border-radius: 15px;
	height: 100%;
	box-shadow: 0 8px 25px rgba(0,0,0,0.08);
	border-left: 5px solid #ffb606;
}

.directora-mensaje .section-subtitle {
	color: #2d3e50;
	margin-bottom: 10px;
	font-size: 32px;
	font-weight: 500;
}

.directora-nombre {
	color: #2d3e50;
	margin-bottom: 25px;
	font-size: 20px;
	font-weight: 600;
	font-style: italic;
}

.directora-texto p {
	font-size: 16px;
	line-height: 1.9;
	color: #555;
	margin-bottom: 15px;
	text-align: justify;
}

.directora-texto p:last-child {
	margin-bottom: 0;
}

.mision-vision {
	margin: 80px 0;
}

.card-institucional {
	background: #FFFFFF;
	padding: 40px 30px;
	border-radius: 15px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.1);
	height: 100%;
	transition: all 0.3s ease;
	border-top: 5px solid #2d3e50;
}

.card-institucional:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-institucional .card-title {
	color: #2d3e50;
	margin-bottom: 25px;
	font-size: 32px;
	font-weight: 500;
	text-align: center;
	position: relative;
	padding-bottom: 20px;
}

.card-institucional .card-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: #ffb606;
	border-radius: 2px;
}

.card-institucional .card-text {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	text-align: justify;
	margin: 0;
}

.mision-card { border-top-color: #2d3e50; }
.vision-card { border-top-color: #ffb606; }

.about-cta {
	margin: 60px 0;
	text-align: center;
}

.btn-about-contact {
	display: inline-block;
	background: linear-gradient(135deg, #2d3e50, #1a2a38);
	color: #FFFFFF !important;
	padding: 16px 40px;
	border-radius: 50px;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(45, 62, 80, 0.3);
}

.btn-about-contact:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(45, 62, 80, 0.4);
	color: #FFFFFF !important;
}

/*********************************
12. Footer
*********************************/
.footer {
	width: 100%;
	padding-top: 86px;
	background: #1a1a1a;
}

.footer .section_title h1 {
	color: #FFFFFF;
}

.footer_content {
	padding-top: 80px;
	padding-bottom: 83px;
	border-bottom: solid 2px #4d4e4e;
}

.footer_content .logo_container {
	padding-left: 0px;
}

.footer_content .logo span {
	color: #FFFFFF;
}

.footer_about_text {
	margin-top: 24px;
	margin-bottom: 0px;
	padding-right: 20px;
}

.footer_column_title {
	font-size: 18px;
	font-weight: 500;
	color: #FFFFFF;
	padding-top: 15px;
}

.footer_column_content {
	margin-top: 32px;
}

.footer_list_item {
	margin-bottom: 11px;
}

.footer_list_item a {
	font-size: 14px;
	color: #a5a5a5;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.footer_list_item a:hover {
	color: #ffb606;
}

.footer_contact_item {
	font-size: 14px;
	font-weight: 400;
	color: #a5a5a5;
	margin-bottom: 22px;
}

.footer_contact_item:last-child {
	margin-bottom: 0px;
}

.footer_contact_icon {
	display: inline-block;
	width: 24px;
	height: 24px;
	vertical-align: middle;
	margin-right: 10px;
}

.footer_contact_icon img {
	width: 100%;
}

.footer_bar {
	padding-top: 19px;
	padding-bottom: 19px;
}

.footer_social .menu_social_item a i {
	color: #FFFFFF;
}

.footer_social .menu_social_item a i:hover {
	color: #ffb606;
}

.footer_social .menu_social_item:last-child {
	margin-right: 0px;
}