.cta-block--wrapper {
  position: relative;
  margin: 100px 0;
  z-index: 1;
}
@media screen and (min-width: 1000px) {
  .cta-block--wrapper {
    margin: 100px 0;
  }
}

.cta-block--content {
  text-align: center;
  max-width: 1600px;
  margin: auto;
}
.cta-block--content.border {
  border-top: 2px solid #23172b;
}
.cta-block--content h2 {
  width: 100%;
  max-width: 650px;
  margin: auto;
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-size: calc(30px + 12 * (100vw - 400px) / 1700);
  font-weight: 300;
  line-height: 1.1;
  color: #aa5adb;
  margin: 100px auto 20px auto;
}
.cta-block--content p {
  width: 100%;
  max-width: 650px;
  margin: 0 auto 10px auto;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-size: calc(16px + 4 * (100vw - 400px) / 1700);
  font-weight: 400;
  color: #d7d4d9;
  line-height: 1.3;
}
.cta-block--content a.button {
  display: inline-block;
  position: relative;
  margin-top: 20px;
  padding: 1em;
  border-radius: 30px;
  font-size: 18px;
  color: #19101f;
  text-decoration: none;
  background-color: #69eba9;
}
.cta-block--content a.button.align-left {
  align-self: flex-start;
}
.cta-block--content a.button.align-center {
  align-self: center;
}
.cta-block--content a.button.align-right {
  align-self: flex-end;
}
.cta-block--content a.button:hover {
  color: #d7d4d9;
  background-color: #19051f;
  transition: all 0.2s ease-in-out;
}
.cta-block--content a.button:hover:before {
  opacity: 1;
}
.cta-block--content a.button:before {
  content: "";
  background: linear-gradient(90deg, #6a1b9a, #6126a1, #375abf, #009fe8, #31c3ca, #69eba9, #69eba9, #31c3ca, #009fe8, #375abf, #6126a1);
  position: absolute;
  top: 0px;
  left: 0px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 0px);
  height: calc(100% + 0px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  border-radius: 30px;
}
@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

/*# sourceMappingURL=cta-block.css.map */
