.video-box{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
}

.video-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.video-box video{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
}

.video-content{
    padding:25px;
    text-align:center;
}

.video-content h4{
    font-weight:700;
    margin-bottom:10px;
}

.video-content p{
    color:#666;
    margin:0;
}

@media(max-width:991px){

.video-box video{

height:280px;

}

}