.hero__bodywrap {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;

}

/* hero video fullscreen */

.video__wrap {
  display: flex;
  justify-content: center;
}
.video__wrap video {
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1070.98px) {
  .video__wrap video {
    flex-grow: 0;
    max-height: 100svh;
  }
}


button#muteToggle {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  background-color: rgba(255,255,255,0.25);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}