.lbanner-pp .lbanner_desc {
    display: none !important;
}


.listVideos_main {
    margin-top: 5%;
}


.listVideos_main .video_list {
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.listVideos_main .video_list .video_item {
    width: 32%;
    padding: 30px;
    margin-right: 20px;
    margin-bottom: 20px;
    justify-content: space-between;
    align-items: center;
    background: #F1F1F1;
    border-radius: 24px 24px 24px 24px;
    -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;
}

.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%;
    border-radius: 16px 16px 16px 16px;
}

.listVideos_main .video_list .video_item .item_img .item_image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    border-radius: 16px 16px 16px 16px;
}

.listVideos_main .video_list .video_item:hover .item_img .item_image {
    -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: -25px;
    margin-left: -25px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    opacity: 0;
    transition: all .4s ease;
}

.listVideos_main .video_list .video_item:hover .item_img .video_play {
    animation: pointPulse 1.5s ease-in-out infinite;
    opacity: 1;
}

.listVideos_main .video_list .video_item .item_img .video_play img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.listVideos_main .video_list .video_item .item_title {
    font-family: 'Delecta-Bold';
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin-top: 10px;
}

.listVideos_main .video_list .video_item .item_title a {
    display: inline-block;
    color: #020C1E;
    height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listVideos_main .video_list .video_item:hover .item_title a {
    color: var(--conmmonColor);
}

@media only screen and (max-width: 1520px) {
    .listVideos_main .video_list .video_item {
        width: 31%;
    }
}


@media only screen and (max-width: 950px) {
    .listVideos_main .video_list .video_item {
        width: 31%;
    }
    .listVideos_main .video_list .video_item .item_img .video_play{
        opacity: 1 !important;
    }
}

@media only screen and (max-width: 768px) {
    .listVideos_main .video_list .video_item {
        width: 47%;
        padding: 20px;
    }

    .listVideos_main .video_list .video_item:nth-child(3n) {
        margin-right: 20px;
    }
}



@media only screen and (max-width: 480px) {
    .listVideos_main .video_list .video_item {
        width: 100%;
        margin-right: 0 !important;
    }

    .listVideos_main .video_list .video_item .item_title a {
        height: auto;
        -webkit-line-clamp: unset;
        overflow: visible;
    }
}