.lbanner-pp .lbanner-desc {
    display: none !important;
}

.listVideos_main {
    margin-top: 5%;
}

.listVideos_main .web_th{margin-bottom: 2.6%;}


.listVideos_main .video_list {
    justify-content: flex-start;
    flex-wrap: wrap;
}

.listVideos_main .video_list .video_item {
    width: 31.2%;
    margin-right: 3.2%;
    -webkit-transition: all .5s ease-out 0ms;
    -moz-transition: all .5s ease-out 0ms;
    -o-transition: all .5s ease-out 0ms;
    transition: all .5s ease-out 0ms;
    z-index: 9;
    position: relative;
    padding-bottom: 56px;
}
.listVideos_main .video_list .video_item:nth-child(n+4){
    margin-top: 30px;
}


.listVideos_main .video_list .video_item:nth-child(3n) {
    margin-right: 0;
}

.listVideos_main .video_list .video_item .item_img {
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
    z-index: 9;
}


.listVideos_main .video_list .video_item .item_img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10;
    opacity: 0;
    transition: opacity .5s ease-out;
}

.listVideos_main .video_list .video_item:hover .item_img:after {
    opacity: 1;
}

.listVideos_main .video_list .video_item .item_img .video_img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.listVideos_main .video_list .video_item:hover .item_img .video_img {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
}

.listVideos_main .video_list .video_item .item_img .video_play {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 100px;
    background: rgba(255, 255, 255, 0.39);
    border-radius: 50%;
    z-index: 90;
    opacity: 0;
    transition: opacity .5s ease-out;
}

.listVideos_main .video_list .video_item:hover .item_img .video_play {
    opacity: 1;
    animation: pointPulse 1.5s ease-in-out infinite;
}

.listVideos_main .video_list .video_item .item_img .video_play:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -36px;
    margin-left: -36px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #FFFFFF;
    z-index: 91;
}

.listVideos_main .video_list .video_item .item_img .video_play img {
    position: relative;
    width: 30px;
    height: 30px;
    object-fit: contain;
    z-index: 99;
}


.listVideos_main .video_list .video_item .item_title {
    font-family: 'OpenSans-Bold';
    font-weight: bold;
    font-size: 24px;
    color: #333333;
    text-align: center;
    font-style: normal;
    text-transform: capitalize;
    margin: 15px 0 12px;
    line-height: 1.35;
}

.listVideos_main .video_list .video_item:hover .item_title {
    color: var(--commonColor);
}


.listVideos_main .video_list .video_item .item_desc {
    font-weight: 400;
    color: #666666;
    line-height: 28px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    position: absolute; left: 0; bottom: 0; width: 100%;
    height: 56px;
}
.listVideos_main .video_list .video_item:hover .item_desc{color: #333;}

@media only screen and (max-width: 1200px) {
    .listVideos_main .video_list .video_item .item_img .video_play{width: 78px; height: 78px; margin: -39px 0 0 -39px; line-height: 78px;}
    .listVideos_main .video_list .video_item .item_img .video_play:before{
        width: 58px; height: 58px; margin: -29px 0 0 -29px;
    }
    .listVideos_main .video_list .video_item .item_img .video_play img{height: 24px; width: 24px;}
}
@media only screen and (max-width: 980px) {
    .listVideos_main{margin-top: 30px;}
    .listVideos_main .web_th{margin-bottom: 14px;}
    .listVideos_main .video_list .video_item {
        width: 48.5%;
        margin-right: 3% !important;
    }
    .listVideos_main .video_list .video_item:nth-child(n+3){
        margin-top: 24px;
    }

    .listVideos_main .video_list .video_item:nth-child(2n) {
        margin-right: 0 !important;
    }

    .listVideos_main .video_list .video_item .item_img:after {
        opacity: 1 !important;
    }

    .listVideos_main .video_list .video_item .item_img .video_play {
        opacity: 1 !important;
    }
    .listVideos_main .video_list .video_item .item_title{font-size: 20px;}
}

@media only screen and (max-width: 768px) {
    .listVideos_main .video_list .video_item {
        width: 100%;
        margin-right: 0 !important;
    }
    .listVideos_main .video_list .video_item:nth-child(n+2){
        margin-top: 20px;
    }
}