.procees {
	padding: 0px 0 0px 0;
  position: relative;
}

.pr_main span::after {
  margin: inherit !important;
}

.prTitle span {
  font-size: 15px;
  font-weight: 600;
  color: #cf03f9;
  text-transform: uppercase;
}

.prTitle h4 {
  font-size: 15px;
  font-weight: 600;
  color: #cf03f9;
  text-transform: capitalize;
}

.prTitle span::after {
  content: "";
  width: 5%;
  display: block;
  margin: 0 auto;
  height: 2px;
  background: linear-gradient(75deg, #0000ff, #2962ff 50.31%, #d500f9);
  position: relative;
  top: 3px;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  flex-wrap: wrap;
}

.process-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  z-index: 1;
  transition: width 0.5s ease;
}

.step-box {
  width: 150px;
  height: 150px;
  background-color: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-align: center;
  border: 2px dotted #000;
  transition: all 0.5s ease;
  transform: scale(1);
  cursor: pointer;
  z-index: 2;
}

.step-box span {
  font-size: 13px;
  margin-top: 2px;
}

.step-icon img {
  width: 50px;
  aspect-ratio: 1 / 1;
  filter: invert(12%) sepia(35%) saturate(1000%) hue-rotate(220deg)
    brightness(70%) contrast(120%);
}

.step-box.completed {
  background-color: #f39c12;
  color: #000;
  border: 2px dotted #f39c12;
}

.step-box.active {
  background-color: #2ecc71;
  color: white;
  transform: scale(1.2);
  border: 2px dotted #2ecc71;
}

.step-number {
  font-size: 16px;
  font-weight: bold;
}

.step-label {
  font-size: 12px;
  margin-top: 5px;
}

@media (max-width: 1199.98px) {
  .step-box {
    width: 150px;
    height: 150px;
  }

  .step-icon img {
    width: 50px;
  }

  .step-box span {
    font-size: 16px;
  }
}

@media (max-width: 1199.98px) {
  .process-line {
    left: 1px;
  }
}

@media (max-width: 768.98px) {
  .steps-container {
    gap: 50px;
    justify-content: center;
    align-items: center;
  }

  .process-line {
    display: none;
  }
}
