.menu-item.active {
  border-bottom: 3px solid black!important;
}

.menu-item.menu-check:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.menu-item.menu-check::after {
  position: absolute;
  content: "";
  display: block;
  border-bottom: 3px solid lightgray;
  transition: width 250ms ease-in-out;
  left: auto;
  right: 0;
  width: 0;
  bottom: 0;
}

.card {
  --bs-card-inner-border-radius: 0;
}

.portfolio-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  color: white;
  background: rgba(0, 0, 0, 0.60);
  transition: all ease 0.5s;
}

.card:hover .portfolio-hover {
  opacity: 1;
}

