.cs-words{
  position: relative;
  width: 100%;
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
  margin-top: 0;
  z-index: 2;
}

.cs-words__wrap{
  width: 100%;
  overflow: hidden;
}

.cs-words__marquee{
  position: relative;
  width: 100%;
  overflow: hidden;
}

.cs-words__track{
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
  animation: csWordsMarquee var(--cs-words-duration, 28s) linear infinite;
  will-change: transform;
}

.cs-words__item{
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 18px 34px;
  white-space: nowrap;
}

.cs-words__link{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.cs-words__icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 14px;
  color: #c40000;
  flex: 0 0 auto;
}

.cs-words__icon svg{
  width: 100%;
  height: 100%;
  display: block;
}

.cs-words__text{
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(255,255,255,.75);
}

.cs-words__item:hover .cs-words__text,
.cs-words__link:hover .cs-words__text{
  color: #ffffff;
}

.cs-words:hover .cs-words__track{
  animation-play-state: paused;
}

@keyframes csWordsMarquee{
  0%{
    transform: translate3d(0,0,0);
  }
  100%{
    transform: translate3d(-50%,0,0);
  }
}

@media (max-width: 1199px){
  .cs-words__item{
    padding: 16px 28px;
  }

  .cs-words__text{
    font-size: 28px;
  }
}

@media (max-width: 767px){
  .cs-words__item{
    padding: 14px 22px;
  }

  .cs-words__icon{
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }

  .cs-words__text{
    font-size: 20px;
    -webkit-text-stroke: 0;
    letter-spacing: .03em;
  }
}

@media (prefers-reduced-motion: reduce){
  .cs-words__track{
    animation: none;
  }
}