.active {
    color: var(--bruin) !important;
  }

  /* Header Styling */
  .header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    z-index: 10;
    padding: 30px;
    background-color: var(--bg);
  }

  .logo img {
    width: 90px;
  }

  /* Hamburger Menu Button */
  .menu_menuButton__1VC0v {
    font-family: "open-sans", Arial, Helvetica, sans-serif;
    align-items: center;
    background-color: var(--bruin);
    border: none;
    border-radius: 39px;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    font-size: 1rem;
    gap: 6px;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1.188rem;
    padding: 6px 16px 6px 10px;
    text-decoration: none;
  }

  /* Navigation Menu */
  .nav {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 10;
  }

  .nav a {
    text-decoration: none;
    font-size: 1em;
    color: var(--zwart);
    font-family: "open-sans", Arial, Helvetica, sans-serif;
  }

.nav .btn-outline{
    font-size: 0.8em;
    color: var(--bruin);
}

.nav .btn-outline:hover{
    font-size: 0.8em;
    color: var(--wit);
}

.nav .active{
    font-weight: 700;
}

.nav .btn-filled{
    font-size: 0.8em;
    color: var(--wit);
}

.nav .btn-filled:hover{
    font-size: 0.8em;
    color: var(--bruin);
}

  .close-btn {
    display: none;
  }

  .nav .btn {
    margin-top: 0px;
    color: var(--zwart);
  }

  #hamburger{
      display: none;
    }

    .language{
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

  @media (max-width: 950px) {
    .menu_menuButton__1VC0v {
      display: flex;
    }

    .nav {
      display: none;
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100%;
      background-color: var(--beige);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: right 0.3s ease;
    }

    .nav.active {
      right: 0;
      display: flex;
      gap: 30px;
    }

    .nav.active a{
        font-size: 1.5em;
    }

    .nav.active a:hover{
        font-size: 1.5em;
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 40px;
      font-size: 3.5rem;
      color: var(--zwart);
      cursor: pointer;
      display: block;
      z-index: 11;
    }

    #hamburger{
      display: flex;
    }

    .language{
        margin-top: 100px;
    }
  }


/* --------------------- Mediaquerries --------------------- */
/* Tablet */
@media screen and (max-width: 1023px) {
}

/* Mobile */
@media screen and (max-width: 767px) {

}