#maintenance-outer {
    text-align: center;
}
#maintenance-outer .ma-points {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#maintenance-outer .ma-points .ma-point {
    margin: 0 4px;
    width: calc(16.66% - 2px); /* Change the percentage depending on how many points there are */
}
@media all and (max-width: 1025px) {
    #maintenance-outer .ma-points .ma-point {
        width: calc(33.33% - 5px);
        margin: 0;
    }
    #maintenance-outer .ma-points {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
@media all and (max-width: 800px) {
    #maintenance-outer .ma-points .ma-point {
        width: calc(50% - 5px);
        margin: 0;
    }

}