It does have two columns on mobile:
The only way to hide the 5 item is to use the nth-of-type
CSS property to hide it. Not sure I’d recommend you use it really though if you display more then 5 items.
@media only screen and (max-width: 767px) {
li.blog-item.col-sm-sf-5.instagram-item:nth-of-type(5) {
display: none;
}
}