.video-slider {
    position: relative;
}

.video-items {
    z-index: 22;
}

.video-item {
    position: relative;
    border-radius: var(--big-radius);
}

.video-duration {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--bg-light-grey);
    border-radius: var(--radius);
    font-size: 14px;
    line-height: 18px;
    padding: 4px 8px;
}

.play-btn {
    transition: var(--transition);
    width: 70px;
    height: 70px;
    border-radius: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 5px;
}

.play-btn span {
    background-color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.play-btn span:after {
    content: '';
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 20px solid #fff;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

.play-btn:hover {
    padding: 0;
}

.video-slider .slider-nav {
    justify-content: space-between;
    bottom: 50%;
    left: -15px;
    position: absolute;
    width: calc(100% + 30px);
    z-index: 1121;
    height: 1px;
}

.video-slider .slider-btn {
    background-color: var(--white);
    border-radius: var(--radius);
}

.slick-disabled {
    opacity: 0 !important;
}

@media (max-width: 768px) {
    .video-items {
        display: flex;
        overflow: auto;
        gap: 20px;
    }

    .video-item {
        min-width: 100%;
    }
}