.video-section.overlay {
  box-shadow: inset 0 0 0 1000px rgba(41, 41, 41, 0.42);
  position: relative;
}

.video-section {
  height: 380px;
  margin-top: 42px;
  margin-bottom: 42px;
}

@media (min-width: 992px) {
  .video-section {
    height: 480px;
  }
}

.video-section .video-wrapper {
  position: absolute;
  z-index: -1;
  inset: 0px;
  overflow: hidden;
}

.video-section .video-wrapper video {
  margin: auto;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: visible;
  opacity: 1;
  width: 100%;
  min-width: 700px;
  height: auto;
  object-fit: cover;
}
.video-section .video-wrapper video source {
 width: 100%;
 height: auto;
 object-fit: cover;
}
.video-section h1 {
  font-weight: 600;
}

.video-section h1,
.video-section p {
  color: var(--white);
}

.video-section p {
  margin: 0 auto 24px auto;
  color: var(--white);

}

.video-section .text-wrapper {
  height: 100%;
}

