.section-about-numbers .container {
    max-width: 1432px;
}

.section-about-numbers__steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 55px;
    margin-top: -10px;
}

.section-about-numbers__step {
    width: 100%;
    max-width: 308px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.section-about-numbers__step:after {
    content: "";
    position: absolute;
}

.section-about-numbers__step.item-1:after {
    width: 97px;
    height: 118px;
    background: url(../../images/waves/step-wave-01.svg);
    top: 70px;
    right: -77px;
}

.section-about-numbers__step.item-2:after {
    width: 123px;
    height: 82px;
    background: url(../../images/waves/step-wave-02.svg);
    top: -28px;
    right: -110px;
}

.section-about-numbers__step.item-3:after {
    width: 118px;
    height: 124px;
    background: url(../../images/waves/step-wave-03.svg);
    top: -5px;
    right: -85px;
}

.section-about-numbers__step.item-2 {
    margin-top: 120px;
}

.section-about-numbers__step.item-3 {
    margin-top: 107px;
}

.section-about-numbers__step .title {
    font-size: 38px;
    font-weight: 300;
    margin-top: 25px;
    margin-bottom: 15px;
    padding: 0;
}

.section-about-numbers__step .title strong {
    color: #AD3275;
    font-weight: 600;
    display: block;
}

.section-about-numbers__step div {
    font-size: 22px;
    font-weight: 300;
    border-radius: 6px;
    background: #fff;
    padding: 20px;
}

@media (max-width: 992px) {
    .section-about-numbers__steps {
        gap: 20px;
    }

    .section-about-numbers__step .title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .section-about-numbers__steps {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }

    .section-about-numbers__step .title strong {
        display: inline-block;
    }

    .section-about-numbers__step.item-2,
    .section-about-numbers__step.item-3 {
         margin-top: 30px;
    }

    .section-about-numbers__step.item-1:after {
        top: 15px;
        left: -70px;
        right: auto;
    }

    .section-about-numbers__step.item-2:after {
        top: 35px;
        right: auto;
        left: -95px;
    }

    .section-about-numbers__step.item-3:after {
        top: -5px;
        right: 0;
        left: -70px;
    }

}