.footer {
  background: var(--gradient);
}
.footer .footer-background {
  padding: inherit;
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.footer .footer-background img {
  position: relative;
  top: -40px;
  width: 100%;
  height: auto;
}
.footer a:hover {
  font-weight: 500;
}
.footer .footer-tile {
  position: relative;
  justify-content: space-between;
}
.footer .footer-logo-container {
  margin-bottom: var(--inner-spacing-m);
}
.footer .legal-links {
  font-size: 12px;
}
.footer .transparency-link {
  display: inline-block;
  width: 100%;
}
.footer .footer-nav-tile {
  gap: 50px;
}
.footer .nav-row,
.footer .address-row,
.footer .social-row {
  width: 100%;
}
.footer .nav-row {
  flex: 1;
}
.footer .footer-nav-list {
  flex: 1;
  display: flex;
  gap: 70px;
}
.footer .footer-nav-list li {
  margin-bottom: 0;
}
.footer .address-row {
  flex: 1;
  margin-bottom: 50px;
}
.footer .social-row {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer .social-row i {
  font-size: 28px;
}
.footer .social-icon {
  margin-right: var(--inner-spacing-xs);
}
.footer .copyright {
  font-size: 12px;
  padding: 0;
  text-align: right;
}
.footer .mobile-legal-links {
  display: none;
}
@media screen and (max-width: 1024px) {
  .footer .social-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer .copyright {
    text-align: left;
  }
}
@media screen and (max-width: 885px) {
  .footer .mobile-legal-links {
    display: inline-block;
  }
  .footer .desktop-legal-links {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-background img {
    top: 40px;
  }
  .footer .footer-nav-list {
    gap: 50px;
  }
}