@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');

html,
body {
  font-family: "Montserrat Thin", sans-serif;
  height: 100%;
  margin: 100;
  padding: 100;
  line-height: 1.5;

}

.iframe-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  font-size: 16px;
}





.container {
  width: 100%;
  max-width: 1000px;
  /* Ajusta el valor según tus necesidades */
  margin-left: 100px;
  /* Ajusta el valor para alinear a voluntad */
  line-height: 2;
  margin-top: 60px;
  text-align: justify;
}

@media (max-width: 768px) {
  .container {
    margin-left: 40px;
    /* Ajusta el valor según tus necesidades */
  }
}

@media (max-width: 480px) {
  .container {
    margin-left: auto;
    /* Para centrar horizontalmente */
    margin-right: auto;
    /* Para centrar horizontalmente */
    max-width: 90%;
    line-height: 1.5;

  }
}



header {
  display: none;


}

@media (max-width: 768px) {
  header {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
    padding-left: 15px;
    padding-top: 50px;
  }


}

.social-icons {
  display: flex;
  justify-content: flex-end;
}

.social-icon {
  display: inline-block;
  margin: 0 10px;
  width: 24px;
  /* Adjust the desired size */
  height: 24px;
  /* Adjust the desired size */
}

.social-icon img {
  width: 100%;
  /* Scale down to 10% of the original size */
  height: 100%;
  /* Scale down to 10% of the original size */
  transition: filter 0.3s ease;
}

.social-icon:hover img {
  filter: brightness(50%);
  /* Adjust the hover effect as needed */
}

.footer__column {
  margin-bottom: 20px;
}

.footer__svg-container {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
}

.footer__logo {
  width: 190px;
  height: auto;
  position: relative;

}

.footer__container {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 8000px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 30px 20px;
  font-family: "Montserrat Thin", sans-serif;
  z-index: 999;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  footer {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .footer {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 10px;
    width: 90%;
  }

  .footer__container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0px;
  }

  .footer__svg-container {
    display: none;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
  }

  .social-icon img {
    width: 50%;
    /* Scale down to 10% of the original size */
    height: 50%;
    /* Scale down to 10% of the original size */
    transition: filter 0.3s ease;
  }

  .social-icons {
    display: flex;
    align-items: flex-end;
    flex-direction: row;
    margin-top: 10px;
  }

  .social-icon {
    margin: 1.5px;
  }
}


.list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list__item {
  display: inline-block;
  margin-right: 80px;
}

.list__button {
  display: inline-block;
  padding: 5px 10px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
}

.list__show {
  display: none;
  position: absolute;
  background-color: #ffffff;
  padding: 40px;
  z-index: 1;
  list-style-type: none;
  letter-spacing: 2px;
  transform: translateY(-100%);
  /* Agregado: desplazar el menú hacia arriba */
}

.list__inside {
  margin-bottom: 5px;
}

.list__item--click:hover .list__show {
  display: block;
}

/* Agregado: Estilos para los enlaces dentro del menú desplegable */
.nav__link {
  color: #333;
  text-decoration: none;
}

.nav__link--inside {
  color: #333;
  text-decoration: none;
}

.list__inside:hover {
  background-color: #f2f2f2;
  /* Cambia el color de fondo al pasar el cursor sobre las opciones */
}

.p {
  font-weight: bold;
  padding-bottom: 50px;
}