footer {
  background-color: var(--footer-bg);

  display: flex;
  justify-content: center;
  gap: 7rem;
  padding: 3rem 5rem;
  padding-bottom: 5rem;
}

footer div {
  flex: 1;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

footer h3 {
  color: var(--orange-fading);
  font-size: 2rem;
}

footer img {
  max-width: 20px;
}

footer span {
  display: flex;
  align-items: center;
  gap: .5rem;
}

@media (max-width: 700px) {
  footer {
    gap: 4rem;
    padding: 2rem;
  }

  footer h3 {
    font-size: 1.5rem;
  }

  footer div {
    gap: .5rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  footer {
    flex-direction: column;
    align-items: center;
  }

}