.hero-video {
  position: relative;
  display: flex;
  max-width: 1920px;
  margin: 0 auto 120px;
}

.welcome-video {
  margin: 8px;
  width: calc(100% - 16px);
  border-radius: 12px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.hero-video-content {
  position: absolute;
  left: 100px;
  bottom: 100px;
  right: 32px;
  z-index: 1;
}
.hero-video-content .h2 {
  color: white;
  margin-bottom: 32px;
  max-width: 1200px;
}

.hero-video-bg {
  position: absolute;
  left: 8px;
  bottom: 8px;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  aspect-ratio: 16/9;
}

.mute-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: ease 0.3s;
  background: rgba(18, 26, 54, 0.2);
}
.mute-btn svg {
  fill: white;
  width: 18px;
  height: 18px;
}
.mute-btn:hover {
  cursor: pointer;
  background: #1582E7;
}
.mute-btn .unmuted {
  display: none;
}

.mute-btn.active .unmuted {
  display: block;
}
.mute-btn.active .muted {
  display: none;
}

@media (max-width: 1100px) {
  .welcome-video {
    margin: 0;
    width: 100%;
    border-radius: 0;
  }
  .hero-video-bg {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
  }
  .hero-video-content {
    left: 32px;
    bottom: 32px;
  }
  .hero-video-content .h2 {
    font-size: 46px;
  }
}
@media (max-width: 768px) {
  .hero-video {
    margin: 0 auto 48px;
  }
  .hero-video-content {
    left: 16px;
    right: 16px;
    bottom: 48px;
  }
  .hero-video-content .h2 {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .welcome-video, .hero-video-bg {
    aspect-ratio: 360/470;
  }
  .mute-btn {
    bottom: unset;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
  }
  .mute-btn svg {
    width: 14px;
    height: 14px;
  }
  .mute-btn:hover {
    background: rgba(18, 26, 54, 0.2);
  }
}
.content-centered .hero-video-content {
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 860px;
  text-align: center;
}

@media (max-width: 768px) {
  .content-centered .hero-video-content {
    top: unset;
    bottom: 24px;
    padding: 0 16px;
    transform: translate(-50%, 0);
  }
}