/**
  * Site Footer component style.
  */
.c-site-footer {
  background-color: var(--c-grayscale-off-white);
}
.c-site-footer ul {
  list-style: none;
  margin: 0;
}
.c-site-footer .site-footer__container {
  display: flex;
  flex-direction: column;
  padding-top: 3.88rem;
  padding-bottom: 4.72rem;
  margin: 0 auto;
}
@media (min-width: 75rem) {
  .c-site-footer .site-footer__container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: var(--s-4xl);
  }
}
.c-site-footer .site-footer__column {
  flex-basis: 50%;
}
.c-site-footer .site-footer__column--right {
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 75rem) {
  .c-site-footer .site-footer__column--right {
    justify-content: flex-start;
  }
}
.c-site-footer .site-footer__branding {
  display: flex;
  flex-basis: 50%;
  flex-direction: column;
  grid-column: 1/span 3;
}
@media (min-width: 40rem) {
  .c-site-footer .site-footer__branding {
    flex-direction: row;
    margin-bottom: 0;
  }
}
@media (min-width: 75rem) {
  .c-site-footer .site-footer__branding {
    display: block;
  }
}
@media (min-width: 75rem) {
  .c-site-footer .site-footer__navigation {
    display: flex;
    grid-column: 4/span 9;
    gap: calc(var(--s-4xl) / 2);
  }
  .c-site-footer .site-footer__navigation > div:not(.divider) {
    flex-basis: 100%;
  }
}
.c-site-footer .site-footer__contact {
  margin-top: 0.55rem;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media (min-width: 48rem) {
  .c-site-footer .site-footer__contact {
    margin-top: 1.66rem;
    font-size: 1rem;
  }
}
.c-site-footer .site-footer__contact a {
  color: var(--c-grayscale-dark);
}
.c-site-footer .site-footer__social-networks {
  display: flex;
  gap: var(--s-3xl);
  width: 100%;
  padding-top: var(--s-lg);
  margin-top: var(--s-lg);
  border-top: 1px solid var(--c-grayscale-lighter);
}
@media (min-width: 40rem) {
  .c-site-footer .site-footer__social-networks {
    width: 250px;
    margin-top: var(--s-lg);
    border-top: none;
  }
}
@media (min-width: 48rem) {
  .c-site-footer .site-footer__social-networks {
    margin-top: var(--s-4xl);
  }
}
@media (min-width: 75rem) {
  .c-site-footer .site-footer__social-networks {
    width: 200px;
    padding-top: var(--s-5xl);
    margin-top: var(--s-5xl);
    border-top: 1px solid var(--c-grayscale-lighter);
  }
}
.c-site-footer .site-footer__link {
  display: block;
  margin-bottom: 1rem;
  font-weight: 400;
  color: var(--c-grayscale);
}
.c-site-footer .site-footer__link:hover, .c-site-footer .site-footer__link:focus {
  color: var(--c-grayscale-black-hover);
}
.c-site-footer .site-footer__link:active {
  color: var(--c-grayscale-black-active);
}
.c-site-footer .site-footer__link--bold {
  font-weight: 700;
}
.c-site-footer .site-footer__accordion {
  font-size: var(--text-md);
}
.c-site-footer .site-footer__accordion-list {
  margin-left: 0;
  list-style: none;
}
.c-site-footer .site-footer__accordion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 40rem) {
  .c-site-footer .site-footer__accordion-item {
    margin-bottom: 1rem;
  }
}
.c-site-footer .site-footer__accordion-item .site-footer__link {
  margin-bottom: 0;
}
.c-site-footer .site-footer__accordion-content {
  display: none;
}
@media (min-width: 40rem) and (max-width: 75rem) {
  .c-site-footer .site-footer__accordion-content {
    column-count: 2;
    column-gap: 2rem;
  }
}
@media (min-width: 40rem) {
  .c-site-footer .site-footer__accordion-content {
    display: block;
  }
}
@media (min-width: 75rem) {
  .c-site-footer .site-footer__accordion-content {
    column-count: 1;
  }
}
.c-site-footer .site-footer__accordion-content.is-active {
  display: block;
  padding-left: 1rem;
  margin-top: 1rem;
}
.c-site-footer .site-footer__button {
  position: relative;
  display: grid;
  align-items: center;
  width: 2rem;
  height: 2rem;
  color: var(--c-grayscale);
  cursor: pointer;
  background: none;
  border: none;
}
@media (min-width: 40rem) {
  .c-site-footer .site-footer__button {
    display: none;
  }
}
.c-site-footer .site-footer__button--flipped {
  transform: rotateX(180deg);
}
.c-site-footer .divider {
  height: 1px;
  margin: 1rem 0;
  border-bottom: 1px solid var(--c-grayscale-lighter);
}
@media (min-width: 40rem) and (max-width: 75rem) {
  .c-site-footer .divider {
    margin: 2rem 0;
  }
}
@media (min-width: 89rem) {
  .c-site-footer .divider {
    margin: 1.5rem 0;
  }
}
.c-site-footer .divider:first-child {
  display: block;
}
@media (min-width: 75rem) {
  .c-site-footer .divider:first-child {
    display: none;
  }
}
@media (min-width: 40rem) and (max-width: 75rem) {
  .c-site-footer .divider:last-of-type ~ .site-footer__link {
    float: left;
  }
  .c-site-footer .divider:last-of-type ~ .site-footer__link + .site-footer__link {
    margin-left: 2rem;
  }
}