*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .navbar{
    max-width: 1380px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px;
    margin-top: 0.1rem;
    margin: auto;
    /* background: #000; */
  }
  
  .logo {
    width: 150px;
    height: 80px;
    color: black;
    font-size: 1.4rem;
    user-select: none;
  }
  
  .navbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  
  .navbar ul li {
    list-style: none;
    font-size: 1.2rem;
    width: 80px;
    margin-left: 1rem;
  }
  
  
  .navbar ul li a {
    text-decoration: none;
    color: black;
    font-weight: 600;
    transition: 0.4s ease;
    transition: all 0.3s ease;
    font-family: 'Times New Roman', Times, serif;
    position: relative;
  }
  
  .navbar ul li a::after {
    content: "";
    display: block;
    width: 0%;
    height: 4px;
    /* background-color: #5d03a3; */
    background-image: linear-gradient(to right ,#5d03a3,#02eaf7);
    transition: width 0.4s linear;
    position: absolute;
    bottom: -2px;
    filter: blur(2px);
  }
  
  .navbar ul li a:hover::after {
    width: 100%;
  }
  
  .navbar ul li a:hover {
    color: #5d03a3;
    font-weight: 800;
  }

  .hamburgur{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    /* background: red; */
    gap: 6px;
  }
  .bar{
    width: 60%;
    height: 3px;  
    background: #000;
  }

  @media only screen and (max-width: 1180px) {
    
    .logo {
      width: 100px;
      height: 50px;
    }
    .navbar ul li {
      list-style: none;
      font-size: 1rem;
      margin-left: 0.5rem;
    }
    
  }

  
  @media only screen and (max-width: 768px) {
    .navbar{
      position: relative;
      background: linear-gradient(to top right , #d2b0ec , white);
    }
    .navbar ul{
      display: none;  
      flex-direction: column;
      position: absolute;
      top: 100%;
      width: 100%;
      justify-content: start;
      align-items: start;
      padding: 1rem 0rem;
      animation: pop 1s ease;
    }
    @keyframes pop {
      0%{
        opacity: 0;
      }
      50%{
        opacity: 0.5;
      }
      100%{
        opacity: 1;
      }
    }
    .navbar ul.active{
      display: flex;
      background: linear-gradient(to bottom right , #d2b0ec , white);
      z-index: 1;
      margin-left: -.3rem;
      border-top: 2px solid grey;
    }
    .logo {
      width: 100px;
      height: 50px;
    }
    .navbar ul li {
      list-style: none;
      font-size: 1rem;
      margin-left: 0.5rem;
    }
    .navbar ul li a {
      list-style: none;
      font-size: 1.2rem;
      margin-left: 0.5rem;
    }
    .navbar ul li a::after {
      content: "";
      display: block;
      width: 0%;
      height: 4px;
      background-color: #5d03a3;
      transition: width 0.4s linear;
      position: absolute;
      bottom: -2px;
      filter: blur(1px);
      transform: translateX(10px);
    }
    
    .hamburgur{
      display: flex;
      padding: .1rem;
      transition: all 1s ease;
    }

    .bar{
      border-radius: 10px;

    }
    
    .hamburgur.active .bar:nth-child(2){
      display: none;
    }
    .hamburgur.active .bar:nth-child(1){
      transform: rotate(45deg) translate(-1px, -1px);
      transition: all .4s ease;
    }
    .hamburgur.active .bar:nth-child(3){
      transform: translate(1px, -10px) rotate(-45deg);
      transition: all .4s ease;
    }
    
  }