.scroll-indicator-bounce {
  /* Duration 2s, infinite loop, smooth easing */
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px); /* Moves down at the midpoint */
  }
}
@media (min-width: 992px) {
  .quicksearch-node .themenseiten-link {
    margin-bottom: 1.7rem;
    position: absolute;
  }
}