.kl-hero-video {
  display: flex;
  position: relative;
  width: 100%;
}

.kl-hero-video-background {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  overflow-x: hidden
  height: auto;
}

.kl-hero-video-gradient-background {
  background: linear-gradient(to right, white 0%, transparent 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -8;
  right: 0;
  bottom: 0;
}

.kl-hero-video-info-container {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7.3%;
  position: relative;
  z-index: 5;
}

.kl-hero-video-background video {
  min-height: auto;
  min-width: 100%;
  aspect-ratio: 1440/700;
}

.kl-hero-video__preheader {
  font-size: 14px;
  font-weight: 500;
  line-height: 13.3px;
  letter-spacing: 0.08em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #00A398;
}

.kl-hero-video__content-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 25px 0 40px 0;
  max-width: 800px;
}

.kl-hero-video__content * {
  color: black;
  font-size: 74px;
  font-weight: 300;
  line-height: 1;
  margin: 0 !important;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.kl-hero-video__subtitle {
  color: black;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

@media (max-width: 767px) {
  .kl-hero-video {
    display: flex;
    flex-direction: column;
  }
  
  .kl-hero-video-background {
    order: 2;
    position: relative;
  }
  
  .kl-hero-video-info-container {
    justify-content: unset;
    max-width: unset !important;
    order: 1;
    z-index: unset;
  }
}

@media (min-width: 1240px) {
  .kl-hero-video {
    min-height: 700px;
  }
  
  .kl-hero-video-info-container {
    padding: 0 7.3%;
  }
}