.scrolling-text-container{
  width:100%;
  overflow:hidden;
}

.scrolling-text{
  display:flex;
  flex-wrap:nowrap;
  will-change:transform;
  animation: marquee 15s linear infinite;
}

.scrolling-text__item{
  flex:0 0 auto;
  white-space:nowrap;
  font-size:132px;
  font-family:"Klapt-Regular";
  margin:0; padding:0;
	background-image: linear-gradient(to right, #77B9F2 -50%, #CBCBCB 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;		
}

@keyframes marquee{
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); } /* scorre di metà nastro */
}

@media only screen and (max-width: 768px){
	.scrolling-text__item{
	  font-size: 82px;
	}
	
	.scrolling-text{
	  animation: marquee 10s linear infinite;
	}
}