.mImg {
    width: 100vw;
}

.contWrap {
    height: 100%;
    overflow: auto;
    display: flex;
    justify-content: flex-start;
    flex-flow: column;
}

.menuWrapper {
    position:absolute;
    top: 0%;
    left: 0%;
    width: 0;
    height: 100%;
    overflow: hidden;
    transition:all .5s;
    background-color: #000000;
}

.menuWrapper.active {
    width: 100vw;
}

.menuWrapper .menuWrap {
    width: 100vw;
    height: 100%;
    overflow-y: scroll;
}

.menuWrapper .menuWrap>img {
    width: 100%;
}

video {
    position:absolute;
    top: 0%;
    left:0;
    z-index: -100000;
    width: 1px;
    height: 1px;
    /* background-color: #fff; */
}