
    /*******************************Sticky menu*******************************************/

    var ancho = $(window).width();

    if (ancho > 1100) {

        $(window).scroll(function (event) {
            var scroll = $(window).scrollTop();
            console.log(scroll);

            if (scroll >= 230) {

                $('header').addClass('nav-fixed');

            } else if (scroll <= 149) {

                $('header').removeClass('nav-fixed');
            }
        });
    }
