  .navbar {
    position: fixed;
    z-index: 55;
    top: 0px;
    padding-top: 30px;
    padding-bottom: 20px;
    padding-left: 10vw;
    width: 100vw;
    padding-right: 10vw;
  }

  .nav-container{
    border-bottom: 1px solid white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
  }
  
  .logo img {
    height: 60px;
  }

  .logo{
    background-image: url(../img/logo/logo_hor.svg);
    width: 300px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
    mix-blend-mode:color-burn; /* Of een andere blend mode naar keuze */
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
  }
  
  .nav-links li {
    margin-right: 20px;
  }
  
  .nav-links li:last-child {
    margin-right: 0;
  }
  
  .nav-links li a {
    color: var(--black);
    text-decoration: none;
  }
  
  .mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
  }
  
  .line {
    width: 25px;
    height: 2px;
    background-color: var(--black);
    margin: 3px;
  }

  .close-menu {
    display: none;
    z-index: 1001;
  }

  .nav-contact{
      color: white !important;
      background-color: var(--red);
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none !important;
      font-size: 0.9em;
      font-weight: 600;
  }

  @media (max-width: 1000px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: var(--lightblue);
      padding: 20px;
      position: fixed;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      z-index: 1000;
      gap: 20px;
    }
  
    .nav-links.active {
      display: flex;
      justify-content: center;
    }
  
    .nav-links li {
      margin-bottom: 10px;
      text-align: center;
      padding: 0px;
      margin: 0px;
    }

    .nav-links li a {
        color: var(--black);
        text-decoration: none;
        font-size: 2.5em;
        font-weight: 300;
      }
  
    .mobile-menu {
      display: flex;
    }

    .close-menu {
        position: absolute;
        top: 50px;
        right: 70px;
        font-size: 80px;
        cursor: pointer;
      }

      .nav-contact{
        color: var(--black) !important;
        background-color:unset;
        padding: 0;
        border-radius: 0px;
        text-decoration: none !important;
        font-size: unset;
        font-weight: 400;
    }

  }