.process {
    display: flex;
    padding-block: var(--tb-val-xl);
    background-color: var(--bg-l-purple);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    position: relative;
    margin-top: var(--tb-val-m);
    width: 100%;
    justify-content: space-around;
    align-items: flex-start;
    gap: 16px;
    counter-reset: stepNum;
    isolation: isolate;
}

.process-step:before {
    content: "";
    display: block;
    position: absolute;
    top: 28px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--acc-l-purple);
    z-index: -1;
}

.process-step-el {
    width: 100%;
    max-width: 153px;
}

.process-step-num {
    display: flex;
    margin-inline: auto;
    width: 50px;
    height: 50px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3em;
    color: var(--acc-purple);
    background-color: #f6f6fa;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.process-step-num:before {
    counter-increment: stepNum;
    content: counter(stepNum);
}

.process-step-desc {
    margin-top: var(--tb-val-s);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.03em;
    color: var(--clr-d-gray);
    text-align: center;
}

@media screen and (max-width: 1440px) {
    .process-step-el {
        max-width: 103px;
    }

    .process-step-num {
        font-size: 18px;
    }

    .process-step-desc {
        font-size: 14px;
    }
}

@media screen and (max-width: 1024px) {
    .process-btn {
        margin-top: var(--tb-val-m);
        order: 1;
    }

    .process-step {
        padding-block: 24px;
        flex-flow: column;
        gap: 24px;
    }

    .process-step:before {
        top: 0;
        left: 22px;
        width: 1px;
        height: 100%;
    }

    .process-step-el {
        display: flex;
        max-width: 100%;
        align-items: center;
        gap: 24px;
    }

    .process-step-num {
        margin: 0;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .process-step-desc {
        margin: 0;
        text-align: left;
    }
}

@media screen and (max-width: 552px) {
    .process-step:before {
        left: 20px;
    }

    .process-step-num {
        width: 41px;
        height: 41px;
        font-size: 13px;
    }
}