#promo-video {
    padding: 64px;      
    background: #fff;
    border-top-left-radius: 64px;
    border-top-right-radius: 64px;
    position: relative;
    z-index: 5;

    @media only screen and (max-width: 980px) {
        padding: 32px;
    }

    .wrap {
        border-radius: 64px;
        overflow: hidden;

        video {
            width: 100%;

            @media only screen and (max-width: 980px) {
                aspect-ratio: 1 / 1;
                object-fit: cover;
            }

        }
    }
}