/* Typography */
@font-face {
  font-family: "Source Sans 3";
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  src: url("fonts/WOFF2/TTF/SourceSans3-Light.ttf-d3600303ed3beb570d545492f0064172.woff2") format("woff2"), url("fonts/WOFF/OTF/SourceSans3-Light.otf-d24ebb61a458b73a69994761c455c65c.woff") format("woff");
}
@font-face {
  font-family: "Source Sans 3";
  font-weight: 300;
  font-style: italic;
  font-stretch: normal;
  src: url("fonts/WOFF2/TTF/SourceSans3-LightIt.ttf-d7fa871102cbd6cdf2f40c268fbee616.woff2") format("woff2"), url("fonts/WOFF/OTF/SourceSans3-LightIt.otf-ef884e8a1382a162bf90381502d62df5.woff") format("woff");
}
@font-face {
  font-family: "Source Sans 3";
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  src: url("fonts/WOFF2/TTF/SourceSans3-Regular.ttf-675f0495b38e1b6d6682f5e4492a1855.woff2") format("woff2"), url("fonts/WOFF/OTF/SourceSans3-Regular.otf-2a68b3f57db98f6ecb26433ceebb80a0.woff") format("woff");
}
@font-face {
  font-family: "Source Sans 3";
  font-weight: 400;
  font-style: italic;
  font-stretch: normal;
  src: url("fonts/WOFF2/TTF/SourceSans3-It.ttf-969c9a4f8f6500b7cf4809703ad0e040.woff2") format("woff2"), url("fonts/WOFF/OTF/SourceSans3-It.otf-bc5302b926aca4386cc647c4e04292b1.woff") format("woff");
}
@font-face {
  font-family: "Source Sans 3";
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  src: url("fonts/WOFF2/TTF/SourceSans3-Bold.ttf-e0f6cf970574c637f3f911691a96a3a2.woff2") format("woff2"), url("fonts/WOFF/OTF/SourceSans3-Bold.otf-8fe15cb78ef708dcc6a3561e7a1b99aa.woff") format("woff");
}
/* Design System */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background: var(--neutral-grey-section);
}

[width="100%"] {
  width: 100%;
}

[height="100%"] {
  height: 100%;
}

[stretch],
[stretch=true] {
  width: 100%;
}

/* Horizontal Stack */
[layout=h-stack],
[layout=row] {
  display: flex;
}

[h-stack=spread] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Horizontal Stack: Spacing */
[layout=h-stack][gap="1"] > * + *,
[layout=row][gap="1"] > * + * {
  margin-left: 1px;
}

[layout=h-stack][gap="2"] > * + *,
[layout=row][gap="2"] > * + * {
  margin-left: 2px;
}

[layout=h-stack][gap="4"] > * + *,
[layout=row][gap="4"] > * + * {
  margin-left: 4px;
}

[layout=h-stack][gap="8"] > * + *,
[layout=row][gap="8"] > * + * {
  margin-left: 8px;
}

[layout=h-stack][gap="16"] > * + *,
[layout=row][gap="16"] > * + * {
  margin-left: 16px;
}

[layout=h-stack][gap="20"] > * + *,
[layout=row][gap="20"] > * + * {
  margin-left: 20px;
}

[layout=h-stack][gap="24"] > * + *,
[layout=row][gap="24"] > * + * {
  margin-left: 24px;
}

[layout=h-stack][gap="32"] > * + *,
[layout=row][gap="32"] > * + * {
  margin-left: 32px;
}

/* Horizontal Stack: Alignment */
[layout=h-stack][vertical-align=center] {
  align-items: center;
}

[layout=h-stack][vertical-align=top] {
  align-items: flex-start;
}

[layout=h-stack][vertical-align=bottom] {
  align-items: flex-end;
}

[layout=row][vertical-align=center] {
  align-items: center;
}

[layout=row][vertical-align=top] {
  align-items: flex-start;
}

[layout=row][vertical-align=bottom] {
  align-items: flex-end;
}

/* Hortizontal Stack: Justification */
[justify=space-between] {
  justify-content: space-between;
  width: 100%;
}

[spread],
[justify=spread],
[justify-content=space-between] {
  justify-content: space-between;
  width: 100%;
}

[justify=center],
[justify-content=center] {
  justify-content: center;
  width: 100%;
}

[justify=start],
[justify-content=start] {
  justify-content: start;
  width: 100%;
}

/* Vertical Stack */
[layout=v-stack] {
  display: flex;
  flex-direction: column;
}

[layout=v-stack][gap="1"] > * + * {
  margin-top: 1px;
}

[layout=v-stack][gap="2"] > * + * {
  margin-top: 2px;
}

[layout=v-stack][gap="4"] > * + * {
  margin-top: 4px;
}

[layout=v-stack][gap="8"] > * + * {
  margin-top: 8px;
}

[layout=v-stack][gap="16"] > * + * {
  margin-top: 16px;
}

[layout=v-stack][gap="20"] > * + * {
  margin-top: 20px;
}

[layout=v-stack][gap="24"] > * + * {
  margin-top: 24px;
}

[layout=v-stack][gap="32"] > * + * {
  margin-top: 32px;
}

/* Vertical Stack Alignment */
[layout=v-stack][vertical-align=center] {
  align-items: center;
}

[layout=v-stack][vertical-align=top] {
  align-items: flex-start;
}

[layout=v-stack][vertical-align=bottom] {
  align-items: flex-end;
}

/* Layout: Grid */
[layout=grid] {
  display: grid;
  grid-template-columns: repeat(auto-fit, 22px);
  align-items: start;
  justify-content: start;
}

[layout=grid][gap="4"] {
  grid-gap: 4px;
}

[layout=grid][gap="8"] {
  grid-gap: 8px;
}

[layout=grid][gap="16"] {
  grid-gap: 16px;
}

[layout=grid][gap="24"] {
  grid-gap: 24px;
}

[layout=grid][gap="32"] {
  grid-gap: 32px;
}

[layout=grid][gap="40"] {
  grid-gap: 40px;
}

/* Other Layouts */
[layout=center] {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navigation Bar */
[layout=navigation-bar] {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  grid-gap: 8px;
  align-items: center;
  place-items: center;
}

[scroll] {
  overflow: scroll;
}

[layout=solo] {
  display: grid;
  grid-template-columns: 1fr;
}

[layout=duo] {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

[layout=trio] {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

[layout=quartett] {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

[layout="1-2"] {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

[layout="1-3"] {
  display: grid;
  grid-template-columns: 1fr 3fr;
}

[align-items=center] {
  align-items: center;
}

[position=sticky] {
  position: sticky;
  top: 0;
  z-index: 1;
}

[layout=form-grid] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

[flex] {
  flex: 1;
}

:root {
  /* Brand */
  --brand-yellow: #FCBD00;
  /* Neutrals */
  --neutral-white: #FFFFFF;
  --neutral-grey: #3A3A3A;
  --neutral-grey-hover: #1E1D1C;
  --neutral-grey-section: #EEEEEE;
  --neutral-grey-lighter: #787878;
  --neutral-border: #ccc;
  /* Accent */
  --accent-green: #62B44F;
  --accent-red: #D63222;
  --accent-orange: #F18825;
  --accent-blue: #28B8CE;
  /* Feedback */
  --feedback-success: var(--accent-green);
  --feedback-error: var(--accent-red);
  --feedback-warning: var(--accent-orange);
  --feedback-information: var(--accent-blue);
}

.spacer {
  margin: 1rem 0;
}

/* Padding Attribute Utiltities */
[padding] {
  padding: 16px;
}

[padding="0"] {
  padding: 0px;
}

[padding="4"] {
  padding: 8px;
}

[padding="8"] {
  padding: 8px;
}

[padding="12"] {
  padding: 12px;
}

[padding="16"] {
  padding: 16px;
}

[padding="24"] {
  padding: 24px;
}

[padding="32"] {
  padding: 32px;
}

[padding="40"] {
  padding: 40px;
}

[padding="48"] {
  padding: 48px;
}

/* Horizontal Padding */
[padding-x="0"] {
  padding-left: 0px;
  padding-right: 0px;
}

[padding-x="4"] {
  padding-left: 4px;
  padding-right: 4px;
}

[padding-x="8"] {
  padding-left: 8px;
  padding-right: 8px;
}

[padding-x="12"] {
  padding-left: 12px;
  padding-right: 12px;
}

[padding-x="16"] {
  padding-left: 16px;
  padding-right: 16px;
}

[padding-x="24"] {
  padding-left: 24px;
  padding-right: 24px;
}

[padding-x="32"] {
  padding-left: 32px;
  padding-right: 32px;
}

/* Vertical Padding */
[padding-y="0"] {
  padding-top: 0px;
  padding-bottom: 0px;
}

[padding-y="4"] {
  padding-top: 4px;
  padding-bottom: 4px;
}

[padding-y="8"] {
  padding-top: 8px;
  padding-bottom: 8px;
}

[padding-y="12"] {
  padding-top: 12px;
  padding-bottom: 12px;
}

[padding-y="16"] {
  padding-top: 16px;
  padding-bottom: 16px;
}

[padding-y="24"] {
  padding-top: 24px;
  padding-bottom: 24px;
}

[padding-y="32"] {
  padding-top: 32px;
  padding-bottom: 32px;
}

/* Padding Top */
[padding-top="0"] {
  padding-top: 0px;
}

[padding-top="4"] {
  padding-top: 4px;
}

[padding-top="6"] {
  padding-top: 6px;
}

[padding-top="8"] {
  padding-top: 8px;
}

[padding-top="12"] {
  padding-top: 12px;
}

[padding-top="16"] {
  padding-top: 16px;
}

[padding-top="24"] {
  padding-top: 24px;
}

[padding-top="32"] {
  padding-top: 32px;
}

/* Padding Bottom */
[padding-bottom="0"] {
  padding-bottom: 0px;
}

[padding-bottom="4"] {
  padding-bottom: 4px;
}

[padding-bottom="8"] {
  padding-bottom: 8px;
}

[padding-bottom="12"] {
  padding-bottom: 12px;
}

[padding-bottom="16"] {
  padding-bottom: 16px;
}

[padding-bottom="24"] {
  padding-bottom: 24px;
}

[padding-bottom="32"] {
  padding-bottom: 32px;
}

/* Padding Left */
[padding-left="0"] {
  padding-left: 0px;
}

[padding-left="4"] {
  padding-left: 4px;
}

[padding-left="8"] {
  padding-left: 8px;
}

[padding-left="12"] {
  padding-left: 12px;
}

[padding-left="16"] {
  padding-left: 16px;
}

[padding-left="24"] {
  padding-left: 24px;
}

[padding-left="32"] {
  padding-left: 32px;
}

/* Margin */
[padding="0"] {
  padding: 0px;
}

[padding="4"] {
  padding: 8px;
}

[padding="8"] {
  padding: 8px;
}

[padding="12"] {
  padding: 12px;
}

[padding="16"] {
  padding: 16px;
}

[padding="24"] {
  padding: 24px;
}

[padding="32"] {
  padding: 32px;
}

/* Horizontal Padding */
[padding-x="0"] {
  padding-left: 0px;
  padding-right: 0px;
}

[padding-x="4"] {
  padding-left: 4px;
  padding-right: 4px;
}

[padding-x="8"] {
  padding-left: 8px;
  padding-right: 8px;
}

[padding-x="12"] {
  padding-left: 12px;
  padding-right: 12px;
}

[padding-x="16"] {
  padding-left: 16px;
  padding-right: 16px;
}

[padding-x="24"] {
  padding-left: 24px;
  padding-right: 24px;
}

[padding-x="32"] {
  padding-left: 32px;
  padding-right: 32px;
}

/* Vertical Padding */
[margin="0"] {
  margin: 0px;
}

[margin="4"] {
  margin: 4px;
}

[margin="8"] {
  margin: 8px;
}

[margin="12"] {
  margin: 12px;
}

[margin="16"] {
  margin: 16px;
}

[margin="24"] {
  margin: 24px;
}

[margin="32"] {
  margin: 32px;
}

[margin="40"] {
  margin: 40px;
}

/* Vertical Margin */
[margin-y="0"] {
  margin-top: 0px;
  margin-bottom: 0px;
}

[margin-y="4"] {
  margin-top: 4px;
  margin-bottom: 4px;
}

[margin-y="8"] {
  margin-top: 8px;
  margin-bottom: 8px;
}

[margin-y="12"] {
  margin-top: 12px;
  margin-bottom: 12px;
}

[margin-y="16"] {
  margin-top: 16px;
  margin-bottom: 16px;
}

[margin-y="24"] {
  margin-top: 24px;
  margin-bottom: 24px;
}

[margin-y="32"] {
  margin-top: 32px;
  margin-bottom: 32px;
}

[margin-y="40"] {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Horizontal Margin */
[margin-x="0"] {
  margin-left: 0px;
  margin-right: 0px;
}

[margin-x="4"] {
  margin-left: 4px;
  margin-right: 4px;
}

[margin-x="8"] {
  margin-left: 8px;
  margin-right: 8px;
}

[margin-x="12"] {
  margin-left: 12px;
  margin-right: 12px;
}

[margin-x="16"] {
  margin-left: 16px;
  margin-right: 16px;
}

[margin-x="24"] {
  margin-left: 24px;
  margin-right: 24px;
}

[margin-x="32"] {
  margin-left: 32px;
  margin-right: 32px;
}

[margin-x="40"] {
  margin-left: 40px;
  margin-right: 40px;
}

/* Margin Bottom */
[margin-bottom="0"] {
  margin-bottom: 0px;
}

[margin-bottom="4"] {
  margin-bottom: 4px;
}

[margin-bottom="8"] {
  margin-bottom: 8px;
}

[margin-bottom="12"] {
  margin-bottom: 12px;
}

[margin-bottom="16"] {
  margin-bottom: 16px;
}

[margin-bottom="24"] {
  margin-bottom: 24px;
}

[margin-bottom="32"] {
  margin-bottom: 32px;
}

[margin-bottom="40"] {
  margin-bottom: 40px;
}

/* Margin left */
[margin-left="0"] {
  margin-left: 0px;
}

[margin-left="4"] {
  margin-left: 4px;
}

[margin-left="8"] {
  margin-left: 8px;
}

[margin-left="12"] {
  margin-left: 12px;
}

[margin-left="16"] {
  margin-left: 16px;
}

[margin-left="24"] {
  margin-left: 24px;
}

[margin-left="32"] {
  margin-left: 32px;
}

[margin-left="40"] {
  margin-left: 40px;
}

/* Margin right */
[margin-right="0"] {
  margin-right: 0px;
}

[margin-right="4"] {
  margin-right: 4px;
}

[margin-right="8"] {
  margin-right: 8px;
}

[margin-right="12"] {
  margin-right: 12px;
}

[margin-right="16"] {
  margin-right: 16px;
}

[margin-right="24"] {
  margin-right: 24px;
}

[margin-right="32"] {
  margin-right: 32px;
}

[margin-right="40"] {
  margin-right: 40px;
}

/* Margin top */
[margin-top="0"] {
  margin-top: 0px;
}

[margin-top="4"] {
  margin-top: 4px;
}

[margin-top="8"] {
  margin-top: 8px;
}

[margin-top="12"] {
  margin-top: 12px;
}

[margin-top="16"] {
  margin-top: 16px;
}

[margin-top="24"] {
  margin-top: 24px;
}

[margin-top="32"] {
  margin-top: 32px;
}

[margin-top="40"] {
  margin-top: 40px;
}

:root {
  --font-stack: "Source Sans 3", "inter", system-ui, sans-serif;
}

[text-style=blockquote] {
  font-weight: 300;
  text-align: center;
  line-height: 1.1;
  font-size: 32px;
}

/* Titles are upper case */
[text-style=title-1] {
  font-weight: bold;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--brand-yellow);
}

[text-style=title-2] {
  font-weight: bold;
  font-size: 46px;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--neutral-gray);
}

[text-style=title-3] {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.1;
}

[text-style=title-4] {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Headings are normal case */
[text-style=heading-1] {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.2;
  white-space: break-word;
  overflow: hidden;
  hyphens: auto;
}

[text-style=heading-2] {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.1;
}

[text-style=heading-3] {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.1;
}

/* Normal text */
[text-style=caption] {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.065em;
}

[text-style=lead] {
  font-size: 24px;
  line-height: 1.5;
}

[text-style=body] {
  font-size: 16px;
  line-height: 1.4;
}

[text-style=body-2] {
  font-size: 20px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
}

[text-style=smaller] {
  font-size: 15px;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.6);
}

[text-style=small] {
  font-size: 14px;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.6);
}

[text-style=link] {
  text-decoration: underline;
}

[text-style=link]:hover {
  text-decoration: none;
}

[font-weight=light] {
  font-weight: 300;
}

[font-weight=normal] {
  font-weight: 500;
}

[font-weight=bold] {
  font-weight: 700;
}

[text-align=left] {
  text-align: left;
}

[text-align=center] {
  text-align: center;
}

[text-align=right] {
  text-align: right;
}

p {
  font-size: 17px;
  line-height: 1.5;
  max-width: 700px;
  color: rgba(0, 0, 0, 0.7);
}

p a {
  text-decoration: underline;
  font-weight: bold;
  color: rgb(0, 0, 0);
}

p a:hover {
  text-decoration: none;
}

p strong {
  color: rgb(0, 0, 0);
  font-weight: 600;
}

a {
  color: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: inherit;
}

table th {
  text-align: left;
}

table td,
table th {
  padding: 0.5rem;
  border-bottom: 1px solid var(--neutral-border);
  font-size: inherit;
  vertical-align: middle;
}

blockquote p {
  font-size: 21px;
}

blockquote p {
  margin-bottom: 1rem;
}

.markdown a {
  text-decoration: underline;
  white-space: nowrap;
}

@media (min-width: 900px) {
  p {
    font-size: 20px;
  }
  [text-style=blockquote] {
    font-size: 46px;
  }
  [text-style=body] {
    font-size: 19px;
  }
  [text-style=title-1] {
    font-size: 46px;
  }
  /* Headings are normal case */
  [text-style=heading-1] {
    font-size: 32px;
    hyphens: initial;
  }
  [text-style=small] {
    font-size: 17px;
    line-height: 1.3;
  }
}
[separator=top] {
  border-top: 1px solid var(--neutral-border);
}

[separator=bottom] {
  border-bottom: 1px solid var(--neutral-border);
}

[appearance=tag] {
  background: var(--input);
  padding: 0.125em 0.5em;
  font-weight: bold;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.material-icons {
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 900px) {
  [size=half-on-desktop] {
    width: 50%;
  }
}
/* Themes */
/* Default Theme */
:root {
  /* Colors */
  --foreground: var(--neutral-grey);
  --background: var(--neutral-white);
  --input-border: #dadada;
  --input-focus-ring: #a8a8a8;
  --input-focus-ring: #000;
  --input: #f8f8f8;
  --button: rgba(0, 0, 0, 0.06);
  --error: #ff0000;
  /* Fonts */
  --font-stack: "Source Sans 3", "inter", system-ui, sans-serif;
}

/* Components */
button .material-icons {
  position: relative;
  top: 1px;
  align-items: center;
}

button,
input[type=submit],
[appearance=button] {
  background: var(--neutral-grey);
  color: var(--neutral-white);
  padding: 1rem 2rem;
  font-size: 15px;
  width: 100%;
  justify-content: center;
  font-weight: bold;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  font-family: inherit;
  /* min-width: 200px; */
}

[appearance=navigation-link] {
  padding: 1rem 1rem;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  color: var(--neutral-grey);
  background: var(--brand-yellow);
  width: 100%;
  justify-content: center;
}

[appearance=navigation-link] .material-icons {
  transition: all 0.5s;
}

[appearance=navigation-link]:hover {
  /* box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2), inset 0px 0px 0 3px rgba(0, 0, 0, 0.2); */
  box-shadow: inset 0px 0px 0px 4px var(--neutral-grey), 0px 16px 16px rgba(0, 0, 0, 0.05), 0px 4px 4px rgba(0, 0, 0, 0.05);
  background: var(--brand-yellow);
}

[appearance=navigation-link]:hover .material-icons {
  transform: translateX(6px);
}

button[appearance=yellow-card],
a[appearance=yellow-card] {
  font-family: var(--font-stack);
  font-weight: normal;
  background: var(--brand-yellow);
  color: var(--foreground);
  text-transform: initial;
  letter-spacing: initial;
  text-align: left;
  /* max-width: 360px; */
  flex: 1;
  padding: 1.5rem 1.5rem;
  display: inline-block;
  text-decoration: none;
  transition: all 0.5s;
}

button[appearance=yellow-card]:hover,
a[appearance=yellow-card]:hover {
  box-shadow: inset 0px 0px 0px 4px var(--neutral-grey), 0px 16px 16px rgba(0, 0, 0, 0.05), 0px 4px 4px rgba(0, 0, 0, 0.05);
}

button[appearance=yellow-card] .material-icons,
a[appearance=yellow-card] .material-icons {
  transition: all 0.25s;
}

button[appearance=yellow-card]:hover .material-icons,
a[appearance=yellow-card]:hover .material-icons {
  transform: translateX(10px);
}

button[appearance=primary],
a[appearance=primary] {
  font-family: var(--font-stack);
  padding: 1rem 2rem;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  background: var(--brand-yellow);
  color: var(--foreground);
  text-align: left;
  display: inline-block;
  text-decoration: none;
}

button[appearance=primary]:hover,
a[appearance=primary]:hover {
  box-shadow: inset 0px 0px 0px 4px var(--neutral-grey);
}

button[appearance=icon] {
  padding: 0.75em;
  border-radius: 100px;
  background: var(--button);
  color: black;
  align-self: start;
  width: initial;
}

button[appearance=icon]:hover {
  background: var(--input-border);
}

button:hover,
input[type=submit]:hover,
[appearance=button]:hover {
  background: var(--neutral-grey-hover);
}

button:active:not(:disabled),
input[type=submit]:active:not(:disabled),
[appearance=button]:active:not(:disabled),
[appearance=navigation-link]:active:not(:disabled),
a[appearance=yellow-card]:active:not(:disabled),
[part=kicker]:active:not(:disabled) {
  transform: scale(0.95);
  outline: none;
}

button:disabled {
  background: rgba(0, 0, 0, 0.3);
  color: white;
}

button:focus,
input[type=submit]:focus,
[appearance=button]:focus {
  -webkit-appearance: none;
  outline: none;
  border: none;
  box-shadow: 0px 0px 0px 8px var(--brand-yellow);
}

button[appearance=naked] {
  background: none;
  padding: 0;
  -webkit-appearance: none;
  color: var(--foreground);
}

@media (min-width: 900px) {
  button[appearance=yellow-card],
  a[appearance=yellow-card] {
    min-width: 360px;
    padding: 2rem;
  }
  button,
  input[type=submit],
  [appearance=button] {
    width: initial;
    font-size: 18px;
  }
  [appearance=navigation-link] {
    font-size: 18px;
    letter-spacing: 0.035em;
    padding: 1rem 2rem;
    width: initial;
  }
}
[part=claim] {
  max-width: 900px;
  margin: 0 0 2rem 0;
}

[part=claim] section {
  margin-top: 24px;
}

@media (min-width: 960px) {
  [part=claim] {
    margin: 0 0 3rem 0;
  }
  [part=claim] section {
    margin-top: 40px;
  }
}
[component=choice] {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-weight: normal;
  transition: all 0.2s;
  cursor: pointer;
  background: var(--brand-yellow);
  text-transform: uppercase;
  font-weight: bold;
  text-transform: uppercase;
  padding: 1rem 0.25rem;
  font-size: 16px;
  letter-spacing: 0.035em;
}

[component=choice]:focus:not(:hover) {
  border: 1px solid var(--input-focus-ring);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2), inset 0px 0px 0px 2px var(--input-focus-ring);
}

[component=choice]:focus {
  outline: none;
}

[component=choice]:hover:not(:focus) {
  box-shadow: inset 0px 0px 0px 4px var(--neutral-grey), 0px 8px 16px rgba(0, 0, 0, 0.1), 0px 4px 4px rgba(0, 0, 0, 0.05);
}

[component=choice]:focus-within {
  box-shadow: inset 0px 0px 0px 4px var(--neutral-grey), 0px 8px 16px rgba(0, 0, 0, 0.1), 0px 4px 4px rgba(0, 0, 0, 0.05);
}

@media (min-width: 900px) {
  [component=choice] {
    padding: 1.25rem 0.5rem;
    font-size: 18px;
    letter-spacing: 0.065em;
  }
}
summary {
  font-size: 16px;
  position: relative;
  border-top: 1px solid var(--neutral-border);
  padding: 0.5rem 0;
}

summary p {
  margin-left: 2rem;
  font-size: 16px;
  line-height: 1.3;
}

summary .material-icons {
  color: var(--brand-yellow);
  margin-right: 0.25rem;
  vertical-align: middle;
  position: absolute;
  left: 0;
  font-size: 24px;
}

details summary::-webkit-details-marker,
details summary::marker {
  display: none;
  content: "";
}

summary:hover {
  cursor: pointer;
  background: var(--neutral-grey-section);
}

details li {
  background: none;
  margin: 0;
}

summary:focus {
  outline: none;
}

details {
  border-bottom: 1px solid var(--neutral-border);
}

details[open] .material-icons {
  transform: rotate(90deg);
}

details[open] {
  background: var(--neutral-grey-section);
}

details .markdown {
  padding: 1rem 2rem;
  font-size: 16px;
  line-height: 1.3;
}

details .markdown p {
  font-size: 16px;
}

[component=feature-list] {
  font-size: 20px;
  list-style-type: none;
}

[component=feature-list] > * {
  background: white;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
}

[component=feature-list] li {
  padding: 1rem;
  margin-bottom: 0.5rem;
}

form {
  margin: 0;
}

label {
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

label > span,
label > div {
  margin-bottom: 0.5rem;
  display: block;
}

label > p {
  font-size: 16px;
}

input {
  font-family: var(--font-stack);
}

textarea {
  -webkit-appearance: none;
}

input[type=text],
input[type=email],
textarea {
  -webkit-appearance: none;
  padding: 1rem 1.5rem;
  background: var(--input);
  /* box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2); */
  border: 1px solid var(--input-border);
  width: 100%;
  font-size: 16px;
  transition: all 0.25s;
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  outline: none;
  border: 1px solid var(--input-focus-ring);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2), inset 0px 0px 0px 2px var(--input-focus-ring);
}

fieldset {
  border: none;
}

a {
  text-decoration: none;
}

/* Inputs */
input[type=checkbox] {
  -webkit-appearance: none;
  cursor: pointer;
  background: var(--input);
  border: 1px solid var(--input-border);
  /* box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2); */
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  border-radius: 4px;
  transition: border 0.2s;
}

input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIxN3B4IiB2aWV3Qm94PSIwIDAgMjAgMTciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDYwLjEgKDg4MTMzKSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5QYXRoPC90aXRsZT4KICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPgogICAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBvbHlsaW5lIGlkPSJQYXRoIiBzdHJva2U9IiMzQTNBM0EiIHN0cm9rZS13aWR0aD0iNCIgcG9pbnRzPSIyIDkgOCAxNCAxOCAyIj48L3BvbHlsaW5lPgogICAgPC9nPgo8L3N2Zz4=");
  background-size: 20px 20px;
  background-position: center;
  background-repeat: no-repeat;
  border-color: var(--neutral-grey);
  stroke: var(--neutral-grey);
}

input[type=radio] {
  -webkit-appearance: none;
  border: 2px solid var(--neutral-grey-lighter);
  cursor: pointer;
  background: var(--neutral-grey-section);
  min-width: 28px;
  max-width: 28px;
  min-height: 28px;
  max-height: 28px;
  border-radius: 4px;
  transition: border 0.2s;
  border-radius: 100px;
}

input[type=radio]:checked {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDIwIDE4Ij4KICA8cG9seWxpbmUgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjRkZGIiBzdHJva2Utd2lkdGg9IjQiIHBvaW50cz0iMiA5Ljg5NiA4LjYzMiAxNS4wMjkgMTguNDEyIDIiLz4KPC9zdmc+Cg==");
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--neutral-grey);
  border-color: var(--neutral-grey);
}

input[type=checkbox]:hover,
input[type=radio]:hover {
  border: 2px solid var(--neutral-grey);
}

input[type=checkbox]:focus,
input[type=radio]:focus {
  outline: none;
  box-shadow: inset 0px 0px 0px 2px var(--neutral-grey);
}

select {
  -webkit-appearance: none;
  padding: 1rem 1.5rem;
  background: var(--input);
  border: 1px solid var(--input-border);
  width: 100%;
  font-size: 16px;
  transition: all 0.25s;
  border-radius: 0;
  /* box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2); */
}

select:focus {
  outline: none;
  border: 1px solid var(--input-focus-ring);
  box-shadow: inset 0px 0px 0px 2px var(--input-focus-ring);
}

input.form-error,
select.form-error {
  border: 1px solid var(--accent-red);
  box-shadow: inset 0px 0px 0px 2px var(--accent-red);
}

[component=form-body] {
  animation: fadeInUp 1.25s 0s normal both;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  [component=form-body] {
    margin-top: 2rem;
  }
}
.form-dialog-wrapper {
  background: rgba(0, 0, 0, 0.2);
  display: grid;
  place-items: center;
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 200;
  height: 100%;
  overflow: auto;
}

.form-dialog {
  width: 100%;
  padding: 1.5rem;
  z-index: 1;
  background: white;
  /* animation: fadeInUp 0.5s; */
  box-shadow: 0px 10px 100px rgba(0, 0, 0, 0.4);
  /* min-height: 100vh; */
}

@media (min-width: 960px) {
  .form-dialog-wrapper {
    height: 100vh;
  }
  .form-dialog {
    width: 50%;
    z-index: 2;
    height: initial;
    background: white;
    max-width: 600px;
    margin: 2rem;
    padding: 3rem;
    min-height: initial;
  }
}
.dialog-enter-active,
.dialog-leave-active {
  transition: opacity 0.25s;
}

.dialog-enter, .dialog-leave-to {
  opacity: 0;
}

[component=form-header] [part=kicker] {
  margin-bottom: 2rem;
  cursor: pointer;
  background: var(--button);
  padding: 0.5rem;
  display: inline-block;
  transition: all 0.2s;
}

[component=form-header] [part=kicker]:hover {
  background: rgba(0, 0, 0, 0.12);
}

[component=form-header] [part=title] {
  margin-bottom: 1.5rem;
  font-size: 24px;
}

[component=form-header] [part=title],
[component=form-header] p {
  animation: fadeInUp 1.25s 0s normal both;
}

@media (min-width: 900px) {
  [component=form-header] [part=title] {
    margin-bottom: 3rem;
    font-size: 40px;
    letter-spacing: -0.025em;
  }
  [component=form-header] [part=kicker] {
    margin-bottom: 3rem;
  }
}
footer {
  background: var(--neutral-grey-section);
  padding: 1rem 1.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 100;
  align-items: center;
  align-self: end;
  display: block;
}

footer a {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px;
  padding: 0.5rem;
  display: inline-block;
  text-align: left;
  transition: all 0.2s;
}

footer a:hover {
  background: rgba(0, 0, 0, 0.1);
}

footer a + a {
  margin-left: 1rem;
}

@media (min-width: 960px) {
  footer {
    /* position: fixed; */
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  footer section:nth-child(2) {
    text-align: right;
  }
  footer a {
    display: inline-block;
  }
}
.section-intro {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 102;
  background: var(--neutral-white);
  height: 100vh;
  width: 100%;
  display: grid;
  place-items: center;
  transition: all 1s;
  animation: background-from-yellow-to-white 0.5s 0.5s both;
  pointer-events: none;
}

.logo {
  animation: fade-out 1s 4s both;
  transform: translateY(-100%);
}

.logo-circle {
  animation: scale-down 2s both;
  text-align: center;
  transform-origin: 50% 50%;
  width: 50px;
}

.logo-text {
  animation: fade-in 1s 2s both;
  width: 200px;
  transform: translateX(-13%);
}

@media (min-width: 960px) {
  .logo {
    transform: translateY(0%);
  }
  .logo-text {
    width: 320px;
  }
  .logo-circle {
    width: initial;
  }
}
@keyframes scale-down {
  0% {
    transform: scale(100);
  }
  50%, 70% {
    transform: scale(1) translateX(200%);
  }
  100% {
    transform: scale(1) translateX(50%);
  }
}
@keyframes background-from-yellow-to-white {
  from {
    background: var(--brand-yellow);
  }
  to {
    background: var(--neutral-white);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.honeypot {
  position: absolute;
  left: -9999px;
}

.language-switcher {
  left: initial;
}

.language-switcher li {
  background: none;
  list-style-type: none;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.5;
}

.language-switcher .active {
  font-weight: bold;
  color: var(--neutral-grey);
  opacity: 1;
}

@media (min-width: 960px) {
  .language-switcher {
    padding: 0rem;
    z-index: 0;
    width: initial;
    top: 48px;
    left: initial;
    display: flex;
    justify-content: space-between;
  }
}
p + p {
  margin-top: 1.5rem;
}

.u-center-section-content p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

img {
  max-width: 100%;
}

.markdown > * + * {
  margin-top: 1rem;
}

.markdown > ul li + li {
  margin-top: 0.5rem;
}

hr {
  border: none;
  height: 1px;
  width: 100%;
  background: var(--neutral-border);
}

[component=notice] {
  padding: 1.5rem 2rem;
  border: 1px solid var(--neutral-border);
  background: var(--neutral-grey-section);
}

[component=notice-warning] {
  padding: 1.5rem 2rem;
  border: 1px solid var(--neutral-border);
  background: var(--accent-orange);
}

[component=notice-error] {
  padding: 1rem 1rem;
  border: 1px solid var(--neutral-border);
  background: var(--accent-red);
  color: var(--neutral-white);
}

.page-header {
  padding: 0.5rem 1rem;
  position: static;
  width: 100%;
  z-index: 1;
  align-self: start;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-header-logo {
  width: 120px;
  display: flex;
}

@media (min-width: 960px) {
  .page-header-logo {
    width: initial;
  }
  .page-header {
    padding: 2rem 2.5rem;
  }
}
img[component=package-image] {
  width: 50%;
  border-radius: 50%;
}

/* Layouts */
[layout=card-grid] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 24px;
  width: 100%;
}

@media (min-width: 900px) {
  [layout=card-grid] {
    grid-gap: 32px;
  }
}
[layout=choice-grid] {
  display: flex;
  flex-direction: column;
}

[layout=choice-grid] > * + * {
  margin-top: 1rem;
}

@media (min-width: 960px) {
  [layout=choice-grid] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1rem;
  }
  [layout=choice-grid] > * + * {
    margin-top: 0;
  }
}
[layout=center] {
  margin: 0 auto;
  max-width: 1400px;
  display: grid;
  place-content: center;
  padding: 0rem 1.5rem 4rem 1.5rem;
  height: 100%;
  margin-top: 1rem;
}

@media (min-width: 960px) {
  [layout=center] {
    margin: 0 auto;
    max-width: 1400px;
    display: grid;
    place-items: center;
    padding-bottom: 4rem;
    margin-top: 0rem;
  }
}
[layout=default] {
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem;
  width: 100%;
  display: grid;
  place-items: center;
}

[layout=features] {
  padding: 1.5rem 1rem 1rem 1rem;
  height: 100%;
  background: var(--brand-yellow);
  color: var(--foreground);
  transform: rotate(-5deg);
}

[layout=features][rotation=none] {
  transform: rotate(0deg);
}

@media (min-width: 900px) {
  [layout=features] {
    padding: 4rem;
  }
}
[layout=split] {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0rem;
  height: 100%;
}

aside {
  padding: 1rem 0;
  max-width: 700px;
}

aside[side=left] {
  margin-top: 0rem;
  flex: 1;
  min-height: 33vh;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: space-between;
  background: var(--neutral-grey-section);
  /* width: 100%; */
  /* min-height: 400px; */
  place-content: center;
}

aside[side=left] [part=illustration] {
  width: 80%;
  align-self: center;
  /* flex: 1; */
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 1rem;
  /* min-height: 360px; */
  max-height: 400px;
}

aside[side=left] [part=illustration] svg {
  width: initial;
  height: initial;
  object-fit: initial;
  max-width: 100%;
}

aside[side=left] [part=caption] {
  text-align: center;
  padding: 1rem 2rem 1rem 1rem;
  width: 100%;
  flex-shrink: 0;
  background: var(--neutral-grey-section);
}

aside[side=right] {
  padding: 1.5rem 1rem 2rem 1rem;
}

@media (min-width: 960px) {
  body {
    font-size: 20px;
  }
  aside {
    padding: 0rem 1.5rem 1.5rem 1.5rem;
  }
  [layout=split] {
    display: grid;
    grid-gap: 4rem;
    align-self: stretch;
    grid-template-columns: 1fr 1fr;
    padding: 0 3rem 3rem 3rem;
  }
  aside[side=left] {
    top: 3rem;
    flex: 1;
    z-index: -1;
    padding: 0;
  }
  aside[side=right] {
    grid-column: 2/3;
    padding: 0;
  }
  aside[side=left] [part=illustration] {
    padding: 0;
    max-height: initial;
    width: 100%;
    align-self: center;
  }
  aside[side=left] [part=illustration] svg {
    /* width: 360px; */
  }
  aside[side=left] [part=caption] {
    padding: 2rem;
  }
}
/* Transitions */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

@keyframes fadeInFrom20 {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
[animation=fadeInFrom20] {
  animation: fadeInFrom20 1.25s 0s normal both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
[animation=fadeInUp] {
  animation: fadeInUp 1.25s 0s normal both;
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
[animation=flipInY] {
  animation: flipInY 1.25s 0s 1 normal both;
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
[animation=jackInTheBox] {
  animation: jackInTheBox 1.25s 0s normal both;
}

@keyframes lightSpeedInLeft {
  from {
    transform: translate3d(-320px, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: translate3d(-50px, 0, 0) skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
svg {
  overflow: visible;
}

#point-1 {
  animation: fade-in 0.5s 1.75s both;
}

#point-2 {
  animation: fade-in 0.5s 2.85s both;
}

svg #heart {
  transform-origin: 50% 50%;
  animation: heartBeat 2s 0s infinite normal both;
}

[animation-delay="0"] {
  animation-delay: 0ms;
}

[animation-delay="500"] {
  animation-delay: 500ms;
}

[animation-delay="1000"] {
  animation-delay: 1000ms;
}

[animation-delay="1250"] {
  animation-delay: 1250ms;
}

[animation-delay="1500"] {
  animation-delay: 1500ms;
}

[animation-delay="1750"] {
  animation-delay: 1750ms;
}

[animation-delay="2000"] {
  animation-delay: 2000ms;
}

[animation-delay="2250"] {
  animation-delay: 2250ms;
}

[animation-delay="5000"] {
  animation-delay: 5000ms;
}

[animation-delay="5500"] {
  animation-delay: 5500ms;
}

[animation-delay="6000"] {
  animation-delay: 6000ms;
}

[animation-delay="6250"] {
  animation-delay: 6250ms;
}

[animation-delay="6500"] {
  animation-delay: 6500ms;
}

/* Illustration: Corporates / Start */
#corporates-road-yellow {
  animation: corporates-road-yellow 10s 1s infinite alternate both;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}

@keyframes corporates-road-yellow {
  0% {
    stroke-dashoffset: 500;
    opacity: 1;
  }
  40%, 60% {
    stroke-dashoffset: 1500;
    opacity: 1;
  }
  100% {
    opacity: 1;
    stroke-dashoffset: 500;
  }
}
#road-communities {
  animation: road-communities 2s 1s both;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
}

@keyframes road-communities {
  0% {
    stroke-dashoffset: 620;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
#kmu-person-1 {
  animation: getOut 1s 1s normal both;
}

#kmu-person-2 {
  animation: getOut 1s 1.25s normal both;
}

#kmu-person-3 {
  animation: getOut 1s 1.5s normal both;
}

#kmu-car {
  transform-origin: 100% 100%;
  animation: lightSpeedInLeft 1.25s 0s normal both;
}

@keyframes getOut {
  from {
    transform: translate(50px, 0);
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/* Animation Code for the people illustration */
#p1,
#p2,
#p3 {
  animation: fadeInFrom20 1000ms 0ms both;
}

#p7,
#p8,
#p9 {
  animation: fadeInFrom20 1000ms 250ms both;
}

#p10,
#p15,
#p16 {
  animation: fadeInFrom20 1000ms 500ms both;
}

#p11,
#p13,
#p18 {
  animation: fadeInFrom20 1000ms 750ms both;
}

#p4,
#p5,
#p18 {
  animation: fadeInFrom20 1000ms 1000ms both;
}

#p6,
#p12,
#p14 {
  animation: fadeInFrom20 1000ms 1250ms both;
}

#p17,
#p18,
#p19 {
  animation: fadeInFrom20 1000ms 1500ms both;
}

#p20,
#p21,
#p22 {
  animation: fadeInFrom20 1000ms 1750ms both;
}

#p23,
#p24,
#p25 {
  animation: fadeInFrom20 1000ms 2000ms both;
}

#p27,
#p28,
#p29 {
  animation: fadeInFrom20 1000ms 2250ms both;
}

#p30,
#p31,
#p32 {
  animation: fadeInFrom20 1000ms 2500ms both;
}

#p33,
#p34,
#p35 {
  animation: fadeInFrom20 1000ms 3000ms both;
}

#illustration-standorte {
  animation: zoom-in 8s both;
  transform-origin: 50% 50%;
}

#standorte-person1 {
  animation: move1-1 3s both, move1-2 4s 6s, hide 1s 9s both;
}

#standorte-person2 {
  animation: move2-1 3s both, move2-2 4s 6s, hide 1s 9s both;
}

#standorte-person3 {
  animation: move3-1 2s, move3-2 1s 2s both, move3-3 4s 6s, hide 1s 9s both;
}

#standorte-car3 {
  animation: hide 1s 9s both;
}

#standorte-car-yellow {
  opacity: 0;
  animation: standorte-car-yellow 0.5s 4s both, standorte-car-yellow-drive 2s 10s;
  transform-origin: 250px 150px;
}

@keyframes standorte-car-yellow-drive {
  50% {
    transform: translate(-40px, 20px) rotate(45deg);
  }
  100% {
    transform: translate(200px, 20px) rotate(45deg);
  }
}
@keyframes idle {}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes standorte-car-yellow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes move1-1 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-110px, -40px);
  }
}
@keyframes move1-2 {
  from {
    transform: translate(-110px, -40px);
  }
  to {
    transform: translate(-35px, -120px);
  }
}
@keyframes move2-1 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(110px, -40px);
  }
}
@keyframes move2-2 {
  from {
    transform: translate(110px, -40px);
  }
  to {
    transform: translate(205px, -150px);
  }
}
@keyframes move3-1 {
  from {
    transform: translate(0px, 0px);
  }
  to {
    transform: translate(110px, 110px);
  }
}
@keyframes move3-2 {
  from {
    transform: translate(110px, 110px);
  }
  to {
    transform: translate(150px, 90px);
  }
}
@keyframes move3-3 {
  from {
    transform: translate(150px, 90px);
  }
  to {
    transform: translate(240px, 10px);
  }
}
#illustration-stele {
  animation: zoom-in 5s 0s both;
  transform-origin: 50% 0%;
}

@keyframes zoom-in {
  0% {
    transform-origin: 50% 50%;
    transform: scale(0.5);
  }
  100% {
    transform-origin: 50% 0%;
    transform: scale(1.25);
  }
}
body {
  color: var(--foreground);
  background: var(--background);
  font-family: var(--font-stack);
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
}

#app, #wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

custom-select {
  --padding-y:6px;
  --focus-color:rgba(0,0,0,0.16);
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

custom-select select {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  padding: var(--padding-y) 24px var(--padding-y) 32px;
  background: #eee;
  width: auto;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-family: var(--font-stack);
  color: var(--foreground);
  cursor: pointer;
}

custom-select select:hover {
  background: #ddd;
}

custom-select select:focus {
  border: none;
  outline: none;
  box-shadow: inset 0 0 0 2px var(--focus-color);
}

custom-select:before {
  width: 24px;
  height: 20px;
  background-size: 20px;
  background-repeat: no-repeat;
  background-image: url("../icons/language-cfef94dd0851214eab1773d8389e24c2.svg");
  z-index: 1;
  left: 8px;
}

custom-select:after,
custom-select:before {
  content: "";
  pointer-events: none;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

custom-select:after {
  width: 20px;
  height: 8px;
  right: 0.5rem;
  background-position: 50%;
  background-image: url("../icons/arrow_drop_down-42cd877443bcf33aa137b7e1dff1a130.svg");
}

@media (min-width: 900px) {
  custom-select select {
    padding: 1rem 2.5rem;
  }
  custom-select:before {
    left: 14px;
  }
}

/*# sourceMappingURL=app.output.css.map */
