.section-title {
    margin-bottom: 90px;
}

/* Main */
.work_process_content {
    width: 100%;
    position: relative;
}

.work_process_line {
    width: 100%;
    height: 2px;
    background-color: #292929;
    position: absolute;
    top: 50%;
}

/* Steps */

.step_text {
    font-weight: 500;
    display: flex;
    text-align: center;
    justify-content: center;
}

.work_process_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.step_down {
    margin-top: 16%;
}

.work_process_step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}

.work_process_step::after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: #ffffff;
    position: absolute;
    box-shadow: 0 0 0 2px #292929;
    top: 48.5%;
}

.step_down::after {
    top: -41%;

}


.step_icon {
    width: 75px;
    height: 75px;
}

