nav.menu {
    background: var(--white);
  }
  
  #nav-menu a {
    color: inherit;
  }
  
  #nav-menu button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    color: inherit;
  }
  
  #nav-container {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    justify-content: space-between;
    column-gap: 0;
    height: 6rem;
  }
  
  .nav-start {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    padding-left: 18.85px;
  }
  
  #nav-menu .logo {
    margin-right: 1.5rem;
  }
  
  .menu {
    display: none;
    position: absolute;
    top: 87px;
    left: 0;
    min-height: 100vh;
    width: 100vw;
    z-index: 999;
  }
  
  .menu.show {
    display: block;
  }
  
  ul {
    list-style: none;
  }
  
  .menu-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    row-gap: 1rem;
    padding: 1rem;
  }
  
  .menu-bar li:first-child .dropdown {
    min-width: 100%;
  }
  
  .menu-bar li:first-child ul:nth-child(1) {
    border-right: none;
    border-bottom: var(--border);
  }
  
  .menu-bar > li:not(:last-child) {
    padding-bottom: 0.5rem;
    border-bottom: var(--border);
  }
  
  .menu-bar .nav-link {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: -0.6px;
    padding: 0.3rem;
    min-width: 60px;
    margin: 0;
  }
  
  .menu-bar .nav-link:hover,
  .dropdown-link:hover {
    color: var(--primary-color);
  }
  
  .dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.15rem;
  }
  
  .dropdown {
    display: none;
    min-width: 100%;
    border: none !important;
    border-radius: 5px;
    position: static;
    top: 0;
    left: 0;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }
  
  .dropdown.active {
    display: block;
    max-height: 500px;
  }
  
  .dropdown ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.2rem;
  }
  
  .dropdown .nav-link {
    margin: 0;
    padding: 0.1rem;
    display: block;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .dropdown.active .nav-link {
    opacity: 1;
    transform: translateY(0);
  }
  
  .dropdown a.nav-link:nth-child(1) { transition-delay: 0.1s; }
  .dropdown a.nav-link:nth-child(2) { transition-delay: 0.2s; }
  .dropdown a.nav-link:nth-child(3) { transition-delay: 0.3s; }
  
  button.nav-link{width: 100%;}
  
  .dropdown2 ul {
    padding-left: 0.3rem;
  }
  
  #hamburger {
    display: block;
      padding: 0;
      margin-left: 0;
      font-size: 1.9rem;
      width: min-content;
  }

  @media (min-width: 769px) {
    #hamburger {
      display: none;
      padding: 0.1rem;
      margin-left: 1rem;
    }
  
    #nav-menu #container {
      padding: 1.2rem 3rem;
      justify-content: center;
      column-gap: 2rem;
    }
  
    .menu {
      display: block;
      position: unset;
      min-height: unset;
      width: unset;
      z-index: unset;
    }
  
    .menu-bar {
      flex-direction: row;
      align-items: center;
      row-gap: unset;
      padding: unset;
    }
  
    .menu-bar > li:not(:last-child) {
      padding-bottom: unset;
      border-bottom: unset;
    }
  
    .menu-bar li:first-child .dropdown {
      flex-direction: initial;
      min-width: 480px;
    }
  
    .menu-bar .nav-link {
      font-size: 1rem;
      margin: 0 0.6rem;
    }
  
    button.nav-link{width: unset;}
    
    .menu-bar li:first-child ul:nth-child(1) {
      border-right: var(--border);
    }
  
    .dropdown {
      min-width: 230px;
      position: absolute;
      top: 91px;
      left: unset;
      background-color: var(--white);
      box-shadow: var(--shadow);
      z-index: 999;
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.3s ease;
    }
  
    .dropdown2 ul {
      padding-left: unset;
    }
  }