.custom-bullets {
  margin: 0;
}
.custom-bullets li {
  list-style-type: none;
  padding: 0;
  margin: 0.5rem 0;
}

.custom-bullets li::before {
  content: "";
  color: var(--primary-color);
  font-size: 1.5rem;
  display: inline-block;
  vertical-align: middle;
  animation: pulsate 3s infinite;
  background: var(--primary-color);
  border-radius: 100%;
  width: 0.5rem;
  height: 0.5rem;
}

.custom-bullets li a{
  font-weight: 600;
}

@keyframes pulsate {
  0% {
      transform: scale(1);
      opacity: 1;
  }
  50% {
      transform: scale(1.5);
      opacity: 0.5;
  }
  100% {
      transform: scale(1);
      opacity: 1;
  }
}

.trending-btn {
  background-color: var(--secondary-color);
  color: white;
  padding: 0.3rem 0.8rem;
  width: 10rem;
  display: block;
  text-align: center;
}