

body:before {
    display: block;
    content: '';
    height: 100%;
    position: absolute;
    width: 20px;
    top: 0;
    right: 0;
    background-color: #C4C4C4;
    z-index: 1;
}

header:before {
    display: block;
    content: '';
    height: 100%;
    position: absolute;
    width: 20px;
    top: 0;
    right: 0;
    background-color: #C4C4C4;
    z-index: 1;
}

body {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center -20px;
}

.fondo-home {
    position: absolute;
    top: 56px;
    left: 0;
    width: 100%;
    height: 108vh;
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
	z-index: 0;
}

header {
    display: block;
    background-color: transparent;
}

body:after {
    display: block;
    content: '';
    height: 50%;
    position: absolute;
    width: 20px;
    top: 180px;
    right: 20px;
    background-color: #92FF00;
}

.contenedor-coming-soon .margen { padding: 0 190px; }

video#video-fondo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	z-index: -10;
}

#video-intro {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.fondo-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/coming-soon.gif);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -5;
	display: none;
}


.texto-coming-soon {
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
    top: -50px;
}

.titulo-coming-soon {
    width: 100%;
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: normal;
    font-size: 65px;
    line-height: 77px;
    text-align: center;
    color: #000000;
    display: block;
    margin: 0 auto 135px;
}

.titulo-coming-soon h1 {
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: normal;
    font-size: 48px;
    line-height: 77px;
    text-align: center;
    color: #000000;
}

span.highlight-azul {
    /*background-color: #0019FF;*/
	width: 500px;
    color: #FFF;
    padding: 0px 20px 15px;
    display: inline-block;
	font-family: 'Space Mono';
	font-style: normal;
	font-weight: normal;
	font-size: 65px;
	line-height: 77px;
	text-align: center;
	position: relative;
}

span.circulo-verde {
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: bold;
    font-size: 48px;
    line-height: 77px;
    text-align: center;
    color: #000000;
    position: relative;
	display: inline-block;
}

span.circulo-verde:before {
    display: block;
    content: '';
    width: 160%;
    height: 150%;
    position: absolute;
    background-image: url(../img/circulo-verde.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    left: -28%;
    top: -25%;
}

span.circulo-verde.circulo-home:before { background-image: url(../img/circulo-verde-trading.svg); }

.contenedor-coming-soon {
    display: block;
    width: 100%;
    padding-top: 180px;
}

.wrap { display: inline-block; }

@keyframes loading {
  0% {
    width: 0;
  } 70% {
    width: 100%;
  }
}


.bg {
  background-color: #0019FF;
  animation: loading 3s linear infinite;
}

.bloque-calculadora {
    display: block;
    width: 100%;
    background-color: #000;
    color: #FFF;
    padding: 100px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

h2.titulo-calculadora {
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 53px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

p.texto-calculadora {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
    max-width: 450px;
    margin-bottom: 40px;
	position: relative;
}

p.texto-calculadora:after {
    display: block;
    content: '';
    width: 90px;
    height: 140px;
    position: absolute;
    right: 0;
    top: 40px;
    background-image: url(../img/flecha-verde.svg);
    background-size: 140px;
    background-repeat: no-repeat;
    background-position: center;
}

form#calculadora fieldset label {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 31px;
    color: #FFFFFF;
    margin: 15px 0px;
    display: block;
    width: 100%;
}

.bloque-input {
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    color: #000000;
    display: flex;
    width: 420px;
    background-color: #FFF;
    padding: 13px 15px;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.bloque-input span {
    display: inline-block;
    width: 80px;
}

.bloque-input span small { font-size: 30px; }

input.campo-calculadora {
    display: inline-block;
    width: 130px;
    border: 0px;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 26px;
    line-height: 34px;
    color: #000000;
    outline: none;
}

input.campo-calculadora::placeholder { color: #000; }

a.link-negro {
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.03em;
    color: #92FF00;
    display: block;
    margin: 60px auto 0;
    background-color: #000000;
    padding: 13px 50px 13px 20px;
    text-align: left;
    box-sizing: border-box;
    width: 380px;
    background-image: url(../img/flecha-next-verde.svg);
    background-size: 35px;
    background-repeat: no-repeat;
    background-position: 335px center;
    transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
}

a.link-negro:hover {
	background-color: #92FF00;
	color: #000;
	background-image: url(../img/flecha-next-negra.svg);
}

.contenedor-video {
    display: block;
    width: 100%;
    padding: 80px 80px 60px;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-top: 1px solid #000;
}

.bottom-video:after {
    display: block;
    content: '';
    width: 47%;
    position: absolute;
    top: -80px;
    right: 0;
    height: 120%;
    background-color: #E3E3E3;
    z-index: -1;
}

.bottom-video {
    display: block;
    width: 100%;
    border-top: 1px solid;
    padding-top: 40px;
    position: relative;
    padding-bottom: 80px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.contenedor-video h2 {
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #000000;
    display: block;
    width: 100%;
    max-width: 1280px;
    text-align: right;
    padding-bottom: 30px;
    margin: 0 auto 30px;
    background-image: url(../img/underline-azul.svg);
    background-size: 345px;
    background-repeat: no-repeat;
    background-position: right 34px;
    position: relative;
}

.contenedor-video h2 strong { font-weight: 700; }

.contenedor-video h2:after {
    display: block;
    content: '';
    width: 70px;
    height: 140px;
    position: absolute;
    right: 110px;
    top: 60px;
	background-image: url(../img/flecha-azul.svg);
    background-size: 140px;
    background-repeat: no-repeat;
	background-position: center;
}

.video {
    display: block;
    width: 850px;
    height: 450px;
    background-color: #000;
    margin: 0 auto;
	position: relative;
}

.video p {
    position: absolute;
    bottom: -22px;
    right: 0;
    font-size: 13px;
}

.bottom-video:before {
	z-index: -1;
    display: block;
    content: '';
    width: 110px;
    height: 310px;
    position: absolute;
    background-color: #92FF00;
    top: 0px;
    left: 15%;
}

.contenedor-video:before {
    display: block;
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    left: 11%;
    border-left: 1px solid;
    top: 0;
}

.texto-video {
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 58px;
    color: #000000;
    display: block;
    width: 700px;
    margin: 0 auto 20px;
}

.texto-video:before {
    width: 110px;
    height: 307px;
    background-color: #92FF00;
    display: block;
    content: '';
    position: absolute;
    top: -70px;
    left: -230px;
}

a.link-verde {
    display: block;
    width: 240px;
    background-color: #92FF00;
    border: 1px solid #92FF00;
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 21px;
    text-align: left;
    letter-spacing: 0.03em;
    color: #000;
    padding: 13px 25px;
    -webkti-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-image: url(../img/flecha-next-negra.svg);
    background-size: 26px;
    background-repeat: no-repeat;
    background-position: 91% center;
    transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    margin: 40px 0 0;
}

span.circulo-azul:before {
    display: block;
    content: '';
    width: 140%;
    height: 130%;
    position: absolute;
    background-image: url(../img/circulo-azul-quiz.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    left: -18%;
    top: -13%;
}

span.circulo-azul { position: relative; }

.contenedor-video:after {
    display: block;
    content: '';
    width: 47%;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: #E3E3E3;
    z-index: -1;
}

span.btn-verde,
input#calcular {
    display: block;
    width: 330px;
    background-color: #92FF00;
    border: 1px solid #92FF00;
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 21px;
    text-align: left;
    letter-spacing: 0.03em;
    color: #000;
    padding: 13px 25px;
    -webkti-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-image: url(../img/flecha-next-negra.svg);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: 281px center;
    transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    margin: 30px 0px;
	cursor: pointer;
}

span.btn-verde:hover,
input#calcular:hover {
	background-color: transparent;
	color: #92FF00;
	background-image: url(../img/flecha-next-verde.svg);
}

span.btn-verde:hover a,
input#calcular:hover a { color: #000; }

input#calcular {
    width: 160px;
    background-position: 111px center;
}

select.campo-select {
    font-family: 'DM Sans';
	background-color: transparent;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: #000;
    display: block;
    width: 100%;
    border: 0px;
    outline: none;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.bloque-select {
    padding: 13px 0px 13px 15px;
    background-color: #FFF;
    display: block;
    width: 420px;
    margin-bottom: 25px;
    position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.bloque-select:after {
    display: block;
    content: '';
    width: 15px;
    height: 15px;
    position: absolute;
    top: 20px;
    right: 10px;
	background-image: url(../img/flecha-select.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

p.disclaimer {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #FFFFFF;
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.bloque-gris {
    display: block;
    width: 100%;
    padding: 90px 0px;
    background-color: #FFF;
}

.bloque-gris.bloque-encontraras {
	background-image: url(../img/fondo-lista.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

.bloque-gris h2 {
    display: block;
    width: 100%;
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: 400;
    font-size: 45px;
    line-height: 43px;
    text-align: center;
    color: #000000;
    margin: 0 auto 80px;
}

.bloque-gris h2 strong {
    font-weight: 700;
    display: inline-block;
}

.cont-flex.column-2-small {
    width: 1000px;
    margin: 0 auto;
}

.row-col {
    display: block;
    width: 500px;
    margin-bottom: 75px;
	padding-left: 65px;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}

.row-col:after {
	display: block;
	content: '';
	width: 100px;
	height: 100px;
	position: absolute;
	top: 0;
	left: 0;
}

.row-col.col-1:after {
    background-image: url(../img/expertos-latinos.svg);
    background-repeat: no-repeat;
    background-position: left top;
	background-size: 50px;
}

.row-col.col-2:after {
    background-image: url(../img/en-espanol.svg);
    background-repeat: no-repeat;
    background-position: left top;
	background-size: 50px;
	top: -20px;
}

.row-col.col-3:after {
    background-image: url(../img/a-tu-ritmo.svg);
    background-repeat: no-repeat;
    background-position: left top;
	background-size: 50px;
	top: -20px;
}

.row-col.col-4:after {
    background-image: url(../img/conecta.svg);
    background-repeat: no-repeat;
    background-position: left top;
	background-size: 50px;
}

.row-col.col-5:after {
    background-image: url(../img/apoyo.svg);
    background-repeat: no-repeat;
    background-position: left top;
	background-size: 50px;
}

.row-col.col-6:after {
    background-image: url(../img/accionistas-reales.svg);
    background-repeat: no-repeat;
    background-position: left top;
	background-size: 50px;
}

.row-col.col-7:after {
    background-image: url(../img/descubrir.svg);
    background-repeat: no-repeat;
    background-position: left top;
	background-size: 50px;
}

.row-center .row-col.col-7 {
    margin: 0 auto 75px;
    text-align: left;
}

.row-col h3 {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 36px;
    color: #000000;
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.row-col p {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #000000;
	width: 90%;
	max-width: 340px;
}

.bloque-cursos {
    display: block;
    width: 100%;
    padding: 90px 0px;
}

.bloque-cursos h2 {
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: 400;
    font-size: 45px;
    line-height: 67px;
    text-align: center;
    color: #000000;
    display: block;
    width: 100%;
    margin-bottom: 50px;
}

.cont-cursos {
    display: block;
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
    text-align: center;
}

a.bloque-curso {
    display: inline-block;
    width: 40%;
    vertical-align: top;
    margin: 0 10px 40px;
}

a.bloque-curso img {
    display: block;
    width: 100%;
}

.relleno-curso {
    width: 45%;
    display: inline-block;
}

.row-col.col-6 h3 {
    background-image: url(../img/underline-accionistas.svg);
    background-position: -10px;
    background-repeat: no-repeat;
    background-size: 290px;
    padding-bottom: 10px;
}

.bloque-cursos {
    display: block;
    width: 100%;
    padding: 90px 0px;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
}

span.fondo-amarillo {
    background-image: url(../img/fondo-para-ti.svg);
    background-position: 2px 30px;
    background-repeat: no-repeat;
    background-size: 216px;
    padding: 15px;
    display: inline-block;
}

.bloque-negro p {
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 44px;
    text-align: center;
    color: #FFFFFF;
    display: block;
    width: 950px;
    margin: 0 auto 30px;
}

.bloque-negro h2 {
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: 400;
    font-size: 45px;
    line-height: 67px;
    text-align: center;
    color: #FFFFFF;
    display: block;
    width: 100%;
    margin-bottom: 36px;
}

.bloque-negro {
    display: block;
    width: 100%;
    padding: 80px 0px;
    background-color: #000;
    color: #FFF;
    border-bottom: 1px solid #92FF00;
    position: relative;
}

.bloque-negro:before {
    display: block;
    content: '';
    background-color: #92FF00;
    height: 303px;
    width: 59px;
    position: absolute;
    top: -90px;
    right: 22%;
}

.clases-en-vivo p {
	width: 100%;
    padding-left: 90px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 50px;
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 41px;
    color: #FFFFFF;
    text-align: left;
	position: relative;
}

.clases-en-vivo .col-50.pad-top {
    padding-top: 100px;
}

.clases-en-vivo h3 {
    font-family: 'Anton';
    font-style: normal;
    font-weight: 400;
    font-size: 100px;
    line-height: 100px;
    text-align: center;
    color: #92FF00;
}

span.circulo-verde-small:before {
    display: block;
    content: '';
    width: 130%;
    height: 170%;
    position: absolute;
    background-image: url(../img/circulo-verde.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    left: -12%;
    top: -27%;
}

span.circulo-verde-small { position: relative; }

a.crear-cuenta {
    display: block;
    width: 180px;
    background-color: #92FF00;
    border: 1px solid #92FF00;
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 21px;
    text-align: left;
    letter-spacing: 0.03em;
    color: #000;
    padding: 13px 25px;
    -webkti-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-image: url(../img/flecha-next-negra.svg);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: 138px center;
    transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    margin: 30px 0px 30px 70px;
    cursor: pointer;
}

.clases-en-vivo p:before {
    display: block;
    content: '';
    width: 170px;
    height: 75px;
    background-image: url(../img/flecha-azul-clases.svg);
    position: absolute;
    left: -100px;
    top: -23px;
    background-size: 170px;
    background-position: center;
    background-repeat: no-repeat;
}

.bloque-suscripcion p {
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 35px;
	margin-top: 115px;
}

.bloque-suscripcion p span {
    background-image: url(../img/underline-accionistas.svg);
    background-position: 1px 4px;
    background-repeat: no-repeat;
    background-size: 142px;
    padding-bottom: 10px;
}

.bloque-suscripcion small {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    width: 100%;
    color: #FFFFFF;
    text-align: center;
    display: block;
    margin-bottom: 50px;
}

div#columnchart_values g g text,
div#columnchart_values_update g g text {
    font-family: 'DM Sans' !important;
    color: #000 !important;
}

div#columnchart_values .google-visualization-tooltip,
div#columnchart_values_update .google-visualization-tooltip {
    font-family: 'DM Sans' !important;
    background-color: #92FF00;
    color: #000 !important;
    display: block !important;
    border: 1px solid #000;
    box-shadow: none !important;
}

.redes-footer {
    display: block;
    width: 100%;
    margin-top: 0;
    text-align: right;
}

.clases-en-vivo img {
    display: block;
    width: 100%;
}

.ticker-container {
    display: block;
    width: 100%;
    overflow: hidden;
    padding: 5px 0px;
    background: #92FF00;
    border: 1px solid #000000;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.ticker {
    display: block;
    width: 2760px;
    animation: ticker-kf 18s linear infinite;
}

.ticker p {
    display: block;
    width: 100%;
    font-family: 'Anton';
	font-style: normal;
	font-weight: 400;
	font-size: 55px;
	line-height: 100px;
	color: #000000;
}

.ticker p span { padding: 100px 0; }

@keyframes ticker-kf {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-90rem, 0, 0);
  }
}

@media screen and (max-width: 1140px) {
	
	.margen { padding: 0px 120px; }
	
	span.circulo-verde,
	span.highlight-azul,
	.titulo-coming-soon { font-size: 55px; }

	.titulo-coming-soon { 
		width: 660px;
		margin-bottom: 50px; 
	}
	
	.row-logo { margin-top: 40px; }
	.row-logo img { max-width: 100px; }
}

@media screen and (max-width: 1024px) {
	.contenedor-coming-soon { padding-top: 100px; }
	.contenedor-coming-soon .margen { padding: 0px 100px; }
	.titulo-coming-soon { width: 100%; }
	
	span.circulo-verde, 
	span.highlight-azul, 
	.titulo-coming-soon h1,
	.titulo-coming-soon { font-size: 45px; }
	
	span.highlight-azul {
		width: 400px;
		padding: 10px;
		line-height: 60px;
	}
	
	.contenedor-video { padding: 80px 30px 60px; }

	.contenedor-video h2 { 
		text-align: center;
		background-size: 245px;
		background-repeat: no-repeat;
		background-position: 83% 34px;
	}
	
	.contenedor-video h2:after { display: none; }
	.bottom-video:before { left: 0; }
	.bloque-calculadora { padding: 100px 30px; }
	
	.bloque-calculadora .cont-flex, 
	.bloque-calculadora .col-40, 
	.bloque-calculadora .col-60 {
		display: block;
		width: 100%;
	}
	
	p.texto-calculadora,
	form#calculadora {
		display: block;
		width: 100%;
		max-width: 900px;
		margin: 0 auto;
	}
	
	.bloque-select,
	.bloque-input,
	.cont-flex.column-2-small { width: 100%; }
	
	h2.titulo-calculadora {
		display: block;
		width: 100%;
		max-width: 900px;
		margin: 0 auto 15px;
	}

	p.texto-calculadora:after {
		right: 30px;
	    top: 10px;
	}
	
	.margen { padding: 0 30px; }
	
	.bloque-negro p { 
		font-size: 25px;
		line-height: 35px;
	}
	
	.clases-en-vivo .col-50.pad-top { padding-top: 50px; }
	
	.clases-en-vivo h3 {
		font-size: 70px;
		line-height: 80px;
	}
	
	.clases-en-vivo p:before { background-size: 130px; }
	
}

@media screen and (max-width: 950px) {
	
	.texto-coming-soon { top: 0px; }
	video#video-fondo { top: 15%; }
	
	.row-logo { margin-top: 20px; }
	.contenedor-coming-soon { padding-top: 10px; }
	
	.titulo-coming-soon {
		width: 100%;
		margin-bottom: 50px;
		top: 0px;
		font-size: 40px;
		line-height: 40px;
	}
	
	span.circulo-verde, 
	span.highlight-azul, 
	.titulo-coming-soon {
		font-size: 30px;
		line-height: 40px;
	}
	
	p.proximamente { font-size: 20px; }
	
	p.texto-bttom { 
		max-width: 615px;
		font-size: 13px; 
	}
	
	p.texto-bttom-small { 
		max-width: 260px;
		font-size: 13px; 
	}
	
	.texto-coming-soon {
		top: 0px;
		margin-bottom: 50px;
	}
	
	.titulo-coming-soon h1 {
		font-size: 30px;
		line-height: 40px;
	}
	
	span.circulo-verde:before {
		width: 160%;
		height: 180%;
		left: -28%;
		top: -36%;
	}
	
	span.highlight-azul { width: 250px; }
	
	a.link-negro {
		font-size: 14px;
		width: 340px;
		background-position: 300px center;
		background-size: 30px;
	}
	
	.video { width: 100%; }
	.contenedor-video h2 { font-size: 20px; }
	
	.texto-video {
		font-size: 25px;
		line-height: 37px;
	}
	
	.ticker p {
		font-size: 30px;
		line-height: 60px;
	}
	
	.ticker { width: 1570px; }
	
	.bloque-gris h2 {
		font-size: 30px;
		line-height: 40px;
	}
	
	.row-col { width: 80%; }
	.row-center .row-col.col-7 { width: 400px; }
	
	.row-col p {
		font-size: 14px;
		line-height: 22px;
	}
	
	.bloque-negro p {
		font-size: 20px;
		line-height: 29px;
		width: 83%;
	}
	
	.clases-en-vivo h3 {
		font-size: 50px;
		line-height: 60px;
	}
}

@media screen and (max-width: 800px) {
	video#video-fondo {
		top: 15%;
		height: 100%;
		width: auto;
		display: none;
	}
	
	.margen { padding: 0px 30px; }
	
	.titulo-coming-soon {
		max-width: 100%;
		width: 100%;
	}
	
	.texto-coming-soon {
		top: 0px;
		margin-top: 40px;
	}
	
	.row-logo { margin-top: 40px; }

	span.circulo-verde, 
	span.highlight-azul, 
	.titulo-coming-soon {
		font-size: 25px;
	    line-height: 35px;
	}
	
	span.highlight-azul { 
		position: relative;
	}
	
	.fondo-mobile { display: block; }
	
	.titulo-coming-soon h1 {
		font-size: 25px;
	    line-height: 35px;
	}
	
	.contenedor-coming-soon { padding-top: 0; }
	.contenedor-coming-soon .margen { padding: 0 30px; }
	
	.contenedor-coming-soon span.highlight-azul {
		position: relative;
		width: 300px;
	}

	.contenedor-coming-soon span.circulo-verde:before {
		width: 100%;
		height: 190%;
		z-index: -1;
		left: 0;
		top: -45%;
	}
	
	a.link-negro {
		width: 210px;
		background-position: 160px center;
	}
	
	.contenedor-video { padding: 40px 30px 40px 0; }
	
	.contenedor-video h2 {
		font-size: 16px;
		line-height: 23px;
		margin-bottom: 20px;
		text-align: center;
		background-size: 195px;
		background-repeat: no-repeat;
		background-position: center 52px;
	}
	
	.video {
		width: 100%;
		height: 230px;
	}
	
	.bottom-video { padding: 40px 30px; }
	
	.texto-video {
		font-size: 18px;
		line-height: 29px;
		width: 75%;
		margin: 0 0 20px;
	}
	
	.bloque-calculadora { padding: 50px 30px 50px 0; }
	
	h2.titulo-calculadora {
		font-size: 25px;
		line-height: 40px;
	}
	
	p.texto-calculadora {
		font-size: 16px;
		margin-bottom: 20px;
	}
	
	p.texto-calculadora:after {
		right: 0px;
		top: 24px;
		width: 40px;
		height: 100px;
		background-size: contain;
	}
	
	input.campo-calculadora {
		font-size: 20px;
		line-height: 20px;
	}
	
	.bloque-input { font-size: 20px; }
	.bloque-input span small { font-size: 22px; }
	
	form#calculadora span.btn-verde {
		width: 230px;
		background-position: 170px center;
	}
	
	div[dir="ltr"] { width: 100% !important; }
	p.disclaimer { font-size: 14px; }
	
	.bloque-gris h2 {
		font-size: 24px;
		line-height: 30px;
		margin-bottom: 40px;
		max-width: 80%;
	}
	
	.row-center .row-col.col-7,
	.cont-flex.column-2-small, 
	.cont-flex.column-2-small .col-50 {
		display: block;
		width: 100%;
	}
	
	.bloque-negro p {
		font-size: 18px;
		line-height: 26px;
		width: 83%;
	}
	
	.clases-en-vivo .cont-flex, 
	.clases-en-vivo .cont-flex .col-50 {
		display: block;
		width: 100%;
	}
	
	.bloque-negro p {
		font-size: 16px;
		line-height: 26px;
		width: 83%;
		text-align: center;
		padding: 0;
	}
	
	.clases-en-vivo p:before {
		background-size: 110px;
		transform: rotate(90deg);
		left: 0;
		right: 0;
		margin: auto;
		top: -100px;
	}
	
	.row-col {
		width: 80%;
		margin: 0 auto 40px;
		padding-left: 80px;
	}
	
	.row-col:after { height: 70px; }
	
	.row-center {
		width: 80%;
		margin: 0 auto 40px;
	}
	
	.row-col.col-3:after {
		background-size: 40px;
		background-position: left;
		left: 10px;
		top: -10px;
	}
	
	.row-col.col-6:after { top: -10px; }
	
	.redes-footer {
		text-align: center;
		margin-top: 20px;
	}
		
	.titulo-coming-soon span.circulo-verde.circulo-home {
		display: block;
		margin-top: 20px;
	}	
	
	a.link-verde {
		color: #92FF00;
		background-color: #000;
		border-color: #000;
		background-image: url(../img/flecha-next-verde.svg);
	}
	
	.bottom-video:after { width: 90px; }
	div#columnchart_values g g text, 
	div#columnchart_values_update g g text { font-size: 9px !important; }
	
	.bloque-negro:before { height: 130px; }
    header:before,
    body:before { display: none; }
}
