/*
 Theme Name: km childtheme divi5 26
 Theme URI: https://example.com
 Description: Child Theme für Divi 5
 Author: Juergen
 Template: Divi
 Version: 1.0
*/

/* Eigene CSS-Anpassungen hier */

 /* Header Fixed */
    /* Wichtig: Header Sektion bekommt eine CSS ID Klasse: bh_header */

       .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 }
    
    
