.footer {
  position: relative;
  font-size: var(--footer-font-size);
  font-weight: var(--footer-font-weight);
  background: var(--footer-background-color);
  color: var(--footer-text-color);
}
.footer .content {
  justify-content: space-between;
  padding-top: var(--footer-vertical-spacing-top);
  padding-bottom: var(--footer-vertical-spacing-bottom);
}
.footer a {
  color: var(--footer-text-color);
  text-decoration-thickness: var(--footer-nav-link-underline-height);
}
.footer a:hover {
  color: var(--footer-text-color-hover);
  text-decoration-thickness: var(--footer-nav-link-underline-height-hover);
}
.footer .footer-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--footer-tile-padding-vertical) calc(var(--footer-tile-padding-horizontal) / 2);
  margin: 0;
  width: var(--footer-tile-width);
}
.footer .footer-tile:nth-of-type(1) {
  padding-left: 0;
}
.footer .footer-tile:nth-last-of-type(1) {
  padding-right: 0;
}
.footer .footer-tile-title {
  width: 100%;
  font-family: var(--footer-title-font-family);
  font-size: var(--footer-title-font-size);
  font-weight: var(--footer-title-font-weight);
  margin-bottom: var(--footer-title-margin-bottom);
  line-height: 1;
}
.footer .logo-tile .footer-logo-container {
  position: relative;
}
.footer .logo-tile img {
  width: 100%;
  max-width: 120px;
  height: auto;
}
.footer .footer-nav-tile ul {
  margin: 0;
  list-style: none;
}
.footer .footer-nav-tile li {
  padding: 0;
  margin-top: 0;
}
.footer .footer-nav-tile li:before {
  display: none;
}
.footer .footer-nav-tile a {
  margin-bottom: 1em;
}
.footer .footer-nav-tile .sub-menu {
  display: none;
}
.footer .contact-tile .contact-line {
  margin-bottom: 20px;
}
.footer .contact-tile .address-line {
  line-height: 1.4;
}
.footer .contact-tile .social-icon {
  margin-right: 10px;
}
.footer .contact-tile .social-icon i {
  font-size: 1.5em;
}
.footer .contact-tile .social-icon:hover {
  color: var(--color1);
}
.footer .copyright {
  background: var(--copyright-background-color);
  width: 100%;
  text-align: center;
  padding: var(--copyright-vertical-padding) var(--horizontal-padding);
  color: var(--copyright-text-color);
}