Skip to content

Great things are on the horizon

Something big is brewing! Our store is in the works and will be launching soon!

jQuery(window).on('scroll load', function () { var logo = jQuery('#hero-logo'); if (!logo.length) return; var scroll = jQuery(window).scrollTop(); var maxScroll = jQuery(window).height() * 0.75; var progress = scroll / maxScroll; progress = Math.min(Math.max(progress, 0), 1); var scale = 1 - (progress * 0.85); var moveUp = progress * 120; logo.attr( 'style', 'position:fixed!important;left:50%!important;bottom:0!important;width:100vw!important;max-width:none!important;z-index:999999!important;opacity:1!important;pointer-events:none;transform:translate(-50%,-' + moveUp + 'px) scale(' + scale + ')!important;transform-origin:bottom center!important;' ); });