footer {
  padding: 2rem;
  background-color: var(--blue-500);
}

.footer-logo {
  height: 65px;
  margin: auto;
}

.footer-item {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--white-500);
  font-size: var(--fs-l);
  font-weight: var(--fw-m);
}

.footer-link {
  color: var(--white-500);
  transition: all 0.25s ease-in-out;
}

.footer-link:hover {
  color: var(--green-500);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
}

.social-icons {
  gap: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .footer-links-list {
    margin-top: auto;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-item {
    margin-bottom: 0;
    font-size: var(--fs-xl);
  }
}
