footer {
  position: relative;
  z-index: 1;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: auto;
  background-color: var(--red);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s);
}
footer .footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(var(--xs) / 2) var(--s);
  flex-wrap: wrap;
}
footer .footer-links li {
  display: grid;
  place-items: center;
  font-family: "CentaurMTPro-Regular";
  color: var(--secondary);
  font-size: 14px;
}
footer .footer-links li a, footer .footer-links li span {
  color: inherit;
}
@media (max-width: 1200px) {
  footer {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: var(--xs);
  }
}
@media (max-width: 768px) {
  footer {
    gap: var(--s);
  }
  footer .footer-links {
    gap: calc(var(--xs) / 2);
    flex-direction: column;
  }
}
@media (max-width: 450px) {
  footer .footer-links li {
    font-size: 12px;
  }
}

#home footer {
  background-color: var(--primary);
}/*# sourceMappingURL=footer.css.map */