.video-container {
    width: 50%;
    height: 340px;
    position: relative;
    margin: 20px 0;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.video-container .video-img {
    position: absolute;
    background: white;
    border-radius: 8px;
    width: 80px;
    height: 80px;
    padding: 8px;
    cursor: pointer;   
}
.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .video-container {
        width: 100%;
    }
}