#mod1-banner-video {
    height: 100vh;
    width: 100vw;
    position: relative;
    margin-bottom: 60px;

    & video {
        height: calc(100vh + 60px); 
        width: 100vw;
        object-fit: cover;
        object-position: center;
        filter: brightness(60%) contrast(1);
        mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
        mask-repeat: no-repeat;
        mask-size: 100% 100%;
    }


    & .text-container {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        top: 30%;

        & h1 {
            color: white;
            font-size: 36px;
            font-weight: 700;
            margin: 0 16px 12px 16px;
        }

        & p {
            color: white;
            max-width: 450px;
            text-align: center;
            text-wrap: balance;
            margin: 0 16px;
        }
    }
}

@media (min-width: 992px) {
    #mod1-banner-video {
        & .text-container {

            & h1 {
                font-size: 56px;
                font-weight: 700;
            }
        }
    }
}