/*

	-------------------
	SHELBY TEMPLATE 1.1
	-------------------

	CSS STRUCTURE
	-----------------
	01. Import Font Family
	02. CSS Reset
	03. General Settings
	04. Header Settings
	05. About Settings
	06. Portfolio Settings
	07. Contact Settings
	08. Footer Settings
	09. Responsive Settings

	-------------------
	TEMPLATE BY BRUK.HU
	-------------------

*/

/* 01 IMPORT FONT FAMILY
--------------------------------------------------------------- */
@import url(http://fonts.googleapis.com/css?family=Montserrat);
@import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,300);

@font-face {
    font-family: 'Summer';
    src: url('../fonts/SummerHearts.otf');
}

@font-face {
    font-family: 'Parabola';
    src: url('../fonts/parabola.ttf');
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GOTHAM-BLACK.TTF'); /* Safari, Android, iOS */
 }

/* 02 CSS RESET
--------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* 03 GENERAL SETTINGS
--------------------------------------------------------------- */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.clear{
	clear: both;
}

body {
	background: #fff;
	font: 300 14px 'Open Sans', sans-serif;
	text-align: center;
	color: #999;

}

.body_hidden { overflow: hidden; }

p {
	line-height: 2;
}

a {
	color: #a67d4a;
	text-decoration: none;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear
}

a:hover { color: #999; }

img {
	max-width: 100%;
	height: auto;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
}

h1{
	font-family: Gotham;
}

/* Section Titles */
.section_title {
	margin: 0 0 15px 0;
	color: #fdbf01;
	font-size: 24px;
	text-transform: uppercase;
	letter-spacing: 6px;
}

.section_subtitle {
	margin: 0 0 50px 0;
	font: italic 18px 'Open Sans', sans-serif;
	text-transform: none;
}

/* Containers */
.container_small, .container_big {
	width: 100%;
	margin: 0 auto;
}

.container_small {max-width: 900px;}
.container_big {max-width: 1050px;}

.wrapper {
	max-width: 1061px;
	    margin: 0 auto;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
	    align-items: center;
      -webkit-align-items: center;
	    justify-content: flex-start;
      -webkit-justify-content: flex-start;
	    height: 100vh;
}

.wrapper > div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.wrapper > div p {
	color: #fff;
	text-align: left;
	font-size: 18px;
	line-height: 1.5;
}

/* Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
    opacity:0;
    -webkit-animation:fadeIn ease-in 1;
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;

    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;

    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
}

.fade-in.cmon {
	-webkit-animation-delay: 0.3s;
	-moz-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

/* 04 HEADER SETTINGS
--------------------------------------------------------------- */

#welcome {
	background: url('../images/header.jpg') no-repeat center;
	background-size: cover;
	width: 100%;
	height: 100vh;
  padding-bottom: 200px;
	position: relative;
  background-attachment: fixed;
  overflow: hidden;
}

.fade {
	background: rgba(17,17,17, 0.4);
	width: 100%;
	height: 100%;
}

/* Header Titles */
.header_title {
	color: #fff;
	font-size: 32px;
	letter-spacing: 6px;
	text-align: left;
	margin: 0 0 15px 0;
	flex: 0 0 50%;
	-webkit-flex: 0 0 50%;
	position: relative;
	white-space: nowrap;
}

.header_title span {
    font-size: 80px;
}

.header_subtitle {
	color: #a67d4a;
	font-size: 14px;
	letter-spacing: 6px;
}

.scroll_down {
	width: 100%;
	position: absolute;
	bottom: 300px;
	text-align: center;
	color: #fff;
  -webkit-animation: mouse-wheel 0.7s infinite;
  -moz-animation: mouse-wheel 0.7s infinite;
  -animation: mouse-wheel 0.7s infinite;
-ms-animation: mouse-wheel 0.7s infinite;
}

@-webkit-keyframes mouse-wheel
{
   0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
}

@-moz-keyframes mouse-wheel
{
  0% { top: 1px; }
  25% { top: 2px; }
  50% { top: 3px;}
  75% { top: 2px;}
  100% { top: 1px;}
}

/* Vertical centering */
.parent {display: table;}

.child {
    display: table-cell;
    vertical-align: middle;
}

/* Menu */
.burger {
	position: fixed;
	top: 50px;
	left: 50px;
	height: 40px;
	width: 40px;
	cursor: pointer;
	z-index: 100;
	-webkit-transition: opacity .25s ease;
	-moz-transition: opacity .25s ease;
	-o-transition: opacity .25s ease;
	-ms-transition: opacity .25s ease;
	transition: opacity .25s ease;
  display: none;
}

.me{
  position: fixed;
  top: 70px;
  left: 50px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  -webkit-transition: opacity .25s ease;
  -moz-transition: opacity .25s ease;
  -o-transition: opacity .25s ease;
  -ms-transition: opacity .25s ease;
  transition: opacity .25s ease;
}

.me h2{
  font-family: Gotham;
  font-weight: 400;
}

.me span{
  font-weight: 100;
}

.profesion{text-transform: none;font-weight: 100 !important;}

.burger.active .top {
	-webkit-transform: translateY(10px) translateX(0) rotate(45deg);
	-ms-transform: translateY(10px) translateX(0) rotate(45deg);
	transform: translateY(10px) translateX(0) rotate(45deg);
}
.burger.active .middle {
  opacity: 0;
}
.burger.active .bottom {
	-webkit-transform: translateY(-10px) translateX(0) rotate(-45deg);
	-ms-transform: translateY(-10px) translateX(0) rotate(-45deg);
	transform: translateY(-10px) translateX(0) rotate(-45deg);
}
.burger span {
	background: #a67d4a;
	border: none;
	height: 2px;
	width: 100%;
	position: absolute;
	top: 10px;
	left: 0;
	-webkit-transition: all .35s ease;
	-moz-transition: all .35s ease;
	-o-transition: all .35s ease;
	-ms-transition: all .35s ease;
	transition: all .35s ease;
	cursor: pointer;
}

.burger span:nth-of-type(2) { top: 20px; }
.burger span:nth-of-type(3) { top: 30px; }

.navigation {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	opacity: 1;
	visibility: hidden;
	-webkit-transition: opacity .35s, visibility .35s, width .35s;
	-moz-transition: opacity .35s, visibility .35s, width .35s;
	-o-transition: opacity .35s, visibility .35s, width .35s;
	-ms-transition: opacity .35s, visibility .35s, width .35s;
	transition: opacity .35s, visibility .35s, width .35s;
	z-index: 50;
}
.navigation:before {
	content: '';
	background: #111;
	left: -105%;
	top: 0;
	width: 100%;
	height: 100vh;
	position: absolute;
	-webkit-transition: left .35s ease;
	-moz-transition: left .35s ease;
	-o-transition: left .35s ease;
	-ms-transition: left .35s ease;
	transition: left .35s ease;
}

.navigation.open, .navigation.close {
	opacity: 1;
	visibility: visible;
	height: 100%;
}
.navigation.open:before, .navigation.close:before { left: 0; }

.navigation.open li {
	-webkit-animation: fadeInRight .5s ease forwards;
	-moz-animation: fadeInRight .5s ease forwards;
	animation: fadeInRight .5s ease forwards;
	-webkit-animation-delay: .35s;
	-moz-animation-delay: .35s;
	animation-delay: .35s;
}
.navigation.open li:nth-of-type(2) {
	-webkit-animation-delay: .45s;
	-moz-animation-delay: .45s;
	animation-delay: .45s;
}
.navigation.open li:nth-of-type(3) {
	-webkit-animation-delay: .55s;
	-moz-animation-delay: .55s;
	animation-delay: .55s;
}

.navigation nav { position: relative; }

.navigation ul {
	list-style: none;
	display: inline-block;
	position: relative;
	margin: 20vh 0 0 0;
	padding: 0;
	height: 60vh;
}

.navigation ul li {
	display: block;
	position: relative;
	opacity: 0;
	height: 20vh;
	line-height: 20vh;
}

.navigation ul li  a {
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	font-size: 24px;
	letter-spacing: 6px;
}

.navigation ul li  a:hover { color: #fff; }

.simple_line {
	background: #252525;
	position: absolute;
	bottom: 0;
	left: calc(50% - 25px);
	width: 50px;
	height: 1px;
}


@-webkit-keyframes fadeInRight {
  0% {
	opacity: 0;
	left: 20%;
  }
  100% {
	opacity: 1;
	left: 0;
  }
}

@-moz-keyframes fadeInRight {
  0% {
	opacity: 0;
	left: 20%;
  }
  100% {
	opacity: 1;
	left: 0;
  }
}

@-ms-keyframes fadeInRight {
  0% {
	opacity: 0;
	left: 20%;
  }
  100% {
	opacity: 1;
	left: 0;
  }
}

/* 05 ABOUT SETTINGS
--------------------------------------------------------------- */

#about {
	background: #fff;
	padding: 100px 50px;
}

.button {
	margin: 50px 0 0;
	padding: 0 20px;
	height: 50px;
	line-height: 50px;
	border: 2px solid #a67d4a;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear
}

.button:hover {
	background: #a67d4a;
	color: #fff;
}

/* 06 PORTFOLIO SETTINGS
--------------------------------------------------------------- */

#portfolio {
	background: #f5f5f5;
	padding: 100px 50px 75px;
}

.works {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-content: space-between;
	-webkit-flex-flow: row wrap;
	-webkit-justify-content: space-between;
	-webkit-align-content: space-between;
}

.works article {
	position: relative;
	background: #fff;
	flex: 0 0 31.5%;
	-webkit-flex: 0 0 31.5%;
	margin: 0 0 25px;
	overflow: hidden;
	border: 1px solid #e1e1e1;
}

.border {
	border:5px solid #fff;
	overflow: hidden;
}

.works  a:hover {
	color: #a67d4a;
}

.works img {
	display: block;
	-webkit-transition: all 1000ms linear;
	-moz-transition: all 1000ms linear;
	-o-transition: all 1000ms linear;
	-ms-transition: all 1000ms linear;
	transition: all 1000ms linear;
	overflow: hidden;
	box-shadow: #000 0 0 0;
}

.works img:hover {
	-webkit-transform:scale(1.3);
	-moz-transform:scale(1.3);
	-ms-transform:scale(1.3);
	-o-transform:scale(1.3);
	transform:scale(1.3);
	-webkit-transition: all 5000ms linear;
	-moz-transition: all 5000ms linear;
	-o-transition: all 5000ms linear;
	-ms-transition: all 5000ms linear;
	transition: all 5000ms linear;
}

.caption {
	background: rgba(255,255,255, 0.85);
	position: absolute;
	bottom: 15px;
	left: 0;
	width: 100%;
	height: 50px;
	line-height: 50px;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	color: #a67d4a;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 80vh;
}

/* Back text */
.featherlight .featherlight-close-icon:after {
	content:" back";
	font-size: 12px;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
}

/* 07 CONTACT SETTINGS
--------------------------------------------------------------- */

#contact {
	background: #fff;
	padding: 100px 50px;
}

.info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-content: space-between;
	-webkit-flex-flow: row wrap;
	-webkit-justify-content: space-between;
	-webkit-align-content: space-between;
	margin: 0 0 50px 0;
  color: #333;
}

.info div {
	flex: 0 0 31.5%;
	-webkit-flex: 0 0 31.5%;
	border-left: 1px solid #e1e1e1;
	border-right: 1px solid #e1e1e1;
  color: #333;
}

.info div:first-child,
.info div:last-child {
	border: 0;
}

.info .fa {
	font-size: 36px;
	margin: 0 0 10px 0;
}

.info h3 {
	color: #bf0505;
	margin: 0 0 15px 0;
}

.info p{ color: #333;    font-weight: 900;}

/* Social icons */
.social {
	max-width: 250px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-content: space-between;
	-webkit-flex-flow: row wrap;
	-webkit-justify-content: space-between;
	-webkit-align-content: space-between;
	margin: 0 auto;
}

.social a {
	flex: 0 0 30px;
	-webkit-flex: 0 0 30px;
	border: 2px solid #a67d4a;
	height: 30px;
	line-height: 26px;
	font-size: 16px;
	color: #a67d4a;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear
}

.social a:hover {
	background: #a67d4a;
	color: #fff;
}

/* 08 FOOTER SETTINGS
--------------------------------------------------------------- */

footer {
	background: #f5f5f5;
}

.container_footer {
	width: 100%;
	max-width: 1150px;
	margin: 0 auto;
	padding: 50px;
	overflow: hidden;
}

footer p {
	line-height: 1;
}

.left, .right {	width: 50%;}

.left {
	float: left;
	text-align: left;
}

.left span {
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
}

.right {
	float: right;
	text-align: right;
	text-transform: uppercase;
}

.right a { color: #999 }

.right a:hover { color: #a67d4a }

/* 09 RESPONSIVE SETTINGS
--------------------------------------------------------------- */

/* Width */
@media (max-width: 768px) {
	.burger {
		top: 25px;
		left: 25px;
		height: 35px;
		width: 35px;
	}

	.section_subtitle { margin: 0 0 30px 0; }
	#about, #contact { padding: 80px 25px; }

	#portfolio { padding: 80px 25px 65px; }

	.works article {
		flex: 0 0 48%;
		-webkit-flex: 0 0 48%;
		margin: 0 0 15px;
	}

	.featherlight .featherlight-close-icon { top: -20px !important; }
	.featherlight-iframe .featherlight-content { width: 65% !important; }

	.container_footer { padding: 60px 25px; }
}

@media (max-width: 480px) {
	.works article {
		flex: 0 0 100%;
		-webkit-flex: 0 0 100%;
	}

	.info div {
		flex: 0 0 100%;
		-webkit-flex: 0 0 100%;
		padding: 20px 0;
		border-left: 0;
		border-right: 0;
		border-bottom: 1px solid #e1e1e1;
		border-top: 1px solid #e1e1e1;
	}

	.info div:first-child { padding-top: 0;}

	.info div:last-child { padding-bottom: 0;}

	.info { margin: 0 0 35px 0; }

	.social { max-width: 200px; }
}

@media (max-width: 360px) {
	.container_footer { padding: 30px 25px; }
	.left, .right {
		width: 100%;
		text-align: center;
	}
	.left { padding: 0 0 15px 0;}
}


/*AÑADIDOS POR ENEAS*/
.ScrollSceneIndicators { z-index: 9999999 !important; }
#trig{
  position: absolute;
  top: 0
}
#cards-loc{
  transform: translate(0, 100%);
}
.nombre-cont {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.nombre-cont h3 {
    font-family: Gotham;
    font-size: 250px;
    font-weight: 900;
		color: #131212;
		    line-height: 0.75;
				width: 100%;
				    text-align: left;
            mix-blend-mode: screen;
    opacity: 0.4;
}

.nombre-cont span {
    width: 100%;
    text-align: right;
    display: block;
}

.cards-loc-cont{
	flex: 0 0 50%;
	-webkit-flex: 0 0 50%;
	    margin-left: 120px;
      margin-top: 100px;
			position: relative;
			height: 100%;
}

.card-loc{
	width: 244px;
	height: 390px;
background-color: rgb(19, 18, 18);
	position: absolute;
}

.card-loc:nth-child(1){
    left: auto;
    right: 0;
    top: 23%;
}

.card-loc:nth-child(2){
	top: 55%;
	left: 23.25%;
	z-index: 2;
}

.card-loc:nth-child(3){
	right: auto;
	left: 10%;
	top: 15.5%;
}

.cover-loc {
    position: absolute;
    width: 100%;
    height: 60%;
}

.frankfurt {
	  background: url('../images/frankfurt.jpg');
}

.velbert {
	  background: url('../images/velbert.jpg');
}

.saar {
	background: url('../images/saar.jpg');
top: 40%;
background-position: bottom;
}

.cover-bottom-loc {
    position: absolute;
    bottom: 0;
    height: 25%;
    width: 100%;
}

.card-loc:nth-child(3) .cover-bottom-loc{
	top:0
}

.bottom-loc {
    background-position: bottom;
}

.card-loc:nth-child(3) .bottom-loc{
	background-position: top;
}

.name-cont {
    position: absolute;
    width: 100%;
    height: 15%;
		top: 60%;
}

.card-loc:nth-child(3) .name-cont{
		top: 25%;
}

.name-cont h4{
    font-family: Parabola;
    font-size: 64px;
    color: #fff;
    transform: skew(0, -5deg);
		-webkit-transform: skew(0, -5deg);
		-ms-transform: skew(0, -5deg);
		-moz-transform: skew(0, -5deg);
}

.card-loc:nth-child(3) .name-cont h4{
	transform: skew(0, -5deg);
	-webkit-transform: skew(0, -5deg);
	-ms-transform: skew(0, -5deg);
	-moz-transform: skew(0, -5deg);
}

.razon {
    position: absolute;
    top: -30px;
    width: 100%;
    font-family: Gotham;
    /* height: 20px; */
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.card-loc:nth-child(2) .razon{
  top: auto;
  bottom: -30px
}
#numbers {
	background-color: #a90707;
	padding: 30px;
}

.wrap {
    max-width: 1061px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}

.fig-cont {
    flex: 0 0 33%;
    -webkit-flex: 0 0 33%;
		position: relative;
}

.count {
    font-size: 120px;
    font-family: Gotham;
    font-weight: 700;
    color: #e23d3d;
		    text-align: left;
}

.fig-cont h4 {
	position: absolute;
	top: 50%;
	left: 25%;
	color: #ffffff;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
}

.fig-cont:nth-child(2) .count{
	text-align: center;
}

.fig-cont:nth-child(2) h4{
	right: 25%;
	text-align: right;
}

.fig-cont:nth-child(3) .count{
	text-align: right;
}

.fig-cont:nth-child(3) h4{
	right: 0%;
	text-align: right;
}


#formacion {
	background: url('../images/header-bg.jpg') no-repeat center;
	background-size: cover;
	width: 100%;
	padding: 30px;
      padding-top: 100px;
	position: relative;
  background-attachment: fixed;
}

#formacion .wrap,
#profesor .wrap,
#traductor .wrap,
#niveles .wrap {
	    margin-top: 40px;
}

#formacion .wrap:nth-child(3) .life-cont:nth-child(1),
#formacion .wrap:nth-child(3) .life-cont:nth-child(2),
#profesor .wrap:nth-child(6) .life-cont:nth-child(1),
#profesor .wrap:nth-child(6) .life-cont:nth-child(2){
  visibility: hidden;
}


#profesor {
  background: url('../images/header-bg-white.jpg') center;
      background-size: contain;
    width: 100%;
    padding: 30px;
    padding-top: 100px;
    position: relative;
}

#niveles {
    background: #fdbe01;
    width: 100%;
    padding: 30px;
    padding-top: 100px;
    position: relative;
        padding-bottom: 100px;
}

#motivation, #contactar, #spacing {
	background: url('../images/header-bg.jpg') no-repeat center;
	background-size: cover;
	width: 100%;
	height: 120vh;
	position: relative;
  background-attachment: fixed;

}

#motivation{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}

#spacing{height: 50vh; margin-top: 0px;}

#contactar{
  height: 120vh;
  z-index: 1000;
}

.svg-shapes{
  background: url('../images/contactar.svg') no-repeat center;
  background-size: cover;
  position: absolute;
  height: 100%;
  width: 100%;
}

.heading {
	width: 320px;
	height: 320px;
	margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
	align-items: center;
  -webkit-align-items: center;
	justify-content: center;
  -webkit-justify-content: center;
}

.yellow {
	background-color: #fdbe01;
}

#formacion .yellow {
    background: url('../images/academica.svg');
    background-size: cover;
    position: relative;
}

#formacion .heading p,
#profesor .heading p,
#traductor .heading p,
#niveles .heading p {
    position: absolute;
    font-family: Gotham;
    font-weight: 900;
    font-size: 36px;
    line-height: 1;
    padding: 0;
    right: 0;
    top: -40px;
    color: #fdbe01;
}

#traductor .heading p{ color: #ad1919}
#niveles .heading p{ color: #ffffff}

#profesor .yellow {
    background: url('../images/profesor.svg');
    background-size: cover;
    position: relative;
}

.red {
    background: #ad1919;
}

#traductor .red {
    background: url('../images/traductor.svg');
    background-size: cover;
    position: relative;
}


.white {
    background-color: #fff;
}

#niveles .white{
  background: url('../images/niveles.svg');
  background-size: cover;
  position: relative;
}
.heading h2 {
    font-family: Gotham;
    font-weight: 900;
    text-transform: none;
    color: #000;
    font-size: 42px;
		line-height: 0.8;
}

.life-cont {
    width: 320px;
    height: 500px;
    margin: 0 20px;
    background: #fff;
		overflow: hidden;
	padding-top: 100px;
	position: relative;
}

#profesor .life-cont img {
	position: absolute;
	height: 38px;
	top: 50px;
	left: 0;
}



.life-cont:nth-child(1),
.life-cont:nth-child(3){
	margin-top: -300px;
}


.life-cont:nth-child(1){margin-left: 0}
.life-cont:nth-child(3){margin-right: 0}
.life-cont h2 {
    font-family: Gotham;
    font-weight: 900;
    color: #1c1c1c;
    text-transform: none;
    font-size: 36px;
    text-align: left;
    padding: 20px;
    line-height: 1;
}

.life-cont h3 {
    padding: 0 20px;
    text-align: left;
    color: #1c1c1c;
    text-transform: none;
    font-size: 16px;
}

.caracts {
    margin-top: 80px;
}

.caracts p {
    background-color: #1c1c1c;
    margin: 10px 0;
    color: #fff;
    font-size: 16px;
		float: left;
    font-weight: 600;
}

.caracts p:nth-child(1){
	width: 70%;
}
.caracts p:nth-child(2){
	width: 25%;
	margin-left: 5%;
}

.caracts p:nth-child(3){
	width: 50%;
}
.caracts p:nth-child(4){
	width: 45%;
	margin-left: 5%;
}

#profesor .life-cont{
  background: #1c1c1c;
      padding-top: 50px;
}

.year{
  text-align: right;
  margin-bottom: 30px;
}

.year p {
    padding: 5px;
    display: inline-flex;
    display: -webkit-inline-box;
     display: -webkit-inline-flex;
      display: -moz-inline-box;
     display: -ms-inline-flexbox;
    background: #fdbe01;
    color: #000;
    font-weight: 900;
}

#profesor .life-cont h2,
#profesor .life-cont h3{
  color: #fff
}

#profesor .caracts p {
  background-color: #3a3838;
  color: #d8d8d8;
    font-weight: 600;
}

#profesor .caracts p:nth-child(1){
  width: 65%;
}

#profesor .caracts p:nth-child(2){
  width: 30%;
}

#traductor {
  	background: url('../images/header-bg.jpg') no-repeat center;
  	background-size: cover;
  	width: 100%;
  	position: relative;
    padding: 100px;
    background-attachment: fixed;
}

#traductor .life-cont{
  height: 250px;
  padding: 30px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}

#traductor .life-cont h2{
  padding: 0 20px 10px 20px;
}

.bubbles-cont {
  position: relative;
      min-height: 100vh;
      max-width: 1061px;
      width: 100%;
          margin: 0 auto;
        margin-top: 50px;
}
.sq{
    width: 300px;
      height: 300px;
      background: #fff;
      font-family: Gotham;
      font-weight: 900;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      align-items: center;
      -webkit-align-items: center;
      justify-content: center;
      -webkit-justify-content: center;
      position: absolute;
      margin: 10px;

}

.b2{
  background: #1c1c1c;
  color: #ffffff;
  font-size: 64px;
}

.b1{
  background: #ad1919;
  color: #ffffff;
  font-size: 56px;
  width: 250px;
    height: 250px;
}

.a2 {
    background: #ffffff;
    color: #1c1c1c;
    font-size: 48px;
    width: 200px;
    height: 200px;
}

.a1{
  background: #EFEBC7;
  color: #1c1c1c;
  font-size: 36px;
  width: 150px;
  height: 150px;
}

.peq{
  width: 50px;
  height: 50px;
}

.med{
  width: 75px;
  height: 75px;
}

.big{
  width: 300px;
  height: 300px;
}

.blanco{
  background: #cecabc;
}

.negro{
  background: #333;
}

.rojo{
  background: #B7230F;
}

#b21 {
    right: 0;
}
#b22 {
  top: 450px;
  left: 0px;
}
#b12 {
  right: 50px;
  top: 450px;
}

#a21 {
      top: 250px;
      left: 250px;
}

#a22 {
  top: 420px;
  left: 400px;
}

#a12 {
  top: 300px;
      right: 300px;
}
#a11 {
  top: 100px;
      left: 450px;
}

#niv-line {display: none;}
#niv-line .sq{position: initial;}
#frase{margin-top: 100px;}

#longview, #tandem{
  padding: 100px;
  background: url('../images/longview.jpg') no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

#tandem{
  background: url('https://tandemschools.files.wordpress.com/2015/11/001.jpg') no-repeat center;
  background-size: cover;
  background-attachment: fixed;
}


#longview:before, #tandem:before{
  position: absolute;
  content: '';
  background: rgba(255,255,255, 0.8);
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}



#longview h3, #tandem h3{
  font-size: 32px;
      font-weight: 300;
      font-family: Gotham;
      color: #1c1c1c;
}

#longview a, #tandem a{
  padding: 10px 30px;
  background-color: #fdbe01;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  font-size: 16px;
  color: #fff;
  font-weight: 900;
  transition: all 0.3s ease;
}

#longview a:hover, #tandem a:hover{
  background-color: #bd8f05;
}

/*#longview .overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255, 0.8);
  top: 0;
  left: 0;
}*/

#longview .wrap, #tandem .wrap {
    z-index: 10000;
    position: relative;
    color: #000;
        flex-direction: column;
}

#navbar {
  text-align: center;
  list-style: none;
  margin-top: 80px;
  z-index: 10000;
  position: absolute;
  width: 100%;
}

.navitem {
 /*make items horizontal*/
 display: inline;
 font-size: 18px;
 margin: 0 20px;
     font-family: 'Montserrat', sans-serif;
}

/*tells the computer: "if the screen is of this resolution, perform this code instead"*/
.hide {
	display: none;
}

/*  RESPONSIVE ENEAS
--------------------------------------------------------------- */
@media (max-width: 1400px) {
  .svg-shapes{background-size: contain;}
}
@media (max-width: 1200px) {
  .cards-loc-cont{display: none;}
  .bubbles-cont{display: none;}
  #niv-line{    display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; flex-direction: row;-webkit-flex-direction: row;}
}

@media (max-width: 1023px) {
  .header_title{
    flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
        text-align: center;
  }
  .nombre-cont h3, .header_title{font-size: 130px;}
  .count{font-size: 90px;}
  #formacion .wrap, #profesor .wrap, #traductor .wrap {flex-direction: column; -webkit-flex-direction: column;}
  .life-cont:nth-child(1), .life-cont:nth-child(3), .life-cont:nth-child(2){margin: 0; margin-top: 40px;}
  #formacion .wrap:nth-child(3) .life-cont:nth-child(1),
  #formacion .wrap:nth-child(3) .life-cont:nth-child(2),
  #profesor .wrap:nth-child(6) .life-cont:nth-child(1),
  #profesor .wrap:nth-child(6) .life-cont:nth-child(2){
    display: none;
  }
  #motivation, #contactar{height: 80vh;}
  #spacing{height: 20vh;}
  #formacion .wrap:not(:nth-child(1)), #formacion .wrap:not(:nth-child(2)),
  #profesor .wrap:not(:nth-child(1)), #profesor .wrap:not(:nth-child(2)),
  #traductor .wrap:not(:nth-child(1)), #traductor .wrap:not(:nth-child(2)){
    margin-top: 0
  }

  #niv-line {flex-direction: column; -webkit-flex-direction: column;    display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;}
      #navbar {text-align: right; padding-right: 30px;}
}

@media (max-width: 768px) {
  .header_title{font-size: 110px;}
  .count{font-size: 70px;}
  .navitem{margin: 0 10px;}
}

@media (max-width: 640px) {
  #navbar {display: none;}
  .nombre-cont h3{font-size: 100px;}
  .header_title {font-size: 80px;}
  #numbers .wrap{flex-direction: column;-webkit-flex-direction: column;}
  .count {font-size: 90px;}
  #welcome {
  	background: url('../images/header-mob.jpg') no-repeat center;
  	background-size: cover;
    background-attachment: initial;
    height: 100vh;
  }
}

@media (max-width: 480px) {
  .header_title span, .header_title {font-size: 60px;}
  .nombre-cont h3 {font-size: 70px; line-height: 1;}
  #traductor{padding: 100px 0}
  .me{top:20px; left: 15px;}
}

@media (max-width: 420px) {
  .header_title span, .header_title {
      font-size: 40px;
  }
  #formacion, #profesor{padding: 100px 0;}
  .life-cont h2{font-size: 32px;}
}

@media (max-width: 320px) {
  .count {font-size: 80px;}
  .heading{width: 280px; height: 280px;}
  .life-cont{width: 280px;}
  .caracts p{font-size: 14px;}
  .life-cont h2{font-size: 30px;}
}
