.discount-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 40px 0;
}

.discount-cards .item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 255px;
}

.discount-cards .item:last-of-type:before {
    content: 'Максимальная привилегия';
    position: absolute;
    z-index: 1;
    top: -13px;
    align-self: center;
    padding: 3px 17px 4px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    color: #ffffff;
    background-color: #615855;
}

.discount-cards .item .image {
    padding: 40px 45px;
    width: 100%;
    height: 255px;
    margin: 0 0 20px;
    background: transparent 50% 50% no-repeat scroll;
    background-size: cover;
}

.discount-cards .item .image .title {
    margin: 0 0 22px;
    font-size: 32px;
    font-weight: 300;
    color: #FAF8EE;
}

.discount-cards .item .image .percent {
    font-size: 64px;
    font-weight: 300;
    color: #FAF8EE;
}

.discount-cards .item .image .discount-title {
    font-size: 15px;
    font-weight: 400;
    color: #FAF8EE;
}

.discount-cards .item .amount,
.discount-cards .item .or,
.discount-cards .item .visits {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
}

.discount-cards .item .or {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin: 10px 0;
}

.discount-cards .item .or:after {
    content: '';
    width: 100%;
    height: 1px;
    margin: 0 0 0 10px;
    background-color: #615855;
}

@media screen and (max-width: 1219px) {
    .discount-cards {
        flex-direction: column;
        margin: 10px 0 20px 0;
    }

    .discount-cards .item {
        max-width: 320px;
        width: 100%;
    }

    .discount-cards .item:not(:last-of-type) {
        margin: 0 0 30px 0;
    }

    .discount-cards .item .image {
        padding: 30px 55px;
        width: 100%;
        height: 215px;
        margin: 0 0 10px;
    }

    .discount-cards .item .image .title {
        margin: 0;
    }

    .discount-cards .item .image .discount-title {
        font-size: 16px;
    }

    .discount-cards .item .amount,
    .discount-cards .item .or,
    .discount-cards .item .visits {
        font-size: 14px;
    }

    .discount-cards .item .or {
        margin: 5px 0;
    }
}