.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: none;
}

.bg-item,
.bg-particle {
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform;
  transform-origin: center center;
  opacity: 1;
}

.bg-item img {
  display: block;
  width: 100%;
  height: auto;
}

.bg-particle svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.bg-particle polygon {
  fill: #f45366;
}

@media screen and (max-width: 743px) {
  .bg-item,
  .bg-particle {
    opacity: 0.95;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-item,
  .bg-particle {
    animation: none !important;
    transform: none !important;
  }
}