

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color:white;
  }

  .navbar-logo img {
    height: 40px;
  }

  .navbar-menu {
    display: flex;
  }

  .navbar-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .navbar-item {
    margin: 0 10px;
  }

  .navbar-item a {
    text-decoration: none;
    color: black;
  }


  .navbar-hamburger {
    display: none;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .navbar-menu {
      display: none;
    }

    .navbar-hamburger {
      display: block;
    }
  }
  
  @media (max-width: 768px) {
.navbar.open .navbar-menu {
display: flex;
flex-direction: column;
position: fixed;
top: 60px;
left: 0;
right: 0;
bottom: 0;
background: #fff;
z-index: 1;
padding: 20px;
}
  .navbar-item a {
    text-decoration: none;
    color: black;
  }
  
.navbar.open .navbar-items {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 13px;
}

.navbar.open .navbar-item {
margin: 25px 0;
}
}