.video-intro-section {
    background: var(--color-black);
    color: var(--color-white);
    padding-top: 20px;
}

.video-intro-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.video-titles-wrapper {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-pretitle {
    font-weight: 300;
    line-height: 140%;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.video-title {
    line-height: 100%;
}

#video-player {
    height: 100%;
    max-height: 660px;
    max-width: 100%;
    object-fit: cover;
}

.scroll-indicator {
    background: var(--color-black);
    display: flex;
    padding-block: 32px;
    justify-content: center;
    margin-top: -1px;
}

.scroll-indicator.indicator-nobg {
    background: none;
}

/* BG */

.video-intro-section.bgsvg .video-intro-content-wrapper {
    position: relative;
    min-height: 570px;
    width: 100%;
}

.video-intro-section.bgsvg img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bgsvg.scroll-indicator {
    background: none;
}

.videobg { 
    display: none;
}

.bgsvg .videobg {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
}


/* Large devices (desktops, less than 1200px) */
@media (max-width: 1200px) {

    .video-intro-section.bgsvg .video-intro-content-wrapper {
        min-height: 0;
    }

    .video-intro-section.bgsvg img {
        position: static;
    }

}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 576px) { 

    .video-intro-wrapper {
        flex-direction: column;
    }
    
}