/* ============ footer ============ */
.footer-section { }
.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  margin-top: 3.5rem;
  margin-bottom: 2rem;
}
.footer-top-content {
  display: flex;
  justify-content: space-between;
}
.max-width-footer { display: flex; flex-direction: column; align-items: flex-start; gap: var(--foot-desc-social-gap); }
.max-width-footer p { color: var(--c-grey); max-width: var(--foot-desc-maxw); }
.team-social {
  display: flex;
  align-items: center;
  gap: var(--foot-social-gap);
}
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 800px;
  border: 1px solid var(--c-social-border);
  color: var(--c-social-ink);
}
.footer-links-component {
  display: flex;
  gap: var(--foot-cols-gap);
}
.footer-links-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--foot-col-gap);
}
.footer-links-wrapper .links-content { display: flex; flex-direction: column; gap: var(--foot-links-inner-gap); }
.footer-link-text { font-size: var(--fs-regular); line-height: var(--lh-regular); color: var(--c-ink); }
.footer-bottom-content {
  display: flex;
  gap: var(--foot-bottom-gap);
}
.footer-heading {
  font-size: 5.5rem;
  line-height: 0.95;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.03em;
}
.bottom-links {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--c-black-bar);
  color: var(--c-white);
}
.footer-bottom-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--foot-bar-pad-y) 0;
}
.credits-wrapper { display: flex; justify-content: flex-start; align-items: center; gap: 1rem; }
.credits p { font-size: var(--fs-small); line-height: 1.5; color: var(--c-credit-dim); }
.credits .fc-primary { color: var(--c-off-white); }
.footer-links { display: flex; align-items: center; gap: var(--foot-legal-gap); }
.footer-link { font-size: var(--fs-small); line-height: 1.5; color: var(--c-near-white); }
.vertical-line-footer { width: 2px; height: .9em; background-color: var(--c-vline); }

@media screen and (max-width: 991px) {
  .footer-wrapper { gap: 4rem; margin-top: 4rem; }
  .footer-top-content { flex-direction: column; gap: 3rem; }
  .max-width-footer p { max-width: none; }
  .footer-links-component { justify-content: flex-start; width: 100%; }
  .footer-bottom-content { flex-wrap: wrap; gap: 1rem; }
  .footer-heading { font-size: 4.5rem; }
}
@media screen and (max-width: 767px) {
  .footer-wrapper { margin-top: 3.5rem; }
  .footer-links-component { flex-wrap: wrap; gap: 3rem; justify-content: space-between; }
  .footer-bottom-links { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .footer-heading { font-size: 3.5rem; }
}
@media screen and (max-width: 479px) {
  .footer-wrapper { gap: 6rem; }
  .footer-links-component { flex-wrap: wrap; gap: 4rem 8rem; justify-content: flex-start; }
  .footer-bottom-links { gap: 2em; justify-content: space-between; align-items: center; }
  .credits-wrapper { flex-direction: column; order: 1; justify-content: center; align-items: center; gap: 1rem; }
  .footer-heading { font-size: 17vw; }
}
