.footer2 {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 28px;
  font-family: 'Work Sans';
  overflow: hidden;
}

.footer-top {
  position: relative;
  width: 100%;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Video Background */
.footer-video {
  width: 100%;
  height: 96%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 70%;
  z-index: 0;
}

/* Text & CTA */
.footer-copy {
  position: relative;
  z-index: 1;
  padding: 40px 40px 20px 40px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-heading-copy {
  font-weight: 700;
  font-size: 28px;
}

.footer-body-copy {
  font-size: 16px;
  line-height: 24px;
  max-width: 580px;
  color: white;
}

.footer-buttons {
  z-index: 1;
}

.stay-up-to-date-button {
  border: none;
  background: transparent;
  color: white;
  font-family: var(--font-work-sans);
  font-size: 12px;
  font-weight: 500;
}

/*.stay-up-to-date-button:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
}*/

/* Footer Base (second section) */
.footer-base {
  background-color: #1c1c24;
  padding-top: 32px;
  padding-bottom: 32px;
  text-align: center;
  color: white;
  font-size: 14px;
  z-index: 2;
  position: relative;
  width: 100%;
}

.links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-left: 20px;
  padding-right: 20px;
}

.links a {
  display: inline-block;
  /* needed for transform to apply cleanly */
  transition: transform 0.2s ease, translate 0.2s ease;
}

.links a:hover {
  transform: translateY(-3px) scale(1.05);
}



.links a,
.footer-text-copyright {
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}

.logo-footer-supernova {
  display: inline-block;
  width: 178px;
  height: 13px;
  background-image: url(https://supernovawebfiles.blob.core.windows.net/sn-app-icons/supernova-header-logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
}