
.hamburger-menu{
  display: none;
}

header{
  position: absolute;
  width: 100%;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1% 3%;
  
  background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);;
}
.header-left img{
  width: 35%;
  margin-top: 20px;
}
.header-center{
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-center ul{
  display: flex;
  gap: 20px;
}
.header-left img{
  transition: all 0.3s;
}
.header-left img:hover{
  transform: scale(1.1);
}
.header-center ul li{
  list-style: none;
  transition: all 0.3s;
}
.header-center ul li:hover{
  transform: scale(1.1);
}
.header-center ul li a{
  text-decoration: none;
  color: rgba(255, 255, 255, 0.50);
  font-size: 1rem;
  font-weight: 100;
}
.header-right{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-right button{
  padding-block: 2%;
}

@media (width <= 1020px){
  header{
    padding: 1% 20px;
  }
  header img{
    width: 50px;
    margin-top: 20px;
  }
  header{
    display: flex;
    justify-content: space-between;
    position: fixed;
  }
  header .btn-outline{
    display: none;
  }
  .hamburger-menu .hamburger-menu-line{
    width: 30px;
    height: 3px;
    background-color: #777E90;
    margin: 5px 0;
    border-radius: 10px;
    transition: all 0.3s;
  }
  .hamburger-menu.active .hamburger-menu-line:first-child{
    transform: rotate(45deg) translate(6px, 5px);
  }
  .hamburger-menu.active .hamburger-menu-line:nth-child(2){
    transform: rotate(-45deg);
  }
  .hamburger-menu{
    display: block;
    width: 30px;
    height: 30px;
    padding: 5px;
    margin-right: 10px;
  }
  .header-center{
    display: none;
  }
  #mobile-nav-active{
    position: relative;
    &::before{
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      margin: auto;
      left: -10px;
      width: 2px;
      height: 140%;
      background-color: white;
      z-index: 99;
    }
  }
  #mobile-nav-active a{
    color: white;
    opacity: 1;
  }
  .menu{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: #0A0D11;
    z-index: -1;
    transform: translateX(-100%);
    transition: all 0.3s;
  }
  .hamburger-menu.active .menu{
    transform: translateX(0);
  }
  
  .menu ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    margin-top: 30%;
    padding-inline: 20px;
  }
  .menu ul li{
    list-style: none;
  }
  .menu ul li a{
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 100;
    opacity: 0.4;
  }
}