Texto rotativo
.e-text-path svg{
animation: textRotate 7s infinite linear;
height: 50%;
height: 100px;
width: 100px;
}
@keyframes textRotate{
to{
transform:rotate(360deg);
}
}
Carrossel infinito
.swiper-wrapper{
transition-timing-function: linear;
}