/*
body {
  box-sizing: border-box;
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
* {
  --surface-surface-button: #5F249F;
  --surface-surface-primary: #F4F6FB;
  --text-button-label: #FFFFFF;
  --Dark-Purple: #1E0B4D;
  --Primary-Purple: #4A0D60;
  --Grey-Blue: #ECF0F9;
  --1: 8px;
  --2: 16px;
  --3: 24px;
  --4: 32px;
  --5: 40px;
  --6: 48px;
  --spacing-5: 20px;
}
body {
  background: var(--surface-surface-primary, #F4F6FB);
}
.buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 0.8rem;
}
.buttons a {
  position: relative;
}
.buttons a:hover .text,
.buttons a:active .text {
  background-color: #9251D8;
}
.buttons a:hover .gooey-effect .bubbles .bubble,
.buttons a:active .gooey-effect .bubbles .bubble {
  background-color: #782DC9;
}
.buttons a .text {
  z-index: 1;
  position: relative;
  display: flex;
  height: 5.4rem;
  padding: var(--2, 1.6rem) var(--3, 3.2rem);
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  border-radius: 5rem;
  background: var(--surface-surface-button, #5F249F);
  color: var(--text-button-label, #FFF);
  text-align: center;
  font-family: 'New Order', sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.028rem;
  text-transform: uppercase;
  grid-gap: 0.8rem;
}
.buttons a img {
  width: 2rem;
  height: 2rem;
}
.container {
  max-width: 144rem;
  padding: 0 6.4rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1.6rem;
  }
}

.gooey-svg {
  position: absolute;
  top: -4000px;
  left: -4000px;
}
.gooey-effect {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  filter: url('#gooey');
  position: absolute;
  top: 0;
  left: 0;
}
.gooey-effect:focus {
  outline: none;
}
.gooey-effect .bubbles {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.gooey-effect .bubbles .bubble {
  background-color: var(--surface-surface-button, #5F249F);
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: -1;
}
.gooey-effect .bubbles .bubble:nth-child(1) {
  left: 5%;
  width: 25px;
  height: 25px;
  animation: move-1 3.02s infinite;
  animation-delay: 0.2s;
}
.gooey-effect .bubbles .bubble:nth-child(2) {
  left: 10%;
  width: 25px;
  height: 25px;
  animation: move-2 3.04s infinite;
  animation-delay: 0.4s;
}
.gooey-effect .bubbles .bubble:nth-child(3) {
  left: 20%;
  width: 25px;
  height: 25px;
  animation: move-3 3.06s infinite;
  animation-delay: 0.6s;
}
.gooey-effect .bubbles .bubble:nth-child(4) {
  left: 30%;
  width: 25px;
  height: 25px;
  animation: move-4 3.08s infinite;
  animation-delay: 0.8s;
}
.gooey-effect .bubbles .bubble:nth-child(5) {
  left: 40%;
  width: 25px;
  height: 25px;
  animation: move-5 3.1s infinite;
  animation-delay: 1s;
}
.gooey-effect .bubbles .bubble:nth-child(6) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation: move-6 3.12s infinite;
  animation-delay: 1.2s;
}
.gooey-effect .bubbles .bubble:nth-child(7) {
  left: 60%;
  width: 25px;
  height: 25px;
  animation: move-7 3.14s infinite;
  animation-delay: 1.4s;
}
.gooey-effect .bubbles .bubble:nth-child(8) {
  left: 70%;
  width: 25px;
  height: 25px;
  animation: move-8 3.16s infinite;
  animation-delay: 1.6s;
}
.gooey-effect .bubbles .bubble:nth-child(9) {
  left: 80%;
  width: 25px;
  height: 25px;
  animation: move-9 3.18s infinite;
  animation-delay: 1.8s;
}
.gooey-effect .bubbles .bubble:nth-child(10) {
  left: 85%;
  width: 25px;
  height: 25px;
  animation: move-10 3.2s infinite;
  animation-delay: 2s;
}
.gooey-effect.to-bottom .bubbles {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.gooey-effect.to-bottom .bubbles .bubble {
  background-color: var(--surface-surface-button, #5F249F);
}
.gooey-effect.to-bottom .bubbles .bubble:nth-child(1) {
  width: 2.5rem;
  height: 2.5rem;
  animation: move-1-bottom 3.02s infinite;
  animation-delay: 0.2s;
}
.gooey-effect.to-bottom .bubbles .bubble:nth-child(2) {
  width: 2.5rem;
  height: 2.5rem;
  animation: move-2-bottom 3.04s infinite;
  animation-delay: 0.4s;
}
.gooey-effect.to-bottom .bubbles .bubble:nth-child(3) {
  width: 2.5rem;
  height: 2.5rem;
  animation: move-3-bottom 3.06s infinite;
  animation-delay: 0.6s;
}
.gooey-effect.to-bottom .bubbles .bubble:nth-child(4) {
  width: 2.5rem;
  height: 2.5rem;
  animation: move-4-bottom 3.08s infinite;
  animation-delay: 0.8s;
}
.gooey-effect.to-bottom .bubbles .bubble:nth-child(5) {
  width: 2.5rem;
  height: 2.5rem;
  animation: move-5-bottom 3.1s infinite;
  animation-delay: 1s;
}
.gooey-effect.to-bottom .bubbles .bubble:nth-child(6) {
  width: 2.5rem;
  height: 2.5rem;
  animation: move-6-bottom 3.12s infinite;
  animation-delay: 1.2s;
}
.gooey-effect.to-bottom .bubbles .bubble:nth-child(7) {
  width: 2.5rem;
  height: 2.5rem;
  animation: move-7-bottom 3.14s infinite;
  animation-delay: 1.4s;
}
.gooey-effect.to-bottom .bubbles .bubble:nth-child(8) {
  width: 2.5rem;
  height: 2.5rem;
  animation: move-8-bottom 3.16s infinite;
  animation-delay: 1.6s;
}
.gooey-effect.to-bottom .bubbles .bubble:nth-child(9) {
  width: 2.5rem;
  height: 2.5rem;
  animation: move-9-bottom 3.18s infinite;
  animation-delay: 1.8s;
}
.gooey-effect.to-bottom .bubbles .bubble:nth-child(10) {
  width: 2.5rem;
  height: 2.5rem;
  animation: move-10-bottom 3.2s infinite;
  animation-delay: 2s;
}
@keyframes move-1 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -50px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-2 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -30px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-3 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -50px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-4 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -103px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-5 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -20px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-6 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -100px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-7 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -94px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-8 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -126px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-9 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -60px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-10 {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, -10px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-1-bottom {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, 5rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-2-bottom {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, 3rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-3-bottom {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, 5rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-4-bottom {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, 10.3rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-5-bottom {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, 2rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-6-bottom {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, 10rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-7-bottom {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, 9.4rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-8-bottom {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, 12.6rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-9-bottom {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, 6rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes move-10-bottom {
  0% {
    transform: translate(0, 0);
  }
  99% {
    transform: translate(0, 1rem);
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
html {
  font-size: 10px;
}
@media (max-width: 4000px) {
  html {
    font-size: calc(10/1440 * 100vw);
  }
}
@media (max-width: 991px) {
  html {
    font-size: calc(10/991 * 100vw);
  }
}
@media (max-width: 768px) {
  html {
    font-size: calc(10/390 * 100vw);
  }
}
html.lock,
html.lock body {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
img {
  width: 100%;
}
a,
a:link,
a:visited {
  text-decoration: none;
}
ul li {
  list-style: none;
}
.hidden {
  display: none !important;
}
.hidden-modal {
  opacity: 0!important;
  pointer-events: none!important;
}
.mobile {
  display: none;
}
@media (max-width: 768px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: initial;
  }
}
*/
.doc-lead-gen {
  margin-top: 120px;
  padding-top: 8.7rem;
  padding-bottom: 6.7rem;
}
.doc-lead-gen > .container {
  padding: 0;
  max-width: 107.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 7.2rem;
}
.doc-lead-gen .left {
  max-width: 51.2rem;
  width: 100%;
}
.doc-lead-gen .right {
  max-width: 51.4rem;
  width: 100%;
}
.doc-lead-gen .right img {
  width: 100%;
  height: auto;
}
.doc-lead-gen h1 {
  color: #5F249F;
  font-family: "Gothiks Round", sans-serif;
  font-size: 7.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}
.doc-lead-gen .text {
  margin: 1.8rem 0rem 1rem 0rem;
  color: #333;
  font-family: "New Order", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.8rem;
}
.doc-lead-gen a {
  border-radius: 5rem;
  background: #5F249F;
  position: relative;
  display: flex;
  height: 5.4rem;
  width: 27.2rem;
  padding: 1.6rem 3.2rem;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.doc-lead-gen a span {
  position: relative;
  z-index: 1;
  color: #FFF;
  text-align: center;
  font-family: "New Order", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.028rem;
  text-transform: uppercase;
}
.doc-lead-gen a img {
  position: relative;
  z-index: 1;
  filter: brightness(100);
  width: 2rem;
  height: 2rem;
}
.doc-lead-gen .references {
  color: #333;
  font-family: "New Order", sans-serif;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.doc-lead-gen .references p:first-child {
  text-indent: -0.5rem;
  margin-bottom: 1.668rem;
}
@media (max-width: 991px) {
  .doc-lead-gen {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .doc-lead-gen > .container {
    padding: 0 6.4rem;
    grid-gap: 2rem;
  }
}
@media (max-width: 768px) {
  .doc-lead-gen {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .doc-lead-gen h1 {
    font-size: 5.5rem;
    line-height: 5.2rem;
  }
  .doc-lead-gen > .container {
    padding: 0 1.6rem;
    grid-gap: 3rem;
  }
  .doc-lead-gen .text {
    margin-top: 25rem;
  }
  .doc-lead-gen .right {
    position: absolute;
    width: 60%;
    right: 0;
    /*top: 37rem;*/
    padding-top: 2rem;
  }
}
/*# sourceMappingURL=doc-lead-gen.css.map */