@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-xxxs {
  --gap-x: var(--space-xxxs);
  --gap-y: var(--space-xxxs);
}
.gap-xxxs > * {
  --sub-gap-x: var(--space-xxxs);
  --sub-gap-y: var(--space-xxxs);
}

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

.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);
}

.col-6 {
  --span: 6;
}

.col-12 {
  --span: 12;
}

 .col-6, .col-12 {
  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 (min-width: 32rem) {
  .gap-xs\@xs {
    --gap-x: var(--space-xs);
    --gap-y: var(--space-xs);
  }
  .gap-xs\@xs > * {
    --sub-gap-x: var(--space-xs);
    --sub-gap-y: var(--space-xs);
  }
  .col-2\@xs {
    --span: 2;
  }
  .col-3\@xs {
    --span: 3;
  }
  .col-6\@xs {
    --span: 6;
  }
  .col-9\@xs {
    --span: 9;
  }
  .col-10\@xs {
    --span: 10;
  }
   .col-2\@xs, .col-3\@xs, .col-6\@xs, .col-9\@xs, .col-10\@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) {
  .col-2\@sm {
    --span: 2;
  }
  .col-10\@sm {
    --span: 10;
  }
   .col-2\@sm, .col-10\@sm {
    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: 64rem) {
  .col-3\@md {
    --span: 3;
  }
  .col-9\@md {
    --span: 9;
  }
   .col-3\@md, .col-9\@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) {
  @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, h5, p,
a, code, img, s,
small, sub, var,
b, i, ol, ul, li,
fieldset, label, legend, aside, embed,
figure, footer, header,
menu, nav, summary,
time, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  box-sizing: border-box;
}

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

 aside, figure,
footer, header, menu, nav, main {
  display: block;
}

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

button, input, select {
  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;
}

input::-ms-clear {
  display: none;
}

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;
}

s {
  text-decoration: line-through;
}

.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, .text-component ol li {
  line-height: calc(var(--body-line-height) * var(--line-height-multiplier, 1));
}
.text-component ul, .text-component ol, .text-component p {
  margin-bottom: calc(var(--space-unit) * 0.9375 * var(--text-space-y-multiplier, 1));
}
.text-component ul, .text-component ol {
  list-style-position: inside;
}
.text-component ul ul, .text-component ul ol, .text-component ol ul, .text-component ol ol {
  padding-left: 1em;
  margin-bottom: 0;
}
.text-component ul {
  list-style-type: disc;
}
.text-component ol {
  list-style-type: decimal;
}
.text-component img {
  display: block;
  margin: 0 auto;
}
.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;
}

.icon--xs {
  --size: var(--icon-xs);
}

@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;
}

.is-visible {
  display: var(--display) !important;
}

.is-hidden {
  display: none !important;
}
.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

.flex {
  display: flex;
}

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

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

.flex-center {
  justify-content: center;
  align-items: center;
}

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

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

.justify-end {
  justify-content: flex-end;
}

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

[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;
}

.block {
  display: block;
}

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

.inline {
  display: inline;
}

.hide {
  display: none;
}

.margin-auto {
  margin: auto;
}

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

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

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

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

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

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

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

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

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

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

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

.margin-right-xxxs {
  margin-right: var(--space-xxxs);
}

.margin-right-xs {
  margin-right: var(--space-xs);
}

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

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

.padding-sm {
  padding: var(--space-sm);
}

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

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

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

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

.align-bottom {
  vertical-align: bottom;
}

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

.text-base {
  font-size: var(--text-unit, 1rem);
}

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

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

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

.letter-spacing-xl {
  letter-spacing: 0.2em;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

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

.text-space-y-xxs {
  --text-space-y-multiplier: 0.25 !important;
}

.text-space-y-md {
  --text-space-y-multiplier: 1.25 !important;
}

.line-height-xl {
  --heading-line-height: 1.3;
  --body-line-height: 1.72;
}
.line-height-xl:not(.text-component) {
  line-height: 1.72;
}

.line-height-body {
  line-height: var(--body-line-height);
}

.line-height-1 {
  line-height: 1 !important;
}

[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-higher {
  color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--color-o, 1));
}

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

.color-white {
  color: hsla(var(--color-white-h), var(--color-white-s), var(--color-white-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);
}

.width-60\% {
  width: 60%;
}

.width-100\% {
  width: 100%;
}

.height-100\% {
  height: 100%;
}

: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-xxxxxs {
  max-width: var(--max-width-xxxxxs);
}

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

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

@media (min-width: 48rem) {
  .max-width-adaptive-sm {
    max-width: 48rem;
  }
}
: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-fixed {
  position: fixed;
}

.top-0 {
  top: 0;
}

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

.bottom-0 {
  bottom: 0;
}

.right-0 {
  right: 0;
}

.right-xs {
  right: var(--space-xs);
}

.left-0 {
  left: 0;
}

.left-50\% {
  left: 50%;
}

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

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

.opacity-60\% {
  opacity: 0.6;
}

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

.border {
  border: 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));
}

.radius-lg {
  border-radius: var(--radius-lg);
}

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

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

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

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

.bg-opacity-20\% {
  --bg-o: 0.2;
}

.bg-opacity-40\% {
  --bg-o: 0.4;
}

.bg-opacity-80\% {
  --bg-o: 0.8;
}

[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)));
}

.-translate-x-50\% {
  --translate-x: -50%;
}

.transition {
  transition-property: var(--transition-property, all);
  transition-duration: var(--transition-duration, 0.2s);
  transition-delay: var(--transition-delay, 0s);
}

.visible {
  visibility: visible;
}

@media (min-width: 32rem) {
  .flex\@xs {
    display: flex;
  }
  .flex-row-reverse\@xs {
    flex-direction: row-reverse;
  }
  .items-center\@xs {
    align-items: center;
  }
  .margin-left-xs\@xs {
    margin-left: var(--space-xs);
  }
  .margin-x-sm\@xs {
    margin-left: var(--space-sm);
    margin-right: var(--space-sm);
  }
  .text-left\@xs {
    text-align: left;
  }
  .width-100\%\@xs {
    width: 100%;
  }
}
@media (min-width: 64rem) {
  .flex\@md {
    display: flex;
  }
  .items-start\@md {
    align-items: flex-start;
  }
  .block\@md {
    display: block;
  }
  .hide\@md {
    display: none !important;
  }
  .margin-top-0\@md {
    margin-top: 0;
  }
  .padding-bottom-lg\@md {
    padding-bottom: var(--space-lg);
  }
  .padding-x-lg\@md {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }
  .padding-x-xl\@md {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }
  .position-sticky\@md {
    position: sticky;
  }
  .top-0\@md {
    top: 0;
  }
}
@media not all and (min-width: 64rem) {
  .display\@md {
    display: none !important;
  }
}
@media (min-width: 80rem) {
  .max-width-xxxs\@lg {
    max-width: var(--max-width-xxxs);
  }
}
:root, [data-theme=default] {
  --color-primary-darker: hsl(271, 100%, 49%);
  --color-primary-darker-h: 271;
  --color-primary-darker-s: 100%;
  --color-primary-darker-l: 49%;
  --color-primary-dark: hsl(271, 100%, 55%);
  --color-primary-dark-h: 271;
  --color-primary-dark-s: 100%;
  --color-primary-dark-l: 55%;
  --color-primary: hsl(271, 100%, 61%);
  --color-primary-h: 271;
  --color-primary-s: 100%;
  --color-primary-l: 61%;
  --color-primary-light: hsl(271, 100%, 67%);
  --color-primary-light-h: 271;
  --color-primary-light-s: 100%;
  --color-primary-light-l: 67%;
  --color-primary-lighter: hsl(271, 100%, 73%);
  --color-primary-lighter-h: 271;
  --color-primary-lighter-s: 100%;
  --color-primary-lighter-l: 73%;
  --color-accent-darker: hsl(39, 100%, 47%);
  --color-accent-darker-h: 39;
  --color-accent-darker-s: 100%;
  --color-accent-darker-l: 47%;
  --color-accent-dark: hsl(39, 100%, 53%);
  --color-accent-dark-h: 39;
  --color-accent-dark-s: 100%;
  --color-accent-dark-l: 53%;
  --color-accent: hsl(39, 100%, 59%);
  --color-accent-h: 39;
  --color-accent-s: 100%;
  --color-accent-l: 59%;
  --color-accent-light: hsl(39, 100%, 65%);
  --color-accent-light-h: 39;
  --color-accent-light-s: 100%;
  --color-accent-light-l: 65%;
  --color-accent-lighter: hsl(39, 100%, 71%);
  --color-accent-lighter-h: 39;
  --color-accent-lighter-s: 100%;
  --color-accent-lighter-l: 71%;
  --color-secondary-darker: hsl(7, 100%, 45%);
  --color-secondary-darker-h: 7;
  --color-secondary-darker-s: 100%;
  --color-secondary-darker-l: 45%;
  --color-secondary-dark: hsl(7, 100%, 51%);
  --color-secondary-dark-h: 7;
  --color-secondary-dark-s: 100%;
  --color-secondary-dark-l: 51%;
  --color-secondary: hsl(7, 100%, 57%);
  --color-secondary-h: 7;
  --color-secondary-s: 100%;
  --color-secondary-l: 57%;
  --color-secondary-light: hsl(7, 100%, 63%);
  --color-secondary-light-h: 7;
  --color-secondary-light-s: 100%;
  --color-secondary-light-l: 63%;
  --color-secondary-lighter: hsl(7, 100%, 69%);
  --color-secondary-lighter-h: 7;
  --color-secondary-lighter-s: 100%;
  --color-secondary-lighter-l: 69%;
  --color-tertiary-darker: hsl(281, 100%, 82%);
  --color-tertiary-darker-h: 281;
  --color-tertiary-darker-s: 100%;
  --color-tertiary-darker-l: 82%;
  --color-tertiary-dark: hsl(281, 100%, 88%);
  --color-tertiary-dark-h: 281;
  --color-tertiary-dark-s: 100%;
  --color-tertiary-dark-l: 88%;
  --color-tertiary: hsl(281, 100%, 94%);
  --color-tertiary-h: 281;
  --color-tertiary-s: 100%;
  --color-tertiary-l: 94%;
  --color-tertiary-light: hsl(281, 100%, 97%);
  --color-tertiary-light-h: 281;
  --color-tertiary-light-s: 100%;
  --color-tertiary-light-l: 97%;
  --color-tertiary-lighter: hsl(281, 100%, 100%);
  --color-tertiary-lighter-h: 281;
  --color-tertiary-lighter-s: 100%;
  --color-tertiary-lighter-l: 100%;
  --color-quaternary-darker: hsl(200, 69%, 75%);
  --color-quaternary-darker-h: 200;
  --color-quaternary-darker-s: 69%;
  --color-quaternary-darker-l: 75%;
  --color-quaternary-dark: hsl(200, 69%, 81%);
  --color-quaternary-dark-h: 200;
  --color-quaternary-dark-s: 69%;
  --color-quaternary-dark-l: 81%;
  --color-quaternary: hsl(200, 69%, 87%);
  --color-quaternary-h: 200;
  --color-quaternary-s: 69%;
  --color-quaternary-l: 87%;
  --color-quaternary-light: hsl(200, 69%, 94%);
  --color-quaternary-light-h: 200;
  --color-quaternary-light-s: 69%;
  --color-quaternary-light-l: 94%;
  --color-quaternary-lighter: hsl(200, 69%, 100%);
  --color-quaternary-lighter-h: 200;
  --color-quaternary-lighter-s: 69%;
  --color-quaternary-lighter-l: 100%;
  --color-quinary-darker: hsl(51, 100%, 64%);
  --color-quinary-darker-h: 51;
  --color-quinary-darker-s: 100%;
  --color-quinary-darker-l: 64%;
  --color-quinary-dark: hsl(51, 100%, 70%);
  --color-quinary-dark-h: 51;
  --color-quinary-dark-s: 100%;
  --color-quinary-dark-l: 70%;
  --color-quinary: hsl(51, 100%, 76%);
  --color-quinary-h: 51;
  --color-quinary-s: 100%;
  --color-quinary-l: 76%;
  --color-quinary-light: hsl(51, 100%, 82%);
  --color-quinary-light-h: 51;
  --color-quinary-light-s: 100%;
  --color-quinary-light-l: 82%;
  --color-quinary-lighter: hsl(51, 100%, 88%);
  --color-quinary-lighter-h: 51;
  --color-quinary-lighter-s: 100%;
  --color-quinary-lighter-l: 88%;
  --color-black: hsl(0, 100%, 1%);
  --color-black-h: 0;
  --color-black-s: 100%;
  --color-black-l: 1%;
  --color-white: hsl(0, 0%, 100%);
  --color-white-h: 0;
  --color-white-s: 0%;
  --color-white-l: 100%;
  --color-warning-darker: hsl(35, 79%, 48%);
  --color-warning-darker-h: 35;
  --color-warning-darker-s: 79%;
  --color-warning-darker-l: 48%;
  --color-warning-dark: hsl(35, 79%, 56%);
  --color-warning-dark-h: 35;
  --color-warning-dark-s: 79%;
  --color-warning-dark-l: 56%;
  --color-warning: hsl(35, 79%, 66%);
  --color-warning-h: 35;
  --color-warning-s: 79%;
  --color-warning-l: 66%;
  --color-warning-light: hsl(35, 79%, 74%);
  --color-warning-light-h: 35;
  --color-warning-light-s: 79%;
  --color-warning-light-l: 74%;
  --color-warning-lighter: hsl(35, 79%, 82%);
  --color-warning-lighter-h: 35;
  --color-warning-lighter-s: 79%;
  --color-warning-lighter-l: 82%;
  --color-success-darker: hsl(170, 78%, 26%);
  --color-success-darker-h: 170;
  --color-success-darker-s: 78%;
  --color-success-darker-l: 26%;
  --color-success-dark: hsl(170, 78%, 31%);
  --color-success-dark-h: 170;
  --color-success-dark-s: 78%;
  --color-success-dark-l: 31%;
  --color-success: hsl(170, 78%, 36%);
  --color-success-h: 170;
  --color-success-s: 78%;
  --color-success-l: 36%;
  --color-success-light: hsl(170, 78%, 42%);
  --color-success-light-h: 170;
  --color-success-light-s: 78%;
  --color-success-light-l: 42%;
  --color-success-lighter: hsl(170, 78%, 47%);
  --color-success-lighter-h: 170;
  --color-success-lighter-s: 78%;
  --color-success-lighter-l: 47%;
  --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(282, 44%, 85%);
  --color-bg-darker-h: 282;
  --color-bg-darker-s: 44%;
  --color-bg-darker-l: 85%;
  --color-bg-dark: hsl(281, 55%, 89%);
  --color-bg-dark-h: 281;
  --color-bg-dark-s: 55%;
  --color-bg-dark-l: 89%;
  --color-bg: hsl(281, 100%, 94%);
  --color-bg-h: 281;
  --color-bg-s: 100%;
  --color-bg-l: 94%;
  --color-bg-light: hsl(281, 55%, 99%);
  --color-bg-light-h: 281;
  --color-bg-light-s: 55%;
  --color-bg-light-l: 99%;
  --color-bg-lighter: hsl(282, 44%, 100%);
  --color-bg-lighter-h: 282;
  --color-bg-lighter-s: 44%;
  --color-bg-lighter-l: 100%;
  --color-contrast-lower: hsl(282, 35%, 81%);
  --color-contrast-lower-h: 282;
  --color-contrast-lower-s: 35%;
  --color-contrast-lower-l: 81%;
  --color-contrast-low: hsl(283, 21%, 65%);
  --color-contrast-low-h: 283;
  --color-contrast-low-s: 21%;
  --color-contrast-low-l: 65%;
  --color-contrast-medium: hsl(284, 16%, 50%);
  --color-contrast-medium-h: 284;
  --color-contrast-medium-s: 16%;
  --color-contrast-medium-l: 50%;
  --color-contrast-high: hsl(285, 30%, 29%);
  --color-contrast-high-h: 285;
  --color-contrast-high-s: 30%;
  --color-contrast-high-l: 29%;
  --color-contrast-higher: hsl(285, 58%, 16%);
  --color-contrast-higher-h: 285;
  --color-contrast-higher-s: 58%;
  --color-contrast-higher-l: 16%;
}

[data-theme=dark] {
  --color-primary-darker: hsl(271, 100%, 49%);
  --color-primary-darker-h: 271;
  --color-primary-darker-s: 100%;
  --color-primary-darker-l: 49%;
  --color-primary-dark: hsl(271, 100%, 55%);
  --color-primary-dark-h: 271;
  --color-primary-dark-s: 100%;
  --color-primary-dark-l: 55%;
  --color-primary: hsl(271, 100%, 61%);
  --color-primary-h: 271;
  --color-primary-s: 100%;
  --color-primary-l: 61%;
  --color-primary-light: hsl(271, 100%, 67%);
  --color-primary-light-h: 271;
  --color-primary-light-s: 100%;
  --color-primary-light-l: 67%;
  --color-primary-lighter: hsl(271, 100%, 73%);
  --color-primary-lighter-h: 271;
  --color-primary-lighter-s: 100%;
  --color-primary-lighter-l: 73%;
  --color-accent-darker: hsl(39, 100%, 47%);
  --color-accent-darker-h: 39;
  --color-accent-darker-s: 100%;
  --color-accent-darker-l: 47%;
  --color-accent-dark: hsl(39, 100%, 53%);
  --color-accent-dark-h: 39;
  --color-accent-dark-s: 100%;
  --color-accent-dark-l: 53%;
  --color-accent: hsl(39, 100%, 59%);
  --color-accent-h: 39;
  --color-accent-s: 100%;
  --color-accent-l: 59%;
  --color-accent-light: hsl(39, 100%, 65%);
  --color-accent-light-h: 39;
  --color-accent-light-s: 100%;
  --color-accent-light-l: 65%;
  --color-accent-lighter: hsl(39, 100%, 71%);
  --color-accent-lighter-h: 39;
  --color-accent-lighter-s: 100%;
  --color-accent-lighter-l: 71%;
  --color-secondary-darker: hsl(7, 100%, 45%);
  --color-secondary-darker-h: 7;
  --color-secondary-darker-s: 100%;
  --color-secondary-darker-l: 45%;
  --color-secondary-dark: hsl(7, 100%, 51%);
  --color-secondary-dark-h: 7;
  --color-secondary-dark-s: 100%;
  --color-secondary-dark-l: 51%;
  --color-secondary: hsl(7, 100%, 57%);
  --color-secondary-h: 7;
  --color-secondary-s: 100%;
  --color-secondary-l: 57%;
  --color-secondary-light: hsl(7, 100%, 63%);
  --color-secondary-light-h: 7;
  --color-secondary-light-s: 100%;
  --color-secondary-light-l: 63%;
  --color-secondary-lighter: hsl(7, 100%, 69%);
  --color-secondary-lighter-h: 7;
  --color-secondary-lighter-s: 100%;
  --color-secondary-lighter-l: 69%;
  --color-tertiary-darker: hsl(281, 100%, 82%);
  --color-tertiary-darker-h: 281;
  --color-tertiary-darker-s: 100%;
  --color-tertiary-darker-l: 82%;
  --color-tertiary-dark: hsl(281, 100%, 88%);
  --color-tertiary-dark-h: 281;
  --color-tertiary-dark-s: 100%;
  --color-tertiary-dark-l: 88%;
  --color-tertiary: hsl(281, 100%, 94%);
  --color-tertiary-h: 281;
  --color-tertiary-s: 100%;
  --color-tertiary-l: 94%;
  --color-tertiary-light: hsl(281, 100%, 97%);
  --color-tertiary-light-h: 281;
  --color-tertiary-light-s: 100%;
  --color-tertiary-light-l: 97%;
  --color-tertiary-lighter: hsl(281, 100%, 100%);
  --color-tertiary-lighter-h: 281;
  --color-tertiary-lighter-s: 100%;
  --color-tertiary-lighter-l: 100%;
  --color-quaternary-darker: hsl(195, 100%, 34%);
  --color-quaternary-darker-h: 195;
  --color-quaternary-darker-s: 100%;
  --color-quaternary-darker-l: 34%;
  --color-quaternary-dark: hsl(195, 100%, 40%);
  --color-quaternary-dark-h: 195;
  --color-quaternary-dark-s: 100%;
  --color-quaternary-dark-l: 40%;
  --color-quaternary: hsl(195, 100%, 46%);
  --color-quaternary-h: 195;
  --color-quaternary-s: 100%;
  --color-quaternary-l: 46%;
  --color-quaternary-light: hsl(195, 100%, 52%);
  --color-quaternary-light-h: 195;
  --color-quaternary-light-s: 100%;
  --color-quaternary-light-l: 52%;
  --color-quaternary-lighter: hsl(195, 100%, 58%);
  --color-quaternary-lighter-h: 195;
  --color-quaternary-lighter-s: 100%;
  --color-quaternary-lighter-l: 58%;
  --color-quinary-darker: hsl(195, 100%, 34%);
  --color-quinary-darker-h: 195;
  --color-quinary-darker-s: 100%;
  --color-quinary-darker-l: 34%;
  --color-quinary-dark: hsl(195, 100%, 40%);
  --color-quinary-dark-h: 195;
  --color-quinary-dark-s: 100%;
  --color-quinary-dark-l: 40%;
  --color-quinary: hsl(195, 100%, 46%);
  --color-quinary-h: 195;
  --color-quinary-s: 100%;
  --color-quinary-l: 46%;
  --color-quinary-light: hsl(195, 100%, 52%);
  --color-quinary-light-h: 195;
  --color-quinary-light-s: 100%;
  --color-quinary-light-l: 52%;
  --color-quinary-lighter: hsl(195, 100%, 58%);
  --color-quinary-lighter-h: 195;
  --color-quinary-lighter-s: 100%;
  --color-quinary-lighter-l: 58%;
  --color-black: hsl(230, 13%, 9%);
  --color-black-h: 230;
  --color-black-s: 13%;
  --color-black-l: 9%;
  --color-white: hsl(0, 0%, 100%);
  --color-white-h: 0;
  --color-white-s: 0%;
  --color-white-l: 100%;
  --color-warning-darker: hsl(35, 79%, 48%);
  --color-warning-darker-h: 35;
  --color-warning-darker-s: 79%;
  --color-warning-darker-l: 48%;
  --color-warning-dark: hsl(35, 79%, 56%);
  --color-warning-dark-h: 35;
  --color-warning-dark-s: 79%;
  --color-warning-dark-l: 56%;
  --color-warning: hsl(35, 79%, 66%);
  --color-warning-h: 35;
  --color-warning-s: 79%;
  --color-warning-l: 66%;
  --color-warning-light: hsl(35, 79%, 74%);
  --color-warning-light-h: 35;
  --color-warning-light-s: 79%;
  --color-warning-light-l: 74%;
  --color-warning-lighter: hsl(35, 79%, 82%);
  --color-warning-lighter-h: 35;
  --color-warning-lighter-s: 79%;
  --color-warning-lighter-l: 82%;
  --color-success-darker: hsl(170, 78%, 26%);
  --color-success-darker-h: 170;
  --color-success-darker-s: 78%;
  --color-success-darker-l: 26%;
  --color-success-dark: hsl(170, 78%, 31%);
  --color-success-dark-h: 170;
  --color-success-dark-s: 78%;
  --color-success-dark-l: 31%;
  --color-success: hsl(170, 78%, 36%);
  --color-success-h: 170;
  --color-success-s: 78%;
  --color-success-l: 36%;
  --color-success-light: hsl(170, 78%, 42%);
  --color-success-light-h: 170;
  --color-success-light-s: 78%;
  --color-success-light-l: 42%;
  --color-success-lighter: hsl(170, 78%, 47%);
  --color-success-lighter-h: 170;
  --color-success-lighter-s: 78%;
  --color-success-lighter-l: 47%;
  --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(285, 36%, 9%);
  --color-bg-darker-h: 285;
  --color-bg-darker-s: 36%;
  --color-bg-darker-l: 9%;
  --color-bg-dark: hsl(285, 42%, 12%);
  --color-bg-dark-h: 285;
  --color-bg-dark-s: 42%;
  --color-bg-dark-l: 12%;
  --color-bg: hsl(285, 58%, 16%);
  --color-bg-h: 285;
  --color-bg-s: 58%;
  --color-bg-l: 16%;
  --color-bg-light: hsl(285, 42%, 20%);
  --color-bg-light-h: 285;
  --color-bg-light-s: 42%;
  --color-bg-light-l: 20%;
  --color-bg-lighter: hsl(285, 36%, 23%);
  --color-bg-lighter-h: 285;
  --color-bg-lighter-s: 36%;
  --color-bg-lighter-l: 23%;
  --color-contrast-lower: hsl(286, 30%, 27%);
  --color-contrast-lower-h: 286;
  --color-contrast-lower-s: 30%;
  --color-contrast-lower-l: 27%;
  --color-contrast-low: hsl(286, 16%, 43%);
  --color-contrast-low-h: 286;
  --color-contrast-low-s: 16%;
  --color-contrast-low-l: 43%;
  --color-contrast-medium: hsl(284, 13%, 58%);
  --color-contrast-medium-h: 284;
  --color-contrast-medium-s: 13%;
  --color-contrast-medium-l: 58%;
  --color-contrast-high: hsl(274, 16%, 83%);
  --color-contrast-high-h: 274;
  --color-contrast-high-s: 16%;
  --color-contrast-high-l: 83%;
  --color-contrast-higher: hsl(240, 100%, 99%);
  --color-contrast-higher-h: 240;
  --color-contrast-higher-s: 100%;
  --color-contrast-higher-l: 99%;
}

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

:root, * {
  --space-xxxxs: calc(0.1875 * var(--space-unit));
  --space-xxxs: calc(0.375 * var(--space-unit));
  --space-xxs: calc(0.5 * var(--space-unit));
  --space-xs: calc(0.75 * var(--space-unit));
  --space-sm: calc(1 * var(--space-unit));
  --space-md: calc(1.5 * var(--space-unit));
  --space-lg: calc(2.5 * var(--space-unit));
  --space-xl: calc(4 * var(--space-unit));
  --space-xxl: calc(6.5 * var(--space-unit));
  --space-xxxl: calc(10.5 * var(--space-unit));
  --space-xxxxl: calc(20 * var(--space-unit));
}

:root {
  --radius: 0.5em;
  --radius-xl: calc(var(--radius)*3);
}

:root {
  --font-primary: "Zen Kaku Gothic New", serif;
  --font-secondary: "Alata", sans-serif;
  --text-base-size: 1rem;
  --text-scale-ratio: 1.125;
  --body-line-height: 2;
  --heading-line-height: 1.8;
  --font-primary-capital-letter: 1;
  --font-secondary-capital-letter: 1;
  --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.125rem;
    --text-scale-ratio: 1.2;
  }
}
body {
  font-family: var(--font-primary);
}

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

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

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

.link {
  text-decoration: none;
  background-image: linear-gradient(to right, currentColor 50%, hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.15) 50%);
  background-size: 200% 1px;
  background-repeat: no-repeat;
  background-position: 100% 100%;
  transition: background-position 0.2s;
}
.link:hover {
  background-position: 0% 100%;
}

.text-component {
  --line-height-multiplier: 1;
  --text-space-y-multiplier: 1;
}
.text-component > * {
  --text-unit: 1em;
  --space-unit: 1em;
}
.text-component h1, .text-component h2, .text-component h3, .text-component h4 {
  margin-bottom: calc(var(--space-unit) * 0.625 * var(--text-space-y-multiplier, 1));
}
.text-component h1:not(:first-child), .text-component h2:not(:first-child), .text-component h3:not(:first-child), .text-component h4:not(:first-child) {
  margin-top: calc(var(--space-unit) * 1.8 * var(--text-space-y-multiplier, 1));
}
.text-component ul, .text-component ol, .text-component p {
  margin-bottom: calc(var(--space-unit) * 0.625 * var(--text-space-y-multiplier, 1));
}

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

.btn {
  background: var(--color-bg-dark);
  color: var(--color-contrast-higher);
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.2s ease;
  will-change: transform;
  filter: drop-shadow(0px 0px 2px hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.08)) drop-shadow(0px 0px 0.1px hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.1));
}
.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-alt {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}
.btn--primary-alt:hover {
  background: var(--color-primary-lighter);
}
.btn--primary-alt: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--accent {
  background: var(--color-accent-darker);
  color: var(--color-bg);
  border: 2px solid var(--color-accent-darker);
  box-shadow: 0;
}
.btn--accent:hover {
  background: var(--color-accent);
}
.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-darker-h), var(--color-accent-darker-s), var(--color-accent-darker-l), 0.2);
}

.btn--accent-alt {
  background: var(--color-accent-darker);
  color: var(--color-white);
  border: 2px solid var(--color-accent-darker);
  box-shadow: 0;
}
.btn--accent-alt:hover {
  background: var(--color-accent);
}
.btn--accent-alt: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-darker-h), var(--color-accent-darker-s), var(--color-accent-darker-l), 0.2);
}

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

: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-sm);
}

.component-padding-0 {
  --component-padding: 0px;
}

.component-padding-sm {
  --component-padding: var(--space-sm);
}

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

.max-width-120px {
  max-width: 120px;
}

.max-width-200px {
  max-width: 200px;
}
/* -------------------------------- 

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 {
  /* general */
  --accordion-border-width: 1px;
  /* icon */
  --accordion-icon-size: 20px;
  --accordion-icon-stroke-width: 2px;
}

.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 { /* button */
  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: 50% 50%;
}

.accordion__icon-arrow .icon__group > * {
  transform-origin: 10px 14px;
}

.accordion__icon-arrow-v2 .icon__group > * {
  transform-origin: 50% 50%;
  stroke-dasharray: 20;
  transform: translateY(4px);
}
.accordion__icon-arrow-v2 .icon__group > *:first-child {
  stroke-dashoffset: 10.15;
}
.accordion__icon-arrow-v2 .icon__group > *:last-child {
  stroke-dashoffset: 10.15;
}

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

.accordion__item--is-open > .accordion__header > .accordion__icon-arrow .icon__group { /* animated arrow icon */ }
.accordion__item--is-open > .accordion__header > .accordion__icon-arrow .icon__group > *:first-child {
  transform: translateY(-8px) rotate(-90deg);
}
.accordion__item--is-open > .accordion__header > .accordion__icon-arrow .icon__group > *:last-child {
  transform: translateY(-8px) rotate(90deg);
}
.accordion__item--is-open > .accordion__header > .accordion__icon-arrow-v2 .icon__group { /* animated arrow icon v2 */
  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 { /* animated plus icon */
  transform: rotate(0);
}
.accordion__item--is-open > .accordion__header > .accordion__icon-plus .icon__group > *:first-child {
  transform: rotate(0);
}

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

.accordion__item--is-open > .accordion__panel {
  display: block;
}

/* animations */
.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_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_animated-headline
Title: Animated Headline
Descr: A collection of word replacement effects
Usage: codyhouse.co/license

-------------------------------- */
.text-anim__wrapper {
  position: relative;
  display: inline-block;
}

.text-anim__word {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: inline-block;
  white-space: nowrap;
}

.text-anim__word--in {
  position: relative;
  z-index: 2;
}

.text-anim--rotate {
  --text-anim-duration: 0.85s;
  --text-anim-pause: 2.5s;
}
.text-anim--rotate .text-anim__wrapper {
  perspective: 300px;
}
.text-anim--rotate .text-anim__word {
  opacity: 0;
  backface-visibility: hidden;
  transform-origin: 50% 100%;
  transform: rotateX(-180deg);
  transition: opacity calc(var(--text-anim-duration) / 3) var(--ease-out), transform var(--text-anim-duration) var(--ease-out-back);
}
.text-anim--rotate .text-anim__word--in {
  opacity: 1;
  transform: rotateX(0deg);
}
.text-anim--rotate .text-anim__word--out {
  opacity: 0;
  transform: rotateX(180deg);
  transition: opacity calc(var(--text-anim-duration) / 6) var(--ease-out), transform var(--text-anim-duration) var(--ease-out-back);
}

.text-anim--loader {
  --text-anim-duration: 2.5s;
  --text-anim-pause: 0s;
}
.text-anim--loader .text-anim__word {
  color: transparent;
  transition: color 0.2s;
}
.text-anim--loader .text-anim__word::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  transform-origin: left center;
  transform: translateY(100%) scaleX(0);
  transition: transform var(--text-anim-duration) var(--ease-out);
}
.text-anim--loader .text-anim__word--in {
  color: currentColor;
}
.text-anim--loader .text-anim__word--in::after {
  transform: translateY(100%) scaleX(1);
}
.text-anim--loader .text-anim__word--out {
  color: transparent;
}
.text-anim--loader .text-anim__word--out::after {
  transition: none;
  transform: translateY(100%) scaleX(0);
}

.text-anim--slide {
  --text-anim-duration: 0.5s;
  --text-anim-pause: 2.5s;
}
.text-anim--slide .text-anim__wrapper {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  padding: 0.1em 0;
}
.text-anim--slide .text-anim__word {
  height: 100%;
  transform: translateY(-100%);
}
.text-anim--slide .text-anim__word--in,
.text-anim--slide .text-anim__word--out {
  animation-duration: var(--text-anim-duration);
  animation-timing-function: var(--ease-out-back);
}
.text-anim--slide .text-anim__word--in {
  animation-name: text-anim-slide-in;
  animation-fill-mode: forwards;
}
.text-anim--slide .text-anim__word--out {
  animation-name: text-anim-slide-out;
}

@keyframes text-anim-slide-in {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes text-anim-slide-out {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(100%);
  }
}
.text-anim--zoom {
  --text-anim-duration: 0.85s;
  --text-anim-pause: 2.5s;
}
.text-anim--zoom .text-anim__wrapper {
  perspective: 300px;
}
.text-anim--zoom .text-anim__word {
  opacity: 0;
  transform: translateZ(100px);
  transition: opacity var(--text-anim-duration), transform var(--text-anim-duration) var(--ease-out);
}
.text-anim--zoom .text-anim__word--in {
  opacity: 1;
  transform: translateZ(0);
}
.text-anim--zoom .text-anim__word--out {
  opacity: 0;
  transform: translateZ(-100px);
}

.text-anim--push {
  --text-anim-duration: 0.65s;
  --text-anim-pause: 2.5s;
}
.text-anim--push .text-anim__word {
  opacity: 0;
  transform: translateX(-100px);
  transition: none;
}
.text-anim--push .text-anim__word--in,
.text-anim--push .text-anim__word--out {
  transition: opacity var(--text-anim-duration), transform var(--text-anim-duration) var(--ease-out-back);
}
.text-anim--push .text-anim__word--in {
  opacity: 1;
  transform: translateX(0);
}
.text-anim--push .text-anim__word--out {
  opacity: 0;
  transform: translateX(100px);
}

.text-anim--clip {
  --text-anim-duration: 0.7s;
  --text-anim-pause: 2s;
  --text-anim-border-width: 2px;
}
.text-anim--clip .text-anim__wrapper {
  overflow: hidden;
  vertical-align: top;
}
.text-anim--clip .text-anim__wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 0.7em);
  height: 1.4em;
  width: var(--text-anim-border-width);
  background-color: var(--color-accent);
}
.text-anim--clip .text-anim__wrapper--pulse::after {
  animation: text-anim-pulse 0.8s infinite;
}
.text-anim--clip .text-anim__word {
  opacity: 0;
  padding-right: var(--text-anim-border-width);
}
.text-anim--clip .text-anim__word--in {
  opacity: 1;
}

@keyframes text-anim-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* -------------------------------- 

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-v2
Title: Background Decoration v2
Descr: A collection of background effects
Usage: codyhouse.co/license

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

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

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

File#: _1_badge
Title: Badge
Descr: A small label containing a text string
Usage: codyhouse.co/license

-------------------------------- */
.badge {
  /* reset - in case the class is applied to a <button> */
  border: 0;
  color: inherit;
  line-height: 1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-lg);
  font-weight: 700;
  background-color: var(--color-contrast-lower);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* 👇 you can ovveride this padding using the padding utility classes */
}
.badge:not([class^=padding-]):not([class*=" padding-"]) {
  padding: var(--space-xxxs) var(--space-xs);
}

.badge--outline {
  background-color: transparent;
  box-shadow: inset 0 0 0 1px var(--color-contrast-lower);
}

.badge--contrast-higher {
  background-color: var(--color-contrast-higher);
  color: var(--color-bg);
}

.badge--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.badge--primary-light {
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
  color: var(--color-contrast-higher);
}

.badge--accent {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.badge--accent-light {
  background-color: hsla(var(--color-accent-h), var(--color-accent-s), var(--color-accent-l), 0.2);
  color: var(--color-contrast-higher);
}

.badge--error {
  background-color: var(--color-error);
  color: var(--color-white);
}

.badge--error-light {
  background-color: hsla(var(--color-error-h), var(--color-error-s), var(--color-error-l), 0.2);
  color: var(--color-contrast-higher);
}

.badge--success {
  background-color: var(--color-success);
  color: var(--color-white);
}

.badge--success-light {
  background-color: hsla(var(--color-success-h), var(--color-success-s), var(--color-success-l), 0.2);
  color: var(--color-contrast-higher);
}

.badge--warning {
  background-color: var(--color-warning);
  color: var(--color-white);
}

.badge--warning-light {
  background-color: hsla(var(--color-warning-h), var(--color-warning-s), var(--color-warning-l), 0.2);
  color: var(--color-contrast-higher);
}

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

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-ring, 0 0 0 1px hsla(0, 0%, 0%, 0.05)), 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-ring, 0 0 0 1px hsla(0, 0%, 0%, 0.05)), 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;
  clip-path: inset(0% round var(--radius-sm));
  transition: 0.3s var(--ease-out);
  opacity: 0.15;
}

.banner__figure {
  height: 0;
  width: 100%;
  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:not(.banner--invert) .banner__grid {
    flex-direction: row-reverse;
  }
  .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--invert .banner__text {
    text-align: right;
  }
  .banner:hover .banner__figure {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
/* -------------------------------- 

File#: _1_bg-gradients
Title: Background Gradients
Descr: Customizable background gradients
Usage: codyhouse.co/license

-------------------------------- */
.bg-gradient-1, .bg-gradient-2, .bg-gradient-3, .bg-gradient-4, .bg-gradient-5 {
  background-repeat: no-repeat;
  background-position: center;
}
@media (prefers-reduced-motion: no-preference) {
  .bg-gradient-1[data-bg-animate=on], .bg-gradient-2[data-bg-animate=on], .bg-gradient-3[data-bg-animate=on], .bg-gradient-4[data-bg-animate=on], .bg-gradient-5[data-bg-animate=on] {
    will-change: background-position;
  }
}

.bg-gradient-1 {
  background-color: #0E131F;
  background-image: radial-gradient(ellipse at 90% 30%, #0E131F 20%, rgba(14, 19, 31, 0) 50%), radial-gradient(ellipse at 70% 0%, #FF0035 0%, rgba(255, 0, 53, 0) 50%), radial-gradient(ellipse at 20% 10%, #38405F 10%, rgba(56, 64, 95, 0) 70%), radial-gradient(ellipse at 50% 100%, #FF0035 0%, rgba(255, 0, 53, 0) 50%);
  background-size: 200% 100%;
}
@media (prefers-reduced-motion: no-preference) {
  .bg-gradient-1[data-bg-animate=on] {
    background-size: 400% 200%;
    background-position: 0% 0%;
    animation: bg-gradient-anim-1 30s linear infinite;
  }
}

@keyframes bg-gradient-anim-1 {
  0%, 100% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 100% 100%;
  }
  50% {
    background-position: 100% 0%;
  }
  75% {
    background-position: 0% 100%;
  }
}
.bg-gradient-2 {
  background-color: #FFFCF2;
  background-image: radial-gradient(ellipse at 10% 20%, #E980FC 0%, rgba(233, 128, 252, 0) 40%), radial-gradient(ellipse at 50% 0%, #FFFCF2 25%, rgba(255, 252, 242, 0) 75%), radial-gradient(ellipse at 100% 100%, #BCB6FF 35%, rgba(188, 182, 255, 0) 70%), radial-gradient(ellipse at 50% 100%, #FFFCF2 20%, rgba(255, 252, 242, 0) 70%);
  background-size: 120% 200%;
}
@media (prefers-reduced-motion: no-preference) {
  .bg-gradient-2[data-bg-animate=on] {
    background-size: 240% 400%;
    background-position: 0% 0%;
    animation: bg-gradient-anim-2 30s linear infinite;
  }
}

@keyframes bg-gradient-anim-2 {
  0%, 100% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 100% 100%;
  }
  50% {
    background-position: 100% 0%;
  }
  75% {
    background-position: 0% 100%;
  }
}
.bg-gradient-3 {
  background-color: #30C5FF;
  background-image: radial-gradient(ellipse at 25% 90%, #5C946E 10%, rgba(92, 148, 110, 0) 70%), radial-gradient(ellipse at 55% 90%, #FFFCF2 0%, rgba(255, 252, 242, 0) 70%), radial-gradient(ellipse at 100% 100%, #EB5E28 5%, rgba(235, 94, 40, 0) 60%), radial-gradient(ellipse at 0% 0%, #5C946E 15%, rgba(92, 148, 110, 0) 50%), radial-gradient(ellipse at 100% 0%, #FFFCF2 30%, rgba(255, 252, 242, 0) 70%);
  background-size: 100% 140%;
}
@media (prefers-reduced-motion: no-preference) {
  .bg-gradient-3[data-bg-animate=on] {
    background-size: 200% 280%;
    background-position: 50% 0%;
    animation: bg-gradient-anim-3 30s linear infinite;
  }
}

@keyframes bg-gradient-anim-3 {
  0%, 100% {
    background-position: 0% 0%;
  }
  33% {
    background-position: 100% 0%;
  }
  66% {
    background-position: 100% 100%;
  }
}
.bg-gradient-4 {
  background-color: #1f7a72;
  background-image: radial-gradient(ellipse at 70% 0%, hsla(205, 62%, 32%, 0.6) 0%, rgba(31.008, 90.032, 132.192, 0) 30%), radial-gradient(circle at 90% 0%, hsla(143, 83%, 60%, 0.5) 0%, rgba(68.34, 237.66, 133.246, 0) 30%), radial-gradient(ellipse at 0% 0%, hsla(90, 51%, 48%, 0.4) 0%, rgba(122.4, 184.824, 59.976, 0) 40%), radial-gradient(circle at 30% 100%, hsla(205, 62%, 32%, 0.6) 0%, rgba(31.008, 90.032, 132.192, 0) 40%), radial-gradient(ellipse at 10% 100%, hsla(143, 83%, 60%, 0.5) 0%, rgba(68.34, 237.66, 133.246, 0) 40%), radial-gradient(ellipse at 100% 100%, hsla(90, 51%, 48%, 0.4) 0%, rgba(122.4, 184.824, 59.976, 0) 40%);
}
@media (prefers-reduced-motion: no-preference) {
  .bg-gradient-4[data-bg-animate=on] {
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: bg-gradient-anim-4 10s linear infinite;
  }
}

@keyframes bg-gradient-anim-4 {
  0%, 100% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
}
.bg-gradient-5 {
  background-color: #e6e5f7;
  background-image: radial-gradient(ellipse at 50% 0%, rgba(225, 91, 151, 0.35) 0%, rgba(225, 91, 151, 0) 30%), radial-gradient(ellipse at 100% 0%, rgba(132, 19, 134, 0.32) 0%, rgba(132, 19, 134, 0) 60%);
  background-size: 200% 100%;
}
@media (prefers-reduced-motion: no-preference) {
  .bg-gradient-5[data-bg-animate=on] {
    background-size: 400% 200%;
    background-position: 0% 0%;
    animation: bg-gradient-anim-5 20s linear infinite;
  }
}

@keyframes bg-gradient-anim-5 {
  0%, 100% {
    background-position: 0% 0%;
  }
  40%, 60% {
    background-position: 100% 0%;
  }
}
/* -------------------------------- 

File#: _1_btn-states
Title: Buttons states
Descr: Multi-state button elements
Usage: codyhouse.co/license

-------------------------------- */
.btn-states {
  position: relative;
}

.btn-states--state-b:not(.btn-states--preserve-width) .btn-states__content-a {
  display: none;
}

.btn-states:not(.btn-states--state-b) .btn-states__content-b {
  display: none;
}

/* preserve button width when switching from state A to state B */
.btn-states--preserve-width .btn-states__content-b {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.btn-states--preserve-width.btn-states--state-b .btn-states__content-a {
  visibility: hidden;
}

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

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-v2
Title: Card v2
Descr: Container of information used as teasers for further content, often displayed in a gallery of related items
Usage: codyhouse.co/license

-------------------------------- */
.card-v2 {
  position: relative;
  overflow: hidden;
}
.card-v2 img {
  display: block;
  width: 100%;
}

.card-v2__caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  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), 1));
  background-blend-mode: multiply;
  color: var(--color-white);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.card-v2--blur-fx .card-v2__caption {
  background: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.8);
  backdrop-filter: blur(10px);
}

a.card-v2 {
  display: block;
  text-decoration: none;
  transition: box-shadow 0.2s;
}
a.card-v2:hover {
  box-shadow: var(--shadow-md);
}

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

File#: _1_card
Title: Card
Descr: Container of information used as teaser for further content exploration
Usage: codyhouse.co/license

-------------------------------- */
.card {
  background-color: var(--color-bg-light);
  box-shadow: var(--inner-glow), var(--shadow-ring, 0 0 0 1px hsla(0, 0%, 0%, 0.05)), var(--shadow-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.card__img-wrapper img {
  display: block;
  width: 100%;
}

.card--link {
  text-decoration: none;
  display: block;
  color: inherit;
  transition: 0.2s;
}
.card--link:hover {
  background-color: var(--color-bg-lighter);
  box-shadow: var(--inner-glow), var(--shadow-ring, 0 0 0 1px hsla(0, 0%, 0%, 0.05)), var(--shadow-md);
}
.card--link:hover .card__img-wrapper::after {
  opacity: 1;
}
.card--link .card__img-wrapper {
  position: relative;
}
.card--link .card__img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.6);
  opacity: 0;
  transition: opacity 0.2s;
}

.card__link-icon-wrapper {
  position: absolute;
  z-index: 1;
  width: 64px;
  height: 64px;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  background-color: hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  opacity: 0;
  transition: 0.2s;
}
.card__link-icon-wrapper .icon {
  display: block;
  width: 32px;
  height: 32px;
  color: var(--color-black);
}

.card--link:hover .card__link-icon-wrapper {
  opacity: 1;
  transform: scale(1);
}

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

File#: _1_custom-cursor
Title: Custom Cursor
Descr: A JavaScript plugin to create animated custom cursors
Usage: codyhouse.co/license

-------------------------------- */
.c-cursor {
  position: fixed;
  z-index: 9999; /* use highest z-index value */
  top: 0;
  left: 0;
  pointer-events: none;
}

.c-cursor__img {
  display: block;
  position: relative;
  margin: -50% 0 0 -50%;
  filter: drop-shadow(0 1px 1px hsla(0, 0%, 0%, 0.1));
  opacity: 0;
  --translate: 0;
  --rotate: 0;
  --skew: 0;
  --scale: 0;
  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)));
  transition: opacity 0.2s, transform 0.2s var(--ease-out);
}
.c-cursor--in .c-cursor__img { /* enter animation */
  --scale: 1;
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  [data-custom-cursor],
  [data-custom-cursor] * {
    cursor: none;
  }
}
/* -------------------------------- 

File#: _1_custom-select
Title: Custom Select
Descr: Custom Select Control
Usage: codyhouse.co/license

-------------------------------- */
:root {
  /* --default variation only 👇 */
  --select-icon-size: 16px;
  --select-icon-right-margin: var(--space-sm); /* icon margin right */
  --select-text-icon-gap: var(--space-xxxs); /* gap between text and icon */
}

.select {
  position: relative;
}

.select__input {
  width: 100%;
  height: 100%;
  padding-right: calc(var(--select-icon-size) + var(--select-icon-right-margin) + var(--select-text-icon-gap)) !important;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.select__icon {
  width: var(--select-icon-size);
  height: var(--select-icon-size);
  pointer-events: none;
  position: absolute;
  right: var(--select-icon-right-margin);
  top: 50%;
  transform: translateY(-50%);
}

/* --custom-dropdown */
:root {
  --select-dropdown-gap: 4px; /* distance between select control and custom dropdown */
}

.select__button { /* created in JS - custom select control */
  width: 100%;
}

.select__button[aria-expanded=true] {
  /* custom select control if dropdown = visible */
}

.select__dropdown { /* created in JS - custom select dropdown */
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 200px;
  max-height: 1px; /* updated in JS */
  background-color: var(--color-bg-light);
  box-shadow: var(--inner-glow), var(--shadow-md);
  padding: var(--space-xxxs) 0;
  border-radius: var(--radius-md);
  z-index: var(--z-index-popover, 5);
  margin-top: var(--select-dropdown-gap);
  margin-bottom: var(--select-dropdown-gap);
  overflow: auto;
  /* use rem units */
  --space-unit: 1rem;
  --text-unit: 1rem;
  font-size: var(--text-unit);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.2s, opacity 0.2s;
}

.select__dropdown--right { /* change dropdown position based on the available space */
  right: 0;
  left: auto;
}

.select__dropdown--up {
  bottom: 100%;
  top: auto;
}

.select__button[aria-expanded=true] + .select__dropdown {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.2s;
}

/* custom <optgroup> list - include all <option>s if no <optgroup> available  */
.select__list {
  list-style: none !important;
}

.select__list:not(:first-of-type) {
  padding-top: var(--space-xxs);
}

.select__list:not(:last-of-type) {
  border-bottom: 1px solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
  padding-bottom: var(--space-xxs);
}

.select__item { /* single item inside .select__list */
  display: flex;
  align-items: center;
  padding: var(--space-xxs) var(--space-sm);
  color: var(--color-contrast-high);
  width: 100%;
  text-align: left;
  /* truncate text */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select__item--optgroup { /* custom <optgroup> label */
  font-size: var(--text-sm);
  color: var(--color-contrast-medium);
}

.select__item--option { /* custom <option> label */
  cursor: pointer;
  transition: 0.2s;
}
.select__item--option:hover {
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.075);
}
.select__item--option:focus {
  outline: none;
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
}
.select__item--option[aria-selected=true] { /* selected option */
  background-color: var(--color-primary);
  color: var(--color-white);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.select__item--option[aria-selected=true]::after { /* check icon next to the selected language */
  content: "";
  display: block;
  height: 1em;
  width: 1em;
  margin-left: auto;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline stroke-width='2' stroke='%23ffffff' fill='none' stroke-linecap='round' stroke-linejoin='round' points='1,9 5,13 15,3 '/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline stroke-width='2' stroke='%23ffffff' fill='none' stroke-linecap='round' stroke-linejoin='round' points='1,9 5,13 15,3 '/%3E%3C/svg%3E");
}
.select__item--option[aria-selected=true]:focus {
  box-shadow: inset 0 0 0 2px var(--color-primary-dark);
}
.select__item--option[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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_expandable-side-navigation
Title: Expandable Side Navigation
Descr: A side navigation with expandable sub-lists and popular links
Usage: codyhouse.co/license

-------------------------------- */
.exsidenav__pop-nav {
  margin-bottom: var(--space-md);
}

.exsidenav__pop-link,
.exsidenav__link,
.exsidenav__control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--color-contrast-higher);
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  padding: var(--space-xxs);
  cursor: pointer;
  transition: 0.2s;
}
.exsidenav__pop-link:hover,
.exsidenav__link:hover,
.exsidenav__control:hover {
  color: var(--color-primary-lighter);
}

/* popular links */
.exsidenav__pop-link .icon {
  --size: 16px;
  margin-right: var(--space-xxs);
  opacity: 0.5;
  transition: opacity 0.2s;
}
.exsidenav__pop-link:hover .icon {
  opacity: 1;
}
.exsidenav__pop-link[aria-current=page] {
  color: var(--color-primary);
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
  border-radius: var(--radius-md);
}
.exsidenav__pop-link[aria-current=page] .icon {
  opacity: 1;
}

/* main links */
.exsidenav__link {
  position: relative;
}
.exsidenav__list .exsidenav__list .exsidenav__link::before { /* left mark */
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  height: 100%;
  width: 1px;
}
.exsidenav__link[aria-current=page] {
  color: var(--color-primary);
}
.exsidenav__link[aria-current=page]::before {
  background-color: var(--color-primary);
}

/* list label */
.exsidenav__label-wrapper {
  margin: var(--space-md) 0 var(--space-xxs) var(--space-xxs);
}
.exsidenav__list .exsidenav__list .exsidenav__label-wrapper {
  margin: var(--space-xs) 0 var(--space-xxxs) var(--space-xxs);
}

.exsidenav__label {
  color: var(--color-contrast-low);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* button controlling sub navigations */
.exsidenav__control {
  font-weight: 600;
}
.exsidenav__control .icon {
  --size: 16px;
  display: block;
  margin-left: auto;
}
.exsidenav__control .icon__group {
  will-change: transform;
  transform-origin: 8px 8px;
  transition: transform 0.3s var(--ease-out);
}
.exsidenav__control .icon__group > * {
  transform-origin: 8px 8px;
  stroke-dasharray: 17;
  transform: translateY(3px);
  transition: transform 0.3s, stroke-dashoffset 0.3s;
  transition-timing-function: var(--ease-out);
}
.exsidenav__control .icon__group > *:first-child {
  stroke-dashoffset: 10;
}
.exsidenav__control .icon__group > *:last-child {
  stroke-dashoffset: 10;
}
.exsidenav__control[aria-expanded=true] + .exsidenav__list {
  display: block; /* show the subnavigation */
}
.exsidenav__control[aria-expanded=true] + .exsidenav__list > * {
  animation: exsidenav-entry-animation 0.4s var(--ease-out); /* animate list items */
}
.exsidenav__control[aria-expanded=true] .icon__group {
  transform: rotate(-90deg);
}
.exsidenav__control[aria-expanded=true] .icon__group > *:first-child, .exsidenav__control[aria-expanded=true] .icon__group *:last-child {
  stroke-dashoffset: 0;
  transform: translateY(0px);
}

.exsidenav__list .exsidenav__list {
  display: none;
  border-left: 1px solid var(--color-contrast-lower);
  margin: var(--space-xxxxs) 0 0 var(--space-xxs);
}

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

File#: _1_floating-action-button
Title: Floating Action Button
Descr: A floating button representing the primary page action
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --fab-transition-duration: .2s; /* transition duration */
  --fab-gap-y: var(--space-md); /* top/bottom gap between button and viewport - horizontal gap depends on the max-width utility class */
  --fab-btn-size: 48px; /* button size */
  --fab-btn-radius: calc(var(--fab-btn-size)/2); /* button border-radius - use px units */
  --fab-btn-icon-size: 24px; /* icon size */
  --fab-popover-radius: 8px; /* popover border-radius - use px units */
  --fab-popover-width: 250px; /* popover width - from the @xs breakpoint ↓ */
  --fab-popover-gap: 6px; /* gap between popover and button */
}
@media (min-width: 64rem) {
  :root {
    --fab-btn-size: 54px;
  }
}

.fab {
  position: fixed;
  z-index: var(--z-index-overlay, 15);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: background var(--fab-transition-duration), opacity var(--fab-transition-duration), visibility 0s var(--fab-transition-duration);
}

.fab--in {
  opacity: 1;
  visibility: visible;
  transition: background var(--fab-transition-duration), opacity var(--fab-transition-duration);
}

.fab--bottom-right .fab__btn, .fab--bottom-right .fab__popover,
.fab--bottom-left .fab__btn,
.fab--bottom-left .fab__popover {
  bottom: var(--fab-gap-y);
  bottom: calc(var(--fab-gap-y) + env(safe-area-inset-bottom)); /* fixes issue on iOS */
}

.fab--bottom-right .fab__popover-inner {
  clip-path: inset(calc(var(--fab-popover-height) - var(--fab-btn-size)) 0 0 calc(100% - var(--fab-btn-size)) round var(--fab-btn-radius));
}
@media (min-width: 32rem) {
  .fab--bottom-right .fab__popover-inner {
    clip-path: inset(calc(var(--fab-popover-height) - var(--fab-btn-size)) 0 0 calc(var(--fab-popover-width) - var(--fab-btn-size)) round var(--fab-btn-radius));
  }
}

.fab--bottom-left .fab__popover-inner {
  clip-path: inset(calc(var(--fab-popover-height) - var(--fab-btn-size)) calc(100% - var(--fab-btn-size)) 0 0 round var(--fab-btn-radius));
}
@media (min-width: 32rem) {
  .fab--bottom-left .fab__popover-inner {
    clip-path: inset(calc(var(--fab-popover-height) - var(--fab-btn-size)) calc(var(--fab-popover-width) - var(--fab-btn-size)) 0 0 round var(--fab-btn-radius));
  }
}

.fab--bottom-right .fab__btn, .fab--bottom-right .fab__popover,
.fab--top-right .fab__btn,
.fab--top-right .fab__popover {
  right: 0;
}

.fab--bottom-left .fab__btn, .fab--bottom-left .fab__popover,
.fab--top-left .fab__btn,
.fab--top-left .fab__popover {
  left: 0;
}

.fab--top-right .fab__btn, .fab--top-right .fab__popover,
.fab--top-left .fab__btn,
.fab--top-left .fab__popover {
  top: var(--fab-gap-y);
}

.fab--top-right .fab__popover-inner {
  clip-path: inset(0 0 calc(var(--fab-popover-height) - var(--fab-btn-size)) calc(100% - var(--fab-btn-size)) round var(--fab-btn-radius));
}
@media (min-width: 32rem) {
  .fab--top-right .fab__popover-inner {
    clip-path: inset(0 0 calc(var(--fab-popover-height) - var(--fab-btn-size)) calc(var(--fab-popover-width) - var(--fab-btn-size)) round var(--fab-btn-radius));
  }
}

.fab--top-left .fab__popover-inner {
  clip-path: inset(0 calc(100% - var(--fab-btn-size)) calc(var(--fab-popover-height) - var(--fab-btn-size)) 0 round var(--fab-btn-radius));
}
@media (min-width: 32rem) {
  .fab--top-left .fab__popover-inner {
    clip-path: inset(0 calc(var(--fab-popover-width) - var(--fab-btn-size)) calc(var(--fab-popover-height) - var(--fab-btn-size)) 0 round var(--fab-btn-radius));
  }
}

/* button */
.fab__btn {
  display: block;
  position: relative;
  pointer-events: auto;
  width: var(--fab-btn-size);
  height: var(--fab-btn-size);
  background-color: var(--color-primary);
  box-shadow: var(--inner-glow-top), var(--shadow-sm);
  border-radius: var(--fab-btn-radius);
  overflow: hidden;
  touch-action: manipulation;
  position: absolute;
  z-index: 2;
  transform: translateY(20px);
  transition: box-shadow var(--fab-transition-duration), background var(--fab-transition-duration), transform var(--fab-transition-duration);
}
.fab__btn:hover {
  background-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
}
.fab__btn:active {
  transform: translateY(2px);
}
.fab--in .fab__btn {
  transform: translateY(0);
}

.fab__icon-wrapper {
  display: flex;
  height: inherit;
  width: inherit;
  justify-content: center;
  align-items: center;
  transition: transform var(--fab-transition-duration) var(--ease-out);
}
.fab__icon-wrapper:last-child {
  position: absolute;
  top: 0;
  transform: translateY(100%);
}
.fab__icon-wrapper:last-child .fab__icon {
  transform: rotate(-45deg);
  opacity: 0;
}
.fab--active .fab__icon-wrapper {
  transform: translateY(-100%);
}
.fab--active .fab__icon-wrapper .fab__icon {
  opacity: 0;
}
.fab--active .fab__icon-wrapper:last-child {
  transform: translateY(0);
}
.fab--active .fab__icon-wrapper:last-child .fab__icon {
  transform: rotate(0);
  opacity: 1;
}

.fab__icon {
  display: block;
  height: var(--fab-btn-icon-size);
  width: var(--fab-btn-icon-size);
  margin: auto;
  color: var(--color-white); /* icon color */
  transition: transform var(--fab-transition-duration) var(--ease-in-out), opacity var(--fab-transition-duration);
}

/* popover */
.fab__popover {
  position: absolute;
  z-index: 1;
  filter: drop-shadow(0 2px 5px hsla(0, 0%, 0%, 0.2));
  width: 100%; /* full-width on smaller devices */
}
@media (min-width: 32rem) {
  .fab__popover {
    width: var(--fab-popover-width);
  }
}

.fab__popover-inner {
  max-height: calc(100vh - var(--fab-gap-y) * 2 - var(--fab-btn-size));
  overflow: auto;
  background-color: var(--color-bg);
  visibility: hidden;
  transform: translateY(0);
  transition: clip-path var(--fab-transition-duration) var(--ease-out), transform var(--fab-transition-duration) var(--ease-out), visibility 0s var(--fab-transition-duration);
}

.fab__content {
  opacity: 0;
  transition: opacity var(--fab-transition-duration), transform var(--fab-transition-duration);
}

/* --active */
.fab--active {
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.9);
  pointer-events: auto;
}
.fab--active .fab__popover-inner {
  visibility: visible;
  transform: translateY(calc(-1 * var(--fab-btn-size) - var(--fab-popover-gap)));
  clip-path: inset(0 0 0 0 round var(--fab-popover-radius));
  transition: clip-path var(--fab-transition-duration) var(--ease-out), transform var(--fab-transition-duration) var(--ease-out), visibility 0s;
}
.fab--active.fab--top-left .fab__popover-inner, .fab--active.fab--top-right .fab__popover-inner {
  transform: translateY(calc(var(--fab-btn-size) + var(--fab-popover-gap)));
}
.fab--active .fab__content {
  opacity: 1;
}

/* menu example */
.fab--has-demo-menu {
  --fab-popover-width: 300px;
}

.fab__menu {
  list-style: none;
  padding: var(--space-xxxs);
}

.fab__menu-btn {
  position: relative;
  display: flex;
  align-items: center;
  padding: var(--space-xxs);
  border-radius: var(--radius-md);
  cursor: pointer;
  line-height: 1;
  color: inherit;
  text-decoration: none;
}
.fab__menu-btn::before, .fab__menu-btn::after {
  content: "";
  position: absolute;
  z-index: 1;
}
.fab__menu-btn::before {
  inset: 0;
  border-radius: inherit;
  background-color: var(--color-bg-dark);
  opacity: 0;
  transform: scale(0.75);
  transition: 0.1s;
}
.fab__menu-btn::after {
  width: calc(100% - var(--space-xxs) * 2);
  height: 1px;
  left: var(--space-xxs);
  top: 100%;
  background: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.075);
}
.fab__menu-btn:hover::before {
  opacity: 1;
  transform: scale(1);
}
.fab__menu-btn:hover::after {
  display: none;
}
.fab__menu-item:nth-last-child(2) .fab__menu-btn::after {
  display: none;
}

.fab__menu-img {
  --size: 40px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
}

.fab__menu-title {
  font-weight: 600;
  color: var(--color-contrast-higher);
  font-size: var(--text-sm);
}

.fab__menu-time, .fab__menu-preview, .fab__menu-unread-counter {
  font-size: var(--text-xs);
}

.fab__menu-time, .fab__menu-preview {
  color: var(--color-contrast-medium);
}

.fab__menu-time {
  text-align: right;
}

.fab__menu-unread-counter {
  width: 18px;
  height: 18px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: var(--inner-glow), 0 1px 3px hsla(var(--color-accent-darker-h), var(--color-accent-darker-s), var(--color-accent-darker-l), 0.35);
}

.fab__menu-cta {
  display: flex;
  align-items: center;
  gap: var(--space-xxs);
  justify-content: center;
  font-size: var(--text-sm);
  background: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  padding: var(--space-sm) 0;
  border-radius: var(--radius-md);
  line-height: 1;
}
.fab__menu-cta:hover {
  background: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.15);
}

.fab__menu-item:last-child {
  margin-top: var(--space-xxxs);
}

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

File#: _1_full-width-blockquote
Title: Full-width Blockquote
Descr: Full-width long quotation
Usage: codyhouse.co/license

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

.fw-blockquote__text em {
  color: var(--color-primary);
  font-style: italic;
  background: linear-gradient(hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.075), hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2));
}

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

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.5em;
  --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) * -0.64) !important;
  }
}

.list--ul, .text-component .list--ul {
  --list-bullet-size: 7px;
  --list-bullet-margin-right: 1em;
}
.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: 20px;
  --list-bullet-margin-right: 0.75em;
  --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: 1em;
  --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-v4
Title: Main Footer v4
Descr: Footer navigation template
Usage: codyhouse.co/license

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

.footer-v4__nav {
  margin-bottom: var(--space-lg);
}

.footer-v4__nav-item {
  margin-bottom: var(--space-sm);
}
.footer-v4__nav-item a {
  color: var(--color-contrast-high);
  font-size: 1.25em;
}
.footer-v4__nav-item a:hover {
  color: var(--color-primary);
}

.footer-v4__logo {
  margin-bottom: var(--space-sm);
}
.footer-v4__logo a, .footer-v4__logo svg, .footer-v4__logo img {
  width: 104px;
  height: 30px;
  display: block;
}

.footer-v4__print {
  text-align: center;
  color: var(--color-contrast-higher);
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
}

.footer-v4__socials {
  display: flex;
  align-items: center;
}
.footer-v4__socials a {
  text-decoration: none;
  display: inline-block;
  margin-right: var(--space-xs);
  color: var(--color-contrast-medium);
}
.footer-v4__socials a:hover {
  color: var(--color-contrast-high);
}
.footer-v4__socials a svg {
  display: block;
  width: 1.25em;
  height: 1.25em;
  color: inherit;
}

@media (min-width: 64rem) {
  .footer-v4 {
    text-align: center;
  }
  .footer-v4__nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-v4__nav-item {
    display: inline-block;
    margin: var(--space-xxxs) var(--space-xs);
  }
  .footer-v4__nav-item a {
    font-size: 0.75em;
  }
  .footer-v4__nav-item:first-child {
    padding-left: 0;
  }
  .footer-v4__nav-item:last-child {
    padding-right: 0;
  }
  .footer-v4__logo {
    display: inline-block;
  }
  .footer-v4__print {
    font-size: var(--text-xs);
  }
  .footer-v4__socials {
    justify-content: center;
  }
  .footer-v4__socials a {
    margin: 0 var(--space-xxxs);
  }
  .footer-v4__socials a svg {
    width: 1em;
    height: 1em;
  }
}
/* -------------------------------- 

File#: _1_main-header
Title: Main Header
Descr: Accessible website navigation
Usage: codyhouse.co/license

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

.header {
  height: var(--header-height);
  width: 100%;
  background-color: var(--color-bg);
  z-index: var(--z-index-header, 3);
}

.header__container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.header__logo a, .header__logo svg, .header__logo img {
  display: block;
}

.header__nav {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100vh;
  background-color: var(--color-bg);
  box-shadow: var(--shadow-md);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  display: none;
}
.header__nav::before {
  content: "";
  display: block;
  position: sticky;
  top: 0;
  height: var(--header-height);
  background: inherit;
  border-bottom: 1px solid var(--color-contrast-lower);
}

.header__nav--is-visible {
  display: block;
}

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

.header__label {
  font-size: var(--text-sm);
  color: var(--color-contrast-medium);
  margin-bottom: var(--space-sm);
}

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

.header__link {
  font-size: var(--text-lg);
  color: var(--color-contrast-higher);
  text-decoration: none;
}
.header__link:hover, .header__link[aria-current] {
  color: var(--color-primary);
}

.header__nav-btn {
  font-size: var(--text-lg);
  width: 100%;
}

.header__item--divider {
  height: 1px;
  width: 100%;
  background-color: var(--color-contrast-lower);
}

.header__trigger {
  position: relative;
  z-index: 2;
}

.header__trigger-icon {
  position: relative;
  display: block;
  height: 2px;
  width: 1em;
  background-color: currentColor;
  margin-right: var(--space-xxs);
  transition: 0.2s;
}
.header__trigger-icon::before, .header__trigger-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: inherit;
  height: inherit;
  background-color: currentColor;
  transition: 0.2s;
}
.header__trigger-icon::before {
  transform: translateY(-5px);
}
.header__trigger-icon::after {
  transform: translateY(5px);
}

.header__trigger[aria-expanded=true] .header__trigger-icon {
  background-color: transparent;
}
.header__trigger[aria-expanded=true] .header__trigger-icon::before {
  transform: rotate(45deg);
}
.header__trigger[aria-expanded=true] .header__trigger-icon::after {
  transform: rotate(-45deg);
}

@media (min-width: 64rem) {
  .header__nav {
    position: static;
    background-color: transparent;
    width: auto;
    max-height: none;
    box-shadow: none;
    overflow: visible;
    overscroll-behavior: auto;
    display: block;
  }
  .header__nav::before {
    display: none;
  }
  .header__nav-inner {
    padding: 0;
  }
  .header__label {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
  }
  .header__list {
    display: flex;
    align-items: center;
  }
  .header__item {
    display: inline-block;
    margin-bottom: 0;
    margin-left: var(--space-md);
  }
  .header__link, .header__nav-btn {
    font-size: 1.125rem;
  }
  .header__item--divider {
    height: 1em;
    width: 1px;
  }
  .header__trigger {
    display: none;
  }
}
/* -------------------------------- 

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;
}

/* close buttons */
.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 { /* close button - outside the modal__content */
  --size: 48px;
  width: var(--size);
  height: var(--size);
  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); /* icon color */
  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 { /* close button - inside the modal__content */
  --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; /* icon color */
}
.modal__close-btn--inner:hover {
  background-color: var(--color-bg-lighter);
  box-shadow: var(--inner-glow), var(--shadow-md);
}

/* animations */
:root {
  --modal-transition-duration: 0.2s; /* fallback (i.e., unless specified differently in the variations 👇) */
}

@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: 0.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); /* reset all transformations */
  }
  .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); /* reset all transformations */
  }
  /* scale */
  .modal--animate-scale .modal__content {
    transform: scale(0.95);
  }
  /* translate */
  .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);
  }
  /* slide */
  .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%);
  }
}
/* load content - optional */
.modal--is-loading .modal__content {
  visibility: hidden;
}
.modal--is-loading .modal__loader {
  display: flex;
}

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

/* --image */
.modal-img-btn {
  position: relative;
  cursor: pointer;
}
.modal-img-btn::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0);
  transition: background 0.2s;
}
.modal-img-btn:hover::after {
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.7);
}
.modal-img-btn:hover .modal-img-btn__icon-wrapper {
  opacity: 1;
}

.modal-img-btn__icon-wrapper {
  position: absolute;
  z-index: 2;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.7);
  opacity: 0;
  transition: opacity 0.2s;
}
.modal-img-btn__icon-wrapper .icon {
  color: var(--color-white);
}

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

File#: _1_noise-background
Title: Noise Background
Descr: Noise background effect
Usage: codyhouse.co/license

-------------------------------- */
.noise-bg {
  pointer-events: none;
  opacity: 0.35;
  filter: grayscale(100%);
}
.noise-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: url(#noise-bg-fx);
}

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

File#: _1_overscroll-section
Title: Overscroll Section
Descr: Section overlapping visible content on scroll
Usage: codyhouse.co/license

-------------------------------- */
.overscroll-section {
  --overscroll-section-opacity: 0;
}

.overscroll-section__sticky-content {
  position: sticky;
  z-index: 1;
}

.overscroll-section__scroll-content {
  position: relative;
  z-index: 2;
  transform: translateZ(0);
}
.overscroll-section__scroll-content::before, .overscroll-section__scroll-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
  pointer-events: none;
}
.overscroll-section__scroll-content::before {
  height: 100vh;
  background: var(--color-black);
  opacity: var(--overscroll-section-opacity, 0);
  z-index: 1;
}
.overscroll-section__scroll-content::after {
  height: 80px;
  background: linear-gradient(to top, hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.025) 0%, hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0) 5%), linear-gradient(to top, hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.025) 0%, hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0) 10%), linear-gradient(to top, hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.025) 0%, hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0) 20%), linear-gradient(to top, hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.025) 0%, hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0) 50%), linear-gradient(to top, hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.025) 0%, hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0) 100%);
}

.overscroll-section--disabled .overscroll-section__sticky-content {
  position: static;
}
.overscroll-section--disabled .overscroll-section__scroll-content::before,
.overscroll-section--disabled .overscroll-section__scroll-content::after {
  display: none;
}

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

File#: _1_password
Title: Password Visibility Control
Descr: Password input field with option to toggle password visibility
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --password-btn-width: 3.5em;
  --password-icon-size: 1.5em;
}

.password {
  position: relative;
}

.password__input {
  height: 100%;
}

.password__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;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: var(--password-btn-width);
  background-color: rgba(255, 255, 255, 0);
  justify-content: center;
  align-items: center;
  display: none;
}
.password__btn:focus {
  color: var(--color-primary);
}

.password__btn-label:last-child {
  display: none;
}
.password__btn-label .icon {
  width: var(--password-icon-size);
  height: var(--password-icon-size);
}

.password--text-is-visible .password__btn-label:first-child {
  display: none;
}
.password--text-is-visible .password__btn-label:last-child {
  display: inline-block;
}

.password__input {
  padding-right: calc(var(--space-sm) + var(--password-btn-width));
}

.password__input::-ms-reveal {
  display: none;
}

.password__btn {
  display: flex;
}

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

File#: _1_rating
Title: Rating
Descr: A rating plugin that allows users to vote for your products
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --rating-icon-size: 1.75em;
}

.rating__control ul {
  display: inline-block;
  display: inline-flex;
  vertical-align: top;
}
.rating__control li {
  position: relative;
  height: var(--rating-icon-size);
  width: var(--rating-icon-size);
  float: left;
  cursor: pointer;
}
.rating__control li:focus {
  outline: none;
}
.rating__control li:focus::before {
  transform: scale(1);
  opacity: 0.2;
}
.rating__control li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: 0.2s;
}
.rating__control li.rating__item--zero {
  display: none;
}

.rating__control--is-hidden {
  display: none;
}

.rating__icon,
.rating__control li::before,
.rating[data-animation=on] .rating__control ul:hover .rating__icon {
  color: var(--color-primary);
}

.rating__icon--inactive,
.rating[data-animation=on] .rating__control li:hover ~ li .rating__icon,
.rating__item--checked ~ li .rating__icon {
  color: var(--color-contrast-lower);
}

.rating__icon {
  overflow: hidden;
}
.rating__icon svg {
  display: block;
  height: var(--rating-icon-size);
  width: var(--rating-icon-size);
  max-width: var(--rating-icon-size);
  pointer-events: none;
}

.rating--read-only .rating__control li {
  cursor: default;
}

.rating__icon--inactive {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.rating__item--half .rating__icon:not(.rating__icon--inactive) {
  position: relative;
  z-index: 2;
  width: 50%;
}

.rating[data-animation=on] .rating__control li:active .rating__icon {
  transform: scale(0.8);
}
.rating[data-animation=on] .rating__icon {
  transition: 0.2s;
}

.rating__select {
  display: none;
}

.rating__link {
  display: inline-block;
  transition: opacity 0.2s;
}
.rating__link:hover {
  opacity: 0.85;
}

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

File#: _1_responsive-sidebar
Title: Responsive Sidebar
Descr: Responsive sidebar container
Usage: codyhouse.co/license

-------------------------------- */
/* mobile version only (--default) 👇 */
.sidebar:not(.sidebar--static) {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-fixed-element, 10);
  width: 100%;
  height: 100%;
  visibility: hidden;
  transition: visibility 0s 0.3s;
}
.sidebar:not(.sidebar--static)::after { /* overlay layer */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0);
  transition: background-color 0.3s;
  z-index: 1;
}
.sidebar:not(.sidebar--static) .sidebar__panel { /* content */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background-color: var(--color-bg);
  transform: translateX(-100%);
  transition: box-shadow 0.3s, transform 0.3s;
}
.sidebar:not(.sidebar--static).sidebar--right-on-mobile .sidebar__panel {
  left: auto;
  right: 0;
  transform: translateX(100%);
}
.sidebar:not(.sidebar--static).sidebar--is-visible {
  visibility: visible;
  transition: none;
}
.sidebar:not(.sidebar--static).sidebar--is-visible::after {
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.85);
}
.sidebar:not(.sidebar--static).sidebar--is-visible .sidebar__panel {
  transform: translateX(0);
  box-shadow: var(--shadow-md);
}

/* end mobile version */
.sidebar__panel {
  min-height: 100svh;
}

.sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
}

.sidebar__close-btn {
  --size: 32px;
  width: var(--size);
  height: var(--size);
  display: flex;
  border-radius: 50%;
  background-color: var(--color-bg-light);
  box-shadow: var(--inner-glow), var(--shadow-sm);
  transition: 0.2s;
  flex-shrink: 0;
}
.sidebar__close-btn .icon {
  display: block;
  margin: auto;
}
.sidebar__close-btn:hover {
  background-color: var(--color-bg-lighter);
  box-shadow: var(--inner-glow), var(--shadow-md);
}

/* desktop version only (--static) 👇 */
.sidebar--static {
  flex-shrink: 0;
  flex-grow: 1;
}
.sidebar--static .sidebar__header {
  display: none;
}

.sidebar--sticky-on-desktop {
  position: sticky;
  top: var(--space-sm);
  max-height: calc(100vh - var(--space-sm));
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* end desktop version */
.sidebar, .sidebar-loaded\:show {
  opacity: 0; /* hide sidebar - or other elements using the .sidebar-loaded:show class - while it is initialized in JS */
}

.sidebar--loaded {
  opacity: 1;
}

/* detect when the sidebar needs to switch from the mobile layout to a static one - used in JS */
[class*=sidebar--static]::before {
  display: none;
}

.sidebar--static::before {
  content: "static";
}

.sidebar--static\@xs::before {
  content: "mobile";
}
@media (min-width: 32rem) {
  .sidebar--static\@xs::before {
    content: "static";
  }
}

.sidebar--static\@sm::before {
  content: "mobile";
}
@media (min-width: 48rem) {
  .sidebar--static\@sm::before {
    content: "static";
  }
}

.sidebar--static\@md::before {
  content: "mobile";
}
@media (min-width: 64rem) {
  .sidebar--static\@md::before {
    content: "static";
  }
}

.sidebar--static\@lg::before {
  content: "mobile";
}
@media (min-width: 80rem) {
  .sidebar--static\@lg::before {
    content: "static";
  }
}

.sidebar--static\@xl::before {
  content: "mobile";
}
@media (min-width: 90rem) {
  .sidebar--static\@xl::before {
    content: "static";
  }
}

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

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: 1.0s;
  --reveal-fx-timing-function: var(--ease-out);
}

.reveal-fx {
  opacity: 0;
  transition: opacity, transform var(--reveal-fx-timing-function);
  transition-duration: var(--reveal-fx-duration);
}
.reveal-fx::before {
  display: none;
  content: "reveal-fx";
}

.reveal-fx--translate, .reveal-fx--translate-up {
  transform: translateY(25px);
}
@media (min-width: 32rem) {
  .reveal-fx--translate, .reveal-fx--translate-up {
    transform: translateY(50px);
  }
}

.reveal-fx--translate-right {
  transform: translateX(-25px);
}
@media (min-width: 32rem) {
  .reveal-fx--translate-right {
    transform: translateX(-50px);
  }
}

.reveal-fx--translate-left {
  transform: translateX(25px);
}
@media (min-width: 32rem) {
  .reveal-fx--translate-left {
    transform: translateX(50px);
  }
}

.reveal-fx--translate-down {
  transform: translateY(-25px);
}
@media (min-width: 32rem) {
  .reveal-fx--translate-down {
    transform: translateY(-50px);
  }
}

.reveal-fx--scale {
  transform: scale(1.2);
}

.reveal-fx--scale-up {
  transform: translateY(50px) scale(1.2);
}

.reveal-fx--scale-right {
  transform: translateX(-50px) scale(1.2);
}

.reveal-fx--scale-left {
  transform: translateX(50px) scale(1.2);
}

.reveal-fx--scale-down {
  transform: translateY(-50px) scale(1.2);
}

.reveal-fx--rotate, .reveal-fx--rotate-down, .reveal-fx--rotate-right, .reveal-fx--rotate-left, .reveal-fx--rotate-up {
  perspective: 1000px;
}
.reveal-fx--rotate > *, .reveal-fx--rotate-down > *, .reveal-fx--rotate-right > *, .reveal-fx--rotate-left > *, .reveal-fx--rotate-up > * {
  transition: transform var(--reveal-fx-duration) var(--reveal-fx-timing-function);
  backface-visibility: hidden;
}

.reveal-fx--rotate > *, .reveal-fx--rotate-down > * {
  transform-origin: top;
  transform: rotateX(-45deg);
}

.reveal-fx--rotate-right > * {
  transform-origin: left center;
  transform: rotateY(45deg);
}

.reveal-fx--rotate-left > * {
  transform-origin: right center;
  transform: rotateY(-45deg);
}

.reveal-fx--rotate-up > * {
  transform-origin: bottom;
  transform: rotateX(45deg);
}

.reveal-fx--text-mask {
  overflow: hidden;
}
.reveal-fx--text-mask > * {
  display: inline-block;
  transform: translateY(100%);
  transition: transform var(--reveal-fx-duration) var(--reveal-fx-timing-function);
  will-change: transform;
}

[class*=reveal-fx--translate], [class*=reveal-fx--scale] {
  will-change: opacity, transform;
}

.reveal-fx--text-mask > *, [class*=reveal-fx--rotate] > * {
  will-change: transform;
}

.reveal-fx--clip-x > *,
.reveal-fx--clip-y > * {
  transition: opacity, clip-path var(--ease-out);
  transition-duration: var(--reveal-fx-duration);
}

.reveal-fx--clip-x > * {
  clip-path: polygon(10% 0%, 90% 0%, 90% 100%, 10% 100%);
}

.reveal-fx--clip-y > * {
  clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
}

.reveal-fx--is-visible {
  opacity: 1;
}
.reveal-fx--is-visible[class*=reveal-fx--translate], .reveal-fx--is-visible[class*=reveal-fx--scale], .reveal-fx--is-visible[class*=reveal-fx--rotate] > *, .reveal-fx--is-visible.reveal-fx--text-mask > * {
  transform: translate(0);
}
.reveal-fx--is-visible.reveal-fx--clip-x > *, .reveal-fx--is-visible.reveal-fx--clip-y > * {
  opacity: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

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

File#: _1_scribble-text-decoration
Title: Scribble Text Decoration
Descr: A collection of animated scribble text decorations
Usage: codyhouse.co/license

-------------------------------- */
.scribble-text-fx {
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.scribble-text-fx__label {
  position: relative;
  z-index: 2;
}

.scribble-text-fx__decoration {
  position: absolute;
  z-index: 1;
  display: block;
  pointer-events: none;
  max-width: none;
}

.scribble-text-fx--v1 .scribble-text-fx__decoration {
  top: -6px;
  left: -12px;
  width: calc(100% + 24px);
  height: calc(100% + 12px);
}
.scribble-text-fx--v1 .scribble-text-fx__decoration > * {
  stroke-width: 2px;
  stroke-dashoffset: 367;
  stroke-dasharray: 367;
  transition: stroke-dashoffset 0.5s var(--ease-in-out);
}
.scribble-text-fx--v1:hover .scribble-text-fx__decoration > * {
  stroke-dashoffset: 0;
}

.scribble-text-fx--v2 .scribble-text-fx__decoration {
  bottom: -5px;
  left: -10px;
  width: calc(100% + 20px);
  height: 8px;
}
.scribble-text-fx--v2 .scribble-text-fx__decoration > * {
  stroke-width: 2px;
  stroke-dashoffset: 155;
  stroke-dasharray: 155;
  transition: stroke-dashoffset 0.3s var(--ease-in-out);
}
.scribble-text-fx--v2:hover .scribble-text-fx__decoration > * {
  stroke-dashoffset: 0;
}

.scribble-text-fx--v3 .scribble-text-fx__decoration {
  top: 50%;
  transform: translateY(-50%);
  left: -15px;
  width: calc(100% + 30px);
  height: 8px;
}
.scribble-text-fx--v3 .scribble-text-fx__decoration > * {
  stroke-width: 2px;
  transition: stroke-dashoffset 0.2s var(--ease-in-out);
}
.scribble-text-fx--v3 .scribble-text-fx__decoration > *:first-child {
  stroke-dashoffset: 149;
  stroke-dasharray: 149;
}
.scribble-text-fx--v3 .scribble-text-fx__decoration > *:last-child {
  stroke-dashoffset: 147;
  stroke-dasharray: 147;
  transition-delay: 0.2s;
}
.scribble-text-fx--v3:hover .scribble-text-fx__decoration > * {
  stroke-dashoffset: 0;
}

.scribble-text-fx--v4 .scribble-text-fx__decoration {
  top: 50%;
  transform: translateY(-50%);
  right: -46px;
  width: 40px;
  height: auto;
}
.scribble-text-fx--v4 .scribble-text-fx__decoration > * {
  stroke-width: 2px;
  transition: stroke-dashoffset 0.2s;
}
.scribble-text-fx--v4 .scribble-text-fx__decoration > *:first-child {
  stroke-dashoffset: 33;
  stroke-dasharray: 33;
  transition-delay: 0.2s;
}
.scribble-text-fx--v4 .scribble-text-fx__decoration > *:last-child {
  stroke-dashoffset: 28;
  stroke-dasharray: 28;
  transition-delay: 0s;
}
.scribble-text-fx--v4:hover .scribble-text-fx__decoration > * {
  stroke-dashoffset: 0;
}
.scribble-text-fx--v4:hover .scribble-text-fx__decoration > *:first-child {
  transition-delay: 0s;
}
.scribble-text-fx--v4:hover .scribble-text-fx__decoration > *:last-child {
  transition-delay: 0.2s;
}

.scribble-text-fx--v5 .scribble-text-fx__decoration {
  top: 0;
  right: 0;
  width: 22px;
  height: auto;
  transform: translate(50%, -50%);
}
.scribble-text-fx--v5 .scribble-text-fx__decoration > * {
  stroke-width: 2px;
  stroke-dashoffset: 16;
  stroke-dasharray: 16;
  transition: stroke-dashoffset 0.3s;
}
.scribble-text-fx--v5:hover .scribble-text-fx__decoration > * {
  stroke-dashoffset: 0;
}

.scribble-text-fx--v6 .scribble-text-fx__decoration {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: auto;
}
.scribble-text-fx--v6 .scribble-text-fx__decoration > * {
  stroke-width: 2px;
  transition: stroke-dashoffset 0.2s var(--ease-in-out);
}
.scribble-text-fx--v6 .scribble-text-fx__decoration > *:first-child {
  stroke-dashoffset: 79;
  stroke-dasharray: 79;
  transition-delay: 0.2s;
}
.scribble-text-fx--v6 .scribble-text-fx__decoration > *:last-child {
  stroke-dashoffset: 73;
  stroke-dasharray: 73;
  transition-delay: 0s;
}
.scribble-text-fx--v6:hover .scribble-text-fx__decoration > * {
  stroke-dashoffset: 0;
}
.scribble-text-fx--v6:hover .scribble-text-fx__decoration > *:first-child {
  transition-delay: 0s;
}
.scribble-text-fx--v6:hover .scribble-text-fx__decoration > *:last-child {
  transition-delay: 0.2s;
}

.scribble-text-fx--v7 .scribble-text-fx__decoration {
  bottom: -5px;
  left: -10px;
  width: calc(100% + 20px);
  height: 10px;
}
.scribble-text-fx--v7 .scribble-text-fx__decoration > * {
  stroke-width: 2px;
  stroke-dashoffset: 160;
  stroke-dasharray: 160;
  transition: stroke-dashoffset 0.4s var(--ease-in-out);
}
.scribble-text-fx--v7:hover .scribble-text-fx__decoration > * {
  stroke-dashoffset: 0;
}

.scribble-text-fx--v8 .scribble-text-fx__decoration {
  top: 50%;
  transform: translateY(-50%);
  right: -34px;
  width: 29px;
  height: auto;
}
.scribble-text-fx--v8 .scribble-text-fx__decoration > * {
  stroke-width: 2px;
  transition: stroke-dashoffset 0.2s;
}
.scribble-text-fx--v8 .scribble-text-fx__decoration > *:first-child {
  stroke-dashoffset: 79;
  stroke-dasharray: 79;
  transition-delay: 0.2s;
}
.scribble-text-fx--v8 .scribble-text-fx__decoration > *:last-child {
  stroke-dashoffset: 18;
  stroke-dasharray: 18;
  transition-delay: 0s;
}
.scribble-text-fx--v8:hover .scribble-text-fx__decoration > * {
  stroke-dashoffset: 0;
}
.scribble-text-fx--v8:hover .scribble-text-fx__decoration > *:first-child {
  transition-delay: 0s;
}
.scribble-text-fx--v8:hover .scribble-text-fx__decoration > *:last-child {
  transition-delay: 0.2s;
}

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

File#: _1_scrolling-animations
Title: Scrolling Animations
Descr: Scrolling animations plugin
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --scroll-fx-translate-x: 0;
  --scroll-fx-translate-y: 0;
  --scroll-fx-translate-z: 0;
  --scroll-fx-rotate-x: 0;
  --scroll-fx-rotate-y: 0;
  --scroll-fx-rotate-z: 0;
  --scroll-fx-skew-x: 0;
  --scroll-fx-skew-y: 0;
  --scroll-fx-scale-x: 1;
  --scroll-fx-scale-y: 1;
  --scroll-fx-opacity: 1;
  --scroll-fx-stroke-dashoffset: 0;
}

.scroll-fx {
  transform: translate3d(var(--scroll-fx-translate-x), var(--scroll-fx-translate-y), var(--scroll-fx-translate-z)) rotateX(var(--scroll-fx-rotate-x)) rotateY(var(--scroll-fx-rotate-y)) rotateZ(var(--scroll-fx-rotate-z)) skewX(var(--scroll-fx-skew-x)) skewY(var(--scroll-fx-skew-y)) scaleX(var(--scroll-fx-scale-x)) scaleY(var(--scroll-fx-scale-y)) !important;
  opacity: var(--scroll-fx-opacity) !important;
  stroke-dashoffset: var(--scroll-fx-stroke-dashoffset) !important;
}

.scroll-fx.scroll-fx--theme-transition,
.scroll-fx.scroll-fx--theme-transition > * {
  transition: 0.3s;
}

@media (min-width: 32rem) {
  .scroll-fx\@xs {
    transform: translate3d(var(--scroll-fx-translate-x), var(--scroll-fx-translate-y), var(--scroll-fx-translate-z)) rotateX(var(--scroll-fx-rotate-x)) rotateY(var(--scroll-fx-rotate-y)) rotateZ(var(--scroll-fx-rotate-z)) skewX(var(--scroll-fx-skew-x)) skewY(var(--scroll-fx-skew-y)) scaleX(var(--scroll-fx-scale-x)) scaleY(var(--scroll-fx-scale-y)) !important;
    opacity: var(--scroll-fx-opacity) !important;
    stroke-dashoffset: var(--scroll-fx-stroke-dashoffset) !important;
  }
  .scroll-fx\@xs.scroll-fx--theme-transition,
  .scroll-fx\@xs.scroll-fx--theme-transition > * {
    transition: 0.3s;
  }
}
@media (min-width: 48rem) {
  .scroll-fx\@sm {
    transform: translate3d(var(--scroll-fx-translate-x), var(--scroll-fx-translate-y), var(--scroll-fx-translate-z)) rotateX(var(--scroll-fx-rotate-x)) rotateY(var(--scroll-fx-rotate-y)) rotateZ(var(--scroll-fx-rotate-z)) skewX(var(--scroll-fx-skew-x)) skewY(var(--scroll-fx-skew-y)) scaleX(var(--scroll-fx-scale-x)) scaleY(var(--scroll-fx-scale-y)) !important;
    opacity: var(--scroll-fx-opacity) !important;
    stroke-dashoffset: var(--scroll-fx-stroke-dashoffset) !important;
  }
  .scroll-fx\@sm.scroll-fx--theme-transition,
  .scroll-fx\@sm.scroll-fx--theme-transition > * {
    transition: 0.3s;
  }
}
@media (min-width: 64rem) {
  .scroll-fx\@md {
    transform: translate3d(var(--scroll-fx-translate-x), var(--scroll-fx-translate-y), var(--scroll-fx-translate-z)) rotateX(var(--scroll-fx-rotate-x)) rotateY(var(--scroll-fx-rotate-y)) rotateZ(var(--scroll-fx-rotate-z)) skewX(var(--scroll-fx-skew-x)) skewY(var(--scroll-fx-skew-y)) scaleX(var(--scroll-fx-scale-x)) scaleY(var(--scroll-fx-scale-y)) !important;
    opacity: var(--scroll-fx-opacity) !important;
    stroke-dashoffset: var(--scroll-fx-stroke-dashoffset) !important;
  }
  .scroll-fx\@md.scroll-fx--theme-transition,
  .scroll-fx\@md.scroll-fx--theme-transition > * {
    transition: 0.3s;
  }
}
@media (min-width: 80rem) {
  .scroll-fx\@lg {
    transform: translate3d(var(--scroll-fx-translate-x), var(--scroll-fx-translate-y), var(--scroll-fx-translate-z)) rotateX(var(--scroll-fx-rotate-x)) rotateY(var(--scroll-fx-rotate-y)) rotateZ(var(--scroll-fx-rotate-z)) skewX(var(--scroll-fx-skew-x)) skewY(var(--scroll-fx-skew-y)) scaleX(var(--scroll-fx-scale-x)) scaleY(var(--scroll-fx-scale-y)) !important;
    opacity: var(--scroll-fx-opacity) !important;
    stroke-dashoffset: var(--scroll-fx-stroke-dashoffset) !important;
  }
  .scroll-fx\@lg.scroll-fx--theme-transition,
  .scroll-fx\@lg.scroll-fx--theme-transition > * {
    transition: 0.3s;
  }
}
@media (min-width: 90rem) {
  .scroll-fx\@xl {
    transform: translate3d(var(--scroll-fx-translate-x), var(--scroll-fx-translate-y), var(--scroll-fx-translate-z)) rotateX(var(--scroll-fx-rotate-x)) rotateY(var(--scroll-fx-rotate-y)) rotateZ(var(--scroll-fx-rotate-z)) skewX(var(--scroll-fx-skew-x)) skewY(var(--scroll-fx-skew-y)) scaleX(var(--scroll-fx-scale-x)) scaleY(var(--scroll-fx-scale-y)) !important;
    opacity: var(--scroll-fx-opacity) !important;
    stroke-dashoffset: var(--scroll-fx-stroke-dashoffset) !important;
  }
  .scroll-fx\@xl.scroll-fx--theme-transition,
  .scroll-fx\@xl.scroll-fx--theme-transition > * {
    transition: 0.3s;
  }
}
@supports (--css: variables) {
  [data-theme=demo-dark] {
    --color-primary-darker: hsl(319, 78%, 49%);
    --color-primary-darker-h: 319;
    --color-primary-darker-s: 78%;
    --color-primary-darker-l: 49%;
    --color-primary-dark: hsl(319, 78%, 58%);
    --color-primary-dark-h: 319;
    --color-primary-dark-s: 78%;
    --color-primary-dark-l: 58%;
    --color-primary: hsl(319, 78%, 66%);
    --color-primary-h: 319;
    --color-primary-s: 78%;
    --color-primary-l: 66%;
    --color-primary-light: hsl(319, 78%, 72%);
    --color-primary-light-h: 319;
    --color-primary-light-s: 78%;
    --color-primary-light-l: 72%;
    --color-primary-lighter: hsl(319, 78%, 79%);
    --color-primary-lighter-h: 319;
    --color-primary-lighter-s: 78%;
    --color-primary-lighter-l: 79%;
    --color-accent-darker: hsl(250, 79%, 56%);
    --color-accent-darker-h: 250;
    --color-accent-darker-s: 79%;
    --color-accent-darker-l: 56%;
    --color-accent-dark: hsl(250, 79%, 60%);
    --color-accent-dark-h: 250;
    --color-accent-dark-s: 79%;
    --color-accent-dark-l: 60%;
    --color-accent: hsl(250, 79%, 65%);
    --color-accent-h: 250;
    --color-accent-s: 79%;
    --color-accent-l: 65%;
    --color-accent-light: hsl(250, 79%, 71%);
    --color-accent-light-h: 250;
    --color-accent-light-s: 79%;
    --color-accent-light-l: 71%;
    --color-accent-lighter: hsl(250, 79%, 76%);
    --color-accent-lighter-h: 250;
    --color-accent-lighter-s: 79%;
    --color-accent-lighter-l: 76%;
    --color-bg: hsl(240, 8%, 12%);
    --color-bg-h: 240;
    --color-bg-s: 8%;
    --color-bg-l: 12%;
    --color-contrast-lower: hsl(240, 6%, 15%);
    --color-contrast-lower-h: 240;
    --color-contrast-lower-s: 6%;
    --color-contrast-lower-l: 15%;
    --color-contrast-low: hsl(240, 5%, 24%);
    --color-contrast-low-h: 240;
    --color-contrast-low-s: 5%;
    --color-contrast-low-l: 24%;
    --color-contrast-medium: hsl(240, 3%, 55%);
    --color-contrast-medium-h: 240;
    --color-contrast-medium-s: 3%;
    --color-contrast-medium-l: 55%;
    --color-contrast-high: hsl(240, 10%, 86%);
    --color-contrast-high-h: 240;
    --color-contrast-high-s: 10%;
    --color-contrast-high-l: 86%;
    --color-contrast-higher: hsl(240, 47%, 97%);
    --color-contrast-higher-h: 240;
    --color-contrast-higher-s: 47%;
    --color-contrast-higher-l: 97%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
.demo-scroll-fx-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
}
.demo-scroll-fx-grid > *:nth-child(1) {
  grid-column: 1/4;
  grid-row: 1/-1;
}
.demo-scroll-fx-grid > *:nth-child(2) {
  grid-column: 3/7;
  grid-row: 2/5;
}

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

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

-------------------------------- */
: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%;
}

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

File#: _1_smooth-scrolling
Title: Smooth Scrolling
Descr: Replace the default browser behaviour (jump) with a smooth scrolling transition
Usage: codyhouse.co/license

-------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding: calc(var(--space-xxl) + var(--space-md));
}
@media (min-width: 64rem) {
  html {
    scroll-padding: var(--space-xl);
  }
}

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

File#: _1_sticky-banner
Title: Sticky Banner
Descr: A sticky banner that slides in passed a target element or a scrolling offset.
Usage: codyhouse.co/license

-------------------------------- */
.sticky-banner {
  position: fixed;
  top: -1px;
  left: 0;
  width: 100%;
  z-index: var(--z-index-fixed-element, 10);
  transform: translateY(-100%);
  transition: transform 0.3s;
}

.sticky-banner--bottom {
  top: auto;
  bottom: -1px;
  transform: translateY(100%);
}

.sticky-banner--visible {
  transform: translateY(0);
}

.sticky-banner:not(.sticky-banner--visible) {
  box-shadow: none;
}

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

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

-------------------------------- */
.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(--color-bg-dark-h), var(--color-bg-dark-s), var(--color-bg-dark-l), 0), hsla(var(--color-bg-dark-h), var(--color-bg-dark-s), var(--color-bg-dark-l), 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(--text-sm);
  padding: 1.5625em;
  text-decoration: none;
  color: hsla(var(--color-contrast-high-h), var(--color-contrast-high-s), var(--color-contrast-high-l), 0.65);
  border: 3px solid transparent;
  border-right-width: 0;
  border-left-width: 0;
  transition: 0.2s;
}
.subnav__link:hover {
  color: var(--color-contrast-high);
}
.subnav__link[aria-current=page] {
  border-bottom-color: var(--color-primary);
  color: var(--color-contrast-high);
}

.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: var(--z-index-overlay, 15);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 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: var(--color-bg);
  box-shadow: var(--shadow-md);
  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(--space-md) var(--space-md);
}
.subnav--collapsed .subnav__link {
  border-width: 0;
  font-size: var(--text-md);
  padding: var(--space-xs) 0;
}
.subnav--collapsed .subnav__link[aria-current=page] {
  color: var(--color-primary);
}

.subnav__close-btn {
  --size: 2em;
  width: var(--size);
  height: var(--size);
  display: flex;
  margin: var(--space-xs) var(--space-xs) 0 auto;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--color-bg-light);
  box-shadow: var(--inner-glow), var(--shadow-sm);
  transition: 0.2s;
}
.subnav__close-btn:hover {
  background-color: var(--color-bg-lighter);
  box-shadow: var(--inner-glow), var(--shadow-md);
}
.subnav__close-btn .icon {
  display: block;
  color: var(--color-contrast-high);
}

[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";
  }
}
/* -------------------------------- 

File#: _1_switch-icon
Title: Switch Icon 
Descr: An icon transition generator that works with any icons
Usage: codyhouse.co/license

-------------------------------- */
.switch-icon { /* button */
  position: relative;
}

.switch-icon--disabled { /* optional - use in JS to temporary disable click event */
  pointer-events: none;
}

.switch-icon__icon { /* icon */
  font-size: 1em; /* icon size */
  display: block;
  will-change: transform;
}

.switch-icon__icon--a {
  opacity: 1;
}

.switch-icon__icon--b {
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  opacity: 0;
}

.switch-icon--state-b .switch-icon__icon--a,
.switch-icon--hover:hover .switch-icon__icon--a {
  opacity: 0;
}
.switch-icon--state-b .switch-icon__icon--b,
.switch-icon--hover:hover .switch-icon__icon--b {
  opacity: 1;
}

/* --scale */
.switch-icon--scale .switch-icon__icon {
  transition: opacity 0s 0.2s, transform 0.4s;
}
.switch-icon--scale .switch-icon__icon--a {
  transform: scale(1);
}
.switch-icon--scale .switch-icon__icon--b {
  transform: scale(0.8);
}

.switch-icon--scale.switch-icon--state-b .switch-icon__icon--a,
.switch-icon--scale.switch-icon--hover:hover .switch-icon__icon--a {
  transform: scale(0.8);
}
.switch-icon--scale.switch-icon--state-b .switch-icon__icon--b,
.switch-icon--scale.switch-icon--hover:hover .switch-icon__icon--b {
  transform: scale(1);
}

/* --rotate */
.switch-icon--rotate .switch-icon__icon {
  transition: opacity 0s 0.2s, transform 0.4s;
}
.switch-icon--rotate .switch-icon__icon--a {
  transform: rotate(0);
}
.switch-icon--rotate .switch-icon__icon--b {
  transform: rotate(90deg);
}

.switch-icon--rotate.switch-icon--state-b .switch-icon__icon--a,
.switch-icon--rotate.switch-icon--hover:hover .switch-icon__icon--a {
  transform: rotate(-90deg);
}
.switch-icon--rotate.switch-icon--state-b .switch-icon__icon--b,
.switch-icon--rotate.switch-icon--hover:hover .switch-icon__icon--b {
  transform: rotate(0);
}

/* --flip */
.switch-icon--flip {
  perspective: 10em;
}
.switch-icon--flip .switch-icon__icon {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: opacity 0s 0.2s, transform 0.4s var(--ease-out-back);
}
.switch-icon--flip .switch-icon__icon--a {
  opacity: 1;
  transform: rotateY(0deg);
}
.switch-icon--flip .switch-icon__icon--b {
  opacity: 1;
  transform: rotateY(-180deg);
}

.switch-icon--flip.switch-icon--state-b .switch-icon__icon--a,
.switch-icon--flip.switch-icon--hover:hover .switch-icon__icon--a {
  opacity: 1;
  transform: rotateY(180deg);
}
.switch-icon--flip.switch-icon--state-b .switch-icon__icon--b,
.switch-icon--flip.switch-icon--hover:hover .switch-icon__icon--b {
  opacity: 1;
  transform: rotateY(0deg);
}

/* slide effects */
.switch-icon--slide-up,
.switch-icon--slide-down,
.switch-icon--slide-right,
.switch-icon--slide-left {
  overflow: hidden;
}
.switch-icon--slide-up .switch-icon__icon,
.switch-icon--slide-down .switch-icon__icon,
.switch-icon--slide-right .switch-icon__icon,
.switch-icon--slide-left .switch-icon__icon {
  transition: opacity 0.3s, transform 0.3s;
}

/* slide-up */
.switch-icon--slide-up .switch-icon__icon--a {
  transform: translateY(0);
}
.switch-icon--slide-up .switch-icon__icon--b {
  transform: translateY(100%);
}

.switch-icon--slide-up.switch-icon--state-b .switch-icon__icon--a,
.switch-icon--slide-up.switch-icon--hover:hover .switch-icon__icon--a {
  transform: translateY(-100%);
}
.switch-icon--slide-up.switch-icon--state-b .switch-icon__icon--b,
.switch-icon--slide-up.switch-icon--hover:hover .switch-icon__icon--b {
  transform: translateY(0);
}

/* slide-down */
.switch-icon--slide-down .switch-icon__icon--a {
  transform: translateY(0);
}
.switch-icon--slide-down .switch-icon__icon--b {
  transform: translateY(-100%);
}

.switch-icon--slide-down.switch-icon--state-b .switch-icon__icon--a,
.switch-icon--slide-down.switch-icon--hover:hover .switch-icon__icon--a {
  transform: translateY(100%);
}
.switch-icon--slide-down.switch-icon--state-b .switch-icon__icon--b,
.switch-icon--slide-down.switch-icon--hover:hover .switch-icon__icon--b {
  transform: translateY(0);
}

/* slide-right */
.switch-icon--slide-right .switch-icon__icon--a {
  transform: translateX(0);
}
.switch-icon--slide-right .switch-icon__icon--b {
  transform: translateX(-100%);
}

.switch-icon--slide-right.switch-icon--state-b .switch-icon__icon--a,
.switch-icon--slide-right.switch-icon--hover:hover .switch-icon__icon--a {
  transform: translateX(100%);
}
.switch-icon--slide-right.switch-icon--state-b .switch-icon__icon--b,
.switch-icon--slide-right.switch-icon--hover:hover .switch-icon__icon--b {
  transform: translateX(0);
}

/* slide-left */
.switch-icon--slide-left .switch-icon__icon--a {
  transform: translateX(0);
}
.switch-icon--slide-left .switch-icon__icon--b {
  transform: translateX(100%);
}

.switch-icon--slide-left.switch-icon--state-b .switch-icon__icon--a,
.switch-icon--slide-left.switch-icon--hover:hover .switch-icon__icon--a {
  transform: translateX(-100%);
}
.switch-icon--slide-left.switch-icon--state-b .switch-icon__icon--b,
.switch-icon--slide-left.switch-icon--hover:hover .switch-icon__icon--b {
  transform: translateX(0);
}

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

File#: _1_tabs
Title: Tabs
Descr: A list of content sections (panels), accessible one at a time using control labels
Usage: codyhouse.co/license

-------------------------------- */
.tabs__control {
  text-decoration: none;
  color: var(--color-contrast-medium);
}
.tabs__control:focus {
  outline: 2px solid hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
  outline-offset: 2px;
}
.tabs__control:hover {
  color: var(--color-contrast-high);
}

.tabs__control[aria-selected=true] {
  color: var(--color-contrast-high);
  text-decoration: underline;
}

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

File#: _1_text-background-effects
Title: Text Background Effects
Descr: A collection of text backgrounds animated on hover
Usage: codyhouse.co/license

-------------------------------- */
.text-bg-fx {
  background-repeat: no-repeat;
  will-change: background-size;
  transition: background-size 0.3s var(--ease-in-out);
}
.text-bg-fx:hover {
  background-size: 100% 100%;
}

.text-bg-fx--scale-x {
  padding: var(--space-xxxxs) 0;
  background-image: linear-gradient(hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2), hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2));
  background-size: 0% 100%;
}

.text-bg-fx--scale-y {
  text-decoration: none;
  background-image: linear-gradient(hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2), hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2));
  background-size: 100% 2px;
  background-position: center bottom;
}

.text-bg-fx--underline,
.text-bg-fx--underline-bold {
  text-decoration: none;
  background-size: 0% 100%;
}

.text-bg-fx--underline { /* text underline size = 1px */
  background-image: linear-gradient(transparent calc(100% - 3px), currentColor calc(100% - 3px), currentColor calc(100% - 2px), transparent 2px);
}

.text-bg-fx--underline-bold {
  background-image: linear-gradient(transparent 50%, hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2) 50%);
}

.text-bg-fx--text-shadow { /* you can use this with the .text-bg-fx--underline effect */
  text-shadow: 1.5px 1px var(--color-bg), -1.5px 1px var(--color-bg), 0px 1px var(--color-bg);
}

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

File#: _1_toast
Title: Toast
Descr: Notification message
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --toast-width: 400px;
  --toast-gap: var(--space-xs);
  --toast-transition-duration: .3s;
}

/* element created in JS - used to wrap toasts with same position (e.g., top-right) */
.toast-wrapper {
  width: var(--toast-width);
  max-width: 80%;
  padding: var(--space-sm);
  z-index: var(--z-index-fixed-element);
  pointer-events: none;
}

.toast {
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.98);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: fixed;
  pointer-events: auto;
  will-change: transform;
  transition: opacity var(--toast-transition-duration), visibility 0s, transform var(--toast-transition-duration) var(--ease-out);
}

.toast--hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: opacity var(--toast-transition-duration), visibility 0s var(--toast-transition-duration), transform var(--toast-transition-duration) var(--ease-out);
}

.toast--top-right,
.toast--top-center,
.toast--top-left {
  margin-bottom: var(--toast-gap);
}

.toast--bottom-right,
.toast--bottom-center,
.toast--bottom-left {
  margin-top: var(--toast-gap);
}

.toast__title, .toast__p {
  color: var(--color-bg);
}

.toast__p {
  opacity: 0.6;
}

.toast__close-btn {
  --size: 24px;
  width: var(--size);
  height: var(--size);
  display: flex;
  background-color: hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.2s;
}
.toast__close-btn .icon {
  --size: 12px;
  margin: auto;
  color: var(--color-bg);
}
.toast__close-btn:hover {
  background-color: hsla(var(--color-bg-h), var(--color-bg-s), var(--color-bg-l), 0.1);
}

.toast__icon-wrapper {
  --size: 32px;
  width: var(--size);
  height: var(--size);
  display: flex;
  flex-shrink: 0;
  border-radius: 50%;
}
.toast__icon-wrapper .icon {
  --size: 16px;
  margin: auto;
}

.toast__icon-wrapper--warning {
  background-color: hsla(var(--color-warning-h), var(--color-warning-s), var(--color-warning-l), 0.2);
}
.toast__icon-wrapper--warning .icon {
  color: var(--color-warning);
}

.toast__icon-wrapper--success {
  background-color: hsla(var(--color-success-h), var(--color-success-s), var(--color-success-l), 0.2);
}
.toast__icon-wrapper--success .icon {
  color: var(--color-success);
}

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

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

-------------------------------- */
:root {
  --accordion-v2-icon-size: 16px;
  --accordion-v2-icon-stroke-width: 3px;
}

.accordion-v2__item {
  background-color: var(--color-bg);
  border: 2px solid var(--color-contrast-higher);
  border-radius: var(--radius-lg);
  transition: 0.3s;
}
.accordion-v2__item:hover {
  box-shadow: 0 0 0 4px hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
}

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

.accordion-v2__icon-arrow {
  color: var(--color-primary-dark);
}
.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 var(--ease-out);
}
.accordion-v2[data-animation=on] .accordion-v2__icon-arrow .icon__group {
  transition: transform 0.3s var(--ease-out);
}
.accordion-v2[data-animation=on] .accordion-v2__icon-arrow .icon__group > * {
  transition: transform 0.3s, stroke-dashoffset 0.3s;
  transition-timing-function: var(--ease-out);
}

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

File#: _2_cards-scrolling-effects
Title: Cards Scrolling Effects
Descr: A gallery of cards/images that animate on scroll
Usage: codyhouse.co/license

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

File#: _2_diagonal-animated-divider
Title: Diagonal Animated Divider
Descr: A diagonal section divider that animates on scroll
Usage: codyhouse.co/license

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

File#: _2_dropdown
Title: Dropdown
Descr: A hoverable link that toggles the visibility of a dropdown list
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --dropdown-item-padding: var(--space-xxs) var(--space-sm);
}

.dropdown {
  position: relative;
}

.dropdown__menu {
  width: 200px;
  border-radius: var(--radius-md);
  padding: var(--space-xxxs) 0;
  background-color: var(--color-bg-light);
  box-shadow: var(--inner-glow), var(--shadow-sm);
  z-index: var(--z-index-popover, 5);
  position: absolute;
  left: 0;
  top: 100%;
  --space-unit: 1rem;
  --text-unit: 1rem;
  font-size: var(--text-unit);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0s 0.2s;
}

@media (pointer: fine) {
  .dropdown__wrapper:hover > .dropdown__menu,
  .dropdown__sub-wrapper:hover > .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s;
  }
  .dropdown__sub-wrapper:hover > .dropdown__menu {
    left: 100%;
  }
}
@media not all and (pointer: fine) {
  .dropdown__trigger-icon {
    display: none;
  }
}
.dropdown__item {
  display: block;
  text-decoration: none;
  color: var(--color-contrast-high);
  padding: var(--dropdown-item-padding);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.2s;
}
.dropdown__item:hover, .dropdown__item.dropdown__item--hover {
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.075);
}

.dropdown__separator {
  height: 1px;
  background-color: var(--color-contrast-lower);
  margin: var(--dropdown-item-padding);
}

.dropdown__sub-wrapper {
  position: relative;
}
.dropdown__sub-wrapper > .dropdown__item {
  position: relative;
  padding-right: calc(var(--space-sm) + 12px);
}
.dropdown__sub-wrapper > .dropdown__item .icon {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  right: var(--space-xxs);
  top: calc(50% - 6px);
}
.dropdown__sub-wrapper > .dropdown__menu {
  top: calc(var(--space-xxs) * -1);
  box-shadow: var(--inner-glow), var(--shadow-md);
}

.dropdown__menu {
  top: calc(100% + 4px);
}

.dropdown__sub-wrapper .dropdown__menu {
  top: calc(var(--space-xxs) * -1);
}

@media (pointer: fine) {
  .dropdown__menu--is-visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s;
  }
}
.dropdown__menu--is-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0s 0.2s;
}

.dropdown__sub-wrapper > .dropdown__menu--is-visible,
.dropdown__sub-wrapper > .dropdown__menu--is-hidden {
  left: 100%;
}
.dropdown__sub-wrapper > .dropdown__menu--is-visible.dropdown__menu--left,
.dropdown__sub-wrapper > .dropdown__menu--is-hidden.dropdown__menu--left {
  left: -100%;
}

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

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

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

.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;
  justify-content: flex-end;
  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-base);
}

.f-header__link,
.f-header__dropdown-control,
.f-header__dropdown-link {
  display: flex;
  align-items: center;
  color: var(--color-contrast-higher);
  text-decoration: none;
  padding: var(--space-xxxxs) 0;
}
.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] {
  color: var(--color-primary);
}

.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-sm); /* 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 */
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s 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 {
    pointer-events: auto;
    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);
  }
}
/* -------------------------------- 

File#: _2_main-header-v3
Title: Main Header v3
Descr: Accessible website navigation
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --header-v3-height: 50px; /* header height on small screens */
}
@media (min-width: 64rem) {
  :root {
    --header-v3-height: 70px ;
  }
}

.header-v3 {
  height: var(--header-v3-height);
  width: 100%;
  z-index: var(--z-index-header, 3);
  transition: background 0.3s;
}

.header-v3--expanded {
  /* class added when navigation is visible (small devices) or search input is visible (big devices) */
}

.header-v3__container {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.header-v3__logo {
  position: relative;
  flex-shrink: 0;
  z-index: 2;
}
.header-v3__logo a, .header-v3__logo svg {
  display: block;
}

.header-v3__nav-control.switch-icon { /* menu button - visible only on small screens */
  padding: var(--space-xxs);
  z-index: 2;
}
.header-v3__nav-control.switch-icon .switch-icon__icon {
  font-size: 24px; /* icon size */
}

.header-v3__nav { /* main navigation */
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-bg);
  box-shadow: var(--shadow-md);
  z-index: 1;
  /* hide */
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: height 0.5s var(--ease-in-out);
}
.header-v3__nav::before { /* top border */
  content: "";
  position: absolute;
  top: var(--header-v3-height);
  width: 100%;
  height: 1px;
  background-color: var(--color-contrast-lower);
  z-index: 10;
}

.header-v3__nav--is-visible { /* show nav */
  clip: auto;
  clip-path: none;
  height: 100vh;
  visibility: visible;
}

.header-v3__nav-list {
  position: absolute;
  top: var(--header-v3-height);
  left: 0;
  width: 100%;
  height: calc(100% - var(--header-v3-height));
  padding: var(--space-sm) var(--component-padding) var(--component-padding);
  z-index: 1;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  overscroll-behavior: contain;
}

.header-v3__nav-item {
  border-bottom: 1px solid var(--color-contrast-lower);
  opacity: 0;
  transform: translateY(-10%);
  transition: opacity 0.4s, transform 0.4s;
}
.header-v3__nav--animate-children .header-v3__nav-item { /* class used to trigger list items animation  */
  opacity: 1;
  transform: translateY(0);
}
.header-v3__nav:not(.header-v3__nav--animate-children) .header-v3__nav-item {
  transition-delay: 0s !important;
}

.header-v3__nav-item--logo,
.header-v3__nav-item--search-btn {
  display: none; /* hide logo within nav and search btn */
}

.header-v3__nav-item--search-form {
  margin: var(--space-xs) 0;
  border-bottom: none;
}

.header-v3__nav-link {
  display: block;
  padding: var(--space-sm) 0;
  font-size: var(--text-md);
  color: var(--color-contrast-high);
  text-decoration: none;
}
.header-v3__nav-link:hover {
  color: var(--color-primary);
}

.header-v3__nav-link--icon {
  display: flex;
  align-items: center;
}
.header-v3__nav-link--icon .icon {
  flex-shrink: 0;
  color: currentColor;
}
.header-v3__nav-link--icon span { /* text */
  margin-left: var(--space-xxs);
}

@media (min-width: 64rem) {
  .header-v3 {
    height: var(--header-v3-height);
  }
  .header-v3__container {
    position: relative;
  }
  .header-v3__nav-control,
  .header-v3__logo {
    display: none; /* hide search and menu button */
  }
  .header-v3__nav {
    /* reset */
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    position: static;
    clip: auto;
    clip-path: none;
    height: auto;
    overflow: visible;
    visibility: visible;
    overscroll-behavior: auto;
  }
  .header-v3__nav::before {
    display: none;
  }
  .header-v3__nav-list {
    /* reset */
    position: static;
    padding: 0;
    width: auto;
    height: auto;
    overflow: visible;
    overscroll-behavior: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-v3__nav-item {
    /* reset */
    border-bottom: none;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s, visibility 0.3s;
    transition-delay: 0s !important; /* reset inline delay set in JS for the mobile animation */
  }
  .header-v3__nav-item--logo { /* make visible logo inside nav */
    display: block;
  }
  .header-v3__nav-item--logo .header-v3__logo {
    display: block;
  }
  .header-v3__nav-item--search-btn { /* show search btn */
    display: block;
  }
  .header-v3__nav-item--search-btn .switch-icon {
    padding: var(--space-xxxs);
  }
  .header-v3__nav-item--search-btn .switch-icon__icon {
    display: block;
  }
  .header-v3__nav-link {
    display: inline-flex;
    padding: var(--space-xxxs);
    font-size: 0.9em;
  }
  .header-v3__nav-link--icon span {
    display: none; /* hide labels and show only icons */
  }
  .header-v3__nav-link--icon,
  .header-v3__nav-item--search-btn .switch-icon__icon {
    font-size: 20px; /* icons size */
  }
  .header-v3__nav-item--search-btn {
    z-index: 4;
  }
  .header-v3__nav-item--search-form {
    margin: 0; /* reset */
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - var(--space-lg));
    height: 100%;
    z-index: var(--z-index-popover, 5);
    transition: all 0.3s;
    visibility: hidden;
    opacity: 0;
  }
  .header-v3__nav--animate-children .header-v3__nav-item--search-form { /* reset mobile style */
    opacity: 0;
  }
  .header-v3__nav-form-control {
    height: 50px;
    position: absolute;
    left: 0;
    padding: var(--space-xs) var(--space-sm);
    top: calc(50% - 25px);
    will-change: transform;
    transition: transform 0.3s;
    transform: translateY(-50%);
  }
  .header-v3--show-search {
    background: var(--color-bg);
  }
  .header-v3--show-search .header-v3__nav-item {
    opacity: 0;
    visibility: hidden;
  }
  .header-v3--show-search .header-v3__nav-item--search-form,
  .header-v3--show-search .header-v3__nav-item--search-btn {
    visibility: visible;
    opacity: 1;
  }
  .header-v3--show-search .header-v3__nav-form-control {
    transform: translateY(0);
  }
}
/* -------------------------------- 

File#: _2_side-navigation-v3
Title: Side Navigation v3
Descr: A primary navigation located in the sidebar
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --side-template-mobile-header-height: 50px;
}

@media not all and (min-width: 64rem) {
  .side-template-v3 .sidebar {
    --space-unit: 1.2rem;
    --text-unit: 1.2rem;
    font-size: var(--text-unit);
  }
}

/* mobile header - 既存のクラスに追記・修正 */
.side-template-v3__mobile-header {
  height: var(--side-template-mobile-header-height);
  position: fixed; /* relativeからfixedに変更して固定 */
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-index-header);
  /* 初期状態：隠す */
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}

/* スクロール後に付与するクラス */
.side-template-v3__mobile-header.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ロゴの調整 */
.side-template-v3__logo {
  display: block;
  width: 120px;
  flex-shrink: 0;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: var(--space-xxs);
}
.side-template-v3__logo svg, .side-template-v3__logo img {
  display: block;
  width: inherit;
}

.side-template-v3__mobile-menu {
  background: var(--color-primary);
  color: var(--color-contrast-higher);
  border-radius: 100%;
  line-height: 1;
  padding: var(--space-xs);
  width: 44px;
  height: 44px;
}

.side-template-v3__mobile-close {
  background: var(--color-primary);
  color: var(--color-contrast-higher);
  border-radius: 100%;
  line-height: 1;
  width: 44px;
  height: 44px;
  position: absolute;
}

/* main */
.side-template-v3__main {
  background-color: var(--color-bg);
}

@media (min-width: 64rem) {
  .side-template-v3__mobile-header {
    display: none !important;
  }
  .side-template-v3__logo {
    position: relative;
    margin-left: auto;
    width: 200px;
  }
  .side-template-v3__main {
    min-height: 100vh;
  }
}
/* -------------------------------- 

File#: _2_slideshow
Title: Slideshow
Descr: Show a collection of items one at a time
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --slideshow-height: 280px;
  --slideshow-fade-transition-duration: 0.25s;
  --slideshow-slide-transition-duration: 0.35s;
  --slideshow-prx-transition-duration: 0.5s;
  --slideshow-btn-width: 1.6em;
  --slideshow-btn-height: 3.2em;
  --slideshow-btn-icon-size: 1.6em;
  --slideshow-btn-offset: var(--space-xs);
}
@media (min-width: 48rem) {
  :root {
    --slideshow-height: 380px;
  }
}
@media (min-width: 64rem) {
  :root {
    --slideshow-height: 480px;
  }
}
@media (min-width: 80rem) {
  :root {
    --slideshow-height: 580px;
  }
}

.slideshow__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--slideshow-height);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.slideshow__item:focus {
  outline: none;
}

.slideshow--ratio-16\:9 .slideshow__item {
  height: 0;
  padding-bottom: 56.25%;
}

.slideshow--ratio-4\:3 .slideshow__item {
  height: 0;
  padding-bottom: 75%;
}

.slideshow--ratio-1\:1 .slideshow__item {
  height: 0;
  padding-bottom: 100%;
}

.slideshow {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.slideshow__content {
  overflow: hidden;
}

.slideshow__item {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
}

.slideshow__item--selected {
  position: relative;
  z-index: 3;
  visibility: visible;
}

.slideshow--transition-fade .slideshow__item {
  opacity: 0;
  transition: opacity 0s var(--slideshow-fade-transition-duration), visibility 0s var(--slideshow-fade-transition-duration);
}

.slideshow--transition-fade .slideshow__item--selected {
  opacity: 1;
  transition: opacity var(--slideshow-fade-transition-duration);
}

.slideshow--transition-slide .slideshow__item {
  animation-duration: var(--slideshow-slide-transition-duration);
  animation-fill-mode: forwards;
  animation-timing-function: var(--ease-out);
}
.slideshow--transition-slide .slideshow__item > * {
  visibility: hidden;
}

.slideshow--transition-slide .slideshow__item:not(.slideshow__item--selected) * {
  transition: none;
}

.slideshow--transition-slide .slideshow__item--selected > * {
  visibility: visible;
}

.slideshow--transition-slide .slideshow__item--slide-in-left {
  animation-name: slide-in-left;
}

.slideshow--transition-slide .slideshow__item--slide-in-right {
  animation-name: slide-in-right;
}

.slideshow--transition-slide .slideshow__item--slide-out-left {
  animation-name: slide-out-left;
}

.slideshow--transition-slide .slideshow__item--slide-out-right {
  animation-name: slide-out-right;
}

.slideshow--transition-slide .slideshow__item--slide-out-left,
.slideshow--transition-slide .slideshow__item--slide-out-right {
  z-index: 2;
}
.slideshow--transition-slide .slideshow__item--slide-out-left.slideshow__item--selected,
.slideshow--transition-slide .slideshow__item--slide-out-right.slideshow__item--selected {
  z-index: 3;
}
.slideshow--transition-slide .slideshow__item--slide-out-left > *,
.slideshow--transition-slide .slideshow__item--slide-out-right > * {
  visibility: visible;
}

@keyframes slide-in-left {
  0% {
    visibility: visible;
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-in-right {
  0% {
    visibility: visible;
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-out-left {
  0% {
    visibility: visible;
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes slide-out-right {
  0% {
    visibility: visible;
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.slideshow--transition-prx .slideshow__item {
  animation-duration: var(--slideshow-prx-transition-duration);
  animation-fill-mode: forwards;
  animation-timing-function: var(--ease-out);
}
.slideshow--transition-prx .slideshow__item > * {
  visibility: hidden;
}

.slideshow--transition-prx .slideshow__item--selected > * {
  visibility: visible;
}

.slideshow--transition-prx .slideshow__item--prx-in-left {
  animation-name: prx-in-left;
}

.slideshow--transition-prx .slideshow__item--prx-in-right {
  animation-name: prx-in-right;
}

.slideshow--transition-prx .slideshow__item--prx-out-left {
  animation-name: prx-out-left;
}

.slideshow--transition-prx .slideshow__item--prx-out-right {
  animation-name: prx-out-right;
}

.slideshow--transition-prx .slideshow__item--prx-out-left,
.slideshow--transition-prx .slideshow__item--prx-out-right {
  z-index: 2;
}
.slideshow--transition-prx .slideshow__item--prx-out-left.slideshow__item--selected,
.slideshow--transition-prx .slideshow__item--prx-out-right.slideshow__item--selected {
  z-index: 3;
}
.slideshow--transition-prx .slideshow__item--prx-out-left > *,
.slideshow--transition-prx .slideshow__item--prx-out-right > * {
  visibility: visible;
}

@keyframes prx-in-left {
  0% {
    visibility: visible;
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes prx-in-right {
  0% {
    visibility: visible;
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes prx-out-left {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  100% {
    opacity: 0.3;
    transform: translateX(40%);
  }
}
@keyframes prx-out-right {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  100% {
    opacity: 0.3;
    transform: translateX(-40%);
  }
}
.slideshow[data-swipe=on] .slideshow__content {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.slideshow[data-swipe=on] .slideshow__content img {
  pointer-events: none;
}

.slideshow__control {
  display: none;
}

.slideshow[data-controls=hover] .slideshow__control {
  opacity: 0;
  transition: opacity 0.3s;
}

.slideshow[data-controls=hover]:hover .slideshow__control {
  opacity: 1;
}

.slideshow[data-swipe=on] .slideshow__control {
  display: none;
}

.slideshow__control {
  display: block;
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
}
.slideshow__control:first-of-type {
  left: var(--slideshow-btn-offset);
}
.slideshow__control:last-of-type {
  right: var(--slideshow-btn-offset);
}

@media (min-width: 64rem) {
  .slideshow[data-swipe=on] .slideshow__control {
    display: block;
  }
}
.slideshow__btn {
  display: block;
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.75);
  height: var(--slideshow-btn-height);
  width: var(--slideshow-btn-width);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.slideshow__btn:hover {
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.85);
}
.slideshow__btn:hover .icon {
  color: var(--color-bg);
}
.slideshow:not(.slideshow--is-animating) .slideshow__btn:active {
  transform: translateY(2px);
}
.slideshow__btn .icon {
  display: block;
  width: var(--slideshow-btn-icon-size);
  height: var(--slideshow-btn-icon-size);
  margin: 0 auto;
  transition: color 0.2s;
  color: var(--color-white);
}
@supports (grid-area: auto) {
  .slideshow__btn {
    background-color: transparent;
  }
  .slideshow__btn .icon {
    color: var(--color-contrast-higher);
  }
}

.slideshow__navigation {
  position: absolute;
  z-index: 4;
  bottom: 0;
  width: 100%;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.slideshow__nav-item {
  display: inline-block;
  margin: 0 var(--space-xxxs);
}
.slideshow__nav-item button {
  display: block;
  position: relative;
  font-size: 8px;
  color: var(--color-contrast-high);
  height: 1em;
  width: 1em;
  border-radius: 50%;
  background-color: currentColor;
  opacity: 0.4;
  cursor: pointer;
  transition: background 0.3s;
}
.slideshow__nav-item button::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5em);
  left: calc(50% - 0.5em);
  height: 1em;
  width: 1em;
  font-size: 14px;
  border-radius: inherit;
  border: 1px solid var(--color-contrast-high);
  opacity: 0;
  transform: scale(0);
  transition: 0.3s;
}
.slideshow__nav-item button:focus {
  outline: none;
}
.slideshow__nav-item button:focus::before {
  opacity: 1;
  transform: scale(1);
}

.slideshow__nav-item--selected button {
  opacity: 1;
}

@media (min-width: 64rem) {
  .slideshow__navigation {
    height: 40px;
  }
  .slideshow__nav-item button {
    font-size: 10px;
  }
  .slideshow__nav-item button::before {
    font-size: 16px;
  }
}
/* -------------------------------- 

File#: _2_team
Title: Team
Descr: A gallery of team members
Usage: codyhouse.co/license

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

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

File#: _2_testimonials
Title: Testimonials
Descr: A gallery of testimonial cards
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

-------------------------------- */
.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: var(--color-bg);
}

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

File#: _3_looping-slideshow
Title: Looping Slideshow
Descr: Slideshow automatically looping among items with a progress indicator for each item
Usage: codyhouse.co/license

-------------------------------- */
/* optional -> overwrite slideshow height at different breakpoints */
.loop-slideshow {
  --slideshow-slide-transition-duration: 0.3s; /* slide effect transition duration */
}
.loop-slideshow .slideshow__content {
  clip-path: inset(0 round var(--radius-lg));
}

/* slideshow navigation - created in JS */
.loop-slideshow__navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.loop-slideshow__nav-item {
  margin: var(--space-sm) calc(var(--space-sm) / 2) 0;
  --loop-slideshow-filling: 0; /* used in JS to create the filling effect */
}
.loop-slideshow__nav-item button {
  position: relative;
  display: block;
  overflow: hidden;
  height: 4px;
  width: 60px;
  border-radius: 50em;
  background-color: var(--color-contrast-lower);
  cursor: pointer;
  transition: 0.2s;
}
.loop-slideshow__nav-item button::before { /* filling effect */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scaleX(var(--loop-slideshow-filling));
  transform-origin: left center;
  background-color: var(--color-primary);
}
.loop-slideshow__nav-item button:hover {
  background-color: hsla(var(--color-contrast-lower-h), var(--color-contrast-lower-s), var(--color-contrast-lower-l), 0.7);
}
@media (min-width: 64rem) {
  .loop-slideshow__nav-item button {
    height: 5px;
    width: 90px;
  }
}

/* slideshow custom cursor */
.loop-slideshow-cursor.c-cursor--right .c-cursor__img {
  --rotate: 180deg;
}

/* pause/play button */
.loop-slideshow__pause-btn {
  position: absolute;
  z-index: 3;
  top: var(--space-sm);
  right: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.85);
  cursor: pointer;
  color: var(--color-white); /* icon color */
  transition: background 0.3s, transform 0.3s var(--ease-out-back);
}
.loop-slideshow__pause-btn:hover {
  background-color: hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.95);
  transform: scale(1.1);
}

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

File#: _3_mega-site-navigation
Title: Mega-Site Navigation
Descr: Navigation template for mega-sites
Usage: codyhouse.co/license

-------------------------------- */
:root {
  --mega-nav-height: 50px;
  --mega-nav-content-max-width: var(--max-width-lg); /* set max-width for navigation content */
}
@media (min-width: 64rem) {
  :root {
    --mega-nav-height: 70px;
  }
}

.mega-nav {
  height: var(--mega-nav-height);
  width: 100%;
  z-index: var(--z-index-header, 3);
  box-shadow: inset 0px -1px 0px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1); /* border bottom */
}

/* change mega-nav style if menu = expanded */
.mega-nav--expanded {
  background-color: var(--color-bg);
}

.mega-nav__container {
  width: calc(100% - 2 * var(--component-padding));
  height: 100%;
  max-width: var(--mega-nav-content-max-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo */
.mega-nav__logo {
  display: block;
  width: 104px; /* logo width */
  height: 30px; /* logo height */
}
.mega-nav__logo > * { /* logo SVG */
  width: inherit;
  height: inherit;
}

/* mobile buttons */
.mega-nav__icon-btns {
  display: flex;
  align-items: center;
}

.mega-nav__icon-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 24px; /* icon size */
  color: var(--color-contrast-high); /* icon color */
  cursor: pointer;
  transition: 0.2s;
}
.mega-nav__icon-btn .icon {
  display: block;
}
.mega-nav__icon-btn .icon__group {
  stroke-width: 1px; /* icon stroke width */
}
.mega-nav__icon-btn .icon__group > * {
  transition: transform 0.3s var(--ease-in-out), stroke-dashoffset 0.3s, opacity 0.3s;
}

/* animated menu button */
.mega-nav__icon-btn--menu .icon__group > * {
  stroke-dasharray: 24;
}
.mega-nav__icon-btn--menu .icon__group > *:nth-child(1) {
  transform-origin: 12px 6px;
}
.mega-nav__icon-btn--menu .icon__group > *:nth-child(2) {
  stroke-dashoffset: 0;
}
.mega-nav__icon-btn--menu .icon__group > *:nth-child(3) {
  transform-origin: 12px 18px;
}
.mega-nav__icon-btn--menu.mega-nav__icon-btn--state-b .icon__group > *:nth-child(1) {
  transform: translateY(6px) rotate(-45deg);
}
.mega-nav__icon-btn--menu.mega-nav__icon-btn--state-b .icon__group > *:nth-child(2) {
  stroke-dashoffset: 24;
}
.mega-nav__icon-btn--menu.mega-nav__icon-btn--state-b .icon__group > *:nth-child(3) {
  transform: translateY(-6px) rotate(45deg);
}

/* animated search button */
.mega-nav__icon-btn--search .icon__group {
  transform-origin: 12px 12px;
  transform: rotate(0deg);
  transition: transform 0.3s var(--ease-out);
}
.mega-nav__icon-btn--search .icon__group > *:nth-child(1) {
  stroke-dashoffset: 34;
  stroke-dasharray: 24;
}
.mega-nav__icon-btn--search .icon__group > *:nth-child(2) {
  stroke-dashoffset: 24;
  stroke-dasharray: 24;
}
.mega-nav__icon-btn--search .icon__group > *:nth-child(3) {
  transform-origin: 9.5px 9.5px;
  transform: rotate(45deg);
  stroke-dashoffset: 84;
  stroke-dasharray: 42;
  opacity: 1;
}
.mega-nav__icon-btn--search.mega-nav__icon-btn--state-b .icon__group {
  transform: rotate(-90deg);
}
.mega-nav__icon-btn--search.mega-nav__icon-btn--state-b .icon__group > *:nth-child(1) {
  stroke-dashoffset: 48;
}
.mega-nav__icon-btn--search.mega-nav__icon-btn--state-b .icon__group > *:nth-child(2) {
  stroke-dashoffset: 48;
}
.mega-nav__icon-btn--search.mega-nav__icon-btn--state-b .icon__group > *:nth-child(3) {
  stroke-dashoffset: 42;
  opacity: 0;
}

/* animated arrow icon */
.mega-nav__arrow-icon {
  font-size: 16px; /* icon size */
  color: currentColor; /* icon color */
  transition: color 0.2s;
}
.mega-nav__arrow-icon .icon {
  display: block;
}
.mega-nav__arrow-icon .icon__group {
  stroke-width: 1px; /* icon stroke width */
  will-change: transform;
  transform-origin: 8px 8px;
  transition: transform 0.3s var(--ease-out);
}
.mega-nav__arrow-icon .icon__group > * {
  stroke-dasharray: 17;
  transform-origin: 8px 8px;
  transform: translateY(3px);
  transition: transform 0.3s, stroke-dashoffset 0.3s;
  transition-timing-function: var(--ease-out);
}
.mega-nav__arrow-icon .icon__group > *:first-child {
  stroke-dashoffset: 8.5;
}
.mega-nav__arrow-icon .icon__group > *:last-child {
  stroke-dashoffset: 8.5;
}

/* label/divider */
.mega-nav__label {
  color: var(--color-contrast-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--text-xs);
}

/* card */
.mega-nav__card img {
  transition: opacity 0.3s;
}
.mega-nav__card img:hover {
  opacity: 0.85;
}

.mega-nav__card-title {
  color: var(--color-contrast-higher);
  text-decoration: none;
}
.mega-nav__card-title:hover {
  text-decoration: underline;
}

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

--mobile - style affecting only small screens 👇

-------------------------------- */
.mega-nav--mobile .mega-nav__icon-btns--desktop {
  display: none; /* hide --desktop icon buttons */
}
.mega-nav--mobile .mega-nav__nav, .mega-nav--mobile .mega-nav__search {
  display: none;
  position: absolute;
  top: var(--mega-nav-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--mega-nav-height) - var(--mega-nav-offset-y, 0px)); /* set --mega-nav-offset-y in JS */
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background-color: var(--color-bg);
  box-shadow: var(--shadow-lg);
}
.mega-nav--mobile .mega-nav__nav--is-visible, .mega-nav--mobile .mega-nav__search--is-visible {
  display: block;
}
.mega-nav--mobile .mega-nav__nav--is-visible > *, .mega-nav--mobile .mega-nav__search--is-visible > * {
  animation: mega-nav-entry-animation 0.5s var(--ease-out);
}
.mega-nav--mobile .mega-nav__nav-inner, .mega-nav--mobile .mega-nav__search-inner {
  padding: var(--space-md) 0;
  width: calc(100% - 2 * var(--component-padding));
  max-width: var(--mega-nav-content-max-width);
  margin-left: auto;
  margin-right: auto;
}
.mega-nav--mobile .mega-nav__label { /* label/divider */
  margin: var(--space-lg) 0 var(--space-xs);
}
.mega-nav--mobile .mega-nav__item { /* main navigation items */
  border-bottom: 1px solid var(--color-contrast-lower);
}
.mega-nav--mobile .mega-nav__control { /* navigation main controls (buttons/links) */
  display: flex;
  align-items: center;
  width: 100%;
  font-size: var(--text-md);
  text-align: left;
  padding: var(--space-sm) 0;
  color: var(--color-contrast-higher);
  text-decoration: none;
  cursor: pointer;
}
.mega-nav--mobile a[aria-current=page] { /* current page */
  color: var(--color-primary);
}
.mega-nav--mobile .mega-nav__arrow-icon {
  margin-left: auto;
  margin-right: 12px;
}
.mega-nav--mobile .mega-nav__btn { /* button */
  width: 100%;
  margin: var(--space-sm) 0;
  font-size: var(--text-md);
}
.mega-nav--mobile {
  /* sub navigation */
}
.mega-nav--mobile .mega-nav__sub-nav-wrapper { /* sub navigation content */
  display: none;
  padding: 0 var(--space-md) var(--space-lg);
  overflow: hidden;
}
.mega-nav--mobile .mega-nav__sub-items { /* list of sub items */ }
.mega-nav--mobile .mega-nav__sub-items:not(:last-child) {
  margin-bottom: var(--space-lg);
}
.mega-nav--mobile .mega-nav__sub-item { /* sub item */
  border-bottom: 1px solid var(--color-contrast-lower);
}
.mega-nav--mobile .mega-nav__sub-link { /* sub link */
  display: block;
  color: var(--color-contrast-higher);
  text-decoration: none;
  padding: var(--space-xxs) 0;
}
.mega-nav--mobile .mega-nav__quick-link { /* search quick links */
  display: block;
  color: var(--color-contrast-higher);
  text-decoration: none;
  border-bottom: 1px solid var(--color-contrast-lower);
  padding: var(--space-xs) 0;
}
.mega-nav--mobile .mega-nav__sub-nav--layout-1 { /* layout 1 -> tabbed content */ }
.mega-nav--mobile .mega-nav__sub-nav--layout-1 .mega-nav__sub-items {
  margin-bottom: 0;
}
.mega-nav--mobile .mega-nav__sub-nav--layout-1 .mega-nav__tabs {
  display: none; /* hide tabbed content on smaller screens */
}
.mega-nav--mobile .mega-nav__sub-nav--layout-3 { /* layout 3 -> gallery */
  padding-top: var(--space-md);
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); /* auto add new cols */
}
.mega-nav--mobile .mega-nav__item--expanded .mega-nav__arrow-icon .icon__group { /* animated arrow icon */ }
.mega-nav--mobile .mega-nav__item--expanded .mega-nav__arrow-icon .icon__group > *:first-child {
  transform: translateY(-3px) rotate(-90deg);
}
.mega-nav--mobile .mega-nav__item--expanded .mega-nav__arrow-icon .icon__group > *:last-child {
  transform: translateY(-3px) rotate(90deg);
}
.mega-nav--mobile .mega-nav__item--expanded .mega-nav__sub-nav-wrapper {
  display: block;
}
.mega-nav--mobile .mega-nav__item--expanded .mega-nav__sub-nav-wrapper > * {
  animation: mega-nav-entry-animation 0.5s var(--ease-out);
}

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

--desktop - style affecting only big screens 👇

-------------------------------- */
.mega-nav--desktop .mega-nav__icon-btns--mobile, .mega-nav--desktop .mega-nav__sub-nav-wrapper, .mega-nav--desktop .mega-nav__search, .mega-nav--desktop .mega-nav__label {
  display: none;
}
.mega-nav--desktop .mega-nav__logo {
  flex-shrink: 0;
  margin-right: var(--space-sm);
}
.mega-nav--desktop .mega-nav__nav {
  flex-grow: 1;
  height: 100%;
}
.mega-nav--desktop .mega-nav__nav-inner {
  height: 100%;
  display: flex;
  justify-content: space-between; /* navigation layout - change to "flex-end" to push the navigation to the right */
}
.mega-nav--desktop .mega-nav__items {
  display: flex;
  height: 100%;
}
.mega-nav--desktop .mega-nav__item {
  display: flex;
  align-items: center;
}
.mega-nav--desktop .mega-nav__control {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 var(--space-md);
  height: 100%;
  font-size: var(--text-sm);
  color: var(--color-contrast-higher);
  text-decoration: none;
  transition: 0.2s;
}
.mega-nav--desktop .mega-nav__control::after { /* marker */
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-contrast-higher);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.mega-nav--desktop .mega-nav__control .mega-nav__arrow-icon {
  margin-left: var(--space-xxs);
}
.mega-nav--desktop .mega-nav__control:hover {
  cursor: pointer;
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.05);
}
.mega-nav--desktop .mega-nav__sub-nav-wrapper, .mega-nav--desktop .mega-nav__search {
  position: absolute;
  top: var(--mega-nav-height);
  left: 0;
  width: 100%;
  background-color: var(--color-bg);
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - var(--mega-nav-height) - var(--mega-nav-offset-y, 0px)); /* set --mega-nav-offset-y in JS */
  overflow: auto;
}
.mega-nav--desktop .mega-nav__sub-nav, .mega-nav--desktop .mega-nav__search-inner {
  width: calc(100% - 2 * var(--component-padding));
  margin: 0 auto;
  padding: var(--space-xl) 0;
}
.mega-nav--desktop .mega-nav__sub-nav .mega-nav__label, .mega-nav--desktop .mega-nav__search-inner .mega-nav__label {
  display: block;
}
.mega-nav--desktop .mega-nav__sub-nav {
  max-width: var(--mega-nav-content-max-width);
}
.mega-nav--desktop .mega-nav__search-inner {
  max-width: var(--max-width-xs); /* reduce max-width for search content */
}
.mega-nav--desktop .mega-nav__label {
  margin-bottom: var(--space-md);
}
.mega-nav--desktop .mega-nav__sub-item:not(:last-child) {
  margin-bottom: var(--space-xxs);
}
.mega-nav--desktop .mega-nav__sub-link {
  font-size: var(--text-sm);
  color: var(--color-contrast-higher);
  text-decoration: none;
}
.mega-nav--desktop .mega-nav__sub-link:hover {
  text-decoration: underline;
}
.mega-nav--desktop .mega-nav__quick-link { /* search quick links */
  display: inline-block;
  margin-bottom: var(--space-xxs);
  font-size: var(--text-sm);
  color: var(--color-contrast-higher);
  text-decoration: none;
}
.mega-nav--desktop .mega-nav__quick-link:hover {
  text-decoration: underline;
}
.mega-nav--desktop .mega-nav__btn {
  font-size: var(--text-sm);
  margin-left: var(--space-sm);
}
.mega-nav--desktop .mega-nav__sub-nav--layout-1 { /* layout 1 -> tabbed content */ }
.mega-nav--desktop .mega-nav__sub-nav--layout-1 .mega-nav__sub-items {
  display: none; /* hide links */
}
.mega-nav--desktop .mega-nav__sub-nav--layout-1 .mega-nav__tabs {
  display: flex;
}
.mega-nav--desktop .mega-nav__sub-nav--layout-2 { /* layout 2 -> multi lists */
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-sm);
}
.mega-nav--desktop .mega-nav__sub-nav--layout-3 { /* layout 3 -> gallery */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.mega-nav--desktop .mega-nav__sub-nav--layout-4 { /* layout 4 -> single list */
  text-align: center;
}
.mega-nav--desktop .mega-nav__sub-nav--layout-4 .mega-nav__sub-link {
  font-size: var(--text-lg);
}
.mega-nav--desktop {
  /* tabs */
}
.mega-nav--desktop .mega-nav__tabs-controls > *:not(:last-child) {
  border-bottom: 1px solid var(--color-contrast-lower);
}
.mega-nav--desktop .mega-nav__tabs-control {
  display: block;
  width: 100%;
  padding: var(--space-xs);
  overflow: hidden;
  color: var(--color-contrast-higher);
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}
.mega-nav--desktop .mega-nav__tabs-control .icon {
  opacity: 0;
  transform: translateX(-10px);
  transition: transform 0.5s var(--ease-out), opacity 0.5s;
}
.mega-nav--desktop .mega-nav__tabs-control:hover, .mega-nav--desktop .mega-nav__tabs-control[aria-selected=true] {
  color: var(--color-primary);
}
.mega-nav--desktop .mega-nav__tabs-control[aria-selected=true] .icon {
  opacity: 1;
  transform: translateX(0px);
}
.mega-nav--desktop .mega-nav__tabs-img {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: opacity 0.3s;
}
.mega-nav--desktop .mega-nav__tabs-img:hover {
  opacity: 0.85;
}
.mega-nav--desktop .mega-nav__item--expanded .mega-nav__control {
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.05);
}
.mega-nav--desktop .mega-nav__item--expanded .mega-nav__control::after { /* marker */
  opacity: 1;
}
.mega-nav--desktop .mega-nav__item--expanded .mega-nav__sub-nav-wrapper {
  display: block;
}
.mega-nav--desktop .mega-nav__item--expanded .mega-nav__sub-nav {
  animation: mega-nav-entry-animation 0.5s var(--ease-out);
}
.mega-nav--desktop {
  /* icon animation on click */
}
.mega-nav--desktop:not([data-hover=on]) .mega-nav__item--expanded .mega-nav__arrow-icon .icon__group {
  transform: rotate(-90deg);
}
.mega-nav--desktop:not([data-hover=on]) .mega-nav__item--expanded .mega-nav__arrow-icon .icon__group > *:first-child, .mega-nav--desktop:not([data-hover=on]) .mega-nav__item--expanded .mega-nav__arrow-icon .icon__group *:last-child {
  stroke-dashoffset: 0;
  transform: translateY(0px);
}
.mega-nav--desktop {
  /* icon buttons */
}
.mega-nav--desktop .mega-nav__icon-btn {
  border-radius: 50%;
  margin-left: var(--space-xxxxs);
}
.mega-nav--desktop .mega-nav__icon-btn:hover,
.mega-nav--desktop .mega-nav__icon-btn--state-b {
  background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.05);
}
.mega-nav--desktop .mega-nav__search--is-visible {
  display: block;
}
.mega-nav--desktop .mega-nav__search--is-visible .mega-nav__search-inner {
  animation: mega-nav-entry-animation 0.5s var(--ease-out);
}

/* animations */
@keyframes mega-nav-entry-animation {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
/* used in JS - detect when the menu needs to switch from --mobile to --desktop layout */
[class*=mega-nav--desktop]::before {
  display: none;
  content: "mobile";
}

@media (min-width: 32rem) {
  .mega-nav--desktop\@xs::before {
    content: "desktop";
  }
}
@media (min-width: 48rem) {
  .mega-nav--desktop\@sm::before {
    content: "desktop";
  }
}
@media (min-width: 64rem) {
  .mega-nav--desktop\@md::before {
    content: "desktop";
  }
}
@media (min-width: 80rem) {
  .mega-nav--desktop\@lg::before {
    content: "desktop";
  }
}
@media (min-width: 90rem) {
  .mega-nav--desktop\@xl::before {
    content: "desktop";
  }
}
/* -------------------------------- 

File#: _3_testimonial-banner
Title: Testimonial Banner
Descr: A banner containing a slideshow of testimonials
Usage: codyhouse.co/license

-------------------------------- */
.t-banner {
  --slideshow-fade-transition-duration: 0.4s;
  --slideshow-slide-transition-duration: 0.4s;
  position: relative;
}

/* background images slideshow */
.t-banner__bg-slideshow {
  --slideshow-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  /* inner glow visibile on dark mode */
}
.t-banner__bg-slideshow::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  box-shadow: var(--inner-glow);
  pointer-events: none;
  border-radius: inherit;
}
.t-banner__bg-slideshow .slideshow__item {
  background-color: var(--color-bg-light);
}

/* background image slide */
.t-banner__figure {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 100%;
  height: 70%;
}
.t-banner__figure img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.15;
}
.t-banner__figure {
  /* image overlay gradient */
}
.t-banner__figure::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, hsla(var(--color-bg-light-h), var(--color-bg-light-s), var(--color-bg-light-l), 0), var(--color-bg-light));
}
@media (min-width: 64rem) {
  .t-banner__figure {
    width: 50%;
    height: 100%;
  }
  .t-banner__figure::after {
    height: 100%;
    width: 50%;
    background: linear-gradient(270deg, hsla(var(--color-bg-light-h), var(--color-bg-light-s), var(--color-bg-light-l), 0), var(--color-bg-light));
  }
}

.t-banner__content-slideshow .slideshow__item {
  /* set the slideshow height equal to the height of the first slide element  */
  position: absolute;
  height: 100%;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}
.t-banner__content-slideshow .slideshow__item:first-child {
  position: relative;
  height: auto;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}
@media (min-width: 32rem) {
  .t-banner__content-slideshow .slideshow__item {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }
}
@media (min-width: 64rem) {
  .t-banner__content-slideshow .slideshow__item {
    padding-left: 0;
    padding-right: 0;
  }
}

.t-banner__quote {
  text-align: center;
  padding: var(--space-md) 0;
  line-height: 1.58;
  position: relative;
}
.t-banner__quote::before {
  content: '"';
  position: absolute;
  transform: translateX(-1ch);
}
@media (min-width: 64rem) {
  .t-banner__quote {
    text-align: left;
    padding: var(--space-sm) 0 var(--space-sm) var(--space-xl);
  }
}

/* navigation arrows */
.t-banner__control {
  --t-banner-control-gap: 12px;
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
}
.t-banner__control:first-of-type {
  transform: translateY(50%) translateX(calc(-100% - var(--t-banner-control-gap) / 2));
}
.t-banner__control:last-of-type {
  transform: translateY(50%) translateX(calc(var(--t-banner-control-gap) / 2));
}
@media (min-width: 64rem) {
  .t-banner__control {
    bottom: 50%;
  }
  .t-banner__control:first-of-type {
    left: 0;
    transform: translateY(50%) translateX(-50%);
  }
  .t-banner__control:last-of-type {
    left: auto;
    right: 0;
    transform: translateY(50%) translateX(50%);
  }
}

.t-banner__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.95);
  color: var(--color-white);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  will-change: transform;
}
.t-banner__btn:hover {
  background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 1);
}
.t-banner__btn:active {
  transform: translateY(2px);
}
.t-banner__btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

File#: _4_intro
Title: Intro
Descr: Intro section including the main header and a hero component
Usage: codyhouse.co/license

-------------------------------- */
.intro__bg {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.intro__bg > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.5;
}

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

File#: _0_common
Title: Common
Descr: 共通

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

File#: _0_form
Title: Form
Descr: 共通フォーム

-------------------------------- */
/* -- form#mail_form, dl, dt, dd -------------------------------------------------------------------------------- */
form#mail_form {
  width: unset;
  margin: auto;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  line-height: 1.8;
}
form#mail_form > p {
  margin-top: var(--space-lg);
}

form#mail_form dl {
  width: 100%;
  margin: 0 auto;
  border-bottom: none;
}
form#mail_form dl + dl {
  margin-top: var(--space-md);
}

form#mail_form dl:after,
form#mail_form dl dt:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

form#mail_form dl dt {
  width: unset;
  float: unset;
  padding: 0;
  margin-bottom: var(--space-xs);
  text-align: left;
  font-weight: bold;
}

form#mail_form dl dd {
  width: unset;
  float: unset;
  padding: 0;
}

form#mail_form dl dt i {
  float: unset;
  position: relative;
  top: unset;
  margin: 0 var(--space-xxs);
  font-weight: normal;
}

/* -- span.required, span.optional -------------------------------------------------------------------------------- */
form#mail_form dl dt span.required,
form#mail_form dl dt span.optional {
  display: inline-block;
  font-size: 85%;
  color: #ffffff;
  padding: var(--space-xxxxs) var(--space-xxxxs);
  border-radius: var(--radius-md);
  line-height: 1;
  text-indent: 0.2em;
}

form#mail_form dl dt span.required {
  background: var(--color-accent-light);
  border: 1px solid var(--color-accent-light);
}

form#mail_form dl dt span.optional {
  background: var(--color-contrast-lower);
  border: 1px solid var(--color-contrast-lower);
}

/* -- error message -------------------------------------------------------------------------------- */
form#mail_form dl dd span.error_blank,
form#mail_form dl dd span.error_format,
form#mail_form dl dd span.error_match {
  display: block;
  color: #ff0000;
  margin-top: 5px;
}

/* -- loading -------------------------------------------------------------------------------- */
div.loading-layer {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 10000;
}

span.loading {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-top: 5px solid rgba(255, 255, 255, 0.2);
  border-right: 5px solid rgba(255, 255, 255, 0.2);
  border-bottom: 5px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid #ffffff;
  transform: translateZ(0);
  animation: load-circle 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
}
@keyframes load-circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* -- input, select, textarea -------------------------------------------------------------------------------- */
/* -- ul, li -------------------------------------------------------------------------------- */
/* -- input design -------------------------------------------------------------------------------- */
form#mail_form input[name=postal] + a {
  display: inline-block;
  padding: 7px 20px;
  border: 1px solid #46b8da;
  border-radius: 0;
  background: #5bc0de;
  font-size: 16px;
  line-height: normal;
  color: #ffffff;
  text-decoration: none;
}

form#mail_form input[name=postal] + a:hover {
  cursor: pointer;
  background: #31b0d5;
  border: 1px solid #269abc;
}

form#mail_form input[name=address] {
  width: calc(96% - 2px);
}

/* -- button -------------------------------------------------------------------------------- */
form#mail_form p#form_submit {
  width: unset;
  margin: var(--space-lg) auto 0;
  padding: unset;
  text-align: center;
}

form#mail_form input[type=button]:hover {
  border: none;
}

form#mail_form input[type=button] {
  margin-left: unset;
  margin: auto;
}

/* -- responsive ----------------------------------------------------------------------------------------------------------------------- */
/* 768pixel start */
@media screen and (max-width: 768px) {
  /* -- form#mail_form, dl, dt, dd -------------------------------------------------------------------------------- */
  /* -- span.required, span.optional -------------------------------------------------------------------------------- */
  /* -- input design -------------------------------------------------------------------------------- */
  /* -- button -------------------------------------------------------------------------------- */
}
/* 768pixel end */
/* Hides the reCAPTCHA on every page */
.grecaptcha-badge {
  display: none !important;
}

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

File#: _0_sw
Title: SW
Descr: 共通パーツ用

-------------------------------- */
.sw-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center; /* ボタン自体を中央に寄せる */
}
@media (min-width: 64rem) {
  .sw-cta {
    position: absolute;
  }
}
.sw-cta .sw-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center; /* 中の要素を中央寄せ */
  gap: var(--space-md); /* テキストと矢印の間の距離 */
  text-decoration: none;
  background: var(--color-primary);
  color: var(--color-contrast-higher);
  width: 100%;
  padding: var(--space-xs);
  font-size: var(--text-md);
}
@media (min-width: 64rem) {
  .sw-cta .sw-cta__btn {
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
  }
}
.sw-cta .sw-cta__btn {
  font-weight: 700;
  position: relative;
  transition: background 0.3s;
}
.sw-cta .sw-cta__btn span {
  position: relative;
}
.sw-cta .sw-cta__btn .sw-cta__arrow {
  display: inline-block;
  position: relative; /* absoluteをやめて相対配置に */
  width: 3em; /* 線の長さ */
  height: 1px;
  background-color: currentColor;
  transition: all 0.3s ease;
  /* 先端の円 */
}
.sw-cta .sw-cta__btn .sw-cta__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: currentColor;
  border-radius: 50%;
}
.sw-cta .sw-cta__btn:hover .sw-cta__arrow {
  width: 4em; /* ホバーで線が伸びる */
  margin-right: -1em; /* 伸びた分外側に（お好みで） */
}

.sw-box {
  padding: var(--space-lg) var(--space-md);
  border-radius: 4em 0 4em 0;
  background-color: var(--color-white);
  position: relative;
  border: solid 0.2em var(--color-contrast-higher);
}
@media (min-width: 32rem) {
  .sw-box {
    padding: var(--space-lg);
  }
}
.sw-box::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 4em 0 4em 0;
  background: var(--color-accent);
  margin-top: 0.5em;
  margin-left: 0.5em;
}

.sw-heading {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  letter-spacing: 0.1em;
}
.sw-heading::before {
  flex-shrink: 0;
  content: "";
  width: 2.5em;
  height: 2.5em;
  display: block;
  background: var(--color-secondary);
  border-radius: 0 100% 0 100%;
  border-radius: 100%;
}

.sw-subheading {
  color: var(--color-primary-darker);
  font-weight: 700;
  font-family: var(--font-secondary);
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding-left: calc(var(--space-md) + var(--space-xxs));
  padding-bottom: var(--space-xxxxs);
  position: relative;
}
.sw-subheading::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: var(--space-xs);
  height: 100%;
  background: var(--color-primary-darker);
  border-radius: 1em;
}

.sw-photo {
  border-radius: 25% 0 25% 0;
  overflow: hidden;
  vertical-align: bottom;
}

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

File#: _0_home
Title: Home
Descr: トップページ

-------------------------------- */
.home-hero__area {
  position: relative;
}
.home-hero__area::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-image: url(/assets/img/intro_bg.jpg);
  mix-blend-mode: normal;
  opacity: 50%;
  z-index: -1;
}

.home-hero__title span {
  position: relative;
}
.home-hero__title span::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  transition: 0.8s 0.2s all;
}
.home-hero__title.reveal-fx--is-visible span::after {
  width: 0%;
}

.home-hero__points-item {
  color: var(--color-bg);
  background: var(--color-white);
  border-radius: 100%;
  font-size: 90%;
  width: 9em;
  height: 9em;
  font-weight: 700;
  font-size: 2.6666666667vw;
}
@media (min-width: 32rem) {
  .home-hero__points-item {
    font-size: 13.6px;
  }
}
@media (min-width: 64rem) {
  .home-hero__points-item {
    font-size: var(--text-base);
  }
}
@media (min-width: 90rem) {
  .home-hero__points-item {
    font-size: var(--text-md);
  }
}