HEX
Server: Apache
System: Linux sg2plzcpnl508499.prod.sin2.secureserver.net 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
User: s76vzjg2kvav (10209820)
PHP: 8.4.18
Disabled: NONE
Upload Files
File: /home/s76vzjg2kvav/public_html/des/js/custom.js
//equalize
function equalHeight(group) {
    tallest = 0;
    group.each(function() {
        thisHeight = jQuery(this).height();
        if (thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}
jQuery(document).ready(function() {
    equalHeight(jQuery(".success-block p"));
    equalHeight(jQuery(".feature-box.bg-white .feature-box-content p"));
    equalHeight(jQuery(".is-box p"));
    equalHeight(jQuery(".oc-block p"));
    // equalHeight(jQuery(".is-box-1 span"));
    equalHeight(jQuery(".story h6"));

    //scroll
    jQuery("#anc-foo").click(function() {
        jQuery('html, body').animate({
            scrollTop: jQuery("#anc-footer").offset().top
        }, 1000);
    });

    jQuery("#book-demo").click(function() {
        jQuery('html, body').animate({
            scrollTop: jQuery("#anc-footer").offset().top
        }, 1000);
    });
});