
.scrolling-window {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
  background: #fff;
  color: black;
  white-space: nowrap;
  position: relative;
}

.scrolling-track {
  display: flex;
  width: max-content;
  animation: scroll-right 60s linear infinite;
  margin-top: 2rem;
}

.scrolling-group {
  display: flex;
  gap: 20px;
  padding-right: 30px;
}

.hardware-main-block {
  width: 350px;
  flex-shrink: 0;
  white-space: normal;
  border: 1px solid #eee;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

@keyframes scroll-right {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.scrolling-window:hover .scrolling-track {
  animation-play-state: paused;
}