While there is a bootstrap class you can use here for images (.img-responsive) -- and it looks like you've already got that in play on this page -- I usually go about this another way so that I don't have to keep adding a class to every image I put on the page.
The issue we're seeing here is that when you add an image to your LP (or change/update an image) Marketo will automatically add the height="" and width="" attributes inline to the image element.
<img
src="https://info.cerulli.com/rs/960-BBE-213/images/US%20ESG%20Banner%201200x300.jpg"
width="1200"
height="301"
constrain="true"
imagepreview="false"
class="img-responsive">
As a best-practice you'll want to remove that height and width whenever you change the image. It's really annoying b/c it always happens and there's not a way to deactivate this functionality, instead you've got to take a few extra steps to delete the height and width once you change the URL of the image in the pop-up image editor. This step isn't necessary if you're using classes to control the height and width, but it does create a need for some CSS to do just that.
The class you've got on there "img-responsive" is telling the images to be:
1) at most 100% wide [max-width:100%;]
2) proportionate in height [height: auto;]
3) displayed like a block rather than an inline element [display:block]
To short-cut the need to add this onto each of your images, I usually just add some CSS that applies to ALL images instead of a class that needs to get added to each. Here's what that looks like:
img {
max-width:100%;
height:auto;
display:block;
}
---------------------------
EXTRA CREDIT:
I noticed when looking at the page that there was some room to horizontally scroll the page to the right. I had a quick look to see if I could find anything sticking out into the right margin and didn't find anything, but this is usually some combination of the rows/columns in bootstraps extending beyond the viewport (rows have a -15px margin left/right for example).
Here's a screenshot where you can see the extra space to the right and where I've scrolled over to point this out.

To get rid of this bottom scroll bar, you can hide the overflow on the x-axis (horizontal) by adding a little more CSS to your stylesheet / template. Here's what that'd look like:
body {
overflow-x: hidden;
}
Cheers,
Dave