@media not all and (min-width: 1536px) {
    .div-video,
    .div-image {
        width: 100% !important;
    }
}

.wp-block-acf-hero {
  width: 100%;
}

.div-video,
.div-image {
  position: absolute;
  overflow: hidden;
  width: calc(100% - var(--px));
  left: 0;
  height: 100%;
  pointer-events: none;
}

.video-hero,
.image-hero {
  position: absolute;
  aspect-ratio: 16/9;
  left: 50%;
  top: 50%;
  transform: translatex(-50%) translateY(-50%);
  height: auto;
  min-width: 113%;
  min-height: 115%;
  width: auto !important;
  z-index: 1;
}

.content-hero {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.content-hero h1 {
    background: linear-gradient(92deg, #020202 0.44%, #888 99.68%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.icon-sound {
  position: absolute;
  right: var(--px);
  bottom: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px var(--white);
  border-radius: 18px;
  padding: 8px;
  width: 48px;
  height: 48px;
  opacity: 0.6;
  transition: opacity 0.3s ease-out;
}

.icon-sound:hover {
  opacity: 1;
}

.btn-first-section {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 48px;
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  align-items: start;
  background: #DE2124;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  transition: height 0.3s ease-out;
}

.btn-first-section:hover {
    height: 100px;
}