.cta-contact__container {
  display: flex;
  justify-content: center;
  padding: 48px 100px;
  z-index: 1;
  max-width: 1192px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  gap:64px;
  align-items: center;
  @media (max-width: 1000px) {
   flex-direction: column-reverse;
   gap:32px;
  }
  &.left {
    flex-direction: row-reverse;
    @media (max-width: 1000px) {
      flex-direction: column-reverse;
      gap:32px;
     }
  }
  @media (max-width: 1400px) {
    padding: 48px 50px;
  }
  @media (max-width: 1000px) {
    padding: 32px 16px;
  }
  @media (max-width: 768px) {
    flex-direction: column;
    gap:0;
  }
}
.cta-contact__cats {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8px;
  gap:8px;
  .cat {
    border-radius: 4px;
    color:#807D87;
    padding: 4px 6px;
    font-weight: 500;
    font-size: 11px;
    background-color: #E8E7E9;
    text-decoration: none;
  }
}
.cta-contact__info {
  
  p.title {
    font-size: 19px;
    font-weight: 600;
    color:#191325;
    margin-bottom: 4px;
  }
a {
  color:#7B4FFF;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  display: flex;
  text-decoration: none;
}
  &.light {
  p.title {
      color: white;
    }
    p, ul li {
      color:rgba(255, 255, 255, 0.5);
    }
  }
}
.cta-contact__items {
  display: flex;
gap:32px;
@media (max-width: 768px) {
 flex-direction: column;
  }
.cta-contact__image {
  width: 259px;
  min-width: 259px;
  display: flex;
  flex-direction: column;
  position: relative;
.ln {
  position: absolute;
  right: 0;
  bottom: 0;
}
  @media (max-width: 768px) {
    width: 100%;
    height: auto;
    min-height: 0;
    
  }
  img {
    width: 100%;
    height: 259px;
    object-fit: contain;
    left: 0;
    margin-bottom: 16px;
   
  }
  
}
}

.cta-contact__content {
  max-width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 378px;
  @media (max-width: 1000px) {
   width: 100%;
   }
}

.cta-contact.is-prep .cta-contact__image,
.cta-contact.is-prep .cta-contact__content,
.cta-contact.is-prep .cta-contact__cats .cat,
.cta-contact.is-prep .cta-contact__content .button {
  opacity: 0;
  transform: translateY(30px);
}

.cta-contact.is-prep.left .cta-contact__image { transform: translateX(-40px) scale(.96); }
.cta-contact.is-prep.right .cta-contact__image { transform: translateX(40px) scale(.96); }

.cta-contact.animate-in .cta-contact__image {
  animation: tiImageIn .8s cubic-bezier(.22,.65,.25,1) both;
}
.cta-contact.animate-in .cta-contact__content {
  animation: tiFadeUp .7s cubic-bezier(.22,.65,.25,1) .2s both;
}
.cta-contact.animate-in .cta-contact__cats .cat {
  animation: tiFadeUp .6s cubic-bezier(.22,.65,.25,1) both;
  animation-delay: calc(var(--i,0) * 90ms + .35s);
}
.cta-contact.animate-in .cta-contact__content .button {
  animation: tiFadeUp .6s cubic-bezier(.22,.65,.25,1) .6s both;
}

@keyframes tiImageIn {
  0% { opacity:0; transform:translateX(-40px) scale(.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) {
  .cta-contact.animate-in .cta-contact__image,
  .cta-contact.animate-in .cta-contact__content,
  .cta-contact.animate-in .cta-contact__cats .cat,
  .cta-contact.animate-in .cta-contact__content .button {
    animation:none !important; opacity:1 !important; transform:none !important; filter:none !important;
  }
}
