@font-face {
  font-family: "Open Sans";
  src: url("assets/open-sans-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("assets/open-sans-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("assets/open-sans-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("assets/open-sans-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --orange: #e5581e;
  --orange-dark: #d94d15;
  --orange-action: #c84512;
  --orange-action-hover: #b54112;
  --ink: #050505;
  --copy: #31313f;
  --muted-copy: #6d6d6d;
  --soft-gray: #f3f4f5;
  --panel-gray: #f7f7f7;
  --line: #d7d7d7;
  --footer: #444;
  --white: #fff;
  --container: 1170px;
  --radius: 10px;
  --shadow: 0 16px 45px rgba(49, 49, 63, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: #484848;
  background: var(--white);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  font: inherit;
}

a {
  color: var(--orange);
  text-decoration: none;
}

a,
button {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

a:hover {
  color: var(--orange-dark);
}

button {
  border: 0;
}

:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

/* Archive continuity notice: dates the site and hands off to Kidfriendly. */
.archive-bar {
  background: #17171b;
  color: #d5d5da;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  line-height: 1.5;
}

.archive-bar__inner {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.archive-bar__tag {
  flex: none;
  padding: 3px 9px;
  border-radius: 3px;
  background: rgba(229, 88, 30, 0.16);
  color: #f0a184;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.archive-bar__text {
  margin: 0;
  min-width: 0;
}

.archive-bar__link {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.archive-bar__link:hover,
.archive-bar__link:focus-visible {
  color: #f6a98d;
  text-decoration-color: currentColor;
}

@media (max-width: 700px) {
  .archive-bar {
    font-size: 12px;
  }

  .archive-bar__inner {
    gap: 5px 10px;
  }
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  border-radius: 6px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 100;
  min-height: 80px;
  color: var(--white);
  background: #000;
}

.nav-shell {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  width: 136px;
  flex: 0 0 136px;
  padding-block: 7px;
}

.brand img {
  width: 136px;
  height: 47px;
}

.primary-nav > ul,
.nav-dropdown__menu,
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav > ul {
  display: flex;
  align-items: center;
  gap: 3px;
}

.primary-nav a,
.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 15px;
  color: var(--white);
  background: transparent;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.nav-dropdown__toggle:hover,
.nav-dropdown__toggle:focus-visible {
  color: var(--white);
  opacity: 0.78;
}

.primary-nav .nav-cta {
  min-width: 100px;
  justify-content: center;
  margin-left: 10px;
  padding-inline: 20px;
  border-radius: var(--radius);
  background: var(--orange-action);
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible {
  opacity: 1;
  background: var(--orange-action-hover);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle svg {
  width: 11px;
  margin-left: 7px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 215px;
  padding-block: 3px;
  border-radius: 4px;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__menu li + li {
  border-top: 1px solid #444;
}

.nav-dropdown__menu a {
  display: block;
  min-height: auto;
  padding: 11px 16px;
  font-size: 14px;
  text-transform: none;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  color: var(--orange);
  opacity: 1;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 11px;
  padding: 9px 10px;
  color: var(--white);
  background: var(--orange);
  border-radius: 5px;
  cursor: pointer;
}

.menu-toggle__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-toggle__lines {
  display: grid;
  gap: 4px;
}

.menu-toggle__lines span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  min-height: 670px;
  overflow: hidden;
  background: var(--white);
}

.hero__inner {
  position: relative;
  min-height: 670px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  width: min(650px, 62%);
  padding-top: 183px;
  text-align: center;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 4.2vw, 62px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.orange-dot {
  color: var(--orange);
}

.hero p {
  margin: 25px 0 0;
  color: var(--copy);
  font-size: 25px;
  font-weight: 400;
}

.hero__art {
  position: absolute;
  z-index: 1;
  top: 48px;
  left: 50.5%;
  width: 662px;
  max-width: none;
  height: 576px;
  object-fit: cover;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: var(--radius);
  font-size: 18px;
  text-transform: uppercase;
}

.button--primary {
  color: var(--white);
  background: var(--orange-action);
}

.button--primary:hover,
.button--primary:focus-visible {
  color: var(--white);
  background: var(--orange-action-hover);
  transform: translateY(-1px);
}

.hero .button {
  width: 250px;
  margin-top: 183px;
}

.logo-band {
  padding: 36px 0 42px;
  background: var(--soft-gray);
}

.logo-band h2 {
  margin: 0 0 32px;
  color: var(--copy);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.logo-row img {
  width: 245px;
  height: 64px;
  margin-inline: auto;
  object-fit: contain;
}

.capabilities {
  padding-bottom: 8px;
}

.capability {
  padding-top: 112px;
}

.section-copy {
  width: min(780px, 100%);
  margin-inline: auto;
}

.section-copy h2,
.stories h2 {
  margin: 0 0 15px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.section-copy p {
  margin: 0;
  color: var(--copy);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.browser-frame {
  width: calc(100% - 160px);
  margin: 38px auto 0;
  padding: 30px;
  overflow: hidden;
  border-radius: 25px;
  background: var(--soft-gray);
  box-shadow: var(--shadow);
}

.browser-frame__bar {
  height: 36px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 34px;
}

.browser-dot {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 5px;
  border-radius: 50%;
}

.browser-dot--red {
  background: #fc5254;
}

.browser-dot--yellow {
  background: #fcae52;
}

.browser-dot--green {
  background: #66b34e;
}

.browser-address {
  height: 30px;
  flex: 1;
  overflow: hidden;
  padding: 3px 14px;
  color: #aaa;
  border-radius: 25px;
  background: var(--white);
  font-size: 14px;
  white-space: nowrap;
}

.browser-frame > img {
  width: 100%;
  border-radius: 2px;
}

.orange-divider {
  position: relative;
  min-height: 184px;
  display: flex;
  align-items: center;
  overflow: visible;
  margin-top: 132px;
  color: var(--white);
  background: var(--orange);
}

.orange-divider::after {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -28px;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 29px solid var(--orange);
  border-right: 29px solid transparent;
  border-left: 29px solid transparent;
  content: "";
}

.orange-divider h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--white);
  font-size: 35px;
  font-weight: 700;
  text-align: center;
}

.orange-divider__texture {
  position: absolute;
  inset-block: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.orange-divider__texture--left {
  left: 0;
  width: 488px;
  background-image: url("assets/org-img-left.jpg");
}

.orange-divider__texture--right {
  right: 0;
  width: 410px;
  background-image: url("assets/org-img-right.jpg");
}

.benefits {
  padding: 70px 0 82px;
  background: #f4f4f4;
}

.benefits__intro {
  width: min(780px, 100%);
  margin: 0 auto 58px;
  color: var(--orange);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  min-height: 455px;
  border: 1px solid #e9e9e9;
  border-radius: var(--radius);
  background: var(--white);
}

.benefit-card__icon {
  height: 183px;
  display: grid;
  place-items: center;
}

.benefit-card__icon img {
  width: 109px;
  height: 101px;
  object-fit: contain;
}

.benefit-card__body {
  padding: 0 20px 26px;
}

.benefit-card__divider {
  position: relative;
  height: 1px;
  display: block;
  margin: 4px 0 27px;
  background: var(--line);
}

.benefit-card__divider::after {
  position: absolute;
  top: -4px;
  right: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.benefit-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.benefit-card p {
  margin: 20px 0 0;
  color: var(--muted-copy);
  font-size: 18px;
  line-height: 1.55;
  text-align: center;
}

.stories {
  padding-top: 123px;
}

.stories h2 {
  margin-bottom: 46px;
  text-align: center;
}

.story-tabs {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding-left: 8px;
}

.story-tab {
  position: relative;
  padding: 6px 20px;
  color: var(--orange-action);
  background: transparent;
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}

.story-tab:hover,
.story-tab:focus-visible,
.story-tab.is-active {
  color: var(--white);
  background: var(--orange-action);
}

.story-tab.is-active::after {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: 22px;
  height: 11px;
  background: url("assets/arrow-small.png") center / 22px 11px no-repeat;
  content: "";
  transform: translateX(-50%);
}

.story-panels {
  background: var(--panel-gray);
}

.story-panel {
  animation: story-in 420ms ease both;
}

.story-panel[hidden] {
  display: none;
}

@keyframes story-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.story-stage {
  position: relative;
  height: 930px;
  overflow: hidden;
  background: #ddd;
}

.story-stage__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.story-stage__intro {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 50%;
  left: 0;
  min-height: 118px;
  margin: 0;
  padding: 36px 36px 26px;
  color: var(--ink);
  background: rgba(247, 247, 247, 0.97);
  font-size: 16px;
  font-weight: 600;
  text-align: right;
}

.testimonial {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: min(600px, 57%);
  min-height: 410px;
  margin: 0;
  padding: 56px 55px 38px 155px;
  background: rgba(255, 255, 255, 0.97);
}

.testimonial__quote {
  position: absolute;
  top: 34px;
  left: 52px;
  color: #eee;
  font-family: Georgia, serif;
  font-size: 145px;
  line-height: 1;
}

.testimonial blockquote {
  margin: 0;
  color: var(--ink);
  font-style: italic;
  line-height: 1.6;
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  color: #555;
  font-size: 13px;
  font-style: italic;
  line-height: 1.35;
}

.testimonial figcaption img {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial figcaption strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.story-controls {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: rgba(247, 247, 247, 0.98);
}

.story-arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--orange);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

.story-arrow:hover,
.story-arrow:focus-visible {
  color: var(--white);
  background: var(--orange-action);
}

.story-arrow svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.story-dots {
  display: flex;
  gap: 8px;
}

.story-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
}

.story-dots span.is-active {
  background: var(--orange);
}

.orange-divider--compact {
  margin-top: 0;
}

.trial {
  padding: 93px 0 120px;
  text-align: center;
  box-shadow: 0 -3px 5px rgba(153, 153, 153, 0.3);
}

.trial h2 {
  margin: 0;
  color: var(--orange);
  font-size: 35px;
  line-height: 1.25;
}

.trial p {
  margin: 11px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
}

.trial .button {
  margin-top: 112px;
}

.button--wide {
  width: 260px;
  font-weight: 600;
}

.site-footer {
  padding: 70px 0 65px;
  color: #bbb;
  background: var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 35px;
}

.footer-brand img {
  width: 136px;
  height: 47px;
}

.site-footer h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  color: #c4c4c4;
  font-size: 14px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

@media (max-width: 1020px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .hero__copy {
    width: 58%;
  }

  .hero__art {
    left: 45%;
  }

  .browser-frame {
    width: 100%;
  }

  .benefit-card {
    min-height: 525px;
  }

  .story-stage {
    height: 820px;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 72px;
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand {
    width: 118px;
    flex-basis: 118px;
  }

  .brand img {
    width: 118px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    z-index: 90;
    inset: 72px 0 auto;
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    padding: 18px 24px 28px;
    background: #000;
    border-top: 1px solid #2f2f2f;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav > ul {
    display: block;
  }

  .primary-nav a,
  .nav-dropdown__toggle {
    width: 100%;
    justify-content: center;
    padding: 12px 15px;
  }

  .primary-nav .nav-cta {
    width: min(260px, 100%);
    margin: 10px auto 0;
  }

  .nav-dropdown__toggle {
    margin-inline: auto;
  }

  .nav-dropdown__menu {
    position: static;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 200ms ease;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    max-height: 180px;
  }

  .hero,
  .hero__inner {
    min-height: 580px;
  }

  .hero__copy {
    width: 62%;
    padding-top: 125px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero p {
    font-size: 21px;
  }

  .hero__art {
    top: 20px;
    left: 45%;
    opacity: 0.75;
  }

  .hero .button {
    margin-top: 150px;
  }

  .logo-row img {
    width: 190px;
  }

  .capability {
    padding-top: 80px;
  }

  .browser-frame {
    padding: 22px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    width: min(520px, 100%);
    margin-inline: auto;
  }

  .benefit-card {
    min-height: auto;
  }

  .benefit-card__icon {
    height: 160px;
  }

  .story-stage {
    height: 730px;
  }

  .story-stage__intro {
    right: 38%;
  }

  .testimonial {
    width: 68%;
    min-height: 365px;
    padding: 45px 42px 32px 125px;
  }

  .testimonial__quote {
    left: 35px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .hero,
  .hero__inner {
    min-height: 480px;
  }

  .hero__copy {
    width: 100%;
    padding-top: 62px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .hero p {
    width: min(430px, 90%);
    margin: 18px auto 0;
    font-size: 20px;
  }

  .hero__art {
    display: none;
  }

  .hero .button {
    width: min(250px, 88%);
    margin-top: 100px;
  }

  .logo-band {
    padding-block: 32px;
  }

  .logo-band h2 {
    margin-bottom: 22px;
  }

  .logo-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .logo-row img {
    width: 210px;
  }

  .capability {
    padding-top: 60px;
  }

  .section-copy {
    text-align: center;
  }

  .section-copy h2 {
    font-size: 31px;
  }

  .section-copy p {
    font-size: 17px;
    font-weight: 400;
  }

  .browser-frame {
    margin-top: 28px;
    padding: 15px;
    border-radius: 16px;
  }

  .browser-frame__bar {
    height: 25px;
    gap: 9px;
    margin-bottom: 16px;
  }

  .browser-dot {
    width: 12px;
    height: 12px;
    flex-basis: 12px;
    margin-top: 5px;
  }

  .browser-address {
    height: 22px;
    padding: 1px 10px;
    font-size: 11px;
  }

  .orange-divider {
    min-height: 140px;
    margin-top: 75px;
  }

  .orange-divider h2 {
    font-size: 31px;
  }

  .orange-divider__texture--left {
    width: 65%;
    opacity: 0.5;
  }

  .orange-divider__texture--right {
    width: 55%;
    opacity: 0.5;
  }

  .benefits {
    padding: 55px 0 64px;
  }

  .benefits__intro {
    margin-bottom: 38px;
    font-size: 21px;
  }

  .benefit-card h3 {
    font-size: 24px;
  }

  .benefit-card p {
    font-size: 17px;
  }

  .stories {
    padding-top: 75px;
  }

  .stories h2 {
    margin-bottom: 34px;
    font-size: 31px;
  }

  .story-tabs {
    min-height: auto;
    justify-content: center;
    gap: 4px;
    padding: 0 0 24px;
  }

  .story-tab {
    padding: 6px 11px;
    font-size: 14px;
  }

  .story-tab.is-active::after {
    display: none;
  }

  .story-stage {
    width: 100%;
    height: auto;
    overflow: visible;
    background: var(--panel-gray);
  }

  .story-stage__image {
    height: 520px;
  }

  .story-stage__intro {
    position: relative;
    inset: auto;
    min-height: auto;
    padding: 24px 20px;
    text-align: left;
  }

  .testimonial {
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 38px 25px 35px 88px;
  }

  .testimonial__quote {
    top: 20px;
    left: 20px;
    font-size: 100px;
  }

  .orange-divider--compact {
    margin-top: 0;
  }

  .trial {
    padding: 75px 0 90px;
  }

  .trial h2 {
    font-size: 30px;
  }

  .trial .button {
    margin-top: 75px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 390px) {
  .menu-toggle__label {
    display: none;
  }

  .story-tabs {
    flex-wrap: wrap;
  }

  .story-stage__image {
    height: 410px;
  }

  .testimonial {
    padding: 90px 25px 32px;
  }

  .testimonial__quote {
    top: 8px;
    left: 24px;
  }

  .testimonial figcaption {
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

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