.page__footer {
  width: 100%;
  background: var(--color-surface-surface-footer);
  padding: var(--space-space-2xl) 0;
}
.footer_nav {
  display: flex;
  justify-content: space-between;
}
.footer_nav .block-system-menu-blockfooter {
  flex: 1;
  padding-right: var(--space-space-xl);
}
.page__footer a, .page__footer span {
  color: var(--color-foreground-foreground-on-active);
  text-decoration: none;
  cursor: pointer;
}
.page__footer .navbar-text,
.page__footer .nav-link {
  padding: 0;
}
.page__footer p {
  margin-top: var(--space-space-xl);
  margin-bottom: 0;
  color: var(--color-foreground-foreground-on-inverse-active);
}
.page__footer ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  padding: 0;
  gap: 24px;
  margin-bottom: 0;
}
.page__footer span:hover , .page__footer a:hover {
  color: var(--color-foreground-foreground-on-active);
}
.sociallinks img {
  width: 16px;
  height: 16px;
}
@media only screen and (max-width: 960px) {
  .footer_nav {
    flex-direction: column;
  }

  .footer_sociallinks, .primary-footer-wrapper {
    width: 100%;
  }

  .footer ul {
    gap: 16px;
  }
  .footer_nav .block-system-menu-blockfooter {
    padding-right: 0;
    padding-bottom: var(--space-space-xl);
  }
}
