.path-frontpage main .container,
.path-frontpage .layout-main-wrapper .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh; /* or a fixed height like 600px */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.hero-banner .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* adjust alpha for darkness */
  z-index: 1;
}

.hero-banner-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 0 2rem;
}

.hero-banner-content h1 {
    font-size: 84px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.hero-banner-content p {
	font-size: 24px;
}

.hero-banner-bottom-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  opacity: 0.85; /* adjust to taste */
}