For the PARTNERS section, we set the HTML to something such as this:
<!-- PARTNERS SECTION -->
<div class="partners position-relative py-5">
<div class="container py-5">
<h3 class="display-3 custom-font-title text-white text-center">PARTNERS</h3>
<div class="row d-flex justify-content-center py-5">
<div class="my-auto text-center px-3">
<img class="pb-2" src="img/partner1.png" alt="Partners Racing Club">
<p class="font-weight-normal text-white">Advan Neova Cup</p>
</div>
<div class="my-auto text-center px-3">
<img class="pb-2" src="img/partner2.png" alt="Partners Racing Club">
<p class="font-weight-normal text-white">JDM Style Tuning</p>
</div>
</div>
<div class="row d-flex align-items-center pb-5">
<div class="mx-auto">
<a href="#" class="btn btn-primary">Show more</a>
</div>
</div>
</div>
</div>
<!-- END PARTNERS SECTION -->
In the preceding code, we used the class .justify-content-center to horizontally center the two partners. Everything else is pretty simple.
In terms of CSS, the only thing we had to do was change the color of the background to black:
.partners {
background: #000;
}
It's done! How easy was it?:

The PARTNERS section
Let's head to the final step, that is, the footer.