/**
 * @file
 * The footer components.
 *
 * It includes styles for the footer itself and its
 * components.
 */

/**
 * Global footer rules
 */

.main__footer {
  margin-top: auto;
  background-color: var(--color-primary--1);
  position: relative;
  z-index: 1;
}
.main__footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='1' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
}
/**
 * Block footer
 */

.block-footer {
  color: var(--color-neutral--4);
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.block-footer p,
.block-footer ul,
.block-footer li,
.block-footer a {
  padding: 0;
  margin: 0;
}
.block-footer__primary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.block-footer__brand p:last-child {
  margin-top: 10px;
}
.block-footer__secondary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.block-footer__menu-primary .menu--level-0 {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
@media all and (min-width: 750px){
  .block-footer__primary,
  .block-footer__secondary {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }
  .block-footer__secondary {
    align-items: center;
  }
}
