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

File#: _3_intro-v3
Title: Intro v3
Descr: Intro section including the main header and a feature block
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 */
  --ib5-color-primary-hsl: 250, 84%, 54%;
  --ib5-color-bg-hsl: 0, 0%, 100%;
  --ib5-color-contrast-high-hsl: 230, 7%, 23%;
  --ib5-color-contrast-higher-hsl: 230, 13%, 9%;
  --ib5-color-contrast-medium-hsl: 225, 4%, 47%;
  --ib5-color-bg-dark-hsl: 240, 4%, 95%;
  --ib5-color-white-hsl: 0, 0%, 100%;
  --ib5-color-primary-darker-hsl: 250, 84%, 38%;
  --ib5-color-primary-light-hsl: 250, 84%, 60%;
  --ib5-color-accent-hsl: 342, 89%, 48%;
  --ib5-color-contrast-lower-hsl: 240, 4%, 85%;

  /* spacing */
  --ib5-space-2xs: 0.375rem;
  --ib5-space-sm: 0.75rem;
  --ib5-space-md: 1.25rem;
  --ib5-space-xs: 0.5rem;

  /* typography */
  --ib5-text-3xl: 2.488rem;
  --ib5-text-sm: 0.833rem;
  --ib5-text-sm: 0.833rem;
}

@media(min-width: 64rem){
  :root {
    /* spacing */
    --ib5-space-2xs: 0.5625rem;
    --ib5-space-sm: 1.125rem;
    --ib5-space-md: 2rem;
    --ib5-space-xs: 0.75rem;

    /* typography */
    --ib5-text-3xl: 3.815rem;
    --ib5-text-sm: 1rem;
    --ib5-text-sm: 1rem;
  }
}

/* buttons */
.ib5-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  white-space: nowrap;
  text-decoration: none;
  background: hsl(var(--ib5-color-bg-dark-hsl));
  color: hsl(var(--ib5-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(--ib5-space-2xs) var(--ib5-space-sm);
  border-radius: 0.25em;
}

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

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

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

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

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

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

/* component */


/* utility classes */
.ib5-width-100\% {
  width: 100%;
}

.ib5-block {
  display: block;
}

.ib5-color-inherit {
  color: inherit;
}

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

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

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

.ib5-flex {
  display: flex;
}

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

.ib5-text-3xl {
  font-size: var(--ib5-text-3xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ib5-text-sm {
  font-size: var(--ib5-text-sm);
}

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

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

.ib5-gap-md {
  gap: var(--ib5-space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

  .ib5-justify-center\@md {
    justify-content: center;
  }

  .ib5-justify-between\@md {
    justify-content: space-between;
  }

  .ib5-col-5\@md {
    grid-column-end: span 5;
  }

  .ib5-col-7\@md {
    grid-column-end: span 7;
  }
}