.video-block {
    position: relative;
    background: url(../../online-events/image/back-online-events.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: auto;
    height: auto;
    margin: 70px 20px;
    padding: 70px 0;
    border-radius: 12px;
}

.video-block__inner {
    display: flex;
    align-items: center;
    gap: 75px;
}

.video-block__text {
    flex: 1 1 auto;
}

.video-block__text .title-desc {
    margin-bottom: 0;
}

.video-block__text .title-desc p {
    margin: 15px 0 0;
    font-size: 16px;
    font-weight: 500;
}

.video-block__text .title-desc ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    margin: 15px 0 0;
    padding: 0;
}

.video-block__text .title-desc ul li {
    position: relative;
    font-size: 16px;
    line-height: 20px;
    padding-left: 28px;
}

.video-block__text .title-desc ul li:before {
    content: '';
    position: absolute;
    display: block;
    width: 18px;
    height: 18px;
    top: 1px;
    left: 0;
    background: url(../../service-banner/image/check-square.svg) 50% 50% / 100% no-repeat;
    margin: 0;
    max-width: none;
}

.video-block__cover {
    flex: none;
    position: relative;
    width: 594px;
    height: 355px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.video-block__cover:after {
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 75px;
    height: 53px;
    background: url(../../../views/blog/image/play.svg) 50% 50% / 100% no-repeat;
    transform: translate(-50%, -50%);
    opacity: .85;
    transition: opacity .2s ease;
}

.video-block__cover:hover:after {
    opacity: 1;
}

.video-block__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}