.videoWraper{
  width: 100%;
  max-height: 28rem;
  position: relative;
  overflow: hidden;
}
.videoWraper video{
  width: 100%;
  max-width: 100%;
}
.overlay{
  background-color: rgba(0, 0, 0, 0.65);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.videoWraper >h1{
  font-size: 2.5rem;
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  position: absolute;
  top: 25%;
}
.videoWraper > span{
  display: block;
  width: 70%;
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
  position: absolute;
  top: 55%;
  left: 15%;
}
.underVideo{
  display: none;
  width: 80%;
  margin: 1rem auto;
  text-align: center;
  font-size: 1.3rem;
}
article{
  width: 100%;
}
article h1, h2{
  margin: 1.5rem auto 1rem;
}
article h1{
  font-size: 2rem;
}
.textosWraper{
  width: 80%;
  margin: 1rem auto;
  text-align: center;
  letter-spacing: 0.8px;
  line-height: 1.35;
}
.textosWraper p{
  margin: 0.5rem auto;
}
.textosWraper span{
  display: block;
}
.ancla{
  padding: 1rem;
  width: max-content;
  margin:auto;
  border-bottom: solid 1px rgba(0, 0, 0, 0.45);
}
.ancla a{
  text-decoration: none;
  font-style: oblique;
  color: #F5B33F;
  position: relative;
}
.ancla a:after{
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  margin-top: 2px;
  right: 0;
  background: #fff;
  transition: all .2s ease;
  -webkit-transition: all .2s ease;
}
.ancla a:hover:after{
  width: 100%;
  left: 0;
  background: #F5B33F;
}
.encuadrado{
  width: 70%;
  margin: auto;
}
.cuadricula{
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  grid-gap: 0.5rem;
  position: relative;
}
.imagenCuadricula{
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.imagenCuadricula img{
  display: block;
  width: 100%;
}
.tituloMant{
  color: #D5581C;
}
.citaEspecial{
  font-family: 'Indie Flower', cursive;
  font-size: 2rem;
  text-align: center;
  position: relative;
  width: 70%;
  padding: 0.6rem;
}
.citaEspecial::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  border-top: solid 4px #580162;
  border-left: solid 4px #580162;
  border-radius: 4px;
  z-index: -5;
}
.citaEspecial::after{
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 70%;
  border-bottom: solid 4px #69AF25;
  border-right: solid 4px #69AF25;
  border-radius: 4px;
  z-index: -5;
}
.texto p{
  margin: 1.5rem auto;
}
.descuadricula{
  width: 80%;
  margin: auto;
}
.descuadricula p{
  padding: 1rem;
}
.listaTareas{
  text-align: left;
  display: block;
  width: 90%;
  margin: auto;
  list-style: circle;
}
.listaTareas li{
  padding: 0.5rem 0;
  border-bottom: solid 1px rgba(0, 0, 0, 0.5);
}
.cita{
  font-family: 'Indie Flower', cursive;
  font-size: 1.3rem;
  text-align: right;
  color: #fff;
  background-color: #474D9A;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.5);
}
#divisor{
  background-color: #78BAE4;
  margin: 1.5rem auto;
  padding: 2.5rem 0;
}
.llamadaAccion{
  width: 50%;
  margin: auto;
}
.llamadaAccion a{
  display: block;
  padding: 1rem;
  width: 80%;
  margin: auto;
  background-color: #E1281E;
  border-radius: 0.8rem;
  text-decoration: none;
  text-align: center;
  font-size: 1.5em;
  color: #fff;
  box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.55);
  transition: all ease 0.3s;
}
.llamadaAccion a:hover{
  background-color: #D5581C;
  box-shadow: -5px 8px 8px rgba(0, 0, 0, 0.75);
}
/* Estilos de la caja Modal */
#formulario{
  visibility: hidden;
}
.modal{
  display: block;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 10;
  position: absolute;
  top: 0;
  color: #ffffff;
}
.close{
  display: block;
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 3rem;
  color: #ffffff;
  cursor: pointer;
  transition: all ease 0.3s;
}
.close:hover{
  color: #000000;
}
.preFormulario{
  display: block;
  margin: 5rem auto 1.5rem;
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
}

@media only screen and (max-width: 720px){
  .underVideo{
    display: block;
  }
  .videoWraper >span{
    display: none;
  }
}
@media only screen and (max-width:600px){
  .llamadaAccion{
    width: 75%;
  }
}
