For versions before 1.4.5, the option to set a different marker size on mobile does not exist and therefore you’ll need to use custom css.
You can add this to your site’s custom css or the map custom CSS if you’re using the Pro version:
@media only screen and (max-width: 768px) { .imapsCircle { transform:scale(0.3); } }
You can change the 0.3 value to something else that better suits your needs.