.videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.videos .video-container {
  width: 50%;
  text-align: center;
}

iframe.video {
  width: 100%;
  padding: 1em;
}

.video-hero {
  height:0;
  position: relative;
  padding-bottom:90vh;
  overflow: hidden;
}
.video-hero #player {
  position: absolute;
  top:-10%;
  left:-5%;
  width: 110%;
  height: 120%;
  padding: 0;
  pointer-events: none;
}

/* ANIMATED SCROLL DOWN ELEMENT */
.video-hero .scroll {
  position:absolute;
  bottom:0;
  left:50%;
  transform: translate(-50%,-50%);
}
.video-hero .down {
  position:relative;
  width:25px;
  height:40px;
  border-radius:13px;
  background: transparent;
  border:2px solid #fff;
  overflow: hidden;
}
.video-hero .down:before {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  left:50%;
  top:5px;
  transform: translate(-50%,0);
  animation: animate 1s linear infinite;
}
.video-hero .down:after {
  content: '';
  position: absolute;
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: #fff;
  left:50%;
  top:5px;
  transform: translate(-50%,0);
}
@keyframes animate {
  0% {
    transform: translate(-50%,10px);
    opacity: 0;
  }
  80% {
    transform: translate(-50%,30px);
    opacity: 1;
  }
  100% {
    transform: translate(-50%,50px);
    opacity: 0;
  }
}

* { box-sizing: border-box; }
.video-background {
  background: #000;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -99;
}
.video-foreground,
.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
  .video-foreground { height: 300%; top: -100%; }
}
@media (max-aspect-ratio: 16/9) {
  .video-foreground { width: 300%; left: -100%; }
}
@media all and (max-width: 768px) {
  .video-hero {
    padding-bottom:50% !important;
  }
  .video-hero .scroll {
    display:none;
  }
}
@media all and (max-width: 600px) {
.vid-info { width: 50%; padding: .5rem; }
.vid-info h1 { margin-bottom: .2rem; }
}
@media all and (max-width: 500px) {
.vid-info .acronym { display: none; }
}
