.custom-nav-pills .nav-link {
  color: var(--text-color);
  text-transform: uppercase;
  position: relative;
  border-bottom: 4px solid transparent;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.25rem;
  border-radius: 5px 5px 0 0;
}

.custom-nav-pills .nav-link:hover {
  border-bottom: 4px solid rgba(var(--primary-color), 1);
}

.custom-nav-pills .nav-link.active {
  background-color: rgba(var(--primary-color), 1);

  color: #fff;
  border-bottom: 4px solid rgba(var(--primary-color), 1);
}

.custom-nav-pills {
  position: relative;
}
.custom-nav-pills::before {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background-color: #efefef;
  position: absolute;
  bottom: 0;
  left: 0;
}