/* 20_ Video Gallery here */
/* -----gallery images & Video Clips----- */
/* .thumbnail-size{
    width: 20rem;
    height: 20rem;
    margin: 10px;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .video-container {
    position: relative;
  }
  
  .video-container video {
    width: 100%;
    object-fit: cover;
  }
  
  .video-container .hover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 24px), -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    pointer-events: none;
    box-shadow: 4px 4px 50px -4px rgba(0, 0, 0, 0.8);
    opacity: 0;
    letter-spacing: 0.8px;
    transition: all 400ms ease;
  }
  
  .video-container .hover-text.active {
    opacity: 1;
    letter-spacing: 0;
    transform: translate(-50%, -50%);
  } */


#video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.video-container {
    width: 300px; /* Maintain a minimum width */
    margin: 10px;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover; 
}