I have a five column pricing table that looks like this
the first three on top
and with the remaining two right below
but i want the bottom two to be centered like in the image i provided
I hope what i am trying to achieve is clear, could any one please assist.
My css is 
* {
box-sizing: border-box;
}
.columns {
float: left;
width: 33.3%;
padding: 8px;
}
While my html is
 <div class="container">
 <div class="columns">
<ul class="price">
  <li class="header" style="background-color:#F67016" >One-Sided<br> Business Cards</li>
<li class="grey">₦7,499.00</li>
<li style="background-color:white;" >Order one sided business cards that simply represent your business in special ways.<br> 
    Order with our free templates, <br>upload your own designs or have a team design your business cards at a friendly fee.</li>
<li style="background-color:white; text-align: left"  > <strong style="color: teal">Material:</strong>  300 gsm matte card paper stock with 600 gsm options</li>
<li style="background-color:white; text-align: left"  ><strong style="color: teal">Finishing:</strong>  Matte Lamination with round corner options</li>
    <li style="background-color:white; text-align: left "  > <strong style="color: teal">Delivery: </strong> 3 - 5 working days for Lagos,<br> 5 - 7 working days for other cities</li>
<li>₦7,499.00</li>
<li class="grey"><a href="#" class="button">Order Now</a></li>
</ul>
</div>
</div>
i only added code for one of the column, because i didn't want my post to be filled with codes(however the codes are all the same for the remaining 4 columns)
