.cta-mainSection {
  position: relative;
  padding-top: 130px;
  padding-bottom: 130px;
}

.cta-mainSection-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 125%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin: 0 auto 48px;
  max-width: 950px;
  position: relative;
  z-index: 2;
}

.cta-mainSection .bg-circle-red {
  position: absolute;
  top: 0%;
  left: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  pointer-events: none;
  animation: bg-circle-cta 40s infinite linear;
  border-radius: 100%;
  background: var(--accent);
  filter: blur(190px);
  width: 400px;
  height: 400px;
  z-index: 1;
}

.cta-mainSection .bg-circle {
  position: absolute;
  top: -560px;
  right: -12%;
  mix-blend-mode: lighten;
  z-index: 4;
  pointer-events: none;
}

/* .choices,
#form-company {
  max-width: 321px;
} */

@keyframes bg-circle-cta {
  0% {
    transform: translate(0%, 0%);
  }
  15% {
    transform: translate(-10%, -20%);
  }
  30% {
    transform: translate(50%, -20%);
  }
  45% {
    transform: translate(50%, 20%);
  }
  60% {
    transform: translate(120%, 120%);
  }
  80% {
    transform: translate(60%, 60%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}
@media (max-width: 767px) {
  .cta-mainSection .bg-circle {
    display: none;
  }
  .cta-mainSection {
    padding-top: 65px;
    padding-bottom: 72px;
  }
  .cta-mainSection-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .cta-mainSection .form-custom {
    padding: 0;
    border: none;
  }
  .form-row {
    flex-direction: column;
    gap: 40px;
  }
  .choices,
  #form-company {
    max-width: none;
  }
  @keyframes bg-circle-cta {
    0% {
      transform: translate(0%, 170%);
    }
    50% {
      transform: translate(0%, 0%);
    }
    100% {
      transform: translate(0%, 170%);
    }
  }
  .cta-mainSection .bg-circle-red {
    left: -15%;
  }
}/*# sourceMappingURL=cta-mainSection.css.map */