.for-you-services-list {
  padding-left: 0;
  margin-bottom: 0;
}
.for-you-services-list li.for-you-service-anim {
  opacity: 0;
  transform: translateX(-32px);
  animation: forYouFadeInLeft 0.7s cubic-bezier(.5,.1,.5,1) forwards;
}
@keyframes forYouFadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-32px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
