.videoBanner{
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 24px;  
    margin-bottom: 43px;  

    @media(max-width: 992px){
        margin-bottom: -50px;
        z-index: -1;
    }

    video{
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;        
        margin-bottom: -12px;

        @media(max-width: 992px){
            aspect-ratio: auto;
            height: 80vh;
        }
    }

    .videoContent{
        position: absolute;
        top: 0px;
        left: 0px;
        color: #fff;
        background-color: rgba(0,0,0,0.5);
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        width: 100%;
        height: 100%;

        h2{
            font-size: 4em;
            font-weight: 600;
        }

        .button{
            width: fit-content;
            margin: auto;
            margin-top: 24px;

            @media(max-width: 992px){
                display: none;
            }
        }

        @media(max-width: 992px){

            justify-content: flex-end;
            padding-bottom: 100px;

            h2{
                font-size: 2em;
                line-height: 1.3em;
            }

        }
    }
}