
body {
  background-color: #DFFAFF;
  margin-top: 7.8rem;
}

/* Vista para pantallas grandes */
@media(min-width:768px) {
  body {
    background-color: #EFFDFF;
    margin-top: 8rem;
    background-image: url(../img/hero-back.png);
    background-position: center calc(81%);
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}



/* UTILIDADES */
.flexbox {
  display: flex!important;
}

.block {
  display: block!important;
}



/*============================
*  Barra de Progreso
============================*/
.progress-bar {
  position: fixed;
  left: 0;
  top: 7rem;
  width: 100%;
  height: .8rem;
  background-color: #C4ECFF;
}

.progreso {
  background-color: #1B85A1;
  height: 100%;
  width: 0;
  transition: all 0.4s ease;
}

/* Vista para pantallas grandes */
@media(min-width:768px) {
  .progress-bar {
    display: none;
  }
}




/*============================
*  Top Elements
============================*/
.top-elements {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 2.5rem;
}

.top-elements h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #5A8494;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
  display: none;
}

.top-elements i {
  color: #3F3F3F;
  font-size: 2.5rem;
  padding: 1rem;
}

/* Vista para pantallas grandes */
@media(min-width:768px) {
  .top-elements {
    padding: 6rem 0 3rem 0;
    max-width: 83.4rem;
    margin: 0 auto;
    width: 93%;
  }

  .top-elements h6 {
    font-size: 1.8rem;
  }

  .top-elements i {
    color: #3F3F3F;
    font-size: 2rem;
    padding: 0;
    cursor: pointer;
  }

  .top-elements i::after {
    content: "Cancelar";
    color: #3F3F3F;
    font-size: 1.8rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    margin-left: .8rem;
  }
}






/*============================
*  MAIN
============================*/
.main-contenido {
  width: 93%;
  margin: 0 auto;
  /* display: none; */
  transition: all 0.3s ease;
}



/* Vista para pantallas grandes */
@media(min-width:768px) {
  .main-contenido {
    max-width: 83.4rem;
    background-image: linear-gradient(-180deg, #F1FDFF 0%, #B1F2FE 100%);
    box-shadow: 0 2px 35px 0 rgba(0,0,0,0.13);
    border-radius: 6px;
    overflow: hidden;
    padding: 7rem 2rem;
    position: relative;
    margin-bottom: 12rem;
  }

  .main-contenido .progress-bar {
    display: block!important;
    height: 1.2rem;
    top: 0;
    left: 0;
    position: absolute;
  }
}




/*============================
*  Bienvenida
============================*/
.bienvenida {
  width: 100%;
  margin: 0 auto;
}

.bienvenida h5 {
  font-size: 3rem;
  color: #002A3C;
  text-align: center;
  margin: 0 auto;
}

.bienvenida h3 {
  font-size: 1.8rem;
  color: #1B85A1;
  text-align: center;
  line-height: 24px;
  margin: 4rem auto 0 auto;
}

.bienvenida h3 span{
  color: #00344B;
}

.bienvenida h3 span::before{
  content: ' ';
  display: block;
}

.bienvenida p {
  font-size: 1.3rem;
  color: #353535;
  text-align: center;
  line-height: 19px;
  margin: 2.5rem 0 0 0;
}

.bienvenida p span {
  font-weight: 500;
  color: #1D5B71;
}

.btn_iniciarTest {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  background-color: #155C6F;
  border-style: none;
  outline: none;
  padding: 1.4rem 4rem;
  box-shadow: 1px 1px 1px rgba(0,0,0,0.24);
  border-radius: 15px;
  font-size: 1.6rem;
  color: #FFFFFF;
  text-align: center;
  margin: 6rem auto 0 auto;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn_iniciarTest:hover {
  background-color: #00344B;
}

/* Vista para pantallas grandes */
@media(min-width:768px) {
  .bienvenida h5 {
    font-size: 4rem;
    margin-top: 0;
  }

  .bienvenida h3 {
    font-size: 2.2rem;
    line-height: 30px;
  }

  .bienvenida h3 span::before{
    content: ' ';
    display: none;
  }

  .bienvenida p {
    font-size: 1.5rem;
    line-height: 22px;
    max-width: 67rem;
    margin: 2rem auto 0 auto;
  }
}






/*============================
* Preguntas
============================*/
.preguntas-contenido {
  margin: 0 auto;
  width: 100%;
  display: none;
  opacity: 0;
}

.preguntas-contenido img {
  display: block;
  margin: 0 auto;
  width: 10rem;
}

.preguntas-contenido h3 {
  font-size: 1.6rem;
  color: #00344B;
  text-align: center;
  margin: 3rem auto 0 auto;
}

.arr-preguntas {
  margin: 3.3rem auto 0 auto;
  padding: 0;
  max-width: 40rem;
  width: 100%;
}

.respuesta {
  display: flex;
  margin: 0;
  justify-content: flex-start;
  align-items: center;
  padding: 1.6rem 1.8rem;
  background: #FFFFFF;
  box-shadow: 1px 1px 1px 0 rgba(0,0,0,0.24);
  border-radius: 11px;
  background-color: #ffffff;
  margin-top: .7rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.respuesta:first-of-type {
  margin-top: 0;
}

.inciso {
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
  color: #155C6F;
  font-weight: 700;
  padding: .4rem .7rem;
  border-radius: 12px;
  background-color: #DEF8FF;
  margin-right: 2rem;
  box-shadow: 1px 1px 1px rgba(0,0,0,0.12);
  transition: all 0.2s ease;
}

.arr-preguntas li p {
  margin: 0;
  text-align: left;
  font-size: 1.4rem;
  color: #155C6F;
  font-weight: 400;
  transition: all 0.2s ease;
}

.preguntas-contenido h4 {
  margin: 2.5rem auto 0 auto;
  text-align: center;
  font-size: 1.4rem;
  color: #00344B;
  padding: 1.3rem 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.preguntas-contenido h4:hover {
  color: #1B85A1;
}

.respuesta:active {
  background-color: #1B85A1;
}

.respuesta:active .inciso {
  color: #ffffff;
  background-color: #00344B;
}

.respuesta:active p {
  color: #ffffff;
}


/* Vista para pantallas grandes */
@media(min-width:768px) {
  .preguntas-contenido img {
    width: 6rem;
  }

  .preguntas-contenido h3 {
    font-size: 2rem;
    margin: 2.5rem auto 0 auto;
  }

  .arr-preguntas {
    margin: 5rem auto 0 auto;
  }

  .arr-preguntas li:first-of-type {
    margin-top: 0;
  }

  .preguntas-contenido h4 {
    margin: 5rem auto 0 auto;
    font-size: 1.5rem;
  }

  .respuesta:hover {
    background-color: #1B85A1;
  }

  .respuesta:hover .inciso {
    color: #ffffff;
    background-color: #00344B;
  }

  .respuesta:hover p {
    color: #ffffff;
  }
}





/*============================
*  Ayuda
============================*/
.ayuda {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 11;
}

.ayuda-contenido {
  width: 93%;
  max-height: 80%;
  background-color: #155C6F;
  box-shadow: 0 0 14px 0 rgba(0,0,0,0.50);
  border-radius: 8px;
  overflow: scroll;
  padding: 3rem 2rem;
}

.ayuda-contenido img {
  height: 5rem;
  display: block;
  margin: 0 auto;
}

.ayuda-textos {
  margin-top: 2rem;
}

.ayuda-textos h3 {
  font-size: 14px;
  color: #FFFFFF;
  line-height: 2rem;
  margin: 2rem 0 0 0 ;
}

.ayuda-textos h3:first-of-type {
  margin-top: 0;
}

.ayuda-textos p {
  margin: .6rem 0 0 0;
  font-size: 12px;
  color: #FFFFFF;
  line-height: 2rem;
}

/* Vista para pantallas grandes */
@media(min-width:768px) {
  .site-footer {
    margin-top: 0;
  }

  .ayuda {
    /* margin-top: 12rem; */
    position: relative;
    width: 100%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.0);
    z-index: 0;
    background-color: #00344B;
  }

  .ayuda-contenido {
    width: 100%;
    /* height: 100%; */
    box-shadow: 0 0 0px 0 rgba(0,0,0,0.0);
    border-radius: 0px;
    padding: 3rem 5rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: auto;
  }

  .ayuda-contenido img {
    height: 8.5rem;
    margin: 0;
  }

  .ayuda-textos {
    margin: 0;
    margin-left: 3.5rem;
  }

  .ayuda-textos h3 {
    font-size: 18px;
    line-height: 2.6rem;
    margin: 2.5rem 0 0 0 ;
  }

  .ayuda-textos h3:first-of-type {
    margin-top: 0;
  }

  .ayuda-textos p {
    font-size: 15px;
    line-height: 2.6rem;
  }
}
