/* Variables */
.footer {
  background-color: #000000;
  padding: 3.125rem 0 5.5rem;
}
.footer__top_row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 47.9375rem) {
  .footer__top_row {
    flex-direction: column;
    align-items: baseline;
  }
}
.footer__left_column {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
@media (max-width: 47.9375rem) {
  .footer__left_column {
    flex-direction: column;
    align-items: baseline;
    gap: 1rem;
    width: 100%;
  }
}
.footer__left_column a {
  color: white;
  text-decoration: none;
  position: relative;
  font-weight: bold;
  line-height: 1.75;
  font-size: 0.875rem;
}
.footer__left_column a:hover {
  color: #d71f2d;
}
.footer__left_column a::after {
  content: "|";
  color: #adadad;
  position: absolute;
  right: -0.625rem;
  font-family: "Akkurat Pro";
  pointer-events: none;
}
@media (max-width: 47.9375rem) {
  .footer__left_column a::after {
    content: "";
  }
}
.footer__left_column a:last-child::after {
  content: "";
}
.footer__right_column {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 47.9375rem) {
  .footer__right_column {
    gap: 1rem;
    padding-top: 1.5rem;
    width: 100%;
    flex-wrap: wrap;
  }
}
.footer__right_column a {
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.footer__right_column a i {
  font-size: 1.125rem;
}
.footer__right_column a:hover {
  color: #d71f2d;
}
@media (max-width: 47.9375rem) {
  .footer__right_column a i {
    padding: 0.5rem;
  }
}
.footer__bottom_row {
  padding: 3.875rem 0 0;
}
.footer__bottom_row p {
  font-size: 1.125rem;
  color: white;
}
.footer__absolute_content {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: -4.375rem;
}
.footer__absolute_content a {
  text-decoration: none;
  color: #d71f2d;
}
.footer .scroll_button {
  display: none;
}
@media (min-width: 62rem) {
  .footer .scroll_button {
    display: block;
    position: fixed;
    bottom: -100px;
    right: 1.875rem;
    z-index: 999;
    transition: all 0.2s ease-in-out;
    width: 5rem;
    padding: 0.3125rem;
    background-color: #d6002a;
    height: 4.375rem;
    border: 0;
    color: #ffffff;
  }
  .footer .scroll_button.active {
    transition: all 0.2s ease-in-out;
    bottom: 0;
  }
}/*# sourceMappingURL=footer.css.map */