.video-item
{

}

.video-item-img
{
    overflow: hidden;
}

.video-item-img img
{
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.video-item:hover .video-item-img img
{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.video-item-name
{
    font-size: 20px;
    text-align: center;
    width: 100%;
    display: block;
    margin-top: 10px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    color: #333 !important;
    text-transform: uppercase;

    max-height: 46px;
    line-height: 23px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-item:hover .video-item-name
{
    color: #555 !important;
}

@media (max-width: 575px) {
    .video-item-name {
        max-height: initial;
        -webkit-line-clamp: initial;
    }
}

.embed-video-container
{
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    position: relative;
}

.embed-video-item
{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}