.steps__wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}

.steps__item {
    min-height: 172px;
    flex-basis: calc((100% - 40px) / 3);
    overflow: hidden;
    border-radius: 28px;
}

.steps__item-number {
    border-radius: 50%;
    width: 31px;
    height: 31px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}
.steps__item-title{
    font-size: 24px;
    line-height: 140%;
    margin-bottom: 10px;
}
@media screen and (min-width: 991px) {
    .steps__item {
        padding: 34px 32px 18px 32px;
    }
}

@media screen and (max-width: 990.98px) {
    .steps__wrapper{
        flex-direction: column;

    }
    .steps__item {
        padding: 24px 22px 18px 22px;
        width: 100%;
        min-height: 140px;
    }
}