.section-how-we-work .items .item{
    width: calc(50% - 16px);
}
.section-how-we-work .items .item .number{
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 1.2px;
    color: var(--color-purple);
    display: flex;
    column-gap: 16px;
    align-items: flex-end;
}
.section-how-we-work .items .item .number:after{
    content: "";
    width: 100%;
    height: 1px;
    background: var(--color-purple);
    display: block;
    margin-bottom: 3px;
}
.section-how-we-work .items .item .text{
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    vertical-align: middle;
    color: var(--color-white);
}

@media (min-width: 768px) {
    .section-how-we-work .items .item{
        width: calc((100% - 64px) / 3);
    }
    .section-how-we-work .section-header{
        margin-bottom: 36px;
    }
}
@media (min-width: 1200px) {
    .section-how-we-work .items{
        column-gap: 50px;
    }
    .section-how-we-work .items .item{
        width: calc((100% - 5 * 50px) / 6);
        row-gap: 20px;
    }
    .section-how-we-work .items .item .number:after{
        width: 50%;
    }
}
@media (min-width: 1400px) {
    .section-how-we-work .items .item .text{
        font-weight: 500;
        font-size: 24px;
        line-height: 24px;
    }
}