.Footer {
  display: flex;
  flex-direction: column;
}

.Footer-imageBar {
  -o-object-fit: cover;
     object-fit: cover;
  height: 50px;
}

@media screen and (min-width: 1025.02px) {

.Footer-imageBar {
    height: auto;
}
  }

.Footer-bottom {
  padding: 64px 0 80px 0;
  background-color: var(--clr-black);
}

.Footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

@media screen and (min-width: 600.02px) {

.Footer-content {
    flex-direction: row;
    gap: var(--spacing-2xl);
}
  }

.Footer-copyright {
  width: auto;
  font-size: 0.875rem;
  font-weight: 400;
}

@media screen and (min-width: 600.02px) {

.Footer-copyright {
    width: 300px;
}
  }

.Footer-linkNavigation {
  display: flex;
  gap: 24px;
  width: 300px;
  font-size: 0.875rem;
  font-weight: 400;
}

.Footer-linkNavigation-item {
  background-color: transparent;
  color: #ffffff;
  transition: text-underline-offset 250ms ease-in-out;
  text-underline-offset: 2px;
  text-decoration-line: underline;
}

.Footer-linkNavigation-item:hover {
    text-underline-offset: 4px;
  }
