.marquee {
  display: block;
  position: relative;
  white-space: nowrap;
  transform: translateX(0);
  transition: 3s;
  text-overflow: ellipsis;
  overflow: hidden;
}
.unit-card:hover .marquee {
  width: auto;
  /* text-overflow: initial;
  overflow: initial; */
}
.unit-name {
  overflow: hidden;
}
