.product-features {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.product-features svg {
  width: 100%;
}
.product-features .product-feature {
  display: flex;
  justify-content: center;
  gap: 0;
}
.product-features .product-feature:nth-of-type(even) {
  flex-direction: row-reverse;
}
.product-features .product-feature:nth-of-type(even) .product-image {
  transform: rotate(-4deg) translateX(-30%);
}
@media (min-width: 768px) {
  .product-features .product-feature:nth-of-type(even) .product-image {
    transform: translateX(-30%);
  }
}
@media (min-width: 1024px) {
  .product-features .product-feature:nth-of-type(even) .product-image {
    transform: none;
  }
}
@media (min-width: 1024px) {
  .product-features .product-feature {
    gap: 10rem;
  }
}
.product-features .product-feature .product-image {
  position: relative;
  text-align: center;
  display: inline-block;
  transform: rotate(4deg) translateX(30%);
}
@media (min-width: 768px) {
  .product-features .product-feature .product-image {
    transform: translateX(30%);
  }
}
@media (min-width: 1024px) {
  .product-features .product-feature .product-image {
    transform: none;
  }
}
.product-features .product-feature .product-image .hover-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.product-features .product-feature .product-image img {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 100%;
  height: auto;
  opacity: 0;
  will-change: transform;
}
.product-features .product-feature .text {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 160px;
}
.product-features .product-feature .text p {
  max-width: 480px;
  margin-bottom: 2.4rem;
  display: none;
}
@media (min-width: 768px) {
  .product-features .product-feature .text p {
    display: block;
  }
}
@media (min-width: 1024px) {
  .product-features .product-feature {
    gap: 18rem;
  }
}
.product-features svg {
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .product-features {
    gap: 8rem;
  }
}/*# sourceMappingURL=block-product-features.css.map */