
.wrapper {
    width: calc(100vw - 80px);
}



.menu_button {
  background-image: url(hamburger-menu.svg);
  width: 24px;
  height: 20px;
  border: none;
  background-repeat: no-repeat no-repeat;
  margin: auto;
  position: fixed;
  z-index: 100;
  right: 24px;
  top: 24px;
}

.menu_button:hover {
  background-color: white;
}

  .nav {
    -webkit-transition: ease .4s;
    -o-transition: ease .4s;
    transition: ease .4s;
    height: 64px;
    overflow: hidden;
    align-items: start;

  }

  .nav_active {
    height: 100vh;
      background: rgba(246, 245, 245, 1);
  }

  .nav ul {
    margin-top: 80px;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    gap: 32px;
  }

  .nav a{
      font-weight: 500;
    }
