I have created a website using Bootstrap, which can be accessed at this link.
The homepage is experiencing alignment issues, with sections colliding with each other. To prevent this collision, I had to add margin-top like the example below:
<section class="ds gallery-3 s-py-70 s-py-lg-100 s-py-xl-150" id="chinnu1" style="margin-top:80%">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h4 class="big-title" style="text-align:center">
OUR SERVICES
</h4>
</div>
</div>
</div>
I had to manually adjust the margin-top for all sections to avoid collision. However, the problem reoccurs after some time, requiring me to readjust the margins again. Can someone suggest a permanent solution for fixing this issue?