.HeroVideo {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.HeroVideo-video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.HeroVideo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.HeroVideo-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: center;
  padding: var(--spacing-md) 10px;
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.0775rem;
  background: rgba(255, 255, 255, 0.01);
  color: #ffffff;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

@media screen and (min-width: 600.02px) {

.HeroVideo-content {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 3.875rem;
}
  }

.HeroVideo-toggleButton {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 25px;
  height: 25px;
  background: transparent;
}

.HeroVideo-toggleButton svg {
    width: 100%;
    height: 100%;
    fill: #ffffff;
  }

.HeroVideo-toggleButton .HeroVideo-playIcon {
  display: block;
}

.HeroVideo-toggleButton .HeroVideo-pauseIcon {
  display: none;
}

.HeroVideo.is-Playing .HeroVideo-toggleButton .HeroVideo-pauseIcon {
    display: block;
  }

.HeroVideo.is-Playing .HeroVideo-toggleButton .HeroVideo-playIcon {
    display: none;
  }
