.video-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    transition: opacity 1s ease-in-out;
  }

  .video-modal.fade-out {
    opacity: 0;
  }
  

  .video-modal::-webkit-scrollbar{
    display: none;
  }

  .video-modal {
    -ms-overflow-style: none;
  }
  .video-modal{
    scrollbar-width: none;
  }
  
  .modal-overlay {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
  }
  
  .modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 0px;
    z-index: 3000;
    width: 50%;
    position: relative;
  }
  
  .close-modal {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
  }
  
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
  }
  
