 
nav{
  background-color:#4b2e1e; 
      padding: 2% 1%;
    position: sticky;
    top: 0;
    z-index: 99;
}
nav ul{
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
}
nav li{
  height: 50px;
}
nav a{
  height: 100%;
  padding: 0 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: rgb(255, 255, 255);
  font-size: 17px;
  font-family: Lato, sans-serif;
}
nav a:hover{
    border-bottom: 2px solid #da8e43;
}
nav a.active {
  border-bottom: 2px solid #da8e43; 
  font-weight: bold;
}
nav li:first-child{
  margin-right: auto;
}
.sidebar{
  position: fixed;
  top: 0; 
  right: 0;
  height: 100vh;
  /*width: 250px!important;*/
  background: #c19145;
  backdrop-filter: blur(12px); 
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.sidebar li{
  width: 100%;
}
.logo {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
}
.logo a:hover{
    border: none;
}
.logo img{
    width: 107px; 
    height: 82px;
}
.sidebar a{
  width: 100%;
}
.menu-button{
  display: none;
}
@media(max-width: 800px){
  .hideOnMobile{
    display: none;
  }
  .menu-button{
    display: block;
  }
  nav li{
    height: auto;
  }
  nav a:hover{
    border-bottom: none;
}
.sidebar a{
        display: block;
    padding: 22px 0;
    border-bottom: 2px solid #9f7026; 
    color: #ffffff;
    font-size: 22px;
    font-family: 'Lato';
}
}
@media(max-width: 400px){
  .sidebar{
    width: 100%;
  }
   nav a:hover{ 
}
}