
.membership-benefits {
    display: flex;
    margin: 0 87px;
    width: calc(100% - 174px);
}

.membership-benefits .item {
    width: 33.333333%;
    max-width: 33.333333%;
    margin: 0 23px;
    background: #FBF0EC;
}

.membership-benefits .item .item__title {
    padding-top: 16px;
    padding-bottom: 3px;
    background: #EFCBBB;
    font-family: Rollerscript;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 56px;
    /* identical to box height */

    color: #000000;
    text-align: center;
}

.membership-benefits .item .item__desc {
    padding: 20px 50px 46px;
}

.membership-benefits .item .item__desc p {
    margin-bottom: 0;
    font-family: Roboto;
    /*font-style: italic;*/
    font-weight: normal;
    font-size: 14px;
    line-height: 14px;
    /* identical to box height, or 100% */

    text-align: center;
    color: #000000;
}

.membership-benefits .item .item__desc p strong {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #000000;
}

.membership-benefits .item .item__desc p + p {
    margin-top: 10px;
}

.line-through {
    position: relative;
    margin-left: 31px;      
    z-index: 0;
}

.line-through:after {
    content: '';
    position: absolute;
    top: 7px;
    left: -2px;
    width: calc(100% + 5px);
    height: 2px;
    background: #ED5F48;
    z-index: -1;
}



@media (max-width: 900px) {

    .membership-benefits {
        display: flex;
        margin: 30px;
        width: calc(100% - 60px);
        flex-direction: column;
    }

    .membership-benefits .item {
        width: 100%;
        max-width: 100%;
        margin: 0 0 30px;
        background: #FBF0EC;
    }
    
}