#cta-banner {
  color: #ffffff;
  text-align: center;
  position: fixed;
  bottom: 30px;
  left: 0;
  width: 100%;
  z-index: 9999;

  -webkit-transition: all 1s cubic-bezier(.87,-.41,.19,1.44);
  transition: all 1s cubic-bezier(.87,-.41,.19,1.44);
  
  -webkit-transform: translateY(106px);
  transform: translateY(106px);
}

#cta-banner.active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#cta-banner .wrap {
  position: relative;
  background: #000000;
  border-radius: 100px;
  -webkit-box-shadow: 0 10px 30px -15px rgba(0,0,0,1);
  box-shadow: 0 10px 30px -15px rgba(0,0,0,1);
  padding: 15px;
}

#cta-banner .wrap .btn {
  border: none;
	background-color: #BD9B07;
  background-size: 200% auto;
	margin: 0 15px;

  -webkit-transition: all .5s;
  transition: all .5s;
}

#cta-banner .wrap .btn:hover {
	background-position: right center;
  transform: scale(1.05);
}

#cta-banner .wrap #close-cta-banner {
  position: absolute;
  right: 15px;
  cursor: pointer;
  opacity: .5;

  -webkit-transition: all .3s;
  transition: all .3s;
}

#cta-banner .wrap #close-cta-banner:hover {
  opacity: 1;
  transform: scale(.85);
}


@media (max-width: 992px) {

 #cta-banner {
   display: none !important;
}