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



/*  Fixed Header START */

.vertical-align {
  display:flex;
  flex-direction:column;
  justify-content:center;
}

@media only screen and ( min-width: 981px ) {
#bh_header.fixed {
  position:fixed;
  width:100%;
  top:0;
  z-index:999; 
  animation: smoothScroll 1s forwards; 
}
@keyframes smoothScroll {
  0%{    
     opacity:.7;
     transform: translateY(-200px);
  }
  100% {
     opacity:1;
     transform: translateY(0px)
  }
}
	
.move-top { margin-top:91px }

}

/*  Fixed Header ENDE */