.progress__text {
    margin-bottom: 42px;
    text-align: center;
}

.section__progress .progress__list {
    display: flex;
    column-gap: 20px;
    margin-right: -20px;
    margin-left: -20px;
    margin-bottom: 32px;
    padding: 22px 20px;
    background-color: rgb(255 255 255 / 50%);
    overflow-x: auto;
}

.progress__list-item {
    width: 260px;
    height: 220px;
    flex-shrink: 0;
    border-radius: 16px;
    font-weight: 300;
}

.progress__list-item-link {
    display: flex;
    padding: 32px 16px;
    flex-direction: column;
    align-items: center;
}

.progress__list-item-link p {
    color: #221F1F;
}

@media (max-width: 1279px) {
    .progress__list-item {
        background-color: #fff;
        box-shadow: 0 1px 3px 0 rgb(0 0 0 / 10%);
    }
}

.progress__list-item h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    color: #F9A351;
}

.progress__btn-wrapper {
    display: flex;
    justify-content: center;
}

@media (min-width: 1280px) {
    .section__progress .main-container {
        display: grid;
        grid-template-columns: 1fr 300px;
        align-items: end;
        grid-gap: 42px;
    }

    .progress__text {
        margin-bottom: 0;
        padding-right: 42px;
        text-align: left;
        line-height: 1.65;
    }

    .progress__text h2 {
        margin-bottom: 12px;
    }

    .progress__btn-wrapper {
        grid-column-start: 2;
        grid-row-start: 1;
        justify-content: flex-end;
    }

    .section__progress .progress__list {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-column: span 2;
        margin-right: 0;
        margin-left: 0;
        padding: 10px;
        border-radius: 20px;
        box-shadow: 0 1px 3px 0 rgb(0 0 0 / 15%);
    }

    .progress__list-item {
        width: 100%;
        height: auto;
        transition-duration: .25s;
    }

    .progress__list-item.active,
    .progress__list-item:hover {
        background-color: #fff;
        box-shadow: 0 1px 3px 0 rgb(0 0 0 / 10%);
    }

    .progress__list-item h3 {
        font-size: 21px;
    }
}