footer {
  background-color: var(--the-redish-gray);
}

footer * {
  color: white !important;
}

footer > div {
  display: flex;
  justify-content: space-between;

  padding-top: 3em;
  padding-bottom: 3em;

  max-width: 1080px;
  margin: auto;
}

footer > div > div:nth-child(2) {
  display: flex;
  align-items: center;

  text-align: right;

  font-size: 0.9em;
}

#footer-wri-logo {
  width: 300px;
  height: 100%;
}

@media (max-width: 1080px) {
  footer > div {
    flex-flow: column;
    justify-content: unset;
    align-items: center;
    max-width: unset;
  }

  footer > div > div:nth-child(2) {
    text-align: center;
  }
}
