.steps-horizontal-wrapper {
  padding-bottom: 70px;
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.steps-horizontal-wrapper:before {
  opacity: 0.8;
  margin: 0 auto;
  max-width: 1160px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 80%) rotate(-90deg);
  border-radius: 100000px;
  background: linear-gradient(191deg, #F37C01 22.8%, #E50C0C 47.02%, #6C0E5C 76.59%, #0038A8 102.28%);
  filter: blur(100px);
  position: absolute;
  content: "";
  border-radius: 1000000px;
  aspect-ratio: 1/1;
  width: 100%;
}
.steps-horizontal {
  padding: 0 32px;
}
@media screen and (max-width: 767px) {
  .steps-horizontal {
    padding: 0 16px;
  }
}
.steps-horizontal h2 {
  margin-bottom: 40px;
  color: #0038A8;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 116%; /* 116.667% */
}
@media screen and (max-width: 900px) {
  .steps-horizontal h2 {
    font-size: 32px;
  }
}
.steps-horizontal .steps-container {
  margin: 0 auto;
  width: fit-content;
  display: flex;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
  row-gap: 32px;
}
@media screen and (min-width: 700px) {
  .steps-horizontal .steps-container:before {
    content:"";
    top: 28px;
    position: absolute;
    width: 100%;
    height: 1px;
    border: 1px dashed #EF6718;
  }
}
.steps-horizontal .step {
  position: relative;
  z-index: 2;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.steps-horizontal .step .number-container {
  width: 100%;
  position: relative;
}
.steps-horizontal .step:first-child .number-container:before {
  content: "";
  left: 0;
  width: 50%;
  position: absolute;
  top: 0;
  height: 100%;
  background-color: #fff;
}
.steps-horizontal .step:last-child .number-container:before {
  content: "";
  right: 0;
  width: 50%;
  position: absolute;
  top: 0;
  height: 100%;
  background-color: #fff;
}
.steps-horizontal .step h3 {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 46px;
  background: linear-gradient(135deg, #F37C01 4.28%, #E50C0C 57.58%, #6C0E5C 122.66%, #0038A8 179.23%);
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  
  color: #FFF;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
.steps-horizontal .step p {
  flex: 1;
  color: var(--Text, #3E3E3E);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 144.444% */
  margin-bottom:: 32px;
}





