:root {
  --color-loader: #0091D5;
  --color1: #00ABEC;
  --color-gris: #ECF0F3;
}
@font-face {
  font-family: FuturaPTBook;
  src: url(../font/FuturaPTBook.otf);
}
@font-face {
  font-family: FuturaPtHeavy;
  src: url(../font/FuturaPTHeavy.otf);
}


body{
	padding: 0;
	margin: 0;
	font-size: 16px;
	color: #3E4554;
  background: var(--color1);
  font-family: FuturaPTBook;
}
/* ////////////////////////////////////////////// */
/* ////////////////////////////////////////////// */
/* RESET */
*{
 	padding: 0;
	margin: 0;
}
a{
    text-decoration:none;
}
table {
    border-spacing: 0;
}
fieldset,img {
    border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
    font-weight: normal;
    font-style: normal;
}
strong{
    font-weight: bold;
}
caption,th {
    text-align: left;
}
h1, h2, h3, h4, h5, h6, b, strong{
 font-family: FuturaPtHeavy;
}
p, ul, li{
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
}
/* ////////////////////////////////////////////// */
/* ////////////////////////////////////////////// */
/* PRELOADER */
#preloader {
    position: fixed;
    top:0; left:0;
    right:0; bottom:0;
    background: var(--color-loader);
    z-index: 100;
}
#loader {
    width: 100vw;
    height: 50vh;
    position: absolute;
    bottom: 0;
    
    margin:auto;
    text-align: center;
    left: 0;
    right: 0;
    color:#fff;
    #border:solid 1px red;
}
/* ////////////////////////////////////////////// */
/* ////////////////////////////////////////////// */
/* MENU */

/* ////////////////////////////////////////////// */
/* ////////////////////////////////////////////// */
.text-blanco{
  color: #fff !important;
}
.text-color1{
  color: var(--color1) !important;
}
.bg-color1{
  background: var(--color1) !important;
}
.test{
  border: solid 1px red;
}
.form-content{
}
.body-content{
}
/* ////////////////////////////////////////////// */
/* ////////////////////////////////////////////// */

/* ////////////////////////////////////////////// */
/* ////////////////////////////////////////////// */
/* FOOTER */
header{
  background: #fff;
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px solid #D1D9E6;
}
main{
  background: #fff;
}
footer{
  background:var(--color1);
  color: #fff;
  padding: 15px 0;
}
header, main, footer{
  overflow: hidden;
}

.respuestas{
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 20px;
}
.respuestas .bien,
.respuestas .mal{
  display: none;
  vertical-align: middle !important;
  font-size: 1.5em;
}
.respuestas.correcta .marcada span.bien{
  display: inline-block;  
}
.respuestas.correcta .marcada{
  color: var(--color1);
  font-weight: bold;
}
.respuestas.incorrecta .marcada span.mal{
  display: inline-block;  
}
.respuestas.incorrecta .marcada{
  color: rgba(239,71,111, 1);
  font-weight: bold;
}
.respuestas.correcta{
  #border: solid 2px rgba(6,214,159, 1);
  background: rgba(6,214,159, .3);
}
.respuestas.incorrecta{
  #border: solid 2px rgba(239,71,111, 1);
  background: rgba(239,71,111, .3);
}
.respuestas.blanca{
  border: solid 2px #ccc;
  background: rgba(120,120,120, .2);
}
.respuestas .itemrespuesta > div{
  padding: 3px 5px;
  border: solid 2px transparent;
}
.marcada{

}
.ok{
  border-color:rgba(6,214,159, 1) !important;
  background: rgba(6,214,159, .3);
}
.respuestas{
  padding-bottom: 20px;
}

#final.active #respuesta > div{
  position: relative;
}
#final.active .respuestas{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#final.active .respuestas > div:last-child{
  text-align: center;
}
#final.active .respuestas .btn{
 display: inline-block;
}

/* RESPONSIVE */
@media screen and (min-width:1px) {
  header .logo{
    width: 180px;
    display: inline-block;
  }
  #inicio.active{
    text-align: center;
  }
  
  #inicio.active .formulario{
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 50;
    position: relative;
    margin:auto;
    transition: all .8s ease;
  }
  #inicio.active .formulario .info{
    padding-top: 20px;
    line-height: 1.1em;
  }
  #inicio.active .formulario .row .formItem{
    margin: 0 0 8px 0;
  }

  .slide{
    display: none;
  }
  .slide.active{
    display: block;
    padding-bottom: 50px;
    position: relative;
  }


  .slide .input-box{
    position: relative;
  }
  .slide .input-box input{
    display: none;
  }
  .slide .input-box input + label{
    transition: all .2s ease;
  }
  .slide .input-box input:checked + label{
    color: var(--color1);
  }
  .slide .input-box input:checked + label:after{
    color: #333;
  }
  /*.slide.matematica .input-box input:checked + label:after{
    color: #EF476F;
  }
  .slide.fisica .input-box input:checked + label:after{
    color: #06D6A0;
  }*/
  .slide .slide-box,
  .slide .slide-box > div{
    width: 100%;
  }


  .slide .h-pregunta{
    display: flex;
    flex-direction: column;
    
    padding-top: 20px;
  }

  .slide .num{
    display: flex;
    align-items: stretch;
  }
  .slide .num > div{
    padding: 10px 20px;
    display: inline-block;
  }
  .slide .num > div:first-child{
    background: var(--color-gris);
    border-radius: 15px 0 0 0;
  }
  .slide .num > div:last-child{
    border-radius: 0 0 15px 0;
    color:  #fff;
  }
  .slide.matematica .num > div:last-child{
    background: #EF476F;
  }
  .slide.fisica .num > div:last-child{
    background: #06D6A0;
  }
  .slide .pregunta{
    background: var(--color-gris);
    border-radius: 5px;
    padding: 25px 20px;
    margin-top: 10px;
  }

  .slide .images-box{
    position: absolute;
    width: 30%;
    padding-left: 20px;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100px);
    transition: all .4s ease;
  }

  
  .cronometro{
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 0;
    padding: 15px 20px;
    background: var(--color-gris);


    width: 100%;
    display: flex;
    align-items: center;
  }
  .cronometro div{
    display: flex;
    align-items: center;
  }
  .cronometro small{
    line-height: 1em;
    padding-left: 15px;
    visibility: hidden;
    position: absolute;
  }
  .alert1 .cronometro, .alert2 .cronometro{
    color: #fff !important;
  }
  .alert1 .cronometro small.a1{
    visibility: visible;
    transform: translateX(0);
    opacity: 1;
  }
  .alert2 .cronometro small.a2{
    visibility: visible;
    transform: translateX(0);
    opacity: 1;
  }
  .alert1 .cronometro{
    background: #D6A300;
  }
  .alert2 .cronometro{
    background: red;
  }
  .next{
    display: none;
  }
  .next.active{
    display: block;
  }
  footer .container > div{
    text-align: center;
  }
}
@media screen and (min-width:480px) {
  .respuestas .itemrespuesta > div{
    #width: 200px;
  }
}
@media screen and (min-width:528px) {
  .next.active{
    display: inline-block;
  }
}
@media screen and (min-width:641px) {
  .slide .h-pregunta{
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .cronometro{
    padding-top: 0;
  }

  .cronometro{
    position: relative;
    bottom: inherit;
    left: inherit;
    padding: 0;
    background: transparent !important;

    width: auto;
  }
  .alert1 .cronometro{
    color: #D6A300 !important;

  }
  .alert2 .cronometro{
    color: red !important;
  }
  .cronometro div.alert-box{
    flex-direction: row-reverse;
  }
  .cronometro small{
    width: 250px;
    text-align: right;
    padding-right: 55px;
  }

  .slide .slide-box{
    width: 70%;
  }
  .slide .images-box{
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }
  footer .container > div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: inherit;
  }

}
@media screen and (min-width:767px) {
  .formulario .row .col-sm-6{
    padding-right: 4px;
  }
  .formulario .row .col-sm-6 + .col-sm-6{
    padding-right: 15px;
    padding-left: 4px;
  }
}
@media screen and (min-width:991px) {
  .slide.active{
    display: flex;
    align-items: stretch;
  }
  .active > div{
    display: flex;
    align-items: center;
    height: 85vh;
  }
  #final.active > div{
    height: auto;
  }
  #final.active #respuesta > div{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;

  }
  #final.active .respuestas{
    width: 350px;
    margin-right: 10px;
  }
}
@media screen and (min-width:1199px) {  
}
@media screen and (min-width:1250px) {  
}
@media screen and (min-width:1400px) {  
}
/* corrigiendo el alto minimo de pantalla */
@media screen and (max-height:768px) and (min-width:991px) {
  .slide.active > div{
    height: 668px;
  }
}



















.panel {
  background: transparent;
}
/* ///////////--WHATSAPP--///////////*/
.btn_whatsapp {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  bottom: 50px;
  right: 40px;
  position: fixed;
  -webkit-animation: fade-in 1s ease;
  -moz-animation: fade-in 1s ease;
  -o-animation: fade-in 1s ease;
  -ms-animation: fade-in 1s ease;
  animation: fade-in 1s ease;
  z-index: 820;
}
@media screen and (max-width: 1024px) {
  .btn_whatsapp {
    right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .btn_whatsapp {
    right: 20px;
  }
}
.btn_phone_circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #23c16e;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
.btn_phone_circle span {
  font-size: 24px;
  color: #fff;
}
@media screen and (max-width: 1400px) {
  .btn_phone_circle {
    width: 45px;
    height: 45px;
  }
  .btn_phone_circle span {
    font-size: 20px;
  }
}
.btn_gota1 {
  position: absolute;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  z-index: 3;
  background-color: rgba(35,193,110,0.5);
  -webkit-animation: gota 1s infinite ease;
  -moz-animation: gota 1s infinite ease;
  -o-animation: gota 1s infinite ease;
  -ms-animation: gota 1s infinite ease;
  animation: gota 1s infinite ease;
  right: -5px;
}
@media screen and (max-width: 1400px) {
  .btn_gota1 {
    width: 55px;
    height: 55px;
  }
}
.btn_gota2 {
  position: absolute;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  z-index: 3;
  background-color: rgba(35,193,110,0.5);
  -webkit-animation: gota 1s infinite ease;
  -moz-animation: gota 1s infinite ease;
  -o-animation: gota 1s infinite ease;
  -ms-animation: gota 1s infinite ease;
  animation: gota 1s infinite ease;
  right: -10px;
}
@media screen and (max-width: 1400px) {
  .btn_gota2 {
    width: 65px;
    height: 65px;
  }
}
.icon-whatsapp-logo{
  padding: 10px;
}
@-moz-keyframes gota {
  0% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  20% {
    opacity: 0.2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    filter: alpha(opacity=20);
  }
  40% {
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
  }
  60% {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
  }
  80% {
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
  }
  100% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
}
@-webkit-keyframes gota {
  0% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  20% {
    opacity: 0.2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    filter: alpha(opacity=20);
  }
  40% {
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
  }
  60% {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
  }
  80% {
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
  }
  100% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
}
@-o-keyframes gota {
  0% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  20% {
    opacity: 0.2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    filter: alpha(opacity=20);
  }
  40% {
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
  }
  60% {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
  }
  80% {
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
  }
  100% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
}
@keyframes gota {
  0% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  20% {
    opacity: 0.2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    filter: alpha(opacity=20);
  }
  40% {
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
  }
  60% {
    opacity: 0.6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
  }
  80% {
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
  }
  100% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
}

/* ////////////////////////////////////////////// */
/* boton hamburguesa animado */
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover{
    background-color: transparent;
}
.navbar-default .navbar-toggle {
    border-color: transparent;
}
.animated-icon1{
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
.animated-icon1 span{
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.animated-icon1 span {
background: #333;
}
.animated-icon1 span:nth-child(1) {
top: 0px;
}
.animated-icon1 span:nth-child(2) {
top: 10px;
}
.animated-icon1 span:nth-child(3) {
top: 20px;
}
.animated-icon1.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
.animated-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}
.animated-icon1.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.slick-slider {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  
  #
}
.slick-slide{
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: .8;
  padding: 60px 30px;
}
.slick-current{
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -o-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  position: relative;
  z-index: 5;
  opacity: 1;
  color: #3E4554;
}
.slick-current h6{
  font-weight: bolder;
}


.b4home_slider_btns {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
}

.b4home_slider_prev,
.b4home_slider_next {
  width: 56px;
  z-index: 10;
  cursor: pointer;
}