#footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  background: linear-gradient(to top, #061f48 0%, #0a3377 100%);
}
#footer > div {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
}
#footer-copyright {
  line-height: 22px;
  color: #ffffff;
}
#footer-copyright a,
#footer-copyright > div:last-child {
  text-decoration: none;
  color: rgba(255,255,255,0.65);
}
#footer-logo {
  text-align: center;
}
#footer-logo img {
  max-width: 240px
}

@media (max-width: 1024px) {
  #footer {
    height: initial;
  }
  #footer > div {
    flex-direction: column;
    gap: 4px;
    margin: 10px 0 8px;
  }
  #footer-copyright {
    font-size: 0.75rem;
    line-height: 18px;
  }
  #footer img {
    width: 60%;
  }
}