#ocexAdvantage {
    width: 100%;
    box-sizing: border-box;
    padding: 60px 20px;
    background-color: #f7f7f7;

    /* border:1px solid red; */
}

#ocexAdvantage .advRow {
    display: flex;
    justify-content: space-around;

    width: 100%;

    max-width: 1000px;
    margin-top: 40px;

    margin: 0 auto;
}

#ocexAdvantage .advGap {
    margin-left: 40px;
}

#ocexAdvantage .advCard {
    display: flex;
    width: 420px;
    height: 180px;
    margin-bottom: 40px;

    /* border:1px solid red; */
}

#ocexAdvantage img {
    width: 60px;
    height: 60px;
    margin-right: 30px;

    /* border:1px solid red; */
}

#ocexAdvantage .advCardTitle {
    font-size: 21px;
    font-weight: 600;
}


@media screen and (max-width: 768px) {
    #ocexAdvantage {
        width: 100%;
        box-sizing: border-box;
        padding: 60px 20px;
        background-color: #f7f7f7;
    }
    
    #ocexAdvantage .advRow {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 0px;
    }
    
    #ocexAdvantage .advGap {
        margin-left: 0px;
    }
    
    #ocexAdvantage .advCard {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height:auto;
        min-height:120px;

        margin-bottom: 0px;

        box-sizing: border-box;
        padding:20px 0;
        margin-top: 0px;
    }
    
    #ocexAdvantage img {
        width: 60px;
        height: 60px;
        margin-right: 30px;
    }
    
    #ocexAdvantage .advCardTitle {
        font-size: 21px;
        font-weight: 600;
    }
}

@media screen and (max-width: 576px) {
    #ocexAdvantage .advCardTitle {
        font-size: 18px;
        font-weight: 600;
    }
}