/******* Do not edit this file *******
Code Snippets Manager
Saved: Jul 03 2026 | 10:56:48 */
.rotating-text-inline {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 30px;
  /* adjust for your font size */
  white-space: nowrap;
  min-width: 300px;
}
.rotating-group {
  position: absolute;
  display: flex;
  gap: 2rem;
  /* space between phrases */
  left: 0;
  /* stay anchored to the left */
  opacity: 0;
  transform: translateX(100%);
  animation: slideGroup 12s infinite;
}
.rotating-group:nth-child(1) {
  animation-delay: 0s;
}
.rotating-group:nth-child(2) {
  animation-delay: 4s;
}
.rotating-group:nth-child(3) {
  animation-delay: 8s;
}
.rotating-group span {
  display: inline-block;
  font-size: 16px;
  /* adjust */
  text-wrap: auto;
}
@keyframes slideGroup {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  5% {
    transform: translateX(0);
    opacity: 1;
  }
  30% {
    transform: translateX(0);
    opacity: 1;
  }
  35% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}
