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

File#: _2_feature-v18
Title: Feature v18
Descr: A gallery of cards over a background image
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 */
  --fl1-color-primary-hsl: 250, 84%, 54%;
  --fl1-color-bg-hsl: 0, 0%, 100%;
  --fl1-color-contrast-high-hsl: 230, 7%, 23%;
  --fl1-color-contrast-higher-hsl: 230, 13%, 9%;
  --fl1-color-contrast-lower-hsl: 240, 4%, 85%;

  /* spacing */
  --fl1-space-xs: 0.5rem;
  --fl1-space-sm: 0.75rem;
  --fl1-space-md: 1.25rem;
  --fl1-space-lg: 2rem;
  --fl1-space-xl: 3.25rem;

  /* typography */
  --fl1-text-base: 1rem;
  --fl1-text-xs: 0.694rem;
}

@media(min-width: 64rem){
  :root {
    /* spacing */
    --fl1-space-xs: 0.75rem;
    --fl1-space-sm: 1.125rem;
    --fl1-space-md: 2rem;
    --fl1-space-lg: 3.125rem;
    --fl1-space-xl: 5.125rem;

    /* typography */
    --fl1-text-base: 1.25rem;
    --fl1-text-xs: 0.8rem;
  }
}

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

/* component */


/* utility classes */
.fl1-letter-spacing-lg {
  letter-spacing: 0.1em;
}

.fl1-text-uppercase {
  text-transform: uppercase;
}

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

.fl1-text-xs {
  font-size: var(--fl1-text-xs);
}

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

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

.fl1-border-top {
  --fl1-border-o: 1;
  border-top: var(--fl1-border-width, 1px) var(--fl1-border-style, solid) hsla(var(--fl1-color-contrast-lower-hsl), var(--fl1-border-o, 1));
}

.fl1-text-base {
  font-size: var(--fl1-text-base);
}

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

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

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

.fl1-block {
  display: block;
}

.fl1-radius-sm {
  border-radius: 0.125em;
}

.fl1-position-relative {
  position: relative;
}

.fl1-shadow-sm {
  box-shadow: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);
}

.fl1-radius-lg {
  border-radius: 0.5em;
}

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

.fl1-gap-sm {
  gap: var(--fl1-space-sm);
}

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

.fl1-grid > * {
  min-width: 0;
  grid-column-end: span 9;
}

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

.fl1-max-width-adaptive-lg {
  max-width: 32rem;
}

@media(min-width: 48rem) {
  .fl1-max-width-adaptive-lg {
    max-width: 48rem;
  }
}

@media(min-width: 64rem) {
  .fl1-max-width-adaptive-lg {
    max-width: 64rem;
  }
}

@media(min-width: 80rem) {
  .fl1-max-width-adaptive-lg {
    max-width: 80rem;
  }
}

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

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

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

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

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

.fl1-border-contrast-higher {
  --fl1-border-o: 1;
  border-color: hsla(var(--fl1-color-contrast-higher-hsl), var(--fl1-border-o, 1));
}

.fl1-border-opacity-10\% {
  --fl1-border-o: 0.1;
}

.fl1-color-opacity-50\% {
  --fl1-color-o: 0.5;
}

@media(min-width: 48rem){
  .fl1-col-6\@sm {
    grid-column-end: span 6;
  }
}

@media(min-width: 64rem){
  .fl1-col-3\@md {
    grid-column-end: span 3;
  }
}