.video-card{
    position: relative;
    border: none;
    border-radius: 4px;
    width: 280px;
    max-height: 158px;
    overflow:hidden;
    display: block;
}

.video-color-fill{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(111,111,111,1) 25%, rgba(222,222,222,1) 50%);
    mix-blend-mode: multiply;
    border-radius: 4px;
    z-index: 1;
}

.card-title{
    font-size: 1vw;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.card-body{
    position: absolute;
    bottom: 0;
    z-index: 10;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.card-text{
    font-size: 0.8vw;
}
@media screen and (max-width: 1200px){
    .video-card{
        width: 220px;
        max-height: 128px;
    }
}
@media screen and (min-width: 1400px){
    .card-title{
        font-size: 14px;
    }
    .card-text{
        font-size: 10px;
    }
}