.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0);
}

@media (min-width: 1200px) {
  .bg-video--mobile {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .bg-video--desktop {
    display: none;
  }
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 80px 0;
  overflow: hidden;
}

.hero__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: 100%;
  padding-bottom: 40px;
}

.hero__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

@media (max-width: 809.98px) {
  .hero {
    padding: 80px 0 160px;
  }
}
