/* About (/about/): three grid sections; scroll-reveal wired in script.js */

@media (prefers-reduced-motion: no-preference) {
  .page-about .about-columns-reveal.scroll-reveal--armed:not(.is-in-view) .section-head {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }

  .page-about .about-columns-reveal.scroll-reveal--armed:not(.is-in-view) .grid-3 > .card {
    opacity: 0;
    transform: translate3d(0, 1.25rem, 0);
  }

  .page-about .about-columns-reveal.scroll-reveal--armed:not(.is-in-view) .button-row {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  .page-about .about-columns-reveal.scroll-reveal--armed .section-head {
    transition:
      opacity 0.5s ease,
      transform 0.5s ease;
  }

  .page-about .about-columns-reveal.scroll-reveal--armed .grid-3 > .card {
    transition:
      opacity 0.52s ease,
      transform 0.52s ease;
  }

  .page-about .about-columns-reveal.scroll-reveal--armed .button-row {
    transition:
      opacity 0.48s ease,
      transform 0.48s ease;
  }

  .page-about .about-columns-reveal.is-in-view .section-head {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }

  .page-about .about-columns-reveal.is-in-view .grid-3 > .card:nth-child(1),
  .page-about .about-columns-reveal.is-in-view .grid-3 > .card:nth-child(2),
  .page-about .about-columns-reveal.is-in-view .grid-3 > .card:nth-child(3) {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .page-about .about-columns-reveal.is-in-view .grid-3 > .card:nth-child(1) {
    transition-delay: 0.05s;
  }

  .page-about .about-columns-reveal.is-in-view .grid-3 > .card:nth-child(2) {
    transition-delay: 0.1s;
  }

  .page-about .about-columns-reveal.is-in-view .grid-3 > .card:nth-child(3) {
    transition-delay: 0.15s;
  }

  .page-about .about-columns-reveal.is-in-view .button-row {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.22s;
  }
}
