.text-points__container {
  display: flex;
flex-direction: column;
  padding: 48px 100px;
  z-index: 1;
  max-width: 784px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  gap: 16px;
  &.left {
    flex-direction: row-reverse;
    @media (max-width: 768px) {
      flex-direction: column;
    }
  }
  @media (max-width: 1400px) {
    padding: 48px 50px;
  }
  @media (max-width: 1000px) {
    padding: 32px 16px;
  }
  @media (max-width: 768px) {
    flex-direction: column;
    gap: 0;
  }
}

.text-points__header {
  width: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
  &.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);
        }
      }
    }
  }
  @media (max-width: 768px) {
    width: 100%;
    height: auto;
    min-height: 0;
  }
}
.text-points__points {
  display: flex;
flex-wrap: wrap;
gap:16px;
}
.text-points__content {
  width: 100%;
  position: relative;

  justify-content: center;
  @media (max-width: 768px) {
    width: 100%;
    padding: 0px;
  }
  .point {
    display: flex;
    gap: 12px;
    width: calc(50% - 8px);
    @media (max-width: 768px) {
    width: 100%;
    }
    svg {
      min-width: 28px;
    }
    p.title {
      color: #191325;
      font-size: 19px;
      font-weight: 600;
      margin-bottom: 8px;
    }
  }
}

.text-points.is-prep .text-points__image,
.text-points.is-prep .text-points__content,
.text-points.is-prep .text-points__cats .cat,
.text-points.is-prep .text-points__content .button {
  opacity: 0;
  transform: translateY(30px);
}

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

.text-points.animate-in .text-points__image {
  animation: tiImageIn 0.8s cubic-bezier(0.22, 0.65, 0.25, 1) both;
}
.text-points.animate-in .text-points__content {
  animation: tiFadeUp 0.7s cubic-bezier(0.22, 0.65, 0.25, 1) 0.2s both;
}
.text-points.animate-in .text-points__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-points.animate-in .text-points__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-points.animate-in .text-points__image,
  .text-points.animate-in .text-points__content,
  .text-points.animate-in .text-points__cats .cat,
  .text-points.animate-in .text-points__content .button {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
