Well, I split the content part into two divs, col-md-6, but they are not centralized relative to the site, although they are in the center, they are placed on the left side, leaving the right side a bit empty. Follow the divs code.
<div class="content">
<div class="container clearfix">
<div class="col-md-6 configdiv">
<img src="/layout/images/imagem1.png" />
<h5>TITULO 1</h5>
<p>
Oi, tudo bem? Oi, tudo bem? Oi, tudo bem?
Oi, tudo bem?
Oi, tudo bem?
<p>
<div>
<img src="/layout/images/iconemail.png" />
<img src="/layout/images/iconefb.png" />
<img src="/layout/images/iconett.png" />
</div>
</div>
<div class="col-md-6 configdiv">
<img src="/layout/images/imagem2.png" />
<h5>TITULO 2</h5>
<p>
Oi, tudo bem?
<p>
<div>
<img src="/layout/images/iconemail.png" />
<img src="/layout/images/iconefb.png" />
<img src="/layout/images/iconett.png" />
</div>
</div>
</div>
</div>
</section><!-- #content end -->
And CSS has this:
.configdiv {border: 1px solid #DDDDDD;
margin-right: 28px;
margin-bottom: 25px;
padding: 10px;
Remembering these two col-md-6 divs stand side by side, I want you to be centered on the screen! Content of content:
Content----------------------------------------------------*/
#content {
position: relative;
overflow: hidden;
background-color: #FFF;
}
#content p { line-height: 1.8; }
.content-wrap {
position: relative;
padding: 80px 0;
}
#content .container { position: relative; }
/* ----------------------------------------------------------------