bootstrap align row content center code example
Example 1: bootstrap col center content
<div class="row">
<div class="col-4 d-flex justify-content-center text-center">
// for image and text
</div>
</div>
Example 2: align eliment in center of row bootstrap
<div class="row justify-content-center">
...inner divs and content...
</div>