#service ul {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#service ul::-webkit-scrollbar {
  display: none;
}

#service .see-more::before {
  position: absolute;
  content: "";
  height: 3px;
  background: var(--bs-primary);
  width: 0;
  left: 0;
  bottom: -3px;
  transition: all, ease-in, 0.2s;
}

#service .see-more:hover svg {
  margin-left: 5px;
  transition: all, ease-in, 0.2s;
}

#service .see-more:hover::before {
  width: 80% !important;
}
