.lbox {
    margin-top: -5%;
    background: #232323;
}


.video_list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 5%;
}

.video_div {
    width: calc((100% - 90px) / 3);
    margin-right: 45px;
    display: block;
}

.video_list .video_div:nth-child(3n) {
    margin-right: 0;
}

.video_div_img {
    position: relative;
}

.video_div_img .imgBox {
    padding-bottom: 66.6%;
}

.video_play {
    width: 50px;
    height: 35px;
    background: #006ed0;
    border-radius: 7px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video_play::after {
    content: '';
    display: inline-block;
    width: 13px;
    height: 14px;
    background: url('img/play.webp') no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video_div_title {
    font-family: DIN-Medium;
    font-weight: 500;
    font-size: 16px;
    color: #CCCCCC;
    text-align: center;
    padding: 0 10%;
    margin: 15px 0 20px;
}

.video_div_title:hover {
    color: #006ed0;
}


/* details */
.video_content {
    font-family: DIN;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
    opacity: 0.8;
    margin: 28px 0;
}

@media only screen and (max-width: 950px) {
    .lbox {
        padding-top: 30px;
    }

    .video_div {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}