.videbox_content a {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    z-index: 10;
}

.videbox_content .icon_player {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90px;
    transition-duration: 0.2s;
}

.videbox_content .icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.videbox_content:hover {
    cursor: pointer;
}

.videbox_content {
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    height: 400px;
}

.videbox_content:hover .image-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}