.marquee-wrapper {

  background: #040404;
  height: 170px;
  overflow: clip;
  width: 100%;
  display: flex;
  align-items: center;
}
.marquee-track {
  display: flex;
  flex-direction: row;

  align-items: center;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-set {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  flex-shrink: 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
}
.feature-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 90%;
  color: #FEFEFE;
  white-space: nowrap;
}

.feature-icon {
  width: 27px;
  height: 49px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
 .feature-text {
   font-size: 24px
 }

.feature-icon {
  width: 16px;
  height: 29px;
}

.marquee-wrapper {
height: 150px; 
}
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
