@media not all and (min-width: 1024px) {
  .div-video,
  .div-image,
  .div-image-support {
    width: calc(100% - 80px) !important;
    left: 40px !important;
  }

  .icon-sound {
    right: calc(2 * var(--px)) !important;
  }
}

@media not all and (min-width: 768px) {
  .div-video,
  .div-image,
  .div-image-support {
    width: calc(100% - 40px) !important;
    left: 20px !important;
  }
}

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

.div-video,
.div-image,
.div-image-support {
  position: absolute;
  overflow: hidden;
  width: calc(100% - 120px);
  left: 60px;
  height: 100%;
  border-radius: 18px;
  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;
}


.div-video::after,
.div-image::after,
.div-image-support::after {
  position: absolute;
  content: '';
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.div-video::after {
  background: rgba(59, 56, 60, 0.20);
}

.div-image::after {
  background: linear-gradient(180deg, rgba(59, 56, 60, 0.2) 28.7%, rgba(59, 56, 60, 0.90) 100%);
}

.div-image-support::after {
  background: rgba(59, 56, 60, 0.20);
}

.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 {
  color: #FBFBFB;
}

.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;
}