
.footer-block {
  background: var(--color-primary);
  color: #fff;
  margin: 0;

  h1,h2,h3,h4,h5,h6 {
    color: white;
  }

  p, li {
    font-weight: 600;
  }
  b, strong {
    font-weight: 700;
  }
}


/* Column Layouts */
.footer-block .right-column-grid {
  column-gap: 5rem;
  row-gap: 2rem;
}
    .footer-block .right-column-grid.narrow-gap {
      column-gap: 3rem;
      justify-content: space-between;
    }
    .footer-block .right-column-grid.wide-gap {
      column-gap: clamp(2.5rem, 10vw, 10rem);
      justify-content: flex-end;
    }
.footer-block .right-column-grid .xxlarge-6,
.footer-block .right-column-grid .xlarge-6 {
  width: calc(50% - 2.5rem);
}
.footer-block .right-column-grid .xxlarge-4,
.footer-block .right-column-grid .xlarge-4 {
  width: calc(33% - 2rem);
}


.footer-block .socials {
  display: flex;
  gap: 10px;
  margin-top: 3rem;
}
.footer-block .someicon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}
.footer-block .someicon:hover {
  background: #7c788a;
}
.footer-block .someicon svg {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  width: 2.5rem;
}
.footer-block .someicon:hover svg {
  fill: #fff;
}


.footer-block .footer-text-title {
  font-size: 1.25rem;
}

.footer-block .footer-link {
  align-items: center;
  column-gap: 1.5rem;
  display: flex;
  font-size: 1.25rem;
  font-weight: 600;
  justify-content: space-between;
  width: 100%;

  span {
    line-height: 1.35;
  }
  svg {
    transition: var(--transition);
  }
}
.footer-block .footer-link:hover {
  color: #fff;

  svg {
    transform: translateX(.5rem);
  }
}
.footer-block .footer-link + .footer-link {
  margin-top: 1.125rem;
}


/* Footnotes */
.footer-block .footnotes {
  border-top: solid 1px #464449;
  color: #9b96a3;
  column-gap: 3rem;
  display: flex;
  font-size: .875rem;
  justify-content: space-between;
  margin-top: 6rem;
  padding-bottom: 1rem;
  padding-top: 2rem;
}
.footer-block .footnotes a:hover {
  color: #fff;
}

.footer-block .footnote-links {
  column-gap: 1.5rem;
  display: flex;
}



/*-----  Media Queries  -----*/

@media (max-width: 823px) {
  .footer-block {
    .right-column-grid.wide-gap {
      justify-content: flex-start;
    }
    .right-column-grid {
      .cell:first-child { display: none; }
    }

    .footer-link {
      font-size: 1.125rem;
    }
  }
}
