.video_section {
  width: 100%;
  padding: 0;
  margin: 0;
}

.video_banner {
/*  position: relative;*/
  padding-bottom: 43.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video_banner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Media queries for responsive design */

@media only screen and (max-width: 1200px) {
  .video_banner {
    padding-bottom: 45%; /* adjust padding for smaller screens */
  }
}

@media only screen and (max-width: 768px) {
  .video_banner {
    padding-bottom: 55%; /* adjust padding for smaller screens */
  }
}

@media only screen and (max-width: 480px) {
  .video_banner {
    padding-bottom: 55%; /* adjust padding for smaller screens */
  }
}
