.video-wrap {
    padding-top: 10px;
}

.block-video {
    margin-bottom: 15px;
}

.block-video .title-block {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.block-video .title-block span {
    font-size: 21px;
    display: inline-block;
    border-bottom: 2px solid var(--color-3);
    position: relative;
    bottom: -1px;
    padding-right: 20px;
    color: var(--color-3);
}

.item-video {
    margin-bottom: 16px;
    cursor: pointer;
    transition: .3s;
}

.item-video:hover {
    color: var(--color-3);
}

.item-video .wrap-img {
    padding-bottom: 56.25%;
}

.item-video .wrap-img:before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.item-video .name {
    font-size: 16px;
    margin-top: 6px;
  	font-weight: 700;
}

.item-video #icon-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 55px;
    height: 55px;
    padding: 12px;
    background: rgba(255, 255, 255, .7);
    border-radius: 50%;
}

.modal-video {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-video .modal-content {
    background: #FFF;
    padding: 10px;
    width: 90%;
    max-width: 800px;
    position: relative;
    border-radius: 6px;
    line-height: 1;
}

.close-modal {
    position: absolute;
    right: 12px;
    top: -40px;
    font-size: 32px;
    cursor: pointer;
    color: white;
}

@media (max-width: 768px) {
    .item-video #icon-video {
        width: 40px;
        height: 40px;
        padding: 9px;
    }

    .item-video .name {
        font-size: 14px;
        font-weight: 600;
    }
}