Bootstrap columns could go wrong and look uneven when columns have different heights. Use float: left
to clear out the float properties and to stack blocks to the closest side.
.col-lg-3:nth-child(5n) { clear: left; }
If you have multiple blocks (for instance, 4-column layout) use float: left
pseudo-element to apply the class every 5th element 5n
.