.video_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 80px auto;
  padding: 0;
  text-align: center;
}

.video_section .title {
  width: 100%;
  margin-bottom: 30px;
}

.video_section .row {
  width: 100%;
  justify-content: center;
  margin: 0;
}

.video_section .video_wrapper {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Large Desktop */
@media (min-width: 1400px) {
  .video_section {
    margin: 100px auto;
  }

  .video_section .video_wrapper {
    max-width: 1200px;
  }
}

/* Desktop */
@media (min-width: 993px) and (max-width: 1399px) {
  .video_section {
    margin: 80px auto;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 992px) {
  .video_section {
    margin: 60px auto;
    padding: 0 20px;
  }

  .video_section .title {
    margin-bottom: 25px;
  }
}

/* Mobile */
@media (min-width: 0px) and (max-width: 767px) {
  .video_section {
    margin: 40px auto;
    padding: 0 15px;
  }

  .video_section .title {
    margin-bottom: 20px;
  }

  .video_section .video_wrapper {
    border-radius: 8px;
  }
}

/* Small Mobile */
@media (max-width: 575px) {
  .video_section {
    margin: 30px auto;
    padding: 0 10px;
  }
}