h4.title-video {
    color: #FFF;
    font-family: Unbounded;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 166.667% */
}

p.live-text {
    color: #FFF;
    font-family: Unbounded;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 181.818% */
    text-transform: uppercase;
}

a.object-video:hover {
    transform: translateY(-8px);
}

.live-object {
    border-radius: 5px;
    background: #CE1313;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 2px 7px;
}

a.object-video {
    text-decoration: none;
    display: grid;
    justify-items: start;
    gap: 6px;
    transition: 0.3s;
}

.image-video {
    height: inherit;
    width: 100%;
    aspect-ratio: 250 / 141;
    background-size: cover;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

p.main-p {
    color: #979AA0;
    font-family: Unbounded;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}

p.title-video {
    color: #B3B8CC;
    font-family: Unbounded;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 19px; /* 118.75% */
}

.list-video {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.group-video {
    display: grid;
    gap: 22px;
}

.group-videos {
    display: grid;
    gap: 33px;
}

.image-video:after {
    content: "";
    position: absolute;
    background-image: url(/img/video.png);
    width: 54px;
    height: 35px;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 0.3s;
}

a.object-video:hover > .image-video:after {
    background-image: url(/img/video-hover.png);
    transform: scale(1.1);
}

@media (max-width: 1000px) {
    .list-video {
        grid-template-columns: repeat(2, 1fr);
    }
    .contnet-block-a {
        padding: 20px;
    }
}