.text-cta__container {
  display: flex;
  justify-content: space-between;
  padding: 48px 100px;
  z-index: 1;
  max-width: 1192px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  gap: 64px;
  align-items: flex-end;
  &.left {
    flex-direction: row-reverse;
    @media (max-width: 768px) {
      flex-direction: column-reverse;
    }
  }
  @media (max-width: 1400px) {
    padding: 48px 50px;
  }
  @media (max-width: 1000px) {
    padding: 32px 16px;
  }
  @media (max-width: 768px) {
    flex-direction: column;
    gap: 0;
  }
}


.text-cta__cta {
  width: 276px;
  p {
    color: #c8ff50;
    font-weight: 500;
    font-size: 33px;
    line-height: 1.2;

    font-family: var(--mainfont);
&.dark {
  color:#7B4FFF;
}
    @media (max-width: 1000px) {
      font-size: 22px;
    }
  }
}
.text-cta__content {
  width: 57%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 128px;
  @media (max-width: 768px) {
    width: 100%;
  padding-bottom: 32px;
  }

 
  &.light {
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      color: white;
      margin-bottom: 8px;
    }
    p,
    ul li {
      color: #ffffffbf;
    }
    span.subheader {
      color: rgba(255, 255, 255, 0.5);
      svg {
        path {
          fill: rgba(255, 255, 255, 0.5);
        }
      }
    }
  }
}

.text-cta.is-prep .text-cta__image,
.text-cta.is-prep .text-cta__content,
.text-cta.is-prep .text-cta__cats .cat,
.text-cta.is-prep .text-cta__content .button {
  opacity: 0;
  transform: translateY(30px);
}

.text-cta.is-prep.left .text-cta__image {
  transform: translateX(-40px) scale(0.96);
}
.text-cta.is-prep.right .text-cta__image {
  transform: translateX(40px) scale(0.96);
}

.text-cta.animate-in .text-cta__image {
  animation: tiImageIn 0.8s cubic-bezier(0.22, 0.65, 0.25, 1) both;
}
.text-cta.animate-in .text-cta__content {
  animation: tiFadeUp 0.7s cubic-bezier(0.22, 0.65, 0.25, 1) 0.2s both;
}
.text-cta.animate-in .text-cta__cats .cat {
  animation: tiFadeUp 0.6s cubic-bezier(0.22, 0.65, 0.25, 1) both;
  animation-delay: calc(var(--i, 0) * 90ms + 0.35s);
}
.text-cta.animate-in .text-cta__content .button {
  animation: tiFadeUp 0.6s cubic-bezier(0.22, 0.65, 0.25, 1) 0.6s both;
}

@keyframes tiImageIn {
  0% {
    opacity: 0;
    transform: translateX(-40px) scale(0.96);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}
@keyframes tiFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .text-cta.animate-in .text-cta__image,
  .text-cta.animate-in .text-cta__content,
  .text-cta.animate-in .text-cta__cats .cat,
  .text-cta.animate-in .text-cta__content .button {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
