

.js-scene {
  display: grid;
  column-gap: 1rem;
  row-gap: 2rem;
  grid-template-rows: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 1440px;
}
.js-scene .step {
  text-align: center;
}
.relative {
  position: relative;
}
svg:not(:root) {
  overflow: hidden;
}
.row-span-full {
  grid-row: auto;
  grid-column: 1/-1;
  display: block;
  font-size: 1rem;
  line-height: 1.5;
}
.row-span-full path {
  background-color: #f5f5f5;
}
.stroke-dasharray-1300 {
  stroke-dasharray: 1300;
}
.svg-inline--fa {
  height: 50px;
}
.opacity-15 {
  opacity: 0.15;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
.js-step-check {
  left: 50%;
  bottom: -69px;
  translate: -50% 0 0;
  --tw-translate-x: -50%;
  --tw-translate-y: -0px;
  width: 2.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  color: white;
  background-color: #f5f5f5;
}
.bg-orange {
  background-color: #ff6c15;
}
.absolute {
  position: absolute;
}
.rounded-full {
  border-radius: 50%;
}
.svg-inline--fa .fa-secondary {
  fill: #ff6c15;
  opacity: 0.4;
}
.svg-inline--fa .fa-primary {
  fill: #ff6c15;
  opacity: 1;
}
.js-step-text {
  font-size: 1.125rem;
  line-height: 1.55rem;
  font-weight: 500;
  margin: 0;
  margin-top: 1.25em;
}

.bz-main-wrap {
  background: #fff;
  height: 100vh;
  padding: 50px;
  margin: 50px;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.relative.step.step-0.active .opacity-15,
.relative.step.step-2.active .opacity-15,
.relative.step.step-1.active .opacity-15 {
  opacity: 1;
}

.relative.step.step-0.active .bg-gray-50,
.relative.step.step-2.active .bg-gray-50,
.relative.step.step-1.active .bg-gray-50 {
  background: #4054ff;
}


@media (max-width: 768px) {
  .js-scene {
    grid-template-columns: 1fr; /* Stack boxes vertically */
  }
  .js-step-check {
    left: -20px; /* Adjust checkmark position if needed for vertical layout */
    bottom: 50%;
    translate: 0 50% 0;
  }
}





