I have a contact page where I put the part of the contact form in one half of the screen and my intention is to place the map of the company's location on the other half of the screen. Now, for this I do the following:
<div class="row">
<div class="col-md-6">
... formulario de contacto
</div>
<div class="col-md-6 embed-responsive embed-responsive-21by9">
<iframe src="https://www.google.com/maps/d/embed?mid=xxxxx" width="640" height="480"></iframe>
</div>
The problem I have is that I had to put a map of google maps created as myMaps and the way to share it is through an iframe according to the code that shares google maps. The problem I have is that the map is not relocated when I shrink the window, less if I have it in another type of device ... Does anyone have a way to correct it? Thank you very much