.history {
    padding: 80px 104px 114px 104px;
}

.history__heading {
    margin-bottom: 80px;
}

.history__items {
    display: flex;
    flex-direction: column;
}

.history__item {
    padding: 20px 0 40px 0;
    display: flex;
    justify-content: space-between;
    gap: 81px;
    align-items: center;
    border-top: 0.50px solid #FFF;
}

.history__item:last-child {
    border-bottom: 0.50px solid #FFF;
}

.history__number {
    flex-basis: 150px;
}

.history__text {
    flex-basis: 420px;
    min-width: 420px;
}

@media screen and (max-width: 1024.98px) {
    .history {
        padding: 80px 0 114px 0;
    }
}

@media screen and (max-width: 599.98px) {
    .history {
        padding: 64px 0 64px 0;
    }

    .history__heading {
        margin-bottom: 64px;
    }

    .history__number {
        flex-basis: 100px;
    }

    .history__text {
        min-width: 177px;
    }
}