.video_home .item {
    width: calc(50% - 10px);
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .video_home .item {
        width: 100%;
        margin-bottom: 30px;
    }
}

.video_home .item .item_header {
    display: block;
    width: 100%;
    height: 350px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;    
}

.video_home .item .item_header .fa-circle-play {
    line-height: 350px;
    font-size: 3rem;
    color: white;
    opacity: 0.7;
    cursor: pointer;
}
.video_home .item .item_header:hover .fa-circle-play {
    opacity: 1;
}

@media (max-width: 991px) {
    .video_home .item .item_header {
        line-height: 50vw;
    }
    .video_home .item .item_header .fa-circle-play {
        height: 50vw;
    }
    
}


.video_home .item .item_body {
    padding: 7px;
    display: inline-block;
    height: auto;
}

.video_home .item .item_date {
    float: left;
    width: 70px;
    padding: 10px;
    background-color: white;
    margin-right: 15px;
    margin-left: 5px;
    margin-top: 13px;
}

.video_home .item .item_date .d {
    font-size: 2em;
    width: 100%;
    display: block;
    text-align: center;
    line-height: 49px;
}

.video_home .item .item_date .m {
    font-size: 0.8em;
    display: block;
    width: 100%;
    text-align: center;
    padding-top: 6px;
}

.video_home .item .item_desc {
    float: left;
    width: 100%;
}

.video_home .item .item_desc h5 {
    font-size: 1.15rem;
    margin-top: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.video_home .item .item_desc p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}