
.cvx-sc-wrap {
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 700 / 500;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cvx-sc-svg {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
}
.cvx-sc-svg .cvx-sc-main,
.cvx-sc-svg .cvx-sc-float {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}
.cvx-sc-svg .cvx-sc-main {
  transition-delay: 0s;
}
.cvx-sc-svg .cvx-sc-float {
  transition-delay: 0.35s;
}
.cvx-sc-svg.cvx-sc-in .cvx-sc-main,
.cvx-sc-svg.cvx-sc-in .cvx-sc-float {
  opacity: 1;
  transform: translateY(0);
}