<!-- Custom JS for background color on scrolling -->
<script>
$(window).scroll(function(){
var scroll = $(window).scrollTop();
if(scroll < 500){
$('.fixed-top').css('background', 'transparent');
} else{
$('.fixed-top').css('background', 'rgba(0, 0, 0, 0.7)');
}
});
</script>