/* Mixins
================================================== */
/* Breakpoints
================================================== */
/* Video
================================================== */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}
.video-wrap video,
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Full screen video
----------------------------------------------- */
.full-screen-video {
  min-height: 25em;
  height: 100vh;
  height: calc(var(--vh) * 100);
  width: 100%;
  overflow: hidden;
  position: relative;
}
.full-screen-video video {
  position: absolute;
  height: auto;
  width: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}