.cover video {
  aspect-ratio: 1 / 1;  /* Makes the video square */
  width: 50vw;          /* Optional: Adjusts width to parent */
  height: auto;         /* Ensures proper scaling */
  object-fit: cover;/* Keeps the video filling the square area */
  max-height:100vh 
}
.vertical-section {
    height: 100vh;
    flex: none;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
}

.vertical-sections {
    /*height:100vh;*/
    flex-direction: column;
    flex: 1;
    display: flex;
}

.vertical-sections.left {
    flex-direction: column;
}

.vertical-sections--wrapper {
    display: flex;
    position: sticky;
    top: 0;
    overflow: hidden;
    height: 100vh;
    /*width: 100vw;*/
}

.split_item-content {
    background-color: white;
    width: 100%;
    height: 100%;
}
.split_item-media {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 991px) {
    .vertical-section {
        width: 100vw;
        height: 100%;
    }

    .vertical-sections {
        height: 50vh;
        flex-flow: row;
        flex: none;
    }

    .vertical-sections.left {
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

    .vertical-sections--wrapper {
        flex-direction: column;
    }
}
