.footer {
  padding: 0 var(--horizontal-spacing) 1.5rem var(--horizontal-spacing);
}

.footer .footer-awards {
  display: flex;
  justify-content: space-around;
  padding: 4rem 0;
  border-top: 1px solid var(--color-foreground-heading);
  border-bottom: 1px solid var(--color-foreground-heading);
}

.footer .footer-awards img {
  width: 7rem;
  height: 7rem;
  object-fit: contain;
  object-position: center;
}

.footer .footer-big-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  padding: 6rem 0;
}

.footer .footer-big-logo img {
  width: 6rem;
  height: 6.5rem;
  object-fit: contain;
  object-position: center;
}

.footer .footer-big-logo svg {
  width: 55rem;
}

.footer .footer-big-logo p {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.footer .footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  padding: 3rem 0;
  border-top: 1px solid var(--color-foreground-heading);
  border-bottom: 1px solid var(--color-foreground-heading);
}

.footer .footer-links .footer-cta {
  grid-column: 1 / span 2;
}

.footer .footer-links .footer-cta p {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0;
  max-width: 27rem;
}

.footer .footer-links .footer-cta .u-button-component {
  margin-top: 2rem;
  width:fit-content;
}

.footer .footer-links .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer .footer-links .footer-nav > * {
  font-size: 1.125rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.footer .footer-links .footer-info {
  display: flex;
  flex-direction: column;
}

.footer .footer-links .footer-info > * {
  font-size: 1.125rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.footer .footer-links .footer-info > *:not(:first-child) {
  margin-top: 1rem;
}

.footer .footer-links .footer-info .footer-info-social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-info-social-icons > a {
  display: block;
  width: 1rem;
  height: 1rem;
}

.footer-info-social-icons > a > svg {
  width: 100%;
  height: 100%;
}

.footer .footer-legal {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: var(--color-foreground-body);
  padding-top: 1.5rem;
}

.footer .footer-legal > p {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.3;
  letter-spacing: 0;
  opacity: 0.75;
}

.footer .footer-legal .footer-legal-links {
  display: flex;
  align-items: baseline;
  gap: 3rem;
  font-size: 1.125rem;
  line-height: 1.3;
  letter-spacing: 0;
  opacity: 0.75;
}

@media only screen and (max-width: 640px) {
  .footer .footer-awards {
    padding: 2rem 0;
  }

  .footer .footer-awards img {
    width: 15vw;
    height: 15vw;
  }

  .footer .footer-big-logo {
    gap: 2.5rem;
    padding: 2rem 0;
  }

  .footer .footer-big-logo img {
    width: 15vw;
    height: 15vw;
  }

  .footer .footer-big-logo svg {
    width: 100%;
  }

  .footer .footer-big-logo p {
    font-size: 1.25rem;
  }

  .footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem 0;
  }

  .footer .footer-links .footer-cta p {
    font-size: 7vw;
  }

  .footer .footer-links .footer-cta .u-button-component {
    margin-top: 1rem;
  }

  .footer .footer-legal {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 1rem;
    padding-top: 2rem;
  }

  .footer .footer-legal .footer-legal-links {
    justify-content: space-between;
  }
}
