#footer {
  padding: 4rem 0;
  background-color: var(--color-navy);
}
#footer .image-wrapper {
  text-align: center;
}
#footer .image-wrapper img {
  width: 12rem;
  filter: brightness(10);
}
#footer ul.menu-list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 3rem 0 0;
}
@media screen and (max-width: 767px) {
  #footer ul.menu-list {
    flex-direction: column;
    gap: 2rem;
  }
}
#footer ul.menu-list li a {
  font-size: 1.4rem;
  color: var(--color-white);
  transition: opacity 0.3s ease;
}
#footer ul.menu-list li a:hover {
  opacity: 0.6;
}/*# sourceMappingURL=footer.css.map */