.rotation {
    transition: all 1.0s;
    opacity: 0;

  &.rotation-x{
      transform: rotateX(180deg);
  }
  &.rotation-y{
      transform: rotateY(180deg);
  }
  &.rotation-clockwise{
      transform: rotate(-170deg);
  }
  &.rotation-counterclockwise{
      transform: rotate(170deg);
  }
  &.scrollin{
    transform: translate(0, 0)!important;
    opacity: 1!important;
  }
}