.WhyBuy-CardsWrapper {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #f1f1f1;
    padding: 0.5em 0;
}

.WhyBuy-CardsWrapper > div {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.WhyBuy-CardsWrapper > div > img {
    margin-right: 1.5em;
    max-width: 40px;
    max-height: 40px;
}

.WhyBuy-CardsWrapper > div > p {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.4;
}

@media ( max-width: 1000px ) {

    .WhyBuy-CardsWrapper {
        height: 200px;
        padding: 1em 0 0 0;
    }

    .WhyBuy-CardsWrapper > div.inactive {
        display: none;
    }

    .WhyBuy-CardsWrapper > div.active {
        display: flex;
        width: 50%;
    }

}