#step-wrap ul {
  --g-step-icon-size: 2.4rem;
  --g-step-arrow-gap: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding-left: 0;
  gap: var(--g-step-arrow-gap);
  row-gap: 2rem;
}
@media (min-width: 1025px) and (max-width: 1279px) {
  #step-wrap ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #step-wrap ul li.arrow:nth-child(6) {
    display: none;
  }
  #step-wrap ul li.arrow:nth-child(12) {
    display: none;
  }
  #step-wrap ul li:not(.arrow) {
    width: calc((100% - (var(--g-step-arrow-gap) * 2 + var(--g-step-icon-size)) * 2) / 3) !important;
  }
}
@media (min-width: 601px) and (max-width: 1024px) {
  #step-wrap ul {
    --g-step-arrow-gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #step-wrap ul li.arrow:nth-child(6) {
    display: none;
  }
  #step-wrap ul li.arrow:nth-child(12) {
    display: none;
  }
  #step-wrap ul li:not(.arrow) {
    width: calc((100% - (var(--g-step-arrow-gap) * 2 + var(--g-step-icon-size)) * 2) / 3) !important;
  }
}
@media (min-width: 0) and (max-width: 600px) {
  #step-wrap ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #step-wrap ul li.arrow:nth-child(4) {
    display: none;
  }
  #step-wrap ul li.arrow:nth-child(8) {
    display: none;
  }
  #step-wrap ul li:not(.arrow) {
    width: calc((100% - (var(--g-step-arrow-gap) * 2 + var(--g-step-icon-size)) * 1) / 2) !important;
  }
}
#step-wrap ul li {
  --g-step-color: #7C1077;
}
#step-wrap ul li:nth-child(3) {
  --g-step-color: #6D0E74;
}
#step-wrap ul li:nth-child(3) + .arrow {
  --g-step-color: #6D0E74;
}
#step-wrap ul li:nth-child(5) {
  --g-step-color: #550C6F;
}
#step-wrap ul li:nth-child(5) + .arrow {
  --g-step-color: #550C6F;
}
#step-wrap ul li:nth-child(7) {
  --g-step-color: #430A6B;
}
#step-wrap ul li:nth-child(7) + .arrow {
  --g-step-color: #430A6B;
}
#step-wrap ul li:nth-child(9) {
  --g-step-color: #2D0866;
}
#step-wrap ul li.arrow {
  --g-icon-size: var(--g-step-icon-size);
  mask-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.39 9.60326L6.60539 16.6344C5.68712 17.4638 4.25 16.7907 4.25 15.5312L4.25 1.46883C4.25 0.209324 5.68712 -0.463822 6.60538 0.365569L14.39 7.39674C15.0367 7.9808 15.0367 9.0192 14.39 9.60326Z' fill='%23000'/%3E%3C/svg%3E%0A");
  background-color: var(--g-step-color);
}
#step-wrap ul li:not(.arrow) {
  --g-row-item-count: 4;
  position: relative;
  text-align: center;
  width: calc((100% - (var(--g-step-arrow-gap) * 2 + var(--g-step-icon-size)) * 3) / 4);
}
#step-wrap ul li:not(.arrow)::before {
  content: "";
  display: block;
  padding-top: 100%;
}
#step-wrap ul li:not(.arrow) .step-item {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 100rem;
  overflow: hidden;
}
#step-wrap ul li:not(.arrow) .step-item .step-number {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--g-step-color);
  color: #FFF;
  width: 100%;
  padding: 1.5rem 0 0.5rem;
}
#step-wrap ul li:not(.arrow) .step-item .step-body {
  --g-font-size: var(--isprk-fs-3);
  width: 100%;
  height: 100%;
  padding-top: calc(var(--g-font-size) * 1.5 + 1rem);
  border: 1rem solid var(--g-step-color);
  border-radius: 100rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  #step-wrap ul li:not(.arrow) .step-item .step-body {
    --g-font-size: 2.2rem;
  }
}
