/* Valiables */
/* Mixins */
footer {
  background-color: var(--footer-bg);
  padding-block: 4rem 1rem;
  margin-top: 4rem;
}
footer .footer {
  width: 100%;
  max-width: 750px;
  text-wrap: balance;
  margin-inline: auto;
  padding-inline: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  footer .footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
footer .footer .footer-text {
  font-size: 0.8em;
}
footer .footer .footer-text p {
  margin-bottom: 1rem;
}
footer .footer__nav {
  border-top: 1px solid var(--txt-muted);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  footer .footer__nav {
    border-top: none;
    border-left: 1px solid var(--txt-muted);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding-top: 0;
    padding-left: 2rem;
  }
}
footer .copy {
  font-size: 0.8em;
  text-align: center;
  margin-top: 4rem;
}/*# sourceMappingURL=footer.css.map */