/*
Theme Name: Divi Child
Template: Divi
Version: 1.0
Text Domain: Divi-child
*/



/* =Theme customization starts here
-------------------------------------------------------------- */

/*
* Strich unter Menupunkt bei hover
*/
#top-menu a {
  position: relative;
  text-decoration: none;
}
#top-menu a:hover {
  color: #de9759;
}
#top-menu a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1.5px;
  top: 21px;
  left: 0;
  background-color: #de9759;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
#top-menu a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/*
* Header Schatten entfernen
*/
#main-header{
  -webkit-box-shadow:none !important;
  -moz-box-shadow:none !important;
  box-shadow:none !important;
}
  
#main-header.et-fixed-header { 
  box-shadow: none !important;
}

/*
 * Farbe der 3 Menüstriche im Mobile Menü
*/
@media only screen and (max-width: 980px)  {
    #et-top-navigation span.mobile_menu_bar:before, 
    #et-top-navigation span.mobile_menu_bar:after {
      color: white !important;
    }
}
  
/*
 * Mobile Menü Hintergrundfarbe
*/
.et_mobile_menu {
    background-color: #193c4f !important;
}

