Hi there,
Upon checking my browser console I see that there are images that are not loaded correctly and they throw the 404 (not found) error.
Here is the list of them:
https://mnins.com/wp-content/themes/wp-state-insurance/images/banner/box-bg.png
https://mnins.com/wp-content/themes/wp-state-insurance/images/banner/box-1.png
https://mnins.com/wp-content/themes/wp-state-insurance/images/banner/box-2.png
https://mnins.com/wp-content/themes/wp-state-insurance/images/banner/box-3.png
https://mnins.com/wp-content/themes/wp-state-insurance/images/banner/box-4.png
All of them seems to be loaded from your theme but the URL is wrong.
Check your theme code to find the problem about those.
One other point is that I see you have a script below on your website:
<script type="text/javascript">
jQuery(document).ready(
function($){
$('.wpcf7-text, .wpcf7-textarea').click(function(){$(this).val(''); });
}
);
</script>
The code above throws the error below:
(index):806 Uncaught ReferenceError: jQuery is not defined
I suggest that you change the code to:
<script type="text/javascript">
jQuery(document).ready(
function($){
$('.wpcf7-text, .wpcf7-textarea').click(function(){$(this).val(''); });
}
);
</script>
Best regards,
Christopher Amirian