video {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

section.vid {
  position: relative;
  overflow: hidden; /* prevent overflow when video perhaps scales */
}

/* overlay and video‐background both fill the container */
section.vid .overlay,
section.vid .video-background {
  width: 100%;
  inset: 0;
}

section.vid .overlay {
  z-index: 1;
  background-color: #0e2c19;
  opacity: 0.2;
}

section.vid .video-background {
  z-index: -1;
}

section.vid .background img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

section.vid .video-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: auto;
  text-align: left;
}

section.vid .gutters {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 1080px;
  padding: 0 1.875rem;
  margin: auto;
	position: absolute;
	left: 0;
    right: 0;
}

section.vid .video-content {
  width: 432px;
  max-width: 50%;
}

section.vid svg {
  width: 432px;
  max-width: 100%;
  height: 100%;
  overflow: visible;
}

.hide_context {
  display: none;
}

/* Tablet & Mobile */
@media screen and (max-width: 1024px) {
  section.vid .video-wrapper {
    justify-content: center;
    text-align: center;
  }

  section.vid .gutters {
    max-width: 90vw;
    padding: 0 1rem;
  }

  section.vid .video-content {
    max-width: 100%;
    width: 100%;
  }

  section.vid svg {
            max-width: 90%;
        width: 300px;
    height: auto;
    margin: 0 auto;
  }
}



@media (min-width: 1025px) {
    #banner-video {
      height: 800px;        /* or whatever desktop hero height you need */
    }
  }
  @media (max-width: 1024px) {
    #banner-video {
      height: 500px;        /* or whatever mobile height works */
    }
  }