/* Simple Responsive Video Hero */

@media (min-width: 992px) {
  .video-hero {
    margin-top: -75px;
  }
}

body#home .video-hero {
  aspect-ratio: 16/9;
}

.video-hero {
  width: 100%;
  max-width: 100%;
  height: auto;
  /*aspect-ratio: 16/9;*/
}

.video-hero video {
  width: 100%;
  height: auto;
  display: block;
}

/* Sound Toggle Icon */

.sound-toggle:hover {
  background-color: rgba(0,0,0,0.7);
}

.sound-toggle svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.sound-toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

@media (max-width: 991px) {
  .sound-toggle {
    top: 20px;
    bottom: auto;
    right: 20px;
  }
}

@media (min-width: 1200px) {
  .sound-toggle {
    bottom: 100px;
  }
}

.video-hero video {
  margin-top: 70px;
}

#hero-vid {
  position: relative;
}

