footer {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  gap: 0rem;
  border-top: 1px solid var(--bg-2);
  padding-top: 1.5rem;
}

footer ul {
  margin-left: 0px;
  margin-bottom: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 0.8rem;
  line-height: 1.6;
  align-items: baseline;
  gap: 0.5rem;
}

footer ul h3 {
  margin-right: 1rem;
}

footer a {
  text-decoration: none;
}

footer h3 {
  margin-bottom: 0.5rem;
  color: var(--tx-3);
}

@media screen and (max-width: 400px) {
  footer {
    flex-direction: column !important;
    gap: 1rem;
  }
}
