.steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step {
    z-index: 0;
    position: relative;
    min-height: 190px;
    color: #051854;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    line-height: 32px;
    flex: 1 1 0;
}

.step__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #DAE0E5;
    transform: skewX(-13deg);
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.step__num {
    font-family: "Nekst";
    font-weight: bold;
    color: rgba(0, 146, 243, .2);
}

@media screen and (min-width: 1024px) {
    .step {
        text-align: center;
        font-size: 24px;
    }

    .step:not(:first-child) {
        margin-left: 48px;
    }

    .step:nth-child(1) span {
        max-width: 228px;
    }

    .step:nth-child(2) span {
        max-width: 239px;
    }

    .step:nth-child(3) span {
        max-width: 343px;
    }

    .step__num {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate3d(-50%, -50%, 0);
        z-index: -1;
        margin-top: -17px;
        font-size: 200px;
    }
}

@media screen and (max-width: 1023px) {
    .steps {
        flex-direction: column;
        align-items: stretch;
        margin: 0 14px;
    }

    .step {
        display: flex;
        padding: 0 16px;
        min-height: 120px;
        font-size: 16px;
    }

    .step:not(:first-child) {
        margin-top: 16px;
    }

    .step__num {
        font-size: 100px;
        line-height: 120px;
        flex: 0 0 70px;
    }

    .step span {
        flex: 1 1 0;
        line-height: 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .step {
        font-size: 19px;
        padding: 0 32px;
    }
}