*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    font-weight: normal;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}


.videoc{
    position: relative;
    min-height: 100vh;
}

.video-container{
    display: flex;
    flex-wrap: wrap;
    margin-top: 7%;
    margin-bottom: 4%;
    gap: 15px;
    justify-content: center;
    padding: 10px;
}

.video-container .video{
    /* width: 350px;
    height: 450px; */
    border-radius: 30px;
    cursor: pointer;
    overflow: hidden;
}

.video-container .video video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .2s linear;
}

.video-container .video:hover video{
    transform: scale(1.1);
}



.popup-video{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0,0,0,.8);
    height: 100%;
    width: 100%;
    display: none;
}

.popup-video video{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 450px;
    border-radius: 5px;
    border: 3px solid #fff;
    object-fit: cover;

}

.popup-video span{
    position: absolute;
    top: 5px;
    right: 20px;
    font-size: 50px;
    color: #fff;
    font-weight: bolder;
    z-index: 1000;
    cursor: pointer;
}

@media (max-width: 767px)
{
    .popup-video video{
        width: 95%;
    }

    .video-container{
        margin-top: 15%;
    }
}