.Footer {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  color: var(--footer-font-color);
  display: grid;
  font-size: var(--footer-font-size);
  font-weight: var(--footer-font-weight);
  column-gap: 40px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  padding: 75px 20px;
  justify-content: center;
}
@media screen and (width >= 768px) {
  .Footer {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.Footer-link {
  color: var(--footer-font-color);
  padding: 2px 0;
}
.Footer-link:hover, .Footer-link:active {
  color: var(--footer-font-color);
  text-decoration: underline;
}
.Footer-link--nowrap {
  white-space: nowrap;
}
.Footer-column {
  margin: 0.5rem 0;
}
@media screen and (width >= 1024px) {
  .Footer-column {
    margin: 0 0.5rem;
  }
}
.Footer-column > * {
  padding: 0.5rem 0;
}
.Footer-column > *:first-child {
  padding-top: 0;
}
.Footer-column > *:last-child {
  padding-bottom: 0;
}
.Footer-column:first-of-type {
  margin-left: 0;
  padding-top: 0;
}
.Footer-column:last-of-type {
  margin-right: 0;
  padding-bottom: 0;
}
.Footer-list {
  list-style-type: none;
  margin: 0;
}
.Footer-terms {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 10px;
  grid-column: span 1;
  text-align: center;
}
@media screen and (width >= 480px) {
  .Footer-terms {
    grid-column: span 3;
  }
}
.Footer-terms > * {
  margin-right: 10px;
  margin-left: 10px;
}
.Footer-terms > *:first-of-type {
  margin-left: 0;
}
.Footer-terms > *:last-of-type {
  margin-right: 0;
}
.Footer-copyright {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 20px;
  grid-column: span 1;
  text-align: center;
}
@media screen and (width >= 480px) {
  .Footer-copyright {
    grid-column: span 3;
  }
}

/*# sourceMappingURL=footer.css.map */
