@media screen and (max-width: 480px) {
    .intro-video{
        position: relative;
        background-color: #ffffff;
        width: 90%;
        height: 119vw;
        margin: 67px auto 10px;
        > img {
            width: 105%;
            height: auto;
            position: absolute;
            top: -65px;
            left: 10px;
            z-index: 2;
        }
        .youtube {
            aspect-ratio: 16 / 9;
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            margin: auto;
            z-index: 1;
            > iframe {
                width: 100%;
                height: 100%;
            }
        }
    }
}

@media screen and (min-width: 481px) {
    .intro-video{
        position: relative;
        background-color: #ffffff;
        width: 90%;
        height: 620px;
        margin: 67px auto 10px;
        > img {
            width: 105%;
            height: auto;
            position: absolute;
            top: -65px;
            left: 10px;
            z-index: 2;
        }
        .youtube {
            aspect-ratio: 16 / 9;
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            margin: auto;
            z-index: 1;
            > iframe {
                width: 100%;
                height: 100%;
            }
        }
    }
}