.hero-banner {
  position: relative;
  width: 100%;
  height: 70vh;
  background-color: #333;
  background-image: var(--hero-banner__bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.hero-banner__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 10;
  width: 90%;
}
.hero-banner__logo {
  max-width: 480px !important;
  height: auto !important;
  margin-bottom: 10px;
}
.hero-banner__overlay {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.25);
  z-index: 10;
  pointer-events: auto;
}

@media (max-width: 768px) {
  /* .logo-text-dodgeball {
    font-size: 3rem;
    text-shadow:
      -1px -1px 0 #000,
      1px -1px 0 #000,
      -1px 1px 0 #000,
      1px 1px 0 #000;
  }
  .logo-text-sa {
    font-size: 1rem;
    letter-spacing: 2px;
  } */
  .hero-banner__logo {
    max-width: 220px;
  }
}
