.section-trading_app .container {
    position: relative;
}

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

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

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

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

.step-text {
    width: calc(50% - 96px/2);
    position: relative;
}

.step-title {
    padding-top: 64px;
}

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

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

.step-img {
    width: calc(50% - 96px/2);
}

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

@media (min-width: 1025px) {
    .step:nth-child(2) .step-title{
        max-width: 270px;
    }

    .step:nth-child(4) .step-title{
        max-width: 320px;
    }
}

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

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

    .step-text {
        width: 100%;
    }

    .step-title {
        font-size: 18px;
        padding-top: 0;
    }

    .step-img {
        width: 100%;
    }

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









.scroll-container {
    position: absolute;
    left: calc(50% - 2px);
    top: 0;
    bottom: 0;
    width: 4px;
}

.scroll-line {
    width: 4px;
    height: 100%;
    background-color: #F0F0F0;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    width: 4px;
    height: 64px;
    z-index: 1;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
}

.scroll-progress {
    position: absolute;
    top: 0;
    width: 4px;
    height: 0;
    background-color: #FF515E;
}

.scroll-point {
    position: absolute;
    top: 60px;
    right: -68px;
    z-index: 2;
}

.step:nth-child(even) .scroll-point{
    right: inherit;
    left: -68px;
}

.circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #FF515E;
    background-color: #fff;
    color: #FF515E;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
}

.active .circle {
    border-color: #FF515E;
    background-color: #FF515E;
    color: white;
}

@media (max-width: 1024px) {
    .scroll-container {
        left: 32px;
    }

    .step-title-wrap {
        position: relative;
    }

    .scroll-point {
        top: 50%;
        transform: translateY(-50%);
        left: -66px;
    }

    .step:nth-child(even) .scroll-point {
        top: 50%;
        transform: translateY(-50%);
        left: -66px;
    }
}

@media (max-width: 640px) {
    .scroll-point {
        left: -58px;
    }

    .step:nth-child(even) .scroll-point {
        left: -58px;
    }
}