.quote__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: center;
  &.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;
  }
}

.quote__info {
  
  p.title {
    font-size: 19px;
    font-weight: 600;
    color:#191325;
    margin-bottom: 4px;
  }
a {
  color:#C8FF50;
  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);
    }
  }
}
.quote__image {
  width: 276px;
  min-width: 276px;
  display: flex;
  flex-direction: column;

  @media (max-width: 768px) {
    width: 100%;
    height: auto;
    min-height: 0;
    
  }
  img {
    width: 100%;
    height: 276px;
    object-fit: contain;
    left: 0;
    margin-bottom: 16px;
   
  }
  
}
.quote__content {
  width: 100%;
  padding: 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #251F30;
  border-radius: 0px 4px 4px 4px;
  @media (max-width:768px) {
    padding:24px;
    margin-top: 32px;
    border-radius: 4px;
    .sharp {
      display: none;
    }
  }
  .quote-icon {
    position: absolute;
    top: -9px;
  }
  .sharp {
    position: absolute;
    left: -21px;
    top:0;
  }
  p {
    margin-bottom: 0;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--mainfont);
    color:#E6E5FA;

    @media (max-width: 1000px) {
      font-size: 19px;
    }
  }
}

.quote.is-prep .quote__image,
.quote.is-prep .quote__content,
.quote.is-prep .quote__cats .cat,
.quote.is-prep .quote__content .button {
  opacity: 0;
  transform: translateY(30px);
}

.quote.is-prep.left .quote__image { transform: translateX(-40px) scale(.96); }
.quote.is-prep.right .quote__image { transform: translateX(40px) scale(.96); }

.quote.animate-in .quote__image {
  animation: tiImageIn .8s cubic-bezier(.22,.65,.25,1) both;
}
.quote.animate-in .quote__content {
  animation: tiFadeUp .7s cubic-bezier(.22,.65,.25,1) .2s both;
}
.quote.animate-in .quote__cats .cat {
  animation: tiFadeUp .6s cubic-bezier(.22,.65,.25,1) both;
  animation-delay: calc(var(--i,0) * 90ms + .35s);
}
.quote.animate-in .quote__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) {
  .quote.animate-in .quote__image,
  .quote.animate-in .quote__content,
  .quote.animate-in .quote__cats .cat,
  .quote.animate-in .quote__content .button {
    animation:none !important; opacity:1 !important; transform:none !important; filter:none !important;
  }
}
