
  .navbar-toggler {
    background: none;
    border: none;
  }
  .hmb {
    width: 24px;
    height: 24px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .hmbl {
    display: block;
    height: 4px;
    width: 100%;
    background-color: #333;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .hmb.active .hmbl {
    background-color: #F4364C;
  }

  .hmbl:nth-child(1) {
    top: 0;
  }

  .hmbl:nth-child(2) {
    top: 10px;
  }

  .hmbl:nth-child(3) {
    top: 20px;
  }

  .hmb.active .hmbl:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
  }

  .hmb.active .hmbl:nth-child(2) {
    opacity: 0;
  }

  .hmb.active .hmbl:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
  }

  #navbarLinks {
    display: none;
    flex-direction: column;
    gap: 10px;
  }

  #navbarLinks.show {
    display: flex;
  }

  @media(min-width: 992px) {
    #navbarLinks {
      display: flex !important;
      flex-direction: row;
    }

    .navbar-toggler {
      display: none;
    }
  }
@media(min-width: 992px) {
    #navbarLinks {
      display: flex !important;
      flex-direction: row;
    }

    .navbar-toggler {
      display: none;
    }
  }
