/* Banner (video) */

#banner {
  position: relative;
  width: 100%;
  height: 400px; /* adjust as needed */
  overflow: hidden;
}

/* banner video wrapper */
#banner .video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  z-index: 0;
}

/* actual video */
#banner .video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  pointer-events: none;
}

/* overlay content */
#banner .inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
}

/* typography inside banner */
#banner h2,
#banner h3,
#banner h4,
#banner h5,
#banner h6 {
  color: #fff;
}

#banner h2 {
  font-size: 3.5em;
  line-height: 1em;
  margin: 0 0 0.5em 0;
  padding: 0;
}

#banner p {
  font-size: 1.5em;
  margin-bottom: 2em;
}

#banner p a {
  color: #fff;
  text-decoration: none;
}
