I'm struggling to align my text in a row, as shown below:
https://i.sstatic.net/SGQ8I.png
"Investup" and "Real estate" should be aligned. I need to move the "Real estate" paragraph so that it aligns with the "invest up" paragraph.
Here's my code:
<div class="col-md-4 col-sm-6 col-xs-12 text-center ">
<div class="service-item">
<div class="service-icon">
<i class="fa fa-pie-chart fa-5x"></i>
</div>
<h3 style="font-size: 18px; font-family: 'Roboto', sans-serif;">InvestUp</h3>
<p style="font-size: 16px; font-family: 'Roboto', sans-serif;">Investup is the tool for the investor to track project progress in a timely manner and receive curated updates!</p>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12 text-center" data-wow-delay="0.3s">
<div class="service-item">
<div class="service-icon">
<i class="fa fa-line-chart fa-5x"></i>
</div>
<h3 style="font-size: 18px; font-family: 'Roboto', sans-serif;">CompareUp</h3>
<p style="font-size: 16px; font-family: 'Roboto', sans-serif;">Allows investors to review projects based on key factors like investment amount, project timeline, and location.</p>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12 text-center " data-wow-delay="0.6s">
<div class="service-item">
<div class="service-icon">
<i class="fa fa-users fa-5x"><br></i>
</div>
<h3 style="font-size: 18px; font-family: 'Roboto', sans-serif;">NetworkUp</h3>
<p style="font-size: 16px; font-family: 'Roboto', sans-serif;">Allows you to join the Estateup global community, connect, and share investment tips.</p>
</div>
</div>
My padding-right
seems to be malfunctioning. Can someone kindly point out what I am doing wrong here?