/* src/css/tokens/_global.css */
:root {
  /* Colors */
  --color-green-500: #018c26;
  --color-red-500: #ff5b2b;
  --color-azur-500: #8fd2e5;
  --color-blue-500: #1333d8;
  --color-pink-500: #ffbdbd;
  --color-fuchsia-500: #ff7db4;
  --color-orange-500: #fe6d01;
  --color-yellow-500: #ffad1b;
  --color-yellow-900: #fff4ba;
  --color-black-005: #f2f2f2;
  --color-black-100: #f4f4f4;
  --color-black-200: #e6e6e6;
  --color-black-250: #d9d9d9;
  --color-black-500: #1a1a1a;
  --color-black-950: #0d0d0d;
  --color-black-1000: #000000;
  --color-white: #ffffff;

  /* Fonts */
  --font-sans-light: font-sans-light, Helvetica, sans-serif;
  --font-sans-regular: "font-sans-regular", sans-serif;
  --font-sans-bold: font-sans-bold, Helvetica, sans-serif;
  --font-sans-black: font-sans-black, Helvetica, sans-serif;
  --font-mono-bold: font-mono-bold, Courier, monospace;
  --font-mono-regular: font-mono-regular, Courier, monospace;
  --font-mono-thin: font-mono-thin, Courier, monospace;

  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --text-8xl: 5rem;
  --text-9xl: 6rem;

  /* Line height */
  --line-height-base: 1.5;

  /* Spacing (migrated from my-* spacing variables) */
  --spacing-0: 0;
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-32: 8rem;
  --spacing-64: 16rem;

  /* Border radius */
  --rounded-none: 0px;
  --rounded-sm: 0.125rem;
  --rounded-base: 0.25rem;
  --rounded-md: 0.375rem;
  --rounded-lg: 0.5rem;
  --rounded-xl: 0.75rem;
  --rounded-2xl: 1rem;
  --rounded-3xl: 1.5rem;

  /* Breakpoints (reference only — cannot be used in media queries) */
  /* --breakpoint-sm: 375px  */
  /* --breakpoint-md: 600px  */
  /* --breakpoint-lg: 1244px */
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}
/* Universal box-sizing reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-smooth: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: subpixel;
}
/* || TYPOGRAPHY */
/* fonts — shared (GT Flexa + JetBrainsMono) */
@font-face {
  font-family: "font-sans-light";
  src: url("/assets/fonts/GT-Flexa-Light-Trial.woff2") format("woff2");
  font-weight: 300;
}
@font-face {
  font-family: "font-sans-regular";
  src: url("/assets/fonts/GT-Flexa-Regular-Trial.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "font-sans-bold";
  src: url("/assets/fonts/GT-Flexa-Bold-Trial.woff2") format("woff2");
  font-weight: 700;
}
@font-face {
  font-family: "font-sans-black";
  src: url("/assets/fonts/gt-flexa-black-trial.woff") format("woff");
  font-weight: 900;
}
/* variable font, kan eventueel bovenstaande vervangen? */
@font-face {
  font-family: "GT Flexa variable";
  src: url("/assets/fonts/gt-flexa-var-trial.ttf") format("truetype");
  font-weight: 1 1000;
}
@font-face {
  font-family: "font-mono-bold";
  src: url("/assets/fonts/JetBrainsMono-Bold.woff2") format("woff2");
  font-weight: 700;
}
@font-face {
  font-family: "font-mono-regular";
  src: url("/assets/fonts/JetBrainsMono-Regular.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "font-mono-thin";
  src: url("/assets/fonts/JetBrainsMono-Thin.woff2") format("woff2");
  font-weight: 100;
}
/* base typography */
html {
  font-size: 16px;
}
body {
  font-family: var(--font-sans-light);
  line-height: var(--line-height-base);
  color: var(--color-black-500);
}
::-moz-selection {
  color: var(--color-blue-500);
  background: var(--color-yellow-900);
}
::selection {
  color: var(--color-blue-500);
  background: var(--color-yellow-900);
}
ul,
li {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: var(--color-blue-500);
}
a:hover {
    color: var(--color-orange-500);
  }
.link {
  cursor: pointer;
}
/* header typography */
.header {
  font-family: var(--font-mono-regular);
  font-size: var(--text-xs);
  letter-spacing: 1px;
}
.header .version--date,
  .header .changelog--link--container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
.header .version--date {
    left: 80px;
  }
.header .changelog--link--container {
    right: 80px;
  }
/* content wrapper typography */
.content--wrapper p.preheader {
    line-height: clamp(1em, calc(1.2em + 2vw), 1.6em); /* default 1em + 2vw, min 1em, max 1.2em */
    font-size: clamp(1.2rem, 4vw, 1.6rem); /* default 10vw, niet kleiner dan 2rem, niet groter dan 5rem */
    margin-top: 0;
    margin-bottom: var(--spacing-16);
  }
.content--wrapper p {
    line-height: clamp(1em, calc(1.2em + 2vw), 1.6em); /* default 1em + 2vw, min 1em, max 1.2em */
    font-size: clamp(1.2rem, 4vw, 1.6rem); /* default 10vw, niet kleiner dan 2rem, niet groter dan 5rem */
    margin-top: var(--spacing-16);
    margin-bottom: var(--spacing-16);
  }
.content--wrapper p.leadin {
    font-family: var(--font-sans-bold);
    line-height: clamp(1em, calc(1em + 2vw), 1.2em); /* default 1em + 2vw, min 1em, max 1.2em */
    font-size: clamp(24px, 8vw, 80px); /* default 10vw, niet kleiner dan 2rem, niet groter dan 5rem */
    margin-top: var(--spacing-32);
    margin-bottom: var(--spacing-32);
  }
.content--wrapper p.article {
    margin-top: var(--spacing-8);
    margin-bottom: var(--spacing-8);
  }
.content--wrapper p.article:last-of-type {
      margin-bottom: var(--spacing-32);
    }
.content--wrapper ul.links--socials {
    list-style-type: none;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: var(--text-lg);
  }
.content--wrapper ul.links--socials li {
      float: left;
      margin-right: 40px;
    }
.content--wrapper ul.links--socials li a {
        color: var(--color-blue-500);
        text-decoration: none;
      }
.content--wrapper p.caption { /* uitlijnen op grid? */ /* vervangen voor variabele */
  }
.content--wrapper p.caption::before {
      font-family: var(--font-mono-regular);
      content: "->>";
      display: block;
      position: absolute;
      transform: translateX(-40px);
      color: var(--color-pink-500);
    }
.content--wrapper p.caption {

    position: relative;
    transform: translateX(-100%) translateX(90vw);
    z-index: 999;
    font-size: var(--text-sm);
    line-height: var(--line-height-base);
    width: 20vw;
    min-width: 300px;
}
/* footnotes */
ol.footnotes {
  display: block;
  position: relative;
  left: 80px;
  top: 50%;
  /* transform: translateY(-50%); */

  list-style: none;
  counter-reset: my-awesome-counter;
  font-family: var(--font-mono-regular);
  font-size: var(--text-xs);
  width: calc(100% - 40px);
}
ol.footnotes li {
    counter-increment: my-awesome-counter;
  }
ol.footnotes li::before {
      content: counter(my-awesome-counter) ". ";
      color: var(--color-pink-500);
      font-family: var(--font-mono-regular);
    }
/* footer typography */
.footer {
  font-family: var(--font-mono-regular);
  font-size: var(--text-sm);
}
/* || TYPOGRAPHY MEDIA QUERIES */
/* On screens that are 1244px width or less */
@media screen and (max-width: 1244px) {
    .content--wrapper p.preheader {
      font-size: var(--text-2xl);
      margin-bottom: var(--spacing-8);
    }

    .content--wrapper p.leadin {
      margin-top: var(--spacing-32);
      margin-bottom: var(--spacing-32);
    }

    .content--wrapper p.article {
      margin-top: var(--spacing-8);
      margin-bottom: var(--spacing-8);
    }

      .content--wrapper p.article:last-of-type {
        margin-bottom: var(--spacing-32);
      }
}
/* On screens that are 600px or less */
@media screen and (max-width: 600px) {
  .header--metadata {
    height: 80px;
    font-size: var(--text-xs);
  }

    .header--metadata .version--date {
      left: 40px;
      display: block;
    }

    .header--metadata .changelog--link--container {
      left: 40px;
      display: block;
      margin-top: 20px;
    }
    .content--wrapper p.preheader {
      font-size: var(--text-lg);
      margin-bottom: var(--spacing-8);
    }

    .content--wrapper p.leadin {
      margin-top: var(--spacing-16);
      margin-bottom: var(--spacing-32);
      font-size: var(--text-4xl);
    }

    .content--wrapper p.article {
      font-size: var(--text-lg);
      margin-top: var(--spacing-8);
      margin-bottom: var(--spacing-8);
    }

      .content--wrapper p.article:last-of-type {
        margin-bottom: var(--spacing-16);
      }

  .header .changelog--link--container {
    display: none;
  }
    .footer ol.footnotes {
      left: 40px;
    }
}
/* On screens that are 375px or less */
@media screen and (max-width: 375px) {
    .content--wrapper p.preheader {
      font-size: var(--text-sm);
      margin-bottom: var(--spacing-4);
    }

    .content--wrapper p.leadin {
      margin-top: var(--spacing-8);
      margin-bottom: var(--spacing-16);
      font-size: var(--text-3xl);
    }

    .content--wrapper p.article {
      font-size: var(--text-base);
    }

      .content--wrapper p.article:last-of-type {
        margin-bottom: var(--spacing-32);
      }

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

    .footer ol.footnotes {
      left: 40px;
      top: 50%;
      transform: translateY(-50%);
    }
}
/* || LAYOUT */
/* nav wrapper — structural positioning only */
.nav--wrapper {
  position: fixed;
  z-index: 100;
  width: 80px;
  height: 100vh;
  left: 0;
  top: 0;
}
.nav--wrapper .nav--openCloseContainer {
    position: absolute;
    width: 80px;
    height: 100vh;
    right: 0;
    top: 0;
  }
/* main */
main {
  position: relative;
  z-index: 0;
  width: calc(100% - 80px);
  left: 80px;
  top: 0;
  overflow: hidden; /* prevents horizontal scrollbar */
}
/* header */
.header {
  position: relative;
  height: 15vh;
  top: 0;
  left: 0;
}
/* content wrapper — layout only */
.content--wrapper {
  margin-bottom: 20vh;
  margin-top: 10vh;
  width: 100%;
}
/* footer — layout dimensions only */
.footer {
  height: 160px;
  margin-top: 32vh;
  width: 100%;
}
/* || UTILITY: alignment */
.centered {
  margin-left: auto;
  margin-right: auto;
}
/* || UTILITY: width */
.w-full {
  width: calc(100% - 80px);
}
.w-large {
  width: calc(100% - 10vw);
  max-width: 1440px;
}
.w-medium {
  width: calc(100% - 10vw);
  max-width: 1000px;
}
.w-small {
  width: calc(100% - 10vw);
  max-width: 1000px;
  padding-left: 80px;
  padding-right: 80px;
}
/* || LAYOUT MEDIA QUERIES */
/* On screens that are 1244px width or less */
@media screen and (max-width: 1244px) {
    .content--wrapper .w-medium {
      width: calc(100% - 30vw);
      max-width: 1000px;
    }

    .content--wrapper .w-small {
      width: calc(100% - 30vw);
      max-width: 1000px;
      padding-left: 0;
      padding-right: 0;
    }
}
/* On screens that are 600px or less */
@media screen and (max-width: 600px) {
  .footer {
    height: 80px;
  }
}
/* On screens that are 375px or less */
@media screen and (max-width: 375px) {
  .nav--wrapper {
    position: fixed;
    width: 100vw;
    height: 80px;
    left: 0;
    top: calc(100vh - 80px);
  }

    .nav--wrapper .nav--openCloseContainer {
      position: absolute;
      width: 100vw;
      height: 80px;
      z-index: 999;
      right: 0;
      top: 0;
    }

  main {
    left: 0px;
    width: 100%;
  }

  .footer {
    height: 100px;
    margin: 320px 0 80px 0; /* krijg positionering footer niet goed */
  }
}
/* component: nav */
.nav--wrapper .nav--openCloseContainer {
    background-color: var(--color-pink-500);
  }
.nav--wrapper .nav--openCloseContainer .hamburger {
      position: absolute;
      width: 40px;
      height: 40px;
      top: calc(50% - 20px);
      right: 20px;

      transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
      transform: rotate(-90deg);
    }
.nav--wrapper .nav--items {
    position: absolute;
    height: 100vh;
    top: 0;
    right: 80px;
    overflow: hidden;

    left: 0;
    background-color: var(--color-black-005);
  }
.nav--wrapper .nav--items li {
      position: absolute;
      display: block;
      max-height: 160px;
      width: 2500px;
      left: -1200px;

      font-family: "GT Flexa variable", serif;
      font-variation-settings: "wght" 500, "wdth" 10, "ital" 200;

      font-size: var(--text-9xl);
      text-transform: uppercase;
      text-align: right;
      padding: 0.8em 0.6em;
      margin: 0 auto;
      line-height: 0;
    }
.nav--wrapper .nav--items li a:hover {
          color: white;
          animation: scrolling-left2 20s linear infinite;
          animation-delay: 10s;
        }
.nav--wrapper .nav--items li.home {
      bottom: 310px;
      transform: rotate(10deg);
      background-color: var(--color-green-500);
    }
.nav--wrapper .nav--items li.home a {
        color: var(--color-blue-500);
      }
.nav--wrapper .nav--items li.lezer {
      bottom: 450px;
      transform: rotate(-6deg);
      background-color: #FFD4D3;
    }
.nav--wrapper .nav--items li.lezer a {
        color: #FE6D01;
      }
.nav--wrapper .nav--items li.maker {
      bottom: 50px;
      transform: rotate(-15deg);
      background-color: #FECC1A;
    }
.nav--wrapper .nav--items li.maker a {
        color: var(--color-green-500);
      }
.nav--wrapper .nav--items li.blog {

      bottom: 550px;
      transform: rotate(7deg);
      background-color: #025DE8;
    }
.nav--wrapper .nav--items li.blog a {
        color: #FAA9CB;
      }
.nav--wrapper .authorDate {
    position: absolute;
    width: 200px;
    bottom: 40px;
    left: 50%;
    transform: rotate(-90deg) translateY(-50%);
    transform-origin: top left;
    white-space: no-wrap;

    font-family: var(--font-mono-regular);
    font-size: var(--text-xs);
    letter-spacing: 1px;
    line-height: 0;
  }
/* nav media query — small screens (375px and below) */
@media screen and (max-width: 375px) {

  .nav--wrapper {
    position: fixed;
    width: 100vw;
    height: 80px;

    left: 0;
    top: calc(100vh - 80px);
  }

    .nav--wrapper .nav--openCloseContainer {
      position: absolute;
      width: 100vw;
      height: 80px;
      z-index: 999;

      right: 0;
      top: 0;
    }

    .nav--wrapper .nav--items {
      right: 0;
    }

    .nav--wrapper .hamburger {
      top: calc(50% - 10px);
      left: calc(50% - 10px);
      transform: rotate(0deg) translate(0, 0);
    }

    .nav--wrapper .authorDate {
      display: none;
    }
}
/* nav media query — short screens */
@media (max-height: 600px) {
  .authorDate {
    display: none;
  }
}
/* component: changelog */
/* changelog layout */
.changelog-layover {
  position: fixed;
  display: none;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: var(--color-blue-500);
  mix-blend-mode: hard-light;
  z-index: 1000;
}
.changelog {
  position: fixed;
  overflow-y: scroll;
  width: 60vw;
  max-width: 1000px;
  min-width: 550px;
  transform: translateX(100vw) translateX(0%); /* stacking translateX to position left to viewport and than its own width to the left */
  top: 0;
  height: 100vh;
  margin: 0;
  padding: 0 6vw 0 6vw;
  z-index: 1001;
}
/* changelog styling */
.changelog {
  color: var(--color-blue-500);
  font-family: var(--font-mono-regular);
  background-color: var(--color-yellow-900);
  background-image: url("/assets/svg/ApprovedStamp.svg");
  background-repeat: no-repeat;
  background-position: calc(60vw - 200px) calc(50vh - 80px);
  background-size: 160px 160px;
}
.changelog .changelog-logo {
    width: 80px;
    height: 80px;
    mix-blend-mode: multiply;
  }
.changelog h1 {
    color: var(--color-black-500);
    font-family: var(--font-sans-black);
    text-transform: uppercase;
    font-size: var(--text-6xl);
    margin: 6vw 0 40px 0;
  }
.changelog a {
    -webkit-text-decoration: underline dashed blue;
            text-decoration: underline dashed blue;
  }
.changelog .tableHeader {
    color: var(--color-black-500);
    font-size: var(--text-xs);
    text-transform: capitalize;
    font-weight: bold;
  }
.changelog .sectionHeader {
    font-size: var(--text-xs);
    font-weight: bold;
  }
.changelog .sectionContent {
    font-size: var(--text-xs);
  }
.changelog .changelog--gridRow {
    display: grid;
    grid-template-columns: 140px 1fr 1fr 50px;
  }
.changelog .changelog--gridRow > div {
    padding: 20px;
  }
.changelog .sectionContent {
    grid-column: 1 / 5;
  }
.changelog .col-1    { grid-column: 1 / 2; }
.changelog .col-2    { grid-column: 2 / 3; }
.changelog .col-2to3 { grid-column: 2 / 4; }
.changelog .col-3    { grid-column: 3 / 4; }
.changelog .col-4    { grid-column: 4 / 5; }
.changelog .changelog--gridRow > div.col-1 {
    padding-left: 0;
  }
.changelog .changelog--gridRow > div.col-4 {
    padding-right: 0;
    text-align: right;
  }
.changelog .tableHeader { /* Safari */
    position: sticky;
    top: 0;
    background-color: var(--color-yellow-900);

    text-transform: uppercase;
    border-bottom: 2px solid var(--color-black-500);
  }
.changelog .changelog--gridRow.sectionHeader {
    border-top: 0px solid black;
    border-bottom: 5px double var(--color-black-500);
  }
.changelog .description {
    border-bottom: 1px solid var(--color-black-500);
  }
.changelog .col-2, .changelog .col-3, .changelog .col-2to3 {
    border-right: 1px solid var(--color-black-500);
  }
.changelog .col-2, .changelog .col-2to3 {
    border-left: 1px solid var(--color-black-500);
  }
.changelog .changelog--footer {
    position: sticky;
    bottom: 0px;
    border-top: 2px solid var(--color-black-500);
    color: var(--color-black-500);
    margin-top: 80px;
    background-color: var(--color-yellow-900);
  }
.changelog .changelog--footer p {
      display: block;
      width: 200px;
      font-size: var(--text-sm);
      font-weight: bold;
      margin-top: 30px;
      height: 140px;
      border-bottom: 2px dashed var(--color-black-500);
    }
.changelog .changelog--footer img {
      width: 140px;
      height: 140px;
      margin-top: -120px;
    }
/* Footer component — typography in _typography.css, layout in _layout.css */
/* component: header */
.header .version--date,
  .header .changelog--link--container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
.header .version--date {
    left: 80px;
  }
.header .changelog--link--container {
    right: 80px;
  }
/* header media query — small screens (600px and below) */
@media screen and (max-width: 600px) {

  .header--metadata {
    height: 80px;
    font-size: var(--text-xs);
  }

    .header--metadata .version--date {
      left: 40px;
      display: block;
    }

    .header--metadata .changelog--link--container {
      left: 40px;
      display: block;
      margin-top: 20px;
    }

  .header .changelog--link--container {
    display: none;
  }
}
/* Page-specific fonts */
@font-face {
  font-family: "Tektur variable";
  src: url("/assets/fonts/Tektur.ttf") format("truetype");
  font-weight: 1 1000;
}
@font-face {
  font-family: "Mixal variable";
  src: url("/assets/fonts/MixalGX.ttf") format("truetype");
  font-weight: 1 1000;
}
/* Page-specific tokens */
:root {
  --color-lightbrown-500: #c79b7b;
  --color-brown-200: #7a5f4c;
  --color-highlight-green: #bcde7d;
}
/* Page-specific styles */
body {
  moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
}
body {
  background-color: var(--color-black-950);
  color: var(--color-black-250);
  background-position: 0px 0px;
}
.nav--wrapper .nav--openCloseContainer {
  background-color: var(--color-black-950);
  border-right: 1px solid var(--color-brown-200);
}
.nav--wrapper .nav--openCloseContainer .hamburger {
    fill: var(--color-lightbrown-500);
  }
.content--wrapper a {
  color: var(--color-fuchsia-500);
}
.content--wrapper a:hover {
    color: var(--color-orange-500);
  }
.header--metadata a, .footer a {color: var(--color-lightbrown-500);}
.header--metadata {color: var(--color-highlight-green)};
/* z-index */
.content--wrapper p.article {position: relative; z-index: 0}
.title-size-001, .title-size-002 {position: relative; z-index: -10;}
.title-size-002 {
  margin-block-start: 0;
  margin-block-end: 0;
}
/* section styling */
.section {
  margin: 0;
  padding: 0;
}
.section .img--container {
    position: relative;
    width: 100%;
    z-index: 500;
  }
img {
  width: 30vw;
  border-radius: 4px;
}
/* --- titles --- */
.title-size-001 {
  /* background-color: rgb(150, 120, 30, 0.3); */

  display: block;
  position: relative;
  z-index: -10;
  width: 200vw; /* enlarge container to force titel outside frame */
  text-align: center;
  font-family: 'Tektur variable', arial , sans-serif;
  font-size: 30vw;
  color: var(--color-lightbrown-500);
  margin: 0;
  padding: 0;
  line-height: 1em;
  visibility: hidden;


  /* positionering */
  transform: translateX(-50%) translateX(calc(50vw - 40px)) translateY(-50%) translateY(300px); /* center title, translateX should be half of width */
  opacity: 1;
}
/* variable font options: wdth 75 - 100, wght 400 - 900 */
.title-size-001 > span {
    /* color: green; */
    --wdth: 75;
    --wght: 100;
    font-variation-settings: "wght" var(--wght), "wdth" var(--wdth);
  }
.title-size-002 {
  display: block;
  z-index: -10;
  width: 200vw; /* enlarge container to force titel outside frame */
  text-align: center;
  font-family: 'Tektur variable', arial , sans-serif;

  font-size: 15vw;
  margin: 0;
  padding: 0;
  line-height: 1em;

  /* positionering */
  /* translateX alleen nodig om elementen breder dan viewport te centreren. */
  transform: translateX(-50%) translateX(calc(50vw - 40px)) translateY(-50%) translateY(300px); /* center title, translateX should be half of width */
  opacity: 1;


}
/* variable font options: wdth 75 - 100, wght 400 - 900 */
.title-size-002 span:nth-child(even) {
    /* color: green; */
    --wdth: 75;
    --wght: 100;
    font-variation-settings: "wght" var(--wght), "wdth" var(--wdth);
  }
.title-size-002 span:nth-child(odd) {
    /* color: green; */
    --wdth: 75;
    --wght: 900;
    font-variation-settings: "wght" var(--wght), "wdth" var(--wdth);
  }
/* --- section intro --- */
/* background-color: rgb(100, 100, 30, 0.3); */
.section--intro p.article {
    visibility: hidden;

    opacity: 1;
    will-change: transform, opacity;
  }
/* --- section style scattered --- */
.section--style-scattered {
  padding-bottom: 100px;
}
.section--style-scattered .title--container {
    height: 600px;
  }
.section--style-scattered .img--container {
    /* background-color: rgb(100, 100, 30, 0.3); */
    height: 80vh;
    transform: translateY(-100px);
  }
.section--style-scattered .img--container .img {
      position: absolute;
      width: 410px;
      height: calc(410px * 0.75);
      left: 50%;
      background-color: var(--color-brown-200); /* vervangen door mooie loading kleur */
      box-shadow: 0 10px 40px 0px rgba(0,0,0,0.60);
      border-radius: 4px;

    }
/* idee 2: 3d transform maken */
.section--style-scattered .img--container .img.img_01 {
        transform: translateX(-50%) translateX(-35vw) translateY(2vh) translateY(-50%) rotate(5deg);
        background-size: cover;
        width: 300px;
        height: calc(300px * 0.75);
        filter: brightness(0.4);
        /* box-shadow: 0 10px 40px 0px rgba(0,0,0,0.30); */
        background-size: cover;
      }
/* idee: z-index meegeven (0-9). width, filter en dropshadow af laten hangen van z-index */
.section--style-scattered .img--container .img.img_02 {
        transform: translateX(-50%) translateX(25vw) translateY(70vh) translateY(-50%) rotate(5deg);
        filter: brightness(0.3);
        /* box-shadow: 0 10px 40px 0px rgba(0,0,0,0.30); */
        background-size: cover;
      }
/* background-size: cover; */
.section--style-scattered .img--container .img.img_03 {
        transform: translateX(-50%) translateX(-30vw) translateY(60vh) translateY(-50%) rotate(-2deg);
        filter: brightness(0.3);
        background-size: cover;
        /* box-shadow: 0 10px 40px 0px rgba(0,0,0,0.30);       */
      }
.section--style-scattered .img--container .img.img_04 {
        transform: translateX(-50%) translateX(25vw) translateY(10vh) translateY(-50%) rotate(2deg);
        filter: brightness(0.3);
        background-size: cover;
        /* box-shadow: 0 10px 40px 0px rgba(0,0,0,0.30);       */
      }
.section--style-scattered .img--container .img.img_05 {
        transform: translateX(-50%) translateX(-20vw) translateY(25vh) translateY(-50%) rotate(-4deg);
        filter: brightness(0.6);
        /* box-shadow: 0 10px 40px 0px rgba(0,0,0,0.50);       */
        background-size: cover;
      }
.section--style-scattered .img--container .img.img_06 {
        transform: translateX(-50%) translateX(22vw) translateY(40vh) translateY(-50%) rotate(0deg);
        filter: brightness(0.6);
        /* box-shadow: 0 10px 40px 0px rgba(0,0,0,0.60); */
        background-size: cover;
      }
.section--style-scattered .img--container .img.img_07 {
        transform: translateX(-50%) translateX(-25vw) translateY(40vh) translateY(-50%) rotate(3deg);
        width: 410px;
        height: calc(410px * 0.75);
        filter: brightness(0.7);
        /* box-shadow: 0 10px 40px 0px rgba(0,0,0,0.60);       */
        background-size: cover;

      }
.section--style-scattered .img--container .img.img_08 {
        transform: translateX(-50%) translateX(5vw) translateY(52vh) translateY(-50%) rotate(-4deg);
        filter: brightness(0.8);
        /* box-shadow: 0 10px 40px 0px rgba(0,0,0,0.80);   */
        background-size: cover;

      }
.section--style-scattered .img--container .img.img_09 {
        transform: translateX(-50%) translateX(0) translateY(20vh) translateY(-50%) rotate(6deg);
        filter: brightness(1);
        width: 520px;
        height: calc(520px * 0.75);
        background-size: cover;
      }
.section--style-scattered p.caption {
    transform: translateX(0) translateX(20vw) translateY(0); /* position footnote */
  }
/* --- section style grid --- */
.section--style-grid .title-size-002.largeBackground {
    z-index: 0;
    position: relative;
    color: var(--color-black-950);
    letter-spacing: 0;
    text-shadow:
    0px  0 0 var(--color-lightbrown-500),
    -1px -1px 0 var(--color-lightbrown-500),
    1px -1px 0 var(--color-lightbrown-500),
    -1px  1px 0 var(--color-lightbrown-500),
    1px  1px 0 var(--color-lightbrown-500);
    -webkit-text-stroke: 0px;
  }
.section--style-grid .title--container {
    width: calc(100vw - 80px);
    transform: translateX(0) translateY(0);
  }
.section--style-grid .title--container .title-size-002.title {
      display: block;
      width: 100%;
      z-index: 999;
      text-align: center;
      font-family: 'Tektur variable', arial , sans-serif;

      font-size: 15vw;
      margin: 0;
      padding: 0;
      color: var(--color-lightbrown-500);

      /* positionering */
      transform: translateX(5vw) translateY(0);
      text-align: left;
      opacity: 1;
    }
.section--style-grid .img--container {
    width: 100vw;
    transform: translateX(0%) translateX(0) translateY(100px);
    overflow: hidden;


  }
/* background-color: green; */
.section--style-grid .img--container::after {
    /* black overlay. idee: mask ipv overlay zodat het alleen effect heeft op images? */
      position: absolute;
      display: block;
      z-index: 2000;
      content: "";
      top: 10px; /* zelfde als margin van flex children */
      left: 80px; /* breedte navbar */
      transform: translateX(-80px);
      height: 100%;
      width: calc(100vw - 80px);
      background-image: linear-gradient(90deg, var(--color-black-950) 0%, rgba(13,13,13,0.00) 26%, rgba(13,13,13,0.30) 66%, rgba(13,13,13,0.75) 82%, var(--color-black-950) 100%);
    }
.section--style-grid .img--container .img--row {

      /* transform: translateX(-50%) translateX(50vw); gecentreerd */ /* makes sure row is as width as its content */
    }
.section--style-grid .img--container .img--row:nth-child(odd) {
        transform: translateX(0) translateX(0);
      }
.section--style-grid .img--container .img--row:nth-child(even) {
        /* transform: translateX(-100%) translateX(100vw); /* right aligned */
        transform: translateX(0) translateX(0);
      }
.section--style-grid .img--container .img--row {
      display: inline-flex;
      flex-wrap: nowrap;
      align-content: flex-start;
      padding: 0;
      margin: 1px;
}
/* background-color: red;    */
.section--style-grid .img--container .img--row .img {
        /* position: absolute; */
        flex-shrink: 0;
        margin: 10px 10px;
        width:  clamp(300px, 30vw, 600px);
        height: clamp(150px, 20vw, 400px);
        /* left: 50%;                       */
        background-size: cover;

        /*
        &.img_01 {background: url("https://images.unsplash.com/photo-1610544333643-12206d3cfa38?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=2725&q=80") no-repeat; background-size: cover;}
        &.img_02 {background: url("https://images.unsplash.com/photo-1595340515434-8a89101240f5?ixid=MnwxMjA3fDB8MHxzZWFyY2h8OTZ8fGRpeSUyMHdvb2R8ZW58MHx8MHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60") no-repeat; background-size: cover;}
        &.img_03 {background: url("https://images.unsplash.com/photo-1497218770144-3fea6dbc33fe?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1yZWxhdGVkfDZ8fHxlbnwwfHx8fA%3D%3D&auto=format&fit=crop&w=900&q=60") no-repeat; background-size: cover;}
        &.img_04 {background: url("https://images.unsplash.com/photo-1587925420556-343519a7954e?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1900&q=80") no-repeat; background-size: cover;}
        &.img_05 {background: url("https://images.unsplash.com/photo-1549315393-aeac60e09d29?ixid=MnwxMjA3fDB8MHxzZWFyY2h8NXx8ZGl5JTIwd29vZHxlbnwwfHwwfHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60") no-repeat; background-size: cover;}
        &.img_06 {background: url("https://images.unsplash.com/photo-1497223830540-5c1202d4f260?ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mjd8fHdvb2R3b3JraW5nfGVufDB8fDB8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60") no-repeat; background-size: cover;}
        &.img_07 {background: url("https://images.unsplash.com/photo-1426927308491-6380b6a9936f?ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mnx8d29vZHdvcmtpbmd8ZW58MHx8MHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60") no-repeat; background-size: cover;}
        &.img_08 {background: url("https://images.unsplash.com/photo-1505855796860-aa05646cbf1f?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3150&q=80") no-repeat; background-size: cover;}
        &.img_09 {background: url("https://images.unsplash.com/photo-1560846389-956694677531?ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTZ8fHdvb2R3b3JraW5nfGVufDB8fDB8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60") no-repeat; background-size: cover;}
        &.img_10 {background: url("https://images.unsplash.com/photo-1610544333643-12206d3cfa38?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=2725&q=80") no-repeat; background-size: cover;}
        &.img_11 {background: url("https://images.unsplash.com/photo-1560846389-956694677531?ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTZ8fHdvb2R3b3JraW5nfGVufDB8fDB8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60") no-repeat; background-size: cover;}
        &.img_12 {background: url("https://images.unsplash.com/photo-1595340515434-8a89101240f5?ixid=MnwxMjA3fDB8MHxzZWFyY2h8OTZ8fGRpeSUyMHdvb2R8ZW58MHx8MHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60") no-repeat; background-size: cover;}
        &.img_13 {background: url("https://images.unsplash.com/photo-1497218770144-3fea6dbc33fe?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1yZWxhdGVkfDZ8fHxlbnwwfHx8fA%3D%3D&auto=format&fit=crop&w=900&q=60") no-repeat; background-size: cover;}
        &.img_14 {background: url("https://images.unsplash.com/photo-1587925420556-343519a7954e?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1900&q=80") no-repeat; background-size: cover;}
        &.img_15 {background: url("https://images.unsplash.com/photo-1549315393-aeac60e09d29?ixid=MnwxMjA3fDB8MHxzZWFyY2h8NXx8ZGl5JTIwd29vZHxlbnwwfHwwfHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60") no-repeat; background-size: cover;}
        &.img_16 {background: url("https://images.unsplash.com/photo-1497223830540-5c1202d4f260?ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mjd8fHdvb2R3b3JraW5nfGVufDB8fDB8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60") no-repeat; background-size: cover;}
        &.img_17 {background: url("https://images.unsplash.com/photo-1426927308491-6380b6a9936f?ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mnx8d29vZHdvcmtpbmd8ZW58MHx8MHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60") no-repeat; background-size: cover;}
        &.img_18 {background: url("https://images.unsplash.com/photo-1505855796860-aa05646cbf1f?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=3150&q=80") no-repeat; background-size: cover;}
        &.img_19 {background: url("https://images.unsplash.com/photo-1497223830540-5c1202d4f260?ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mjd8fHdvb2R3b3JraW5nfGVufDB8fDB8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60") no-repeat; background-size: cover;}
        &.img_20 {background: url("https://images.unsplash.com/photo-1595340515434-8a89101240f5?ixid=MnwxMjA3fDB8MHxzZWFyY2h8OTZ8fGRpeSUyMHdvb2R8ZW58MHx8MHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60") no-repeat; background-size: cover;}
        */
      }
.section--style-grid p.caption {
    transform: translateX(-100%) translateX(90vw) translateY(-50vh);
    width: 10vw;
    min-width: 200px;
  }
/* SECTION CONTENT */
.section--02 .img.img_01 {background: url("/assets/img/maker/maker_section01_1@2x.jpg") no-repeat;}
.section--02 .img.img_02 {background: url("/assets/img/maker/maker_section01_2@2x.jpg") no-repeat;}
.section--02 .img.img_03 {background: url("/assets/img/maker/maker_section01_3@2x.jpg") no-repeat;}
.section--02 .img.img_04 {background: url("/assets/img/maker/maker_section01_4@2x.jpg") no-repeat;}
.section--02 .img.img_05 {background: url("/assets/img/maker/maker_section01_7@2x.jpg") no-repeat;}
.section--02 .img.img_06 {background: url("/assets/img/maker/maker_section01_6@2x.jpg") no-repeat;}
.section--02 .img.img_07 {background: url("/assets/img/maker/maker_section01_5@2x.jpg") no-repeat;}
.section--02 .img.img_08 {background: url("/assets/img/maker/maker_section01_9@2x.jpg") no-repeat;}
.section--02 .img.img_09 {background: url("/assets/img/maker/maker_section01_8@2x.jpg") no-repeat;}
.section--03 .img.img_01 {background: url("/assets/img/maker/maker_results_9@2x.jpg") no-repeat;}
.section--03 .img.img_02 {background: url("/assets/img/maker/maker_results_8@2x.jpg") no-repeat;}
.section--03 .img.img_03 {background: url("/assets/img/maker/maker_results_7@2x.jpg") no-repeat;}
.section--03 .img.img_04 {background: url("/assets/img/maker/maker_results_6@2x.jpg") no-repeat;}
.section--03 .img.img_05 {background: url("/assets/img/maker/maker_results_5@2x.jpg") no-repeat;}
.section--03 .img.img_06 {background: url("/assets/img/maker/maker_results_4@2x.jpg") no-repeat;}
.section--03 .img.img_07 {background: url("/assets/img/maker/maker_results_3@2x.jpg") no-repeat;}
.section--03 .img.img_08 {background: url("/assets/img/maker/maker_results_2@2x.jpg") no-repeat;}
.section--03 .img.img_09 {background: url("/assets/img/maker/maker_results_1@2x.jpg") no-repeat;}
.section--04 .img.img_01 {background: url("/assets/img/maker/maker_tools_9@2x.jpg") no-repeat;}
.section--04 .img.img_02 {background: url("/assets/img/maker/maker_tools_2@2x.jpg") no-repeat;}
.section--04 .img.img_03 {background: url("/assets/img/maker/maker_tools_12@2x.jpg") no-repeat;}
.section--04 .img.img_04 {background: url("/assets/img/maker/maker_tools_4@2x.jpg") no-repeat;}
.section--04 .img.img_05 {background: url("/assets/img/maker/maker_tools_10@2x.jpg") no-repeat;}
.section--04 .img.img_06 {background: url("/assets/img/maker/maker_tools_6@2x.jpg") no-repeat;}
.section--04 .img.img_07 {background: url("/assets/img/maker/maker_tools_7@2x.jpg") no-repeat;}
.section--04 .img.img_08 {background: url("/assets/img/maker/maker_tools_8@2x.jpg") no-repeat;}
.section--04 .img.img_09 {background: url("/assets/img/maker/maker_tools_1@2x.jpg") no-repeat;}
.section--05 .img.img_01 {background: url("/assets/img/maker/maker_sketches_1@2x.jpg") no-repeat;}
.section--05 .img.img_02 {background: url("/assets/img/maker/maker_sketches_2@2x.jpg") no-repeat;}
.section--05 .img.img_03 {background: url("/assets/img/maker/maker_sketches_3@2x.jpg") no-repeat;}
.section--05 .img.img_04 {background: url("/assets/img/maker/maker_sketches_4@2x.jpg") no-repeat;}
.section--05 .img.img_05 {background: url("/assets/img/maker/maker_sketches_5@2x.jpg") no-repeat;}
.section--05 .img.img_06 {background: url("/assets/img/maker/maker_sketches_9@2x.jpg") no-repeat;}
.section--05 .img.img_07 {background: url("/assets/img/maker/maker_sketches_7@2x.jpg") no-repeat;}
.section--05 .img.img_08 {background: url("/assets/img/maker/maker_sketches_8@2x.jpg") no-repeat;}
.section--05 .img.img_09 {background: url("/assets/img/maker/maker_sketches_6@2x.jpg") no-repeat;}
.section--06 .img.img_01 {background: url("/assets/img/maker/maker_details_1@2x.jpg") no-repeat;}
.section--06 .img.img_02 {background: url("/assets/img/maker/maker_details_2@2x.jpg") no-repeat;}
.section--06 .img.img_03 {background: url("/assets/img/maker/maker_details_3@2x.jpg") no-repeat;}
.section--06 .img.img_04 {background: url("/assets/img/maker/maker_details_4@2x.jpg") no-repeat;}
.section--06 .img.img_05 {background: url("/assets/img/maker/maker_details_5@2x.jpg") no-repeat;}
.section--06 .img.img_06 {background: url("/assets/img/maker/maker_details_6@2x.jpg") no-repeat;}
.section--06 .img.img_07 {background: url("/assets/img/maker/maker_details_7@2x.jpg") no-repeat;}
.section--06 .img.img_08 {background: url("/assets/img/maker/maker_details_8@2x.jpg") no-repeat;}
.section--06 .img.img_09 {background: url("/assets/img/maker/maker_details_9@2x.jpg") no-repeat;}
.section--07 .img.img_01 {background: url("/assets/img/maker/maker_process_1@2x.jpg") no-repeat;}
.section--07 .img.img_02 {background: url("/assets/img/maker/maker_process_2@2x.jpg") no-repeat;}
.section--07 .img.img_03 {background: url("/assets/img/maker/maker_process_3@2x.jpg") no-repeat;}
.section--07 .img.img_04 {background: url("/assets/img/maker/maker_process_4@2x.jpg") no-repeat;}
.section--07 .img.img_05 {background: url("/assets/img/maker/maker_process_5@2x.jpg") no-repeat;}
.section--07 .img.img_06 {background: url("/assets/img/maker/maker_process_6@2x.jpg") no-repeat;}
.section--07 .img.img_07 {background: url("/assets/img/maker/maker_process_7@2x.jpg") no-repeat;}
.section--07 .img.img_08 {background: url("/assets/img/maker/maker_process_8@2x.jpg") no-repeat;}
.section--07 .img.img_09 {background: url("/assets/img/maker/maker_process_9@2x.jpg") no-repeat;}
.section--07 .img.img_10 {background: url("/assets/img/maker/maker_process_10@2x.jpg") no-repeat;}
.section--07 .img.img_11 {background: url("/assets/img/maker/maker_process_11@2x.jpg") no-repeat;}
.section--07 .img.img_12 {background: url("/assets/img/maker/maker_process_12@2x.jpg") no-repeat;}
.section--07 .img.img_13 {background: url("/assets/img/maker/maker_process_13@2x.jpg") no-repeat;}
.section--07 .img.img_14 {background: url("/assets/img/maker/maker_process_14@2x.jpg") no-repeat;}
.section--07 .img.img_15 {background: url("/assets/img/maker/maker_process_15@2x.jpg") no-repeat;}
.section--07 .img.img_16 {background: url("/assets/img/maker/maker_process_16@2x.jpg") no-repeat;}
.section--07 .img.img_17 {background: url("/assets/img/maker/maker_process_17@2x.jpg") no-repeat;}
.section--07 .img.img_18 {background: url("/assets/img/maker/maker_process_18@2x.jpg") no-repeat;}
.section--07 .img.img_19 {background: url("/assets/img/maker/maker_process_19@2x.jpg") no-repeat;}
.section--07 .img.img_20 {background: url("/assets/img/maker/maker_process_20@2x.jpg") no-repeat;}
.section--07 .img.img_21 {background: url("/assets/img/maker/maker_process_21@2x.jpg") no-repeat;}
.section--07 .img.img_22 {background: url("/assets/img/maker/maker_process_22@2x.jpg") no-repeat;}
.section--07 .img.img_23 {background: url("/assets/img/maker/maker_process_23@2x.jpg") no-repeat;}
.section--07 .img.img_24 {background: url("/assets/img/maker/maker_process_24@2x.jpg") no-repeat;}
.section--07 .img.img_25 {background: url("/assets/img/maker/maker_process_25@2x.jpg") no-repeat;}
.section--07 .img.img_26 {background: url("/assets/img/maker/maker_process_5@2x.jpg") no-repeat;}
.section--07 .img.img_27 {background: url("/assets/img/maker/maker_process_1@2x.jpg") no-repeat;}
.section--07 .img.img_28 {background: url("/assets/img/maker/maker_process_3@2x.jpg") no-repeat;}
.section--07 .img.img_29 {background: url("/assets/img/maker/maker_process_8@2x.jpg") no-repeat;}
.section--07 .img.img_30 {background: url("/assets/img/maker/maker_process_11@2x.jpg") no-repeat;}
.section--07 .img.img_31 {background: url("/assets/img/maker/maker_process_12@2x.jpg") no-repeat;}
.section--07 .img.img_32 {background: url("/assets/img/maker/maker_process_22@2x.jpg") no-repeat;}
.section--07 .img.img_33 {background: url("/assets/img/maker/maker_process_7@2x.jpg") no-repeat;}
.section--07 .img.img_34 {background: url("/assets/img/maker/maker_process_4@2x.jpg") no-repeat;}
.section--07 .img.img_35 {background: url("/assets/img/maker/maker_process_9@2x.jpg") no-repeat;}
.section--07 .img.img_36 {background: url("/assets/img/maker/maker_process_6@2x.jpg") no-repeat;}
/* section customization */
.section--02 {
  /* distance between sections */
  padding-bottom: 400px;
}
/* position footnote */
.section--02 p.caption {
    transform: translateX(-100%) translateX(80vw) translateY(0); /* position footnote */
  }
.section--03 {
  /* distance between sections */
  padding-bottom: 100px;

}
.section--03 .img--container {
    height: 900px;
  }
.section--03 .title-size-002.largeBackground {
    z-index: 10;
    color: var(--color-black-950);
    letter-spacing: 0;
    text-shadow:
    0px  0 0 var(--color-lightbrown-500),
    -1px -1px 0 var(--color-lightbrown-500),
    1px -1px 0 var(--color-lightbrown-500),
    -1px  1px 0 var(--color-lightbrown-500),
    1px  1px 0 var(--color-lightbrown-500);
    -webkit-text-stroke: 0px;
  }
.section--03 .title-size-002.title {
    color: var(--color-lightbrown-500);
    z-index: 20;
  }
.section--04 .title-size-002 {
    color: var(--color-black-950);
    letter-spacing: 0;
    text-shadow:
     0px  0 0 var(--color-lightbrown-500),
    -1px -1px 0 var(--color-lightbrown-500),
     1px -1px 0 var(--color-lightbrown-500),
    -1px  1px 0 var(--color-lightbrown-500),
     1px  1px 0 var(--color-lightbrown-500);
    -webkit-text-stroke: 0px;
  }
.section--05 .title-size-002 {
    font-family: 'Mixal variable', arial , sans-serif;
    color: var(--color-lightbrown-500);
  }
.section--06 .title-size-002 {
    color: var(--color-black-950);
    letter-spacing: 0;
    text-shadow:
     0px  0 0 var(--color-lightbrown-500),
    -1px -1px 0 var(--color-lightbrown-500),
     1px -1px 0 var(--color-lightbrown-500),
    -1px  1px 0 var(--color-lightbrown-500),
     1px  1px 0 var(--color-lightbrown-500);
    -webkit-text-stroke: 0px;
  }
/* || MEDIA QUERIES */
/* On screens that are 1244px width or less */
@media screen and (max-width: 1244px) {
  body {
    /* background-color: red; */
  }
    .section--01 p.article:last-of-type {
      margin-bottom: 5vh;
    }

  .section--style-scattered {
    padding-bottom: 100px;
  }

    .section--style-scattered .title--container {
      height: 400px;
    }

      .section--style-scattered .title--container .title-size-001, .section--style-scattered .title--container .title-size-002 {
        transform: translateX(-50%) translateX(calc(50vw - 40px)) translateY(-50%) translateY(200px); /* center title, translateX should be half of width */
      }

    .section--style-scattered .img--container {
      /* background-color: rgb(100, 100, 30, 0.3); */
      height: 80vh;
      transform: translateY(-50px);
    }

  .section--style-scattered_B {
    padding-bottom: 300px;
  }

    .section--style-scattered_B .title--container {
      height: 400px;
    }
      /* background-color: rgb(100, 100, 30, 0.5); */

      .section--style-scattered_B .title--container .title-size-002, .section--style-scattered_B .title--container .title-size-002 {
        transform: translateX(-50%) translateX(calc(50vw - 40px)) translateY(-50%) translateY(200px); /* center title, translateX should be half of width */
      }

    .section--style-scattered_B .img--container {
      /* background-color: rgb(100, 100, 30, 0.3); */
      transform: translateY(-70px);
      height: 80vh;
    }

      .section--style-scattered_B .img--container .img {
        width: 350px;
        height: calc(350px * 0.75);
      }

  /*
  .section--style-grid {
    .title--container {
      height: 400px;

      .title-size-002 {
        transform: translateX(-50%) translateX(50vw) translateY(0);
      }
    }

    .img--container {
      transform: translateY(-150px);
    }


  }
  */


}
/* On screens that are 600px or less */
@media screen and (max-width: 600px) {
  body {
    /* background-color: olive; */
  }
    .section--intro p.article:last-of-type {
      margin-bottom: 5vh;
    }

  .section--style-scattered {
    padding-bottom: 100px;
  }

    .section--style-scattered .title--container {
      height: 200px;
    }

      .section--style-scattered .title--container .title-size-001, .section--style-scattered .title--container .title-size-002 {
        transform: translateX(-50%) translateX(calc(50vw - 40px)) translateY(-50%) translateY(100px);
      }

    .section--style-scattered .img--container {
      transform: translateY(0);
      height: 110vh;
    }

      .section--style-scattered .img--container .img {
        width: 300px;
        height: calc(300px * 0.75);
        left: 50%;
      }

        .section--style-scattered .img--container .img.img_01 {transform: translateX(-50%) translateX(-35vw) translateY(2vh) translateY(-50%) rotate(5deg);
          width: 200px;
          height: calc(200px * 0.75);
        }
        .section--style-scattered .img--container .img.img_02 {transform: translateX(-50%) translateX(30vw) translateY(103vh) translateY(-50%) rotate(8deg);}
        .section--style-scattered .img--container .img.img_03 {transform: translateX(-50%) translateX(-30vw) translateY(95vh) translateY(-50%) rotate(-2deg);}
        .section--style-scattered .img--container .img.img_04 {transform: translateX(-50%) translateX(25vw) translateY(10vh) translateY(-50%) rotate(2deg);}
        .section--style-scattered .img--container .img.img_05 {transform: translateX(-50%) translateX(-15vw) translateY(20vh) translateY(-50%) rotate(-4deg);}
        .section--style-scattered .img--container .img.img_06 {transform: translateX(-50%) translateX(33vw) translateY(60vh) translateY(-50%) rotate(-8deg);}
        .section--style-scattered .img--container .img.img_07 {transform: translateX(-50%) translateX(-25vw) translateY(55vh) translateY(-50%) rotate(-3deg);
          width: 300px;
          height: calc(300px * 0.75);
        }
        .section--style-scattered .img--container .img.img_08 {transform: translateX(-50%) translateX(0) translateY(80vh) translateY(-50%) rotate(3deg)}
        .section--style-scattered .img--container .img.img_09 {transform: translateX(-50%) translateX(0) translateY(35vh) translateY(-50%) rotate(6deg);
          width: 350px;
          height: calc(350px * 0.75);
        }


    .section--style-scattered p.caption {
      transform: translateX(0) translateX(15vw) translateY(0);
      width: 60vw;
    }
    .section--style-grid .title--container {
      width: 100vw;
    }
      .section--style-grid .img--container::after {
        left: 0;
        width: 100vw;
        transform: none;
      }

    .section--style-grid p.caption {
      transform: none;
      width: auto;
      position: static;
    }


  .section--style-scattered_B {
    padding-bottom: 200px;



  }


    .section--style-scattered_B .title--container {
      height: 200px;
    }

      .section--style-scattered_B .title--container .title-size-002 {
        transform: translateX(-50%) translateX(calc(50vw - 40px)) translateY(-50%) translateY(200px);
      }

    .section--style-scattered_B .img--container {
      /* background-color: rgb(100, 100, 30, 0.3); */
      transform: translateY(50px);
      height: 110vh;
    }


      .section--style-scattered_B .img--container .img {
        width: 250px;
        height: calc(250px * 0.75);

      }

        .section--style-scattered_B .img--container .img.img_01 {
          transform:
            translateX(-50%) translateY(-50%)
            translateX(-35vw) translateY(0)
            translateZ(-100px)
            rotateY(3deg) rotateX(0deg) rotateZ(-3deg);
        }
        .section--style-scattered_B .img--container .img.img_02 {
          transform:
            translateX(-50%) translateY(-50%)
            translateX(30vw) translateY(90vh)
            translateZ(20px)
            rotateY(-1deg) rotateX(0deg) rotateZ(3deg);
        }
        .section--style-scattered_B .img--container .img.img_03 {
          transform:
            translateX(-50%) translateY(-50%)
            translateX(-30vw) translateY(60vh)
            translateZ(20px)
            rotateY(-1deg) rotateX(0deg) rotateZ(2deg);
        }
        .section--style-scattered_B .img--container .img.img_04 {
          transform:
            translateX(-50%) translateY(-40%)
            translateX(25vw) translateY(10vh)
            translateZ(30px)
            rotateY(-6deg) rotateX(0deg) rotateZ(0deg);
        }
        .section--style-scattered_B .img--container .img.img_05 {
          transform:
            translateX(-50%) translateY(-50%)
            translateX(-15vw) translateY(25vh)
            translateZ(30px)
            rotateY(-2deg) rotateX(3deg) rotateZ(-2deg);
        }
        .section--style-scattered_B .img--container .img.img_06 {
          transform:
            translateX(-50%) translateY(-50%)
            translateX(20vw) translateY(55vh)
            translateZ(40px)
            rotateY(-2deg) rotateX(3deg) rotateZ(1deg);
        }
        .section--style-scattered_B .img--container .img.img_07 {
          transform:
            translateX(-50%) translateY(-50%)
            translateX(-20vw) translateY(60vh)
            translateZ(40px)
            rotateY(-2deg) rotateX(3deg) rotateZ(2deg);
        }
        .section--style-scattered_B .img--container .img.img_08 {
          transform:
            translateX(-50%) translateY(-50%)
            translateX(0) translateY(70vh)
            translateZ(50px)
            rotateY(2deg) rotateX(1deg) rotateZ(-1deg);
        }
        .section--style-scattered_B .img--container .img.img_09 {
          transform:
            translateX(-50%) translateY(-50%)
            translateX(0) translateY(40vh)
            translateZ(200px)
            rotateY(1deg) rotateX(3deg) rotateZ(1deg);
        }

    .section--style-scattered_B p.caption {
      transform: translateX(0%) translateX(15vw) translateY(0);
      width: 60vw;
      min-width: 300px;
    }

  /*
  .section--style-grid {
    .img--container {
      transform: translateY(-150px);


    }

    .title-size-002 {

      height: 600px;
      transform: translateX(-50%) translateX(50vw) translateY(0);
    }
  }
  */

}
/* On screens that are 375px or less */
@media screen and (max-width: 375px) {
  body {
    /* background-color: darkgrey; */
  }

  .section--style-scattered {
    padding-bottom: 100px;
  }

    .section--style-scattered .title--container {
      height: 200px;
    }

      .section--style-scattered .title--container .title-size-001, .section--style-scattered .title--container .title-size-002 {
        transform: translateX(-50%) translateX(50vw) translateY(-50%) translateY(100px);
      }

    .section--style-scattered .img--container {
      transform: translateY(0);
      height: 140vh;
    }

      .section--style-scattered .img--container .img {
        width: 200px;
        height: calc(200px * 0.75);
      }

        .section--style-scattered .img--container .img.img_01 {transform: translateX(-50%) translateX(-35vw) translateY(2vh) translateY(-50%) rotate(5deg);
          width: 150px;
          height: calc(150px * 0.75);
        }
        .section--style-scattered .img--container .img.img_02 {transform: translateX(-50%) translateX(30vw) translateY(80vh) translateY(-50%) rotate(5deg);}
        .section--style-scattered .img--container .img.img_03 {transform: translateX(-50%) translateX(15vw) translateY(130vh) translateY(-50%) rotate(-2deg);}
        .section--style-scattered .img--container .img.img_04 {transform: translateX(-50%) translateX(25vw) translateY(10vh) translateY(-50%) rotate(2deg);}
        .section--style-scattered .img--container .img.img_05 {transform: translateX(-50%) translateX(-10vw) translateY(115vh) translateY(-50%) rotate(-4deg);}
        .section--style-scattered .img--container .img.img_06 {transform: translateX(-50%) translateX(10vw) translateY(95vh) translateY(-50%) rotate(0deg);}
        .section--style-scattered .img--container .img.img_07 {transform: translateX(-50%) translateX(-20vw) translateY(73vh) translateY(-50%) rotate(3deg);
          width: 250px;
          height: calc(250px * 0.75);
        }
        .section--style-scattered .img--container .img.img_08 {transform: translateX(-50%) translateX(20vw) translateY(55vh) translateY(-50%) rotate(-3deg)}
        .section--style-scattered .img--container .img.img_09 {transform: translateX(-50%) translateX(0) translateY(30vh) translateY(-50%) rotate(6deg);
          width: 275px;
          height: calc(275px * 0.75);
        }


    .section--style-scattered p.caption {
        transform: translateX(0%) translateX(25vw) translateY(0);
        width: 60vw;
        min-width: 220px;
    }

  .section--style-scattered_B {
    padding-bottom: 200px;

  }


    .section--style-scattered_B .title--container {
      height: 200px;
    }

      .section--style-scattered_B .title--container .title-size-001, .section--style-scattered_B .title--container .title-size-002 {
        transform: translateX(-50%) translateX(50vw) translateY(-50%) translateY(100px);
      }

    .section--style-scattered_B .img--container {
      /* background-color: rgb(100, 100, 30, 0.3); */
      transform: translateY(0);
      height: 140vh;
    }


      .section--style-scattered_B .img--container .img {
        width: 200px;
        height: calc(200px * 0.75);

      }

        .section--style-scattered_B .img--container .img.img_01 {
          transform:
            translateX(-50%) translateY(-50%)
            translateX(-35vw) translateY(10vh)
            translateZ(-100px)
            rotateY(3deg) rotateX(0deg) rotateZ(-3deg);
        }
        .section--style-scattered_B .img--container .img.img_02 {
          transform:
            translateX(-50%) translateY(-50%)
            translateX(30vw) translateY(130vh)
            translateZ(20px)
            rotateY(-1deg) rotateX(0deg) rotateZ(3deg);
        }
        .section--style-scattered_B .img--container .img.img_03 {
          transform:
            translateX(-50%) translateY(-50%)
            translateX(-30vw) translateY(95vh)
            translateZ(20px)
            rotateY(-1deg) rotateX(0deg) rotateZ(-5deg);
        }
        .section--style-scattered_B .img--container .img.img_04 {
          transform:
            translateX(-50%) translateY(-40%)
            translateX(25vw) translateY(10vh)
            translateZ(20px)
            rotateY(-6deg) rotateX(0deg) rotateZ(0deg);
        }
        .section--style-scattered_B .img--container .img.img_05 {
          transform:
            translateX(-50%) translateY(-50%)
            translateX(15vw) translateY(30vh)
            translateZ(30px)
            rotateY(-2deg) rotateX(3deg) rotateZ(-2deg);
        }
        .section--style-scattered_B .img--container .img.img_06 {
          transform:
            translateX(-50%) translateY(-50%)
            translateX(20vw) translateY(85vh)
            translateZ(40px)
            rotateY(-2deg) rotateX(3deg) rotateZ(3deg);
        }
        .section--style-scattered_B .img--container .img.img_07 {
          transform:
            translateX(-50%) translateY(-50%)
            translateX(-20vw) translateY(75vh)
            translateZ(40px)
            rotateY(-2deg) rotateX(3deg) rotateZ(2deg);
          width: 200px;
          height: calc(200px * 0.75);
        }
        .section--style-scattered_B .img--container .img.img_08 {
          transform:
            translateX(-50%) translateY(-50%)
            translateX(0) translateY(110vh)
            translateZ(50px)
            rotateY(2deg) rotateX(1deg) rotateZ(-1deg);
        }
        .section--style-scattered_B .img--container .img.img_09 {
          transform:
            translateX(-50%) translateY(-50%)
            translateX(0) translateY(60vh)
            translateZ(200px)
            rotateY(1deg) rotateX(3deg) rotateZ(1deg);
        }

    .section--style-scattered_B p.caption {
      transform: translateX(0%) translateX(25vw) translateY(0);
      width: 60vw;
      min-width: 220px;
    }

}
/* vertical media query */
@media (max-height: 600px) {

}
