Is there a way to adjust the spacing more effectively? When the screen is resized, there is a large gap as highlighted in the red circle. My goal is to have it align correctly with the other divs instead of its current behavior. Thank you!
https://i.sstatic.net/53svk.png
#howItWorks h2 {
margin-bottom: 30px;
}
.services {
position: relative;
}
.services .service {
padding: 30px 15px 30px;
text-align: center !important;
z-index: 1;
}
... (CSS code continues)
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<section id="howItWorks">
<div class="container">
... (HTML code continues)
</section>