.steps-container-phone {
    display: none;
}
.steps-container-desktop {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #FFF;
  padding: 0 40px;
  border-radius: 20px;
  gap: 20px;
  text-align: center;
}

.steps-container-desktop .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: baseline;
  flex: 1;
  padding: 25px 0;
}

.steps-container-desktop .step-label {
    background-color: #4db089;
    color: #FFF;
    padding: 2px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 400;
}

.steps-container-desktop .step-icon {
  width: 48px;
  height: 48px;
  margin: 10px 0 15px;
}

.steps-container-desktop .step p {
    margin: 0;
    font-size: 16px;
}

.steps-container-desktop .arrow {
  position: relative;
  font-size: 24px;
  color: #4db089;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-container-desktop .arrow::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 48px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url('arrow.svg') no-repeat center center;
  z-index: 1;
}

.steps-container-desktop .arrow::after {
  content:"";
  height: 100%;
  width: 2px;
  background: #f5f6fb;
  position: absolute;
  left: calc(50% - 1px);
  top: 0;
}


@media (max-width: 1109px) {
.steps-container-desktop {
    display: none;
}
.steps-container-phone {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: auto;
}

.steps-container-phone .step {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 94%;
    align-self: end;
}

.steps-container-phone .step-left {
    flex-direction: row;
    align-self: start;
}

.steps-container-phone .icon-block {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-container-phone .icon-block img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
}

.steps-container-phone .text-block {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  flex: 1;
  position: relative;
  text-align: right;
}

.steps-container-phone .step:not(:last-child) .text-block:before {
    content: '';
    height: 20px;
    position: absolute;
    width: 20px;
    bottom: -20px;
    left: 0;
    background: #FFF;
}

.steps-container-phone .step-left .text-block {
    text-align: left;
}

.steps-container-phone .step-left:not(:last-child) .text-block {
    border-bottom-right-radius: 0;
}

.steps-container-phone .step-right:not(:last-child) .text-block {
    border-bottom-left-radius: 0;
}

.steps-container-phone .step-left:not(:last-child) .text-block:before {
    right: 0;
    left: auto;
}


.steps-container-phone .arrow-circle {
  position: absolute;
  top: 20px;
  left: -30px;
  width: 40px;
  height: 40px;
  background: url('arrow.svg') no-repeat center center;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #FFF;
}

.steps-container-phone .step-right .arrow-circle {
  left: auto;
  right: -30px;
  transform: rotate(180deg);
}

.steps-container-phone .step-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  color: #FFF;
  padding: 2px 6px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.steps-container-phone .step:nth-child(5n+1) .icon-block, .steps-container-phone .step:nth-child(5n+1) .step-label { background-color: #3366cc; }
.steps-container-phone .step:nth-child(5n+2) .icon-block, .steps-container-phone .step:nth-child(5n+2) .step-label { background-color: #5db885; }
.steps-container-phone .step:nth-child(5n+3) .icon-block, .steps-container-phone .step:nth-child(5n+3) .step-label { background-color: #509bab; }
.steps-container-phone .step:nth-child(5n+4) .icon-block, .steps-container-phone .step:nth-child(5n+4) .step-label { background-color: #473182; }
.steps-container-phone .step:nth-child(5n) .icon-block, .steps-container-phone .step:nth-child(5n) .step-label { background-color: #1e274a; }

.steps-container-phone .text-block p {
  margin: 0;
  font-size: 12px;
}

}