﻿.imgVideo {
    /*margin-bottom: 39px;*/
    position: relative;
    overflow: hidden;
}

    .imgVideo .multiply {
        width: 166px;
        height: 298px;
        margin: 0 auto;
        mix-blend-mode: multiply;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        transition: top ease-out 300ms;
    }
        .imgVideo .multiply.red-multiply {
            background-color: #C30000;
        }

        .imgVideo .multiply.yellow-multiply {
            background-color: #F3B300;
        }
        .imgVideo .multiply.grey-multiply {
            background-color: #BEBEBE;
        }

    .imgVideo img {
        width: 100%;
    }

@media(min-width: 992px) {
.imgVideo {
    /*margin-bottom: 147px;*/
}
    .imgVideo .multiply {
        width: 695px;
        height: 386px;
        /*top: 0;*/
        /*margin-top: -533px;*/
    }
}

