@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
Html {
  scroll-behavior: smooth;
}
:root {
  --oscuro: #676767;
  --purple: #5c2472;
  --fontM: "Montserrat", sans-serif;
}
* {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: var(--oscuro);
}
body {
  font-family: var(--fontM);
  overflow-x: hidden;
  color: var(--oscuro);
  font-size: 15px;
}
.animationEntradaL {
  animation-name: animationEntradaL;
  animation-duration: 1.3s;
  animation-fill-mode: forwards;
}
.animationL,
.animationR,
.animationUp {
  opacity: 0;
}
@keyframes animationEntradaL {
  0% {
    opacity: 0;
    transform: translateX(-200px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.animationEntradaR {
  animation-name: animationEntradaR;
  animation-duration: 1.3s;
  animation-fill-mode: forwards;
}
@keyframes animationEntradaR {
  0% {
    opacity: 0;
    transform: translateX(200px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.animationEntradaUp {
  animation-name: animationEntradaUp;
  animation-duration: 1.3s;
  animation-fill-mode: forwards;
}
@keyframes animationEntradaUp {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.loader {
  width: 100vw;
  height: 100vh;
  background: #3579be;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500000;
}
.loader::after {
  content: "";
  border: 3px solid white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: absolute;
  z-index: 551000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
  animation: bola 1s linear infinite;
}
.loader::before {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  width: 70px;
  height: 10px;
  position: absolute;
  top: 80px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
  z-index: 550000;
  border-radius: 50%;
  animation: sombra 1s linear infinite;
}
@keyframes bola {
  0% {
    height: 70px;
    width: 70px;
    transform: scale(0.5) translate(-100%, -100%);
  }
  50% {
    height: 70px;
    width: 70px;
    transform: scale(1) translate(0, 0);
  }
  100% {
    height: 70px;
    width: 70px;
    transform: scale(0.5) translate(-100%, -100%);
  }
}
@keyframes sombra {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3, 1);
  }
  100% {
    transform: scale(1);
  }
}
header nav.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1350px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
}
header nav.nav-top > div a {
  margin-right: 30px;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}
header nav.nav-top > div img {
  border-left: 1px dotted black;
  padding-left: 30px;
}
header nav.nav-top > div {
  display: flex;
  align-items: center;
}
header nav.nav-menu ul {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  max-width: 1600px;
  margin: 0 auto;
  margin-top: 70px;
  margin-bottom: 20px;
}
header nav.nav-menu ul li a {
  line-height: 40px;
  position: relative;
  /* text-transform: uppercase; */
  font-family: "Montserrat";
}
header nav.nav-menu ul li a:hover {
  font-weight: 600;
}
header nav.nav-menu ul li a:hover::after {
  content: "";
  position: absolute;
  background-image: linear-gradient(90deg, #3579be 0%, #8e378c 100%);
  width: 52px;
  height: 5px;
  font-weight: 600;
  bottom: -10px;
  right: 0;
}
.header-image {
  position: relative;
}
.header-azul {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
.header-logo {
  position: absolute;
  right: 68px;
  bottom: 23px;
  z-index: 11;
}
.flecha-down {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}
.bienvenidos h1 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  color: var(--purple);
  text-align: center;
  margin-bottom: 30px;
}
.bienvenidos h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 500;
  color: var(--oscuro);
}
.bienvenidos h4 {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--oscuro);
}
.bienvenidos h4 span {
  color: var(--purple);
}

.item-bienvenido {
  text-align: center;
  font-size: 10.5px;
  margin: 0 0px;
  height: 130px;
  width: 200px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
.item-bienvenido div {
  position: absolute;
  top: 58%;
  left: 0;
  margin: auto auto;
  width: 200px;
  max-height: 0;
  height: 0;
  background: white;
  overflow: hidden;
  border-radius: 10px;
  opacity: 0;
  z-index: 20;
  transition: all 0.3s;
}
.item-bienvenido div p {
  font-size: 13px;
  padding: 10px;
  transition: all 0.3s;
}
.item-bienvenido:hover div {
  opacity: 1;
  max-height: 346px;
  height: auto;
  border: 1px solid var(--purple);
  transition: max-height 1.5s;
}
.item-bienvenido:hover > img {
  transform: scale(0.5);
  margin-top: -20px;
  margin-bottom: -20px;
  transition: all 0.3s;
}
.item-bienvenido > img {
  transition: all 0.3s;
}
.iconos-bienvenidos {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  /* margin-bottom: 30px; */
}
.ayuda-up button {
  width: 207px;
  height: 41px;
  background: var(--purple);
  box-shadow: 2px 2px 2px 1px rgb(0 0 0 / 20%);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-left: 7px;
}

.video,
.inscribirte {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fafafa;
  height: 500px;
}
.video.nuevo {
  background: none;
}
.video iframe,
.inscribirte iframe {
  width: 700px;
  height: 400px;
}
.video h1,
.inscribirte h1 {
  font-size: 30px;
  color: var(--purple);
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: uppercase;
}
footer {
  position: relative;
  height: 500px;
  text-align: center;
}
.footer-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
footer h1 {
  font-size: 30px;
  color: var(--purple);
  font-weight: 400;
  margin-bottom: 20px;
  margin-top: 30px;
}
footer p {
  font-size: 18px;
  font-weight: 400;
  width: 50%;
  margin: 0 auto;
  margin-bottom: 30px;
}
footer div.footer-telefono {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--purple);
  width: auto;
  margin-bottom: 20px;
  line-height: 60px;
}
footer div.footer-telefono h4 {
  border-bottom: 2px solid var(--purple);
}
footer div.footer-ws {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--purple);
  margin-bottom: 20px;
}
.logo-footer {
  margin-top: 30px;
}
.beneficios {
  height: 900px;
  width: 60%;
  margin: 0 auto;
}
.beneficios-item {
  width: auto;
  position: relative;
  width: 379px;
}
.beneficios-item p {
  position: absolute;
  top: 15px;
  right: 9px;
  color: white;
  width: 55%;
  font-size: 18px;
}
.beneficios-item p.corto {
  position: absolute;
  top: 24px;
  right: 9px;
  color: white;
  width: 55%;
  font-size: 18px;
}
.beneficios-item p.largo {
  position: absolute;
  top: 10px;
  right: 9px;
  color: white;
  width: 55%;
  font-size: 16px;
}
.container-beneficios {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.beneficios h1 {
  font-size: 30px;
  color: var(--purple);
  font-weight: 400;
  text-align: center;
  width: 55%;
  margin: 0 auto;
  margin-bottom: 70px;
  text-transform: uppercase;
}
.como-inscribo {
  height: 900px;
  background: #fafafa;
}
.como-inscribo h1 {
  font-size: 30px;
  text-align: center;
  color: var(--purple);
  font-weight: 400;
  width: 31%;
  margin: 0 auto;
  padding-top: 40px;
  text-transform: uppercase;
}
.como-inscribo h3 {
  font-size: 18px;
  text-align: center;
  font-weight: 400;
  width: 50%;
  margin: 0 auto;
  padding-top: 40px;
}
.como-inscribo h3 b {
  font-size: 18px;
  text-align: center;
  color: var(--purple);
  font-weight: 600;
  width: 50%;
  margin: 0 auto;
  padding-top: 40px;
}
.item-pasos > img {
  margin-right: 30px;
  width: 71px;
  height: 137px;
}
.item-pasos {
  display: flex;
}
.item-pasos > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.item-pasos > div h1 {
  font-size: 24px;
  color: var(--purple);
  text-align: left;
  font-weight: 400;
  padding-top: 0px;
  text-transform: uppercase;
  border-bottom: 3px solid var(--purple);
  width: 80%;
  margin: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}
.item-pasos > div p {
  font-size: 15px;
  font-weight: 400;
  padding-top: 0px;
  width: 96%;
  margin: 0;
  line-height: 20px;
}
.item-pasos > div > div {
  display: flex;
  align-items: flex-start;
}
.item-pasos > div > div img {
  margin-right: 5px;
  margin-top: 5px;
}
.header-fondo {
  height: 429px;
  object-fit: cover;
  width: 100%;
  display: none;
}

.swiper-container {
  width: 100%;
  height: 429px;
  z-index: 12;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-slide > iframe {
  /* margin-left: -410px; */
  width: 640px;
  height: 360px;
  position: relative;
  z-index: 12;
  background-color: none;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0 !important;
}
.container-pasos {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  margin-top: 10px;
  /* flex-wrap: wrap; */
  flex-direction: column;
  align-items: center;
}
.item-pasos {
  width: 50%;
  margin-top: 30px;
  margin-left: 50px;
}
.item-pasos > a > button,
.contactoBtn > a > button {
  width: 341px;
  height: 71px;
  background: var(--purple);
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 24px;
  margin-left: 100px;
}
.contactoBtn > a > button {
  margin-left: 0;
}
.item-pasos button:hover,
.contactoBtn button:hover {
  transform: scale(1.03);
}
.item-pasos > a > button,
.contactoBtn > a > button {
  color: white;
}
.item-pasos > button i,
.contactoBtn > button i {
  margin-left: 10px;
}
.inscribirte {
  background: none;
  height: 550px;
}
.inscribirte div {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.principales-coberturas h1 {
  text-align: center;
  margin-top: 80px;
  font-size: 30px;
  color: var(--purple);
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.container-coberturas {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  margin-top: 40px;
  flex-wrap: wrap;
}
.item-coberturas {
  display: flex;
  align-items: flex-start;
  width: 50%;
  margin-top: 40px;
}
.item-coberturas > p {
  font-size: 23px;
  color: var(--purple);
  width: 70%;
}
.item-coberturas > p span {
  font-size: 18px;
  color: var(--oscuro);
}
.item-coberturas > img {
  margin-top: 5px;
  margin-right: 10px;
}
.principales-coberturas .btn-cobertura {
  width: 652px;
  height: 77px;
  background: var(--purple);
  border-radius: 60px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
}
.principales-coberturas .btn-cobertura:hover {
  transform: scale(1.03);
}
.principales-coberturas a {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.principales-coberturas a button {
  background: none;
  border: none;
  color: white;
  font-size: 25px;
  font-weight: 400;
  margin-right: 20px;
  cursor: pointer;
}
.principales-coberturas a i {
  color: white;
  font-size: 25px;
}
.principales-coberturas a button p {
  font-weight: 400;
  font-size: 25px;
}
.principales-coberturas a button h5 {
  font-weight: 600;
  font-size: 25px;
}
.header-btns {
  width: 265px;
  height: 270px;
  position: absolute;
  top: 16px;
  right: 50px;
  background: none;
  z-index: 20;
}
.header-item {
  position: relative;
  height: 132px;
  width: 100%;
  background-image: linear-gradient(
    180deg,
    rgba(88, 36, 108, 0.3) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.5s;
}
.header-item button {
  margin-top: 10px;
  width: 243px;
  height: 55px;
  background: #4e7cdd;
  border: none;
  color: white;
  font-size: 15px;
  box-shadow: 2px 2px 20px 1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-family: "Montserrat";
  font-weight: 600;
}
.header-item button.morado {
  background: #7b177f;
}
.header-item button section {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: opacity 0.3s;
}
.header-item button:hover section {
  opacity: 1;
  background: #7b177f;
  padding: 20px 20px;
  top: -3px;
  left: -54%;
  visibility: visible;
  transition: opacity 0.3s;
  box-shadow: 1px 1px 8px -1px black;
}
.header-item button section p {
  margin: 0;
  width: auto;
  font-size: 15px;
}
.header-item p {
  color: white;
  width: 243px;
  font-size: 11.5px;
  margin-top: 10px;
}
.preguntas-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.preguntas-container h1 {
  color: var(--purple);
  font-weight: 400;
  font-size: 35px;
  padding-bottom: 80px;
  text-align: center;
}
.list-item {
  color: var(--oscuro);
  transition: 0.3s ease;
  margin: 15px;
}
.list-title {
  font-size: var(--font-20);
  transition: 0.3s ease;
  cursor: pointer;
  margin: 5px 0;
}
.list-title > i {
  display: block;
  float: right;
  line-height: 50px;
  margin-right: 30px;
}
.list-item > h2 {
  font-size: 20px;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 400;
  line-height: 50px;
  border: 1px solid var(--purple);
  padding-left: 20px;
  margin-bottom: 20px;
}
.list-title.active {
  transition: 0.3s ease;
  background: rgba(92, 36, 114, 0.1);
}
.list-content {
  overflow: hidden;
  max-height: 0px;
  transition: 0.3s ease;
  font-weight: 600;
  width: 90%;
  padding-left: 20px;
  font-size: 16px;
  margin-bottom: 10px;
}
.list-content b {
  color: var(--purple);
}
.list-content i {
  font-size: 12px;
}
.active + .list-content {
  max-height: 1000px;
  transition: 0.3s ease;
}
.boton-menuBurguerLeon {
  display: none;
  cursor: pointer;
  border: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
}
.boton-menuBurguerLeon:focus {
  outline: none;
}
.boton-menuBurguerLeon span {
  display: block;
  background-color: #4e7cdd;
  height: 5px;
  width: 30px;
  margin: 4px auto;
  border-radius: 2px;
  opacity: 1;
  transition: all 1s;
}
.br-1.cruz {
  transform: rotate(-45deg) translate(-12px, -1px);
  transition: transform 1s;
  background: white;
}
.br-2.cruz {
  opacity: 0;
  transition: opacity 1s;
}
.br-3.cruz {
  transform: rotate(45deg) translate(-14px, 0px);
  transition: transform 1s;
  background: white;
}
.container-inputincor {
  position: absolute;
  margin-top: 10px;
  width: 243px;
  height: 55px;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 0);
  transition: all 0.5s;
}
.container-inputincor.active {
  transform: translate(0, 117px);
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
}
.container-inputincor > input {
  width: 234px;
}

.header-item.incorporacion.active {
  height: 206px;
  transition: all 0.5s;
}
.header-item button:hover {
  transform: scale(1.03);
}
.header-item button.continuarbtn {
  height: 24px;
  font-size: 12px;
  margin-top: 5px;
  font-weight: 400;
  font-family: Montserrat;
}
.header-item.acceso.active {
  height: 109px;
}
.boton-vermas {
  display: flex;
  justify-content: center;
}
#preguntasBtn {
  cursor: pointer;
  text-decoration: underline;
  margin-bottom: 30px;
}
.list-container {
  max-height: 380px;
  overflow: hidden;
  transition: all 0.5s;
}
.list-container.active {
  max-height: 2415px;
  transition: all 0.5s;
}

@media (min-width: 1025px) {
  .header-btns {
    width: 350px;
  }
  .header-item button {
    width: 318px;
  }
  .header-item p {
    width: 318px;
    font-size: 13px;
  }
  .container-inputincor {
    width: 318px;
  }
  .container-inputincor > input {
    width: 318px;
  }
  .item-bienvenido {
    font-size: 13px;
  }
}
@media (max-width: 1440px) {
  .swiper-slide > iframe {
    margin-left: -380px;
  }
}
@media (max-width: 1024px) {
  .swiper-slide > iframe {
    margin-left: -369px;
  }
  .header-item button:hover section {
    left: -69%;
  }
  .list-container {
    max-height: 355px;
  }
  #preguntasBtn {
    margin-top: 30px;
  }
  .item-pasos > a > button {
    margin-left: 32px;
  }
  .inscribirte .hidden {
    display: none;
  }
  .linea {
    width: 100%;
  }
  header nav.nav-top {
    max-width: 950px;
  }
  .beneficios {
    width: 85%;
  }
  .como-inscribo h1 {
    width: 46%;
  }
  .container-pasos {
    max-width: 900px;
  }
  .container-coberturas {
    max-width: 900px;
  }
  .list-item > h2 {
    font-size: 14px;
  }
  .list-content {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .swiper-slide > iframe {
    margin-left: -282px;
    width: 412px;
    margin-top: -132px;
    height: 232px;
  }
  .list-container {
    max-height: 374px;
  }
  .item-pasos > a > button {
    margin-left: -22px;
  }
  .boton-menuBurguerLeon {
    display: block;
    position: absolute;
    top: 51px;
    right: 25px;
    z-index: 101;
  }
  header nav.nav-menu ul {
    transform: translate(100%, 0);
    z-index: 100;
    position: absolute;
    top: 0;
    right: 0;
    flex-direction: column;
    background: #4e7cdd;
    margin-top: 0;
    color: white;
    text-align: right;
    width: 0;
    overflow: hidden;
    height: 100vh;
    justify-content: flex-start;
    padding-top: 103px;
    opacity: 0;
    transition: all 0.5s;
  }
  .menu.active {
    transform: translate(0, 0);
    width: 290px;
    opacity: 1;
    transition: all 0.5s;
  }
  header nav.nav-menu ul li a {
    color: white;
    margin-right: 42px;
  }
  header nav.nav-top > div {
    display: none;
  }
  header nav.nav-top {
    max-width: 700px;
  }
  .beneficios {
    width: 100%;
    margin-left: -30px;
  }
  .como-inscribo h1 {
    width: 60%;
  }
  .item-pasos > img {
    margin-right: 0;
  }
  .container-pasos {
    max-width: 700px;
  }
  .item-pasos > button,
  .contactoBtn > button {
    margin-left: 0px;
  }
  .como-inscribo {
    height: 970px;
  }
  .container-coberturas {
    max-width: 700px;
  }
  .item-coberturas > p {
    font-size: 16px;
  }
  .item-coberturas > p span {
    font-size: 14px;
  }
  .list-title > i {
    display: none;
  }
  .list-item > h2 {
    line-height: 18px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  footer p {
    width: 89%;
  }
  .beneficios h1 {
    width: 62%;
  }
  .beneficios-item p {
    right: 16px;
  }
}
@media (max-width: 427px) {
  .swiper-container {
    height: auto !important;
  }
  .header-item button:hover section {
    top: 61px;
    left: 0;
    right: 0;
  }
  .header-image {
    height: 668px;
  }
  .header-azul {
    bottom: 0;
    top: unset;
  }
  .header-btns {
    bottom: 138px;
    top: unset;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  .swiper-slide > iframe {
    margin-left: 0px;
    width: 100%;
    height: 211px;
    margin-top: 0;
  }
  /* .header-item button:hover section {
    top: 47px;
    left: 0;
    width: 150px;
    right: 0;
    margin: auto;
  } */
  .item-bienvenido div {
    top: 10%;
  }
  .list-container {
    max-height: 543px;
  }
  .item-pasos > a > button {
    margin-left: 0;
    width: 300px;
  }
  footer h1 {
    padding: 0 10px;
  }
  .flecha-down {
    margin-bottom: 10px;
  }
  header nav.nav-top img {
    margin-left: 10px;
  }
  .bienvenidos h1,
  .bienvenidos h2,
  .video h1,
  .inscribirte h1,
  .beneficios h1,
  .como-inscribo h1,
  .principales-coberturas h1,
  .preguntas-container h1,
  .item-pasos > button,
  footer h1 {
    font-size: 20px;
  }
  .bienvenidos h4 {
    font-size: 16px;
  }
  .iconos-bienvenidos {
    flex-direction: column;
    align-items: center;
  }
  .item-bienvenido {
    height: 130px;
  }
  .beneficios h1 {
    width: 80%;
  }
  .beneficios {
    margin: 0;
    height: 1531px;
  }
  .container-beneficios {
    margin-left: -53px;
  }
  .beneficios-item p {
    font-size: 17px;
  }
  .como-inscribo h1 {
    width: 89%;
  }
  .como-inscribo h3 {
    font-size: 16px;
    width: 90%;
  }
  .container-pasos {
    flex-direction: column;
    margin-left: 40px;
  }
  .como-inscribo {
    height: 1012px;
  }
  .item-pasos {
    width: 85%;
    margin-left: -50px;
  }
  .container-coberturas {
    flex-direction: column;
    align-items: center;
  }
  .item-coberturas {
    width: 90%;
  }
  .principales-coberturas .btn-cobertura {
    width: 95%;
  }
  .principales-coberturas a button p,
  .principales-coberturas a button h5 {
    font-size: 16px;
  }
  .principales-coberturas a i {
    display: none;
  }
  .principales-coberturas a button {
    margin-right: 0;
  }
  .preguntas-container h1 {
    padding-bottom: 30px;
  }
  footer p {
    font-size: 14px;
  }
  .video iframe,
  .inscribirte iframe {
    width: 100%;
    height: auto;
  }
  .inscribirte,
  .video {
    height: 250px;
  }
}
