If you want to have same ratio you should create a container and hide a part of the image.
.container{_x000D_
width:100%;_x000D_
height:60px;_x000D_
overflow:hidden;_x000D_
}_x000D_
.img {_x000D_
width:100%;_x000D_
}
_x000D_
<div class="container">_x000D_
<img src="http://placehold.it/100x100" class="img" alt="Our Location" /> _x000D_
</div>_x000D_
_x000D_
_x000D_