.waviy {
  position: relative;
  text-align: center;
}
.waviy span {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  position: relative;
  display: inline-block;
  -webkit-text-stroke: 1px #fe0000;
  color: #000;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  animation: waviy 3s infinite;
  animation-delay: calc(.1s * var(--i));
}
.waviy a {
    text-decoration: none !important;
}
.testimonials {
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: #f5f5f5;
    padding: 1% 2%;
}

@keyframes waviy {
  0%,40%,100% {
    transform: translateY(0)
  }
  20% {
    transform: translateY(-10px)
  }
}




