@charset "UTF-8";
footer#footer {
  background-color: var(--c1);
  border-top: 1px var(--white) solid;
  color: var(--white);
  font-family: var(--f1);
  /* "Posterama 2001 W01 Bold"; */
  font-size: 12px;
  padding: 0px 60px;
  display: flex;
  align-items: center;
}
footer#footer .footer-wrapper {
  width: 100%;
  /* Nombre y derechos reservados */
  /* Enlaces a politicas */
}
footer#footer .footer-wrapper .company-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer#footer .footer-wrapper .company-policies a {
  color: var(--white);
  font-family: var(--f2);
  /* "Twentieth Century"; */
  text-decoration: none;
  margin-right: 16px;
}
footer#footer .footer-wrapper .company-policies a:last-child {
  margin-right: 0px;
}
/* =================================== */
/*            MEDIA QUERIES            */
/* =================================== */
@media (max-width: 768px) {
  footer#footer {
    padding: 0px 24px;
    /* Padding tablet vertical y móvil vertical en la web 24px */
  }
  footer#footer .footer-wrapper {
    /* Nombre y derechos reservados */
  }
  footer#footer .footer-wrapper .company-container {
    justify-content: center;
  }
}
