Template Layout

The template is based on Bootstrap Framework. The default Bootstrap grid system utilizes 12 columns, making for a 1170px wide depending on your viewport. Below 767px viewports, the columns become fluid and stack vertically. Layout example: See below

<div class="container">
    <div class="row">
        <div class="col-md-6">
            <!-- Your content here -->
        </div>
        <div class="col-md-6">
            <!-- Your content here -->
        </div>
    </div>
</div>

If you look carefully, you can see there is a container started row. Then we added row & then added a column. Learn more here.