
.cvx-pv-wrap {
  width: 100%;
  overflow: hidden;
}
.cvx-pv-svg {
  display: block;
  width: 100%;
  height: auto;
}
.cvx-pv-svg .cvx-pv-big,
.cvx-pv-svg .cvx-pv-top,
.cvx-pv-svg .cvx-pv-bottom {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}
.cvx-pv-svg .cvx-pv-big {
  transition-delay: 0s;
}
.cvx-pv-svg .cvx-pv-top {
  transition-delay: 0.35s;
}
.cvx-pv-svg .cvx-pv-bottom {
  transition-delay: 0.7s;
}
.cvx-pv-svg.cvx-pv-in .cvx-pv-big,
.cvx-pv-svg.cvx-pv-in .cvx-pv-top,
.cvx-pv-svg.cvx-pv-in .cvx-pv-bottom {
  opacity: 1;
  transform: translateY(0);
}