By align, I assume you mean float. If you look at their markup, you’ll see that they’re using Bootstrap and the alignment is handled using its in-built Grid System, for example:
<div class="row">
<div class="col-sm-4 col-lg-4 column"></div>
<div class="col-sm-4 col-lg-4 column"></div>
<div class="col-sm-4 col-lg-4 column"></div>
</div>
16
solved How do I float this div straightly? [closed]