@font-face {
  font-family: 'handschrift';
  src: url('../Fonts/Fugaz_One/FugazOne-Regular.ttf') format('truetype');
}

header a {
  text-decoration: none;
}

header {
  padding: 0 20px;
  background-color: white;
  height: 90px;
  display: flex;
  justify-content: space-between;
  border-bottom-style: solid;
  border-bottom-color: rgb(72,209,204);	  
  font-size: 20px;
 
}

.NavDesktopMenu{
	z-index: 100;	  
}
.dropdown:hover .dropdown-menu{
   display:block;
   margin-top: 0; 
}

#NavFirma {
  /*font-weight: bold;*/
  font-size: 30px;
  display: flex;
  align-items: center;
  font-family: 'handschrift';
}

#NavFirma a {
  /*color: rgb(72,209,204);*/
  color: rgb(38, 173, 173);  
}

#NavGrau {
  padding: 5px 8px;
}
#NavGrau a {
  color: rgb(115,115,115);
}

header ul {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

header ul a {
  color: rgb(115,115,115);
}

header ul li {
  padding: 5px;
  margin-left: 10px;
}

header ul li:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
}

#hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: rgb(72,209,204);
  margin: 6px 0;
  transition: 0.4s;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: whitesmoke;
  z-index: 11;	 
  height: 85vh;
  position: fixed;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 90px;
  left: 0;
  height: calc(100vh - 50px);
  width: 100%;
  padding: 20% 0% 20% 0%;
}

.mobile-menu li {
  margin-top: 5px;
}

.toggleMMHaupt .MobileLiMenuH{
  display: none;
}
.toggleMMZuruck .MobileLiMenuH{
  display: block;
}
.toggleMMLeist .MobileLiMenuL{
  display: block;
  font-size: 15px;
}
.toggleMMSonst .MobileLiMenuS{
  display: block;
}


.MobileLiMenuL{
  display: none;
}

.MobileLiMenuS{
  display: none;
}



@media only screen and (max-width: 1000px) {
  header nav {
    display: none;
  }
  header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;	
  }
  #hamburger-icon {
    display: block;
  }
  #NavFirma {
    font-size: 20px;
  }
}