.hero-section {
  position: relative;
  height: calc(100vh - var(--navbar-height));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  z-index: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.hero-section > .container {
  position: relative;
  z-index: 2;
}

.hero-card {
  background: rgba(255, 255, 255, 1);
  border-radius: 1rem;
}
