/*  ==================================================================
	HIER KOMMEN DEINE AUSGELAGERTEN CSS BEFEHLE REIN =================
	==================================================================  */

	/* Einstellungen für Header Fixed */

	$(window).scroll(function() {
      var sticky = $('#bh_header');
      var section = $('.et_pb_section_0'),
      
       scroll = $(window).scrollTop();
        if (scroll >= 100) { 
         sticky.addClass('fixed');
         section.addClass('move-top');
        }
        else { 
         sticky.removeClass('fixed');
         section.removeClass('move-top');
        }
     });
	
	
	
	/* Divi Read-More-link als Button anzeigen /


	/* Read more Link als Orange Button*/

.more-link{
	
background-color: #DB5A0F;
	
color: #fff;
	
overflow: hidden;
	
margin-top: 3%;
	
width: 60%;
padding-left: 3%;
	
padding-right: 3%;
	
padding-top: 0.7%;
	
padding-bottom: 0.7%;
	
border-radius: 5px;
	
border: 15px;
	
line-height: 25px;

}

/*Abstand Text zu Button*/

.post-content-inner{
	
	margin-bottom: 10px;
	
}

/* Hamburger Menü mit Bezeichnung */


/* .mobile_nav::before { content:'Menü'; vertical-align:top; line-height:2.2em; } */


/*Ende*/