Your images are wider than the widget area and caused the entire widget area to extend further than what it’s designed to. Other browsers adjust the image to fit inside, but firefox didn’t for some reason.
To fix it, just add this to your css –
.home-bottom-sidebar img {
width: 100%;
}
The images will be responsive and fit inside the widget area instead of expanding it.
Let me know if that fixes it.