<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">jQuery(document).ready(function () {
    function responsive () {
        var winWidth = $(window).width();
        var mobile = winWidth &lt; 735;
        var iPad = winWidth &gt;=735 &amp;&amp; winWidth &lt;= 1020;

		$('.full-width').each(function() {
			$(this).children('.full-width-placeholder').height($(this).children('.section').outerHeight());
		})

        if (mobile) {

        } else {

            if (iPad) {
            } else {
            }
		}
	}
	responsive();
	$(window).resize(function() { responsive(); });

    /* ===============================================================================================================
 	===============================================================================================================*/                                      
});
</pre></body></html>