
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;

header {
    background: #fff;
}  
li {
    list-style: none;
}
a {
    color: #fff;
    text-decoration: none;    
}
.navbar {
    min-height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  
}  
.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    font-family: "poppins", sans-serif;   
}
.logo img {
    height: 60px;
}
  
.nav-link {
    font-family: "poppins", sans-serif;
    font-size: 1.4rem;
    transition: 0.7s ease;
    color: #070606;
    /* background-color: red; */
  }
  
.nav-link:hover {
    color: rgb(13, 14, 14);
  }
#active {
    color: #040d61 !important;
  }  
.hamburger {
    cursor: pointer;
    display: none;
}
.bar {
    display: block;
    width: 25px;
    height: 3px;
    border-radius: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    background: #020e79;
}
@media (max-width: 768px) {
.hamburger {
        display: block;
      }
.hamburger.active .bar:nth-child(2) {
        opacity: 0;
      }
    
.hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }
    
.hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }
.nav-menu {
      position: fixed;
      margin-top: 1.7rem;
      left: -100%;
      top: 70px;
      gap: 0;
      width: 100%;
      text-align: center;
      transition: 0.3s;
      flex-direction: column;
      background: #fff;
    }
  
.nav-item {
      margin: 16px 0;
  
    }
  
.nav-menu.active {
      left: 0;
    }
  
}
}