Sticky Kit problem dissapear on bottom out - FIX
/* Sticky Elements */
$(".sticky").stick_in_parent({
parent: '.row'
})
.on("sticky_kit:bottom", function(e) {
// console.log("has unstuck!", e.target);
$(e.target).parent().css('position', 'static');
})
.on("sticky_kit:unbottom", function(e) {
// console.log("has unstuck!", e.target);
$(e.target).parent().css('position', '');
});