
.cip-align-center {
  display: block;
  text-align: center;
}
.cip-align-left {
  display: block;
  text-align: left;
}
.cip-align-right {
  display: block;
  text-align: right;
}

.cip-invisible {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.cip-visible {
  opacity: 1;
  transform: translateY(0);
}

.cip-anim-bounce {
  animation: bounce 1s;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-7px);
  }
}
