#footer {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--c-secondary);
}
#footer #footer-img {
  display: none;
}
#footer #footer-content {
  position: relative;
  width: 100%;
  padding: 2rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--c-primary);
  overflow: hidden;
}
#footer #footer-content::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 7rem;
  height: 7rem;
  background-image: url("../assets/img/footer.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.18;
  pointer-events: none;
}
#footer #footer-content .footer-top,
#footer #footer-content .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
#footer #footer-content .footer-bottom {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 60, 105, 0.25);
}
#footer #footer-content h1 {
  font-size: 1.75rem;
}
#footer #footer-content h1 a {
  color: var(--c-secondary);
}
#footer #footer-content h1 a:hover {
  color: var(--c-white);
}
#footer #footer-content .footer-social {
  display: flex;
  gap: 1.5rem;
}
#footer #footer-content .footer-social a {
  color: var(--c-secondary);
  font-weight: 600;
  font-size: 0.95rem;
}
#footer #footer-content .footer-social a:hover {
  color: var(--c-white);
}
#footer #footer-content .footer-copyright {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-secondary);
}
#footer #footer-content .footer-copyright a {
  color: var(--c-secondary);
  font-weight: 600;
}
#footer #footer-content .footer-copyright a:hover {
  color: var(--c-white);
}
#footer #footer-content .footer-legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#footer #footer-content .footer-legal a {
  color: var(--c-secondary);
  font-size: 0.8rem;
  font-weight: 500;
}
#footer #footer-content .footer-legal a:hover {
  color: var(--c-white);
}
#footer #footer-content .footer-legal .footer-separator {
  color: var(--c-secondary);
  font-size: 0.8rem;
  user-select: none;
}

@media only screen and (max-width: 600px) {
  #footer #footer-content {
    padding: 1.5rem 1.5rem;
    gap: 0.75rem;
  }
  #footer #footer-content h1 {
    font-size: 1.25rem;
  }
  #footer #footer-content .footer-top {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  #footer #footer-content .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
