.steps__row {
    display: flex;
}

.steps_image-left .steps__row {
    flex-direction: row-reverse;
}

.steps__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.steps__item {
    display: flex;
    gap: 10px;
}

.steps__item-number {
    flex-shrink: 0;
    padding: 8px;
    font-size: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    width: 40px;
    height: 40px;
}

.steps__item-text {
    padding: 8px 16px;
    font-size: 21px;
    border-radius: 16px;
    width: 100%;
}

.steps__bottom-text {
    border-radius: 24px;
    background: #F105EF;
    padding: 8px 24px;
    font-weight: 700;
}

.steps__btn {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 992px) {
    .steps__row {
        align-items: center;
        gap: 58px;
    }

    .steps__body {
        flex-basis: 714px;
    }

    .steps__image {
        flex-basis: 442px;
    }

    .steps__text {
        margin-bottom: 40px;
    }

    .steps__bottom-text {
        margin-top: 40px;
    }
}

@media screen and (max-width: 991.98px) {
    .steps__row {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .steps_image-left .steps__row {
        flex-direction: column-reverse;
    }

    .steps__text {
        margin-bottom: 20px;
    }

    .steps__bottom-text {
        margin-top: 20px;
    }
}
