#videoPopup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    
 
  }
  
 

  #videoPopup iframe {
    width: 80vw;
    height: 45vw;
    max-width: 800px;
    max-height: 450px;
  }
  
  #closePopup {
    background: none !important;
    border-color: #ffff !important;
    color: #ffff !important;
    font-family: "Raleway", sans-serif;
    font-weight: bold !important;
  }

  #closePopup:hover {
    background: #cc1616 !important;
    border: #cc1616;
    font-weight: bold;
  }

 


  /* Styles for PCs and Desktops */
@media only screen and (min-width: 1024px) {
    /* Your CSS rules for PCs and Desktops go here */
   
    #videoPopup iframe {
        width: 80vw;
        height: 45vw;
        max-width: 800px;
        max-height: 320px;
        
      }
  
  
    /* Add more CSS rules as needed */
  }
  