.list-videos ul {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
}
		.list-videos ul li {
    width: 32%;
    margin-right: .95%;
    margin-bottom: 56px;
    float: left;
}.list-videos ul li .img {
    padding-top: 81.4%;
    margin-bottom: 20px;
	position: relative;
    width: 100%;
   height: 0;
}.img>img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: all 
ease-in-out .3s;
}.list-videos ul li .img .play_bbtn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #333;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 10;
    background-image: url(img/playbg.png);
    background-repeat: no-repeat;
    background-position: center;
}.list-videos ul li .img::after {
    width: 100%;
    height: 100%;
    content: '';
    display: inline-block;
    background-color: rgba(0, 0, 0, .3);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}.list-videos ul li .title a {
    
    font-size: 16px;
    color: #013B53;
}@media screen and (max-width: 950px) {
    .list-videos ul li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
}
