/* -------------------------------- 

File#: _1_main-header
Title: Main Header
Descr: Accessible website navigation
Usage: codyhouse.co/license

-------------------------------- */
/* reset */
*, *::after, *::before {
  box-sizing: border-box;
}

a{color:#333;text-decoration:none}
a:hover,a:active{color:#2255cb;text-decoration:underline}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0 0% 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230 7% 23%);
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230 13% 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250 84% 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

    h2 {
    font-size: 2.44rem;
  }

    h3 {
    font-size: 1.75rem;
  }

    h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --mf1-color-primary-hsl: 250, 84%, 54%;
  --mf1-color-bg-hsl: 0, 0%, 100%;
  --mf1-color-contrast-high-hsl: 230, 7%, 23%;
  --mf1-color-contrast-higher-hsl: 230, 13%, 9%;
  --mf1-color-contrast-lower-hsl: 240, 4%, 85%;
  --mf1-color-contrast-medium-hsl: 225, 4%, 47%;
  --mf1-color-bg-dark-hsl: 240, 4%, 95%;
  --mf1-color-white-hsl: 0, 0%, 100%;
  --mf1-color-primary-darker-hsl: 250, 84%, 38%;
  --mf1-color-primary-light-hsl: 250, 84%, 60%;
  --mf1-color-bg-lighter-hsl: 0, 0%, 100%;
  --mf1-color-black-hsl: 231, 15%, 9%;
  --mf1-color-bg-light-hsl: 0, 0%, 100%;

  /* spacing */
  --mf1-space-2xs: 0.375rem;
  --mf1-space-sm: 0.75rem;
  --mf1-space-md: 1.25rem;

  /* typography */
  --mf1-text-lg: 1.25rem;
  --mf1-text-sm: 0.833rem;
}

@media(min-width: 64rem){
  :root {
    /* spacing */
    --mf1-space-2xs: 0.5625rem;
    --mf1-space-sm: 1.125rem;
    --mf1-space-md: 2rem;

    /* typography */
    --mf1-text-lg: 1.75rem;
    --mf1-text-sm: 1rem;
  }
}

/* buttons */
.mf1-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  white-space: nowrap;
  text-decoration: none;
  background: hsl(var(--mf1-color-bg-dark-hsl));
  color: hsl(var(--mf1-color-contrast-higher-hsl));
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.2s ease;
  will-change: transform;
  padding: var(--mf1-space-2xs) var(--mf1-space-sm);
  border-radius: 0.25em;
}

.mf1-btn:focus-visible {
  box-shadow: 0px 0px 0px 2px hsl(var(--mf1-color-bg-hsl)), 0px 0px 0px 4px hsla(var(--mf1-color-contrast-higher-hsl), 0.15);
  outline: none;
}

.mf1-btn:active {
  transform: translateY(2px);
}

.mf1-btn--primary {
  background: hsl(var(--mf1-color-primary-hsl));
  color: hsl(var(--mf1-color-white-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--mf1-color-white-hsl), 0.15), 0px 1px 3px hsla(var(--mf1-color-primary-darker-hsl), 0.25), 0px 2px 6px hsla(var(--mf1-color-primary-darker-hsl), 0.1), 0px 6px 10px -2px hsla(var(--mf1-color-primary-darker-hsl), 0.25);
}

.mf1-btn--primary:hover {
  background: hsl(var(--mf1-color-primary-light-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--mf1-color-white-hsl), 0.15), 0px 1px 2px hsla(var(--mf1-color-primary-darker-hsl), 0.25), 0px 1px 4px hsla(var(--mf1-color-primary-darker-hsl), 0.1), 0px 3px 6px -2px hsla(var(--mf1-color-primary-darker-hsl), 0.25);
}

.mf1-btn--primary:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--mf1-color-white-hsl), 0.15), 0px 1px 2px hsla(var(--mf1-color-primary-darker-hsl), 0.25), 0px 1px 4px hsla(var(--mf1-color-primary-darker-hsl), 0.1), 0px 3px 6px -2px hsla(var(--mf1-color-primary-darker-hsl), 0.25), 0px 0px 0px 2px hsl(var(--mf1-color-bg-hsl)), 0px 0px 0px 4px hsl(var(--mf1-color-primary-hsl));
}

.mf1-btn--subtle {
  background: hsl(var(--mf1-color-bg-lighter-hsl));
  color: hsl(var(--mf1-color-contrast-higher-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--mf1-color-white-hsl), 0.1), 0px 0px 0px 1px hsla(var(--mf1-color-black-hsl), 0.02), 0px 1px 3px -1px hsla(var(--mf1-color-black-hsl), 0.2), 0 0.3px 0.4px rgba(0, 0, 0, 0.025),0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
}

.mf1-btn--subtle:hover {
  background: hsl(var(--mf1-color-bg-light-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--mf1-color-white-hsl), 0.1), 0px 0px 0px 1px hsla(var(--mf1-color-black-hsl), 0.02), 0px 1px 3px -1px hsla(var(--mf1-color-black-hsl), 0.2), 0 0.1px 0.3px rgba(0, 0, 0, 0.06),0 1px 2px rgba(0, 0, 0, 0.12);
}

.mf1-btn--subtle:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--mf1-color-white-hsl), 0.1), 0px 0px 0px 1px hsla(var(--mf1-color-black-hsl), 0.02), 0px 1px 3px -1px hsla(var(--mf1-color-black-hsl), 0.2), 0 0.1px 0.3px rgba(0, 0, 0, 0.06),0 1px 2px rgba(0, 0, 0, 0.12), 0px 0px 0px 2px hsl(var(--mf1-color-bg-hsl)), 0px 0px 0px 4px hsl(var(--mf1-color-contrast-high-hsl));
}

/* component */
:root {
  --header-height: 50px;
}
@media (min-width: 64rem) {
  :root {
    --header-height: 70px;
  }
}

.header {
  height: var(--header-height);
  width: 100%;
  background-color: hsl(var(--mf1-color-bg-hsl));
  z-index: 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: hsl(var(--mf1-color-bg-hsl));
  box-shadow: 0 0.9px 1.5px rgba(0, 0, 0, 0.03),0 3.1px 5.5px rgba(0, 0, 0, 0.08),0 14px 25px rgba(0, 0, 0, 0.12);
  overflow: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  display: none;
}
.header__nav::before {
  content: "";
  display: block;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: var(--header-height);
  background: inherit;
  border-bottom: 1px solid hsl(var(--mf1-color-contrast-lower-hsl));
}

.header__nav--is-visible {
  display: block;
}

.header__nav-inner {
  padding: var(--mf1-space-md);
}

.header__label {
  font-size: var(--mf1-text-sm);
  color: hsl(var(--mf1-color-contrast-medium-hsl));
  margin-bottom: var(--mf1-space-sm);
}

.header__item {
  margin-bottom: var(--mf1-space-sm);
}

.header__link {
  font-size: var(--mf1-text-lg);
  color: hsl(var(--mf1-color-contrast-higher-hsl));
  text-decoration: none;
}
.header__link:hover, .header__link[aria-current] {
  color: hsl(var(--mf1-color-primary-hsl));
}

.header__nav-btn {
  font-size: var(--mf1-text-lg);
  width: 100%;
}

.header__item--divider {
  height: 1px;
  width: 100%;
  background-color: hsl(var(--mf1-color-contrast-lower-hsl));
}

.header__trigger {
  position: relative;
  z-index: 2;
}

.header__trigger-icon {
  position: relative;
  display: block;
  height: 2px;
  width: 1em;
  background-color: currentColor;
  margin-right: var(--mf1-space-2xs);
  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 {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.header__trigger-icon::after {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

.header__trigger[aria-expanded=true] .header__trigger-icon {
  background-color: transparent;
}
.header__trigger[aria-expanded=true] .header__trigger-icon::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__trigger[aria-expanded=true] .header__trigger-icon::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media (min-width: 64rem) {
  .header__nav {
    position: static;
    background-color: transparent;
    width: auto;
    max-height: none;
    box-shadow: none;
    overflow: visible;
    -ms-scroll-chaining: chained;
        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);
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
  }

  .header__list {
    display: flex;
    align-items: center;
  }

  .header__item {
    display: inline-block;
    margin-bottom: 0;
    margin-left: var(--mf1-space-md);
  }

  .header__link, .header__nav-btn {
    font-size: 1.125rem;
  }

  .header__item--divider {
    height: 1em;
    width: 1px;
  }

  .header__trigger {
    display: none;
  }
}

/* utility classes */
.mf1-max-width-lg {
  max-width: 80rem;
}

.mf1-container {
  width: calc(100% - 2*var(--mf1-space-md));
  margin-left: auto;
  margin-right: auto;
}

.mf1-position-relative {
  position: relative;
}
/* -------------------------------- 

File#: _1_radios-checkboxes
Title: Radios and Checkboxes
Descr: Custom radio and checkbox buttons
Usage: codyhouse.co/license

-------------------------------- */
/* reset */
*, *::after, *::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0 0% 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230 7% 23%);
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230 13% 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250 84% 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

    h2 {
    font-size: 2.44rem;
  }

    h3 {
    font-size: 1.75rem;
  }

    h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --rm4-color-primary-hsl: 250, 84%, 54%;
  --rm4-color-bg-hsl: 0, 0%, 100%;
  --rm4-color-contrast-high-hsl: 230, 7%, 23%;
  --rm4-color-contrast-higher-hsl: 230, 13%, 9%;
  --rm4-color-contrast-low-hsl: 240, 4%, 65%;
  --rm4-color-bg-dark-hsl: 240, 4%, 95%;
  --rm4-color-contrast-lower-hsl: 240, 4%, 85%;

  /* spacing */
  --rm4-space-4xs: 0.125rem;
  --rm4-space-3xs: 0.25rem;
  --rm4-space-2xs: 0.375rem;
  --rm4-space-md: 1.25rem;
  --rm4-space-xs: 0.5rem;
  --rm4-space-sm: 0.75rem;

  /* typography */
  --rm4-text-sm: 0.833rem;
  --rm4-text-md: 1.2rem;
}

@media(min-width: 64rem){
  :root {
    /* spacing */
    --rm4-space-4xs: 0.1875rem;
    --rm4-space-3xs: 0.375rem;
    --rm4-space-2xs: 0.5625rem;
    --rm4-space-md: 2rem;
    --rm4-space-xs: 0.75rem;
    --rm4-space-sm: 1.125rem;

    /* typography */
    --rm4-text-sm: 1rem;
    --rm4-text-md: 1.5625rem;
  }
}

/* form elements */
.rm4-form-control {
  font-size: 1em;
  padding: var(--rm4-space-2xs) var(--rm4-space-xs);
  background: hsl(var(--rm4-color-bg-dark-hsl));
  line-height: 1.2;
  box-shadow: inset 0px 0px 0px 1px hsl(var(--rm4-color-contrast-lower-hsl));
  transition: all 0.2s ease;
  border-radius: 0.25em;
}

.rm4-form-control::placeholder {
  opacity: 1;
  color: hsl(var(--rm4-color-contrast-low-hsl));
}

.rm4-form-control:focus, .rm4-form-control:focus-within {
  background: hsl(var(--rm4-color-bg-hsl));
  box-shadow: inset 0px 0px 0px 1px hsla(var(--rm4-color-contrast-lower-hsl), 0), 0px 0px 0px 2px hsl(var(--rm4-color-primary-hsl)), 0 0.3px 0.4px rgba(0, 0, 0, 0.025),0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
  outline: none;
}

.rm4-form-legend {
  color: hsl(var(--rm4-color-contrast-higher-hsl));
  line-height: 1.2;
  font-size: var(--rm4-text-md);
  margin-bottom: var(--rm4-space-sm);
}

/* component */
:root {
  /* radios + checkboxes */
  --checkbox-radio-size: 18px;
  --checkbox-radio-gap: var(--rm4-space-2xs);
  /* gap between button and label */
  --checkbox-radio-border-width: 1px;
  --checkbox-radio-line-height: 1.4;
  /* radios */
  --radio-marker-size: 8px;
  /* checkboxes */
  --checkbox-marker-size: 12px;
  --checkbox-radius: 4px;
}

/* hide native buttons */
.radio,
.checkbox {
  position: absolute;
  padding: 0;
  margin: 0;
  margin-top: calc((1em * var(--checkbox-radio-line-height) - var(--checkbox-radio-size)) / 2);
  opacity: 0;
  height: var(--checkbox-radio-size);
  width: var(--checkbox-radio-size);
  pointer-events: none;
}

/* label */
.radio + label,
.checkbox + label {
  display: inline-block;
  line-height: var(--checkbox-radio-line-height);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  padding-left: calc(var(--checkbox-radio-size) + var(--checkbox-radio-gap));
}

/* custom inputs - basic style */
.radio + label::before,
.checkbox + label::before {
  content: "";
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  top: -0.1em;
  margin-left: calc(-1 * (var(--checkbox-radio-size) + var(--checkbox-radio-gap)));
  flex-shrink: 0;
  width: var(--checkbox-radio-size);
  height: var(--checkbox-radio-size);
  background-color: hsl(var(--rm4-color-bg-hsl));
  border-width: var(--checkbox-radio-border-width);
  border-color: hsla(var(--rm4-color-contrast-low-hsl), 0.65);
  border-style: solid;
  box-shadow: 0 0.1px 0.3px rgba(0, 0, 0, 0.06),0 1px 2px rgba(0, 0, 0, 0.12);
  background-repeat: no-repeat;
  background-position: center;
  margin-right: var(--checkbox-radio-gap);
  transition: border 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, border 0.2s;
  transition: transform 0.2s, border 0.2s, -webkit-transform 0.2s;
}

/* :hover */
.radio:not(:checked):not(:focus) + label:hover::before,
.checkbox:not(:checked):not(:focus) + label:hover::before {
  border-color: hsla(var(--rm4-color-contrast-low-hsl), 1);
}

/* radio only style */
.radio + label::before {
  border-radius: 50%;
}

/* checkbox only style */
.checkbox + label::before {
  border-radius: var(--checkbox-radius);
}

/* :checked */
.radio:checked + label::before,
.checkbox:checked + label::before {
  background-color: hsl(var(--rm4-color-primary-hsl));
  box-shadow: 0 0.1px 0.3px rgba(0, 0, 0, 0.06),0 1px 2px rgba(0, 0, 0, 0.12);
  border-color: hsl(var(--rm4-color-primary-hsl));
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

/* :active */
.radio:active + label::before,
.checkbox:active + label::before {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

/* :checked:active */
.radio:checked:active + label::before,
.checkbox:checked:active + label::before {
  -webkit-transform: none;
          transform: none;
  transition: none;
}

/* radio button icon */
.radio:checked + label::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg class='nc-icon-wrapper' fill='%23ffffff'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23ffffff'%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
  background-size: var(--radio-marker-size);
}

/* checkbox button icon */
.checkbox:checked + label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpolyline points='1 6.5 4 9.5 11 2.5' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
  background-size: var(--checkbox-marker-size);
}

/* :focus */
.radio:checked:active + label::before,
.checkbox:checked:active + label::before,
.radio:focus + label::before,
.checkbox:focus + label::before {
  border-color: hsl(var(--rm4-color-primary-hsl));
  box-shadow: 0 0 0 3px hsla(var(--rm4-color-primary-hsl), 0.2);
}

/* --radio--bg, --checkbox--bg -> variation with background color */
.radio--bg + label, .checkbox--bg + label {
  padding: var(--rm4-space-4xs) var(--rm4-space-3xs);
  padding-left: calc(var(--checkbox-radio-size) + var(--checkbox-radio-gap) + var(--rm4-space-3xs));
  border-radius: 0.25em;
  transition: background 0.2s;
}

.radio--bg + label:hover, .checkbox--bg + label:hover {
  background-color: hsla(var(--rm4-color-contrast-higher-hsl), 0.075);
}

.radio--bg:active + label,
.checkbox--bg:active + label,
.radio--bg:focus + label,
.checkbox--bg:focus + label {
  background-color: hsla(var(--rm4-color-primary-hsl), 0.1);
}

/* utility classes */
.rm4-margin-left-2xs {
  margin-left: var(--rm4-space-2xs);
}

.rm4-text-sm {
  font-size: var(--rm4-text-sm);
}

.rm4-gap-3xs {
  gap: var(--rm4-space-3xs);
}

.rm4-flex-column {
  flex-direction: column;
}

.rm4-flex {
  display: flex;
}

.rm4-margin-bottom-md {
  margin-bottom: var(--rm4-space-md);
}

.rm4-gap-md {
  gap: var(--rm4-space-md);
}

.rm4-flex-wrap {
  flex-wrap: wrap;
}
/* -------------------------------- 

File#: _1_swipe-content
Title: Swipe Content
Descr: A Vanilla JavaScript plugin to detect touch interactions
Usage: codyhouse.co/license

-------------------------------- */
/* reset */
*, *::after, *::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0 0% 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230 7% 23%);
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230 13% 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250 84% 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

    h2 {
    font-size: 2.44rem;
  }

    h3 {
    font-size: 1.75rem;
  }

    h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --sr5-color-primary-hsl: 250, 84%, 54%;
  --sr5-color-bg-hsl: 0, 0%, 100%;
  --sr5-color-contrast-high-hsl: 230, 7%, 23%;
  --sr5-color-contrast-higher-hsl: 230, 13%, 9%;
  --sr5-color-contrast-low-hsl: 240, 4%, 65%;
  --sr5-color-contrast-medium-hsl: 225, 4%, 47%;
}

/* component */
.swipe-content {
  height: 280px;
  width: 280px;
  background-color: hsl(var(--sr5-color-contrast-low-hsl));
  border-radius: 0.25em;
  cursor: default;
  transition: background 0.2s;
}
.swipe-content:active {
  background-color: hsl(var(--sr5-color-contrast-medium-hsl));
}
/* -------------------------------- 

File#: _1_user-cell
Title: User Cell
Descr: Profile card containing profile image + metadata
Usage: codyhouse.co/license

-------------------------------- */
/* reset */
*, *::after, *::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0 0% 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230 7% 23%);
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230 13% 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250 84% 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

    h2 {
    font-size: 2.44rem;
  }

    h3 {
    font-size: 1.75rem;
  }

    h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --ur5-color-primary-hsl: 250, 84%, 54%;
  --ur5-color-bg-hsl: 0, 0%, 100%;
  --ur5-color-contrast-high-hsl: 230, 7%, 23%;
  --ur5-color-contrast-higher-hsl: 230, 13%, 9%;
  --ur5-color-contrast-lower-hsl: 240, 4%, 85%;
  --ur5-color-contrast-medium-hsl: 225, 4%, 47%;
  --ur5-color-bg-light-hsl: 0, 0%, 100%;
  --ur5-color-bg-lighter-hsl: 0, 0%, 100%;
  --ur5-color-bg-dark-hsl: 240, 4%, 95%;
  --ur5-color-white-hsl: 0, 0%, 100%;
  --ur5-color-black-hsl: 231, 15%, 9%;
  --ur5-color-accent-hsl: 342, 89%, 48%;

  /* spacing */
  --ur5-space-2xs: 0.375rem;
  --ur5-space-xs: 0.5rem;
  --ur5-space-sm: 0.75rem;
  --ur5-space-md: 1.25rem;

  /* typography */
  --ur5-text-sm: 0.833rem;
}

@media(min-width: 64rem){
  :root {
    /* spacing */
    --ur5-space-2xs: 0.5625rem;
    --ur5-space-xs: 0.75rem;
    --ur5-space-sm: 1.125rem;
    --ur5-space-md: 2rem;

    /* typography */
    --ur5-text-sm: 1rem;
  }
}

/* buttons */
.ur5-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  white-space: nowrap;
  text-decoration: none;
  background: hsl(var(--ur5-color-bg-dark-hsl));
  color: hsl(var(--ur5-color-contrast-higher-hsl));
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.2s ease;
  will-change: transform;
  padding: var(--ur5-space-2xs) var(--ur5-space-sm);
  border-radius: 0.25em;
}

.ur5-btn:focus-visible {
  box-shadow: 0px 0px 0px 2px hsl(var(--ur5-color-bg-hsl)), 0px 0px 0px 4px hsla(var(--ur5-color-contrast-higher-hsl), 0.15);
  outline: none;
}

.ur5-btn:active {
  transform: translateY(2px);
}

.ur5-btn--subtle {
  background: hsl(var(--ur5-color-bg-lighter-hsl));
  color: hsl(var(--ur5-color-contrast-higher-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--ur5-color-white-hsl), 0.1), 0px 0px 0px 1px hsla(var(--ur5-color-black-hsl), 0.02), 0px 1px 3px -1px hsla(var(--ur5-color-black-hsl), 0.2), 0 0.3px 0.4px rgba(0, 0, 0, 0.025),0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
}

.ur5-btn--subtle:hover {
  background: hsl(var(--ur5-color-bg-light-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--ur5-color-white-hsl), 0.1), 0px 0px 0px 1px hsla(var(--ur5-color-black-hsl), 0.02), 0px 1px 3px -1px hsla(var(--ur5-color-black-hsl), 0.2), 0 0.1px 0.3px rgba(0, 0, 0, 0.06),0 1px 2px rgba(0, 0, 0, 0.12);
}

.ur5-btn--subtle:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--ur5-color-white-hsl), 0.1), 0px 0px 0px 1px hsla(var(--ur5-color-black-hsl), 0.02), 0px 1px 3px -1px hsla(var(--ur5-color-black-hsl), 0.2), 0 0.1px 0.3px rgba(0, 0, 0, 0.06),0 1px 2px rgba(0, 0, 0, 0.12), 0px 0px 0px 2px hsl(var(--ur5-color-bg-hsl)), 0px 0px 0px 4px hsl(var(--ur5-color-contrast-high-hsl));
}

/* icons */
.ur5-icon {
  height: var(--ur5-size, 1em);
  width: var(--ur5-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

/* component */
:root {
  --user-cell-img-size: 64px;
}

.user-cell {
  font-size: 1rem;
  background: hsla(var(--ur5-color-contrast-lower-hsl), 0.5);
  padding: var(--ur5-space-sm);
  border-radius: 0.25em;
}

.user-cell__img {
  display: block;
  border-radius: 50%;
  width: var(--user-cell-img-size);
  height: var(--user-cell-img-size);
  margin-bottom: var(--ur5-space-sm);
}

.user-cell__content {
  margin-bottom: var(--ur5-space-sm);
}

.user-cell__social-icon {
  --ur5-size: 52px;
  width: var(--ur5-size);
  height: var(--ur5-size);
  display: flex;
  border-radius: 50%;
  background-color: hsl(var(--ur5-color-bg-light-hsl));
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0.1px 0.3px rgba(0, 0, 0, 0.06),0 1px 2px rgba(0, 0, 0, 0.12);
  transition: 0.2s;
}
.user-cell__social-icon svg {
  display: block;
  margin: auto;
  color: hsl(var(--ur5-color-contrast-medium-hsl));
  transition: color 0.2s;
  height: 1em;
  width: 1em;
}
.user-cell__social-icon:hover {
  background-color: hsl(var(--ur5-color-bg-lighter-hsl));
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0.3px 0.4px rgba(0, 0, 0, 0.025),0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
}
.user-cell__social-icon:hover svg {
  color: hsl(var(--ur5-color-contrast-higher-hsl));
}

@supports (grid-area: auto) {
  .user-cell {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    grid-gap: var(--ur5-space-2xs);
  }

  .user-cell__body {
    display: grid;
    grid-template-columns: var(--user-cell-img-size) 1fr;
    align-items: center;
    grid-gap: var(--ur5-space-xs);
  }

  .user-cell__img,
.user-cell__content {
    margin-bottom: 0;
  }
}

/* utility classes */
.ur5-color-contrast-medium {
  --ur5-color-o: 1;
  color: hsla(var(--ur5-color-contrast-medium-hsl), var(--ur5-color-o, 1));
}

.ur5-color-contrast-high {
  --ur5-color-o: 1;
  color: hsla(var(--ur5-color-contrast-high-hsl), var(--ur5-color-o, 1));
}

.ur5-text-gap-2xs {
  --ur5-space-multiplier: 0.25;
}

.ur5-line-height-sm {
  line-height: 1.2;
}

.ur5-text-component :where(h1, h2, h3, h4) {
  line-height: var(--ur5-heading-line-height, 1.2);
  margin-top: calc(var(--ur5-space-md) * var(--ur5-space-multiplier, 1));
  margin-bottom: calc(var(--ur5-space-sm) * var(--ur5-space-multiplier, 1));
}

.ur5-text-component :where(p, blockquote, ul li, ol li) {
  line-height: var(--ur5-body-line-height, 1.4);
}

.ur5-text-component :where(ul, ol, p, blockquote, .ur5-text-component__block) {
  margin-bottom: calc(var(--ur5-space-sm) * var(--ur5-space-multiplier, 1));
}

.ur5-text-component :where(ul, ol) {
  padding-left: 1.25em;
}

.ur5-text-component ul :where(ul, ol), .ur5-text-component ol :where(ul, ol) {
  padding-left: 1em;
  margin-bottom: 0;
}

.ur5-text-component ul {
  list-style-type: disc;
}

.ur5-text-component ol {
  list-style-type: decimal;
}

.ur5-text-component img {
  display: block;
  margin: 0 auto;
}

.ur5-text-component figcaption {
  margin-top: calc(var(--ur5-space-xs) * var(--ur5-space-multiplier, 1));
  font-size: var(--ur5-text-sm);
  text-align: center;}

.ur5-text-component em {
  font-style: italic;
}

.ur5-text-component strong {
  font-weight: bold;
}

.ur5-text-component s {
  text-decoration: line-through;
}

.ur5-text-component u {
  text-decoration: underline;
}

.ur5-text-component mark {
  background-color: hsla(var(--ur5-color-accent-hsl), 0.2);
  color: inherit;
}

.ur5-text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid hsl(var(--ur5-color-contrast-lower-hsl));
  font-style: italic;
}

.ur5-text-component hr {
  margin: calc(var(--ur5-space-md) * var(--ur5-space-multiplier, 1)) auto;
  background: hsl(var(--ur5-color-contrast-lower-hsl));
  height: 1px;
}

.ur5-text-component > *:first-child {
  margin-top: 0;
}

.ur5-text-component > *:last-child {
  margin-bottom: 0;
}

.ur5-text-component.ur5-line-height-xs {
  --ur5-heading-line-height: 1;
  --ur5-body-line-height: 1.1;
}

.ur5-text-component.ur5-line-height-sm {
  --ur5-heading-line-height: 1.1;
  --ur5-body-line-height: 1.2;
}

.ur5-text-component.ur5-line-height-md {
  --ur5-heading-line-height: 1.15;
  --ur5-body-line-height: 1.4;
}

.ur5-text-component.ur5-line-height-lg {
  --ur5-heading-line-height: 1.22;
  --ur5-body-line-height: 1.58;
}

.ur5-text-component.ur5-line-height-xl {
  --ur5-heading-line-height: 1.3;
  --ur5-body-line-height: 1.72;
}
/* -------------------------------- 

File#: _1_feature-v7
Title: Feature v7
Descr: A section containing a list of features
Usage: codyhouse.co/license

-------------------------------- */
/* reset */
*, *::after, *::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0 0% 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230 7% 23%);
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230 13% 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250 84% 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

    h2 {
    font-size: 2.44rem;
  }

    h3 {
    font-size: 1.75rem;
  }

    h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --fg6-color-primary-hsl: 250, 84%, 54%;
  --fg6-color-bg-hsl: 0, 0%, 100%;
  --fg6-color-contrast-high-hsl: 230, 7%, 23%;
  --fg6-color-contrast-higher-hsl: 230, 13%, 9%;
  --fg6-color-accent-hsl: 342, 89%, 48%;
  --fg6-color-contrast-lower-hsl: 240, 4%, 85%;

  /* spacing */
  --fg6-space-sm: 0.75rem;
  --fg6-space-md: 1.25rem;
  --fg6-space-lg: 2rem;
  --fg6-space-xs: 0.5rem;

  /* typography */
  --fg6-text-sm: 0.833rem;
}

@media(min-width: 64rem){
  :root {
    /* spacing */
    --fg6-space-sm: 1.125rem;
    --fg6-space-md: 2rem;
    --fg6-space-lg: 3.125rem;
    --fg6-space-xs: 0.75rem;

    /* typography */
    --fg6-text-sm: 1rem;
  }
}

/* component */


/* utility classes */
.fg6-text-component :where(h1, h2, h3, h4) {
  line-height: var(--fg6-heading-line-height, 1.2);
  margin-top: calc(var(--fg6-space-md) * var(--fg6-space-multiplier, 1));
  margin-bottom: calc(var(--fg6-space-sm) * var(--fg6-space-multiplier, 1));
}

.fg6-text-component :where(p, blockquote, ul li, ol li) {
  line-height: var(--fg6-body-line-height, 1.4);
}

.fg6-text-component :where(ul, ol, p, blockquote, .fg6-text-component__block) {
  margin-bottom: calc(var(--fg6-space-sm) * var(--fg6-space-multiplier, 1));
}

.fg6-text-component :where(ul, ol) {
  padding-left: 1.25em;
}

.fg6-text-component ul :where(ul, ol), .fg6-text-component ol :where(ul, ol) {
  padding-left: 1em;
  margin-bottom: 0;
}

.fg6-text-component ul {
  list-style-type: disc;
}

.fg6-text-component ol {
  list-style-type: decimal;
}

.fg6-text-component img {
  display: block;
  margin: 0 auto;
}

.fg6-text-component figcaption {
  margin-top: calc(var(--fg6-space-xs) * var(--fg6-space-multiplier, 1));
  font-size: var(--fg6-text-sm);
  text-align: center;}

.fg6-text-component em {
  font-style: italic;
}

.fg6-text-component strong {
  font-weight: bold;
}

.fg6-text-component s {
  text-decoration: line-through;
}

.fg6-text-component u {
  text-decoration: underline;
}

.fg6-text-component mark {
  background-color: hsla(var(--fg6-color-accent-hsl), 0.2);
  color: inherit;
}

.fg6-text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid hsl(var(--fg6-color-contrast-lower-hsl));
  font-style: italic;
}

.fg6-text-component hr {
  margin: calc(var(--fg6-space-md) * var(--fg6-space-multiplier, 1)) auto;
  background: hsl(var(--fg6-color-contrast-lower-hsl));
  height: 1px;
}

.fg6-text-component > *:first-child {
  margin-top: 0;
}

.fg6-text-component > *:last-child {
  margin-bottom: 0;
}

.fg6-text-component.fg6-line-height-xs {
  --fg6-heading-line-height: 1;
  --fg6-body-line-height: 1.1;
}

.fg6-text-component.fg6-line-height-sm {
  --fg6-heading-line-height: 1.1;
  --fg6-body-line-height: 1.2;
}

.fg6-text-component.fg6-line-height-md {
  --fg6-heading-line-height: 1.15;
  --fg6-body-line-height: 1.4;
}

.fg6-text-component.fg6-line-height-lg {
  --fg6-heading-line-height: 1.22;
  --fg6-body-line-height: 1.58;
}

.fg6-text-component.fg6-line-height-xl {
  --fg6-heading-line-height: 1.3;
  --fg6-body-line-height: 1.72;
}

.fg6-width-xl {
  width: 4rem;
}

.fg6-block {
  display: block;
}

.fg6-flex-shrink-0 {
  flex-shrink: 0;
}

.fg6-gap-sm {
  gap: var(--fg6-space-sm);
}

.fg6-flex {
  display: flex;
}

.fg6-gap-md {
  gap: var(--fg6-space-md);
}

.fg6-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.fg6-grid > * {
  min-width: 0;
  grid-column-end: span 12;
}

.fg6-max-width-adaptive-lg {
  max-width: 32rem;
}

@media(min-width: 48rem) {
  .fg6-max-width-adaptive-lg {
    max-width: 48rem;
  }
}

@media(min-width: 64rem) {
  .fg6-max-width-adaptive-lg {
    max-width: 64rem;
  }
}

@media(min-width: 80rem) {
  .fg6-max-width-adaptive-lg {
    max-width: 80rem;
  }
}

.fg6-container {
  width: calc(100% - 2*var(--fg6-space-md));
  margin-left: auto;
  margin-right: auto;
}

.fg6-padding-y-lg {
  padding-top: var(--fg6-space-lg);
  padding-bottom: var(--fg6-space-lg);
}

.fg6-z-index-1 {
  z-index: 1;
}

.fg6-position-relative {
  position: relative;
}

@media(min-width: 64rem){
  .fg6-width-3xl\@md {
    width: 8rem;
  }

  .fg6-col-6\@md {
    grid-column-end: span 6;
  }
}
/* -------------------------------- 

File#: _1_google-maps
Title: Google Maps
Descr: Google Maps component
Usage: codyhouse.co/license

-------------------------------- */
/* reset */
*, *::after, *::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0 0% 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230 7% 23%);
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230 13% 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250 84% 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

    h2 {
    font-size: 2.44rem;
  }

    h3 {
    font-size: 1.75rem;
  }

    h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --gz6-color-primary-hsl: 250, 84%, 54%;
  --gz6-color-bg-hsl: 0, 0%, 100%;
  --gz6-color-contrast-high-hsl: 230, 7%, 23%;
  --gz6-color-contrast-higher-hsl: 230, 13%, 9%;
}

/* component */
.google-maps {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.google-maps--ratio-4\:1 {
  padding-bottom: 25%;
}

.google-maps--ratio-3\:1 {
  padding-bottom: 33%;
}
/* -------------------------------- 

File#: _1_details-list
Title: Details List
Descr: Pairs of related information displayed in a list
Usage: codyhouse.co/license

-------------------------------- */
/* reset */
*, *::after, *::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0 0% 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230 7% 23%);
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230 13% 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250 84% 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

    h2 {
    font-size: 2.44rem;
  }

    h3 {
    font-size: 1.75rem;
  }

    h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --di3-color-primary-hsl: 250, 84%, 54%;
  --di3-color-bg-hsl: 0, 0%, 100%;
  --di3-color-contrast-high-hsl: 230, 7%, 23%;
  --di3-color-contrast-higher-hsl: 230, 13%, 9%;
  --di3-color-contrast-medium-hsl: 225, 4%, 47%;

  /* spacing */
  --di3-space-2xs: 0.375rem;
  --di3-space-md: 1.25rem;
  --di3-space-lg: 2rem;
}

@media(min-width: 64rem){
  :root {
    /* spacing */
    --di3-space-2xs: 0.5625rem;
    --di3-space-md: 2rem;
    --di3-space-lg: 3.125rem;
  }
}

/* component */
:root {
  --details-list-border-width: 1px;
  --details-list-border-opacity: 0.15;
}

.details-list--rows .details-list__item {
  border-bottom: var(--details-list-border-width) solid hsla(var(--di3-color-contrast-higher-hsl), var(--details-list-border-opacity));
}
.details-list--rows .details-list__item:last-child {
  border-bottom: none;
}

.details-list--cols .details-list__item {
  border-right: var(--details-list-border-width) solid hsla(var(--di3-color-contrast-higher-hsl), var(--details-list-border-opacity));
}
.details-list--cols .details-list__item:last-child {
  border-right: none;
}

@media (min-width: 32rem) {
  .details-list--rows\@xs .details-list__item {
    border-right: 0;
    border-bottom: var(--details-list-border-width) solid hsla(var(--di3-color-contrast-higher-hsl), var(--details-list-border-opacity));
  }
  .details-list--rows\@xs .details-list__item:last-child {
    border-bottom: none;
  }

  .details-list--cols\@xs .details-list__item {
    border-bottom: 0;
    border-right: var(--details-list-border-width) solid hsla(var(--di3-color-contrast-higher-hsl), var(--details-list-border-opacity));
  }
  .details-list--cols\@xs .details-list__item:last-child {
    border-right: none;
  }
}
@media (min-width: 48rem) {
  .details-list--rows\@sm .details-list__item {
    border-right: 0;
    border-bottom: var(--details-list-border-width) solid hsla(var(--di3-color-contrast-higher-hsl), var(--details-list-border-opacity));
  }
  .details-list--rows\@sm .details-list__item:last-child {
    border-bottom: none;
  }

  .details-list--cols\@sm .details-list__item {
    border-bottom: 0;
    border-right: var(--details-list-border-width) solid hsla(var(--di3-color-contrast-higher-hsl), var(--details-list-border-opacity));
  }
  .details-list--cols\@sm .details-list__item:last-child {
    border-right: none;
  }
}
@media (min-width: 64rem) {
  .details-list--rows\@md .details-list__item {
    border-right: 0;
    border-bottom: var(--details-list-border-width) solid hsla(var(--di3-color-contrast-higher-hsl), var(--details-list-border-opacity));
  }
  .details-list--rows\@md .details-list__item:last-child {
    border-bottom: none;
  }

  .details-list--cols\@md .details-list__item {
    border-bottom: 0;
    border-right: var(--details-list-border-width) solid hsla(var(--di3-color-contrast-higher-hsl), var(--details-list-border-opacity));
  }
  .details-list--cols\@md .details-list__item:last-child {
    border-right: none;
  }
}
@media (min-width: 80rem) {
  .details-list--rows\@lg .details-list__item {
    border-right: 0;
    border-bottom: var(--details-list-border-width) solid hsla(var(--di3-color-contrast-higher-hsl), var(--details-list-border-opacity));
  }
  .details-list--rows\@lg .details-list__item:last-child {
    border-bottom: none;
  }

  .details-list--cols\@lg .details-list__item {
    border-bottom: 0;
    border-right: var(--details-list-border-width) solid hsla(var(--di3-color-contrast-higher-hsl), var(--details-list-border-opacity));
  }
  .details-list--cols\@lg .details-list__item:last-child {
    border-right: none;
  }
}
@media (min-width: 90rem) {
  .details-list--rows\@xl .details-list__item {
    border-right: 0;
    border-bottom: var(--details-list-border-width) solid hsla(var(--di3-color-contrast-higher-hsl), var(--details-list-border-opacity));
  }
  .details-list--rows\@xl .details-list__item:last-child {
    border-bottom: none;
  }

  .details-list--cols\@xl .details-list__item {
    border-bottom: 0;
    border-right: var(--details-list-border-width) solid hsla(var(--di3-color-contrast-higher-hsl), var(--details-list-border-opacity));
  }
  .details-list--cols\@xl .details-list__item:last-child {
    border-right: none;
  }
}

/* utility classes */
.di3-color-contrast-medium {
  --di3-color-o: 1;
  color: hsla(var(--di3-color-contrast-medium-hsl), var(--di3-color-o, 1));
}

.di3-line-height-md {
  line-height: 1.4;
}

.di3-margin-bottom-2xs {
  margin-bottom: var(--di3-space-2xs);
}

.di3-font-bold {
  font-weight: 700;
}

.di3-padding-y-md {
  padding-top: var(--di3-space-md);
  padding-bottom: var(--di3-space-md);
}

.di3-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.di3-grid > * {
  min-width: 0;
  grid-column-end: span 12;
}

.di3-margin-top-lg {
  margin-top: var(--di3-space-lg);
}

@media(min-width: 64rem){
  .di3-text-center\@md {
    text-align: center;
  }

  .di3-padding-x-md\@md {
    padding-left: var(--di3-space-md);
    padding-right: var(--di3-space-md);
  }

  .di3-text-right\@md {
    text-align: right;
  }

  .di3-margin-bottom-0\@md {
    margin-bottom: 0;
  }

  .di3-justify-between\@md {
    justify-content: space-between;
  }

  .di3-flex\@md {
    display: flex;
  }

  .di3-margin-top-0\@md {
    margin-top: 0;
  }

  .di3-col-4\@md {
    grid-column-end: span 4;
  }

  .di3-col-6\@md {
    grid-column-end: span 6;
  }

  .di3-col-2\@md {
    grid-column-end: span 2;
  }
}
/* -------------------------------- 

File#: _2_form-template-v2
Title: Form Template v2
Descr: Form template example
Usage: codyhouse.co/license

-------------------------------- */
/* reset */
*, *::after, *::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0 0% 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230 7% 23%);
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230 13% 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250 84% 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

    h2 {
    font-size: 2.44rem;
  }

    h3 {
    font-size: 1.75rem;
  }

    h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --fy3-color-primary-hsl: 250, 84%, 54%;
  --fy3-color-bg-hsl: 0, 0%, 100%;
  --fy3-color-contrast-high-hsl: 230, 7%, 23%;
  --fy3-color-contrast-higher-hsl: 230, 13%, 9%;
  --fy3-color-contrast-medium-hsl: 225, 4%, 47%;
  --fy3-color-bg-dark-hsl: 240, 4%, 95%;
  --fy3-color-white-hsl: 0, 0%, 100%;
  --fy3-color-primary-darker-hsl: 250, 84%, 38%;
  --fy3-color-primary-light-hsl: 250, 84%, 60%;
  --fy3-color-contrast-lower-hsl: 240, 4%, 85%;
  --fy3-color-contrast-low-hsl: 240, 4%, 65%;

  /* spacing */
  --fy3-space-2xs: 0.375rem;
  --fy3-space-xs: 0.5rem;
  --fy3-space-sm: 0.75rem;
  --fy3-space-md: 1.25rem;
  --fy3-space-2xl: 5.25rem;

  /* typography */
  --fy3-text-xs: 0.694rem;
  --fy3-text-md: 1.2rem;
  --fy3-text-sm: 0.833rem;
}

@media(min-width: 64rem){
  :root {
    /* spacing */
    --fy3-space-2xs: 0.5625rem;
    --fy3-space-xs: 0.75rem;
    --fy3-space-sm: 1.125rem;
    --fy3-space-md: 2rem;
    --fy3-space-2xl: 8.25rem;

    /* typography */
    --fy3-text-xs: 0.8rem;
    --fy3-text-md: 1.5625rem;
    --fy3-text-sm: 1rem;
  }
}

/* buttons */
.fy3-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  white-space: nowrap;
  text-decoration: none;
  background: hsl(var(--fy3-color-bg-dark-hsl));
  color: hsl(var(--fy3-color-contrast-higher-hsl));
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.2s ease;
  will-change: transform;
  padding: var(--fy3-space-2xs) var(--fy3-space-sm);
  border-radius: 0.25em;
}

.fy3-btn:focus-visible {
  box-shadow: 0px 0px 0px 2px hsl(var(--fy3-color-bg-hsl)), 0px 0px 0px 4px hsla(var(--fy3-color-contrast-higher-hsl), 0.15);
  outline: none;
}

.fy3-btn:active {
  transform: translateY(2px);
}

.fy3-btn--primary {
  background: hsl(var(--fy3-color-primary-hsl));
  color: hsl(var(--fy3-color-white-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--fy3-color-white-hsl), 0.15), 0px 1px 3px hsla(var(--fy3-color-primary-darker-hsl), 0.25), 0px 2px 6px hsla(var(--fy3-color-primary-darker-hsl), 0.1), 0px 6px 10px -2px hsla(var(--fy3-color-primary-darker-hsl), 0.25);
}

.fy3-btn--primary:hover {
  background: hsl(var(--fy3-color-primary-light-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--fy3-color-white-hsl), 0.15), 0px 1px 2px hsla(var(--fy3-color-primary-darker-hsl), 0.25), 0px 1px 4px hsla(var(--fy3-color-primary-darker-hsl), 0.1), 0px 3px 6px -2px hsla(var(--fy3-color-primary-darker-hsl), 0.25);
}

.fy3-btn--primary:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--fy3-color-white-hsl), 0.15), 0px 1px 2px hsla(var(--fy3-color-primary-darker-hsl), 0.25), 0px 1px 4px hsla(var(--fy3-color-primary-darker-hsl), 0.1), 0px 3px 6px -2px hsla(var(--fy3-color-primary-darker-hsl), 0.25), 0px 0px 0px 2px hsl(var(--fy3-color-bg-hsl)), 0px 0px 0px 4px hsl(var(--fy3-color-primary-hsl));
}

/* form elements */
.fy3-form-control {
  font-size: 1em;
  padding: var(--fy3-space-2xs) var(--fy3-space-xs);
  background: hsl(var(--fy3-color-bg-dark-hsl));
  line-height: 1.2;
  box-shadow: inset 0px 0px 0px 1px hsl(var(--fy3-color-contrast-lower-hsl));
  transition: all 0.2s ease;
  border-radius: 0.25em;
}

.fy3-form-control::placeholder {
  opacity: 1;
  color: hsl(var(--fy3-color-contrast-low-hsl));
}

.fy3-form-control:focus, .fy3-form-control:focus-within {
  background: hsl(var(--fy3-color-bg-hsl));
  box-shadow: inset 0px 0px 0px 1px hsla(var(--fy3-color-contrast-lower-hsl), 0), 0px 0px 0px 2px hsl(var(--fy3-color-primary-hsl)), 0 0.3px 0.4px rgba(0, 0, 0, 0.025),0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
  outline: none;
}

.fy3-form-legend {
  color: hsl(var(--fy3-color-contrast-higher-hsl));
  line-height: 1.2;
  font-size: var(--fy3-text-md);
  margin-bottom: var(--fy3-space-sm);
}

.fy3-form-label {
  display: inline-block;
  font-size: var(--fy3-text-sm);
}

/* component */


/* utility classes */
.fy3-border-top {
  --fy3-border-o: 1;
  border-top: var(--fy3-border-width, 1px) var(--fy3-border-style, solid) hsla(var(--fy3-color-contrast-lower-hsl), var(--fy3-border-o, 1));
}

.fy3-padding-top-sm {
  padding-top: var(--fy3-space-sm);
}

.fy3-text-right {
  text-align: right;
}

.fy3-gap-md {
  gap: var(--fy3-space-md);
}

.fy3-flex-wrap {
  flex-wrap: wrap;
}

.fy3-flex {
  display: flex;
}

.fy3-margin-bottom-md {
  margin-bottom: var(--fy3-space-md);
}

.fy3-margin-top-2xs {
  margin-top: var(--fy3-space-2xs);
}

.fy3-color-contrast-medium {
  --fy3-color-o: 1;
  color: hsla(var(--fy3-color-contrast-medium-hsl), var(--fy3-color-o, 1));
}

.fy3-text-xs {
  font-size: var(--fy3-text-xs);
}

.fy3-width-100\% {
  width: 100%;
}

.fy3-margin-bottom-2xs {
  margin-bottom: var(--fy3-space-2xs);
}

.fy3-gap-xs {
  gap: var(--fy3-space-xs);
}

.fy3-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.fy3-grid > * {
  min-width: 0;
  grid-column-end: span 12;
}

.fy3-margin-bottom-xs {
  margin-bottom: var(--fy3-space-xs);
}

.fy3-padding-md {
  padding: var(--fy3-space-md);
}

.fy3-max-width-xs {
  max-width: 38rem;
}

.fy3-backdrop-blur-10 {
  backdrop-filter: blur(10px);
}

.fy3-bg {
  --fy3-bg-o: 1;
  background-color: hsla(var(--fy3-color-bg-hsl), var(--fy3-bg-o, 1));
}

.fy3-max-width-adaptive-lg {
  max-width: 32rem;
}

@media(min-width: 48rem) {
  .fy3-max-width-adaptive-lg {
    max-width: 48rem;
  }
}

@media(min-width: 64rem) {
  .fy3-max-width-adaptive-lg {
    max-width: 64rem;
  }
}

@media(min-width: 80rem) {
  .fy3-max-width-adaptive-lg {
    max-width: 80rem;
  }
}

.fy3-container {
  width: calc(100% - 2*var(--fy3-space-md));
  margin-left: auto;
  margin-right: auto;
}

.fy3-padding-y-2xl {
  padding-top: var(--fy3-space-2xl);
  padding-bottom: var(--fy3-space-2xl);
}

.fy3-bg-center {
  background-position: center;
}

.fy3-bg-no-repeat {
  background-repeat: no-repeat;
}

.fy3-bg-cover {
  background-size: cover;
}

.fy3-bg-opacity-90\% {
  --fy3-bg-o: 0.9;
}

@media(min-width: 64rem){
  .fy3-col-6\@md {
    grid-column-end: span 6;
  }
}
/* -------------------------------- 

File#: _2_slideshow
Title: Slideshow
Descr: Show a collection of items one at a time
Usage: codyhouse.co/license

-------------------------------- */
/* reset */
*, *::after, *::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0 0% 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230 7% 23%);
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230 13% 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250 84% 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

    h2 {
    font-size: 2.44rem;
  }

    h3 {
    font-size: 1.75rem;
  }

    h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --sq7-color-primary-hsl: 250, 84%, 54%;
  --sq7-color-bg-hsl: 0, 0%, 100%;
  --sq7-color-contrast-high-hsl: 230, 7%, 23%;
  --sq7-color-contrast-higher-hsl: 230, 13%, 9%;
  --sq7-color-bg-light-hsl: 0, 0%, 100%;
  --sq7-color-black-hsl: 231, 15%, 9%;
  --sq7-color-white-hsl: 0, 0%, 100%;
  --sq7-color-bg-dark-hsl: 240, 4%, 95%;
  --sq7-color-primary-darker-hsl: 250, 84%, 38%;
  --sq7-color-primary-light-hsl: 250, 84%, 60%;
  --sq7-color-accent-hsl: 342, 89%, 48%;
  --sq7-color-contrast-lower-hsl: 240, 4%, 85%;

  /* spacing */
  --sq7-space-3xs: 0.25rem;
  --sq7-space-xs: 0.5rem;
  --sq7-space-sm: 0.75rem;
  --sq7-space-md: 1.25rem;
  --sq7-space-2xs: 0.375rem;

  /* typography */
  --sq7-text-sm: 0.833rem;
}

@media(min-width: 64rem){
  :root {
    /* spacing */
    --sq7-space-3xs: 0.375rem;
    --sq7-space-xs: 0.75rem;
    --sq7-space-sm: 1.125rem;
    --sq7-space-md: 2rem;
    --sq7-space-2xs: 0.5625rem;

    /* typography */
    --sq7-text-sm: 1rem;
  }
}

/* buttons */
.sq7-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  white-space: nowrap;
  text-decoration: none;
  background: hsl(var(--sq7-color-bg-dark-hsl));
  color: hsl(var(--sq7-color-contrast-higher-hsl));
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.2s ease;
  will-change: transform;
  padding: var(--sq7-space-2xs) var(--sq7-space-sm);
  border-radius: 0.25em;
}

.sq7-btn:focus-visible {
  box-shadow: 0px 0px 0px 2px hsl(var(--sq7-color-bg-hsl)), 0px 0px 0px 4px hsla(var(--sq7-color-contrast-higher-hsl), 0.15);
  outline: none;
}

.sq7-btn:active {
  transform: translateY(2px);
}

.sq7-btn--primary {
  background: hsl(var(--sq7-color-primary-hsl));
  color: hsl(var(--sq7-color-white-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--sq7-color-white-hsl), 0.15), 0px 1px 3px hsla(var(--sq7-color-primary-darker-hsl), 0.25), 0px 2px 6px hsla(var(--sq7-color-primary-darker-hsl), 0.1), 0px 6px 10px -2px hsla(var(--sq7-color-primary-darker-hsl), 0.25);
}

.sq7-btn--primary:hover {
  background: hsl(var(--sq7-color-primary-light-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--sq7-color-white-hsl), 0.15), 0px 1px 2px hsla(var(--sq7-color-primary-darker-hsl), 0.25), 0px 1px 4px hsla(var(--sq7-color-primary-darker-hsl), 0.1), 0px 3px 6px -2px hsla(var(--sq7-color-primary-darker-hsl), 0.25);
}

.sq7-btn--primary:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--sq7-color-white-hsl), 0.15), 0px 1px 2px hsla(var(--sq7-color-primary-darker-hsl), 0.25), 0px 1px 4px hsla(var(--sq7-color-primary-darker-hsl), 0.1), 0px 3px 6px -2px hsla(var(--sq7-color-primary-darker-hsl), 0.25), 0px 0px 0px 2px hsl(var(--sq7-color-bg-hsl)), 0px 0px 0px 4px hsl(var(--sq7-color-primary-hsl));
}

/* icons */
.sq7-icon {
  height: var(--sq7-size, 1em);
  width: var(--sq7-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

/* component */
: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(--sq7-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 {
  -webkit-animation-duration: var(--slideshow-slide-transition-duration);
          animation-duration: var(--slideshow-slide-transition-duration);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.slideshow--transition-slide .slideshow__item > * {
  visibility: hidden;
}

.slideshow--transition-slide .slideshow__item--selected > * {
  visibility: visible;
}

.slideshow--transition-slide .slideshow__item--slide-in-left {
  -webkit-animation-name: slide-in-left;
          animation-name: slide-in-left;
}

.slideshow--transition-slide .slideshow__item--slide-in-right {
  -webkit-animation-name: slide-in-right;
          animation-name: slide-in-right;
}

.slideshow--transition-slide .slideshow__item--slide-out-left {
  -webkit-animation-name: slide-out-left;
          animation-name: slide-out-left;
}

.slideshow--transition-slide .slideshow__item--slide-out-right {
  -webkit-animation-name: 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;
}

@-webkit-keyframes slide-in-left {
  0% {
    visibility: visible;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slide-in-left {
  0% {
    visibility: visible;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slide-in-right {
  0% {
    visibility: visible;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slide-in-right {
  0% {
    visibility: visible;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slide-out-left {
  0% {
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes slide-out-left {
  0% {
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes slide-out-right {
  0% {
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes slide-out-right {
  0% {
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.slideshow--transition-prx .slideshow__item {
  -webkit-animation-duration: var(--slideshow-prx-transition-duration);
          animation-duration: var(--slideshow-prx-transition-duration);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.slideshow--transition-prx .slideshow__item > * {
  visibility: hidden;
}

.slideshow--transition-prx .slideshow__item--selected > * {
  visibility: visible;
}

.slideshow--transition-prx .slideshow__item--prx-in-left {
  -webkit-animation-name: prx-in-left;
          animation-name: prx-in-left;
}

.slideshow--transition-prx .slideshow__item--prx-in-right {
  -webkit-animation-name: prx-in-right;
          animation-name: prx-in-right;
}

.slideshow--transition-prx .slideshow__item--prx-out-left {
  -webkit-animation-name: prx-out-left;
          animation-name: prx-out-left;
}

.slideshow--transition-prx .slideshow__item--prx-out-right {
  -webkit-animation-name: 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;
}

@-webkit-keyframes prx-in-left {
  0% {
    visibility: visible;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes prx-in-left {
  0% {
    visibility: visible;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes prx-in-right {
  0% {
    visibility: visible;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes prx-in-right {
  0% {
    visibility: visible;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes prx-out-left {
  0% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0.3;
    -webkit-transform: translateX(40%);
            transform: translateX(40%);
  }
}
@keyframes prx-out-left {
  0% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0.3;
    -webkit-transform: translateX(40%);
            transform: translateX(40%);
  }
}
@-webkit-keyframes prx-out-right {
  0% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0.3;
    -webkit-transform: translateX(-40%);
            transform: translateX(-40%);
  }
}
@keyframes prx-out-right {
  0% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0.3;
    -webkit-transform: translateX(-40%);
            transform: translateX(-40%);
  }
}
.slideshow[data-swipe=on] .slideshow__content {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-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%;
  -webkit-transform: translateY(-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(--sq7-color-black-hsl), 0.75);
  height: var(--slideshow-btn-height);
  width: var(--slideshow-btn-width);
  border-radius: 0.25em;
  cursor: pointer;
  transition: background 0.2s, -webkit-transform 0.2s;
  transition: background 0.2s, transform 0.2s;
  transition: background 0.2s, transform 0.2s, -webkit-transform 0.2s;
}
.slideshow__btn:hover {
  background-color: hsla(var(--sq7-color-contrast-higher-hsl), 0.85);
}
.slideshow__btn:hover svg {
  color: hsl(var(--sq7-color-bg-hsl));
}
.slideshow:not(.slideshow--is-animating) .slideshow__btn:active {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.slideshow__btn svg {
  display: block;
  width: var(--slideshow-btn-icon-size);
  height: var(--slideshow-btn-icon-size);
  margin: 0 auto;
  transition: color 0.2s;
  color: hsl(var(--sq7-color-white-hsl));
}
@supports (grid-area: auto) {
  .slideshow__btn {
    background-color: transparent;
  }
  .slideshow__btn svg {
    color: hsl(var(--sq7-color-contrast-higher-hsl));
  }
}

.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(--sq7-space-3xs);
}
.slideshow__nav-item button {
  display: block;
  position: relative;
  font-size: 8px;
  color: hsl(var(--sq7-color-contrast-high-hsl));
  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 hsl(var(--sq7-color-contrast-high-hsl));
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  transition: 0.3s;
}
.slideshow__nav-item button:focus {
  outline: none;
}
.slideshow__nav-item button:focus::before {
  opacity: 1;
  -webkit-transform: scale(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;
  }
}

/* utility classes */
.sq7-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;
}

.sq7-bg-light {
  --sq7-bg-o: 1;
  background-color: hsla(var(--sq7-color-bg-light-hsl), var(--sq7-bg-o, 1));
}

.sq7-text-center {
  text-align: center;
}

.sq7-text-component :where(h1, h2, h3, h4) {
  line-height: var(--sq7-heading-line-height, 1.2);
  margin-top: calc(var(--sq7-space-md) * var(--sq7-space-multiplier, 1));
  margin-bottom: calc(var(--sq7-space-sm) * var(--sq7-space-multiplier, 1));
}

.sq7-text-component :where(p, blockquote, ul li, ol li) {
  line-height: var(--sq7-body-line-height, 1.4);
}

.sq7-text-component :where(ul, ol, p, blockquote, .sq7-text-component__block) {
  margin-bottom: calc(var(--sq7-space-sm) * var(--sq7-space-multiplier, 1));
}

.sq7-text-component :where(ul, ol) {
  padding-left: 1.25em;
}

.sq7-text-component ul :where(ul, ol), .sq7-text-component ol :where(ul, ol) {
  padding-left: 1em;
  margin-bottom: 0;
}

.sq7-text-component ul {
  list-style-type: disc;
}

.sq7-text-component ol {
  list-style-type: decimal;
}

.sq7-text-component img {
  display: block;
  margin: 0 auto;
}

.sq7-text-component figcaption {
  margin-top: calc(var(--sq7-space-xs) * var(--sq7-space-multiplier, 1));
  font-size: var(--sq7-text-sm);
  text-align: center;}

.sq7-text-component em {
  font-style: italic;
}

.sq7-text-component strong {
  font-weight: bold;
}

.sq7-text-component s {
  text-decoration: line-through;
}

.sq7-text-component u {
  text-decoration: underline;
}

.sq7-text-component mark {
  background-color: hsla(var(--sq7-color-accent-hsl), 0.2);
  color: inherit;
}

.sq7-text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid hsl(var(--sq7-color-contrast-lower-hsl));
  font-style: italic;
}

.sq7-text-component hr {
  margin: calc(var(--sq7-space-md) * var(--sq7-space-multiplier, 1)) auto;
  background: hsl(var(--sq7-color-contrast-lower-hsl));
  height: 1px;
}

.sq7-text-component > *:first-child {
  margin-top: 0;
}

.sq7-text-component > *:last-child {
  margin-bottom: 0;
}

.sq7-text-component.sq7-line-height-xs {
  --sq7-heading-line-height: 1;
  --sq7-body-line-height: 1.1;
}

.sq7-text-component.sq7-line-height-sm {
  --sq7-heading-line-height: 1.1;
  --sq7-body-line-height: 1.2;
}

.sq7-text-component.sq7-line-height-md {
  --sq7-heading-line-height: 1.15;
  --sq7-body-line-height: 1.4;
}

.sq7-text-component.sq7-line-height-lg {
  --sq7-heading-line-height: 1.22;
  --sq7-body-line-height: 1.58;
}

.sq7-text-component.sq7-line-height-xl {
  --sq7-heading-line-height: 1.3;
  --sq7-body-line-height: 1.72;
}

.sq7-max-width-sm {
  max-width: 48rem;
}

.sq7-container {
  width: calc(100% - 2*var(--sq7-space-md));
  margin-left: auto;
  margin-right: auto;
}

.sq7-color-inherit {
  color: inherit;
}

.sq7-gap-sm {
  gap: var(--sq7-space-sm);
}

.sq7-flex-center {
  justify-content: center;
  align-items: center;
}

.sq7-flex-wrap {
  flex-wrap: wrap;
}

.sq7-flex {
  display: flex;
}

.sq7-margin-top-md {
  margin-top: var(--sq7-space-md);
}

.sq7-bg {
  --sq7-bg-o: 1;
  background-color: hsla(var(--sq7-color-bg-hsl), var(--sq7-bg-o, 1));
}

.sq7-hide {
  display: none !important;
}
/* -------------------------------- 

File#: _2_team-v2
Title: Team v2
Descr: A gallery of team members
Usage: codyhouse.co/license

-------------------------------- */
/* reset */
*, *::after, *::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0 0% 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230 7% 23%);
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230 13% 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250 84% 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

    h2 {
    font-size: 2.44rem;
  }

    h3 {
    font-size: 1.75rem;
  }

    h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --tz3-color-primary-hsl: 250, 84%, 54%;
  --tz3-color-bg-hsl: 0, 0%, 100%;
  --tz3-color-contrast-high-hsl: 230, 7%, 23%;
  --tz3-color-contrast-higher-hsl: 230, 13%, 9%;
  --tz3-color-contrast-medium-hsl: 225, 4%, 47%;
  --tz3-color-accent-hsl: 342, 89%, 48%;
  --tz3-color-contrast-lower-hsl: 240, 4%, 85%;

  /* spacing */
  --tz3-space-md: 1.25rem;
  --tz3-space-lg: 2rem;
  --tz3-space-sm: 0.75rem;
  --tz3-space-xs: 0.5rem;

  /* typography */
  --tz3-text-sm: 0.833rem;
}

@media(min-width: 64rem){
  :root {
    /* spacing */
    --tz3-space-md: 2rem;
    --tz3-space-lg: 3.125rem;
    --tz3-space-sm: 1.125rem;
    --tz3-space-xs: 0.75rem;

    /* typography */
    --tz3-text-sm: 1rem;
  }
}

/* icons */
.tz3-icon {
  height: var(--tz3-size, 1em);
  width: var(--tz3-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

/* component */


/* utility classes */
.tz3-color-contrast-medium {
  --tz3-color-o: 1;
  color: hsla(var(--tz3-color-contrast-medium-hsl), var(--tz3-color-o, 1));
}

.tz3-color-contrast-high {
  --tz3-color-o: 1;
  color: hsla(var(--tz3-color-contrast-high-hsl), var(--tz3-color-o, 1));
}

.tz3-text-gap-2xs {
  --tz3-space-multiplier: 0.25;
}

.tz3-line-height-sm {
  line-height: 1.2;
}

.tz3-text-component :where(h1, h2, h3, h4) {
  line-height: var(--tz3-heading-line-height, 1.2);
  margin-top: calc(var(--tz3-space-md) * var(--tz3-space-multiplier, 1));
  margin-bottom: calc(var(--tz3-space-sm) * var(--tz3-space-multiplier, 1));
}

.tz3-text-component :where(p, blockquote, ul li, ol li) {
  line-height: var(--tz3-body-line-height, 1.4);
}

.tz3-text-component :where(ul, ol, p, blockquote, .tz3-text-component__block) {
  margin-bottom: calc(var(--tz3-space-sm) * var(--tz3-space-multiplier, 1));
}

.tz3-text-component :where(ul, ol) {
  padding-left: 1.25em;
}

.tz3-text-component ul :where(ul, ol), .tz3-text-component ol :where(ul, ol) {
  padding-left: 1em;
  margin-bottom: 0;
}

.tz3-text-component ul {
  list-style-type: disc;
}

.tz3-text-component ol {
  list-style-type: decimal;
}

.tz3-text-component img {
  display: block;
  margin: 0 auto;
}

.tz3-text-component figcaption {
  margin-top: calc(var(--tz3-space-xs) * var(--tz3-space-multiplier, 1));
  font-size: var(--tz3-text-sm);
  text-align: center;}

.tz3-text-component em {
  font-style: italic;
}

.tz3-text-component strong {
  font-weight: bold;
}

.tz3-text-component s {
  text-decoration: line-through;
}

.tz3-text-component u {
  text-decoration: underline;
}

.tz3-text-component mark {
  background-color: hsla(var(--tz3-color-accent-hsl), 0.2);
  color: inherit;
}

.tz3-text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid hsl(var(--tz3-color-contrast-lower-hsl));
  font-style: italic;
}

.tz3-text-component hr {
  margin: calc(var(--tz3-space-md) * var(--tz3-space-multiplier, 1)) auto;
  background: hsl(var(--tz3-color-contrast-lower-hsl));
  height: 1px;
}

.tz3-text-component > *:first-child {
  margin-top: 0;
}

.tz3-text-component > *:last-child {
  margin-bottom: 0;
}

.tz3-text-component.tz3-line-height-xs {
  --tz3-heading-line-height: 1;
  --tz3-body-line-height: 1.1;
}

.tz3-text-component.tz3-line-height-sm {
  --tz3-heading-line-height: 1.1;
  --tz3-body-line-height: 1.2;
}

.tz3-text-component.tz3-line-height-md {
  --tz3-heading-line-height: 1.15;
  --tz3-body-line-height: 1.4;
}

.tz3-text-component.tz3-line-height-lg {
  --tz3-heading-line-height: 1.22;
  --tz3-body-line-height: 1.58;
}

.tz3-text-component.tz3-line-height-xl {
  --tz3-heading-line-height: 1.3;
  --tz3-body-line-height: 1.72;
}

.tz3-gap-md {
  gap: var(--tz3-space-md);
}

.tz3-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.tz3-grid > * {
  min-width: 0;
  grid-column-end: span 12;
}

.tz3-margin-bottom-lg {
  margin-bottom: var(--tz3-space-lg);
}

.tz3-margin-x-auto {
  margin-left: auto;
  margin-right: auto;
}

.tz3-max-width-xs {
  max-width: 38rem;
}

.tz3-text-center {
  text-align: center;
}

.tz3-max-width-adaptive-lg {
  max-width: 32rem;
}

@media(min-width: 48rem) {
  .tz3-max-width-adaptive-lg {
    max-width: 48rem;
  }
}

@media(min-width: 64rem) {
  .tz3-max-width-adaptive-lg {
    max-width: 64rem;
  }
}

@media(min-width: 80rem) {
  .tz3-max-width-adaptive-lg {
    max-width: 80rem;
  }
}

.tz3-container {
  width: calc(100% - 2*var(--tz3-space-md));
  margin-left: auto;
  margin-right: auto;
}

@media(min-width: 64rem){
  .tz3-col-4\@md {
    grid-column-end: span 4;
  }
}

@media(min-width: 90rem){
  .tz3-col-3\@xl {
    grid-column-end: span 3;
  }
}
/* -------------------------------- 

File#: _2_contact-v2
Title: Contact v2
Descr: Contact block w/ info about how to get in touch
Usage: codyhouse.co/license

-------------------------------- */
/* reset */
*, *::after, *::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0 0% 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230 7% 23%);
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230 13% 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250 84% 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

    h2 {
    font-size: 2.44rem;
  }

    h3 {
    font-size: 1.75rem;
  }

    h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --cu6-color-primary-hsl: 250, 84%, 54%;
  --cu6-color-bg-hsl: 0, 0%, 100%;
  --cu6-color-contrast-high-hsl: 230, 7%, 23%;
  --cu6-color-contrast-higher-hsl: 230, 13%, 9%;
  --cu6-color-contrast-medium-hsl: 225, 4%, 47%;
  --cu6-color-accent-hsl: 342, 89%, 48%;
  --cu6-color-contrast-lower-hsl: 240, 4%, 85%;

  /* spacing */
  --cu6-space-2xs: 0.375rem;
  --cu6-space-md: 1.25rem;
  --cu6-space-lg: 2rem;
  --cu6-space-sm: 0.75rem;
  --cu6-space-xs: 0.5rem;

  /* typography */
  --cu6-text-sm: 0.833rem;
}

@media(min-width: 64rem){
  :root {
    /* spacing */
    --cu6-space-2xs: 0.5625rem;
    --cu6-space-md: 2rem;
    --cu6-space-lg: 3.125rem;
    --cu6-space-sm: 1.125rem;
    --cu6-space-xs: 0.75rem;

    /* typography */
    --cu6-text-sm: 1rem;
  }
}

/* component */


/* utility classes */
.cu6-radius-md {
  border-radius: 0.25em;
}

.cu6-color-contrast-medium {
  --cu6-color-o: 1;
  color: hsla(var(--cu6-color-contrast-medium-hsl), var(--cu6-color-o, 1));
}

.cu6-line-height-md {
  line-height: 1.4;
}

.cu6-margin-bottom-2xs {
  margin-bottom: var(--cu6-space-2xs);
}

.cu6-font-bold {
  font-weight: 700;
}

.cu6-padding-y-md {
  padding-top: var(--cu6-space-md);
  padding-bottom: var(--cu6-space-md);
}

.cu6-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.cu6-grid > * {
  min-width: 0;
  grid-column-end: span 12;
}

.cu6-margin-bottom-lg {
  margin-bottom: var(--cu6-space-lg);
}

.cu6-max-width-lg {
  max-width: 80rem;
}

.cu6-container {
  width: calc(100% - 2*var(--cu6-space-md));
  margin-left: auto;
  margin-right: auto;
}

.cu6-text-center {
  text-align: center;
}

.cu6-text-component :where(h1, h2, h3, h4) {
  line-height: var(--cu6-heading-line-height, 1.2);
  margin-top: calc(var(--cu6-space-md) * var(--cu6-space-multiplier, 1));
  margin-bottom: calc(var(--cu6-space-sm) * var(--cu6-space-multiplier, 1));
}

.cu6-text-component :where(p, blockquote, ul li, ol li) {
  line-height: var(--cu6-body-line-height, 1.4);
}

.cu6-text-component :where(ul, ol, p, blockquote, .cu6-text-component__block) {
  margin-bottom: calc(var(--cu6-space-sm) * var(--cu6-space-multiplier, 1));
}

.cu6-text-component :where(ul, ol) {
  padding-left: 1.25em;
}

.cu6-text-component ul :where(ul, ol), .cu6-text-component ol :where(ul, ol) {
  padding-left: 1em;
  margin-bottom: 0;
}

.cu6-text-component ul {
  list-style-type: disc;
}

.cu6-text-component ol {
  list-style-type: decimal;
}

.cu6-text-component img {
  display: block;
  margin: 0 auto;
}

.cu6-text-component figcaption {
  margin-top: calc(var(--cu6-space-xs) * var(--cu6-space-multiplier, 1));
  font-size: var(--cu6-text-sm);
  text-align: center;}

.cu6-text-component em {
  font-style: italic;
}

.cu6-text-component strong {
  font-weight: bold;
}

.cu6-text-component s {
  text-decoration: line-through;
}

.cu6-text-component u {
  text-decoration: underline;
}

.cu6-text-component mark {
  background-color: hsla(var(--cu6-color-accent-hsl), 0.2);
  color: inherit;
}

.cu6-text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid hsl(var(--cu6-color-contrast-lower-hsl));
  font-style: italic;
}

.cu6-text-component hr {
  margin: calc(var(--cu6-space-md) * var(--cu6-space-multiplier, 1)) auto;
  background: hsl(var(--cu6-color-contrast-lower-hsl));
  height: 1px;
}

.cu6-text-component > *:first-child {
  margin-top: 0;
}

.cu6-text-component > *:last-child {
  margin-bottom: 0;
}

.cu6-text-component.cu6-line-height-xs {
  --cu6-heading-line-height: 1;
  --cu6-body-line-height: 1.1;
}

.cu6-text-component.cu6-line-height-sm {
  --cu6-heading-line-height: 1.1;
  --cu6-body-line-height: 1.2;
}

.cu6-text-component.cu6-line-height-md {
  --cu6-heading-line-height: 1.15;
  --cu6-body-line-height: 1.4;
}

.cu6-text-component.cu6-line-height-lg {
  --cu6-heading-line-height: 1.22;
  --cu6-body-line-height: 1.58;
}

.cu6-text-component.cu6-line-height-xl {
  --cu6-heading-line-height: 1.3;
  --cu6-body-line-height: 1.72;
}

.cu6-max-width-xs {
  max-width: 38rem;
}

.cu6-z-index-1 {
  z-index: 1;
}

.cu6-position-relative {
  position: relative;
}

@media(min-width: 64rem){
  .cu6-text-center\@md {
    text-align: center;
  }

  .cu6-padding-x-md\@md {
    padding-left: var(--cu6-space-md);
    padding-right: var(--cu6-space-md);
  }

  .cu6-col-4\@md {
    grid-column-end: span 4;
  }
}
/* -------------------------------- 

File#: _3_testimonial-slideshow
Title: Testimonial Slideshow
Descr: A Slideshow to display a gallery of testimonials
Usage: codyhouse.co/license

-------------------------------- */
/* reset */
*, *::after, *::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0 0% 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230 7% 23%);
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230 13% 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250 84% 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

    h2 {
    font-size: 2.44rem;
  }

    h3 {
    font-size: 1.75rem;
  }

    h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --ty7-color-primary-hsl: 250, 84%, 54%;
  --ty7-color-bg-hsl: 0, 0%, 100%;
  --ty7-color-contrast-high-hsl: 230, 7%, 23%;
  --ty7-color-contrast-higher-hsl: 230, 13%, 9%;
  --ty7-color-contrast-medium-hsl: 225, 4%, 47%;
  --ty7-color-bg-dark-hsl: 240, 4%, 95%;
  --ty7-color-contrast-lower-hsl: 240, 4%, 85%;

  /* spacing */
  --ty7-space-4xs: 0.125rem;
  --ty7-space-sm: 0.75rem;
  --ty7-space-md: 1.25rem;

  /* typography */
  --ty7-text-lg: 1.25rem;
  --ty7-text-sm: 0.833rem;
}

@media(min-width: 64rem){
  :root {
    /* spacing */
    --ty7-space-4xs: 0.1875rem;
    --ty7-space-sm: 1.125rem;
    --ty7-space-md: 2rem;

    /* typography */
    --ty7-text-lg: 1.75rem;
    --ty7-text-sm: 1rem;
  }
}

/* icons */
.ty7-icon {
  height: var(--ty7-size, 1em);
  width: var(--ty7-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

/* component */
:root {
  --testimonial-slideshow-profile-img-size: 48px;
}
@media (min-width: 64rem) {
  :root {
    --testimonial-slideshow-profile-img-size: 64px;
  }
}

.testimonial-slideshow {
  --slideshow-height: 320px;
}
@media (min-width: 64rem) {
  .testimonial-slideshow {
    --slideshow-height: 420px;
  }
}

.testimonial-slideshow__profile-img {
  width: var(--testimonial-slideshow-profile-img-size);
  height: var(--testimonial-slideshow-profile-img-size);
  overflow: hidden;
}
.testimonial-slideshow__profile-img img {
  display: block;
  width: 100%;
}

/* utility classes */
.ty7-margin-top-4xs {
  margin-top: var(--ty7-space-4xs);
}

.ty7-color-contrast-medium {
  --ty7-color-o: 1;
  color: hsla(var(--ty7-color-contrast-medium-hsl), var(--ty7-color-o, 1));
}

.ty7-block {
  display: block;
}

.ty7-text-sm {
  font-size: var(--ty7-text-sm);
}

.ty7-margin-top-md {
  margin-top: var(--ty7-space-md);
}

.ty7-line-height-md {
  line-height: 1.4;
}

.ty7-margin-bottom-sm {
  margin-bottom: var(--ty7-space-sm);
}

.ty7-margin-x-auto {
  margin-left: auto;
  margin-right: auto;
}

.ty7-border {
  --ty7-border-o: 1;
  border: var(--ty7-border-width, 1px) var(--ty7-border-style, solid) hsla(var(--ty7-color-contrast-lower-hsl), var(--ty7-border-o, 1));
}

.ty7-radius-50\% {
  border-radius: 50%;
}

.ty7-max-width-sm {
  max-width: 48rem;
}

.ty7-height-100\% {
  height: 100%;
}

.ty7-flex-center {
  justify-content: center;
  align-items: center;
}

.ty7-flex {
  display: flex;
}

.ty7-text-center {
  text-align: center;
}

.ty7-bg-dark {
  --ty7-bg-o: 1;
  background-color: hsla(var(--ty7-color-bg-dark-hsl), var(--ty7-bg-o, 1));
}

.ty7-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;
}

.ty7-container {
  width: calc(100% - 2*var(--ty7-space-md));
  margin-left: auto;
  margin-right: auto;
}

.ty7-border-2 {
  --ty7-border-width: 2px;
}

.ty7-border-bg {
  --ty7-border-o: 1;
  border-color: hsla(var(--ty7-color-bg-hsl), var(--ty7-border-o, 1));
}

@media(min-width: 64rem){
  .ty7-text-lg\@md {
    font-size: var(--ty7-text-lg);
  }
}


/*sbu1*/
/* -------------------------------- 

File#: _1_feature-v20
Title: Feature v20
Descr: A list of features with icons
Usage: codyhouse.co/license

-------------------------------- */
/* reset */
*, *::after, *::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0 0% 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230 7% 23%);
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230 13% 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250 84% 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

  h2 {
    font-size: 2.44rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --fr0-color-primary-hsl: 250, 84%, 54%;
  --fr0-color-contrast-lower-hsl: 240, 4%, 85%;
  --fr0-color-contrast-low-hsl: 240, 4%, 65%;
  --fr0-color-contrast-high-hsl: 230, 7%, 23%;
  --fr0-color-contrast-higher-hsl: 230, 13%, 9%;
  --fr0-color-bg-hsl: 0, 0%, 100%;
  --fr0-color-accent-hsl: 342, 89%, 48%;

  /* spacing */
  --fr0-space-xs: 0.5rem;
  --fr0-space-sm: 0.75rem;
  --fr0-space-md: 1.25rem;
  --fr0-space-lg: 2rem;
  --fr0-space-xl: 3.25rem;
}

@media(min-width: 64rem){
  :root {
    /* spacing */
    --fr0-space-xs: 0.75rem;
    --fr0-space-sm: 1.125rem;
    --fr0-space-md: 2rem;
    --fr0-space-lg: 3.125rem;
    --fr0-space-xl: 5.125rem;

    /* typography */
    --fr0-text-sm: 1rem;
  }
}

/* component */
.feature-v20 {
  position: relative;
  z-index: 1;
  padding: var(--fr0-space-xl) 0;
}

.feature-v20__container {
  width: calc(100% - 2*var(--fr0-space-md));
  margin-left: auto;
  margin-right: auto;
}

.feature-v20__container--sm {
  max-width: 48rem;
}

.feature-v20__container--adaptive-lg {
  max-width: 32rem;
}

@media(min-width: 48rem) {
  .feature-v20__container--adaptive-lg {
    max-width: 48rem;
  }
}

@media(min-width: 64rem) {
  .feature-v20__container--adaptive-lg {
    max-width: 64rem;
  }
}

@media(min-width: 80rem) {
  .feature-v20__container--adaptive-lg {
    max-width: 80rem;
  }
}

.feature-v20__grid {
  display: grid;
  gap: var(--fr0-space-lg);
}

.feature-v20__grid > * {
  min-width: 0;
}

@media(min-width: 48rem) {
  .feature-v20__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width: 64rem) {
  .feature-v20__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-v20__icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F5F5F5;
  margin: 0 auto var(--fr0-space-md);
}

.feature-v20__icon {
  height: 24px;
  width: 24px;
  display: inline-block;
  color: hsl(var(--fr0-color-primary-hsl));
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.feature-v20__text-component {
  text-align: center;
}

.feature-v20__title {
  line-height: 1.22;
  margin-bottom: var(--fr0-space-sm);
}

.feature-v20__description {
  line-height: 1.58;
  color: hsl(var(--fr0-color-contrast-low-hsl));
}

/* utility classes */
.fr0-text-center {
  text-align: center;
}

.fr0-line-height-lg {
  line-height: 1.58;
}

.fr0-margin-bottom-xl {
  margin-bottom: var(--fr0-space-xl);
}

/*서브2*/

.chip {
  /* reset */
  border: 0;
  color: inherit;
  line-height: 1;
  -webkit-appearance: none;
          appearance: none;

  display: inline-flex;
  align-items: center;
  border-radius: 50em;
  padding: 0.25rem;
  background-color: hsla(230, 13%, 9%, 0.1);

  font-size: 0.9375rem;
}

.cd-demo-chip-list {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip__label {
  padding: 0 0.5rem;
}

.chip--outline {
  background-color: transparent;
  box-shadow: inset 0 0 0 1px hsla(230, 13%, 9%, 0.25);
}


.sub2_logo li{
	display:inline;   
}


/* 서브 3 */

/* -------------------------------- 

File#: _1_filter-navigation
Title: Filter Navigation
Descr: Filter navigation template
Usage: codyhouse.co/license

-------------------------------- */
/* reset */
*, *::after, *::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0, 0%, 100%);
  font-family: system-ui, sans-serif;
  color: hsl(230, 7%, 23%);
  font-size: 1rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.2rem;
}

ol, ul, menu {
  list-style: none;
}

button, input, textarea, select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: hsl(250, 84%, 54%);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

    h2 {
    font-size: 2.44rem;
  }

    h3 {
    font-size: 1.75rem;
  }

    h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --fo5-color-primary-hsl: 250, 84%, 54%;
  --fo5-color-bg-hsl: 0, 0%, 100%;
  --fo5-color-contrast-high-hsl: 230, 7%, 23%;
  --fo5-color-contrast-higher-hsl: 230, 13%, 9%;
  --fo5-color-bg-darker-hsl: 240, 4%, 90%;
  --fo5-color-bg-light-hsl: 0, 0%, 100%;
  --fo5-color-bg-lighter-hsl: 0, 0%, 100%;
  --fo5-color-black-hsl: 230, 13%, 9%;
  --fo5-color-bg-dark-hsl: 240, 4%, 95%;
  --fo5-color-white-hsl: 0, 0%, 100%;

  /* spacing */
  --fo5-space-3xs: 0.25rem;
  --fo5-space-2xs: 0.375rem;
  --fo5-space-xs: 0.5rem;
  --fo5-space-sm: 0.75rem;
  --fo5-space-md: 1.25rem;

  /* typography */
  --fo5-text-md: 1.2rem;
}

@media(min-width: 64rem){
  :root {
    /* spacing */
    --fo5-space-3xs: 0.375rem;
    --fo5-space-2xs: 0.5625rem;
    --fo5-space-xs: 0.75rem;
    --fo5-space-sm: 1.125rem;
    --fo5-space-md: 2rem;

    /* typography */
    --fo5-text-md: 1.5625rem;
  }
}

/* buttons */
.fo5-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  white-space: nowrap;
  text-decoration: none;
  background: hsl(var(--fo5-color-bg-dark-hsl));
  color: hsl(var(--fo5-color-contrast-higher-hsl));
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.2s ease;
  will-change: transform;
  padding: var(--fo5-space-2xs) var(--fo5-space-sm);
  border-radius: 0.25em;
}

.fo5-btn:focus-visible {
  box-shadow: 0px 0px 0px 2px hsl(var(--fo5-color-bg-hsl)), 0px 0px 0px 4px hsla(var(--fo5-color-contrast-higher-hsl), 0.15);
  outline: none;
}

.fo5-btn:active {
  transform: translateY(2px);
}

.fo5-btn--subtle {
  background: hsl(var(--fo5-color-bg-lighter-hsl));
  color: hsl(var(--fo5-color-contrast-higher-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--fo5-color-white-hsl), 0.1), 0px 0px 0px 1px hsla(var(--fo5-color-black-hsl), 0.02), 0px 1px 3px -1px hsla(var(--fo5-color-black-hsl), 0.2), 0 0.3px 0.4px rgba(0, 0, 0, 0.025),0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
}

.fo5-btn--subtle:hover {
  background: hsl(var(--fo5-color-bg-light-hsl));
  box-shadow: inset 0px 1px 0px hsla(var(--fo5-color-white-hsl), 0.1), 0px 0px 0px 1px hsla(var(--fo5-color-black-hsl), 0.02), 0px 1px 3px -1px hsla(var(--fo5-color-black-hsl), 0.2), 0 0.1px 0.3px rgba(0, 0, 0, 0.06),0 1px 2px rgba(0, 0, 0, 0.12);
}

.fo5-btn--subtle:focus {
  box-shadow: inset 0px 1px 0px hsla(var(--fo5-color-white-hsl), 0.1), 0px 0px 0px 1px hsla(var(--fo5-color-black-hsl), 0.02), 0px 1px 3px -1px hsla(var(--fo5-color-black-hsl), 0.2), 0 0.1px 0.3px rgba(0, 0, 0, 0.06),0 1px 2px rgba(0, 0, 0, 0.12), 0px 0px 0px 2px hsl(var(--fo5-color-bg-hsl)), 0px 0px 0px 4px hsl(var(--fo5-color-contrast-high-hsl));
}

/* icons */
.fo5-icon {
  height: var(--fo5-size, 1em);
  width: var(--fo5-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.fo5-icon--2xs {
  --fo5-size: 12px;
}

.fo5-icon--xs {
  --fo5-size: 16px;
}

/* component */
/* --expanded version */
.filter-nav--expanded {
  /* --v1 */
  /* --v2 */
  /* --v3 */
}
.filter-nav--expanded .filter-nav__nav {
  display: flex;
  overflow: auto;
}
.filter-nav--expanded .filter-nav__list {
  display: inline-flex;
  position: relative;
}
.filter-nav--expanded .filter-nav__item {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.filter-nav--expanded .filter-nav__btn {
  /* <button> element inside each list item */
  cursor: pointer;
}
.filter-nav--expanded .filter-nav__marker {
  /* animated marker */
  position: absolute;
  width: 0;
  pointer-events: none;
  transition: width 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, width 0.3s;
  transition: transform 0.3s, width 0.3s, -webkit-transform 0.3s;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  will-change: width, transform;
}
.filter-nav--expanded.filter-nav--v1 .filter-nav__nav {
  padding: var(--fo5-space-xs) 0;
}
.filter-nav--expanded.filter-nav--v1 .filter-nav__btn {
  margin: 0 var(--fo5-space-3xs);
  padding: var(--fo5-space-3xs) var(--fo5-space-xs);
  color: hsla(var(--fo5-color-contrast-higher-hsl), 0.5);
  transition: color 0.2s;
}
.filter-nav--expanded.filter-nav--v1 .filter-nav__btn:hover {
  color: hsl(var(--fo5-color-contrast-higher-hsl));
}
.filter-nav--expanded.filter-nav--v1 .filter-nav__btn[aria-current=true] {
  color: hsl(var(--fo5-color-primary-hsl));
}
.filter-nav--expanded.filter-nav--v1 .filter-nav__marker {
  /* animated marker */
  top: 0;
  left: 0;
  height: 100%;
  background-color: hsl(var(--fo5-color-bg-light-hsl));
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0.3px 0.4px rgba(0, 0, 0, 0.025),0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0.25em;
}
.filter-nav--expanded.filter-nav--v2 .filter-nav__list {
  background-color: hsl(var(--fo5-color-bg-darker-hsl));
  padding: var(--fo5-space-3xs);
  border-radius: 50em;
}
.filter-nav--expanded.filter-nav--v2 .filter-nav__btn {
  padding: var(--fo5-space-3xs) var(--fo5-space-sm);
  color: hsla(var(--fo5-color-contrast-higher-hsl), 0.5);
  transition: color 0.2s;
}
.filter-nav--expanded.filter-nav--v2 .filter-nav__btn:hover {
  color: hsl(var(--fo5-color-contrast-higher-hsl));
}
.filter-nav--expanded.filter-nav--v2 .filter-nav__btn[aria-current=true] {
  color: hsl(var(--fo5-color-primary-hsl));
}
.filter-nav--expanded.filter-nav--v2 .filter-nav__marker {
  /* animated marker */
  top: var(--fo5-space-3xs);
  left: 0;
  height: calc(100% - var(--fo5-space-3xs) * 2);
  background-color: hsl(var(--fo5-color-bg-light-hsl));
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0.3px 0.4px rgba(0, 0, 0, 0.025),0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
  border-radius: 50em;
}
.filter-nav--expanded.filter-nav--v3 .filter-nav__btn {
  padding: var(--fo5-space-3xs) var(--fo5-space-sm);
  color: hsla(var(--fo5-color-contrast-higher-hsl), 0.5);
  transition: color 0.2s;
}
.filter-nav--expanded.filter-nav--v3 .filter-nav__btn:hover {
  color: hsl(var(--fo5-color-contrast-higher-hsl));
}
.filter-nav--expanded.filter-nav--v3 .filter-nav__btn[aria-current=true] {
  color: hsl(var(--fo5-color-primary-hsl));
}
.filter-nav--expanded.filter-nav--v3 .filter-nav__marker {
  /* animated marker */
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: hsl(var(--fo5-color-primary-hsl));
}

/* --collapsed version - available horizontal space not enough to contain all list items */
.filter-nav--collapsed .filter-nav__wrapper {
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(var(--fo5-color-black-hsl), 0.9);
  visibility: hidden;
  opacity: 0;
}
.filter-nav--collapsed .filter-nav__wrapper--is-visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s;
}
.filter-nav--collapsed .filter-nav__wrapper--is-visible .filter-nav__nav {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.filter-nav--collapsed .filter-nav__nav {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  background-color: hsl(var(--fo5-color-bg-hsl));
  box-shadow: 0 0.9px 1.5px rgba(0, 0, 0, 0.03),0 3.1px 5.5px rgba(0, 0, 0, 0.08),0 14px 25px rgba(0, 0, 0, 0.12);
  max-height: 100%;
  -webkit-transform: translateY(-1em);
          transform: translateY(-1em);
}
.filter-nav--collapsed .filter-nav__list {
  order: 2;
  flex-direction: column;
  overflow: auto;
  padding: 0 0 var(--fo5-space-md);
}
.filter-nav--collapsed .filter-nav__list::before {
  /* top shadow - visible if menu height triggers vertical scrolling */
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background: linear-gradient(hsla(var(--fo5-color-bg-hsl), 1), hsla(var(--fo5-color-bg-hsl), 0));
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
}
.filter-nav--collapsed .filter-nav__btn {
  display: block;
  /* fallback */
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  font-size: var(--fo5-text-md);
  padding: var(--fo5-space-xs) var(--fo5-space-sm);
  color: hsla(var(--fo5-color-contrast-higher-hsl), 0.5);
  cursor: pointer;
}
.filter-nav--collapsed .filter-nav__btn:hover {
  color: hsl(var(--fo5-color-contrast-higher-hsl));
}
.filter-nav--collapsed .filter-nav__btn[aria-current=true] {
  color: hsl(var(--fo5-color-primary-hsl));
}
.filter-nav--collapsed .filter-nav__btn::before {
  /* check icon next to the selected button */
  content: "";
  display: block;
  height: 16px;
  width: 16px;
  margin-right: var(--fo5-space-3xs);
  background-color: transparent;
}
.filter-nav--collapsed .filter-nav__btn[aria-current=true]::before {
  background-color: hsl(var(--fo5-color-primary-hsl));
  /* icon color */
  -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='%23000000' 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='%23000000' fill='none' stroke-linecap='round' stroke-linejoin='round' points='1,9 5,13 15,3 '/%3E%3C/svg%3E");
}
.filter-nav--collapsed .filter-nav__marker {
  /* hide animated marker */
  display: none !important;
}
.filter-nav--collapsed .filter-nav__close-btn {
  /* X button */
  --fo5-size: 32px;
  width: var(--fo5-size);
  height: var(--fo5-size);
  display: flex;
  order: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin: var(--fo5-space-xs) var(--fo5-space-xs) 0 auto;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: hsl(var(--fo5-color-bg-light-hsl));
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0.3px 0.4px rgba(0, 0, 0, 0.025),0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
.filter-nav--collapsed .filter-nav__close-btn:hover {
  background-color: hsl(var(--fo5-color-bg-lighter-hsl));
  box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075), 0 0.9px 1.5px rgba(0, 0, 0, 0.03),0 3.1px 5.5px rgba(0, 0, 0, 0.08),0 14px 25px rgba(0, 0, 0, 0.12);
}
.filter-nav--collapsed .filter-nav__close-btn .filter-nav__icon {
  display: block;
  color: hsl(var(--fo5-color-contrast-high-hsl));
}

/* utility classes */
.fo5-hide {
  display: none !important;
}

.fo5-justify-center {
  justify-content: center;
}

.fo5-margin-left-2xs {
  margin-left: var(--fo5-space-2xs);
}

