.step-section {
  display: flex;
  position: relative;
  overflow: hidden;
  gap: 24px;
  padding-top: 100px;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.3s ease;
  position: relative;
  width: 25%;
}

.step-item.active .step-title {
  color: #000;
}
.step-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #E0E0E0;
  margin-bottom: 20px;
  transition: 0.3s;
}
.step-item.active .step-circle {
  background: #FA4827;
  color: #fff;
}
.step-circle {
  background: #EEEEEE;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 29px;
  text-align: center;
  color: #BDBDBD;
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 700;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


.step-section .step-item:not(:first-child) .step-circle::before {
  content: '';
  position: absolute;
  width: calc(100% - 24px);
  height: 3px;
  background: #E0E0E0;
  inset-inline-end: calc(50% + 24px);
  border-radius: 4px;
  z-index: 2;
  top: 56px;
  transition: 0.3s;
}

.step-section .step-item.active .step-circle::before {
  background: #FA4827;
}

.step-content {
  text-align: center;
  padding: 32px;
  background: #FAFAFA;
  color: #BDBDBD;
  transition: 0.3s;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
}
.step-content.active {
  background: #000;
  color: white;
}

.step-content .step-content-title {
    font-size: 24px;
    line-height: 29px;
    color: #BDBDBD;
    font-weight: 700;
    margin-bottom: 24px;
    transition: 0.3s;
}

.step-content .step-content-description {
  font-size: 14px;
  line-height: 24px;
  color: #BDBDBD;
  font-weight: 400;
  transition: 0.3s;
  margin: 0;
}

.step-content.active .step-content-description {
  color: #E0E0E0;
}

.step-content.active .step-content-title {
  color: #fff;
}

.step-content .step-content-icon {
  margin-bottom: 16px;
}

.step-content.active .step-content-icon svg {
  filter: grayscale(0);
  opacity: 1;
}

.step-content .step-content-icon svg {
  height: 64px;
  transition: 0.3s;
  filter: grayscale(1);
  opacity: 0.4;
}

.step-content.active .step-content-icon i {
  filter: grayscale(0);
  opacity: 1;
}

.step-content .step-content-icon i {
  font-size: 64px;
  transition: 0.3s;
  filter: grayscale(1);
  opacity: 0.4;
}

@media (max-width: 768px) {
  .step-section {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    height: auto;
  }
  .step-item {
    min-width: 100vw;
    scroll-snap-align: center;
    flex-shrink: 0;
  }
}
