.site-footer {
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.site-footer__hero {
  height: 211px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.site-footer__video {
  z-index: 0;
}

.site-footer::after {
  z-index: 1;
}

.site-footer__hero,
.site-footer__bar,
.site-footer__hero-content,
.site-footer__bar-inner {
  position: relative;
  z-index: 2;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 28, 0.5),
    rgba(20, 20, 28, 0.85)
  );
}

.site-footer__hero,
.site-footer__bar {
  position: relative;
  z-index: 2;
}

.site-footer__hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.site-footer__hero h2 {
  margin: 0;
  color: var(--White, #fff);
  text-align: center;
  font-family: "Poppins", "Work Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
}

.site-footer__cta {
  display: inline-flex;
  width: auto;
  height: 34px;
  padding: 6px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 4px;
  background: #3cb4cc;
  color: #fff;
  text-align: center;
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: background 0.25s ease;
}

.site-footer__cta:hover {
  background: #36a2b7;
}

.site-footer__bar {
  height: 82px;
  background: #1c1c24;
  display: flex;
  align-items: center;
}

.site-footer__bar-inner {
  width: min(1280px, 100% - 40px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 56px;
}

.site-footer__brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.site-footer__logo {
  width: 130px;
  height: auto;
}

.site-footer__handle {
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.site-footer__links {
  display: inline-flex;
  align-items: center;
  gap: 28px;
}

.site-footer__links a {
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: transform 0.3s ease;
}

.site-footer__links a:hover {
  transform: scale(1.05);
  color: white;
}

@media (max-width: 960px) {

  .site-footer__bar {
    height: auto;
    min-height: 82px;
    padding: 24px 30px;
  }

  .site-footer__bar-inner {
    width: calc(100% - 24px);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .site-footer__links {
    flex-wrap: wrap;
    gap: 16px;
  }
}