/* Version 31: discreet brand swapping on mobile and cleanup after removing the
   extra process/CTA blocks from the Nosotros page. */

@media (max-width: 900px) {
  .trusted [data-trusted-mobile-rotator] {
    transition: opacity .28s ease, transform .28s ease;
    will-change: opacity, transform;
  }

  .trusted [data-trusted-mobile-rotator].is-changing {
    opacity: 0;
    transform: translateY(8px);
  }

  .trusted [data-trusted-mobile-rotator] .trusted__mobile-item {
    transition: box-shadow .25s ease, border-color .25s ease;
  }

  .trusted [data-trusted-mobile-rotator].has-rotated .trusted__mobile-item {
    border-color: rgba(201, 149, 56, .24);
    box-shadow: 0 8px 22px rgba(3, 17, 29, .09);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trusted [data-trusted-mobile-rotator],
  .trusted [data-trusted-mobile-rotator] .trusted__mobile-item {
    transition: none !important;
  }
}
