/* Container styles */
.scrolling-skill-container {
  border-radius: 0px;
  overflow: hidden;
  padding: 120px 0px 90px 0px;
}

/* Inner container styles */
.scrolling-skill-inner {
  display: flex;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 0;
}

/* Text styles */
.scrolling-skill {
  display: flex;
}

.scrolling-skill-item {
  padding: 0 30px;
}

/* Apply the animation to the text items */
.scrolling-skill-inner > div {
  animation: var(--direction) var(--marquee-speed) linear infinite;
}

/* Pause the animation when a user hovers over it */
.scrolling-skill-inner:hover > div {
  animation-play-state: paused;
}

/* Setting the Animation using Keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}
