.videos-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 40px;
}

@media screen and (min-width: 992px) {
    .videos-list{
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }   
}

.video-item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    background-color: #f1f3f5;
    gap: 20px;
    padding-bottom: 20px;
}

.video-item h5{
    margin: 0;
}

.video-item-info{
    padding-inline: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.video-item .video-thumb .play-icon {
    width: 50px;
    height: 50px;
    position: absolute;
    background-color: rgb(232, 232, 232);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    color: #10218b;
}

.video-item .video-thumb:hover .play-icon{
    color: #2940d4;
    background-color: rgb(255, 255, 255);
}

.video-item .video-thumb .play-icon::before {
    font-family: Glyphicons Halflings,sans-serif;
    content: "\e072";
    font-size: 30px;
    position: unset;
}

.video-item .video-thumb{
    overflow: hidden;
}

.video-item .video-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.50);
    z-index: 1;
    pointer-events: none;
}

.video-item .video-thumb:hover::before{
    background-color: rgba(0, 0, 0, 0.35);
}