#v{
    width: 90%;
    position: relative;

    display: flex;
    justify-content: center;
    margin-top: 10vh;

    background-color: black;
}

#v-desc{
    width: 40%;
    position: relative;

    font-family: 'Saira Extra Condensed', sans-serif;
    color: white;
    margin-right: 5%;
}

#v-desc span{
    position: relative;
    font-size: 6vh;
}

#v-desc p{
    position: relative;
    /* margin-right: 20%; */
    font-size: 3vh;
}

#v-cnt{
    position: relative;
    width: 50%;
	position: relative;
 	
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

#v-cnt iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}


@media (max-width: 1000px){
    #v{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #v-desc{
        text-align: center;
        width: 90%;
    }

    #v-desc p{
        margin-right: 0;
    }

    #v-cnt{
        width: 90%;
    }
}

