  .video_overlay_video_container .background_video_wrapper{
    position: relative;
    width: 100%;
    padding-top: 90%; 
    /*padding-top: 72%;*/ /*  1440:1035 Aspect Ratio (divide  1035 by 1440 = 0.718) */
  }
  
  .video_overlay_video_container .background_video{
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }

  .video_overlay_video_container .background_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  .video_overlay_video_container .overlay_container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
  }

  .video_overlay_video_container_overlay_video {
    width: 50vw;
  }

  .video_overlay_video_container .overlay_controls {
    box-sizing: border-box;
    position: absolute;
    bottom: 16px;
    left: 16px;
    gap: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

.youtube_video_container{
  position: relative;
  width: 50vw;
  padding-top: 56.25%; /* 16:9 */

}

.youtube_video_wrapper{
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.youtube_video_wrapper iframe{
  width: 100%;
  height:100%;
}

.background_vincit_wire_container{
  position:relative;
  width: 100%;
  height: 100%;
  object-fit: cover;  
}

.background_vincit_wire_container canvas{
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  filter: saturate(1.2);
}


.overlay_controls_pause_button, .overlay_controls_mute_button {
  display: flex;
  background-color: #FBFBF6 !important;
  border: 0.93px #D2D2D2 solid !important;
  border-radius: 50%;
  padding: 11.4px;
  cursor: pointer;
  z-index: 10;
}

overlay_controls_pause_button:hover, .overlay_controls_mute_button:hover {
  background-color: #FBFBF6 !important;
}


  {# Mobile layout#}
@media(max-width: 1023px){
    .video_overlay_video_container .background_video_wrapper{
      padding-top: 125%; /* 4:5 Aspect Ratio (divide  5 by 4 = 1.25) */
    }
    .video_overlay_video_container_overlay_video, .youtube_video_container {
      width: calc(100vw - 32px);
    }

}


@media(max-width: 500px){
    .video_overlay_video_container .overlay_controls {
      bottom: 12px;
      left: 5px;
      gap: 5px;
  }
  .overlay_controls_pause_button, .overlay_controls_mute_button{
      padding: 6px;
    }
}