.cust-navbar{
    width: 100%;
    background-color: #fff;
    height: 80px;
    padding: 5px 5%;
    margin: 0;
}
.custom-collapse{
    background-color: #fff;
}
.nav-logo{
    height: 100%;
    padding-left: 20px;
}

.custom-nav-link{
    color: #000;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    padding-left: 20px;
}



.hamburger-lines {
    display: block;
    height: 30px;
    width: 50px;
    position: absolute;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #0e2431;
  }

  .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }
  
   .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }
  
   .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }


  .line1-t{
    transform: rotate(45deg);
  }
  .line2-t{
    transform: scaleY(0);
  }
  .line3-t{
    transform: rotate(-45deg);
  }
@media only screen and (max-width: 576px) {
    .cust-navbar{
        height: 60px;
        padding: 5px 0;
    }   
   
}