.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
}

.menu-icon span {
  position: absolute;
  display: block;
  width: 18px;
  height: 3px;
  background-color: #000;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-icon span:nth-child(1) {
  transform: translateY(-9px);
}

.menu-icon span:nth-child(2) {
  transform: translateY(0);
}

.menu-icon span:nth-child(3) {
  transform: translateY(9px);
}

.menu-icon.open span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-icon.open span:nth-child(2) {
  opacity: 0;
}

.menu-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}

#menuIcon {
  border: 2px solid black;
  border-radius: 0;
}

.img-external-brand {
}

.bg-black {
  background-color: #000000;
}

.text-start {
  text-align: start;
}

.text-link:hover {
  color: var(--light);
  text-decoration: underline;
}

.text-link {
  color: white;
}

.nav-link {
  color: #333333 !important;
}

.active {
  color: rgb(205,57,49)!important;
}

.hami-history-img {
  width: 128px;
  height: 128px;
}

