I need to make the Google map in one of my sections responsive as it is currently showing two scroll bars on the page. To achieve this, I want it to span the full width of the page using a container fluid with 12 columns.
Check out the code snippet below.
<section class="googleMap">
<div class="container-fluid">
<div class="row">
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="map">
<iframe src="https://www.google.com/maps/embed?anylocation" width="2000" height="450" allowfullscreen="" loading="lazy"></iframe>
</div>
</div>
</div>
</div>
</section>