/* die Navigationsleiste */
.nav_wrap{
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.nav-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* width: 1153px; 70.3%*/
    width: 100%;
}
.nav-box {
    display: flex; 
    justify-content: space-evenly;
    align-items: center;
    width: 100%;

}


/*Style 'show menu' label button and hide it by default*/
.show-menu {
	width: 100%;
 /*	background-color: rgba(79,0,9, 0.7); */
	/* margin:20px; */
	display: none;
	font-size:40px;
	/* border: 3px outset rgb(255,146,9); 
	border-radius: 8px; */
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background:#685444;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}
.sidenav a {
  padding: 8px 8px 8px 2px;
  text-decoration: none;
  font-size: 25px;
  /* color: #818181; */
  display: block;
  transition: 0.3s;
}

.ham {
  width: 35px;
  height: 4px;
  background-color:  #fff1df;
  margin: 6px 0;
}

