



.featureHighlightsRow {
    padding: 0px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 40px;
    width: 70%;
    justify-content: center;
    align-content: center;
}



.featureHighlight {
    margin: 10px;
    display: table;
    /*background-color: rgba(50,50,50,0.4); /*#222;*/

    min-height: 100px;
    min-width: 200px;
    text-align: center;
    align-items: center;

    /*background: rgba(0,0,0,.9);*/
    background-image: linear-gradient(rgba(0,3,77,.8),rgba(0,0,0,.9));
    border: 1px solid gold;
    border-radius: 10px;
}

.featureHighlight p {
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        padding-bottom: 5px;
}



@media only screen and (max-width : 540px) {

    .featureHighlightsRow {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;

    }

}