.clubmember .title {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 0;
    color: #CE141B;
    margin: 0;
    text-transform: uppercase;
}

.clubmember .sub-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0;
    font-style: normal;
}

.advant {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
}

.advant>div:not(:first-of-type) {
    display: flex;
    align-items: center;
}

.advant>div>div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.advant>div:not(:first-child):not(:last-child)>div {
    border-right: 1px solid #707070;
}

.advant>div>div>* {
    width: 100%;
    text-align: center;
}

.advant>div>div>img {
    height: 35px;
    width: auto;
}

.advant>div>div p:first-of-type {
    font-size: 18px;
    font-weight: 400;
    color: #211D1E;
    text-transform: uppercase;
    margin: 0;
}

.advant>div>div p:last-child {
    font-size: 18px;
    font-weight: 700;
    color: #707070;
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 767px) {
    .advant {
        display: flex;
        flex-wrap: wrap;
    }
    .advant>div {
        margin-bottom: 15px;
        text-align: center;
    }
    .advant>div>div {
        border: none !important;
    }
    .clubmember .title {
        font-size: 23px;
        color: inherit;
    }
    .clubmember .sub-title {
        display: none;
    }
    .advant>div:first-of-type {
        width: 100%;
    }
    .advant>div:not(:first-of-type) {
        width: 50%;
        background-color: #ffba15;
        margin: 0;
        padding: 20px 5px;
    }
    .advant>div>div p:first-of-type {
        font-size: 11px;
        color: #fff;
    }
    .advant>div>div p:last-child {
        font-size: 12px;
        color: #cd141a;
    }
    .advant>div>div>img {
        background-color: #fff;
        padding: 5px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        object-fit: contain;
    }
}