
  
  .navbar {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 9vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000000;
    color: #ffffff;
    padding: 0.8rem 2rem;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    
  }

  .nav-links3 {
    list-style: none;
    display: flex;
    gap: 2rem;

  }
  
  .nav-links li a {
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  
  .nav-links li a:hover {
    color: #ff9800;
  }
  
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
  }
  
  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
  }
  
  
    .nav-links-sidebar1 {
      position: absolute;
      top: 9vh;
      left: 0;
      background: #222;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      width: 100vw;
      height: 91vh;
      padding-bottom: 0px;
      padding-left: 2rem;
      padding-top: 2rem;
      z-index: 100;
      overflow: scroll;
      border: #ff9800 2px;

    }

    .nav-links-sidebar2 {
      position: absolute;
      top: 9vh;
      left: 100vw;
      background: #222;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      width: 100vw;
      height: 91vh;
      z-index: 100;
      overflow: scroll;
      border: #ff9800 2px;
    }

  

    
    
  
  
    

    .sidebar {
      position: absolute;
      top: 9vh;
      right: 0;
      background: #222;
      width: 100vw;
      height: 91vh;
      transform: translateX(100vw);
      transition: transform 0.3s ease-in;
      display: flex;
      text-decoration: none;
    }

    .sidebar.active {
      transform: translateX(0);
      
    }

    ul.sidebar-link {
      list-style: none;
      overflow: scroll;
      border: #ff9800 2px;
    }

    ul.sidebar-link li {
      padding-left: 2rem;
      padding-bottom: 1.5rem;
    }

    ul.sidebar-link a {
      color: white;
    }



    
   
    
  
  

  