.ordered-process {
    counter-reset: ordered-process-redesign;
}

.ordered-process .section-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 2rem;
    color: #222222;
}

.process-step {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 24px;
}

.process-step .icon-circle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    aspect-ratio: 1;
    margin-top: 24px;
    margin-bottom: 16px;
    background: #fff;
    border: 1px solid #EEEEEE;
    border-radius: 50%;
}
.process-step .icon-circle svg {
    max-width: 40px;
}
.process-step .icon-circle:after {
    counter-increment: ordered-process-redesign;
    content: counter(ordered-process-redesign);
    display: inline-block;
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 56px;
    font-weight: 400;
    position: absolute;
    text-align: center;
    width: 100%;
    color: #F4E5EA;
    bottom: 50%;
    right: 50%;
    z-index: -1;
}

.process-step .process-step-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #222222;
}

.process-step .process-step-description {
    font-weight: 400;
    color: #535353;
}
