@charset "UTF-8";
.container {
  width: calc(100% - 2 * var(--component-padding));
  margin-left: auto;
  margin-right: auto;
}

.grid, .flex,
[class^=flex\@], [class*=" flex@"],
[class^=inline-flex\@], [class*=" inline-flex@"] {
  --gap: 0px;
  --gap-x: var(--gap);
  --gap-y: var(--gap);
  gap: var(--gap-y) var(--gap-x);
}
.grid > *, .flex > *,
[class^=flex\@] > *, [class*=" flex@"] > *,
[class^=inline-flex\@] > *, [class*=" inline-flex@"] > * {
  --sub-gap: 0px;
  --sub-gap-x: var(--sub-gap);
  --sub-gap-y: var(--sub-gap);
}

.grid {
  --grid-columns: 12;
  display: flex;
  flex-wrap: wrap;
}
.grid > * {
  flex-basis: 100%;
  max-width: 100%;
  min-width: 0;
}

/* #region (Safari < 14.1 fallback) */
@media not all and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    .grid, .flex[class*=gap-] {
      gap: 0px;
      margin-bottom: calc(-1 * var(--gap-y));
      margin-left: calc(-1 * var(--gap-x));
    }
    .grid > *, .flex[class*=gap-] > * {
      margin-bottom: var(--sub-gap-y);
    }
    .grid {
      --offset: var(--gap-x);
      --gap-modifier: 0;
      --offset-modifier: 1;
    }
    .grid > * {
      margin-left: var(--offset);
    }
    .flex[class*=gap-] > * {
      margin-left: var(--sub-gap-x);
    }
  }
}
/* #endregion */

.gap-xs {
  --gap-x: var(--space-xs);
  --gap-y: var(--space-xs);
}
.gap-xs > * {
  --sub-gap-x: var(--space-xs);
  --sub-gap-y: var(--space-xs);
}

.gap-md {
  --gap-x: var(--space-md);
  --gap-y: var(--space-md);
}
.gap-md > * {
  --sub-gap-x: var(--space-md);
  --sub-gap-y: var(--space-md);
}

.gap-lg {
  --gap-x: var(--space-lg);
  --gap-y: var(--space-lg);
}
.gap-lg > * {
  --sub-gap-x: var(--space-lg);
  --sub-gap-y: var(--space-lg);
}

@media (min-width: 32rem) {
  .col-5\@xs {
    --span: 5;
  }
   .col-5\@xs {
    flex-basis: calc((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns) + (var(--span) - 1) * var(--sub-gap-x));
    max-width: calc((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns) + (var(--span) - 1) * var(--sub-gap-x));
  }
  @media not all and (min-resolution: 0.001dpcm) {
  }
}
@media (min-width: 48rem) {
  @media not all and (min-resolution: 0.001dpcm) {
  }
}
@media (min-width: 64rem) {
  .col-5\@md {
    --span: 5;
  }
  .col-6\@md {
    --span: 6;
  }
   .col-5\@md, .col-6\@md {
    flex-basis: calc((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns) + (var(--span) - 1) * var(--sub-gap-x));
    max-width: calc((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns) + (var(--span) - 1) * var(--sub-gap-x));
  }
  @media not all and (min-resolution: 0.001dpcm) {
  }
}
@media (min-width: 80rem) {
  .col-8\@lg {
    --span: 8;
  }
   .col-8\@lg {
    flex-basis: calc((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns) + (var(--span) - 1) * var(--sub-gap-x));
    max-width: calc((100% - (var(--grid-columns) - var(--gap-modifier, 1)) * var(--sub-gap-x)) * var(--span) / var(--grid-columns) + (var(--span) - 1) * var(--sub-gap-x));
  }
  @media not all and (min-resolution: 0.001dpcm) {
  }
}
@media (min-width: 90rem) {
  @media not all and (min-resolution: 0.001dpcm) {
  }
}
*, *::after, *::before {
  box-sizing: inherit;
}

* {
  font: inherit;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, p,
a, code, img, s,
small, strong, var,
b, u, i, center, ul, li, form,
table,
article, details, embed,
figure, figcaption, footer, header,
menu, nav, output, section, summary,
time, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  box-sizing: border-box;
}

body {
  background-color: var(--color-bg, white);
}

article, details, figcaption, figure,
footer, header, menu, nav, section {
  display: block;
}

 ul, menu {
  list-style: none;
}

button {
  margin: 0;
}

.btn, .link, .reset {
  background-color: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, video, svg {
  max-width: 100%;
}

[data-theme] {
  background-color: var(--color-bg, hsl(0, 0%, 100%));
  color: var(--color-contrast-high, hsl(210, 7%, 21%));
}

:root {
  --space-unit: 1rem;
}

:root, * {
  --space-xxxxs: calc(0.125 * var(--space-unit));
  --space-xxxs: calc(0.25 * var(--space-unit));
  --space-xxs: calc(0.375 * var(--space-unit));
  --space-xs: calc(0.5 * var(--space-unit));
  --space-sm: calc(0.75 * var(--space-unit));
  --space-md: calc(1.25 * var(--space-unit));
  --space-lg: calc(2 * var(--space-unit));
  --space-xl: calc(3.25 * var(--space-unit));
  --space-xxl: calc(5.25 * var(--space-unit));
  --space-xxxl: calc(8.5 * var(--space-unit));
  --space-xxxxl: calc(13.75 * var(--space-unit));
  --component-padding: var(--space-md);
}

:root {
  --radius-sm: calc(var(--radius, 0.375em)/2);
  --radius-md: var(--radius, 0.375em);
  --radius-lg: calc(var(--radius, 0.375em)*2);
  --shadow-ring: 0 0 0 1px hsla(0, 0%, 0%, 0.05);
  --shadow-xs: 0 0 0 1px hsla(0, 0%, 0%, 0.02),
                0 1px 3px -1px hsla(0, 0%, 0%, 0.2);
  --shadow-sm: 0 0.3px 0.4px hsla(0, 0%, 0%, 0.02),
                0 0.9px 1.5px hsla(0, 0%, 0%, 0.045),
                0 3.5px 6px hsla(0, 0%, 0%, 0.09);
  --shadow-md: 0 0.9px 1.25px hsla(0, 0%, 0%, 0.025),
                0 3px 5px hsla(0, 0%, 0%, 0.05),
                0 12px 20px hsla(0, 0%, 0%, 0.09);
  --shadow-lg: 0 1.2px 1.9px -1px hsla(0, 0%, 0%, 0.01),
                0 3px 5px -1px hsla(0, 0%, 0%, 0.015),
                0 8px 15px -1px hsla(0, 0%, 0%, 0.05),
                0 28px 40px -1px hsla(0, 0%, 0%, 0.1);
  --shadow-xl: 0 1.5px 2.1px -6px hsla(0, 0%, 0%, 0.009),
                0 3.6px 5.2px -6px hsla(0, 0%, 0%, 0.0115),
                0 7.3px 10.6px -6px hsla(0, 0%, 0%, 0.0125),
                0 16.2px 21.9px -6px hsla(0, 0%, 0%, 0.025),
                0 46px 60px -6px hsla(0, 0%, 0%, 0.15);
  --inner-glow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075);
  --inner-glow-top: inset 0 1px 0.5px hsla(0, 0%, 100%, 0.075);
  --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

:root {
  --heading-line-height: 1.2;
  --body-line-height: 1.4;
}

body {
  font-size: var(--text-base-size, 1rem);
  font-family: var(--font-primary, sans-serif);
  color: var(--color-contrast-high, hsl(210, 7%, 21%));
  font-weight: var(--body-font-weight, normal);
}

h1, h2, h3, h4 {
  color: var(--color-contrast-higher, hsl(204, 28%, 7%));
  line-height: var(--heading-line-height, 1.2);
  font-weight: var(--heading-font-weight, 700);
}

h1 {
  font-size: var(--text-xxl, 2rem);
}

h2 {
  font-size: var(--text-xl, 1.75rem);
}

h3 {
  font-size: var(--text-lg, 1.375rem);
}

h4 {
  font-size: var(--text-md, 1.125rem);
}

small {
  font-size: var(--text-sm, 0.75rem);
}

a, .link {
  color: var(--color-primary, hsl(250, 84%, 54%));
  text-decoration: underline;
}

strong {
  font-weight: bold;
}

s {
  text-decoration: line-through;
}

u {
  text-decoration: underline;
}

.text-component h1, .text-component h2, .text-component h3, .text-component h4 {
  line-height: calc(var(--heading-line-height) * var(--line-height-multiplier, 1));
  margin-bottom: calc(var(--space-unit) * 0.3125 * var(--text-space-y-multiplier, 1));
}
.text-component h2, .text-component h3, .text-component h4 {
  margin-top: calc(var(--space-unit) * 0.9375 * var(--text-space-y-multiplier, 1));
}
.text-component p, .text-component ul li {
  line-height: calc(var(--body-line-height) * var(--line-height-multiplier, 1));
}
.text-component ul, .text-component p {
  margin-bottom: calc(var(--space-unit) * 0.9375 * var(--text-space-y-multiplier, 1));
}
.text-component ul {
  list-style-position: inside;
}
.text-component ul ul {
  padding-left: 1em;
  margin-bottom: 0;
}
.text-component ul {
  list-style-type: disc;
}
.text-component img {
  display: block;
  margin: 0 auto;
}
.text-component figcaption {
  text-align: center;
  margin-top: calc(var(--space-unit) * 0.5);
}
.text-component > *:first-child {
  margin-top: 0;
}
.text-component > *:last-child {
  margin-bottom: 0;
}
:root {
  --icon-xxxs: 8px;
  --icon-xxs: 12px;
  --icon-xs: 16px;
  --icon-sm: 24px;
  --icon-md: 32px;
  --icon-lg: 48px;
  --icon-xl: 64px;
  --icon-xxl: 96px;
  --icon-xxxl: 128px;
}

.icon {
  --size: 1em;
  font-size: var(--size);
  height: 1em;
  width: 1em;
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

@keyframes icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.icon use {
  color: inherit;
  fill: currentColor;
}

.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  font-size: var(--btn-font-size, 1em);
  padding-top: var(--btn-padding-y, 0.5em);
  padding-bottom: var(--btn-padding-y, 0.5em);
  padding-left: var(--btn-padding-x, 0.75em);
  padding-right: var(--btn-padding-x, 0.75em);
  border-radius: var(--btn-radius, 0.25em);
}

:root {
  --z-index-header: 3;
  --z-index-popover: 5;
  --z-index-fixed-element: 10;
  --z-index-overlay: 15;
}

:root {
  --display: block;
}

.flex {
  display: flex;
}

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

.flex-column {
  flex-direction: column;
}

.flex-grow {
  flex-grow: 1;
}

.flex-basis-0 {
  flex-basis: 0;
}

.items-center {
  align-items: center;
}

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

[class^=aspect-ratio], [class*=" aspect-ratio"] {
  --aspect-ratio: calc(16/9);
  position: relative;
  height: 0;
  padding-bottom: calc(100% / (var(--aspect-ratio)));
}
[class^=aspect-ratio] > *, [class*=" aspect-ratio"] > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
[class^=aspect-ratio] > *:not(iframe), [class*=" aspect-ratio"] > *:not(iframe) {
  -o-object-fit: cover;
     object-fit: cover;
}

.hide {
  display: none;
}

.margin-top-lg {
  margin-top: var(--space-lg);
}

.margin-top-xxl {
  margin-top: var(--space-xxl);
}

.margin-bottom-xxs {
  margin-bottom: var(--space-xxs);
}

.margin-bottom-sm {
  margin-bottom: var(--space-sm);
}

.margin-bottom-md {
  margin-bottom: var(--space-md);
}

.margin-x-auto {
  margin-left: auto;
  margin-right: auto;
}

.padding-top-xxs {
  padding-top: var(--space-xxs);
}

.padding-top-xs {
  padding-top: var(--space-xs);
}

.padding-top-lg {
  padding-top: var(--space-lg);
}

.padding-bottom-xl {
  padding-bottom: var(--space-xl);
}

.padding-bottom-xxl {
  padding-bottom: var(--space-xxl);
}

.padding-left-xs {
  padding-left: var(--space-xs);
}

.padding-left-md {
  padding-left: var(--space-md);
}

.padding-y-xxxs {
  padding-top: var(--space-xxxs);
  padding-bottom: var(--space-xxxs);
}

.padding-y-xs {
  padding-top: var(--space-xs);
  padding-bottom: var(--space-xs);
}

.padding-y-md {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}

.padding-y-xl {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.padding-y-xxl {
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xxl);
}

.text-sm {
  font-size: var(--text-sm, 0.75rem);
}

.text-lg {
  font-size: var(--text-lg, 1.375rem);
}

.font-semibold {
  font-weight: 600;
}

.font-primary {
  font-family: var(--font-primary);
}

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

.text-left {
  text-align: left;
}

.text-shadow-sm {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.line-height-md {
  --heading-line-height: 1.15;
  --body-line-height: 1.4;
}
.line-height-md:not(.text-component) {
  line-height: 1.4;
}

.line-height-lg {
  --heading-line-height: 1.22;
  --body-line-height: 1.58;
}
.line-height-lg:not(.text-component) {
  line-height: 1.58;
}

[class^=color-], [class*=" color-"] {
  --color-o: 1;
}

.color-contrast-medium {
  color: hsla(var(--color-contrast-medium-h), var(--color-contrast-medium-s), var(--color-contrast-medium-l), var(--color-o, 1));
}

.color-contrast-high {
  color: hsla(var(--color-contrast-high-h), var(--color-contrast-high-s), var(--color-contrast-high-l), var(--color-o, 1));
}

.color-contrast-higher {
  color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--color-o, 1));
}

[class^=color-gradient], [class*=" color-gradient"] {
  color: transparent !important;
  -webkit-background-clip: text;
          background-clip: text;
  opacity: var(--color-o, 1);
}

:root {
  --max-width-xxxxxs: 17.5rem;
  --max-width-xxxxs: 20rem;
  --max-width-xxxs: 26rem;
  --max-width-xxs: 32rem;
  --max-width-xs: 38rem;
  --max-width-sm: 48rem;
  --max-width-md: 64rem;
  --max-width-lg: 80rem;
  --max-width-xl: 90rem;
  --max-width-xxl: 100rem;
  --max-width-xxxl: 120rem;
  --max-width-xxxxl: 150rem;
}

.max-width-lg {
  max-width: var(--max-width-lg);
}

[class^=max-width-adaptive], [class*=" max-width-adaptive"] {
  max-width: 32rem;
}

@media (min-width: 48rem) {
  .max-width-adaptive-sm, .max-width-adaptive-lg, .max-width-adaptive-xl {
    max-width: 48rem;
  }
}
@media (min-width: 64rem) {
   .max-width-adaptive-lg, .max-width-adaptive-xl {
    max-width: 64rem;
  }
}
@media (min-width: 80rem) {
  .max-width-adaptive-lg, .max-width-adaptive-xl {
    max-width: 80rem;
  }
}
@media (min-width: 90rem) {
  .max-width-adaptive-xl {
    max-width: 90rem;
  }
}
:where(.inner-glow, .inner-glow-top)::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.z-index-1 {
  z-index: 1;
}

.opacity-90\% {
  opacity: 0.9;
}

[class^=border-], [class*=" border-"] {
  --border-o: 1;
  --border-width: 1px;
  --border-style: solid;
}

.border-top {
  border-top: var(--border-width, 1px) var(--border-style, solid) hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--border-o-base, 0.1));
}

.bg, [class^=bg-], [class*=" bg-"] {
  --bg-o: 1;
}

.bg-transparent {
  background-color: transparent;
}

.bg {
  background-color: hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), var(--bg-o));
}

[class^=flip], [class*=" flip"],
[class^=-rotate], [class*=" -rotate"],
[class^=rotate], [class*=" rotate"],
[class^=-translate], [class*=" -translate"],
[class^=translate], [class*=" translate"],
[class^=-scale], [class*=" -scale"],
[class^=scale], [class*=" scale"],
[class^=-skew], [class*=" -skew"] [class^=skew],
[class*=" skew"] {
  --translate: 0;
  --rotate: 0;
  --skew: 0;
  --scale: 1;
  transform: translate3d(var(--translate-x, var(--translate)), var(--translate-y, var(--translate)), var(--translate-z, 0)) rotateX(var(--rotate-x, 0)) rotateY(var(--rotate-y, 0)) rotateZ(var(--rotate-z, var(--rotate))) skewX(var(--skew-x, var(--skew))) skewY(var(--skew-y, 0)) scaleX(var(--scale-x, var(--scale))) scaleY(var(--scale-y, var(--scale)));
}

.visible {
  visibility: visible;
}
@media (min-width: 64rem) {
  .flex-row\@md {
    flex-direction: row;
  }
  .justify-end\@md {
    justify-content: flex-end;
  }
  .justify-center\@md {
    justify-content: center;
  }
  .justify-between\@md {
    justify-content: space-between;
  }
  .items-center\@md {
    align-items: center;
  }
  .margin-bottom-0\@md {
    margin-bottom: 0;
  }
  .text-xs\@md {
    font-size: var(--text-xs, 0.6875rem);
  }
}
@media (min-width: 80rem) {
  .order-1\@lg {
    order: 1;
  }
  .order-2\@lg {
    order: 2;
  }
  .text-right\@lg {
    text-align: right;
  }
}
:root, [data-theme=default] {
  --color-primary-darker: hsl(237, 68%, 29%);
  --color-primary-darker-h: 237;
  --color-primary-darker-s: 68%;
  --color-primary-darker-l: 29%;
  --color-primary-dark: hsl(237, 68%, 38%);
  --color-primary-dark-h: 237;
  --color-primary-dark-s: 68%;
  --color-primary-dark-l: 38%;
  --color-primary: hsl(237, 68%, 47%);
  --color-primary-h: 237;
  --color-primary-s: 68%;
  --color-primary-l: 47%;
  --color-primary-light: hsl(237, 68%, 55%);
  --color-primary-light-h: 237;
  --color-primary-light-s: 68%;
  --color-primary-light-l: 55%;
  --color-primary-lighter: hsl(237, 68%, 61%);
  --color-primary-lighter-h: 237;
  --color-primary-lighter-s: 68%;
  --color-primary-lighter-l: 61%;
  --color-accent-darker: hsl(7, 86%, 50%);
  --color-accent-darker-h: 7;
  --color-accent-darker-s: 86%;
  --color-accent-darker-l: 50%;
  --color-accent-dark: hsl(7, 88%, 58%);
  --color-accent-dark-h: 7;
  --color-accent-dark-s: 88%;
  --color-accent-dark-l: 58%;
  --color-accent: hsl(7, 98%, 65%);
  --color-accent-h: 7;
  --color-accent-s: 98%;
  --color-accent-l: 65%;
  --color-accent-light: hsl(7, 98%, 71%);
  --color-accent-light-h: 7;
  --color-accent-light-s: 98%;
  --color-accent-light-l: 71%;
  --color-accent-lighter: hsl(7, 98%, 77%);
  --color-accent-lighter-h: 7;
  --color-accent-lighter-s: 98%;
  --color-accent-lighter-l: 77%;
  --color-black: hsl(204, 28%, 7%);
  --color-black-h: 204;
  --color-black-s: 28%;
  --color-black-l: 7%;
  --color-white: hsl(0, 0%, 100%);
  --color-white-h: 0;
  --color-white-s: 0%;
  --color-white-l: 100%;
  --color-warning-darker: hsl(46, 100%, 47%);
  --color-warning-darker-h: 46;
  --color-warning-darker-s: 100%;
  --color-warning-darker-l: 47%;
  --color-warning-dark: hsl(46, 100%, 50%);
  --color-warning-dark-h: 46;
  --color-warning-dark-s: 100%;
  --color-warning-dark-l: 50%;
  --color-warning: hsl(46, 100%, 61%);
  --color-warning-h: 46;
  --color-warning-s: 100%;
  --color-warning-l: 61%;
  --color-warning-light: hsl(46, 100%, 71%);
  --color-warning-light-h: 46;
  --color-warning-light-s: 100%;
  --color-warning-light-l: 71%;
  --color-warning-lighter: hsl(46, 100%, 80%);
  --color-warning-lighter-h: 46;
  --color-warning-lighter-s: 100%;
  --color-warning-lighter-l: 80%;
  --color-success-darker: hsl(122, 50%, 47%);
  --color-success-darker-h: 122;
  --color-success-darker-s: 50%;
  --color-success-darker-l: 47%;
  --color-success-dark: hsl(122, 50%, 52%);
  --color-success-dark-h: 122;
  --color-success-dark-s: 50%;
  --color-success-dark-l: 52%;
  --color-success: hsl(122, 50%, 60%);
  --color-success-h: 122;
  --color-success-s: 50%;
  --color-success-l: 60%;
  --color-success-light: hsl(122, 50%, 69%);
  --color-success-light-h: 122;
  --color-success-light-s: 50%;
  --color-success-light-l: 69%;
  --color-success-lighter: hsl(122, 50%, 76%);
  --color-success-lighter-h: 122;
  --color-success-lighter-s: 50%;
  --color-success-lighter-l: 76%;
  --color-error-darker: hsl(342, 89%, 38%);
  --color-error-darker-h: 342;
  --color-error-darker-s: 89%;
  --color-error-darker-l: 38%;
  --color-error-dark: hsl(342, 89%, 43%);
  --color-error-dark-h: 342;
  --color-error-dark-s: 89%;
  --color-error-dark-l: 43%;
  --color-error: hsl(342, 89%, 48%);
  --color-error-h: 342;
  --color-error-s: 89%;
  --color-error-l: 48%;
  --color-error-light: hsl(342, 89%, 56%);
  --color-error-light-h: 342;
  --color-error-light-s: 89%;
  --color-error-light-l: 56%;
  --color-error-lighter: hsl(342, 89%, 62%);
  --color-error-lighter-h: 342;
  --color-error-lighter-s: 89%;
  --color-error-lighter-l: 62%;
  --color-bg-darker: hsl(210, 4%, 89%);
  --color-bg-darker-h: 210;
  --color-bg-darker-s: 4%;
  --color-bg-darker-l: 89%;
  --color-bg-dark: hsl(180, 3%, 94%);
  --color-bg-dark-h: 180;
  --color-bg-dark-s: 3%;
  --color-bg-dark-l: 94%;
  --color-bg: hsl(0, 0%, 100%);
  --color-bg-h: 0;
  --color-bg-s: 0%;
  --color-bg-l: 100%;
  --color-bg-light: hsl(180, 3%, 100%);
  --color-bg-light-h: 180;
  --color-bg-light-s: 3%;
  --color-bg-light-l: 100%;
  --color-bg-lighter: hsl(210, 4%, 100%);
  --color-bg-lighter-h: 210;
  --color-bg-lighter-s: 4%;
  --color-bg-lighter-l: 100%;
  --color-contrast-lower: hsl(180, 1%, 84%);
  --color-contrast-lower-h: 180;
  --color-contrast-lower-s: 1%;
  --color-contrast-lower-l: 84%;
  --color-contrast-low: hsl(210, 2%, 64%);
  --color-contrast-low-h: 210;
  --color-contrast-low-s: 2%;
  --color-contrast-low-l: 64%;
  --color-contrast-medium: hsl(204, 2%, 46%);
  --color-contrast-medium-h: 204;
  --color-contrast-medium-s: 2%;
  --color-contrast-medium-l: 46%;
  --color-contrast-high: hsl(210, 7%, 21%);
  --color-contrast-high-h: 210;
  --color-contrast-high-s: 7%;
  --color-contrast-high-l: 21%;
  --color-contrast-higher: hsl(204, 28%, 7%);
  --color-contrast-higher-h: 204;
  --color-contrast-higher-s: 28%;
  --color-contrast-higher-l: 7%;
}

@supports (--css: variables) {
  [data-theme=dark] {
    --color-primary-darker: hsl(237, 96%, 45%);
    --color-primary-darker-h: 237;
    --color-primary-darker-s: 96%;
    --color-primary-darker-l: 45%;
    --color-primary-dark: hsl(237, 96%, 54%);
    --color-primary-dark-h: 237;
    --color-primary-dark-s: 96%;
    --color-primary-dark-l: 54%;
    --color-primary: hsl(237, 96%, 62%);
    --color-primary-h: 237;
    --color-primary-s: 96%;
    --color-primary-l: 62%;
    --color-primary-light: hsl(237, 96%, 67%);
    --color-primary-light-h: 237;
    --color-primary-light-s: 96%;
    --color-primary-light-l: 67%;
    --color-primary-lighter: hsl(237, 96%, 72%);
    --color-primary-lighter-h: 237;
    --color-primary-lighter-s: 96%;
    --color-primary-lighter-l: 72%;
    --color-accent-darker: hsl(7, 86%, 50%);
    --color-accent-darker-h: 7;
    --color-accent-darker-s: 86%;
    --color-accent-darker-l: 50%;
    --color-accent-dark: hsl(7, 88%, 58%);
    --color-accent-dark-h: 7;
    --color-accent-dark-s: 88%;
    --color-accent-dark-l: 58%;
    --color-accent: hsl(7, 98%, 65%);
    --color-accent-h: 7;
    --color-accent-s: 98%;
    --color-accent-l: 65%;
    --color-accent-light: hsl(7, 98%, 71%);
    --color-accent-light-h: 7;
    --color-accent-light-s: 98%;
    --color-accent-light-l: 71%;
    --color-accent-lighter: hsl(7, 98%, 77%);
    --color-accent-lighter-h: 7;
    --color-accent-lighter-s: 98%;
    --color-accent-lighter-l: 77%;
    --color-black: hsl(204, 28%, 7%);
    --color-black-h: 204;
    --color-black-s: 28%;
    --color-black-l: 7%;
    --color-white: hsl(0, 0%, 100%);
    --color-white-h: 0;
    --color-white-s: 0%;
    --color-white-l: 100%;
    --color-warning-darker: hsl(46, 100%, 47%);
    --color-warning-darker-h: 46;
    --color-warning-darker-s: 100%;
    --color-warning-darker-l: 47%;
    --color-warning-dark: hsl(46, 100%, 50%);
    --color-warning-dark-h: 46;
    --color-warning-dark-s: 100%;
    --color-warning-dark-l: 50%;
    --color-warning: hsl(46, 100%, 61%);
    --color-warning-h: 46;
    --color-warning-s: 100%;
    --color-warning-l: 61%;
    --color-warning-light: hsl(46, 100%, 71%);
    --color-warning-light-h: 46;
    --color-warning-light-s: 100%;
    --color-warning-light-l: 71%;
    --color-warning-lighter: hsl(46, 100%, 80%);
    --color-warning-lighter-h: 46;
    --color-warning-lighter-s: 100%;
    --color-warning-lighter-l: 80%;
    --color-success-darker: hsl(122, 50%, 47%);
    --color-success-darker-h: 122;
    --color-success-darker-s: 50%;
    --color-success-darker-l: 47%;
    --color-success-dark: hsl(122, 50%, 52%);
    --color-success-dark-h: 122;
    --color-success-dark-s: 50%;
    --color-success-dark-l: 52%;
    --color-success: hsl(122, 50%, 60%);
    --color-success-h: 122;
    --color-success-s: 50%;
    --color-success-l: 60%;
    --color-success-light: hsl(122, 50%, 69%);
    --color-success-light-h: 122;
    --color-success-light-s: 50%;
    --color-success-light-l: 69%;
    --color-success-lighter: hsl(122, 50%, 76%);
    --color-success-lighter-h: 122;
    --color-success-lighter-s: 50%;
    --color-success-lighter-l: 76%;
    --color-error-darker: hsl(342, 92%, 41%);
    --color-error-darker-h: 342;
    --color-error-darker-s: 92%;
    --color-error-darker-l: 41%;
    --color-error-dark: hsl(342, 92%, 47%);
    --color-error-dark-h: 342;
    --color-error-dark-s: 92%;
    --color-error-dark-l: 47%;
    --color-error: hsl(342, 92%, 54%);
    --color-error-h: 342;
    --color-error-s: 92%;
    --color-error-l: 54%;
    --color-error-light: hsl(342, 92%, 60%);
    --color-error-light-h: 342;
    --color-error-light-s: 92%;
    --color-error-light-l: 60%;
    --color-error-lighter: hsl(342, 92%, 65%);
    --color-error-lighter-h: 342;
    --color-error-lighter-s: 92%;
    --color-error-lighter-l: 65%;
    --color-bg-darker: hsl(204, 15%, 6%);
    --color-bg-darker-h: 204;
    --color-bg-darker-s: 15%;
    --color-bg-darker-l: 6%;
    --color-bg-dark: hsl(203, 18%, 9%);
    --color-bg-dark-h: 203;
    --color-bg-dark-s: 18%;
    --color-bg-dark-l: 9%;
    --color-bg: hsl(203, 24%, 13%);
    --color-bg-h: 203;
    --color-bg-s: 24%;
    --color-bg-l: 13%;
    --color-bg-light: hsl(203, 18%, 17%);
    --color-bg-light-h: 203;
    --color-bg-light-s: 18%;
    --color-bg-light-l: 17%;
    --color-bg-lighter: hsl(204, 15%, 20%);
    --color-bg-lighter-h: 204;
    --color-bg-lighter-s: 15%;
    --color-bg-lighter-l: 20%;
    --color-contrast-lower: hsl(208, 12%, 24%);
    --color-contrast-lower-h: 208;
    --color-contrast-lower-s: 12%;
    --color-contrast-lower-l: 24%;
    --color-contrast-low: hsl(208, 6%, 40%);
    --color-contrast-low-h: 208;
    --color-contrast-low-s: 6%;
    --color-contrast-low-l: 40%;
    --color-contrast-medium: hsl(213, 5%, 56%);
    --color-contrast-medium-h: 213;
    --color-contrast-medium-s: 5%;
    --color-contrast-medium-l: 56%;
    --color-contrast-high: hsl(223, 8%, 82%);
    --color-contrast-high-h: 223;
    --color-contrast-high-s: 8%;
    --color-contrast-high-l: 82%;
    --color-contrast-higher: hsl(240, 100%, 99%);
    --color-contrast-higher-h: 240;
    --color-contrast-higher-s: 100%;
    --color-contrast-higher-l: 99%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
@supports (--css: variables) {
  [data-theme=soft] {
    --color-primary-darker: hsl(237, 68%, 29%);
    --color-primary-darker-h: 237;
    --color-primary-darker-s: 68%;
    --color-primary-darker-l: 29%;
    --color-primary-dark: hsl(237, 68%, 38%);
    --color-primary-dark-h: 237;
    --color-primary-dark-s: 68%;
    --color-primary-dark-l: 38%;
    --color-primary: hsl(237, 68%, 47%);
    --color-primary-h: 237;
    --color-primary-s: 68%;
    --color-primary-l: 47%;
    --color-primary-light: hsl(237, 68%, 55%);
    --color-primary-light-h: 237;
    --color-primary-light-s: 68%;
    --color-primary-light-l: 55%;
    --color-primary-lighter: hsl(237, 68%, 61%);
    --color-primary-lighter-h: 237;
    --color-primary-lighter-s: 68%;
    --color-primary-lighter-l: 61%;
    --color-accent-darker: hsl(7, 86%, 50%);
    --color-accent-darker-h: 7;
    --color-accent-darker-s: 86%;
    --color-accent-darker-l: 50%;
    --color-accent-dark: hsl(7, 88%, 58%);
    --color-accent-dark-h: 7;
    --color-accent-dark-s: 88%;
    --color-accent-dark-l: 58%;
    --color-accent: hsl(7, 98%, 65%);
    --color-accent-h: 7;
    --color-accent-s: 98%;
    --color-accent-l: 65%;
    --color-accent-light: hsl(7, 98%, 71%);
    --color-accent-light-h: 7;
    --color-accent-light-s: 98%;
    --color-accent-light-l: 71%;
    --color-accent-lighter: hsl(7, 98%, 77%);
    --color-accent-lighter-h: 7;
    --color-accent-lighter-s: 98%;
    --color-accent-lighter-l: 77%;
    --color-black: hsl(204, 28%, 7%);
    --color-black-h: 204;
    --color-black-s: 28%;
    --color-black-l: 7%;
    --color-white: hsl(0, 0%, 100%);
    --color-white-h: 0;
    --color-white-s: 0%;
    --color-white-l: 100%;
    --color-warning-darker: hsl(46, 100%, 47%);
    --color-warning-darker-h: 46;
    --color-warning-darker-s: 100%;
    --color-warning-darker-l: 47%;
    --color-warning-dark: hsl(46, 100%, 50%);
    --color-warning-dark-h: 46;
    --color-warning-dark-s: 100%;
    --color-warning-dark-l: 50%;
    --color-warning: hsl(46, 100%, 61%);
    --color-warning-h: 46;
    --color-warning-s: 100%;
    --color-warning-l: 61%;
    --color-warning-light: hsl(46, 100%, 71%);
    --color-warning-light-h: 46;
    --color-warning-light-s: 100%;
    --color-warning-light-l: 71%;
    --color-warning-lighter: hsl(46, 100%, 80%);
    --color-warning-lighter-h: 46;
    --color-warning-lighter-s: 100%;
    --color-warning-lighter-l: 80%;
    --color-success-darker: hsl(122, 50%, 47%);
    --color-success-darker-h: 122;
    --color-success-darker-s: 50%;
    --color-success-darker-l: 47%;
    --color-success-dark: hsl(122, 50%, 52%);
    --color-success-dark-h: 122;
    --color-success-dark-s: 50%;
    --color-success-dark-l: 52%;
    --color-success: hsl(122, 50%, 60%);
    --color-success-h: 122;
    --color-success-s: 50%;
    --color-success-l: 60%;
    --color-success-light: hsl(122, 50%, 69%);
    --color-success-light-h: 122;
    --color-success-light-s: 50%;
    --color-success-light-l: 69%;
    --color-success-lighter: hsl(122, 50%, 76%);
    --color-success-lighter-h: 122;
    --color-success-lighter-s: 50%;
    --color-success-lighter-l: 76%;
    --color-error-darker: hsl(342, 89%, 38%);
    --color-error-darker-h: 342;
    --color-error-darker-s: 89%;
    --color-error-darker-l: 38%;
    --color-error-dark: hsl(342, 89%, 43%);
    --color-error-dark-h: 342;
    --color-error-dark-s: 89%;
    --color-error-dark-l: 43%;
    --color-error: hsl(342, 89%, 48%);
    --color-error-h: 342;
    --color-error-s: 89%;
    --color-error-l: 48%;
    --color-error-light: hsl(342, 89%, 56%);
    --color-error-light-h: 342;
    --color-error-light-s: 89%;
    --color-error-light-l: 56%;
    --color-error-lighter: hsl(342, 89%, 62%);
    --color-error-lighter-h: 342;
    --color-error-lighter-s: 89%;
    --color-error-lighter-l: 62%;
    --color-bg-darker: hsl(248, 27%, 76%);
    --color-bg-darker-h: 248;
    --color-bg-darker-s: 27%;
    --color-bg-darker-l: 76%;
    --color-bg-dark: hsl(249, 32%, 80%);
    --color-bg-dark-h: 249;
    --color-bg-dark-s: 32%;
    --color-bg-dark-l: 80%;
    --color-bg: hsl(250, 47%, 85%);
    --color-bg-h: 250;
    --color-bg-s: 47%;
    --color-bg-l: 85%;
    --color-bg-light: hsl(249, 39%, 87%);
    --color-bg-light-h: 249;
    --color-bg-light-s: 39%;
    --color-bg-light-l: 87%;
    --color-bg-lighter: hsl(249, 32%, 90%);
    --color-bg-lighter-h: 249;
    --color-bg-lighter-s: 32%;
    --color-bg-lighter-l: 90%;
    --color-contrast-lower: hsl(248, 21%, 72%);
    --color-contrast-lower-h: 248;
    --color-contrast-lower-s: 21%;
    --color-contrast-lower-l: 72%;
    --color-contrast-low: hsl(243, 10%, 55%);
    --color-contrast-low-h: 243;
    --color-contrast-low-s: 10%;
    --color-contrast-low-l: 55%;
    --color-contrast-medium: hsl(240, 8%, 40%);
    --color-contrast-medium-h: 240;
    --color-contrast-medium-s: 8%;
    --color-contrast-medium-l: 40%;
    --color-contrast-high: hsl(220, 12%, 19%);
    --color-contrast-high-h: 220;
    --color-contrast-high-s: 12%;
    --color-contrast-high-l: 19%;
    --color-contrast-higher: hsl(204, 28%, 7%);
    --color-contrast-higher-h: 204;
    --color-contrast-higher-s: 28%;
    --color-contrast-higher-l: 7%;
  }
}
@supports (--css: variables) {
  [data-theme=secondary] {
    --color-primary-darker: hsl(237, 86%, 9%);
    --color-primary-darker-h: 237;
    --color-primary-darker-s: 86%;
    --color-primary-darker-l: 9%;
    --color-primary-dark: hsl(237, 86%, 14%);
    --color-primary-dark-h: 237;
    --color-primary-dark-s: 86%;
    --color-primary-dark-l: 14%;
    --color-primary: hsl(237, 86%, 19%);
    --color-primary-h: 237;
    --color-primary-s: 86%;
    --color-primary-l: 19%;
    --color-primary-light: hsl(237, 86%, 28%);
    --color-primary-light-h: 237;
    --color-primary-light-s: 86%;
    --color-primary-light-l: 28%;
    --color-primary-lighter: hsl(237, 86%, 36%);
    --color-primary-lighter-h: 237;
    --color-primary-lighter-s: 86%;
    --color-primary-lighter-l: 36%;
    --color-accent-darker: hsl(7, 86%, 50%);
    --color-accent-darker-h: 7;
    --color-accent-darker-s: 86%;
    --color-accent-darker-l: 50%;
    --color-accent-dark: hsl(7, 88%, 58%);
    --color-accent-dark-h: 7;
    --color-accent-dark-s: 88%;
    --color-accent-dark-l: 58%;
    --color-accent: hsl(7, 98%, 65%);
    --color-accent-h: 7;
    --color-accent-s: 98%;
    --color-accent-l: 65%;
    --color-accent-light: hsl(7, 98%, 71%);
    --color-accent-light-h: 7;
    --color-accent-light-s: 98%;
    --color-accent-light-l: 71%;
    --color-accent-lighter: hsl(7, 98%, 77%);
    --color-accent-lighter-h: 7;
    --color-accent-lighter-s: 98%;
    --color-accent-lighter-l: 77%;
    --color-black: hsl(204, 28%, 7%);
    --color-black-h: 204;
    --color-black-s: 28%;
    --color-black-l: 7%;
    --color-white: hsl(0, 0%, 100%);
    --color-white-h: 0;
    --color-white-s: 0%;
    --color-white-l: 100%;
    --color-warning-darker: hsl(46, 100%, 47%);
    --color-warning-darker-h: 46;
    --color-warning-darker-s: 100%;
    --color-warning-darker-l: 47%;
    --color-warning-dark: hsl(46, 100%, 50%);
    --color-warning-dark-h: 46;
    --color-warning-dark-s: 100%;
    --color-warning-dark-l: 50%;
    --color-warning: hsl(46, 100%, 61%);
    --color-warning-h: 46;
    --color-warning-s: 100%;
    --color-warning-l: 61%;
    --color-warning-light: hsl(46, 100%, 71%);
    --color-warning-light-h: 46;
    --color-warning-light-s: 100%;
    --color-warning-light-l: 71%;
    --color-warning-lighter: hsl(46, 100%, 80%);
    --color-warning-lighter-h: 46;
    --color-warning-lighter-s: 100%;
    --color-warning-lighter-l: 80%;
    --color-success-darker: hsl(122, 50%, 47%);
    --color-success-darker-h: 122;
    --color-success-darker-s: 50%;
    --color-success-darker-l: 47%;
    --color-success-dark: hsl(122, 50%, 52%);
    --color-success-dark-h: 122;
    --color-success-dark-s: 50%;
    --color-success-dark-l: 52%;
    --color-success: hsl(122, 50%, 60%);
    --color-success-h: 122;
    --color-success-s: 50%;
    --color-success-l: 60%;
    --color-success-light: hsl(122, 50%, 69%);
    --color-success-light-h: 122;
    --color-success-light-s: 50%;
    --color-success-light-l: 69%;
    --color-success-lighter: hsl(122, 50%, 76%);
    --color-success-lighter-h: 122;
    --color-success-lighter-s: 50%;
    --color-success-lighter-l: 76%;
    --color-error-darker: hsl(342, 89%, 38%);
    --color-error-darker-h: 342;
    --color-error-darker-s: 89%;
    --color-error-darker-l: 38%;
    --color-error-dark: hsl(342, 89%, 43%);
    --color-error-dark-h: 342;
    --color-error-dark-s: 89%;
    --color-error-dark-l: 43%;
    --color-error: hsl(342, 89%, 48%);
    --color-error-h: 342;
    --color-error-s: 89%;
    --color-error-l: 48%;
    --color-error-light: hsl(342, 89%, 56%);
    --color-error-light-h: 342;
    --color-error-light-s: 89%;
    --color-error-light-l: 56%;
    --color-error-lighter: hsl(342, 89%, 62%);
    --color-error-lighter-h: 342;
    --color-error-lighter-s: 89%;
    --color-error-lighter-l: 62%;
    --color-bg-darker: hsl(84, 13%, 27%);
    --color-bg-darker-h: 84;
    --color-bg-darker-s: 13%;
    --color-bg-darker-l: 27%;
    --color-bg-dark: hsl(87, 14%, 29%);
    --color-bg-dark-h: 87;
    --color-bg-dark-s: 14%;
    --color-bg-dark-l: 29%;
    --color-bg: hsl(86, 17%, 33%);
    --color-bg-h: 86;
    --color-bg-s: 17%;
    --color-bg-l: 33%;
    --color-bg-light: hsl(87, 14%, 37%);
    --color-bg-light-h: 87;
    --color-bg-light-s: 14%;
    --color-bg-light-l: 37%;
    --color-bg-lighter: hsl(84, 13%, 39%);
    --color-bg-lighter-h: 84;
    --color-bg-lighter-s: 13%;
    --color-bg-lighter-l: 39%;
    --color-contrast-lower: hsl(86, 12%, 42%);
    --color-contrast-lower-h: 86;
    --color-contrast-lower-s: 12%;
    --color-contrast-lower-l: 42%;
    --color-contrast-low: hsl(84, 9%, 55%);
    --color-contrast-low-h: 84;
    --color-contrast-low-s: 9%;
    --color-contrast-low-l: 55%;
    --color-contrast-medium: hsl(84, 9%, 68%);
    --color-contrast-medium-h: 84;
    --color-contrast-medium-s: 9%;
    --color-contrast-medium-l: 68%;
    --color-contrast-high: hsl(80, 9%, 87%);
    --color-contrast-high-h: 80;
    --color-contrast-high-s: 9%;
    --color-contrast-high-l: 87%;
    --color-contrast-higher: hsl(0, 0%, 100%);
    --color-contrast-higher-h: 0;
    --color-contrast-higher-s: 0%;
    --color-contrast-higher-l: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
@media (min-width: 64rem) {
  :root, * {
    --space-xxxxs: calc(0.1875 * var(--space-unit));
    --space-xxxs: calc(0.375 * var(--space-unit));
    --space-xxs: calc(0.5625 * var(--space-unit));
    --space-xs: calc(0.75 * var(--space-unit));
    --space-sm: calc(1.125 * var(--space-unit));
    --space-md: calc(2 * var(--space-unit));
    --space-lg: calc(3.125 * var(--space-unit));
    --space-xl: calc(5.125 * var(--space-unit));
    --space-xxl: calc(8.25 * var(--space-unit));
    --space-xxxl: calc(13.25 * var(--space-unit));
    --space-xxxxl: calc(21.5 * var(--space-unit));
  }
}
:root {
  --radius: 0.25em;
}

.hover\:reduce-opacity {
  opacity: 1;
  transition: all 0.3s ease;
}
.hover\:reduce-opacity:hover {
  opacity: 0.8;
}

.hover\:scale {
  transition: transform 0.3s var(--ease-out-back);
}
.hover\:scale:hover {
  transform: scale(1.1);
}

.hover\:elevate {
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.hover\:elevate:hover {
  box-shadow: var(--shadow-md);
}

.link-subtle {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}
.link-subtle:hover {
  color: var(--color-primary);
}

:root {
  --font-primary: Inter, system-ui, sans-serif;
  --font-secondary: "Playfair Display", sans-serif;
  --text-base-size: 1rem;
  --text-scale-ratio: 1.2;
  --body-line-height: 1.4;
  --heading-line-height: 1.2;
  --font-primary-capital-letter: 0.85;
  --font-secondary-capital-letter: 0.85;
  --text-unit: var(--text-base-size);
}

:root, * {
  --text-xs: calc((var(--text-unit) / var(--text-scale-ratio)) / var(--text-scale-ratio));
  --text-sm: calc(var(--text-xs) * var(--text-scale-ratio));
  --text-md: calc(var(--text-sm) * var(--text-scale-ratio) * var(--text-scale-ratio));
  --text-lg: calc(var(--text-md) * var(--text-scale-ratio));
  --text-xl: calc(var(--text-lg) * var(--text-scale-ratio));
  --text-xxl: calc(var(--text-xl) * var(--text-scale-ratio));
  --text-xxxl: calc(var(--text-xxl) * var(--text-scale-ratio));
  --text-xxxxl: calc(var(--text-xxxl) * var(--text-scale-ratio));
}

@media (min-width: 64rem) {
  :root {
    --text-base-size: 1.25rem;
    --text-scale-ratio: 1.25;
  }
}
body {
  font-family: var(--font-primary);
}

h1, h2, h3, h4 {
  font-family: var(--font-secondary);
  --heading-font-weight: 700;
}

.font-primary {
  font-family: var(--font-primary);
}

.font-secondary {
  font-family: var(--font-secondary);
}

mark {
  background-color: hsla(var(--color-accent-h), var(--color-accent-s), var(--color-accent-l), 0.2);
  color: inherit;
}

.text-component {
  --line-height-multiplier: 1;
  --text-space-y-multiplier: 1;
}
.text-component > * {
  --text-unit: 1em;
  --space-unit: 1em;
}
.text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid var(--color-contrast-lower);
  font-style: italic;
}
.text-component hr {
  background: var(--color-contrast-lower);
  height: 1px;
}
.text-component figcaption {
  font-size: var(--text-sm);
  color: var(--color-contrast-low);
}

.article {
  --body-line-height: 1.58;
  --text-space-y-multiplier: 1.2;
}

:root {
  --btn-font-size: 1em;
  --btn-padding-x: var(--space-sm);
  --btn-padding-y: var(--space-xxs);
  --btn-radius: var(--radius-md);
}

.btn {
  background: var(--color-bg-dark);
  color: var(--color-contrast-higher);
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.2s ease;
  will-change: transform;
}
.btn:focus {
  box-shadow: 0px 0px 0px 2px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.15);
  outline: none;
}
.btn:active {
  transform: translateY(2px);
}

.btn--primary {
  background: black var(--color-primary);
  color: var(--color-white);
  box-shadow: inset 0px 1px 0px hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.15), var(--shadow-xs);
}
.btn--primary:hover {
  background: var(--color-primary-light);
  box-shadow: inset 0px 1px 0px hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.15), var(--shadow-sm);
}
.btn--primary:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.15), 0px 0px 0px 2px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}

.btn--subtle {
  background: var(--color-bg-light);
  color: var(--color-contrast-higher);
  box-shadow: inset 0px 0px 0px 1px var(--color-contrast-lower), var(--shadow-xs);
}
.btn--subtle:hover {
  background: var(--color-bg-lighter);
  box-shadow: inset 0px 0px 0px 1px var(--color-contrast-lower), var(--shadow-sm);
}
.btn--subtle:focus {
  box-shadow: inset 0px 0px 0px 1px var(--color-contrast-lower), 0px 0px 0px 2px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.05);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: inset 0px 1px 0px hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.15), var(--shadow-xs);
}
.btn--accent:hover {
  background: var(--color-accent-light);
  box-shadow: inset 0px 1px 0px hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.15), var(--shadow-sm);
}
.btn--accent:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.15), 0px 0px 0px 2px hsla(var(--color-accent-h), var(--color-accent-s), var(--color-accent-l), 0.2);
}

.btn--dark {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn--light {
  background-color: var(--color-white);
  color: var(--color-black);
}

.btn--disabled, .btn[disabled], .btn[readonly] {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn--sm {
  font-size: 0.8em;
}

.btn--md {
  font-size: 1.2em;
}

.btn--lg {
  font-size: 1.4em;
}

:root {
  --form-control-font-size: 1em;
  --form-control-padding-x: var(--space-xs);
  --form-control-padding-y: var(--space-xxs);
  --form-control-radius: var(--radius-md);
}

.form-control {
  background: var(--color-bg-dark);
  line-height: 1.2;
  box-shadow: inset 0px 0px 0px 1px var(--color-contrast-lower);
  transition: all 0.2s ease;
}
.form-control::-moz-placeholder {
  opacity: 1;
  color: var(--color-contrast-low);
}
.form-control::placeholder {
  opacity: 1;
  color: var(--color-contrast-low);
}
.form-control:focus {
  background: var(--color-bg);
  box-shadow: inset 0px 0px 0px 1px hsla(var(--color-contrast-lower-h), var(--color-contrast-lower-s), var(--color-contrast-lower-l), 0), 0px 0px 0px 2px var(--color-primary), var(--shadow-sm);
  outline: none;
}

.form-control--disabled, .form-control[disabled], .form-control[readonly] {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-control[aria-invalid=true], .form-control.form-control--error {
  box-shadow: inset 0px 0px 0px 1px hsla(var(--color-contrast-lower-h), var(--color-contrast-lower-s), var(--color-contrast-lower-l), 0), 0px 0px 0px 2px var(--color-error);
}
.form-control[aria-invalid=true]:focus, .form-control.form-control--error:focus {
  box-shadow: inset 0px 0px 0px 1px hsla(var(--color-contrast-lower-h), var(--color-contrast-lower-s), var(--color-contrast-lower-l), 0), 0px 0px 0px 2px var(--color-error), var(--shadow-sm);
}

/* -------------------------------- 

File#: _1_3d-text-block
Title: 3D Text Block
Descr: A text block that rotates on hover
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --td-text-block-padding-x: var(--space-xxs);
  --td-text-block-padding-y: var(--space-xxs);
  --td-text-block-transition-duration: .5s;
}

.td-text-block {
  position: relative;
  z-index: 1;
  display: inline-flex;
  line-height: 1;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  perspective: 1000px;
}
.td-text-block:focus {
  outline: 2px solid hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
  outline-offset: 2px;
}

.td-text-block__wrapper {
  pointer-events: none;
  display: inline-block;
  width: 100%;
  transform-origin: 50% 50% calc(-0.5em - var(--td-text-block-padding-y));
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform var(--td-text-block-transition-duration) var(--ease-in-out);
}
.td-text-block:hover .td-text-block__wrapper {
  transform: rotateX(90deg);
}

.td-text-block__front-text,
.td-text-block__final-text {
  display: inline-flex;
  white-space: nowrap;
  width: 100%;
  padding: var(--td-text-block-padding-y) var(--td-text-block-padding-x);
  backface-visibility: hidden;
}

.td-text-block__front-text {
  position: relative;
  z-index: 2;
  color: var(--color-bg);
  background-color: var(--color-contrast-higher);
}

.td-text-block__final-text {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  color: var(--color-white);
  background-color: var(--color-primary);
  transform-origin: center top;
  transform: rotateX(-90deg);
}

.td-text-block--split-2 .td-text-block__wrapper:nth-child(1) .td-text-block__front-text,
.td-text-block--split-2 .td-text-block__wrapper:nth-child(1) .td-text-block__final-text {
  clip-path: inset(0% 50% 0% 0%);
}
.td-text-block--split-2 .td-text-block__wrapper:nth-child(2) {
  position: absolute;
  left: 0;
  transition-delay: 0.1s;
}
.td-text-block--split-2 .td-text-block__wrapper:nth-child(2) .td-text-block__front-text,
.td-text-block--split-2 .td-text-block__wrapper:nth-child(2) .td-text-block__final-text {
  clip-path: inset(0% 0% 0% 50%);
}

.td-text-block--split-3 .td-text-block__wrapper:nth-child(1) .td-text-block__front-text,
.td-text-block--split-3 .td-text-block__wrapper:nth-child(1) .td-text-block__final-text {
  clip-path: inset(0% 66.6666666667% 0% 0%);
}
.td-text-block--split-3 .td-text-block__wrapper:nth-child(2),
.td-text-block--split-3 .td-text-block__wrapper:nth-child(3) {
  position: absolute;
  left: 0;
}
.td-text-block--split-3 .td-text-block__wrapper:nth-child(2) {
  transition-delay: 0.1s;
}
.td-text-block--split-3 .td-text-block__wrapper:nth-child(2) .td-text-block__front-text,
.td-text-block--split-3 .td-text-block__wrapper:nth-child(2) .td-text-block__final-text {
  clip-path: inset(0% 33.3333333333% 0% 33.3333333333%);
}
.td-text-block--split-3 .td-text-block__wrapper:nth-child(3) {
  transition-delay: 0.2s;
}
.td-text-block--split-3 .td-text-block__wrapper:nth-child(3) .td-text-block__front-text,
.td-text-block--split-3 .td-text-block__wrapper:nth-child(3) .td-text-block__final-text {
  clip-path: inset(0% 0% 0% 66.6666666667%);
}

.td-text-block--split-4 .td-text-block__wrapper:nth-child(1) .td-text-block__front-text,
.td-text-block--split-4 .td-text-block__wrapper:nth-child(1) .td-text-block__final-text {
  clip-path: inset(0% 75% 0% 0%);
}
.td-text-block--split-4 .td-text-block__wrapper:nth-child(2),
.td-text-block--split-4 .td-text-block__wrapper:nth-child(3),
.td-text-block--split-4 .td-text-block__wrapper:nth-child(4) {
  position: absolute;
  left: 0;
}
.td-text-block--split-4 .td-text-block__wrapper:nth-child(2) {
  transition-delay: 0.1s;
}
.td-text-block--split-4 .td-text-block__wrapper:nth-child(2) .td-text-block__front-text,
.td-text-block--split-4 .td-text-block__wrapper:nth-child(2) .td-text-block__final-text {
  clip-path: inset(0% 50% 0% 25%);
}
.td-text-block--split-4 .td-text-block__wrapper:nth-child(3) {
  transition-delay: 0.2s;
}
.td-text-block--split-4 .td-text-block__wrapper:nth-child(3) .td-text-block__front-text,
.td-text-block--split-4 .td-text-block__wrapper:nth-child(3) .td-text-block__final-text {
  clip-path: inset(0% 25% 0% 50%);
}
.td-text-block--split-4 .td-text-block__wrapper:nth-child(4) {
  transition-delay: 0.3s;
}
.td-text-block--split-4 .td-text-block__wrapper:nth-child(4) .td-text-block__front-text,
.td-text-block--split-4 .td-text-block__wrapper:nth-child(4) .td-text-block__final-text {
  clip-path: inset(0% 0% 0% 75%);
}

/* -------------------------------- 

File#: _1_accordion
Title: Accordion
Descr: Create stacked sections of content and allow the user to expand/collapse them
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --accordion-border-width: 1px;
  --accordion-icon-size: 1em;
  --accordion-icon-stroke-width: 1.5px;
}

.accordion__item {
  border-style: solid;
  border-color: var(--color-contrast-lower);
  border-bottom-width: var(--accordion-border-width);
}
.accordion__item:first-child {
  border-top-width: var(--accordion-border-width);
}

.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}
.accordion__header .icon {
  --size: var(--accordion-icon-size);
}
.accordion__header .icon .icon__group {
  stroke-width: var(--accordion-icon-stroke-width);
}

.accordion__icon-arrow .icon__group,
.accordion__icon-arrow-v2 .icon__group,
.accordion__icon-plus .icon__group {
  will-change: transform;
  transform-origin: 8px 8px;
}
.accordion__icon-arrow .icon__group > *,
.accordion__icon-arrow-v2 .icon__group > *,
.accordion__icon-plus .icon__group > * {
  transform-origin: 8px 8px;
}

.accordion__icon-arrow .icon__group > *,
.accordion__icon-arrow-v2 .icon__group > * {
  stroke-dasharray: 17;
  transform: translateY(3px);
}
.accordion__icon-arrow .icon__group > *:first-child,
.accordion__icon-arrow-v2 .icon__group > *:first-child {
  stroke-dashoffset: 8.5;
}
.accordion__icon-arrow .icon__group > *:last-child,
.accordion__icon-arrow-v2 .icon__group > *:last-child {
  stroke-dashoffset: 8.5;
}

.accordion__icon-plus .icon__group {
  transform: rotate(-90deg);
}
.accordion__icon-plus .icon__group > *:first-child {
  transform: rotate(-90deg);
}

.accordion__item--is-open > .accordion__header > .accordion__icon-arrow .icon__group > *:first-child {
  transform: translateY(-3px) rotate(-90deg);
}
.accordion__item--is-open > .accordion__header > .accordion__icon-arrow .icon__group > *:last-child {
  transform: translateY(-3px) rotate(90deg);
}
.accordion__item--is-open > .accordion__header > .accordion__icon-arrow-v2 .icon__group {
  transform: rotate(-90deg);
}
.accordion__item--is-open > .accordion__header > .accordion__icon-arrow-v2 .icon__group > *:first-child, .accordion__item--is-open > .accordion__header > .accordion__icon-arrow-v2 .icon__group *:last-child {
  stroke-dashoffset: 0;
  transform: translateY(0px);
}
.accordion__item--is-open > .accordion__header > .accordion__icon-plus .icon__group {
  transform: rotate(0);
}
.accordion__item--is-open > .accordion__header > .accordion__icon-plus .icon__group > *:first-child {
  transform: rotate(0);
}

.js .accordion__panel {
  display: none;
  will-change: height;
  transform: translateZ(0px);
}
.js .accordion__item--is-open > .accordion__panel {
  display: block;
}

.accordion[data-animation=on] .accordion__item--is-open .accordion__panel > * {
  animation: accordion-entry-animation 0.4s var(--ease-out);
}
.accordion[data-animation=on] .accordion__icon-arrow .icon__group,
.accordion[data-animation=on] .accordion__icon-arrow-v2 .icon__group,
.accordion[data-animation=on] .accordion__icon-plus .icon__group {
  transition: transform 0.3s var(--ease-out);
}
.accordion[data-animation=on] .accordion__icon-arrow .icon__group > *,
.accordion[data-animation=on] .accordion__icon-arrow-v2 .icon__group > *,
.accordion[data-animation=on] .accordion__icon-plus .icon__group > * {
  transition: transform 0.3s, stroke-dashoffset 0.3s;
  transition-timing-function: var(--ease-out);
}

@keyframes accordion-entry-animation {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
/* -------------------------------- 

File#: _1_adv-gallery
Title: Advanced Gallery
Descr: Advanced image gallery template
Usage: codyhouse.co/license

-------------------------------- */
.adv-gallery {
  position: relative;
  z-index: 1;
}

.adv-gallery__img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.adv-gallery__grid > * {
  margin-bottom: var(--space-md);
}
@media (min-width: 64rem) {
  .adv-gallery__grid > :nth-child(1), .adv-gallery__grid > :nth-child(2), .adv-gallery__grid > :nth-child(3) {
    width: 32%;
    float: left;
  }
  .adv-gallery__grid > :nth-child(1), .adv-gallery__grid > :nth-child(2) {
    margin-right: 2%;
  }
  .adv-gallery__grid > :nth-child(4) {
    clear: both;
  }
}

@supports (grid-area: auto) {
  .adv-gallery__grid {
    display: grid;
    grid-gap: var(--space-md);
  }
  .adv-gallery__grid > * {
    margin: 0 !important;
    width: auto !important;
    float: none !important;
  }
  @media (min-width: 64rem) {
    .adv-gallery__grid {
      grid-template-columns: repeat(12, 1fr);
    }
    .adv-gallery__grid > :nth-child(1) {
      grid-column: span 5;
    }
    .adv-gallery__grid > :nth-child(2) {
      grid-column: span 7;
    }
    .adv-gallery__grid > :nth-child(3) {
      grid-column: span 9;
    }
    .adv-gallery__grid > :nth-child(4) {
      grid-column: span 3;
    }
  }
  @media (min-width: 80rem) {
    .adv-gallery__grid {
      grid-gap: var(--space-sm);
      grid-template-rows: repeat(12, 50px);
    }
    .adv-gallery__grid > :nth-child(1) {
      grid-column: 1/4;
      grid-row: 1/7;
    }
    .adv-gallery__grid > :nth-child(2) {
      grid-column: 1/4;
      grid-row: 7/-1;
    }
    .adv-gallery__grid > :nth-child(3) {
      grid-column: 4/11;
      grid-row: 1/-1;
    }
    .adv-gallery__grid > :nth-child(4) {
      grid-column: 11/13;
      grid-row: 1/-1;
    }
    .adv-gallery__img {
      height: 100%;
    }
  }
}
/* -------------------------------- 

File#: _1_anim-menu-btn
Title: Animated Menu Button
Descr: A menu button w/ a morphing icon
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --anim-menu-btn-size: 48px;
  --anim-menu-btn-transition-duration: .2s;
  --anim-menu-btn-icon-size: 32px;
  --anim-menu-btn-icon-stroke: 2px;
}

.anim-menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--anim-menu-btn-size);
  height: var(--anim-menu-btn-size);
}

.anim-menu-btn__icon {
  position: relative;
  display: block;
  font-size: var(--anim-menu-btn-icon-size);
  width: 1em;
  height: var(--anim-menu-btn-icon-stroke);
  color: inherit;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  transform: scale(1);
}
.anim-menu-btn__icon::before, .anim-menu-btn__icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: inherit;
  border-radius: inherit;
}

.anim-menu-btn__icon--close {
  background-size: 100% 100%;
  will-change: transform, background-size;
  transition-property: transform, background-size;
  transition-duration: var(--anim-menu-btn-transition-duration, 0.2s);
}
.anim-menu-btn:active .anim-menu-btn__icon--close {
  transform: scale(0.9);
}
.anim-menu-btn__icon--close::before, .anim-menu-btn__icon--close::after {
  will-change: inherit;
  transition: inherit;
}
.anim-menu-btn__icon--close::before {
  transform: translateY(-0.25em) rotate(0);
}
.anim-menu-btn__icon--close::after {
  transform: translateY(0.25em) rotate(0);
}

.anim-menu-btn--state-b .anim-menu-btn__icon--close {
  background-size: 0% 100%;
}
.anim-menu-btn--state-b .anim-menu-btn__icon--close::before {
  transform: translateY(0) rotate(45deg);
}
.anim-menu-btn--state-b .anim-menu-btn__icon--close::after {
  transform: translateY(0) rotate(-45deg);
}

.anim-menu-btn__icon--arrow-left,
.anim-menu-btn__icon--arrow-right,
.anim-menu-btn__icon--arrow-up,
.anim-menu-btn__icon--arrow-down {
  border-radius: 50em;
  will-change: transform;
  transition-property: transform;
  transition-duration: var(--anim-menu-btn-transition-duration, 0.2s);
}
.anim-menu-btn:active .anim-menu-btn__icon--arrow-left,
.anim-menu-btn:active .anim-menu-btn__icon--arrow-right,
.anim-menu-btn:active .anim-menu-btn__icon--arrow-up,
.anim-menu-btn:active .anim-menu-btn__icon--arrow-down {
  transform: scale(0.9);
}
.anim-menu-btn__icon--arrow-left::before, .anim-menu-btn__icon--arrow-left::after,
.anim-menu-btn__icon--arrow-right::before,
.anim-menu-btn__icon--arrow-right::after,
.anim-menu-btn__icon--arrow-up::before,
.anim-menu-btn__icon--arrow-up::after,
.anim-menu-btn__icon--arrow-down::before,
.anim-menu-btn__icon--arrow-down::after {
  transform-origin: calc(var(--anim-menu-btn-icon-stroke) / 2) 50%;
  will-change: transform, width;
  transition-property: transform, width;
  transition-duration: var(--anim-menu-btn-transition-duration, 0.2s);
}
.anim-menu-btn__icon--arrow-left::before,
.anim-menu-btn__icon--arrow-right::before,
.anim-menu-btn__icon--arrow-up::before,
.anim-menu-btn__icon--arrow-down::before {
  transform: translateY(-0.25em) rotate(0);
}
.anim-menu-btn__icon--arrow-left::after,
.anim-menu-btn__icon--arrow-right::after,
.anim-menu-btn__icon--arrow-up::after,
.anim-menu-btn__icon--arrow-down::after {
  transform: translateY(0.25em) rotate(0);
}

.anim-menu-btn__icon--arrow-right {
  transform: rotate(180deg);
}
.anim-menu-btn:active .anim-menu-btn__icon--arrow-right {
  transform: rotate(180deg) scale(0.9);
}

.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-left::before, .anim-menu-btn--state-b .anim-menu-btn__icon--arrow-left::after,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-right::before,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-right::after,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-up::before,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-up::after,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-down::before,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-down::after {
  width: 50%;
}
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-left::before,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-right::before,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-up::before,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-down::before {
  transform: translateY(0) rotate(-45deg);
}
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-left::after,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-right::after,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-up::after,
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-down::after {
  transform: translateY(0) rotate(45deg);
}
.anim-menu-btn--state-b:active .anim-menu-btn__icon--arrow-up {
  transform: rotate(90deg) scale(0.9);
}
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-up {
  transform: rotate(90deg);
}
.anim-menu-btn--state-b:active .anim-menu-btn__icon--arrow-down {
  transform: rotate(-90deg) scale(0.9);
}
.anim-menu-btn--state-b .anim-menu-btn__icon--arrow-down {
  transform: rotate(-90deg);
}

/* -------------------------------- 

File#: _1_article-gallery-v3
Title: Article Gallery v3
Descr: A gallery of blog articles
Usage: codyhouse.co/license

-------------------------------- */
.articles-v3__img {
  display: block;
  transition: opacity 0.3s;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.articles-v3__img img {
  display: block;
  width: 100%;
}
.articles-v3__img:hover {
  opacity: 0.85;
}

.articles-v3__headline {
  font-size: var(--text-xl);
}
.articles-v3__headline a {
  color: var(--color-contrast-higher);
  text-decoration: none;
}
.articles-v3__headline a:hover {
  text-decoration: underline;
}

.articles-v3__author {
  display: grid;
  grid-template-columns: 3em 1fr;
  grid-gap: var(--space-xs);
  align-items: center;
  margin-top: var(--space-md);
}

.articles-v3__author-img {
  display: block;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out-back);
}
.articles-v3__author-img img {
  display: block;
  width: inherit;
  height: inherit;
}
.articles-v3__author-img:hover {
  transform: scale(1.1);
}

.articles-v3__author-name {
  font-weight: bold;
  color: var(--color-contrast-higher);
  text-decoration: none;
}
.articles-v3__author-name:hover {
  text-decoration: underline;
}

/* -------------------------------- 

File#: _1_author
Title: Author
Descr: Author introduction card
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --author-img-size: 4em;
}

.author {
  display: grid;
  grid-template-columns: var(--author-img-size) 1fr;
  grid-gap: var(--space-sm);
}

.author__img-wrapper {
  display: inline-block;
  border-radius: 50%;
  width: var(--author-img-size);
  height: var(--author-img-size);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out-back);
}
.author__img-wrapper:hover {
  transform: scale(1.1);
}
.author__img-wrapper img {
  display: block;
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}

.author__content a {
  color: inherit;
}
.author__content a:hover {
  color: var(--color-primary);
}

.author--meta {
  --author-img-size: 3em;
  align-items: center;
  grid-gap: var(--space-xs);
}

.author--minimal {
  --author-img-size: 2.4em;
  align-items: center;
  grid-gap: var(--space-xxs);
}

.author--featured {
  --author-img-size: 6em;
  grid-template-columns: 1fr;
  justify-content: center;
  text-align: center;
}
.author--featured .author__img-wrapper {
  margin-left: auto;
  margin-right: auto;
}

.author__social {
  --size: 40px;
  width: var(--size);
  height: var(--size);
  display: flex;
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
  border-radius: 50%;
  transition: 0.2s;
}
.author__social .icon {
  --size: 16px;
  display: block;
  margin: auto;
  color: var(--color-contrast-higher);
  transition: color 0.2s;
}
.author__social:hover {
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.075);
}
.author__social:hover .icon {
  color: var(--color-primary);
}

/* -------------------------------- 

File#: _1_background-decoration-v3
Title: Background Decoration v3
Descr: A collection of geometry background decorations
Usage: codyhouse.co/license

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

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1.125rem; /* 18px */
  line-height: 1.4;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.5rem; /* 40px */
}

h2 {
  font-size: 2.125rem; /* 34px */
}

h3 {
  font-size: 1.75rem; /* 28px */
}

h4 {
  font-size: 1.375rem; /* 22px */
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

/* -------------------------------- 

Component 

-------------------------------- */
.bg-decoration-v3-wrapper-bg {
  background-color: hsla(250, 84%, 54%, 0.2);
}

.bg-decoration-v3 {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-decoration-v3__svg {
  color: hsla(250, 84%, 54%, 0.4); /* illustration color */
  position: absolute;
  width: 134%;
  min-width: 1280px;
  max-width: 1920px;
  height: auto;
}

.bg-decoration-v3__svg--top-left {
  top: 0;
  left: 0;
}

.bg-decoration-v3__svg--top-center {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.bg-decoration-v3__svg--center {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

/* -------------------------------- 

Utilities 

-------------------------------- */
.cd-position-relative {
  position: relative;
}

.cd-z-index-1 {
  z-index: 1;
}

.cd-z-index-2 {
  z-index: 2;
}

/* -------------------------------- 

File#: _1_background-decoration-v4
Title: Background Decoration v4
Descr: A collection of geometry background decorations
Usage: codyhouse.co/license

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

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1.125rem; /* 18px */
  line-height: 1.4;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.5rem; /* 40px */
}

h2 {
  font-size: 2.125rem; /* 34px */
}

h3 {
  font-size: 1.75rem; /* 28px */
}

h4 {
  font-size: 1.375rem; /* 22px */
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

/* -------------------------------- 

Component 

-------------------------------- */
.bg-decoration-v4 {
  --bg-decoration-color-1: hsl(250, 84%, 54%);
  --bg-decoration-color-2: hsl(342, 89%, 48%);
  --bg-decoration-color-3: hsl(230, 13%, 9%);
  --bg-decoration-color-4: hsl(0, 0%, 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-decoration-v4-wrapper-bg {
  background-color: hsl(250, 84%, 54%);
}

.bg-decoration-v4__svg {
  position: absolute;
  width: 114%;
  min-width: 1280px;
  max-width: 1440px;
  height: auto;
}

.bg-decoration-v4__svg--top-center,
.bg-decoration-v4__svg--top-center-flip-y {
  top: 0;
  left: 50%;
}

.bg-decoration-v4__svg--top-center {
  transform: translateX(-50%);
}

.bg-decoration-v4__svg--top-center-flip-y {
  transform: translateX(-50%) scaleY(-1);
}

.bg-decoration-v4__svg--bottom-center,
.bg-decoration-v4__svg--bottom-center-flip-y {
  bottom: 0;
  left: 50%;
}

.bg-decoration-v4__svg--bottom-center {
  transform: translateX(-50%);
}

.bg-decoration-v4__svg--bottom-center-flip-y {
  transform: translateX(-50%) scaleY(-1);
}

/* -------------------------------- 

Utilities 

-------------------------------- */
.cd-position-relative {
  position: relative;
}

.cd-z-index-1 {
  z-index: 1;
}

.cd-z-index-2 {
  z-index: 2;
}

/* -------------------------------- 

File#: _1_background-decoration
Title: Background Decoration
Descr: A collection of background effects
Usage: codyhouse.co/license

-------------------------------- */
.bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-decoration__svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 134%;
  min-width: 1280px;
  max-width: 1920px;
  height: auto;
}

/* -------------------------------- 

File#: _1_banner
Title: Banner
Descr: A CTA banner containing text + media
Usage: codyhouse.co/license

-------------------------------- */
.banner {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  background-color: var(--color-bg-light);
  box-shadow: var(--inner-glow), var(--shadow-sm);
  border-radius: var(--radius-md);
  transition: 0.3s;
}
.banner:hover {
  background-color: var(--color-bg-lighter);
  box-shadow: var(--inner-glow), var(--shadow-md);
}
.banner:hover .banner__link {
  transform: scale(1.3);
}
.banner:hover .banner__link i {
  transform: scale(0.7);
}
.banner:hover .banner__link::after {
  height: 100%;
}
.banner:hover .banner__figure {
  transform: scale(1.05);
}

.banner__link {
  position: relative;
  text-decoration: none;
  color: var(--color-primary-dark);
  display: inline-block;
  transition: 0.3s var(--ease-out);
  transform-origin: left bottom;
}
.banner__link i {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: 0.3s var(--ease-out);
}
.banner__link::after {
  content: "";
  background-color: currentColor;
  height: 2px;
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  transition: 0.3s var(--ease-out);
  opacity: 0.15;
}

.banner__figure {
  height: 0;
  padding-bottom: 50%;
  transition: 0.3s var(--ease-out);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 64rem) {
  .banner__figure {
    height: 100%;
    padding-bottom: 0;
    clip-path: polygon(100px 0%, 100% 0%, 100% 100%, 50px 100%);
  }
  .banner--invert .banner__figure {
    clip-path: polygon(0% 0%, calc(100% - 100px) 0%, calc(100% - 50px) 100%, 0% 100%);
  }
  .banner--invert .banner__link {
    transform-origin: right bottom;
  }
  .banner:hover .banner__figure {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
/* -------------------------------- 

File#: _1_button-effects
Title: Button Effects
Descr: A collection of button effects
Usage: codyhouse.co/license

-------------------------------- */
.btn-fx-1 {
  --border-radius: 0.25em;
  --transition-duration: .3s;
  position: relative;
  display: inline-block;
  border-radius: var(--border-radius);
  line-height: 1;
  text-decoration: none;
  color: var(--color-primary);
  transition: var(--transition-duration);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: pointer;
}
.btn-fx-1 span, .btn-fx-1 .btn-fx-1__icon-wrapper {
  position: relative;
  z-index: 2;
}
.btn-fx-1 .icon {
  display: block;
  will-change: transform;
  transition: var(--transition-duration);
}
.btn-fx-1 .icon:first-child {
  color: var(--color-primary);
}
.btn-fx-1 .icon:last-child {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  color: var(--color-white);
  transform: translateY(100%);
}
.btn-fx-1:hover {
  color: var(--color-white);
}
.btn-fx-1:hover .icon:first-child {
  opacity: 0;
  transform: translateY(-100%);
}
.btn-fx-1:hover .icon:last-child {
  opacity: 1;
  transform: translateY(0);
}
.btn-fx-1:hover .btn-fx-1__inner::after {
  transform: skewY(0deg) scaleY(2);
}
.btn-fx-1:focus {
  outline: none;
  box-shadow: 0 0 0 1px var(--color-bg), 0 0 0 3px var(--color-primary);
}

.btn-fx-1__inner {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
  overflow: hidden;
  clip-path: inset(0% 0% 0% 0% round var(--border-radius));
}
.btn-fx-1__inner::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -5%;
  width: 110%;
  height: 100%;
  background-color: var(--color-primary);
  transform-origin: center bottom;
  transform: skewY(10deg) scaleY(0);
  transition: transform var(--transition-duration);
}

.btn-fx-2 {
  position: relative;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}
.btn-fx-2 span {
  position: relative;
  display: inline-flex;
  clip-path: inset(0%);
}
.btn-fx-2 em {
  display: inline-flex;
}
.btn-fx-2 em * {
  color: var(--color-primary);
  padding: 0.25em 0;
  will-change: transform;
  transition: transform 0.3s;
}
.btn-fx-2 em:last-child {
  position: absolute;
  top: 0;
  left: 0;
}
.btn-fx-2 em:last-child * {
  transform: translateY(100%);
}
.btn-fx-2::before, .btn-fx-2::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  left: 0;
  width: 100%;
}
.btn-fx-2::before {
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}
.btn-fx-2::after {
  background-color: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: right center;
}
.btn-fx-2:hover em *:nth-child(2) {
  transition-delay: 0.05s;
}
.btn-fx-2:hover em *:nth-child(3) {
  transition-delay: 0.1s;
}
.btn-fx-2:hover em *:nth-child(4) {
  transition-delay: 0.15s;
}
.btn-fx-2:hover em *:nth-child(5) {
  transition-delay: 0.2s;
}
.btn-fx-2:hover em *:nth-child(6) {
  transition-delay: 0.25s;
}
.btn-fx-2:hover em *:nth-child(7) {
  transition-delay: 0.3s;
}
.btn-fx-2:hover em *:nth-child(8) {
  transition-delay: 0.35s;
}
.btn-fx-2:hover em *:nth-child(9) {
  transition-delay: 0.4s;
}
.btn-fx-2:hover em *:nth-child(10) {
  transition-delay: 0.45s;
}
.btn-fx-2:hover em:first-child * {
  transform: translateY(-100%);
}
.btn-fx-2:hover em:last-child * {
  transform: translateY(0);
}
.btn-fx-2:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.btn-fx-3 {
  --transition-duration: 0.3s;
  position: relative;
  display: inline-block;
  color: var(--color-bg);
  line-height: 1;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: pointer;
  will-change: transform;
  transition: transform var(--transition-duration);
}
.btn-fx-3 span {
  will-change: transform;
  transition: opacity var(--transition-duration), transform var(--transition-duration) var(--ease-out);
}
.btn-fx-3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-contrast-higher);
  border-radius: inherit;
  will-change: transform;
  transition: transform var(--transition-duration) var(--ease-out-back), box-shadow var(--transition-duration);
}
.btn-fx-3:active {
  transform: scale(0.9);
}
.btn-fx-3:hover span {
  opacity: 0;
  transform: scale(0.5);
}
.btn-fx-3:hover::before {
  transform: scale(1.1);
}
.btn-fx-3:hover .btn-fx-3__icon-wrapper {
  transform: translateY(0);
}
.btn-fx-3:focus {
  outline: none;
}
.btn-fx-3:focus::before {
  box-shadow: var(--shadow-sm), 0 0 0 3px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.15);
}

.btn-fx-3__inner {
  position: relative;
  z-index: 2;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  clip-path: inset(0%);
}

.btn-fx-3__icon-wrapper {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  will-change: transform;
  transform: translateY(100%);
  transition: transform var(--transition-duration) var(--ease-out);
}
.btn-fx-3__icon-wrapper .icon {
  margin: auto;
}

.btn-fx-4 {
  --transition-duration: .3s;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-contrast-higher);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  line-height: 1;
  text-decoration: none;
  color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: var(--transition-duration);
}
.btn-fx-4 span {
  position: relative;
  z-index: 2;
}
.btn-fx-4::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0.25);
  will-change: transform;
  transform: skewX(-15deg) translate(calc(-100% - 0.5em));
  pointer-events: none;
}
.btn-fx-4:hover::before {
  transform: skewX(-15deg) translate(calc(100% + 0.5em));
  transition: transform var(--transition-duration);
}
.btn-fx-4:focus {
  outline: none;
  box-shadow: var(--shadow-sm), 0 0 0 3px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.15);
}

/* -------------------------------- 

File#: _1_card-v7
Title: Card v7
Descr: Container of information used as teasers for further content, often displayed in a gallery of related items
Usage: codyhouse.co/license

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

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1.125rem; /* 18px */
  line-height: 1.4;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.5rem; /* 40px */
}

h2 {
  font-size: 2.125rem; /* 34px */
}

h3 {
  font-size: 1.75rem; /* 28px */
}

h4 {
  font-size: 1.375rem; /* 22px */
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

/* -------------------------------- 

Buttons 

-------------------------------- */
.cd-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375em;
  font-size: 1em;
  text-decoration: none;
  line-height: 1.2;
  cursor: pointer;
  transition: 0.2s;
  will-change: transform;
}

.cd-btn:focus-visible {
  outline: none;
}

.cd-btn:active {
  transform: translateY(2px);
}

.cd-btn--subtle {
  background: hsl(0, 0%, 100%);
  color: hsl(230, 13%, 9%);
  box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.1), 0 0 0 1px hsla(230, 13%, 9%, 0.02), 0 0.3px 0.4px hsla(230, 13%, 9%, 0.025), 0 1px 3px -1px hsla(230, 13%, 9%, 0.2), 0 3.5px 6px hsla(230, 13%, 9%, 0.12);
}

.cd-btn--subtle:hover {
  background: hsl(0, 0%, 100%);
  box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.1), 0 0 0 1px hsla(230, 13%, 9%, 0.02), 0 0.1px 0.3px hsla(230, 13%, 9%, 0.06), 0 1px 2px hsla(230, 13%, 9%, 0.12), 0 1px 3px -1px hsla(230, 13%, 9%, 0.2);
}

.cd-btn--subtle:focus-visible {
  box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.1), 0 0 0 1px hsla(230, 13%, 9%, 0.02), 0 0.3px 0.4px hsla(230, 13%, 9%, 0.025), 0 1px 3px -1px hsla(230, 13%, 9%, 0.2), 0 3.5px 6px hsla(230, 13%, 9%, 0.12), 0 0 0 2px hsl(0, 0%, 100%), 0 0 0 4px hsl(230, 7%, 23%);
}

/* -------------------------------- 

Icons 

-------------------------------- */
.cd-icon {
  --size: 1em;
  font-size: var(--size);
  height: 1em;
  width: 1em;
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.cd-icon use { /* SVG symbols - enable icon color corrections */
  color: inherit;
  fill: currentColor;
}

/* -------------------------------- 

Component 

-------------------------------- */
.card-v7__img-wrapper {
  display: block;
  text-decoration: none;
  overflow: hidden;
  border-radius: 0em;
  box-shadow: 0 0.3px 0.4px hsla(230, 13%, 9%, 0.02), 0 0.9px 1.5px hsla(230, 13%, 9%, 0.045), 0 3.5px 6px hsla(230, 13%, 9%, 0.09);
}

.card-v7__img-wrapper img {
  width: 100%;
  will-change: transform;
  transition: transform 0.3s;
}

.card-v7__content {
  text-align: center;
  padding: 1rem 0;
}

.card-v7__label {
  font-size: 0.9375rem;
  color: hsl(225, 4%, 47%);
  margin-bottom: 0.75rem;
}

.card-v7__title {
  color: hsl(230, 13%, 9%);
  background-repeat: no-repeat;
  will-change: background-size;
  transition: background-size 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  text-decoration: none;
  background-image: linear-gradient(transparent 50%, hsla(250, 84%, 54%, 0.2) 50%);
  background-size: 0% 100%;
}

.card-v7__title:hover {
  background-size: 100% 100%;
}

.card-v7__btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.card-v7__btn {
  font-size: 0.9375rem;
}

.card-v7__btn .cd-icon {
  --size: 16px;
}

/* -------------------------------- 

Utilities 

-------------------------------- */
.cd-margin-right-3xs {
  margin-right: 0.5rem;
}

/* -------------------------------- 

File#: _1_details-list
Title: Details List
Descr: Pairs of related information displayed in a list
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --details-list-border-width: 1px;
  --details-list-border-opacity: 0.15;
}

.details-list--rows .details-list__item {
  border-bottom: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
}
.details-list--rows .details-list__item:last-child {
  border-bottom: none;
}

.details-list--cols .details-list__item {
  border-right: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
}
.details-list--cols .details-list__item:last-child {
  border-right: none;
}

@media (min-width: 32rem) {
  .details-list--rows\@xs .details-list__item {
    border-right: 0;
    border-bottom: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
  }
  .details-list--rows\@xs .details-list__item:last-child {
    border-bottom: none;
  }
  .details-list--cols\@xs .details-list__item {
    border-bottom: 0;
    border-right: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
  }
  .details-list--cols\@xs .details-list__item:last-child {
    border-right: none;
  }
}
@media (min-width: 48rem) {
  .details-list--rows\@sm .details-list__item {
    border-right: 0;
    border-bottom: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
  }
  .details-list--rows\@sm .details-list__item:last-child {
    border-bottom: none;
  }
  .details-list--cols\@sm .details-list__item {
    border-bottom: 0;
    border-right: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
  }
  .details-list--cols\@sm .details-list__item:last-child {
    border-right: none;
  }
}
@media (min-width: 64rem) {
  .details-list--rows\@md .details-list__item {
    border-right: 0;
    border-bottom: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
  }
  .details-list--rows\@md .details-list__item:last-child {
    border-bottom: none;
  }
  .details-list--cols\@md .details-list__item {
    border-bottom: 0;
    border-right: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
  }
  .details-list--cols\@md .details-list__item:last-child {
    border-right: none;
  }
}
@media (min-width: 80rem) {
  .details-list--rows\@lg .details-list__item {
    border-right: 0;
    border-bottom: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
  }
  .details-list--rows\@lg .details-list__item:last-child {
    border-bottom: none;
  }
  .details-list--cols\@lg .details-list__item {
    border-bottom: 0;
    border-right: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
  }
  .details-list--cols\@lg .details-list__item:last-child {
    border-right: none;
  }
}
@media (min-width: 90rem) {
  .details-list--rows\@xl .details-list__item {
    border-right: 0;
    border-bottom: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
  }
  .details-list--rows\@xl .details-list__item:last-child {
    border-bottom: none;
  }
  .details-list--cols\@xl .details-list__item {
    border-bottom: 0;
    border-right: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
  }
  .details-list--cols\@xl .details-list__item:last-child {
    border-right: none;
  }
}
/* -------------------------------- 

File#: _1_devices
Title: Devices
Descr: A collection of CSS tech devices
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --dev-phone-radius: 14%;
  --dev-phone-img-ratio: 0.56;
  --dev-tablet-radius: 6%;
  --dev-tablet-img-ratio: 0.75;
  --dev-browser-radius: 1.5%;
  --dev-browser-img-ratio: 1.6;
  --dev-laptop-radius: 3%;
  --dev-laptop-img-ratio: 1.6;
  --dev-desktop-radius: 3%;
  --dev-desktop-img-ratio: 1.6;
}

/* #region (Phone) */
.dev-phone, .dev-phone__body {
  position: relative;
  width: 100%;
}

.dev-phone {
  z-index: 1;
}

.dev-phone__body {
  background-color: var(--color-bg);
  --phone-inner-shadow: inset 0 0 0.285em hsla(0, 0%, 0%, 0.15), inset 0 0 0.1em hsla(0, 0%, 0%, 0.035), inset 0 0 0.05em hsla(0, 0%, 0%, 0.005);
  box-shadow: var(--phone-inner-shadow);
  padding: 3%;
  z-index: 2;
  border-top-left-radius: var(--dev-phone-radius) calc(var(--dev-phone-radius) * var(--dev-phone-img-ratio));
  border-top-right-radius: var(--dev-phone-radius) calc(var(--dev-phone-radius) * var(--dev-phone-img-ratio));
  border-bottom-right-radius: var(--dev-phone-radius) calc(var(--dev-phone-radius) * var(--dev-phone-img-ratio));
  border-bottom-left-radius: var(--dev-phone-radius) calc(var(--dev-phone-radius) * var(--dev-phone-img-ratio));
}
.dev-phone--dark .dev-phone__body {
  background-color: var(--color-black);
  border: 3px solid #F34747;
}

.dev-phone__media {
  position: relative;
  overflow: hidden;
  border-top-left-radius: calc(var(--dev-phone-radius) * 0.85) calc(var(--dev-phone-radius) * 0.85 * var(--dev-phone-img-ratio));
  border-top-right-radius: calc(var(--dev-phone-radius) * 0.85) calc(var(--dev-phone-radius) * 0.85 * var(--dev-phone-img-ratio));
  border-bottom-left-radius: calc(var(--dev-phone-radius) * 0.85) calc(var(--dev-phone-radius) * 0.85 * var(--dev-phone-img-ratio));
  border-bottom-right-radius: calc(var(--dev-phone-radius) * 0.85) calc(var(--dev-phone-radius) * 0.85 * var(--dev-phone-img-ratio));
}
.dev-phone__media img, .dev-phone__media svg, .dev-phone__media video {
  display: block;
  width: 100%;
  height: auto;
}
.dev-phone__media::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 0%, 0.075);
  border-radius: inherit;
  pointer-events: none;
}
.dev-phone--dark .dev-phone__media::after {
  display: none;
}

.dev-phone__notch {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 50%;
  right: 25%;
  height: 4%;
  border-radius: 0 0 0.85em 0.85em;
  background-color: var(--color-bg);
  border: 1px solid hsla(0, 0%, 0%, 0.1);
  border-top-width: 0;
}
.dev-phone--dark .dev-phone__notch {
  background-color: var(--color-black);
  border-width: 0;
}

.dev-phone--landscape .dev-phone__body {
  padding: 1.75%;
  border-top-left-radius: calc(var(--dev-phone-radius) * var(--dev-phone-img-ratio)) var(--dev-phone-radius);
  border-top-right-radius: calc(var(--dev-phone-radius) * var(--dev-phone-img-ratio)) var(--dev-phone-radius);
  border-bottom-right-radius: calc(var(--dev-phone-radius) * var(--dev-phone-img-ratio)) var(--dev-phone-radius);
  border-bottom-left-radius: calc(var(--dev-phone-radius) * var(--dev-phone-img-ratio)) var(--dev-phone-radius);
}
.dev-phone--landscape .dev-phone__media {
  border-top-left-radius: calc(var(--dev-phone-radius) * 0.85 * var(--dev-phone-img-ratio)) calc(var(--dev-phone-radius) * 0.85);
  border-top-right-radius: calc(var(--dev-phone-radius) * 0.85 * var(--dev-phone-img-ratio)) calc(var(--dev-phone-radius) * 0.85);
  border-bottom-left-radius: calc(var(--dev-phone-radius) * 0.85 * var(--dev-phone-img-ratio)) calc(var(--dev-phone-radius) * 0.85);
  border-bottom-right-radius: calc(var(--dev-phone-radius) * 0.85 * var(--dev-phone-img-ratio)) calc(var(--dev-phone-radius) * 0.85);
}
.dev-phone--landscape .dev-phone__notch {
  right: 0;
  height: 56%;
  top: 22%;
  width: 4%;
  border-radius: 0.85em 0 0 0.85em;
  border-right-width: 0px;
  border-top-width: 1px;
}

.dev-phone--front-light .dev-phone__body {
  box-shadow: var(--phone-inner-shadow), var(--shadow-lg);
}

.dev-phone--top-light .dev-phone__shadow {
  position: absolute;
  background-color: hsla(0, 0%, 0%, 0.1);
  z-index: 1;
  height: 1em;
  width: 100%;
  left: 0;
  bottom: -0.5em;
  border-radius: 100%;
  filter: blur(5px);
}
.dev-phone--top-light .dev-phone__shadow::before, .dev-phone--top-light .dev-phone__shadow::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}
.dev-phone--top-light .dev-phone__shadow::before {
  top: 20%;
  left: 10%;
  width: 80%;
  height: 40%;
  background-color: hsla(0, 0%, 0%, 0.4);
}
.dev-phone--top-light .dev-phone__shadow::after {
  top: 20%;
  left: 5%;
  width: 90%;
  height: 60%;
  background-color: hsla(0, 0%, 0%, 0.15);
}

/* #endregion */
/* #region (Tablet) */
.dev-tablet, .dev-tablet__body {
  position: relative;
  width: 100%;
}

.dev-tablet {
  z-index: 1;
}

.dev-tablet__body {
  background-color: var(--color-bg);
  --tablet-inner-shadow: inset 0 0 0.285em hsla(0, 0%, 0%, 0.15), inset 0 0 0.1em hsla(0, 0%, 0%, 0.035), inset 0 0 0.05em hsla(0, 0%, 0%, 0.005);
  box-shadow: var(--tablet-inner-shadow);
  padding: 3%;
  z-index: 2;
  border-top-left-radius: var(--dev-tablet-radius) calc(var(--dev-tablet-radius) * var(--dev-tablet-img-ratio));
  border-top-right-radius: var(--dev-tablet-radius) calc(var(--dev-tablet-radius) * var(--dev-tablet-img-ratio));
  border-bottom-right-radius: var(--dev-tablet-radius) calc(var(--dev-tablet-radius) * var(--dev-tablet-img-ratio));
  border-bottom-left-radius: var(--dev-tablet-radius) calc(var(--dev-tablet-radius) * var(--dev-tablet-img-ratio));
}

.dev-tablet__media {
  position: relative;
  overflow: hidden;
  border-top-left-radius: calc(var(--dev-tablet-radius) * 0.75) calc(var(--dev-tablet-radius) * 0.75 * var(--dev-tablet-img-ratio));
  border-top-right-radius: calc(var(--dev-tablet-radius) * 0.75) calc(var(--dev-tablet-radius) * 0.75 * var(--dev-tablet-img-ratio));
  border-bottom-left-radius: calc(var(--dev-tablet-radius) * 0.75) calc(var(--dev-tablet-radius) * 0.75 * var(--dev-tablet-img-ratio));
  border-bottom-right-radius: calc(var(--dev-tablet-radius) * 0.75) calc(var(--dev-tablet-radius) * 0.75 * var(--dev-tablet-img-ratio));
}
.dev-tablet__media img, .dev-tablet__media svg, .dev-tablet__media video {
  display: block;
  width: 100%;
  height: auto;
}
.dev-tablet__media::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 0%, 0.075);
  border-radius: inherit;
  pointer-events: none;
}

.dev-tablet--landscape .dev-tablet__body {
  padding: 1.75%;
  border-top-left-radius: calc(var(--dev-tablet-radius) * var(--dev-tablet-img-ratio)) var(--dev-tablet-radius);
  border-top-right-radius: calc(var(--dev-tablet-radius) * var(--dev-tablet-img-ratio)) var(--dev-tablet-radius);
  border-bottom-right-radius: calc(var(--dev-tablet-radius) * var(--dev-tablet-img-ratio)) var(--dev-tablet-radius);
  border-bottom-left-radius: calc(var(--dev-tablet-radius) * var(--dev-tablet-img-ratio)) var(--dev-tablet-radius);
}
.dev-tablet--landscape .dev-tablet__media {
  border-top-left-radius: calc(var(--dev-tablet-radius) * 0.85 * var(--dev-tablet-img-ratio)) calc(var(--dev-tablet-radius) * 0.85);
  border-top-right-radius: calc(var(--dev-tablet-radius) * 0.85 * var(--dev-tablet-img-ratio)) calc(var(--dev-tablet-radius) * 0.85);
  border-bottom-left-radius: calc(var(--dev-tablet-radius) * 0.85 * var(--dev-tablet-img-ratio)) calc(var(--dev-tablet-radius) * 0.85);
  border-bottom-right-radius: calc(var(--dev-tablet-radius) * 0.85 * var(--dev-tablet-img-ratio)) calc(var(--dev-tablet-radius) * 0.85);
}

.dev-tablet--front-light .dev-tablet__body {
  box-shadow: var(--tablet-inner-shadow), var(--shadow-lg);
}

.dev-tablet--top-light .dev-tablet__shadow {
  position: absolute;
  background-color: hsla(0, 0%, 0%, 0.1);
  z-index: 1;
  height: 1em;
  width: 100%;
  left: 0;
  bottom: -0.5em;
  border-radius: 100%;
  filter: blur(5px);
}
.dev-tablet--top-light .dev-tablet__shadow::before, .dev-tablet--top-light .dev-tablet__shadow::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}
.dev-tablet--top-light .dev-tablet__shadow::before {
  top: 20%;
  left: 10%;
  width: 80%;
  height: 40%;
  background-color: hsla(0, 0%, 0%, 0.4);
}
.dev-tablet--top-light .dev-tablet__shadow::after {
  top: 20%;
  left: 5%;
  width: 90%;
  height: 60%;
  background-color: hsla(0, 0%, 0%, 0.15);
}

/* #endregion */
/* #region (Browser) */
.dev-browser,
.dev-browser__body {
  position: relative;
  width: 100%;
}

.dev-browser {
  z-index: 1;
}

.dev-browser__body {
  background: var(--color-bg);
  padding: 2em 1.5% 1.5%;
  --browser-inner-shadow: inset 0 0 0.285em hsla(0, 0%, 0%, 0.15), inset 0 0 0.1em hsla(0, 0%, 0%, 0.035), inset 0 0 0.05em hsla(0, 0%, 0%, 0.005);
  box-shadow: var(--browser-inner-shadow);
  border-top-left-radius: var(--dev-browser-radius) calc(var(--dev-browser-radius) * var(--dev-browser-img-ratio));
  border-top-right-radius: var(--dev-browser-radius) calc(var(--dev-browser-radius) * var(--dev-browser-img-ratio));
  border-bottom-right-radius: var(--dev-browser-radius) calc(var(--dev-browser-radius) * var(--dev-browser-img-ratio));
  border-bottom-left-radius: var(--dev-browser-radius) calc(var(--dev-browser-radius) * var(--dev-browser-img-ratio));
  z-index: 2;
}

.dev-browser__media {
  overflow: hidden;
  border-radius: var(--radius-md);
}
.dev-browser__media img, .dev-browser__media svg, .dev-browser__media video {
  display: block;
  width: 100%;
  height: auto;
}

.dev-browser__dots {
  position: absolute;
  left: calc(1.5% + 0.4em);
  top: calc(1em - 6px);
  display: flex;
}
.dev-browser__dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.2);
  margin-right: var(--space-xxs);
}

.dev-browser--front-light .dev-browser__body {
  box-shadow: var(--browser-inner-shadow), var(--shadow-lg);
}

.dev-browser--top-light .dev-browser__shadow {
  position: absolute;
  background-color: hsla(0, 0%, 0%, 0.1);
  z-index: 1;
  height: 1em;
  width: 100%;
  left: 0;
  bottom: -0.5em;
  border-radius: 100%;
  filter: blur(5px);
}
.dev-browser--top-light .dev-browser__shadow::before, .dev-browser--top-light .dev-browser__shadow::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}
.dev-browser--top-light .dev-browser__shadow::before {
  top: 20%;
  left: 10%;
  width: 80%;
  height: 40%;
  background-color: hsla(0, 0%, 0%, 0.4);
}
.dev-browser--top-light .dev-browser__shadow::after {
  top: 20%;
  left: 5%;
  width: 90%;
  height: 60%;
  background-color: hsla(0, 0%, 0%, 0.2);
}

/* #endregion */
/* #region (Laptop) */
.dev-laptop {
  position: relative;
  z-index: 1;
  width: 100%;
}

.dev-laptop__body {
  width: 85%;
  margin: 0 auto;
  background-color: var(--color-black);
  border: 3px solid var(--color-contrast-low);
  border-bottom-width: 0;
  padding: 3% 1.5% 1.5%;
  border-top-left-radius: var(--dev-laptop-radius) calc(var(--dev-laptop-radius) * var(--dev-laptop-img-ratio));
  border-top-right-radius: var(--dev-laptop-radius) calc(var(--dev-laptop-radius) * var(--dev-laptop-img-ratio));
  z-index: 2;
}

.dev-laptop__media img, .dev-laptop__media svg, .dev-laptop__media video {
  display: block;
  width: 100%;
  height: auto;
}

.dev-laptop__base {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 3%;
  background: linear-gradient(hsl(var(--color-contrast-low-h), var(--color-contrast-low-s), calc(var(--color-contrast-low-l) * 1.4)), var(--color-contrast-low) 7% 55%, hsl(var(--color-contrast-low-h), var(--color-contrast-low-s), calc(var(--color-contrast-low-l) * 0.85)) 55%, hsl(var(--color-contrast-low-h), var(--color-contrast-low-s), calc(var(--color-contrast-low-l) * 0.5)));
  border-bottom-left-radius: 10% 50%;
  border-bottom-right-radius: 10% 50%;
  z-index: 2;
}
.dev-laptop__base::after {
  content: "";
  position: absolute;
  top: 0;
  left: 40%;
  width: 20%;
  height: 35%;
  border-radius: 0 0 1em 1em;
  background-color: hsl(var(--color-contrast-low-h), var(--color-contrast-low-s), calc(var(--color-contrast-low-l) * 0.8));
  box-shadow: inset 0 1px 3px hsla(0, 0%, 0%, 0.25);
}

.dev-laptop__shadow {
  position: absolute;
  z-index: 1;
  height: 1em;
  width: 94%;
  left: 3%;
  bottom: -0.5em;
  perspective: 400px;
}
.dev-laptop__shadow::before, .dev-laptop__shadow::after {
  content: "";
  position: absolute;
}
.dev-laptop__shadow::before {
  top: 0;
  left: 1%;
  width: 98%;
  height: 100%;
  background-color: hsla(0, 0%, 0%, 0.25);
  transform: rotateX(70deg);
  filter: blur(5px);
}
.dev-laptop__shadow::after {
  top: calc(44% - 1px);
  left: 4%;
  width: 92%;
  height: 12%;
  border-radius: 100%;
  background-color: hsla(0, 0%, 0%, 0.8);
  filter: blur(1px);
}

/* #endregion */
/* #region (Desktop) */
.dev-desktop {
  position: relative;
  z-index: 1;
  width: 100%;
}

.dev-desktop__body {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  background-color: var(--color-black);
  border: 3px solid var(--color-contrast-low);
  padding: 4%;
  border-top-left-radius: var(--dev-desktop-radius) calc(var(--dev-desktop-radius) * var(--dev-desktop-img-ratio));
  border-top-right-radius: var(--dev-desktop-radius) calc(var(--dev-desktop-radius) * var(--dev-desktop-img-ratio));
  border-bottom-right-radius: var(--dev-desktop-radius) calc(var(--dev-desktop-radius) * var(--dev-desktop-img-ratio));
  border-bottom-left-radius: var(--dev-desktop-radius) calc(var(--dev-desktop-radius) * var(--dev-desktop-img-ratio));
}

.dev-desktop__media img, .dev-desktop__media svg, .dev-desktop__media video {
  display: block;
  width: 100%;
  height: auto;
}

.dev-desktop__base {
  position: relative;
  z-index: 1;
  width: 33%;
  margin: 0 auto;
  height: 0;
  padding-bottom: 15%;
  perspective: 180px;
}

.dev-desktop__base-top {
  position: absolute;
  z-index: 3;
  top: -1px;
  left: 15%;
  width: 70%;
  height: 80%;
  clip-path: polygon(3% 0%, 97% 0%, 100% 100%, 0% 100%);
  background: linear-gradient(hsl(var(--color-contrast-low-h), var(--color-contrast-low-s), calc(var(--color-contrast-low-l) * 0.6)), var(--color-contrast-low));
}

.dev-desktop__base-bottom {
  position: absolute;
  z-index: 2;
  top: calc(80% - 2px);
  left: 15%;
  width: 70%;
  height: 50%;
  border-radius: 0 0 0.25em 0.25em;
  transform-origin: center top;
  transform: rotateX(80deg);
  background-color: var(--color-contrast-low);
  box-shadow: inset 0 -2px 0 hsla(0, 0%, 100%, 0.25);
}

.dev-desktop__shadow {
  position: absolute;
  z-index: 1;
  top: calc(80% - 2px);
  left: 17%;
  width: 66%;
  height: 50%;
  border-radius: 0 0 0.25em 0.25em;
  transform-origin: center top;
  transform: rotateX(80deg);
  box-shadow: 0 2px 2px hsla(0, 0%, 0%, 0.4), 0 4px 4px hsla(0, 0%, 0%, 0.15);
}

/* #endregion */
/* -------------------------------- 

File#: _1_diagonal-section
Title: Diagonal Section
Descr: Section with diagonal edges
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --diagonal-section-offset: 50px;
}

.diagonal-section,
.diagonal-section-top,
.diagonal-section-bottom {
  position: relative;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@supports (clip-path: inset(50%)) {
  .diagonal-section, .diagonal-section-top.diagonal-section-bottom {
    padding-top: calc(var(--diagonal-section-offset) / 2);
    padding-bottom: calc(var(--diagonal-section-offset) / 2);
    clip-path: polygon(0% 0%, 100% var(--diagonal-section-offset), 100% 100%, 0% calc(100% - var(--diagonal-section-offset)));
  }
  .diagonal-section--flip-x {
    clip-path: polygon(0% var(--diagonal-section-offset), 100% 0%, 100% calc(100% - var(--diagonal-section-offset)), 0% 100%);
  }
  .diagonal-section-top {
    padding-top: calc(var(--diagonal-section-offset) / 2);
    clip-path: polygon(0% 0%, 100% var(--diagonal-section-offset), 100% 100%, 0% 100%);
  }
  .diagonal-section-top--flip-x {
    clip-path: polygon(0% var(--diagonal-section-offset), 100% 0%, 100% 100%, 0% 100%);
  }
  .diagonal-section-top--flip-x.diagonal-section-bottom {
    clip-path: polygon(0% var(--diagonal-section-offset), 100% 0%, 100% 100%, 0% calc(100% - var(--diagonal-section-offset)));
  }
  .diagonal-section-bottom {
    padding-bottom: calc(var(--diagonal-section-offset) / 2);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% calc(100% - var(--diagonal-section-offset)));
  }
  .diagonal-section-bottom--flip-x {
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - var(--diagonal-section-offset)), 0% 100%);
  }
  .diagonal-section-bottom--flip-x.diagonal-section-top {
    clip-path: polygon(0% 0%, 100% var(--diagonal-section-offset), 100% calc(100% - var(--diagonal-section-offset)), 0% 100%);
  }
  .diagonal-section-top--flip-x.diagonal-section-bottom--flip-x {
    clip-path: polygon(0% var(--diagonal-section-offset), 100% 0%, 100% calc(100% - var(--diagonal-section-offset)), 0% 100%);
  }
}
/* -------------------------------- 

File#: _1_feature-v10
Title: Feature v10
Descr: A feature section containing two adjacent content blocks
Usage: codyhouse.co/license

-------------------------------- */
.feature-v10 {
  position: relative;
  z-index: 1;
}

.feature-v10__link {
  position: relative;
  text-decoration: none;
  color: inherit;
  display: inline-block;
  transition: 0.3s var(--ease-out);
  transform-origin: left bottom;
}
.feature-v10__link i {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: 0.3s var(--ease-out);
}
.feature-v10__link::after {
  content: "";
  background-color: currentColor;
  height: 2px;
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  transition: 0.3s var(--ease-out);
  opacity: 0.15;
}
.feature-v10__link:hover {
  transform: scale(1.3);
}
.feature-v10__link:hover i {
  transform: scale(0.7);
}
.feature-v10__link:hover::after {
  height: 100%;
}

/* -------------------------------- 

File#: _1_feature-v9
Title: Feature v9
Descr: A feature section with 2 blocks
Usage: codyhouse.co/license

-------------------------------- */
.feature-v9:hover .feature-v9__block:not(:hover) .feature-v9__content {
  opacity: 0.5;
}
.feature-v9:hover .feature-v9__block:not(:hover)::after {
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.8);
  -webkit-backdrop-filter: grayscale(100%);
          backdrop-filter: grayscale(100%);
}

.feature-v9__block {
  position: relative;
  display: flex;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: var(--space-xl) var(--space-md);
  min-height: 350px;
}
.feature-v9__block::before, .feature-v9__block::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: 0.2s;
}
.feature-v9__block::before {
  height: 70%;
  background: linear-gradient(hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0), hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.8));
  mix-blend-mode: multiply;
}
.feature-v9__block::after {
  height: 100%;
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0);
}
.feature-v9__block:hover .feature-v9__content {
  transform: translateY(-10px);
}
@media (min-width: 48rem) {
  .feature-v9__block {
    min-height: 450px;
  }
}
@media (min-width: 64rem) {
  .feature-v9__block {
    min-height: 600px;
  }
}
@media (min-width: 80rem) {
  .feature-v9__block {
    min-height: 700px;
  }
}

.feature-v9__content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: auto auto 0;
  transition: 0.2s;
}

.feature-v9__link {
  color: var(--color-black);
  text-decoration: none;
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background-color: hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.8);
  border-radius: var(--radius-md);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: background-color 0.2s;
}
.feature-v9__link:hover {
  background-color: hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 1);
}

/* -------------------------------- 

File#: _1_google-maps
Title: Google Maps
Descr: Google Maps component
Usage: codyhouse.co/license

-------------------------------- */
.google-maps {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.google-maps--ratio-4\:1 {
  padding-bottom: 25%;
}

.google-maps--ratio-3\:1 {
  padding-bottom: 33%;
}

/* -------------------------------- 

File#: _1_immersive-section-transition
Title: Immersive Section Transition
Descr: A media element that animates to a full-screen block, before transitioning to the next section of content
Usage: codyhouse.co/license

-------------------------------- */
.js .immerse-section-tr {
  position: relative;
  --immerse-section-tr-opacity: 0;
}
.js .immerse-section-tr__media {
  position: sticky;
  top: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.js .immerse-section-tr--disabled .immerse-section-tr__media {
  position: relative;
}
.js .immerse-section-tr__figure {
  will-change: transform;
  pointer-events: auto;
  position: relative;
  height: 0;
}
.js .immerse-section-tr__figure > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.js .immerse-section-tr__figure--16-9 {
  padding-bottom: 56.25%;
}
.js .immerse-section-tr__figure--3-4 {
  padding-bottom: 133.33%;
}
.js .immerse-section-tr__content {
  position: relative;
  z-index: 3;
  transform: translateZ(0);
}
.js .immerse-section-tr__content::after, .js .immerse-section-tr__content::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-bg);
  opacity: var(--immerse-section-tr-opacity, 0);
  pointer-events: none;
}
.js .immerse-section-tr__content::before {
  height: 100%;
  z-index: -1;
}
.js .immerse-section-tr__content::after {
  height: 100vh;
  transform: translateY(-100%);
}
.js .immerse-section-tr--disabled .immerse-section-tr__content::before {
  opacity: 1;
}

html:not(.js) .immerse-section-tr__content {
  background-color: var(--color-bg);
}

/* -------------------------------- 

File#: _1_link-effects
Title: Link Effects
Descr: A collection of link effects
Usage: codyhouse.co/license

-------------------------------- */
.link-fx-1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}
.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.2s;
}
.link-fx-1 .icon line {
  transition: transform 0.4s;
  transform-origin: 13px 15px;
}
.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}
.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform 0.2s 0.1s;
}
.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 0.2s 0.1s;
}
.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}
.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}
.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform 0.2s;
}

.link-fx-2 {
  position: relative;
  display: inline-block;
  padding: 4px 6px;
  color: var(--color-contrast-higher);
  text-decoration: none;
  background-image: linear-gradient(var(--color-contrast-higher), var(--color-contrast-higher));
  background-size: 100% 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  will-change: background-size;
  transition: background-size 0.3s var(--ease-out);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.link-fx-2::after {
  content: attr(data-link-fx-clone);
  color: var(--color-bg);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: inherit;
  will-change: clip-path, transform;
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  transform: translateY(4px);
  transition: clip-path 0.3s, transform 0.3s;
  transition-timing-function: var(--ease-out);
}
.link-fx-2:hover {
  background-size: 100% 100%;
}
.link-fx-2:hover::after {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transform: translateY(0px);
}

.link-fx-3 {
  position: relative;
  display: inline-flex;
  padding: 4px 6px;
  text-decoration: none;
  align-items: center;
}
.link-fx-3 .icon {
  display: block;
  font-size: 12px;
  margin-left: 8px;
  position: relative;
  opacity: 0;
  visibility: hidden;
  will-change: transform;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out), visibility 0s 0.3s;
}
.link-fx-3 .icon line {
  transform-origin: 9px 6px;
  will-change: transform;
  transition: transform 0.3s var(--ease-out);
}
.link-fx-3 .icon line:first-child {
  transform: rotate(20deg);
}
.link-fx-3 .icon line:last-child {
  transform: rotate(-20deg);
}
.link-fx-3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 18px);
  height: 1px;
  background-color: currentColor;
  transition: 0.3s var(--ease-out);
}
.link-fx-3:hover .icon {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}
.link-fx-3:hover .icon line:first-child, .link-fx-3:hover .icon line:last-child {
  transform: rotate(0);
}
.link-fx-3:hover::before {
  width: 100%;
}

.link-fx-4 {
  position: relative;
  display: inline-block;
  padding: 6px 10px;
  background-color: var(--color-contrast-lower);
  color: var(--color-contrast-higher);
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.link-fx-4::before {
  content: attr(data-link-fx-clone);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-contrast-higher);
  color: var(--color-bg);
  will-change: clip-path;
  clip-path: polygon(0% 0%, 1px 0%, 1px 100%, 0% 100%);
  transition: clip-path 0.3s var(--ease-out);
}
.link-fx-4:hover::before {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.link-fx-5 {
  display: inline-block;
  padding: 4px 0;
  text-decoration: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4' viewBox='0 0 16 4'%3E%3Cpath d='M0,3.5c4,0,4-3,8-3s4,3,8,3' fill='none' stroke='%232a6df4' opacity='0.5' stroke-miterlimit='10'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: 0px 100%;
  background-size: 0;
}
.link-fx-5:hover {
  background-size: 16px 4px;
  animation: link-fx-5-animation 0.4s linear infinite;
}

@keyframes link-fx-5-animation {
  from {
    background-position: 0px 100%;
  }
  to {
    background-position: 16px 100%;
  }
}
/* -------------------------------- 

File#: _1_list-v2
Title: List v2
Descr: Custom list component
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --list-v2-bullet-size: 40px;
  --list-v2-bullet-font-size: 1rem;
  --list-v2-bullet-margin-right: 1rem;
  --list-v2-gap-y: var(--space-lg); /* list points gap */
}

.list-v2, .text-component .list-v2 {
  padding-left: 0;
  list-style: none;
}
.list-v2 > li:not(:last-child), .text-component .list-v2 > li:not(:last-child) {
  margin-bottom: var(--list-v2-gap-y);
}

.list-v2__title {
  padding-left: calc(var(--list-v2-bullet-size) + var(--list-v2-bullet-margin-right));
}

.list-v2__bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: var(--list-v2-bullet-size);
  height: var(--list-v2-bullet-size);
  margin-right: var(--list-v2-bullet-margin-right);
  margin-left: calc(-1 * var(--list-v2-bullet-size) - var(--list-v2-bullet-margin-right));
  vertical-align: middle;
  position: relative;
  top: -0.1em;
}

.list-v2__content {
  margin-left: calc(var(--list-v2-bullet-size) + var(--list-v2-bullet-margin-right));
}

/* ordered list */
.list-v2--ol, .text-component .list-v2--ol {
  counter-reset: list-items;
}
.list-v2--ol > li, .text-component .list-v2--ol > li {
  counter-increment: list-items;
}
.list-v2--ol .list-v2__bullet, .text-component .list-v2--ol .list-v2__bullet {
  border-radius: 50%;
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
  color: var(--color-primary);
  font-size: var(--list-v2-bullet-font-size);
  font-weight: 500;
}
.list-v2--ol .list-v2__bullet::before, .text-component .list-v2--ol .list-v2__bullet::before {
  content: counter(list-items);
}

/* unordered list */
.list-v2--ul, .text-component .list-v2--ul {
  --list-v2-bullet-size: 10px;
}
.list-v2--ul .list-v2__bullet, .text-component .list-v2--ul .list-v2__bullet {
  border-radius: 50%;
  background-color: var(--color-primary);
}

/* icons */
.list-v2--icons, .text-component .list-v2--icons {
  --list-v2-bullet-size: 48px;
}
.list-v2--icons .list-v2__bullet, .text-component .list-v2--icons .list-v2__bullet {
  border-radius: 50%;
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}
.list-v2--icons .list-v2__icon, .text-component .list-v2--icons .list-v2__icon {
  --size: 24px;
  color: var(--color-primary); /* icon color */
}

/* -------------------------------- 

File#: _1_list
Title: List
Descr: Custom list component
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --list-space-y: 0.375em;
  --list-offset: 1em;
  --list-line-height-multiplier: 1;
}

.list, .text-component .list {
  padding-left: 0;
  list-style: none;
}
.list ul, .list ol, .text-component .list ul, .text-component .list ol {
  list-style: none;
  margin: 0;
  margin-top: calc(var(--list-space-y) / 2 * var(--text-space-y-multiplier, 1));
  padding-top: calc(var(--list-space-y) / 2 * var(--text-space-y-multiplier, 1));
  padding-left: var(--list-offset);
}
.list li, .text-component .list li {
  padding-bottom: calc(var(--list-space-y) / 2 * var(--text-space-y-multiplier, 1));
  margin-bottom: calc(var(--list-space-y) / 2 * var(--text-space-y-multiplier, 1));
  line-height: calc(var(--body-line-height) * var(--list-line-height-multiplier));
}
.list > li:last-child, .list ul > li:last-child, .list ol > li:last-child, .text-component .list > li:last-child, .text-component .list ul > li:last-child, .text-component .list ol > li:last-child {
  margin-bottom: 0;
}
.list:not(.list--border) > li:last-child, .list ul > li:last-child, .list ol > li:last-child, .text-component .list:not(.list--border) > li:last-child, .text-component .list ul > li:last-child, .text-component .list ol > li:last-child {
  padding-bottom: 0;
}

/* #region (ul + ol) */
.list--ul, .text-component .list--ul,
.list--ol, .text-component .list--ol {
  --list-offset: calc(var(--list-bullet-size) + var(--list-bullet-margin-right));
}
.list--ul ul, .list--ul ol, .text-component .list--ul ul, .text-component .list--ul ol,
.list--ol ul,
.list--ol ol, .text-component .list--ol ul, .text-component .list--ol ol {
  padding-left: 0;
}
@supports (--css: variables) {
  .list--ul li, .text-component .list--ul li,
  .list--ol li, .text-component .list--ol li {
    padding-left: var(--list-offset) !important;
  }
}
.list--ul li::before, .text-component .list--ul li::before,
.list--ol li::before, .text-component .list--ol li::before {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  position: relative;
  top: -0.1em;
}
@supports (--css: variables) {
  .list--ul li::before, .text-component .list--ul li::before,
  .list--ol li::before, .text-component .list--ol li::before {
    width: var(--list-bullet-size) !important;
    height: var(--list-bullet-size) !important;
    margin-left: calc(var(--list-bullet-size) * -1) !important;
    left: calc(var(--list-bullet-margin-right) * -1) !important;
  }
}

.list--ul, .text-component .list--ul {
  --list-bullet-size: 7px;
  --list-bullet-margin-right: 12px;
}
.list--ul > li, .text-component .list--ul > li {
  padding-left: 19px;
}
.list--ul > li::before, .text-component .list--ul > li::before {
  content: "";
  border-radius: 50%;
  color: var(--color-contrast-lower);
  background-color: currentColor;
  width: 7px;
  height: 7px;
  margin-left: -7px;
  left: -12px;
}
.list--ul ul li::before, .text-component .list--ul ul li::before {
  background-color: transparent;
  box-shadow: inset 0 0 0 2px currentColor;
}

.list--ol, .text-component .list--ol {
  --list-bullet-size: 26px;
  --list-bullet-margin-right: 6px;
  --list-bullet-font-size: 14px;
  counter-reset: list-items;
}
.list--ol > li, .text-component .list--ol > li {
  counter-increment: list-items;
  padding-left: 32px;
}
.list--ol ol, .text-component .list--ol ol {
  counter-reset: list-items;
}
.list--ol > li::before, .text-component .list--ol > li::before {
  content: counter(list-items);
  font-size: var(--list-bullet-font-size, 14px);
  background-color: var(--color-contrast-lower);
  color: var(--color-contrast-high);
  line-height: 1;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  margin-left: -26px;
  left: -6px;
}
.list--ol ol > li::before, .text-component .list--ol ol > li::before {
  background-color: transparent;
  box-shadow: inset 0 0 0 2px var(--color-contrast-lower);
}

/* #endregion */
/* #region (border) */
.list--border li:not(:last-child), .text-component .list--border li:not(:last-child) {
  border-bottom: 1px solid var(--color-contrast-lower);
}
.list--border ul, .list--border ol, .text-component .list--border ul, .text-component .list--border ol {
  border-top: 1px solid var(--color-contrast-lower);
}

/* #endregion */
/* #region (icons) */
.list--icons, .text-component .list--icons {
  --list-bullet-size: 24px;
  --list-bullet-margin-right: 8px;
  --list-offset: calc(var(--list-bullet-size) + var(--list-bullet-margin-right));
}
.list--icons ul, .list--icons ol, .text-component .list--icons ul, .text-component .list--icons ol {
  padding-left: 32px;
}
@supports (--css: variables) {
  .list--icons ul, .list--icons ol, .text-component .list--icons ul, .text-component .list--icons ol {
    padding-left: var(--list-offset);
  }
}

.list__icon {
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.list__icon:not(.top-0) {
  top: calc((1em * var(--body-line-height) - 24px) / 2);
}
@supports (--css: variables) {
  .list__icon {
    width: var(--list-bullet-size);
    height: var(--list-bullet-size);
    margin-right: var(--list-bullet-margin-right);
  }
  .list__icon:not(.top-0) {
    top: calc((1em * var(--body-line-height) * var(--list-line-height-multiplier) - var(--list-bullet-size)) / 2);
  }
}

/* #endregion */
/* -------------------------------- 

File#: _1_main-footer
Title: Main Footer
Descr: Footer navigation
Usage: codyhouse.co/license

-------------------------------- */
.main-footer__logo {
  display: inline-block;
}
.main-footer__logo svg, .main-footer__logo img {
  display: block;
}

.main-footer__link {
  color: var(--color-contrast-medium);
  text-decoration: none;
}
.main-footer__link:hover {
  color: var(--color-contrast-high);
  text-decoration: underline;
}

.main-footer__social {
  text-decoration: none;
  display: inline-block;
  color: var(--color-contrast-medium);
}
.main-footer__social:hover {
  color: var(--color-contrast-high);
}
.main-footer__social .icon {
  font-size: 1.2em;
}
@media (min-width: 64rem) {
  .main-footer__social .icon {
    font-size: 1em;
  }
}

/* -------------------------------- 

File#: _1_modal-window
Title: Modal Window
Descr: A modal dialog used to display critical information
Usage: codyhouse.co/license

-------------------------------- */
.modal {
  position: fixed;
  z-index: var(--z-index-overlay, 15);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.modal:not(.modal--is-visible) {
  pointer-events: none;
  background-color: transparent;
}

.modal--is-visible {
  opacity: 1;
  visibility: visible;
}

.modal__close-btn {
  display: flex;
  flex-shrink: 0;
  border-radius: 50%;
  transition: 0.2s;
}
.modal__close-btn .icon {
  display: block;
  margin: auto;
}

.modal__close-btn--outer {
  width: 48px;
  height: 48px;
  position: fixed;
  top: var(--space-sm);
  right: var(--space-sm);
  z-index: var(--z-index-fixed-element, 10);
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.9);
  transition: 0.2s;
}
.modal__close-btn--outer .icon {
  color: var(--color-white);
  transition: transform 0.3s var(--ease-out-back);
}
.modal__close-btn--outer:hover {
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 1);
}
.modal__close-btn--outer:hover .icon {
  transform: scale(1.1);
}

.modal__close-btn--inner {
  --size: 32px;
  width: var(--size);
  height: var(--size);
  background-color: var(--color-bg-light);
  box-shadow: var(--inner-glow), var(--shadow-sm);
  transition: 0.2s;
}
.modal__close-btn--inner .icon {
  color: inherit;
}
.modal__close-btn--inner:hover {
  background-color: var(--color-bg-lighter);
  box-shadow: var(--inner-glow), var(--shadow-md);
}

:root {
  --modal-transition-duration: 0.2s;
}

@media (prefers-reduced-motion: no-preference) {
  .modal--animate-fade {
    --modal-transition-duration: 0.2s;
    transition: opacity var(--modal-transition-duration), background-color var(--modal-transition-duration), visibility 0s var(--modal-transition-duration);
  }
  .modal--animate-fade.modal--is-visible {
    transition: opacity var(--modal-transition-duration), background-color var(--modal-transition-duration), visibility 0s;
  }
  .modal--animate-scale,
  .modal--animate-translate-up,
  .modal--animate-translate-down,
  .modal--animate-translate-right,
  .modal--animate-translate-left {
    --modal-transition-duration: .2s;
    transition: opacity var(--modal-transition-duration), background-color var(--modal-transition-duration), visibility 0s var(--modal-transition-duration);
  }
  .modal--animate-scale .modal__content,
  .modal--animate-translate-up .modal__content,
  .modal--animate-translate-down .modal__content,
  .modal--animate-translate-right .modal__content,
  .modal--animate-translate-left .modal__content {
    will-change: transform;
    transition: transform var(--modal-transition-duration) var(--ease-out);
  }
  .modal--animate-scale.modal--is-visible,
  .modal--animate-translate-up.modal--is-visible,
  .modal--animate-translate-down.modal--is-visible,
  .modal--animate-translate-right.modal--is-visible,
  .modal--animate-translate-left.modal--is-visible {
    transition: opacity var(--modal-transition-duration), background-color var(--modal-transition-duration), visibility 0s;
  }
  .modal--animate-scale.modal--is-visible .modal__content,
  .modal--animate-translate-up.modal--is-visible .modal__content,
  .modal--animate-translate-down.modal--is-visible .modal__content,
  .modal--animate-translate-right.modal--is-visible .modal__content,
  .modal--animate-translate-left.modal--is-visible .modal__content {
    transform: scale(1);
  }
  .modal--animate-slide-up,
  .modal--animate-slide-down,
  .modal--animate-slide-right,
  .modal--animate-slide-left {
    --modal-transition-duration: 0.3s;
    transition: opacity 0s var(--modal-transition-duration), background-color var(--modal-transition-duration), visibility 0s var(--modal-transition-duration);
  }
  .modal--animate-slide-up .modal__content,
  .modal--animate-slide-down .modal__content,
  .modal--animate-slide-right .modal__content,
  .modal--animate-slide-left .modal__content {
    will-change: transform;
    transition: transform var(--modal-transition-duration) var(--ease-out);
  }
  .modal--animate-slide-up.modal--is-visible,
  .modal--animate-slide-down.modal--is-visible,
  .modal--animate-slide-right.modal--is-visible,
  .modal--animate-slide-left.modal--is-visible {
    transition: background-color var(--modal-transition-duration), visibility 0s;
  }
  .modal--animate-slide-up.modal--is-visible .modal__content,
  .modal--animate-slide-down.modal--is-visible .modal__content,
  .modal--animate-slide-right.modal--is-visible .modal__content,
  .modal--animate-slide-left.modal--is-visible .modal__content {
    transform: scale(1);
  }
  .modal--animate-scale .modal__content {
    transform: scale(0.95);
  }
  .modal--animate-translate-up .modal__content {
    transform: translateY(40px);
  }
  .modal--animate-translate-down .modal__content {
    transform: translateY(-40px);
  }
  .modal--animate-translate-right .modal__content {
    transform: translateX(-40px);
  }
  .modal--animate-translate-left .modal__content {
    transform: translateX(40px);
  }
  .modal--animate-slide-up .modal__content {
    transform: translateY(100%);
  }
  .modal--animate-slide-down .modal__content {
    transform: translateY(-100%);
  }
  .modal--animate-slide-right .modal__content {
    transform: translateX(-100%);
  }
  .modal--animate-slide-left .modal__content {
    transform: translateX(100%);
  }
}
.modal--is-loading .modal__content {
  visibility: hidden;
}
.modal--is-loading .modal__loader {
  display: flex;
}

.modal__loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: none;
  pointer-events: none;
}

/* -------------------------------- 

File#: _1_newsletter
Title: Newsletter 
Descr: Newsletter form template
Usage: codyhouse.co/license

-------------------------------- */
.newsletter {
  position: relative;
  z-index: 1;
}

/* -------------------------------- 

File#: _1_notice
Title: Notice 
Descr: Modeless notice banner, visible by default
Usage: codyhouse.co/license

-------------------------------- */
.notice {
  position: fixed;
  width: 100%;
  pointer-events: none;
  z-index: var(--z-index-fixed-element, 10);
}

.notice__banner {
  pointer-events: auto;
}

.notice__close-btn {
  --size: 2em;
  display: flex;
  width: var(--size);
  height: var(--size);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.85);
  color: var(--color-bg);
  transition: 0.2s;
}
.notice__close-btn:hover {
  background-color: var(--color-contrast-higher);
}
.notice__close-btn .icon {
  --size: 16px;
}

.notice--hide {
  opacity: 0;
  visibility: hidden;
}

@media screen and (prefers-reduced-motion: no-preference) {
  .notice {
    transition: opacity 0.3s, visibility 0s 0.3s;
  }
  .notice__banner {
    transition: transform 0.3s;
  }
  .notice--hide .notice__banner {
    transform: translateY(20px);
  }
}
/* -------------------------------- 

File#: _1_pagination
Title: Pagination 
Descr: Component used to navigate through pages of related content
Usage: codyhouse.co/license

-------------------------------- */
.pagination__list > li {
  display: inline-block;
}

.pagination--split .pagination__list {
  width: 100%;
}
.pagination--split .pagination__list > *:first-child {
  margin-right: auto;
}
.pagination--split .pagination__list > *:last-child {
  margin-left: auto;
}

.pagination__item {
  display: inline-block;
  display: inline-flex;
  height: 100%;
  align-items: center;
  padding: var(--space-xs) calc(1.355 * var(--space-xs));
  white-space: nowrap;
  line-height: 1;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-contrast-high);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  will-change: transform;
  transition: 0.2s;
}
.pagination__item:hover:not(.pagination__item--selected):not(.pagination__item--ellipsis) {
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
}
.pagination__item:active {
  transform: translateY(2px);
}

.pagination__item--selected {
  background-color: var(--color-contrast-higher);
  color: var(--color-bg);
  box-shadow: var(--shadow-sm);
}

.pagination__item--disabled {
  opacity: 0.5;
  pointer-events: none;
}

.pagination__jumper .form-control {
  width: 3em;
  margin-right: var(--space-xs);
}
.pagination__jumper em {
  flex-shrink: 0;
  white-space: nowrap;
}

/* -------------------------------- 

File#: _1_radio-switch
Title: Radio Switch
Descr: Custom radio toggle
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --radio-switch-width: 186px;
  --radio-switch-height: 46px;
  --radio-switch-padding: 3px;
  --radio-switch-radius: 50em;
  --radio-switch-animation-duration: 0.3s;
}

.radio-switch {
  position: relative;
  display: inline-block;
  display: inline-flex;
  padding: var(--radio-switch-padding);
  border-radius: calc(var(--radio-switch-radius) * 1.4);
  background-color: var(--color-bg-darker);
}
.radio-switch:focus-within, .radio-switch:active {
  box-shadow: 0 0 0 2px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.15);
}

.radio-switch__item {
  position: relative;
  display: inline-block;
  height: calc(var(--radio-switch-height) - 2 * var(--radio-switch-padding));
  width: calc(var(--radio-switch-width) * 0.5 - var(--radio-switch-padding));
}

.radio-switch__label {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  border-radius: var(--radio-switch-radius);
  cursor: pointer;
  font-size: var(--text-sm);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all var(--radio-switch-animation-duration);
}
.radio-switch__input:checked ~ .radio-switch__label {
  color: var(--color-white);
}
.radio-switch__input:focus ~ .radio-switch__label {
  background-color: hsl(var(--color-primary-h), var(--color-primary-s), calc(var(--color-primary-l) * 0.6));
}
.radio-switch__label :not(*):focus-within, .radio-switch__input:focus ~ .radio-switch__label {
  background-color: transparent;
}

.radio-switch__marker {
  position: absolute;
  z-index: 1;
  top: 0;
  left: -100%;
  border-radius: var(--radio-switch-radius);
  background-color: var(--color-primary);
  height: calc(var(--radio-switch-height) - 2 * var(--radio-switch-padding));
  width: calc(var(--radio-switch-width) * 0.5 - var(--radio-switch-padding));
  box-shadow: var(--shadow-md);
  transition: transform var(--radio-switch-animation-duration);
}
.radio-switch__input:checked ~ .radio-switch__marker {
  transform: translateX(100%);
}

/* -------------------------------- 

File#: _1_radios-checkboxes
Title: Radios and Checkboxes
Descr: Custom radio and checkbox buttons
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --checkbox-radio-size: 18px;
  --checkbox-radio-gap: var(--space-xxs);
  --checkbox-radio-border-width: 1px;
  --checkbox-radio-line-height: var(--body-line-height);
  --radio-marker-size: 8px;
  --checkbox-marker-size: 12px;
  --checkbox-radius: 4px;
}

.radio,
.checkbox {
  position: absolute;
  padding: 0;
  margin: 0;
  margin-top: calc((1em * var(--checkbox-radio-line-height) - var(--checkbox-radio-size)) / 2);
  opacity: 0;
  height: var(--checkbox-radio-size);
  width: var(--checkbox-radio-size);
  pointer-events: none;
}

.radio + label,
.checkbox + label {
  display: inline-block;
  line-height: var(--checkbox-radio-line-height);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  padding-left: calc(var(--checkbox-radio-size) + var(--checkbox-radio-gap));
}

.radio + label::before,
.checkbox + label::before {
  content: "";
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  top: -0.1em;
  margin-left: calc(-1 * (var(--checkbox-radio-size) + var(--checkbox-radio-gap)));
  flex-shrink: 0;
  width: var(--checkbox-radio-size);
  height: var(--checkbox-radio-size);
  background-color: var(--color-bg);
  border-width: var(--checkbox-radio-border-width);
  border-color: hsla(var(--color-contrast-low-h), var(--color-contrast-low-s), var(--color-contrast-low-l), 0.65);
  border-style: solid;
  box-shadow: var(--shadow-xs);
  background-repeat: no-repeat;
  background-position: center;
  margin-right: var(--checkbox-radio-gap);
  transition: transform 0.2s, border 0.2s;
}

.radio:not(:checked):not(:focus) + label:hover::before,
.checkbox:not(:checked):not(:focus) + label:hover::before {
  border-color: hsla(var(--color-contrast-low-h), var(--color-contrast-low-s), var(--color-contrast-low-l), 1);
}

.radio + label::before {
  border-radius: 50%;
}

.checkbox + label::before {
  border-radius: var(--checkbox-radius);
}

.radio:checked + label::before,
.checkbox:checked + label::before {
  background-color: var(--color-primary);
  box-shadow: var(--shadow-xs);
  border-color: var(--color-primary);
  transition: transform 0.2s;
}

.radio:active + label::before,
.checkbox:active + label::before {
  transform: scale(0.8);
  transition: transform 0.2s;
}

.radio:checked:active + label::before,
.checkbox:checked:active + label::before {
  transform: none;
  transition: none;
}

.radio:checked + label::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg class='nc-icon-wrapper' fill='%23ffffff'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23ffffff'%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
  background-size: var(--radio-marker-size);
}

.checkbox:checked + label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpolyline points='1 6.5 4 9.5 11 2.5' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
  background-size: var(--checkbox-marker-size);
}

.radio:checked:active + label::before,
.checkbox:checked:active + label::before,
.radio:focus + label::before,
.checkbox:focus + label::before {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}

.radio--bg + label, .checkbox--bg + label {
  padding: var(--space-xxxxs) var(--space-xxxs);
  padding-left: calc(var(--checkbox-radio-size) + var(--checkbox-radio-gap) + var(--space-xxxs));
  border-radius: var(--radius-md);
  transition: background 0.2s;
}

.radio--bg + label:hover, .checkbox--bg + label:hover {
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.075);
}

.radio--bg:active + label,
.checkbox--bg:active + label,
.radio--bg:focus + label,
.checkbox--bg:focus + label {
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.1);
}

/* -------------------------------- 

File#: _1_reading-progressbar
Title: Reading Progress Bar
Descr: A bar indicator displaying the current reading progress
Usage: codyhouse.co/license

-------------------------------- */
.reading-progressbar {
  position: fixed;
  z-index: var(--z-index-fixed-element, 10);
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  color: var(--color-primary);
  pointer-events: none;
  display: none;
  transition: transform 0.2s;
}

.reading-progressbar--is-out {
  transform: translateY(-100%);
}

.reading-progressbar--is-active {
  display: block;
}

.reading-progressbar::-webkit-progress-bar {
  background-color: transparent;
}

.reading-progressbar::-webkit-progress-value {
  background-color: currentColor;
}

.reading-progressbar::-moz-progress-bar {
  background-color: currentColor;
}

.reading-progressbar__fallback {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: currentColor;
}

/* -------------------------------- 

File#: _1_reveal-effects
Title: Reveal Effects
Descr: A collection of reveal effects targeting specific elements as they enter the viewport
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --reveal-fx-duration: 0.6s;
  --reveal-fx-timing-function: var(--ease-out);
}

.js .reveal-fx {
  opacity: 0;
  transition: opacity, transform var(--reveal-fx-timing-function);
  transition-duration: var(--reveal-fx-duration);
}
.js .reveal-fx::before {
  display: none;
  content: "reveal-fx";
}
.js .reveal-fx--translate, .js .reveal-fx--translate-up {
  transform: translateY(50px);
}
.js .reveal-fx--translate-right {
  transform: translateX(-50px);
}
.js .reveal-fx--translate-left {
  transform: translateX(50px);
}
.js .reveal-fx--translate-down {
  transform: translateY(-50px);
}
.js .reveal-fx--scale {
  transform: scale(0.8);
}
.js .reveal-fx--scale-up {
  transform: translateY(50px) scale(0.8);
}
.js .reveal-fx--scale-right {
  transform: translateX(-50px) scale(0.8);
}
.js .reveal-fx--scale-left {
  transform: translateX(50px) scale(0.8);
}
.js .reveal-fx--scale-down {
  transform: translateY(-50px) scale(0.8);
}
.js .reveal-fx--rotate, .js .reveal-fx--rotate-down, .js .reveal-fx--rotate-right, .js .reveal-fx--rotate-left, .js .reveal-fx--rotate-up {
  perspective: 1000px;
}
.js .reveal-fx--rotate > *, .js .reveal-fx--rotate-down > *, .js .reveal-fx--rotate-right > *, .js .reveal-fx--rotate-left > *, .js .reveal-fx--rotate-up > * {
  transition: transform var(--reveal-fx-duration) var(--reveal-fx-timing-function);
  backface-visibility: hidden;
}
.js .reveal-fx--rotate > *, .js .reveal-fx--rotate-down > * {
  transform-origin: top;
  transform: rotateX(-45deg);
}
.js .reveal-fx--rotate-right > * {
  transform-origin: left center;
  transform: rotateY(45deg);
}
.js .reveal-fx--rotate-left > * {
  transform-origin: right center;
  transform: rotateY(-45deg);
}
.js .reveal-fx--rotate-up > * {
  transform-origin: bottom;
  transform: rotateX(45deg);
}
.js .reveal-fx--text-mask {
  overflow: hidden;
}
.js .reveal-fx--text-mask > * {
  display: inline-block;
  transform: translateY(100%);
  transition: transform var(--reveal-fx-duration) var(--reveal-fx-timing-function);
  will-change: transform;
}
.js [class*=reveal-fx--translate], .js [class*=reveal-fx--scale] {
  will-change: opacity, transform;
}
.js .reveal-fx--text-mask > *, .js [class*=reveal-fx--rotate] > * {
  will-change: transform;
}
.js .reveal-fx--clip-x > *,
.js .reveal-fx--clip-y > * {
  transition: opacity, clip-path var(--ease-out);
  transition-duration: var(--reveal-fx-duration);
}
.js .reveal-fx--clip-x > * {
  clip-path: polygon(10% 0%, 90% 0%, 90% 100%, 10% 100%);
}
.js .reveal-fx--clip-y > * {
  clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
}
.js .reveal-fx--is-visible {
  opacity: 1;
}
.js .reveal-fx--is-visible[class*=reveal-fx--translate], .js .reveal-fx--is-visible[class*=reveal-fx--scale], .js .reveal-fx--is-visible[class*=reveal-fx--rotate] > *, .js .reveal-fx--is-visible.reveal-fx--text-mask > * {
  transform: translate(0);
}
.js .reveal-fx--is-visible.reveal-fx--clip-x > *, .js .reveal-fx--is-visible.reveal-fx--clip-y > * {
  opacity: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* -------------------------------- 

File#: _1_search-input
Title: Search input
Descr: Search input field with custom button
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --search-input-btn-width: 2.2em;
  --search-input-icon-size: 1em;
  --search-input-shortcut-margin: 0.325em; /* gap between the shortcut badge and the input edges */
}

.search-input {
  position: relative;
}

.search-input__input {
  width: 100%;
  height: 100%;
}
.search-input__input::-webkit-search-decoration, .search-input__input::-webkit-search-cancel-button, .search-input__input::-webkit-search-results-button, .search-input__input::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
.search-input__input::-ms-clear, .search-input__input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.search-input--icon-right .search-input__input {
  padding-right: var(--search-input-btn-width);
}
.search-input--icon-left .search-input__input {
  padding-left: var(--search-input-btn-width);
}

.search-input__btn {
  background-color: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: var(--search-input-btn-width);
}
.search-input__btn:active .icon {
  transform: translateY(2px);
}
.search-input__btn .icon {
  display: block;
  --size: var(--search-input-icon-size);
  margin-left: auto;
  margin-right: auto;
  color: var(--color-contrast-low); /* icon color */
  transition: 0.2s;
}
.search-input--icon-left .search-input__btn {
  left: 0;
  right: auto;
  pointer-events: none;
}

.search-input__btn:focus .icon,
.search-input .search-input__input:focus + .search-input__btn .icon {
  color: var(--color-primary); /* active icon color */
}

/* --shortcut */
.search-input__shortcut {
  position: absolute;
  right: var(--search-input-shortcut-margin);
  top: var(--search-input-shortcut-margin);
  height: calc(100% - var(--search-input-shortcut-margin) * 2);
  display: flex;
  align-items: center;
  background-color: var(--color-bg);
  border: 1px solid var(--color-contrast-lower);
  border-radius: var(--radius-sm);
  --space-unit: 1em;
  padding: 0 var(--space-xxxs);
  line-height: 1;
  color: var(--color-contrast-medium);
}

.search-input:focus-within .search-input__shortcut {
  display: none;
}

/* -------------------------------- 

File#: _1_section-divider
Title: Section divider
Descr: A collection of SVG section dividers.
Usage: codyhouse.co/license

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

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }
  h1 {
    font-size: 3.051rem;
  }
  h2 {
    font-size: 2.44rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.5625rem;
  }
}
/* variables */
:root {
  /* colors */
  --sf0-color-primary-hsl: 250, 84%, 54%;
  --sf0-color-bg-hsl: 0, 0%, 100%;
  --sf0-color-contrast-high-hsl: 230, 7%, 23%;
  --sf0-color-contrast-higher-hsl: 230, 13%, 9%;
  --sf0-color-contrast-low-hsl: 240, 4%, 65%;
  --sf0-color-accent-hsl: 342, 89%, 48%;
  --sf0-color-contrast-lower-hsl: 240, 4%, 85%;
  /* spacing */
  --sf0-space-md: 1.25rem;
  --sf0-space-2xl: 5.25rem;
  --sf0-space-sm: 0.75rem;
  --sf0-space-xs: 0.5rem;
  /* typography */
  --sf0-text-sm: 0.833rem;
}

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --sf0-space-md: 2rem;
    --sf0-space-2xl: 8.25rem;
    --sf0-space-sm: 1.125rem;
    --sf0-space-xs: 0.75rem;
    /* typography */
    --sf0-text-sm: 1rem;
  }
}
/* component */
:root {
  --section-divider-width: 1920;
  --section-divider-height: 60;
  --section-divider-ratio: calc(100% * var(--section-divider-height) / var(--section-divider-width));
}

[class*=has-section-divider] {
  position: relative;
}

.has-section-dividers {
  padding-top: var(--section-divider-ratio);
  padding-bottom: var(--section-divider-ratio);
}

.has-section-dividers .section-divider + .section-divider {
  bottom: auto;
  top: -1px;
  transform: scaleY(-1);
}

.has-section-divider-top {
  padding-top: var(--section-divider-ratio);
}

.has-section-divider-top .section-divider {
  bottom: auto;
  top: -1px;
  transform: scaleY(-1);
}

.has-section-divider-bottom {
  padding-bottom: var(--section-divider-ratio);
}

.section-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.section-divider svg {
  position: relative;
  display: block;
  height: auto;
  max-width: none;
  width: 102%;
  left: -1%;
}

/* utility classes */
.sf0-text-component :where(h1, h2, h3, h4) {
  line-height: var(--sf0-heading-line-height, 1.2);
  margin-top: calc(var(--sf0-space-md) * var(--sf0-space-multiplier, 1));
  margin-bottom: calc(var(--sf0-space-sm) * var(--sf0-space-multiplier, 1));
}

.sf0-text-component :where(p, blockquote, ul li, ol li) {
  line-height: var(--sf0-body-line-height, 1.4);
}

.sf0-text-component :where(ul, ol, p, blockquote, .sf0-text-component__block) {
  margin-bottom: calc(var(--sf0-space-sm) * var(--sf0-space-multiplier, 1));
}

.sf0-text-component :where(ul, ol) {
  padding-left: 1.25em;
}

.sf0-text-component ul :where(ul, ol), .sf0-text-component ol :where(ul, ol) {
  padding-left: 1em;
  margin-bottom: 0;
}

.sf0-text-component ul {
  list-style-type: disc;
}

.sf0-text-component ol {
  list-style-type: decimal;
}

.sf0-text-component img {
  display: block;
  margin: 0 auto;
}

.sf0-text-component figcaption {
  margin-top: calc(var(--sf0-space-xs) * var(--sf0-space-multiplier, 1));
  font-size: var(--sf0-text-sm);
  text-align: center;
}

.sf0-text-component em {
  font-style: italic;
}

.sf0-text-component strong {
  font-weight: bold;
}

.sf0-text-component s {
  text-decoration: line-through;
}

.sf0-text-component u {
  text-decoration: underline;
}

.sf0-text-component mark {
  background-color: hsla(var(--sf0-color-accent-hsl), 0.2);
  color: inherit;
}

.sf0-text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid hsl(var(--sf0-color-contrast-lower-hsl));
  font-style: italic;
}

.sf0-text-component hr {
  margin: calc(var(--sf0-space-md) * var(--sf0-space-multiplier, 1)) auto;
  background: hsl(var(--sf0-color-contrast-lower-hsl));
  height: 1px;
}

.sf0-text-component > *:first-child {
  margin-top: 0;
}

.sf0-text-component > *:last-child {
  margin-bottom: 0;
}

.sf0-text-component.sf0-line-height-xs {
  --sf0-heading-line-height: 1;
  --sf0-body-line-height: 1.1;
}

.sf0-text-component.sf0-line-height-sm {
  --sf0-heading-line-height: 1.1;
  --sf0-body-line-height: 1.2;
}

.sf0-text-component.sf0-line-height-md {
  --sf0-heading-line-height: 1.15;
  --sf0-body-line-height: 1.4;
}

.sf0-text-component.sf0-line-height-lg {
  --sf0-heading-line-height: 1.22;
  --sf0-body-line-height: 1.58;
}

.sf0-text-component.sf0-line-height-xl {
  --sf0-heading-line-height: 1.3;
  --sf0-body-line-height: 1.72;
}

.sf0-max-width-adaptive-sm {
  max-width: 32rem;
}

@media (min-width: 48rem) {
  .sf0-max-width-adaptive-sm {
    max-width: 48rem;
  }
}
.sf0-container {
  width: calc(100% - 2 * var(--sf0-space-md));
  margin-left: auto;
  margin-right: auto;
}

.sf0-padding-y-2xl {
  padding-top: var(--sf0-space-2xl);
  padding-bottom: var(--sf0-space-2xl);
}

.sf0-bg-contrast-low {
  --sf0-bg-o: 1;
  background-color: hsla(var(--sf0-color-contrast-low-hsl), var(--sf0-bg-o, 1));
}

.sf0-bg-no-repeat {
  background-repeat: no-repeat;
}

.sf0-bg-center {
  background-position: center;
}

.sf0-bg-cover {
  background-size: cover;
}

.sf0-bg-opacity-50\% {
  --sf0-bg-o: 0.5;
}

/* -------------------------------- 

File#: _1_skip-link
Title: Skip Link
Descr: Accessibility feature that allows users to jump to the main content of the page
Usage: codyhouse.co/license

-------------------------------- */
.skip-link {
  position: absolute;
  z-index: var(--z-index-fixed-element, 10);
  top: 0;
  left: 0;
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-light);
  box-shadow: var(--shadow-lg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
}
.skip-link:focus, .skip-link.skip-link--focus {
  clip: auto;
  clip-path: none;
  outline: 3px solid hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}

@media screen and (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
/* -------------------------------- 

File#: _1_social-sharing
Title: Social Sharing
Descr: Social sharing plugin
Usage: codyhouse.co/license

-------------------------------- */
.sharebar__btn {
  --size: 60px;
  width: var(--size);
  height: var(--size);
  display: flex;
  background: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
  border-radius: 50%;
  transition: 0.2s;
}
.sharebar__btn .icon {
  --size: 24px;
  display: block;
  margin: auto;
  color: var(--color-contrast-high);
  transition: color 0.2s;
}
.sharebar__btn:hover {
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.075);
  box-shadow: var(--shadow-sm);
}
.sharebar__btn:hover .icon {
  color: var(--color-contrast-higher);
}

/* -------------------------------- 

File#: _1_sticky-hero
Title: Sticky Hero
Descr: A sticky hero section that reveals its content on scroll
Usage: codyhouse.co/license

-------------------------------- */
.sticky-hero {
  position: relative;
  z-index: 1;
}

.sticky-hero__media {
  position: relative;
  position: sticky;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s var(--ease-in-out);
  transform: translateZ(0);
}

.sticky-hero--overlay-layer .sticky-hero__media::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  background-color: var(--color-bg);
  transition: opacity 1s;
}

.sticky-hero--media-is-fixed.sticky-hero--overlay-layer .sticky-hero__media::after {
  opacity: 0.65;
}

.sticky-hero--media-is-fixed.sticky-hero--scale .sticky-hero__media {
  transform: scale(0.9);
}

.sticky-hero__video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.sticky-hero__video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  max-width: none;
}

.sticky-hero__content {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateZ(0);
}

/* --------------------------------

File#: _1_sub-navigation
Title: Sub Navigation
Descr: Secondary navigation template
Usage: codyhouse.co/license

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

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }
  h1 {
    font-size: 3.051rem;
  }
  h2 {
    font-size: 2.44rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.5625rem;
  }
}
/* variables */
:root {
  /* colors */
  --si6-color-primary-hsl: 250, 84%, 54%;
  --si6-color-bg-hsl: 0, 0%, 100%;
  --si6-color-contrast-high-hsl: 230, 7%, 23%;
  --si6-color-contrast-higher-hsl: 230, 13%, 9%;
  --si6-color-bg-dark-hsl: 240, 4%, 95%;
  --si6-color-bg-light-hsl: 0, 0%, 100%;
  --si6-color-bg-lighter-hsl: 0, 0%, 100%;
  --si6-color-black-hsl: 230, 13%, 9%;
  --si6-color-white-hsl: 0, 0%, 100%;
  /* spacing */
  --si6-space-2xs: 0.375rem;
  --si6-space-xs: 0.5rem;
  --si6-space-sm: 0.75rem;
  --si6-space-md: 1.25rem;
  /* typography */
  --si6-text-md: 1.2rem;
  --si6-text-sm: 0.833rem;
}

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --si6-space-2xs: 0.5625rem;
    --si6-space-xs: 0.75rem;
    --si6-space-sm: 1.125rem;
    --si6-space-md: 2rem;
    /* typography */
    --si6-text-md: 1.5625rem;
    --si6-text-sm: 1rem;
  }
}
/* buttons */
.si6-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  white-space: nowrap;
  text-decoration: none;
  background: hsl(var(--si6-color-bg-dark-hsl));
  color: hsl(var(--si6-color-contrast-higher-hsl));
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.2s ease;
  will-change: transform;
  padding: var(--si6-space-2xs) var(--si6-space-sm);
  border-radius: 0.25em;
}

.si6-btn:focus-visible {
  box-shadow: 0px 0px 0px 2px hsl(var(--si6-color-bg-hsl)), 0px 0px 0px 4px hsla(var(--si6-color-contrast-higher-hsl), 0.15);
  outline: none;
}

.si6-btn:active {
  transform: translateY(2px);
}

.si6-btn--subtle {
  background: hsl(var(--si6-color-bg-lighter-hsl));
  color: hsl(var(--si6-color-contrast-higher-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--si6-color-white-hsl), 0.1), 0px 0px 0px 1px hsla(var(--si6-color-black-hsl), 0.02), 0px 1px 3px -1px hsla(var(--si6-color-black-hsl), 0.2), 0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
}

.si6-btn--subtle:hover {
  background: hsl(var(--si6-color-bg-light-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--si6-color-white-hsl), 0.1), 0px 0px 0px 1px hsla(var(--si6-color-black-hsl), 0.02), 0px 1px 3px -1px hsla(var(--si6-color-black-hsl), 0.2), 0 0.1px 0.3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
}

.si6-btn--subtle:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--si6-color-white-hsl), 0.1), 0px 0px 0px 1px hsla(var(--si6-color-black-hsl), 0.02), 0px 1px 3px -1px hsla(var(--si6-color-black-hsl), 0.2), 0 0.1px 0.3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12), 0px 0px 0px 2px hsl(var(--si6-color-bg-hsl)), 0px 0px 0px 4px hsl(var(--si6-color-contrast-high-hsl));
}

/* icons */
.si6-icon {
  height: var(--si6-size, 1em);
  width: var(--si6-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.si6-icon--2xs {
  --si6-size: 12px;
}

/* component */
.subnav__nav {
  position: relative;
  display: flex;
}

.subnav__nav::after {
  content: "";
  width: 1em;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(to right, hsla(var(--si6-color-bg-dark-hsl), 0), hsla(var(--si6-color-bg-dark-hsl), 1));
  pointer-events: none;
}

.subnav__list {
  display: flex;
  overflow: auto;
}

.subnav__item {
  display: inline-block;
  flex-shrink: 0;
}

.subnav__link {
  display: block;
  font-size: var(--si6-text-sm);
  padding: 1.5625em;
  text-decoration: none;
  color: hsla(var(--si6-color-contrast-high-hsl), 0.65);
  border: 3px solid transparent;
  border-right-width: 0;
  border-left-width: 0;
  transition: 0.2s;
}

.subnav__link:hover {
  color: hsl(var(--si6-color-contrast-high-hsl));
}

.subnav__link[aria-current=page] {
  border-bottom-color: hsl(var(--si6-color-primary-hsl));
  color: hsl(var(--si6-color-contrast-high-hsl));
}

.subnav:not(.subnav--collapsed) .subnav__control, .subnav:not(.subnav--collapsed) .subnav__close-btn {
  display: none;
}

.subnav--collapsed {
  display: inline-block;
}

.subnav--collapsed .subnav__wrapper {
  position: fixed;
  display: block;
  z-index: 15;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(var(--si6-color-black-hsl), 0.9);
  visibility: hidden;
  opacity: 0;
}

.subnav--collapsed .subnav__wrapper--is-visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s;
}

.subnav--collapsed .subnav__wrapper--is-visible .subnav__nav {
  transform: translateY(0);
  transition: transform 0.3s;
}

.subnav--collapsed .subnav__nav {
  display: block;
  background-color: hsl(var(--si6-color-bg-hsl));
  box-shadow: 0 0.9px 1.5px rgba(0, 0, 0, 0.03), 0 3.1px 5.5px rgba(0, 0, 0, 0.08), 0 14px 25px rgba(0, 0, 0, 0.12);
  max-height: 100%;
  overflow: auto;
  transform: translateY(-1em);
}

.subnav--collapsed .subnav__nav::after {
  display: none;
}

.subnav--collapsed .subnav__list {
  flex-direction: column;
  overflow: visible;
  padding: 0 var(--si6-space-md) var(--si6-space-md);
}

.subnav--collapsed .subnav__link {
  border-width: 0;
  font-size: var(--si6-text-md);
  padding: var(--si6-space-xs) 0;
}

.subnav--collapsed .subnav__link[aria-current=page] {
  color: hsl(var(--si6-color-primary-hsl));
}

.subnav__close-btn {
  --si6-size: 2em;
  width: var(--si6-size);
  height: var(--si6-size);
  display: flex;
  margin: var(--si6-space-xs) var(--si6-space-xs) 0 auto;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: hsl(var(--si6-color-bg-light-hsl));
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}

.subnav__close-btn:hover {
  background-color: hsl(var(--si6-color-bg-lighter-hsl));
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0.9px 1.5px rgba(0, 0, 0, 0.03), 0 3.1px 5.5px rgba(0, 0, 0, 0.08), 0 14px 25px rgba(0, 0, 0, 0.12);
}

.subnav__close-btn svg {
  display: block;
  color: hsl(var(--si6-color-contrast-high-hsl));
  height: 1em;
  width: 1em;
}

[class*=subnav--expanded]::before {
  display: none;
  content: "collapsed";
}

@media (min-width: 32rem) {
  .subnav--expanded\@xs::before {
    content: "expanded";
  }
}
@media (min-width: 48rem) {
  .subnav--expanded\@sm::before {
    content: "expanded";
  }
}
@media (min-width: 64rem) {
  .subnav--expanded\@md::before {
    content: "expanded";
  }
}
@media (min-width: 80rem) {
  .subnav--expanded\@lg::before {
    content: "expanded";
  }
}
@media (min-width: 90rem) {
  .subnav--expanded\@xl::before {
    content: "expanded";
  }
}
/* utility classes */
.si6-justify-center {
  justify-content: center;
}

.si6-margin-left-2xs {
  margin-left: var(--si6-space-2xs);
}

.si6-margin-y-sm {
  margin-top: var(--si6-space-sm);
  margin-bottom: var(--si6-space-sm);
}

.si6-max-width-lg {
  max-width: 80rem;
}

.si6-container {
  width: calc(100% - 2 * var(--si6-space-md));
  margin-left: auto;
  margin-right: auto;
}

.si6-bg-dark {
  --si6-bg-o: 1;
  background-color: hsla(var(--si6-color-bg-dark-hsl), var(--si6-bg-o, 1));
}

/* -------------------------------- 

File#: _1_testimonial
Title: Testimonial
Descr: A testimonial quote 
Usage: codyhouse.co/license

-------------------------------- */
.testimonial__block-wrapper {
  position: relative;
}
.testimonial__block-wrapper blockquote {
  position: relative;
  z-index: 1;
}
.testimonial__block-wrapper .icon {
  position: absolute;
  top: -0.5em;
  left: -0.5em;
}

/* -------------------------------- 

File#: _1_text-points
Title: Text Points
Descr: A list of text components
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --text-points-bullet-size: 1.2em;
  --text-points-bullet-text-scale: 0.6;
}

.text-points {
  --text-unit: 1em;
  font-size: 0.875em;
}

.text-points__item {
  color: var(--color-contrast-medium);
}
.text-points__item .text-component {
  --line-height-multiplier: 1.15;
}

.text-points--counter .text-points__title,
.text-points--letter .text-points__title,
.text-points--icon .text-points__title {
  position: relative;
  padding-left: calc(var(--text-points-bullet-size) + var(--space-xxxs));
}
.text-points--counter .text-points__title::before,
.text-points--letter .text-points__title::before,
.text-points--icon .text-points__title::before {
  position: absolute;
  top: 0;
  left: 0;
  font-size: calc(1em * var(--text-points-bullet-text-scale));
  height: calc(var(--text-points-bullet-size) / var(--text-points-bullet-text-scale));
  width: calc(var(--text-points-bullet-size) / var(--text-points-bullet-text-scale));
  line-height: calc(var(--text-points-bullet-size) / var(--text-points-bullet-text-scale));
  font-weight: medium;
  text-align: center;
  background-color: var(--color-contrast-lower);
  color: var(--color-contrast-medium);
  border-radius: 50%;
}
@media (min-width: 80rem) {
  .text-points--counter .text-points__title,
  .text-points--letter .text-points__title,
  .text-points--icon .text-points__title {
    padding-left: 0;
  }
  .text-points--counter .text-points__title::before,
  .text-points--letter .text-points__title::before,
  .text-points--icon .text-points__title::before {
    transform: translateX(-100%);
    left: -8px;
  }
}

.text-points--counter .text-points__item {
  counter-increment: text-points;
}
.text-points--counter .text-points__title::before {
  content: counter(text-points);
}

.text-points--letter .text-points__title::before {
  content: "?";
}

.text-points--icon .text-points__title::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm2.658,18.284c-.661.26-2.952,1.354-4.272.191a1.676,1.676,0,0,1-.59-1.318,15.978,15.978,0,0,1,.919-3.957,5.7,5.7,0,0,0,.231-1.313c0-.7-.266-.887-.987-.887a3.31,3.31,0,0,0-1.095.257l.195-.8a7.64,7.64,0,0,1,2.621-.71c1.269,0,2.2.633,2.2,1.837A5.585,5.585,0,0,1,13.7,12.96l-.73,2.582c-.151.522-.424,1.673,0,2.014a2.214,2.214,0,0,0,1.887-.071ZM13.452,8a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,13.452,8Z'/%3E%3C/svg%3E");
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,0A12,12,0,1,0,24,12,12.013,12.013,0,0,0,12,0Zm2.658,18.284c-.661.26-2.952,1.354-4.272.191a1.676,1.676,0,0,1-.59-1.318,15.978,15.978,0,0,1,.919-3.957,5.7,5.7,0,0,0,.231-1.313c0-.7-.266-.887-.987-.887a3.31,3.31,0,0,0-1.095.257l.195-.8a7.64,7.64,0,0,1,2.621-.71c1.269,0,2.2.633,2.2,1.837A5.585,5.585,0,0,1,13.7,12.96l-.73,2.582c-.151.522-.424,1.673,0,2.014a2.214,2.214,0,0,0,1.887-.071ZM13.452,8a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,13.452,8Z'/%3E%3C/svg%3E");
  background: var(--color-contrast-lower);
}

/* -------------------------------- 

File#: _1_vertical-timeline
Title: Vertical Timeline
Descr: A vertical timeline used to display a sequence of events/steps
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --v-timeline-marker-size: 16px;
  --v-timeline-track-width: 2px;
  --v-timeline-triangle-size: 12px;
  --v-timeline-sections-gap: var(--space-lg);
  --v-timeline-items-gap: var(--space-sm);
}

.v-timeline {
  position: relative;
  padding: var(--space-lg) 0;
}
.v-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc((var(--v-timeline-marker-size) - var(--v-timeline-track-width)) * 0.5);
  height: 100%;
  width: var(--v-timeline-track-width);
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
}

.v-timeline__section {
  position: relative;
  display: flex;
}
.v-timeline__section:not(:last-of-type) {
  margin-bottom: var(--v-timeline-sections-gap);
}

.v-timeline__marker {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  height: var(--v-timeline-marker-size);
  width: var(--v-timeline-marker-size);
  border-radius: 50%;
  margin-right: calc(var(--v-timeline-triangle-size) + var(--space-xxs));
}

.v-timeline__item {
  position: relative;
  top: calc(0.5 * var(--v-timeline-marker-size));
  flex-grow: 1;
}
.v-timeline__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-1 * var(--v-timeline-triangle-size) + 1px);
  height: var(--v-timeline-triangle-size);
  width: var(--v-timeline-triangle-size);
  background-color: inherit;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
}
.v-timeline__item:not(:last-child) {
  margin-bottom: var(--v-timeline-items-gap);
}
.v-timeline__item:not(:first-child) .v-timeline__date {
  display: none;
}
.v-timeline__item:not(:first-child)::before {
  display: none;
}

.v-timeline__date-value {
  color: var(--color-contrast-medium);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media not all and (min-width: 64rem) {
  .v-timeline__item:first-child {
    border-top-left-radius: 0;
  }
}
@media (min-width: 64rem) {
  .v-timeline::before {
    left: calc(50% - var(--v-timeline-track-width) / 2);
  }
  .v-timeline__section {
    width: calc(50% + var(--v-timeline-marker-size) / 2);
  }
  .v-timeline__section:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .v-timeline__section:nth-child(odd) .v-timeline__marker {
    margin-right: 0;
    margin-left: calc(var(--v-timeline-triangle-size) + var(--space-xxs));
  }
  .v-timeline__section:nth-child(odd) .v-timeline__item::before {
    left: auto;
    right: calc(-1 * var(--v-timeline-triangle-size) + 1px);
    transform: scaleX(-1);
  }
  .v-timeline__section:nth-child(odd) .v-timeline__item:first-child {
    border-top-right-radius: 0;
  }
  .v-timeline__section:nth-child(odd) .v-timeline__date {
    right: calc(-2 * (var(--v-timeline-triangle-size) + var(--space-xxs)) - var(--v-timeline-marker-size));
    transform: translateX(100%) translateY(-50%);
  }
  .v-timeline__section:nth-child(even) {
    margin-left: auto;
  }
  .v-timeline__section:nth-child(even) .v-timeline__item:first-child {
    border-top-left-radius: 0;
  }
  .v-timeline__section:nth-child(even) .v-timeline__date {
    left: calc(-2 * (var(--v-timeline-triangle-size) + var(--space-xxs)) - var(--v-timeline-marker-size));
    transform: translateX(-100%) translateY(-50%);
  }
  .v-timeline__section--is-hidden {
    opacity: 0;
  }
  .v-timeline__date {
    position: absolute;
    top: 0;
    white-space: nowrap;
  }
  .js .v-timeline[data-animation=on] .v-timeline__marker {
    opacity: 0;
    transform: scale(0.5);
    transition: transform 0.6s var(--ease-out), opacity 0.6s;
  }
  .js .v-timeline[data-animation=on] .v-timeline__item {
    opacity: 0;
    transition: transform 0.6s var(--ease-out), opacity 0.6s;
  }
  .js .v-timeline[data-animation=on] .v-timeline__section:nth-child(odd) .v-timeline__item {
    transform: translateX(-50px);
  }
  .js .v-timeline[data-animation=on] .v-timeline__section:nth-child(even) .v-timeline__item {
    transform: translateX(50px);
  }
  .js .v-timeline[data-animation=on] .v-timeline__section--animate .v-timeline__item {
    transform: translateX(0) !important;
    opacity: 1;
  }
  .js .v-timeline[data-animation=on] .v-timeline__section--animate .v-timeline__marker {
    transform: scale(1);
    opacity: 1;
  }
}
.v-timeline--icons {
  --v-timeline-marker-size: 3em;
}

/* -------------------------------- 

File#: _2_accordion-v2
Title: Accordion v2
Descr: Stacked, expandable content sections
Usage: codyhouse.co/license

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

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }
  h1 {
    font-size: 3.051rem;
  }
  h2 {
    font-size: 2.44rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.5625rem;
  }
}
/* variables */
:root {
  /* colors */
  --ap9-color-primary-hsl: 250, 84%, 54%;
  --ap9-color-bg-hsl: 0, 0%, 100%;
  --ap9-color-contrast-high-hsl: 230, 7%, 23%;
  --ap9-color-contrast-higher-hsl: 230, 13%, 9%;
  --ap9-color-bg-light-hsl: 0, 0%, 100%;
  --ap9-color-accent-hsl: 342, 89%, 48%;
  --ap9-color-contrast-lower-hsl: 240, 4%, 85%;
  /* spacing */
  --ap9-space-3xs: 0.25rem;
  --ap9-space-sm: 0.75rem;
  --ap9-space-md: 1.25rem;
  --ap9-space-xs: 0.5rem;
  /* typography */
  --ap9-text-md: 1.2rem;
  --ap9-text-sm: 0.833rem;
}

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --ap9-space-3xs: 0.375rem;
    --ap9-space-sm: 1.125rem;
    --ap9-space-md: 2rem;
    --ap9-space-xs: 0.75rem;
    /* typography */
    --ap9-text-md: 1.5625rem;
    --ap9-text-sm: 1rem;
  }
}
/* icons */
.ap9-icon {
  height: var(--ap9-size, 1em);
  width: var(--ap9-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

/* component */
:root {
  --accordion-v2-icon-size: 20px;
  --accordion-v2-icon-stroke-width: 2px;
}

.accordion-v2__item {
  background-color: hsl(var(--ap9-color-bg-light-hsl));
  box-shadow: inset 0 1px 0.5px hsla(0, 0%, 100%, 0.075), 0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0.25em;
  transition: 0.3s;
}

.accordion-v2__item:hover {
  box-shadow: inset 0 1px 0.5px hsla(0, 0%, 100%, 0.075), 0 0.9px 1.5px rgba(0, 0, 0, 0.03), 0 3.1px 5.5px rgba(0, 0, 0, 0.08), 0 14px 25px rgba(0, 0, 0, 0.12);
}

.accordion-v2__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}

.accordion-v2__header svg {
  --ap9-size: var(--accordion-v2-icon-size);
}

.accordion-v2__header svg .icon__group {
  stroke-width: var(--accordion-v2-icon-stroke-width);
}

.accordion-v2__icon-arrow .icon__group {
  will-change: transform;
  transform-origin: 50% 50%;
}

.accordion-v2__icon-arrow .icon__group > * {
  transform-origin: 50% 50%;
  stroke-dasharray: 20;
  transform: translateY(4px);
}

.accordion-v2__icon-arrow .icon__group > *:first-child {
  stroke-dashoffset: 10.15;
}

.accordion-v2__icon-arrow .icon__group > *:last-child {
  stroke-dashoffset: 10.15;
}

.accordion-v2__item--is-open > .accordion-v2__header > .accordion-v2__icon-arrow .icon__group {
  transform: rotate(-90deg);
}

.accordion-v2__item--is-open > .accordion-v2__header > .accordion-v2__icon-arrow .icon__group > *:first-child, .accordion-v2__item--is-open > .accordion-v2__header > .accordion-v2__icon-arrow .icon__group *:last-child {
  stroke-dashoffset: 0;
  transform: translateY(0px);
}

.accordion-v2__panel {
  display: none;
  will-change: height;
  transform: translateZ(0px);
}

.accordion-v2__item--is-open > .accordion-v2__panel {
  display: block;
}

.accordion-v2[data-animation=on] .accordion-v2__item--is-open .accordion-v2__panel > * {
  animation: accordion-v2-entry-animation 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.accordion-v2[data-animation=on] .accordion-v2__icon-arrow .icon__group {
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.accordion-v2[data-animation=on] .accordion-v2__icon-arrow .icon__group > * {
  transition: transform 0.3s, stroke-dashoffset 0.3s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
@keyframes accordion-v2-entry-animation {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
/* utility classes */
.ap9-text-gap-md {
  --ap9-space-multiplier: 1.25;
}

.ap9-line-height-md {
  line-height: 1.4;
}

.ap9-text-component :where(h1, h2, h3, h4) {
  line-height: var(--ap9-heading-line-height, 1.2);
  margin-top: calc(var(--ap9-space-md) * var(--ap9-space-multiplier, 1));
  margin-bottom: calc(var(--ap9-space-sm) * var(--ap9-space-multiplier, 1));
}

.ap9-text-component :where(p, blockquote, ul li, ol li) {
  line-height: var(--ap9-body-line-height, 1.4);
}

.ap9-text-component :where(ul, ol, p, blockquote, .ap9-text-component__block) {
  margin-bottom: calc(var(--ap9-space-sm) * var(--ap9-space-multiplier, 1));
}

.ap9-text-component :where(ul, ol) {
  padding-left: 1.25em;
}

.ap9-text-component ul :where(ul, ol), .ap9-text-component ol :where(ul, ol) {
  padding-left: 1em;
  margin-bottom: 0;
}

.ap9-text-component ul {
  list-style-type: disc;
}

.ap9-text-component ol {
  list-style-type: decimal;
}

.ap9-text-component img {
  display: block;
  margin: 0 auto;
}

.ap9-text-component figcaption {
  margin-top: calc(var(--ap9-space-xs) * var(--ap9-space-multiplier, 1));
  font-size: var(--ap9-text-sm);
  text-align: center;
}

.ap9-text-component em {
  font-style: italic;
}

.ap9-text-component strong {
  font-weight: bold;
}

.ap9-text-component s {
  text-decoration: line-through;
}

.ap9-text-component u {
  text-decoration: underline;
}

.ap9-text-component mark {
  background-color: hsla(var(--ap9-color-accent-hsl), 0.2);
  color: inherit;
}

.ap9-text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid hsl(var(--ap9-color-contrast-lower-hsl));
  font-style: italic;
}

.ap9-text-component hr {
  margin: calc(var(--ap9-space-md) * var(--ap9-space-multiplier, 1)) auto;
  background: hsl(var(--ap9-color-contrast-lower-hsl));
  height: 1px;
}

.ap9-text-component > *:first-child {
  margin-top: 0;
}

.ap9-text-component > *:last-child {
  margin-bottom: 0;
}

.ap9-text-component.ap9-line-height-xs {
  --ap9-heading-line-height: 1;
  --ap9-body-line-height: 1.1;
}

.ap9-text-component.ap9-line-height-sm {
  --ap9-heading-line-height: 1.1;
  --ap9-body-line-height: 1.2;
}

.ap9-text-component.ap9-line-height-md {
  --ap9-heading-line-height: 1.15;
  --ap9-body-line-height: 1.4;
}

.ap9-text-component.ap9-line-height-lg {
  --ap9-heading-line-height: 1.22;
  --ap9-body-line-height: 1.58;
}

.ap9-text-component.ap9-line-height-xl {
  --ap9-heading-line-height: 1.3;
  --ap9-body-line-height: 1.72;
}

.ap9-padding-bottom-md {
  padding-bottom: var(--ap9-space-md);
}

.ap9-padding-x-md {
  padding-left: var(--ap9-space-md);
  padding-right: var(--ap9-space-md);
}

.ap9-padding-top-3xs {
  padding-top: var(--ap9-space-3xs);
}

.ap9-text-md {
  font-size: var(--ap9-text-md);
}

.ap9-padding-y-sm {
  padding-top: var(--ap9-space-sm);
  padding-bottom: var(--ap9-space-sm);
}

.ap9-gap-3xs {
  gap: var(--ap9-space-3xs);
}

.ap9-flex-column {
  flex-direction: column;
}

.ap9-flex {
  display: flex;
}

/* -------------------------------- 

File#: _2_article-example
Title: Article Example 
Descr: How to include basic typography elements
Usage: codyhouse.co/license

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

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }
  h1 {
    font-size: 3.051rem;
  }
  h2 {
    font-size: 2.44rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.5625rem;
  }
}
/* variables */
:root {
  /* colors */
  --ao7-color-primary-hsl: 250, 84%, 54%;
  --ao7-color-bg-hsl: 0, 0%, 100%;
  --ao7-color-contrast-high-hsl: 230, 7%, 23%;
  --ao7-color-contrast-higher-hsl: 230, 13%, 9%;
  --ao7-color-contrast-low-hsl: 240, 4%, 65%;
  --ao7-color-accent-hsl: 342, 89%, 48%;
  --ao7-color-contrast-lower-hsl: 240, 4%, 85%;
  /* spacing */
  --ao7-space-xs: 0.5rem;
  --ao7-space-md: 1.25rem;
  --ao7-space-sm: 0.75rem;
  /* typography */
  --ao7-text-md: 1.2rem;
  --ao7-text-sm: 0.833rem;
}

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --ao7-space-xs: 0.75rem;
    --ao7-space-md: 2rem;
    --ao7-space-sm: 1.125rem;
    /* typography */
    --ao7-text-md: 1.5625rem;
    --ao7-text-sm: 1rem;
  }
}
/* component */
/* utility classes */
.ao7-gap-xs {
  gap: var(--ao7-space-xs);
}

.ao7-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.ao7-grid > * {
  min-width: 0;
  grid-column-end: span 12;
}

@media (min-width: 90rem) {
  .ao7-text-component__block--outset {
    width: calc(100% + 12rem);
  }
  .ao7-text-component__block--outset img {
    display: block;
    width: 100%;
  }
  .ao7-text-component__block--outset:not(.ao7-text-component__block--right) {
    margin-left: -6rem;
  }
  .ao7-text-component__block--right.ao7-text-component__block--outset {
    margin-right: -6rem;
  }
}
@media (min-width: 48rem) {
  .ao7-text-component__block--left, .ao7-text-component__block--right {
    width: 45%;
  }
  .ao7-text-component__block--left img, .ao7-text-component__block--right img {
    display: block;
    width: 100%;
  }
  .ao7-text-component__block--left {
    float: left;
    margin-right: calc(var(--ao7-space-sm) * var(--ao7-space-multiplier, 1));
  }
  .ao7-text-component__block--right {
    float: right;
    margin-left: calc(var(--ao7-space-sm) * var(--ao7-space-multiplier, 1));
  }
}
@media (min-width: 90rem) {
  .ao7-text-component__block--left, .ao7-text-component__block--right {
    width: 50%;
  }
}
.ao7-text-center {
  text-align: center;
}

.ao7-color-contrast-low {
  --ao7-color-o: 1;
  color: hsla(var(--ao7-color-contrast-low-hsl), var(--ao7-color-o, 1));
}

.ao7-text-md {
  font-size: var(--ao7-text-md);
}

.ao7-text-component :where(h1, h2, h3, h4) {
  line-height: var(--ao7-heading-line-height, 1.2);
  margin-top: calc(var(--ao7-space-md) * var(--ao7-space-multiplier, 1));
  margin-bottom: calc(var(--ao7-space-sm) * var(--ao7-space-multiplier, 1));
}

.ao7-text-component :where(p, blockquote, ul li, ol li) {
  line-height: var(--ao7-body-line-height, 1.4);
}

.ao7-text-component :where(ul, ol, p, blockquote, .ao7-text-component__block) {
  margin-bottom: calc(var(--ao7-space-sm) * var(--ao7-space-multiplier, 1));
}

.ao7-text-component :where(ul, ol) {
  padding-left: 1.25em;
}

.ao7-text-component ul :where(ul, ol), .ao7-text-component ol :where(ul, ol) {
  padding-left: 1em;
  margin-bottom: 0;
}

.ao7-text-component ul {
  list-style-type: disc;
}

.ao7-text-component ol {
  list-style-type: decimal;
}

.ao7-text-component img {
  display: block;
  margin: 0 auto;
}

.ao7-text-component figcaption {
  margin-top: calc(var(--ao7-space-xs) * var(--ao7-space-multiplier, 1));
  font-size: var(--ao7-text-sm);
  text-align: center;
}

.ao7-text-component em {
  font-style: italic;
}

.ao7-text-component strong {
  font-weight: bold;
}

.ao7-text-component s {
  text-decoration: line-through;
}

.ao7-text-component u {
  text-decoration: underline;
}

.ao7-text-component mark {
  background-color: hsla(var(--ao7-color-accent-hsl), 0.2);
  color: inherit;
}

.ao7-text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid hsl(var(--ao7-color-contrast-lower-hsl));
  font-style: italic;
}

.ao7-text-component hr {
  margin: calc(var(--ao7-space-md) * var(--ao7-space-multiplier, 1)) auto;
  background: hsl(var(--ao7-color-contrast-lower-hsl));
  height: 1px;
}

.ao7-text-component > *:first-child {
  margin-top: 0;
}

.ao7-text-component > *:last-child {
  margin-bottom: 0;
}

.ao7-text-component.ao7-line-height-xs {
  --ao7-heading-line-height: 1;
  --ao7-body-line-height: 1.1;
}

.ao7-text-component.ao7-line-height-sm {
  --ao7-heading-line-height: 1.1;
  --ao7-body-line-height: 1.2;
}

.ao7-text-component.ao7-line-height-md {
  --ao7-heading-line-height: 1.15;
  --ao7-body-line-height: 1.4;
}

.ao7-text-component.ao7-line-height-lg {
  --ao7-heading-line-height: 1.22;
  --ao7-body-line-height: 1.58;
}

.ao7-text-component.ao7-line-height-xl {
  --ao7-heading-line-height: 1.3;
  --ao7-body-line-height: 1.72;
}

.ao7-article {
  --ao7-heading-line-height: 1.22;
  --ao7-body-line-height: 1.66;
  --ao7-space-multiplier: 1.2;
}

.ao7-col-6 {
  grid-column-end: span 6;
}

/* -------------------------------- 

File#: _2_contact
Title: Contact
Descr: Contact block w/ info about how to get in touch
Usage: codyhouse.co/license

-------------------------------- */
@media (min-width: 64rem) {
  .contact .google-maps {
    height: auto;
    padding-bottom: 0;
  }
}
/* -------------------------------- 

File#: _2_device-group
Title: Device Group
Descr: A group of devices
Usage: codyhouse.co/license

-------------------------------- */
.device-group-1 {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(10, 1fr);
}
.device-group-1 > * {
  position: relative;
  grid-row: 1/-1;
}
.device-group-1 > *:nth-child(1), .device-group-1 > *:nth-child(3) {
  z-index: 1;
}
.device-group-1 > *:nth-child(1) {
  grid-column: 1/5;
}
.device-group-1 > *:nth-child(2) {
  z-index: 2;
  grid-column: 4/8;
}
.device-group-1 > *:nth-child(3) {
  grid-column: 7/11;
}
.device-group-1 .dev-phone-3d-wrapper {
  perspective: 1000px;
}
.device-group-1 .dev-phone-3d-wrapper:first-child .dev-phone,
.device-group-1 .dev-phone-3d-wrapper:last-child .dev-phone {
  transition: transform 0.5s;
}
.device-group-1 .dev-phone-3d-wrapper:first-child .dev-phone {
  transform: rotateY(30deg);
  transform-origin: left center;
}
.device-group-1 .dev-phone-3d-wrapper:last-child .dev-phone {
  transform: rotateY(-30deg);
  transform-origin: right center;
}
.device-group-1:hover .dev-phone-3d-wrapper:first-child .dev-phone {
  transform: rotateY(20deg);
}
.device-group-1:hover .dev-phone-3d-wrapper:last-child .dev-phone {
  transform: rotateY(-20deg);
}

.device-group-2 {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: repeat(12, 1fr);
  padding-bottom: 2.5%;
}
.device-group-2 > * {
  position: relative;
  grid-row: 1/-1;
}
.device-group-2 .dev-phone {
  z-index: 2;
  grid-column: 1/4;
  bottom: -5%;
}
.device-group-2 .dev-laptop {
  z-index: 1;
  grid-column: 2/13;
}

.device-group-3 {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: repeat(12, 1fr);
  padding-bottom: 3.75%;
}
.device-group-3 > * {
  position: relative;
  grid-row: 1/-1;
}
.device-group-3 .dev-phone {
  z-index: 2;
  grid-column: 1/4;
  bottom: -5%;
}
.device-group-3 .dev-desktop {
  z-index: 1;
  grid-column: 2/13;
}

.device-group-4 {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: repeat(12, 1fr);
  padding-bottom: 2.75%;
}
.device-group-4 > * {
  position: relative;
  grid-row: 1/-1;
}
.device-group-4 .dev-phone {
  z-index: 2;
  grid-column: 1/3;
  bottom: -5%;
}
.device-group-4 .dev-desktop {
  z-index: 1;
  grid-column: 2/10;
}
.device-group-4 .dev-laptop {
  z-index: 2;
  bottom: -5%;
  grid-column: 6/13;
}

/* -------------------------------- 

File#: _2_flexi-header
Title: Flexi Header
Descr: Customizable header template
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --f-header-height: 50px;
  --f-header-logo-width: 104px;
}
@media (min-width: 64rem) {
  :root {
    --f-header-height: 70px;
  }
}

.f-header {
  height: var(--f-header-height);
  width: 100%;
  z-index: var(--z-index-header, 3);
}
.f-header::before { /* used in JS to detect menu style */
  display: none;
  content: "mobile";
}

.f-header--expanded {
  /* class added when navigation is visible - small devices only */
}

.f-header__mobile-content { /* logo + menu button on small devices */
  position: relative;
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.f-header__logo {
  display: block;
  width: var(--f-header-logo-width);
  flex-shrink: 0;
  text-decoration: none;
}
.f-header__logo svg, .f-header__logo img {
  display: block;
}

.f-header__nav-control { /* menu button */
  --anim-menu-btn-size: 40px;
  /* 🍔 icon */
  --anim-menu-btn-icon-size: 28px;
  --anim-menu-btn-icon-stroke: 2px;
}

.f-header__nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: calc(100vh - var(--f-header-offset, 0px));
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 0 0 var(--space-md);
  background-color: var(--color-bg);
  box-shadow: var(--shadow-md);
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-1em);
}
.f-header__nav::before { /* top header bg + border */
  content: "";
  display: block;
  position: sticky;
  top: 0;
  height: var(--f-header-height);
  background-color: inherit;
  border-bottom: 1px solid var(--color-contrast-lower);
}

.f-header__nav--is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: visibility 0s, opacity 0.3s, transform 0.3s;
}

.f-header__nav-logo-wrapper {
  display: none; /* hide logo nav on small devices */
}

.f-header__item {
  flex-shrink: 0;
  border-bottom: 1px solid var(--color-contrast-lower);
}

.f-header__dropdown-icon {
  --size: 16px;
  flex-shrink: 0;
  margin: 0 10px 0 auto;
  display: none; /* hide on mobile if link */
}
.f-header__dropdown-control .f-header__dropdown-icon {
  display: block;
}

.f-header__link,
.f-header__dropdown-control,
.f-header__dropdown-link,
.f-header__btn,
.f-header__form-control {
  font-size: var(--text-md);
}

.f-header__link,
.f-header__dropdown-control,
.f-header__dropdown-link {
  display: flex;
  align-items: center;
  color: var(--color-contrast-high);
  text-decoration: none;
  padding: var(--space-xs) 0;
  transition: 0.2s;
}
.f-header__link:hover, .f-header__link[aria-current=page],
.f-header__dropdown-control:hover,
.f-header__dropdown-control[aria-current=page],
.f-header__dropdown-link:hover,
.f-header__dropdown-link[aria-current=page] {
  opacity: 0.7;
}

.f-header__btn,
.f-header__form-control {
  width: 100%;
  margin: var(--space-xs) 0;
}

.f-header__dropdown-control {
  width: 100%;
}

.f-header__dropdown { /* sub navigation */
  padding-left: var(--space-md); /* offset sub nav */
}

.f-header__dropdown-control + .f-header__dropdown {
  display: none;
}
.f-header__dropdown-control[aria-expanded=true] + .f-header__dropdown {
  display: block;
}

@media (min-width: 64rem) {
  .f-header::before {
    content: "desktop";
  }
  .f-header__mobile-content {
    display: none; /* hide logo + menu (mobile content) */
  }
  .f-header__nav {
    /* reset */
    position: static;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: none;
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
    height: var(--f-header-height);
  }
  .f-header__nav::before { /* reset */
    display: none;
  }
  .f-header__nav-logo-wrapper {
    display: flex;
  }
  .f-header__nav-grid,
  .f-header__list {
    display: flex;
    align-items: center;
  }
  .f-header__nav-grid {
    height: 100%;
  }
  .f-header__item {
    position: relative;
    border-bottom: none;
    margin-right: var(--space-xs); /* margin between nav items */
  }
  .f-header__item:last-child {
    margin-right: 0;
  }
  .f-header__dropdown-icon {
    --size: 12px;
    display: block;
    margin: 0 0 0 var(--space-xxxxs);
  }
  .f-header__link,
  .f-header__dropdown-control,
  .f-header__dropdown-link,
  .f-header__btn,
  .f-header__form-control {
    font-size: 1.125rem;
  }
  .f-header__link {
    padding: var(--space-xxxs) var(--space-xxs);
  }
  .f-header__link--icon span {
    display: none; /* hide icon label */
  }
  .f-header__btn,
  .f-header__form-control {
    margin: 0; /* reset */
  }
  .f-header__dropdown {
    position: absolute;
    top: 100%;
    width: 220px;
    left: calc(50% - 110px);
    padding: var(--space-xxxs) 0;
    background-color: var(--color-bg-light);
    border-radius: var(--radius-md);
    box-shadow: var(--inner-glow), var(--shadow-md);
    z-index: var(--z-index-popover, 5);
    /* hide */
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.2s, opacity 0.2s 0s;
  }
  .f-header__dropdown-control + .f-header__dropdown {
    display: block; /* reset style */
  }
  .f-header__item:hover .f-header__dropdown, .f-header__dropdown-control[aria-expanded=true] + .f-header__dropdown {
    visibility: visible;
    opacity: 1;
    transition: visibility 0.2s 0s, opacity 0.2s 0s;
  }
  .f-header__dropdown-link {
    color: var(--color-contrast-high);
    padding: var(--space-xs) var(--space-sm);
    transition: 0.2s;
  }
  .f-header__dropdown-link:hover {
    background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.075);
    color: var(--color-contrast-higher);
  }
}
html:not(.js) .f-header {
  height: auto;
}
html:not(.js) .f-header__nav-control {
  display: none;
}
html:not(.js) .f-header__nav {
  position: static;
  padding: var(--space-xxs) 0 var(--space-md);
  box-shadow: none;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------- 

File#: _2_points-of-interest
Title: Points Of Interest
Descr: Highlight the points of interest of an image and provide additional details for each one.
Usage: codyhouse.co/license

-------------------------------- */
.poi {
  pointer-events: none;
}

.poi__item {
  position: absolute;
  pointer-events: auto;
}

.poi__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  --size: 32px;
  height: var(--size);
  width: var(--size);
  border-radius: 50%;
  background-color: var(--color-accent);
  box-shadow: var(--inner-glow-top), var(--shadow-sm);
  cursor: pointer;
  transition: 0.2s;
}
.poi__btn::after { /* pulse ring */
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 1px 1px var(--color-accent);
  animation: poi-pulse 2s infinite;
}
.poi__btn .icon {
  color: var(--color-white); /* icon color */
  --size: 12px;
  transition: transform 0.3s var(--ease-out-back);
}
.poi__btn:hover .icon {
  transform: scale(1.1);
}

.poi__item--visited button { /* style of clicked button */
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.poi__item--visited button::after {
  display: none;
}

@keyframes poi-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
/* -------------------------------- 

File#: _2_pricing-table
Title: Pricing Table
Descr: A table used to compare prices and features of different products
Usage: codyhouse.co/license

-------------------------------- */
.p-table__item {
  background-color: var(--color-bg-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--inner-glow);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
}

.p-table__item--popular {
  background-color: var(--color-bg-light);
  box-shadow: 0 0 0 2px var(--color-primary), var(--shadow-md);
}

.p-table__badge {
  font-size: var(--text-sm);
  background-color: var(--color-contrast-high);
  color: var(--color-bg);
  padding: var(--space-xxxs) var(--space-xxs);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  border-radius: var(--radius-md);
}

.p-table__price span {
  font-size: var(--text-xxxl);
  font-weight: bold;
}
.p-table__price i {
  color: var(--color-contrast-low);
}

.p-table__features li {
  margin-bottom: var(--space-xs);
}

.p-table__switch {
  display: none;
}

.js .p-table--has-switch .p-table__price-wrapper {
  position: relative;
  overflow: hidden;
}
.js .p-table--has-switch .p-table__price {
  will-change: transform;
  transition: transform 0.3s, opacity 0.3s;
  transition-timing-function: var(--ease-out);
}
.js .p-table--has-switch .p-table__price[data-transition-delay="2nd"] {
  transition-delay: 0.1s;
}
.js .p-table--has-switch .p-table__price[data-transition-delay="3rd"] {
  transition-delay: 0.2s;
}
.js .p-table--has-switch .p-table__price--month {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.js .p-table--has-switch .p-table__price--year {
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
}
.js .p-table--yearly .p-table__price--month {
  pointer-events: none;
  opacity: 0;
  transform: translateY(-100%);
}
.js .p-table--yearly .p-table__price--year {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------- 

File#: _2_sticky-sharebar
Title: Sticky Sharebar
Descr: Sticky social sharing bar
Usage: codyhouse.co/license

-------------------------------- */
.sticky-sharebar {
  display: flex;
  align-items: center;
  position: fixed;
  height: 100%;
  top: 0;
  right: var(--space-md);
  pointer-events: none;
  z-index: var(--z-index-fixed-element, 10);
  transition: visibility 0s 0.3s, opacity 0.3s, transform 0.3s var(--ease-in-out);
  transform: translateX(10%);
  opacity: 0;
  visibility: hidden;
}

.sticky-sharebar--on-target {
  transition: visibility 0s, opacity 0.3s, transform 0.3s var(--ease-in-out);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.sticky-sharebar__list {
  pointer-events: auto;
  background-color: hsla(var(--color-bg-light-h), var(--color-bg-light-s), var(--color-bg-light-l), 0.95);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 50em;
  box-shadow: var(--inner-glow), var(--shadow-md);
  padding: 4px;
}

.sticky-sharebar__btn {
  --size: 2.2em;
  width: var(--size);
  height: var(--size);
  position: relative;
  display: flex;
  border-radius: 50%;
}
.sticky-sharebar__btn .icon {
  position: relative;
  color: var(--color-contrast-medium); /* icon color */
  display: block;
  margin: auto;
  z-index: 2;
  transition: color 0.2s;
}
.sticky-sharebar__btn::before { /* animated bg */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: inherit;
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
  transform: scale(0);
  transition: transform 0.2s var(--ease-out);
}
.sticky-sharebar__btn:hover .icon {
  color: var(--color-contrast-higher);
}
.sticky-sharebar__btn:hover::before {
  transform: scale(1);
}

/* -------------------------------- 

File#: _3_feature-v14
Title: Feature v14
Descr: Feature content with tech devices
Usage: codyhouse.co/license

-------------------------------- */
/* -------------------------------- 

File#: _3_hiding-nav
Title: Auto Hiding Navigation
Descr: A Navigation container that auto-hides when the user scrolls down, and is revealed when they scrolls back up
Usage: codyhouse.co/license

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

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }
  h1 {
    font-size: 3.051rem;
  }
  h2 {
    font-size: 2.44rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.5625rem;
  }
}
/* variables */
:root {
  /* colors */
  --hg3-color-primary-hsl: 250, 84%, 54%;
  --hg3-color-bg-hsl: 0, 0%, 100%;
  --hg3-color-contrast-high-hsl: 230, 7%, 23%;
  --hg3-color-contrast-higher-hsl: 230, 13%, 9%;
  --hg3-color-bg-dark-hsl: 240, 4%, 95%;
  --hg3-color-white-hsl: 0, 0%, 100%;
  --hg3-color-primary-darker-hsl: 250, 84%, 38%;
  --hg3-color-primary-light-hsl: 250, 84%, 60%;
  --hg3-color-bg-lighter-hsl: 0, 0%, 100%;
  --hg3-color-black-hsl: 230, 13%, 9%;
  --hg3-color-bg-light-hsl: 0, 0%, 100%;
  /* spacing */
  --hg3-space-2xs: 0.375rem;
  --hg3-space-sm: 0.75rem;
  --hg3-space-md: 1.25rem;
}

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --hg3-space-2xs: 0.5625rem;
    --hg3-space-sm: 1.125rem;
    --hg3-space-md: 2rem;
  }
}
/* buttons */
.hg3-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  white-space: nowrap;
  text-decoration: none;
  background: hsl(var(--hg3-color-bg-dark-hsl));
  color: hsl(var(--hg3-color-contrast-higher-hsl));
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.2s ease;
  will-change: transform;
  padding: var(--hg3-space-2xs) var(--hg3-space-sm);
  border-radius: 0.25em;
}

.hg3-btn:focus-visible {
  box-shadow: 0px 0px 0px 2px hsl(var(--hg3-color-bg-hsl)), 0px 0px 0px 4px hsla(var(--hg3-color-contrast-higher-hsl), 0.15);
  outline: none;
}

.hg3-btn:active {
  transform: translateY(2px);
}

.hg3-btn--primary {
  background: hsl(var(--hg3-color-primary-hsl));
  color: hsl(var(--hg3-color-white-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--hg3-color-white-hsl), 0.15), 0px 1px 3px hsla(var(--hg3-color-primary-darker-hsl), 0.25), 0px 2px 6px hsla(var(--hg3-color-primary-darker-hsl), 0.1), 0px 6px 10px -2px hsla(var(--hg3-color-primary-darker-hsl), 0.25);
}

.hg3-btn--primary:hover {
  background: hsl(var(--hg3-color-primary-light-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--hg3-color-white-hsl), 0.15), 0px 1px 2px hsla(var(--hg3-color-primary-darker-hsl), 0.25), 0px 1px 4px hsla(var(--hg3-color-primary-darker-hsl), 0.1), 0px 3px 6px -2px hsla(var(--hg3-color-primary-darker-hsl), 0.25);
}

.hg3-btn--primary:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--hg3-color-white-hsl), 0.15), 0px 1px 2px hsla(var(--hg3-color-primary-darker-hsl), 0.25), 0px 1px 4px hsla(var(--hg3-color-primary-darker-hsl), 0.1), 0px 3px 6px -2px hsla(var(--hg3-color-primary-darker-hsl), 0.25), 0px 0px 0px 2px hsl(var(--hg3-color-bg-hsl)), 0px 0px 0px 4px hsl(var(--hg3-color-primary-hsl));
}

.hg3-btn--subtle {
  background: hsl(var(--hg3-color-bg-lighter-hsl));
  color: hsl(var(--hg3-color-contrast-higher-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--hg3-color-white-hsl), 0.1), 0px 0px 0px 1px hsla(var(--hg3-color-black-hsl), 0.02), 0px 1px 3px -1px hsla(var(--hg3-color-black-hsl), 0.2), 0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
}

.hg3-btn--subtle:hover {
  background: hsl(var(--hg3-color-bg-light-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--hg3-color-white-hsl), 0.1), 0px 0px 0px 1px hsla(var(--hg3-color-black-hsl), 0.02), 0px 1px 3px -1px hsla(var(--hg3-color-black-hsl), 0.2), 0 0.1px 0.3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
}

.hg3-btn--subtle:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--hg3-color-white-hsl), 0.1), 0px 0px 0px 1px hsla(var(--hg3-color-black-hsl), 0.02), 0px 1px 3px -1px hsla(var(--hg3-color-black-hsl), 0.2), 0 0.1px 0.3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12), 0px 0px 0px 2px hsl(var(--hg3-color-bg-hsl)), 0px 0px 0px 4px hsl(var(--hg3-color-contrast-high-hsl));
}

/* icons */
.hg3-icon {
  height: var(--hg3-size, 1em);
  width: var(--hg3-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.hg3-icon--2xs {
  --hg3-size: 12px;
}

/* component */
.hide-nav {
  --hide-nav-transition-duration: 0.3s;
  position: sticky !important;
  top: 0;
  will-change: transform;
  transition: transform var(--hide-nav-transition-duration), background-color var(--hide-nav-transition-duration);
}

.hide-nav--fixed {
  background-color: transparent;
}

.hide-nav--has-bg {
  background-color: hsl(var(--hg3-color-bg-hsl));
}

/* utility classes */
.hg3-flex-basis-0 {
  flex-basis: 0;
}

.hg3-flex-grow {
  flex-grow: 1;
}

.hg3-max-width-lg {
  max-width: 80rem;
}

.hg3-container {
  width: calc(100% - 2 * var(--hg3-space-md));
  margin-left: auto;
  margin-right: auto;
}

.hg3-bg {
  --hg3-bg-o: 1;
  background-color: hsla(var(--hg3-color-bg-hsl), var(--hg3-bg-o, 1));
}

.hg3-justify-center {
  justify-content: center;
}

.hg3-margin-left-2xs {
  margin-left: var(--hg3-space-2xs);
}

.hg3-margin-y-sm {
  margin-top: var(--hg3-space-sm);
  margin-bottom: var(--hg3-space-sm);
}

.hg3-z-index-2 {
  z-index: 2;
}

.hg3-bg-dark {
  --hg3-bg-o: 1;
  background-color: hsla(var(--hg3-color-bg-dark-hsl), var(--hg3-bg-o, 1));
}

.hg3-bg-center {
  background-position: center;
}

.hg3-bg-no-repeat {
  background-repeat: no-repeat;
}

.hg3-bg-cover {
  background-size: cover;
}

.hg3-height-100vh {
  height: 100vh;
}

@media (min-width: 64rem) {
  .hg3-justify-end\@md {
    justify-content: flex-end;
  }
  .hg3-justify-center\@md {
    justify-content: center;
  }
  .hg3-justify-between\@md {
    justify-content: space-between;
  }
}