/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/*Header*/

.custom-fixed-footer-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffff;
  z-index: 9999;
  padding: 10px 0;
  padding-bottom: 50px;
}

.custom-menu-list {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-menu-list > .menu-item {
  position: relative;
  margin: 0 20px;
}

.custom-menu-list > .menu-item > a {
  font-family: "Koulen", Sans-serif;
  font-size: 23px;
  color: #9F6B32;
  text-decoration: none;
  padding: 5px 10px;
  display: inline-block;
}


.custom-menu-list > .menu-item76:hover ~ .img-therapy {
  display: block;
}

.menu-item.has-submenu:hover .sub-menu {
  display: block;
  padding-left: 0;
  margin-left:0;
}

.sub-menu {
  display: none;
  position: absolute;
  bottom: 50px; /* nach oben vom Footer */
  left: 0;
  /*border: solid 1px #9F6B32;*/
  background-color: #ffff;
  list-style: none;
  /*padding: 3px 0;*/
  min-width: 160px;
}

.sub-menu li a {
  font-family: "Koulen", Sans-serif;
  font-size: 23px;
  color: #9F6B32;
  text-decoration: none;
  display: block;
  padding: 4px 10px;
  white-space: nowrap;
}

.sub-menu li a:hover {
  color: white;
  background-color: grey;
}

.menu-button-contact {
  font-family: "Koulen", Sans-serif;
  font-size: 21px;
  text-align: center;
  padding: 3px 20px;
  margin-left: 15px;
  background-color: white;
  border-radius: 20px;
  border: solid grey 1px;
  color: grey;
}


@media (max-width: 768px) {
  .custom-fixed-footer-menu {
  	display: none;
  }
}