.footer__container {
  width: 100%;
  background-color: #43210a;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}

.footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media (min-width: 576px) {
  .footer__contact-list {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}

.footer__contact {
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.footer__contact svg {
  height: 20px;
}
.footer__contact span {
  flex-grow: 1;
}

/*# sourceMappingURL=footer.css.map */
