.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Add here all your CSS customizations */



/* Hide all by default */
.banner-desktop,
.banner-tablet,
.banner-mobile {
  display: none;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

/* Desktop only */
@media (min-width: 1025px) {
  .banner-desktop {
    display: block;
  }
}

/* Tablet only */
@media (min-width: 768px) and (max-width: 1024px) {
  .banner-tablet {
    display: block;
  }
}

/* Mobile only */
@media (max-width: 767px) {
  .banner-mobile {
    display: block;
  }
}