.section-call-to-action {
  margin: 100px 0;
}

.content-call-to-action {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2em;
}

.content-call-to-action>h2 {
  margin-left: 0;
  color: #fff;
  text-align: center;
  font-weight: 700;

}

.content-call-to-action>h2>br {
  display: none;
}

.content-call-to-action>h2>span {
  font-weight: 300;
}


.content-call-to-action > h2{
  color: #FFF;
  font-family: Encode Sans;
  font-size: 2.5em;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 1.5em;
}

.content-call-to-action-button {
  border-radius: 8px;
  background: #EF8F29;
  border: none;
  color: #fff;
  font-size: 1.12em;
  font-family: Encode Sans;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 10px 56px;
  animation: shake 1.5s infinite;
  transition: 0.5s ease-in-out;
}

.content-call-to-action-button:hover {
  background: #44006d;
  animation: none !important;
  transform: rotate(0);
}

@media (min-width:500px) {
  .content-call-to-action {
    overflow: hidden;
    border-radius: 8px;
    margin: 0 7.5vw;
    align-items: flex-start;
  }

  .content-call-to-action>button {
    margin-top: 2em;
  }

  .content-call-to-action>h2 {
    text-align: start;
    padding-bottom: .5em;
  }

  .content-call-to-action>h2>br {
    display: block !important;
  }


}


@media (min-width:991px) {
  .content-call-to-action {
    margin: 0;
  }
}

@media (min-width:1200px) {
  .content-call-to-action {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8%;
  }

  .content-call-to-action-button {
    width: 220px;
    padding: 10px 30px;
  }

}



@keyframes shake {
  0% {
    transform: translate(0, 0) rotate(0);
  }

  5%,
  15%,
  25%,
  35%,
  45%,
  55%,
  65%,
  75%,
  85%,
  95% {
    transform: translate(-2px, 0) rotate(-2deg);
  }

  10%,
  20%,
  30%,
  40%,
  50%,
  60%,
  70%,
  80%,
  90% {
    transform: translate(2px, 0) rotate(2deg);
  }

  100% {
    transform: translate(0, 0) rotate(0);
  }
}

.content-call-to-action>img {
  inset: 0 !important;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  position: absolute;
  max-width: auto !important;
}