.nav-bar-container {
  width: 100%;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 99;
  background: #BDADA0;
}

.nav-bar-wrapper {
  margin: auto;
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.icon-logo {
  margin-right: 10px;
  color: #FFFFFF;
  float: left;
  padding-left: 1rem;
}

.icon-logo-mobile {
  display: none;
}

@media screen and (max-width: 960px) {
  .icon-logo-mobile {
    display: flex;
    margin-right: 10px;
    color: #FFFFFF;
    float: left;
    padding-left: 2rem;
    font-size: 1.2rem;
  }
}

.menu {
  height: 100%;
  display: flex;
  justify-content: left;
  align-items: left;
  list-style: none;
}

@media screen and (max-width: 960px) {
  .menu {
    width: 50%;
    height: 100vh;
    position: absolute;
    top: 60px;
    left: -100%;
    flex-direction: column;
    transition: 1s all ease-in;
    background-color: #5E4E41;
  }

  .menu.menu-open {
    left: 0;
  }
}

.menu-item {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 400;
}

.menu-item:hover {
  background-color: #5E4E41;
  height: 60px;
}

@media screen and (max-width: 960px) {
  .menu-item {
    width: 100%;
    height: 60px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
  }

  .menu-item:hover {
    background-color: #BDADA0;
  }
}
