@keyframes ticker {
 from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
.ticker__in {
 flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  will-change: transform;
  animation: ticker 10s linear infinite;
  -webkit-transform-style: preserve-3d; /* Фикс возможного глюка с морганием в Сафари */
}
.ticker-in{
font-family: var(--font-tildasans-regular);
font-size: 156px;
font-weight: 300;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
text-transform: uppercase;
 white-space: nowrap;
  flex: 0 0 auto;
}
.ticker-in span{
  font-family: var(--font-bookmanoldstyle);
  font-style: italic;
}
.ticker{
 --gap: 1rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}
@media(max-width: 576px){
  .ticker-in{
  font-size: 64px;
  }
  .ticker{
    margin-top: 53px;
    margin-bottom: 53px;
  }
}