.c-summary {
    padding: 3rem 1rem;
}

.c-summary__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    margin-bottom: 50px;
    margin-top: 75px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto 2.5rem;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0;
}

.c-summary__item:last-child {
    margin: 0 auto;
}

.c-summary__info {
    margin: 0 auto;
    max-width: 720px;
    padding: 12px;
    transform: translateY(-24px);
    width: 85%;
    background: white;
    border-radius: 12px;
}

.c-summary__title {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    color: var(--blue);
    margin-bottom: 16px;
}

.c-summary__text {
    font-size: 1rem;
    line-height: normal;
    text-align: center;
    color: #313235;
}

@media screen and (min-width: 768px) {
    .c-summary__item {
        gap: 40px;
    }

    .c-summary__title {
        font-size: 36px;
        color: #1D1D1F;
    }

    .c-summary__text {
        font-size: 1.1rem;
        color: #000000;
    }

    .c-summary__info {
        background: transparent;
        transform: translateY(0);
    }


}

@media screen and (min-width: 1000px) {

    .c-summary__item {
        flex-direction: row;
    }

    .c-summary__item:nth-child(odd) {
        flex-direction: row-reverse;
    }
    .c-summary__title,
    .c-summary__text {
        text-align: left;
    }
}