.section-trading_app {
    padding-bottom: 0;
}

.step {
    display: flex;
    justify-content: space-between;
    padding: 56px 0;
}

.step:first-child {
    padding-top: 0;
}

.step:last-child {
    padding-bottom: 0;
}

.step:nth-child(even){
    flex-direction: row-reverse;
}

.step-text_block {
    width: 54.25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 96px;
}

.step-number {
    display: block;
    width: 100%;
    max-width: 52px;
    margin-bottom: 32px;
}

.step-title {
    margin-bottom: 16px;
}

.step-text {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.step-links-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
}

.qr-image {
    max-width: 52px;
}

.step-img_block {
    width: 45.74%;
}

.step-img_block img {
    display: block;
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
}

@media (max-width: 1199px) {
    .step {
        flex-direction: column;
        padding: 48px 0;
    }

    .step:nth-child(even) {
        flex-direction: column;
    }

    .step-text_block {
        width: 100%;
        padding: 0;
        margin-bottom: 32px;
    }

    .step-img_block {
        width: 100%;
    }

    .step-img_block img {
        max-width: 728px;
        /*margin: auto;*/
    }
}

@media (max-width: 640px) {
    .step {
        padding: 44px 0;
    }
}

