.block-video-hero {
    padding: 1.375rem clamp(1rem, 0.056rem + 4.1045vw, 3.75rem);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 64.25rem;
    color: var(--white);
    display: flex;
    align-items: flex-end;
    line-height: 1.2;
}

.block-video-hero__wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.block-video-hero__header h1 {
    max-width: 46rem;
}

.block-video-hero__header p {
    max-width: 51.5rem;
    font-size: var(--fs-30);
}

.block-video-hero__footer {
    display: flex;
    flex-wrap: wrap;
    margin-top: clamp(1.5rem, -0.6455rem + 9.3284vw, 7.75rem);
    padding-block: 1.5rem;
    text-transform: uppercase;
    font-weight: var(--light);
    font-size: var(--fs-18);
    border-top: 1px solid var(--white);
    position: relative;
}

.block-video-hero__footer::before {
    content: '';
    height: 100%;
    width: 1px;
    background-color: var(--white);
    position: absolute;
    inset-block: 0;
    right: 50%;
}

.block-video-hero__col {
    flex: 1 1 20rem;
}

.block-video-hero__col p {
    margin: 0;
}

.block-video-hero__col + .block-video-hero__col p {
    margin-left: 2rem;
    max-width: 40rem;
}

.has-video-bg {
  position: relative;
  overflow: hidden;
}

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

.has-video-bg > .block-video-hero__wrapper {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 800px) {

    .block-video-hero__footer::before {
        display: none;
    }

    .block-video-hero__col + .block-video-hero__col p {
        margin: 1rem 0 0;
    }

}