I believe that’s because chrome is turning that address into a link to google maps and breaking the layout structure by adding a link in the middle of that code.
You could avoid that by making the whole think a link to start with anyway to stop chrome adding an inner link (because nested links are invalid) and then just remove the underline and pointer events so no one knows its a link.
e.g.
<a href="#" class="info address">
<svg class="sg" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 353.89 449.4" style="enable-background:new 0 0 353.89 449.4;" xml:space="preserve">
<g>
<defs>
<rect id="SVGID_1_" width="353.89" height="449.4"></rect>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"></use>
</clipPath>
<path class="st0" d="M176.42,449.4c-3.66-0.02-6.98-2.15-8.49-5.46l-4.22-9.24c-10.24-22.21-19.85-43-28.72-64.07
c-7.07-16.68-16.41-26.41-32.23-33.58C27.72,303.01-13,221.93,3.73,139.91C19.43,62.58,90.93,2.45,170.03,0.07L175.58,0h0.14
c81.39,0,150.55,52.76,172.06,131.3c22.61,82.65-19.27,171.27-97.44,206.1c-16.28,7.28-26.04,17.17-32.6,33.13
c-8.4,20.37-17.69,40.56-27.51,61.9l-5.34,11.53C183.4,447.28,180.06,449.4,176.42,449.4L176.42,449.4z M176.7,121.24h-0.09
c-29.94,0-55.28,25.55-55.3,55.79c-0.02,14.75,5.67,28.6,16.05,39.04c10.5,10.48,24.57,16.26,39.5,16.26
c15.49-0.12,29.26-5.81,39.72-16.45c10.27-10.52,15.82-24.66,15.56-39.76c-0.42-29.91-25.06-54.53-54.93-54.88
C177.07,121.24,176.89,121.24,176.7,121.24z"></path>
</g>
</svg>
<p>Office 195 Barrington Ave.<span>East York, ON, M4C 5M7</span></p>
</a><!-- .address -->
a.info.address {
text-decoration: none;
pointer-events: none;
}
Or supply a real href link to a suitable google map if you want that behaviour.
I believe you can also disable that behaviour by a meta tag.
<meta name="format-detection" content="telephone=no, address=no">