#block-capacity-plus-prefootergraphic {
  background: url("/sites/default/files/hot-orange-sparkles.webp") center center no-repeat;
  background-size: cover;
  position: relative;
  padding: 80px 20px;
  color: #fff;
  overflow: hidden;
}

#block-capacity-plus-prefootergraphic::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 1);
  z-index: 0;
  animation: breath 15s ease-in-out infinite;
}

@keyframes breath {
  0%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

#block-capacity-plus-prefootergraphic.visible::before {
  opacity: 0;
}

#block-capacity-plus-prefootergraphic > * {
  position: relative;
  z-index: 1;
}

