/* =============================== Sticky CTA =============================== */
.cta-sticky {
    position: fixed;
    z-index: 1030;
    bottom: 12px;
    left: 12px;
    right: 12px;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    transition: opacity .4s ease, transform .4s ease;
  }
  .cta-sticky.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(40px);
  }
  .cta-sticky .btn {
    box-shadow: 0 12px 28px rgba(0,0,0,.5);
  }
  
  @media (min-width: 992px) {
    .cta-sticky { display: none; }
  }   
  