$(document).ready(function(){
    $(window).scroll(function() {
        if($(window).scrollTop()>40){
            $(".tt-header-wrapper").css("padding-top", 0);
            $(".top-line").hide();
        } else {
            $(".tt-header-wrapper").css("padding-top", 40);
            $(".top-line").show();
            
        }
    });
}); 
  
 
                     
                                                    