.video-gallery {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto 100px auto;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 500px;
}

.video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.video-item {
    width: 150px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--white);
    cursor: pointer;
}


.video-item.active {
    width: 300px;
    height: 300px;
    border: 8px solid var(--primaryColor);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.play-icon::before {
    content: "\25B6";
    color: white;
    font-size: 20px;
}
/* .video-gallery {
    overflow-x: hidden; 
} */

/* Responsive */
@media (max-width:768px){
    .video-item.active {
        width: 300px;
        height: 300px;
    }

    .video-item {
        width: 100px;
        height: 100px;

    }
    .video-container {
        height:450px; 
    }
    
}
