:root {
    /* colors */
    --rv8-color-primary-hsl: 250, 84%, 54%;
    --rv8-color-bg-hsl: 0, 0%, 100%;
    --rv8-color-contrast-high-hsl: 230, 7%, 23%;
    --rv8-color-contrast-higher-hsl: 230, 13%, 9%;
    --rv8-color-accent-hsl: 342, 89%, 48%;
    --rv8-color-contrast-lower-hsl: 240, 4%, 85%;
  
    /* spacing */
    --rv8-space-xs: 0.5rem;
    --rv8-space-md: 1.25rem;
    --rv8-space-lg: 2rem;
    --rv8-space-sm: 0.75rem;
  
    /* typography */
    --rv8-text-sm: 0.833rem;
  }
  
  @media(min-width: 64rem){
    :root {
      /* spacing */
      --rv8-space-xs: 0.75rem;
      --rv8-space-md: 2rem;
      --rv8-space-lg: 3.125rem;
      --rv8-space-sm: 1.125rem;
  
      /* typography */
      --rv8-text-sm: 1rem;
    }
  }
  
  /* component */
  :root {
    --reveal-fx-duration: 0.6s;
    --reveal-fx-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  
  .reveal-fx {
    opacity: 0;
    transition: opacity, -webkit-transform var(--reveal-fx-timing-function);
    transition: opacity, transform var(--reveal-fx-timing-function);
    transition: opacity, transform var(--reveal-fx-timing-function), -webkit-transform var(--reveal-fx-timing-function);
    transition-duration: var(--reveal-fx-duration);
  }
  .reveal-fx::before {
    display: none;
    content: "reveal-fx";
  }
  
  .reveal-fx--translate, .reveal-fx--translate-up {
    transform: translateY(250px);
    -webkit-transform: translateY(250px);
    -moz-transform: translateY(250px);
    -ms-transform: translateY(250px);
    -o-transform: translateY(250px);
}
  
  .reveal-fx--translate-right {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  
  .reveal-fx--translate-left {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  
  .reveal-fx--translate-down {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  
  .reveal-fx--scale {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  
  .reveal-fx--scale-up {
    -webkit-transform: translateY(50px) scale(0.8);
            transform: translateY(50px) scale(0.8);
  }
  
  .reveal-fx--scale-right {
    -webkit-transform: translateX(-50px) scale(0.8);
            transform: translateX(-50px) scale(0.8);
  }
  
  .reveal-fx--scale-left {
    -webkit-transform: translateX(50px) scale(0.8);
            transform: translateX(50px) scale(0.8);
  }
  
  .reveal-fx--scale-down {
    -webkit-transform: translateY(-50px) scale(0.8);
            transform: translateY(-50px) scale(0.8);
  }
  
  .reveal-fx--rotate, .reveal-fx--rotate-down, .reveal-fx--rotate-right, .reveal-fx--rotate-left, .reveal-fx--rotate-up {
    -webkit-perspective: 1000px;
            perspective: 1000px;
  }
  .reveal-fx--rotate > *, .reveal-fx--rotate-down > *, .reveal-fx--rotate-right > *, .reveal-fx--rotate-left > *, .reveal-fx--rotate-up > * {
    transition: -webkit-transform var(--reveal-fx-duration) var(--reveal-fx-timing-function);
    transition: transform var(--reveal-fx-duration) var(--reveal-fx-timing-function);
    transition: transform var(--reveal-fx-duration) var(--reveal-fx-timing-function), -webkit-transform var(--reveal-fx-duration) var(--reveal-fx-timing-function);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  
  .reveal-fx--rotate > *, .reveal-fx--rotate-down > * {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: rotateX(-45deg);
            transform: rotateX(-45deg);
  }
  
  .reveal-fx--rotate-right > * {
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: rotateY(45deg);
            transform: rotateY(45deg);
  }
  
  .reveal-fx--rotate-left > * {
    -webkit-transform-origin: right center;
            transform-origin: right center;
    -webkit-transform: rotateY(-45deg);
            transform: rotateY(-45deg);
  }
  
  .reveal-fx--rotate-up > * {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: rotateX(45deg);
            transform: rotateX(45deg);
  }
  
  .reveal-fx--text-mask {
    overflow: hidden;
  }
  .reveal-fx--text-mask > * {
    display: inline-block;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    transition: -webkit-transform var(--reveal-fx-duration) var(--reveal-fx-timing-function);
    transition: transform var(--reveal-fx-duration) var(--reveal-fx-timing-function);
    transition: transform var(--reveal-fx-duration) var(--reveal-fx-timing-function), -webkit-transform var(--reveal-fx-duration) var(--reveal-fx-timing-function);
    will-change: transform;
  }
  
  [class*=reveal-fx--translate], [class*=reveal-fx--scale] {
    will-change: opacity, transform;
  }
  
  .reveal-fx--text-mask > *, [class*=reveal-fx--rotate] > * {
    will-change: transform;
  }
  
  .reveal-fx--clip-x > *,
  .reveal-fx--clip-y > * {
    transition: opacity, -webkit-clip-path cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity, clip-path cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: opacity, clip-path cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-clip-path cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-duration: var(--reveal-fx-duration);
  }
  
  .reveal-fx--clip-x > * {
    -webkit-clip-path: polygon(10% 0%, 90% 0%, 90% 100%, 10% 100%);
            clip-path: polygon(10% 0%, 90% 0%, 90% 100%, 10% 100%);
  }
  
  .reveal-fx--clip-y > * {
    -webkit-clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
  }
  
  .reveal-fx--is-visible {
    opacity: 1;
  }
  .reveal-fx--is-visible[class*=reveal-fx--translate], .reveal-fx--is-visible[class*=reveal-fx--scale], .reveal-fx--is-visible[class*=reveal-fx--rotate] > *, .reveal-fx--is-visible.reveal-fx--text-mask > * {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  .reveal-fx--is-visible.reveal-fx--clip-x > *, .reveal-fx--is-visible.reveal-fx--clip-y > * {
    opacity: 1;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  
  /* utility classes */
  .rv8-gap-xs {
    gap: var(--rv8-space-xs);
  }
  
  .rv8-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
  
  .rv8-grid > * {
    min-width: 0;
    grid-column-end: span 12;
  }
  
  .rv8-max-width-adaptive-md {
    max-width: 32rem;
  }
  
  @media(min-width: 48rem) {
    .rv8-max-width-adaptive-md {
      max-width: 48rem;
    }
  }
  
  @media(min-width: 64rem) {
    .rv8-max-width-adaptive-md {
      max-width: 64rem;
    }
  }
  
  .rv8-container {
    width: calc(100% - 2*var(--rv8-space-md));
    margin-left: auto;
    margin-right: auto;
  }
  
  .rv8-margin-bottom-lg {
    margin-bottom: var(--rv8-space-lg);
  }
  
  .rv8-text-gap-md {
    --rv8-space-multiplier: 1.25;
  }
  
  .rv8-line-height-lg {
    line-height: 1.58;
  }
  
  .rv8-text-component :where(h1, h2, h3, h4) {
    line-height: var(--rv8-heading-line-height, 1.2);
    margin-top: calc(var(--rv8-space-md) * var(--rv8-space-multiplier, 1));
    margin-bottom: calc(var(--rv8-space-sm) * var(--rv8-space-multiplier, 1));
  }
  
  .rv8-text-component :where(p, blockquote, ul li, ol li) {
    line-height: var(--rv8-body-line-height, 1.4);
  }
  
  .rv8-text-component :where(ul, ol, p, blockquote, .rv8-text-component__block) {
    margin-bottom: calc(var(--rv8-space-sm) * var(--rv8-space-multiplier, 1));
  }
  
  .rv8-text-component :where(ul, ol) {
    padding-left: 1.25em;
  }
  
  .rv8-text-component ul :where(ul, ol), .rv8-text-component ol :where(ul, ol) {
    padding-left: 1em;
    margin-bottom: 0;
  }
  
  .rv8-text-component ul {
    list-style-type: disc;
  }
  
  .rv8-text-component ol {
    list-style-type: decimal;
  }
  
  .rv8-text-component img {
    display: block;
    margin: 0 auto;
  }
  
  .rv8-text-component figcaption {
    margin-top: calc(var(--rv8-space-xs) * var(--rv8-space-multiplier, 1));
    font-size: var(--rv8-text-sm);
    text-align: center;}
  
  .rv8-text-component em {
    font-style: italic;
  }
  
  .rv8-text-component strong {
    font-weight: bold;
  }
  
  .rv8-text-component s {
    text-decoration: line-through;
  }
  
  .rv8-text-component u {
    text-decoration: underline;
  }
  
  .rv8-text-component mark {
    background-color: hsla(var(--rv8-color-accent-hsl), 0.2);
    color: inherit;
  }
  
  .rv8-text-component blockquote {
    padding-left: 1em;
    border-left: 4px solid hsl(var(--rv8-color-contrast-lower-hsl));
    font-style: italic;
  }
  
  .rv8-text-component hr {
    margin: calc(var(--rv8-space-md) * var(--rv8-space-multiplier, 1)) auto;
    background: hsl(var(--rv8-color-contrast-lower-hsl));
    height: 1px;
  }
  
  .rv8-text-component > *:first-child {
    margin-top: 0;
  }
  
  .rv8-text-component > *:last-child {
    margin-bottom: 0;
  }
  
  .rv8-text-component.rv8-line-height-xs {
    --rv8-heading-line-height: 1;
    --rv8-body-line-height: 1.1;
  }
  
  .rv8-text-component.rv8-line-height-sm {
    --rv8-heading-line-height: 1.1;
    --rv8-body-line-height: 1.2;
  }
  
  .rv8-text-component.rv8-line-height-md {
    --rv8-heading-line-height: 1.15;
    --rv8-body-line-height: 1.4;
  }
  
  .rv8-text-component.rv8-line-height-lg {
    --rv8-heading-line-height: 1.22;
    --rv8-body-line-height: 1.58;
  }
  
  .rv8-text-component.rv8-line-height-xl {
    --rv8-heading-line-height: 1.3;
    --rv8-body-line-height: 1.72;
  }
  
  .rv8-max-width-adaptive-sm {
    max-width: 32rem;
  }
  
  @media(min-width: 48rem) {
    .rv8-max-width-adaptive-sm {
      max-width: 48rem;
    }
  }
  
  .rv8-width-100\% {
    width: 100%;
  }
  
  .rv8-block {
    display: block;
  }
  
  .rv8-col-6 {
    grid-column-end: span 6;
  }