:focus {
  outline: none !important;
}

body {
  overflow-x: hidden;
}

.hero-wrapper {
  position: relative;
  width: 100vw;
  height: var(--hero-height-desktop, 100vh);
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.77vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero-sound-toggle {
  position: absolute;
  bottom: 2rem;
  left: 4.5rem;
  z-index: 5;
  background: none !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.hero-sound-toggle:hover {
  opacity: 0.75;
}

.hero-sound-toggle img {
  width: 2rem;
  height: auto;
  display: none;
}

.hero-sound-toggle.is-muted .icon-mute {
  display: block;
}

.hero-sound-toggle.is-unmuted .icon-unmute {
  display: block;
}

.hero-sound-toggle:hover,
.hero-sound-toggle:focus,
.hero-sound-toggle:active {
  background: none !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

.hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: linear-gradient(180deg,
      #00000000 30%,
      #000000B3 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 8.78rem;
}

.hero-content h1 {
  font-family: 'Avenir Next', sans-serif;
  font-size: 4.35rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1em;
  letter-spacing: 0.2625rem;
  color: #F4F2F3;
  margin: 0;
}

@media only screen and (max-width:1470px) {
  .hero-sound-toggle {
    bottom: 7.5rem;
    left: 2.5rem;
  }
}

@media only screen and (max-width:1366px) {
  .hero-sound-toggle {
    bottom: 9rem;
    left: 2rem;
  }
}

@media only screen and (max-width: 1024px) {
  .hero-sound-toggle {
    display: none;
  }

  .hero-wrapper {
    height: var(--hero-height-mobile, 60vh);
  }

  .hero-content {
    padding: 3.75rem;
  }

  .hero-content h1 {
    font-size: 2.4rem;
    letter-spacing: 0.2125rem;
  }
}

@media only screen and (max-width: 767px) {
  .hero-content {
    padding: 3.75rem 1rem;
  }

  .hero-content h1 {
    font-size: 2.125rem;
  }
}