/* Cartorga — Motion */
:root {
  --dur-fast: 150ms;   /* @kind other */
  --dur-base: 240ms;   /* @kind other */
  --dur-slow: 500ms;   /* @kind other */

  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);   /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);       /* @kind other */
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
