.video_wrap{background-color: #fff;
   }

.video_list{display: flex;width: 100%;flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;padding: 2% 0;}
.video_item{flex-basis: 33.33%;box-sizing: border-box;padding: 2%;}
.video_item_img{position: relative;}
.video_item_img::before{
    content: '';
    position:absolute;
    width: 100%;
    height: 100%;
    background-image:
    url(http://www.lindashow.ru/tpl/v3/img/video.svg);
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
    background-size: 15%;
    opacity: .7;
    transition:all .3s;
    background-color: #0000005b;
    -webkit-transition:all .3s;
    -moz-transition:all .3s;
    -ms-transition:all .3s;
    -o-transition:all .3s;
}
.video_item_img:hover::before{background-size: 18%;opacity: 1;}
.video_item_img img{width: 100%;}
.video_frame iframe{width: 100%;min-height: 500px;}
.video_breadcrumbs,.video_item_date{display: none;}
.video_item_title h5{font-family: 'Roboto Slab', serif;}
.video_item_title a{font-size: 140%; color: #000;text-decoration: none;}
.video_item_title, .video_item_resume{margin: 4% 0;line-height: 1.2;}



    @media only screen and (max-width: 960px) {
        .video_item{flex-basis: 50%;}
    }
    @media only screen and (max-width: 480px) {
        .video_item{flex-basis: 100%;}
    }