Hi, am using the index.html template to showcase an app. Under the features with the mockup phone in the middle, it's very hard to get the text on both left and right to align due to the number of text. Is there a way to fix it to allow both sides to look align? Below is my code. Thank you.
<div id="features" class="container clearfix">
<div class="heading-block topmargin-lg center">
<h2>Awesome Features</h2>
<span class="mx-auto">We listen to your feedbacks and constantly improve to provide you the best experience.</span>
</div>
<div class="row col-mb-50 mb-4">
<div class="col-lg-4 col-md-6">
<div class="feature-box flex-md-row-reverse text-md-right" data-animate="fadeIn">
<div class="fbox-icon">
[](#)
</div>
<div class="fbox-content">
<h3>Free Unlimited Scans</h3>
<p>Scan unlimited documents for free.</p>
</div>
</div>
<div class="feature-box flex-md-row-reverse text-md-right mt-5" data-animate="fadeIn" data-delay="200">
<div class="fbox-icon">
[](#)
</div>
<div class="fbox-content">
<h3>Works offline</h3>
<p>Works offline to protect your privacy. We don't store any of the scan images. </p>
</div>
</div>
<div class="feature-box flex-md-row-reverse text-md-right mt-5" data-animate="fadeIn" data-delay="400">
<div class="fbox-icon">
[](#)
</div>
<div class="fbox-content">
<h3>Text-to-Speech</h3>
<p>Read text out loud when you don't have the time to read.</p>
</div>
</div>
</div>
<div class="col-lg-4 d-md-none d-lg-block text-center">
</div>
<div class="col-lg-4 col-md-6">
<div class="feature-box" data-animate="fadeIn">
<div class="fbox-icon">
[](#)
</div>
<div class="fbox-content">
<h3>Supports 110 languages</h3>
<p>Recognizes printed text from more than 110 languages.</p>
</div>
</div>
<div class="feature-box mt-5" data-animate="fadeIn" data-delay="200">
<div class="fbox-icon">
[](#)
</div>
<div class="fbox-content">
<h3>Multiple languages documents</h3>
<p>Easily extract text with more than 2 languages in a document.</p>
</div>
</div>
<div class="feature-box mt-5" data-animate="fadeIn" data-delay="400">
<div class="fbox-icon">
[](#)
</div>
<div class="fbox-content">
<h3>Translate</h3>
<p>Translate your documents to other languages.</p>
</div>
</div>
</div>
</div>
</div>