.floating-cta{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 9999;

  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;

  transition: opacity .4s, transform .4s;
}

.floating-cta.show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta img {
    width: 100%;
    max-width: 700px;
    margin: auto;
}