soft reject my pls help me few qutions resolve

can anyone please tell me what to improve …
My Template : https://goo.gl/MBmRbq

  1. SPACING AND ALIGNMENT: There are spacing and alignment issues in this
    item. Please make sure that all elements are aligned properly and
    spacing is consistent from section to section. Here are some articles
    with more information regarding negative space and proper spacing

  2. PROPER EVENT BINDING: Consider using the preferred .on() method
    rather than .click(), .bind(), .hover(), etc. For best performance and
    concise code use event delegation whenever possible:

My Code Custom js

( function($) {
“use strict”; // Start of use strict

/*------------------------------------------------

  • Preloader
    ------------------------------------------------*/

    $(window).load(function() {
    $(’#loading’).fadeOut();
    $(’#preloader’).delay(300).fadeOut(‘slow’);
    });

/*------------------------------------------------

  • baguetteBoxOne map
    ------------------------------------------------*/

    onload = function() {
    if(typeof oldIE === ‘undefined’ && Object.keys)
    hljs.initHighlighting();

     baguetteBox.run('.baguetteBoxOne');
     baguetteBox.run('.baguetteBoxTwo');
     baguetteBox.run('.baguetteBoxThree', {
     animation: 'fadeIn'
     });
     baguetteBox.run('.baguetteBoxFour', {
         buttons: false
         });
     baguetteBox.run('.baguetteBoxFive', {
         captions: function(element) {
             return element.getElementsByTagName('img')[0].alt;
             }
     });
    

    };

/*------------------------------------------------

  • owlCarousel
    ------------------------------------------------*/

    $("#owl-demo").owlCarousel({
    autoPlay: 3000,
    items: 3,
    itemsDesktop: [1199, 3],
    itemsDesktopSmall: [979, 3]
    });

/*------------------------------------------------

  • page scroll
    ------------------------------------------------*/
    $(‘a.page-scroll’).on(“click”, function (event) {
    var $anchor = $(this);
    $(‘html, body’).stop().animate({
    scrollTop: ($($anchor.attr(‘href’)).offset().top - 50)
    }, 1250, ‘easeInOutExpo’);
    event.preventDefault();
    });

/*------------------------------------------------

  • scrolling
    ------------------------------------------------*/
    // highlight the top nav as scrolling occurs
    $(window).scrollspy({
    target: ‘.navbar-fixed-top’,
    offset: 51
    });

/*------------------------------------------------

  • Affix
    ------------------------------------------------*/

    // offset for main navigation
    $(’#mainNav’).affix({
    offset: {
    top: 100
    }
    });
    /*------------------------------------------------

  • Counter
    ------------------------------------------------*/
    $(’.timer’).countTo();

/*------------------------------------------------

  • map scroll off
    ------------------------------------------------*/
    $(’.maps’).click(function () {
    $(’.maps iframe’).css(“pointer-events”, “auto”);
    });

    $( “.maps” ).mouseleave(function() {
    $(’.maps iframe’).css(“pointer-events”, “none”);
    });

}(jQuery, window, document)); // End of use strict

CLOSED: Duplicate thread Soft Reject proper event binding & spacing and alignment. pls help me