header * {
  font-family: "Poppins", sans-serif;
}

header {
  padding: 20px 0;
}

header .fill-Btn {
  min-width: 83px;
  padding: 5px 0;
  font-size: 13px;
}

header .toggleBtn {
  display: none;
}


@media screen and (max-width: 991px) {
  header {
    padding: 10px 0;
  }

  header .toggleBtn {
    display: block;
    right: 0;
    border: 1px solid;
    padding: 0;
    min-height: auto;
    height: 40px;
    width: 40px;
    border-radius: 5px;
  }

  header .toggleBtn svg {
    height: 30px;
    width: 30px;
  }

  .menuList {
    position: absolute;
    top: 55px;
    z-index: 9;
    width: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 20px 15px;
    box-shadow: 0 9px 10px rgba(0, 0, 0, .5);
    border-radius: 0 0 15px 15px;
    display: flex;
    gap: 15px;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
  }

  .showHeader .menuList {
    opacity: 1;
    visibility: visible;
  }

  .signToggleBtn {
    margin-left: auto;
  }

  .signToggleBtn a button {
    margin: 0 20px 0 0;
  }
}

@media screen and (max-width: 479px) {}