#cta-button-pulse-2 {
  margin-top: 20px;
  margin-bottom: 20px;
text-align:center;
}

#cta-button-pulse-2 .bonus-button-pulse-2 {
  background-color: transparent !important;
}

#cta-button-pulse-2 .bonus-button-pulse-2 a {
  display: inline-block;
  width: 93%;
  padding: 0.75rem 1.25rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  text-align: center;
  animation: pulse-shadow 2s infinite;
  transition: background-color 0.3s ease;
}

#cta-button-pulse-2 .bonus-button-pulse-2 a:hover {
  	box-shadow: 0 0 3rem 0.5rem;
	animation: unset;

}

#cta-button-pulse-2 .bonus-button-pulse-2 a strong {
  color: inherit;
  font-weight: inherit;
}
@keyframes pulse-shadow {
  	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0.5rem 0.1rem;
	}
	
	50% {
		transform: scale(1);
		box-shadow: 0 0 3rem 0.5rem;
	}
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0.5rem 0.1rem;
	}

@media (max-width: 760px) {
  #cta-button-pulse-2 .bonus-button-pulse-2 a {
    width: 89%;
  }
}