.video-container{
  width: 100vw;
  height: 40vh;
overflow: hidden !important;
	position: relative;
}

.section-slider .swiper .swiper-slide .bloc-img img {
    height: 40vh !important;
}
    
.video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 150vw;
  transform: translate(-50%, -50%);
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 150vw;
  transform: translate(-50%, -50%);
}



@media (min-aspect-ratio: 16/9) {
  .video-container iframe, .video-container video {
    /* height = 100 * (9 / 16) = 56.25 */
    height: 56.25vw;
  }
}
    
@media (max-aspect-ratio: 16/9) {
  .video-container iframe, .video-container video {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh;
  }
}

@media all and (min-width: 768px) {
	.video-container iframe, .video-container video {
	  height: 35vw;
	}
    .video-container{
        height: 65vh;
    }
    .section-slider .swiper .swiper-slide .bloc-img img {
        height: 65vh !important;
    }
}

@media all and (min-width: 768px) and (orientation: landscape) {
    .video-container iframe, .video-container video {
        height: 80vw;
    }
    .video-container{
        height: 55vh;
    }
    .section-slider .swiper .swiper-slide .bloc-img img {
        height: 55vh !important;
    }
}

@media all and (min-width: 1024px) {
	.video-container iframe, .video-container video {
	  height: 75vw;
	}
    .section-slider .swiper .swiper-slide .bloc-img img {
        height: 55vh !important;
    }
}