.process-flow {
  padding: 9rem 1rem;
}
.process-flow ul {
  margin-top: 68px;
  display: flex;
  gap: 4rem;
  list-style-type: none;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.process-flow ul li .process-flow-box {
  position: relative;
}
.process-flow ul li h2 {
  width: 200px;
  line-height: 1.2;
  text-align: center;
  color: black !important;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 600;
  font-size: 1.5rem;
}
.process-flow ul li:nth-child(odd) h2 {
  top: -106px;
}
.process-flow ul li:nth-child(even) h2 {
  bottom: -90px;
}
.process-flow ul li:nth-child(3n+1) .arrow {
  border-bottom-color: #6455ee;
  border-right-color: #6455ee;
}
.process-flow ul li:nth-child(3n+1) .arrow::after {
  content: url(../assets/images/svg/right-arrow-1.svg);
}
.process-flow ul li:nth-child(3n+1) .arrow::before {
  background-color: #6455ee;
}
.process-flow ul li:nth-child(3n+2) .arrow {
  border-bottom-color: #e076f1;
  border-right-color: #e076f1;
}
.process-flow ul li:nth-child(3n+2) .arrow::after {
  content: url(../assets/images/svg/right-arrow-2.svg);
}
.process-flow ul li:nth-child(3n+2) .arrow::before {
  background-color: #e076f1;
}
.process-flow ul li:nth-child(3n+3) .arrow {
  border-bottom-color: #4dfcff;
  border-right-color: #4dfcff;
}
.process-flow ul li:nth-child(3n+3) .arrow::after {
  content: url(../assets/images/svg/right-arrow-3.svg);
}
.process-flow ul li:nth-child(3n+3) .arrow::before {
  background-color: #4dfcff;
}
.process-flow ul li:nth-child(even) .arrow {
  transform: scaleY(-1) rotate(48deg);
  top: -63px;
}
.process-flow .circle {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  padding: 1rem;
  box-shadow: 0 0 24px rgba(27, 22, 66, 0.04), 0 44px 74px rgba(27, 22, 66, 0.06);
}
.process-flow .circle img {
  width: 100%;
  padding: 1rem !important;
}
.process-flow .arrow {
  border: 9px solid black;
  position: absolute;
  border-top-color: transparent;
  border-left-color: transparent;
  width: 196px;
  height: 196px;
  border-radius: 50%;
  transform: rotate(48deg);
  bottom: 0;
  left: -37px;
  right: 0;
  top: -24px;
}
.process-flow .arrow::after {
  position: absolute;
  width: 30px;
  right: 12px;
  top: 4px;
  height: 30px;
  display: inline-block;
  transform: rotate(228deg);
}
.process-flow .arrow::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  left: 18.5px;
  top: 151px;
  transform: rotate(45deg);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

@media screen and (min-width: 720px) {
  .process-container {
    padding-left: 6px !important;
    padding-right: 6px !important;
    max-width: 97% !important;
  }
}
