@charset "UTF-8";
/**
 * Defaults
 */
/*!
	yeah-grid-utils


	@version	1.2.1
	@author		Yeah <https://github.com/yeah8000>
	@used		https://grid-utils.yeah.de
*/
/**
 * Defaults
 */
/**
 * Opinions
 */
*,
*:before,
*:after {
  box-sizing: border-box;
}

/**
 * Mixins and functions
 */
/**
 * mobile-first media query at breakpoint
 * @param  {cssunit} $size	breakpoint in pixels or slug (see $breakpoints) or map of width/height
 * @param  {cssunit} $height breakpoint in pixels
 */
/**
 * mobile-last media query at breakpoint
 * @param  {cssunit} $size	breakpoint in pixels or slug (see $breakpoints) or map of width/height
 * @param  {cssunit} $height breakpoint in pixels
 */
/**
 * shorthand: set the gutter-width as value for a property
 */
/**
 * shorthand: set the outer-margin as value for a property
 */
/**
 * shorthand: set the gutter-width as value for a property
 */
/**
 * shorthand: get the value of a property at a certain size
 */
/**
 * Get breakpoint by name
 * @param  {string} $name
 */
/**
 * utility mixin for containers
 */
/**
 * utility mixin for fullwidth containers
 */
/**
 * utility mixin for containers
 */
/**
 * utility mixin for rows that ignore the outer-margin
 */
/**
 * utility mixin for getting grid vars as css variables
 */
/**
 * split a string by a seperator
 * thanks: https://stackoverflow.com/questions/32376461/how-to-split-a-string-into-two-lists-of-numbers-in-sass
 */
/**
 * utility mixin for declaring multiple properties for multiple breakpoints
 * @param  {list} $values	list of values for breakpoints (in $breakpoint)
 *
 * e.g.
 *
 * @include breakpoint-stepper((
 *         xs: #ff0000,
 *         md: #00ff00,
 *         lg: #0000ff
 *     ), color);
 * 
 */
/**
 *  Map multiple grid values to a property, modifier is optional
 *	e.g. map-grid-values('padding-left': ('outer-margin', 0.5));
 */
/**
 * 	init
 */
:root {
  --outer-margin: 15px;
  --gutter-width: 15px;
  --max-width: 500px;
}
@media only screen and (min-width: 768px) {
  :root {
    --outer-margin: 20px;
    --gutter-width: 20px;
    --max-width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  :root {
    --outer-margin: 30px;
    --gutter-width: 30px;
    --max-width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  :root {
    --outer-margin: 50px;
    --gutter-width: 40px;
    --max-width: 1400px;
  }
}
@media only screen and (min-width: 2000px) and (min-height: 900px) {
  :root {
    --outer-margin: 60px;
    --gutter-width: 50px;
    --max-width: 1420px;
  }
}

.container {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  max-width: 500px;
}
@media only screen and (min-width: 768px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .container {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    padding-right: 50px;
    padding-left: 50px;
    max-width: 1400px;
  }
}
@media only screen and (min-width: 2000px) and (min-height: 900px) {
  .container {
    padding-right: 60px;
    padding-left: 60px;
    max-width: 1420px;
  }
}

.container-full {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1920px;
  padding-right: 15px;
  padding-left: 15px;
}
@media only screen and (min-width: 768px) {
  .container-full {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .container-full {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .container-full {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media only screen and (min-width: 2000px) and (min-height: 900px) {
  .container-full {
    padding-right: 60px;
    padding-left: 60px;
  }
}

.grid {
  width: 100%;
  display: grid;
}

.column-gap {
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media only screen and (min-width: 768px) {
  .column-gap {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .column-gap {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .column-gap {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media only screen and (min-width: 2000px) and (min-height: 900px) {
  .column-gap {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}

.row-gap {
  row-gap: 15px;
}
@media only screen and (min-width: 768px) {
  .row-gap {
    row-gap: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .row-gap {
    row-gap: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .row-gap {
    row-gap: 40px;
  }
}
@media only screen and (min-width: 2000px) and (min-height: 900px) {
  .row-gap {
    row-gap: 50px;
  }
}

.grid-full {
  width: auto;
  margin-right: -15px;
  margin-left: -15px;
}
@media only screen and (min-width: 768px) {
  .grid-full {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media only screen and (min-width: 1024px) {
  .grid-full {
    margin-right: -30px;
    margin-left: -30px;
  }
}
@media only screen and (min-width: 1200px) {
  .grid-full {
    margin-right: -50px;
    margin-left: -50px;
  }
}
@media only screen and (min-width: 2000px) and (min-height: 900px) {
  .grid-full {
    margin-right: -60px;
    margin-left: -60px;
  }
}

/* bitter-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Bitter-Web";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/bitter/bitter-v36-latin-500.woff2") format("woff2");
}
/* bitter-500italic - latin */
@font-face {
  font-display: swap;
  font-family: "Bitter-Web";
  font-style: italic;
  font-weight: normal;
  src: url("../fonts/bitter/bitter-v36-latin-500italic.woff2") format("woff2");
}
/* bitter-800 - latin */
@font-face {
  font-display: swap;
  font-family: "Bitter-Web";
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/bitter/bitter-v36-latin-800.woff2") format("woff2");
}
/* barlow-condensed-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Barlow-Condensed-Web";
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/barlow-condensed/barlow-condensed-v12-latin-700.woff2") format("woff2");
}
/* barlow-condensed-700italic - latin */
@font-face {
  font-display: swap;
  font-family: "Barlow-Condensed-Web";
  font-style: italic;
  font-weight: bold;
  src: url("../fonts/barlow-condensed/barlow-condensed-v12-latin-700italic.woff2") format("woff2");
}
:root {
  --color-background: #2486d3;
  --color-text: #fff;
  --color-link: #fff;
  --color-link-hover: #d9ecf8;
  --color-decoration: #069;
}

.dark {
  --color-background: #0e2632;
  --color-decoration: #2486d3;
  background-color: var(--color-background);
}

.white {
  --color-background: #fff;
  --color-text: #069;
  --color-link: #069;
  --color-link-hover: #0e2632;
  --color-decoration: #2486d3;
  background-color: var(--color-background);
}

:root {
  --max-width: 1400px;
  --max-width-one-col: 860px;
  --nav-breakpoint: 768px;
}
@media only screen and (min-width: 2000px) and (min-height: 900px) {
  :root {
    --max-width: 1620px;
    --max-width-one-col: 900px;
  }
}

/**
 * UTILITY MIXINS
 */
/**
 * strip the unit from a pixel-value
 */
/**
 * convert px to rems
 */
/**
 * Often changed
 */
body {
  margin: 0;
  padding: 0;
  background-color: #2486d3;
}

body,
input,
textarea,
select {
  font-family: "Bitter-Web", Times, serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-smoothing: grayscale;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
.p,
blockquote,
.blockquote {
  color: var(--color-text);
}
h1:first-child,
.h1:first-child,
h2:first-child,
.h2:first-child,
h3:first-child,
.h3:first-child,
h4:first-child,
.h4:first-child,
h5:first-child,
.h5:first-child,
h6:first-child,
.h6:first-child,
p:first-child,
.p:first-child,
blockquote:first-child,
.blockquote:first-child {
  margin-top: 0;
}
h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
h4:last-child,
.h4:last-child,
h5:last-child,
.h5:last-child,
h6:last-child,
.h6:last-child,
p:last-child,
.p:last-child,
blockquote:last-child,
.blockquote:last-child {
  margin-bottom: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  font-family: "Barlow-Condensed-Web", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  font-weight: bold;
}

h1,
.h1 {
  font-size: 3.75rem;
  line-height: 1.2;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

h2,
.h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}

h3,
.h3 {
  font-size: 1.875rem;
  line-height: 1.2;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}

p,
.p {
  margin-top: 1em;
  margin-bottom: 1em;
  text-wrap: pretty;
}

a:where(:not(.btn):not(.btn-primary):not(.btn-secondary) :not(.btn-red):not(.btn-blue):not(.btn-outline) :not(.btn-white):not(.btn-icon):not(.btn-icon-only)) {
  color: var(--color-link);
  text-decoration: underline;
  text-decoration-color: var(--color-link-hover);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.3em;
  transition: color 0.3s;
}
@media (hover: hover) {
  a:where(:not(.btn):not(.btn-primary):not(.btn-secondary) :not(.btn-red):not(.btn-blue):not(.btn-outline) :not(.btn-white):not(.btn-icon):not(.btn-icon-only)):where(:not(:disabled)):hover {
    color: var(--color-link-hover);
    text-decoration: none;
  }
}
a:where(:not(.btn):not(.btn-primary):not(.btn-secondary) :not(.btn-red):not(.btn-blue):not(.btn-outline) :not(.btn-white):not(.btn-icon):not(.btn-icon-only)):focus-visible {
  outline: 2px solid var(--color-link-hover);
  outline-offset: 5px;
  border-radius: 5px;
  text-decoration: none;
}
a:where(:not(.btn):not(.btn-primary):not(.btn-secondary) :not(.btn-red):not(.btn-blue):not(.btn-outline) :not(.btn-white):not(.btn-icon):not(.btn-icon-only))[disabled] {
  pointer-events: none;
}

hr {
  height: 0;
  border: none;
  border-bottom: 1px solid #fff;
  margin: 1rem 0;
}

/**
 * Seldom changed
 */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
[tabindex="-1"]:focus {
  outline: none !important;
}

article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

abbr[title],
abbr[data-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote,
.blockquote {
  position: relative;
  margin: 2em 0;
  padding: 0 1em;
  font-style: italic;
  font-size: 1.5rem;
}
blockquote:before, blockquote:after,
.blockquote:before,
.blockquote:after {
  z-index: 0;
  position: absolute;
  font-size: 4.375rem;
  line-height: 1;
  color: var(--color-decoration);
}
blockquote:before,
.blockquote:before {
  content: "„";
  left: -10px;
  bottom: -10px;
}
blockquote:after,
.blockquote:after {
  content: "“";
  right: -10px;
  top: -10px;
}
blockquote *,
.blockquote * {
  z-index: 1;
}
blockquote cite,
.blockquote cite {
  width: 100%;
  display: inline-block;
  font-weight: normal;
  text-align: right;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

progress {
  vertical-align: baseline;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th {
  text-align: inherit;
}

tr + tr {
  border-top: 1px solid #9b948d;
}
td,
th {
  padding: 0.5em 1em;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-align: left;
  caption-side: bottom;
}

thead {
  font-weight: bold;
}

ol,
ul {
  margin-left: 0;
  padding-left: 0;
}
ol li,
ul li {
  margin-bottom: 0.5em;
}
ol li ul,
ol li ol,
ul li ul,
ul li ol {
  margin-left: 1em;
}

main ol,
main ul,
body#tinymce ol,
body#tinymce ul {
  margin-left: 0;
  padding-left: 0;
}
main ol li,
main ul li,
body#tinymce ol li,
body#tinymce ul li {
  margin-bottom: 0.3em;
}
main ol li ul,
main ol li ol,
main ul li ul,
main ul li ol,
body#tinymce ol li ul,
body#tinymce ol li ol,
body#tinymce ul li ul,
body#tinymce ul li ol {
  margin-left: 1em;
}
main ul,
body#tinymce ul {
  list-style: none;
}
main ul > li,
body#tinymce ul > li {
  padding-left: 1em;
  position: relative;
}
main ul > li:before,
body#tinymce ul > li:before {
  content: "•";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
main ol,
body#tinymce ol {
  counter-reset: li;
  list-style: none;
}
main ol > li,
body#tinymce ol > li {
  position: relative;
  padding-left: 2em;
}
main ol > li:before,
body#tinymce ol > li:before {
  content: counters(li, ".") ".";
  counter-increment: li;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
main ol > li ol,
body#tinymce ol > li ol {
  counter-reset: li;
  margin-left: 0;
  margin-top: 0.4em;
  margin-bottom: 0.8em;
}
main ol > li ol > li,
body#tinymce ol > li ol > li {
  padding-left: 2.2em;
}
main ol > li ol > li ol > li,
body#tinymce ol > li ol > li ol > li {
  padding-left: 3.4em;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input,
select,
select option,
[type=search],
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

/**
 * Basic form styles
 */
:root {
  --color-input: var(--color-dark);
  --color-input-background: #fff;
  --color-input-border: var(--color-light);
  --color-input-border-focus: var(--color-dark);
  --color-input-check-icon: var(--color-dark);
}

form {
  display: grid;
  gap: calc(var(--gutter-width) / 2);
}
@media only screen and (min-width: 1024px) {
  form {
    grid-template-columns: repeat(4, 1fr);
  }
  form > * {
    grid-column: 1/span 4;
  }
  form .col1 {
    grid-column: span 1;
  }
  form .col2 {
    grid-column: span 2;
  }
  form .col3 {
    grid-column: span 3;
  }
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  color: var(--color-text);
  margin-bottom: 0.8em;
}

input,
textarea,
select,
select option {
  background-color: var(--color-input-background);
  display: block;
  width: 100%;
  outline: none;
  border-radius: 5px;
  border: 2px solid var(--color-input-border);
  min-height: var(--min-height-input);
  line-height: var(--min-height-input);
  padding: 0 0.75rem;
  color: var(--color-input);
  font-family: "Bitter-Web", Times, serif;
  font-weight: bold;
  transition: border-color 0.3s, box-shadow 0.3s;
}
input:active, input:focus,
textarea:active,
textarea:focus,
select:active,
select:focus,
select option:active,
select option:focus {
  border-color: var(--color-input-border-focus);
}
input.invalid, input.wpcf7-not-valid,
textarea.invalid,
textarea.wpcf7-not-valid,
select.invalid,
select.wpcf7-not-valid,
select option.invalid,
select option.wpcf7-not-valid {
  border-color: var(--color-input-invalid);
}
input::-webkit-input-placeholder input::-moz-placeholder, input:-ms-input-placeholder, input:-moz-placeholder,
input::-webkit-input-placeholder textarea::-moz-placeholder,
textarea:-ms-input-placeholder,
textarea:-moz-placeholder,
input::-webkit-input-placeholder select::-moz-placeholder,
select:-ms-input-placeholder,
select:-moz-placeholder,
input::-webkit-input-placeholder select option::-moz-placeholder,
select option:-ms-input-placeholder,
select option:-moz-placeholder,
textarea::-webkit-input-placeholder input::-moz-placeholder,
textarea::-webkit-input-placeholder textarea::-moz-placeholder,
textarea::-webkit-input-placeholder select::-moz-placeholder,
textarea::-webkit-input-placeholder select option::-moz-placeholder,
select::-webkit-input-placeholder input::-moz-placeholder,
select::-webkit-input-placeholder textarea::-moz-placeholder,
select::-webkit-input-placeholder select::-moz-placeholder,
select::-webkit-input-placeholder select option::-moz-placeholder,
select option::-webkit-input-placeholder input::-moz-placeholder,
select option::-webkit-input-placeholder textarea::-moz-placeholder,
select option::-webkit-input-placeholder select::-moz-placeholder,
select option::-webkit-input-placeholder select option::-moz-placeholder {
  color: #555;
  opacity: 0.5;
}

textarea {
  padding-top: 0.4em;
  padding-bottom: 0.5em;
  line-height: 1.4;
}

/**
 * The infield top-aligned labels
 */
label {
  color: var(--color-text);
  display: inline-block;
  position: relative;
}
label > span.label {
  position: absolute;
  left: 0.9rem;
  top: 0.6rem;
  font-size: 0.875rem;
  opacity: 0.75;
  color: var(--color-input);
  z-index: 1;
  transition: color 0.3s;
}
label > span.label + input,
label > span.label + select, label > span.label + .wpcf7-form-control-wrap input,
label > span.label + .wpcf7-form-control-wrap select {
  padding-top: 1.2rem;
}
label > span.label + textarea, label > span.label + .wpcf7-form-control-wrap textarea {
  padding-top: 1.8rem;
}
label:focus-within > span.label {
  color: var(--color-input-border-focus);
}

/**
 *	Radio & Checkbox-Styles
 */
input {
  /**
   * Radio button specifics
   */
  /**
   * Checkbox specifics
   */
}
input[type=radio], input[type=checkbox] {
  display: block;
  width: 1px;
  height: 1px;
  opacity: 0.01;
  position: absolute;
}
input[type=radio] + .toggle,
input[type=radio] + .wpcf7-list-item-label, input[type=checkbox] + .toggle,
input[type=checkbox] + .wpcf7-list-item-label {
  padding-left: 2.25rem;
  display: inline-block;
}
input[type=radio] + .toggle:before, input[type=radio] + .toggle:after,
input[type=radio] + .wpcf7-list-item-label:before,
input[type=radio] + .wpcf7-list-item-label:after, input[type=checkbox] + .toggle:before, input[type=checkbox] + .toggle:after,
input[type=checkbox] + .wpcf7-list-item-label:before,
input[type=checkbox] + .wpcf7-list-item-label:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.1875rem;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}
input[type=radio] + .toggle:before,
input[type=radio] + .wpcf7-list-item-label:before, input[type=checkbox] + .toggle:before,
input[type=checkbox] + .wpcf7-list-item-label:before {
  background-color: var(--color-input-background);
  border: 2px solid var(--color-input-border);
}
input[type=radio] + .toggle:after,
input[type=radio] + .wpcf7-list-item-label:after, input[type=checkbox] + .toggle:after,
input[type=checkbox] + .wpcf7-list-item-label:after {
  background-color: var(--color-input-check-icon);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
input[type=radio]:focus, input[type=checkbox]:focus {
  box-shadow: none;
}
input[type=radio]:focus + .toggle:before,
input[type=radio]:focus + .wpcf7-list-item-label:before, input[type=checkbox]:focus + .toggle:before,
input[type=checkbox]:focus + .wpcf7-list-item-label:before {
  border-color: var(--color-input-border-focus);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}
input[type=radio][disabled] + .toggle, input[type=checkbox][disabled] + .toggle {
  opacity: 0.33;
}
input[type=radio] + .toggle:before,
input[type=radio] + .wpcf7-list-item-label:before {
  border-radius: 50%;
}
input[type=radio] + .toggle:after,
input[type=radio] + .wpcf7-list-item-label:after {
  border-radius: 50%;
  left: 0;
  top: 0.1875rem;
  transform: scale(0);
}
input[type=radio]:checked + .toggle:after,
input[type=radio]:checked + .wpcf7-list-item-label:after {
  transform: scale(0.6);
  opacity: 1;
}
input[type=checkbox] + .toggle:after,
input[type=checkbox] + .wpcf7-list-item-label:after {
  -webkit-mask-image: url(../img/icon-checkbox.svg);
          mask-image: url(../img/icon-checkbox.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  left: 0.25rem;
  top: -0.25rem;
  width: 1.75rem;
  height: 1.75rem;
}
input[type=checkbox]:checked + .toggle:after,
input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}

select {
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 60 40' style='enable-background:new 0 0 60 40;' xml:space='preserve'><path fill='%23020203' d='M41.5,12.9L29.8,25.1L18,12.9l-1.4,1.4L29.8,28L43,14.3L41.5,12.9z'/></svg>");
  background-size: 50px 25px;
  background-position: right center;
  background-repeat: no-repeat;
}

/**
 * The basic button style
 */
.btn-white, .btn-outline,
.btn-secondary, .btn-primary,
.btn-red,
input[type=submit], .btn,
button,
.btn-blue,
input[type=button],
input[type=reset] {
  -moz-appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  align-items: center;
  padding: 0.15em 0.6em 0.25em;
  color: #fff;
  background-color: #069;
  font-size: 1.3125rem;
  font-family: "Barlow-Condensed-Web", Helvetica, Arial, sans-serif;
  font-weight: bold;
  line-height: 1.6;
  border-radius: 5px;
  border: 2px solid #069;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.btn-white:before, .btn-outline:before,
.btn-secondary:before, .btn-primary:before,
.btn-red:before,
input[type=submit]:before, .btn:before,
button:before,
.btn-blue:before,
input[type=button]:before,
input[type=reset]:before {
  background-color: currentColor;
}
.btn-white:focus, .btn-outline:focus,
.btn-secondary:focus, .btn-primary:focus,
.btn-red:focus,
input[type=submit]:focus, .btn:focus,
button:focus,
.btn-blue:focus,
input[type=button]:focus,
input[type=reset]:focus {
  outline: none;
}
.btn-white:focus-visible, .btn-outline:focus-visible,
.btn-secondary:focus-visible, .btn-primary:focus-visible,
.btn-red:focus-visible,
input[type=submit]:focus-visible, .btn:focus-visible,
button:focus-visible,
.btn-blue:focus-visible,
input[type=button]:focus-visible,
input[type=reset]:focus-visible {
  outline-offset: 2px;
  outline: 2px solid var(--color-text);
}
@media (hover: hover) {
  .btn-white:where(:not(:disabled)):hover, .btn-outline:where(:not(:disabled)):hover,
  .btn-secondary:where(:not(:disabled)):hover, .btn-primary:where(:not(:disabled)):hover,
  .btn-red:where(:not(:disabled)):hover,
  input[type=submit]:where(:not(:disabled)):hover, .btn:where(:not(:disabled)):hover,
  button:where(:not(:disabled)):hover,
  .btn-blue:where(:not(:disabled)):hover,
  input[type=button]:where(:not(:disabled)):hover,
  input[type=reset]:where(:not(:disabled)):hover {
    border-color: #005580;
    background-color: #005580;
    color: #fff;
  }
}
.btn-white:disabled, .btn-outline:disabled,
.btn-secondary:disabled, .btn-primary:disabled,
.btn-red:disabled,
input[type=submit]:disabled, .btn:disabled,
button:disabled,
.btn-blue:disabled,
input[type=button]:disabled,
input[type=reset]:disabled {
  opacity: 0.4 !important;
  cursor: default !important;
}
.link.btn-white, .link.btn-outline,
.link.btn-secondary, .link.btn-primary,
.link.btn-red,
input.link[type=submit], .link.btn,
button.link,
.link.btn-blue,
input.link[type=button],
input.link[type=reset] {
  background: none;
  padding: 0;
  margin: 0;
  color: #fff;
  border: none;
}
@media (hover: hover) {
  .link.btn-white:where(:not(:disabled)):hover, .link.btn-outline:where(:not(:disabled)):hover,
  .link.btn-secondary:where(:not(:disabled)):hover, .link.btn-primary:where(:not(:disabled)):hover,
  .link.btn-red:where(:not(:disabled)):hover,
  input.link[type=submit]:where(:not(:disabled)):hover, .link.btn:where(:not(:disabled)):hover,
  button.link:where(:not(:disabled)):hover,
  .link.btn-blue:where(:not(:disabled)):hover,
  input.link[type=button]:where(:not(:disabled)):hover,
  input.link[type=reset]:where(:not(:disabled)):hover {
    background: none;
    border: none;
  }
}
.btn-big.btn-white, .btn-big.btn-outline,
.btn-big.btn-secondary, .btn-big.btn-primary,
.btn-big.btn-red,
input.btn-big[type=submit], .btn-big.btn,
button.btn-big,
.btn-big.btn-blue,
input.btn-big[type=button],
input.btn-big[type=reset] {
  font-size: 1.5625rem;
  padding: 0.5em 1em 0.6em;
}

.btn-white {
  font-family: "Bitter-Web", Times, serif;
  font-size: 0.875rem;
  font-weight: normal;
}

.btn-primary,
.btn-red,
input[type=submit] {
  border-color: #e2001a;
  background-color: #e2001a;
  color: #fff;
}
@media (hover: hover) {
  .btn-primary:where(:not(:disabled)):hover,
  .btn-red:where(:not(:disabled)):hover,
  input[type=submit]:where(:not(:disabled)):hover {
    border-color: #af0014;
    background-color: #af0014;
  }
}

.btn-outline,
.btn-secondary {
  background-color: transparent;
  border-color: var(--color-text);
  color: var(--color-text);
}
@media (hover: hover) {
  .btn-outline:where(:not(:disabled)):hover,
  .btn-secondary:where(:not(:disabled)):hover {
    border-color: var(--color-text);
    background-color: var(--color-text);
    color: var(--color-background);
  }
}

.btn-white {
  border-color: var(--color-link);
  background-color: var(--color-link);
  color: var(--color-background);
  padding-top: 0.65em;
  padding-bottom: 0.65em;
}
@media (hover: hover) {
  .btn-white:where(:not(:disabled)):hover {
    border-color: var(--color-link-hover);
    background-color: var(--color-link-hover);
    color: var(--color-background);
  }
}

.btn-icon {
  position: relative;
  text-align: left;
  padding-left: 2.375rem;
}
.btn-icon:before {
  content: "";
  position: absolute;
  left: 0.625rem;
  top: 0;
  height: 100%;
  width: 1rem;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.btn-icon.btn-back:before {
  -webkit-mask-image: url(../img/icon-back.svg);
          mask-image: url(../img/icon-back.svg);
}
.btn-icon.btn-close:before {
  -webkit-mask-image: url(../img/icon-close.svg);
          mask-image: url(../img/icon-close.svg);
}
.btn-icon.btn-info:before {
  -webkit-mask-image: url(../img/icon-info.svg);
          mask-image: url(../img/icon-info.svg);
}
.btn-icon.btn-no:before {
  -webkit-mask-image: url(../img/icon-no.svg);
          mask-image: url(../img/icon-no.svg);
  left: 0.8125rem;
  width: 0.875rem;
}
.btn-icon.btn-yes:before {
  -webkit-mask-image: url(../img/icon-yes.svg);
          mask-image: url(../img/icon-yes.svg);
}

.btn-icon-only {
  overflow: hidden;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  text-indent: 3.125rem;
  white-space: nowrap;
}
.btn-icon-only.btn-small {
  width: 1.5rem;
  height: 1.5rem;
}
.btn-icon-only.btn-small:before {
  left: 0.125rem;
}

div.wpcf7 .wpcf7-list-item {
  display: block;
  margin-left: 0;
}
div.wpcf7 .wpcf7-not-valid-tip {
  color: var(--color-input-invalid);
}
div.wpcf7 .wpcf7-response-output {
  margin: 0;
  padding: 0.9rem 1rem 1rem;
  border: none;
  color: var(--color-text);
  background-color: #ffb900;
  font-weight: bold;
}
div.wpcf7 form.init .wpcf7-response-output,
div.wpcf7 form.validating .wpcf7-response-output {
  display: none;
}
div.wpcf7 form.sent .wpcf7-response-output {
  color: var(--color-btn-primary-hover);
  background-color: var(--color-btn-primary-bg-hover);
}
div.wpcf7 form.failed .wpcf7-response-output,
div.wpcf7 form.aborted .wpcf7-response-output {
  color: #fff;
  background-color: var(--color-input-invalid);
}
div.wpcf7 .website-hp,
div.wpcf7 .email-hp {
  display: none !important;
}

.color-primary {
  color: var(--color-primary);
}

.color-white {
  color: #fff;
}

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

/**
	This is only loaded on the frontend to prevent variating font-sizes in the backend.
	because of that it is also desktop first
**/
@media only screen and (max-width: 767px) {
  body,
  input,
  textarea,
  select {
    font-size: 1rem;
  }
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4,
  h5,
  .h5 {
    -webkit-hyphens: auto;
            hyphens: auto;
  }
  h1,
  .h1 {
    font-size: 2.5rem;
  }
  h2,
  .h2 {
    font-size: 1.875rem;
  }
  h3,
  .h3 {
    font-size: 1.5rem;
  }
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6 {
    font-size: 1.25rem;
  }
  blockquote,
  .blockquote {
    font-size: 1.125rem;
  }
  p,
  .p {
    margin-top: 0.8em;
    margin-bottom: 0.8em;
  }
  .btn,
  button,
  .btn-blue,
  input[type=button],
  input[type=reset], .btn-primary,
  .btn-red,
  input[type=submit], .btn-outline,
  .btn-secondary, .btn-white {
    font-size: 1.0625rem;
  }
  .btn-big.btn,
  button.btn-big,
  .btn-big.btn-blue,
  input.btn-big[type=button],
  input.btn-big[type=reset], .btn-big.btn-primary,
  .btn-big.btn-red,
  input.btn-big[type=submit], .btn-big.btn-outline,
  .btn-big.btn-secondary, .btn-big.btn-white {
    font-size: 1.3125rem;
  }
  .btn-white {
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 4.375rem;
  }
  h2,
  .h2 {
    font-size: 3.125rem;
  }
  h3,
  .h3 {
    font-size: 2.5rem;
  }
  blockquote,
  .blockquote {
    font-size: 1.625rem;
  }
}
@media only screen and (min-width: 2000px) and (min-height: 900px) {
  body,
  input,
  textarea,
  select {
    font-size: 1.375rem;
  }
  h1,
  .h1 {
    font-size: 4.375rem;
  }
  h2,
  .h2 {
    font-size: 3.125rem;
  }
  h3,
  .h3 {
    font-size: 2.5rem;
  }
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6 {
    font-size: 1.625rem;
  }
  blockquote,
  .blockquote {
    font-size: 1.625rem;
  }
  .btn,
  button,
  .btn-blue,
  input[type=button],
  input[type=reset], .btn-primary,
  .btn-red,
  input[type=submit], .btn-outline,
  .btn-secondary, .btn-white {
    font-size: 1.4375rem;
  }
  .btn-big.btn,
  button.btn-big,
  .btn-big.btn-blue,
  input.btn-big[type=button],
  input.btn-big[type=reset], .btn-big.btn-primary,
  .btn-big.btn-red,
  input.btn-big[type=submit], .btn-big.btn-outline,
  .btn-big.btn-secondary, .btn-big.btn-white {
    font-size: 1.6875rem;
  }
  .btn-white {
    font-size: 1rem;
  }
}
img,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}
@media only screen and (min-width: 1024px) {
  img.alignleft,
  svg.alignleft {
    float: left;
    padding: 0 1em 0 0;
    max-width: 50%;
  }
  img.alignright,
  svg.alignright {
    float: right;
    padding: 0 0 0 1em;
    max-width: 50%;
  }
}

svg:not(:root) {
  overflow: hidden;
}

figure,
.wp-caption {
  display: table;
  padding: 0;
  margin: 0.3em auto 1em;
}
figure + p,
.wp-caption + p {
  margin-top: 0;
}
figure figcaption,
figure .wp-caption-dd,
.wp-caption figcaption,
.wp-caption .wp-caption-dd {
  display: table-caption;
  caption-side: bottom;
  padding: 0.5em;
  font-size: 1rem;
  -webkit-hyphens: auto;
          hyphens: auto;
  word-break: break-word;
}
figure ​img,
.wp-caption ​img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
figure.aligncenter,
.wp-caption.aligncenter {
  padding: 0;
  margin: 0 auto;
}
@media only screen and (min-width: 1024px) {
  figure,
  .wp-caption {
    margin-bottom: 0.3em;
  }
  figure.alignleft,
  .wp-caption.alignleft {
    float: left;
    padding: 0 0.6em 0 0;
    max-width: 50%;
    margin-right: 0.6em;
  }
  figure.alignleft figcaption,
  .wp-caption.alignleft figcaption {
    margin-right: 0.8em;
  }
  figure.alignright,
  .wp-caption.alignright {
    float: right;
    padding: 0 0 0 0.6em;
    max-width: 50%;
    margin-left: 0.6em;
  }
  figure.alignright figcaption,
  .wp-caption.alignright figcaption {
    margin-left: 0.8em;
  }
}

.iframe {
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 56.25%;
}
.iframe iframe,
.iframe .mce-object-iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

html {
  height: 100%;
  min-height: 100%;
  background-color: #2486d3;
}
html * {
  min-width: 0;
}

body {
  min-height: 100%;
  display: flex;
  flex-flow: column nowrap;
  background: url(../img/background-glow.svg);
  background-size: cover;
  background-position: 40% 0;
  background-attachment: fixed;
}
@media only screen and (min-width: 768px) {
  body {
    background-position: 30% 0;
  }
}
@media only screen and (min-width: 1200px) {
  body {
    background-position: left top;
  }
}
body > footer {
  margin-top: auto;
  margin-bottom: 0;
}

.main {
  display: flex;
  flex-flow: column nowrap;
}
.main section {
  display: flex;
  flex-flow: column nowrap;
}

@media only screen and (min-width: 1024px) {
  .mobile-only {
    display: none;
  }
}

@media only screen and (max-width: 1023px) {
  .desktop-only {
    display: none;
  }
}

.sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  text-indent: 2px;
}

.margin-top-small {
  margin-top: var(--gutter-width);
}
.margin-top-large {
  margin-top: calc(var(--gutter-width) * 2);
}

.margin-bottom-small {
  margin-bottom: var(--gutter-width);
}
.margin-bottom-large {
  margin-bottom: calc(var(--gutter-width) * 2);
}

header.header {
  font-family: "Barlow-Condensed-Web", Helvetica, Arial, sans-serif;
}
header.header .header-inner {
  position: relative;
  display: grid;
  padding: 1em 0 0.25em;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
@media only screen and (min-width: 1024px) {
  header.header .header-inner {
    padding: 2em 0 0.25em;
  }
}
header.header .header-inner:before, header.header .header-inner:after {
  z-index: 50;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  background-color: #fff;
  height: 2px;
}
header.header .header-inner:before {
  left: 0;
  width: 138px;
}
header.header .header-inner:after {
  right: 0;
  width: calc(100% - 175px);
}
@media only screen and (min-width: 768px) {
  header.header .header-inner:before {
    width: 150px;
  }
  header.header .header-inner:after {
    width: calc(100% - 196px);
  }
}
@media only screen and (min-width: 1024px) {
  header.header .header-inner:before {
    width: 230px;
  }
  header.header .header-inner:after {
    width: calc(100% - 290px);
  }
}
@media only screen and (min-width: 1200px) {
  header.header .header-inner:before {
    width: 260px;
  }
  header.header .header-inner:after {
    width: calc(100% - 332px);
  }
}
header.header a.logo-link {
  position: relative;
  z-index: 51;
  display: block;
  width: 180px;
  height: 54px;
  overflow: hidden;
  background-image: url("../img/verhaengnis-logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  white-space: nowrap;
  text-indent: 400px;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  header.header a.logo-link {
    width: 200px;
    height: 60px;
  }
}
@media only screen and (min-width: 1024px) {
  header.header a.logo-link {
    width: 300px;
    height: 90px;
  }
}
@media only screen and (min-width: 1200px) {
  header.header a.logo-link {
    width: 340px;
    height: 102px;
  }
}
header.header .header-toggle-nav {
  justify-self: end;
  position: relative;
  z-index: 51;
}

button.btn-toggle-nav {
  position: relative;
  border: none;
  padding: 0.5rem 2rem 0.5rem 0.5rem;
  height: 2.5rem;
}
button.btn-toggle-nav .icon-burger:before,
button.btn-toggle-nav .icon-burger:after,
button.btn-toggle-nav .icon-burger-line {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 0px;
  background-color: currentColor;
  transition: all 0.3s;
  transform-origin: center;
}
button.btn-toggle-nav .icon-burger {
  position: absolute;
  height: 0;
  width: 0;
  top: 50%;
  left: 50%;
}
button.btn-toggle-nav .icon-burger:before, button.btn-toggle-nav .icon-burger:after,
button.btn-toggle-nav .icon-burger .icon-burger-line {
  left: -10px;
  top: -1px;
}
button.btn-toggle-nav .icon-burger:before {
  transform: translate(0, -6px);
  transition: background-color 0.3s, top 0.3s 0.2s, transform 0.3s;
}
button.btn-toggle-nav .icon-burger .icon-burger-line {
  transform: scaleX(1) translate(0, 0px);
  transition: background-color 0.3s, transform 0.3s 0.3s;
}
button.btn-toggle-nav .icon-burger:after {
  top: 5px;
  transition: background-color 0.3s, top 0.3s 0.2s, transform 0.3s;
}
button.btn-toggle-nav.active .icon-burger:before {
  top: 6px;
  transform: translate(0, -7px) rotateZ(45deg);
  transition: background-color 0.3s, top 0.3s, transform 0.3s 0.2s;
}
button.btn-toggle-nav.active .icon-burger .icon-burger-line {
  transform: scaleX(0) translate(8px, 0);
  transition: background-color 0.3s, transform 0.3s;
}
button.btn-toggle-nav.active .icon-burger:after {
  top: -1px;
  transform: translate(0, 0) rotateZ(-45deg);
  transition: background-color 0.3s, top 0.3s, transform 0.3s 0.2s;
}

@media only screen and (max-width: 767px) {
  .header-nav {
    position: fixed;
    z-index: 50;
    width: 500px;
    max-width: 94vw;
    min-height: 40vh;
    max-height: 90vh;
    top: 50%;
    left: 50%;
    overflow: auto;
    display: none;
    padding: var(--outer-margin);
    align-items: center;
    transform: translate(-50%, -20%);
    background-color: #fff;
    border-radius: 15px 15px;
    box-shadow: 0 0 10px rgba(0, 102, 153, 0.6);
  }
  .header-nav.active {
    display: grid;
    opacity: 0;
  }
  .header-nav.visible {
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: transform 0.5s cubic-bezier(0.08, 0.65, 0.32, 1.275), opacity 0.1s ease-in;
  }
  .header-nav.anim-out {
    transform: translate(-50%, -70%);
    opacity: 0;
    transition: transform 0.3s ease-in, opacity 0.3s ease-in;
  }
  .header-nav ul {
    margin: 0;
    padding: var(--outer-margin);
    display: flex;
    flex-flow: column wrap;
    height: 100%;
    align-items: center;
    justify-content: center;
  }
  .header-nav ul li {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 1.5rem;
  }
  .header-nav ul li:before {
    content: none;
  }
  .header-nav ul li:last-child {
    margin-left: 0;
  }
  .header-nav a:not(.btn-primary) {
    text-decoration: none;
    font-size: 1.5rem;
    color: #069;
  }
}
@media only screen and (max-width: 767px) and (hover: hover) {
  .header-nav a:not(.btn-primary):where(:not(:disabled)):hover {
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
  }
}
@media only screen and (max-width: 767px) {
  .header-nav a:not(.btn-primary):focus-visible {
    outline-color: #2486d3;
  }
  .header-nav a.btn-primary {
    font-size: 1.375rem;
  }
  .header-nav a.btn-primary:focus-visible {
    outline-color: #e2001a;
  }
  .header-curtain {
    display: none;
    position: fixed;
    z-index: 40;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(0, 102, 153, 0.4);
    transition: opacity 0.3s;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
  .header-curtain.active {
    display: block;
  }
  .header-curtain.visible {
    opacity: 1;
  }
}
@media only screen and (min-width: 768px) {
  .header-toggle-nav,
  .header-curtain {
    display: none;
  }
  .header-nav {
    display: flex;
    justify-content: flex-end;
  }
  .header-nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    height: 100%;
    align-items: center;
  }
  .header-nav ul li {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 2rem;
  }
  .header-nav ul li:before {
    content: none;
  }
  .header-nav ul li:first-child {
    margin-left: 0;
  }
  .header-nav a:not(.btn-primary) {
    text-decoration: none;
    font-size: 1.3125rem;
  }
}
@media only screen and (min-width: 768px) and (min-width: 2000px) and (min-height: 900px) {
  .header-nav a:not(.btn-primary) {
    font-size: 1.4375rem;
  }
}
@media only screen and (min-width: 768px) and (hover: hover) {
  .header-nav a:not(.btn-primary):where(:not(:disabled)):hover {
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
  }
}
.export .export-text-single {
  padding: var(--outer-margin) 0;
  border-top: 1px solid var(--color-text);
}
.export .export-text-single p.bold-text {
  font-weight: bold;
}

footer.footer {
  background-color: var(--color-background);
  font-size: 0.875rem;
}
@media only screen and (min-width: 1024px) {
  footer.footer {
    font-size: 1rem;
  }
}
footer.footer a {
  color: var(--color-link);
  text-decoration: none;
}
@media (hover: hover) {
  footer.footer a:where(:not(:disabled)):hover {
    text-decoration: underline;
  }
}
footer.footer .footer-inner {
  padding: 1rem 0;
}
footer.footer .footer-nav {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  footer.footer .footer-nav {
    justify-content: flex-end;
  }
}
footer.footer .footer-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
}
footer.footer .footer-nav ul li {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  margin-left: 2rem;
}
footer.footer .footer-nav ul li:before {
  content: none;
}
footer.footer .footer-nav ul li:first-child {
  margin-left: 0;
}

.hangman-app {
  width: 100%;
  --max-width-app: 700px;
  display: grid;
  overflow-x: clip;
}
@media only screen and (min-width: 1024px) {
  .hangman-app {
    --gutter-width: 20px;
    --outer-margin: 20px;
    --max-width: 700px;
  }
}
.hangman-app .hangman-app-inner {
  min-height: 100svh;
  width: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  grid-template-columns: 1fr;
  justify-items: center;
}
.hangman-app .debug-screen {
  background-color: rgba(255, 255, 255, 0.8);
  color: #069;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 99999;
  width: 90vw;
  max-width: var(--max-width-app);
}

@media only screen and (max-width: 767px) {
  .btn,
  button,
  .btn-blue,
  input[type=button],
  input[type=reset], .btn-primary,
  .btn-red,
  input[type=submit], .btn-outline,
  .btn-secondary, .btn-white {
    font-size: 1.3125rem;
  }
  .btn-big.btn,
  button.btn-big,
  .btn-big.btn-blue,
  input.btn-big[type=button],
  input.btn-big[type=reset], .btn-big.btn-primary,
  .btn-big.btn-red,
  input.btn-big[type=submit], .btn-big.btn-outline,
  .btn-big.btn-secondary, .btn-big.btn-white {
    font-size: 1.5625rem;
  }
  .btn-white {
    font-size: 0.875rem;
  }
}
.startscreen {
  width: 100%;
  grid-column: 1;
  grid-row: 1/span 4;
  display: grid;
  grid-template-rows: 2fr auto 1fr;
  justify-items: center;
  z-index: 10;
  background: url(../img/startscreen-glow.svg);
  background-size: cover;
  background-position: center;
}
.startscreen .startscreen-leave {
  position: relative;
  z-index: 14;
  padding: var(--outer-margin);
  width: 100%;
  max-width: var(--max-width-app);
  display: grid;
  justify-items: end;
}
.startscreen .startscreen-inner {
  padding: var(--outer-margin);
  max-width: var(--max-width-app);
  grid-row: 2;
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 2rem;
  text-align: center;
}
.startscreen .startscreen-inner .title-graphic {
  width: 90vw;
  max-width: 600px;
  height: 0;
  padding-top: 70%;
  position: relative;
  margin-bottom: 3rem;
}
.startscreen .startscreen-inner .title-graphic .title-graphic-text,
.startscreen .startscreen-inner .title-graphic .title-graphic-question-mark {
  position: absolute;
}
.startscreen .startscreen-inner .title-graphic .title-graphic-text div,
.startscreen .startscreen-inner .title-graphic .title-graphic-question-mark div {
  position: absolute;
  display: block;
  height: 0;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.startscreen .startscreen-inner .title-graphic .title-graphic-text {
  left: 0;
  top: 0;
  width: 100%;
}
.startscreen .startscreen-inner .title-graphic .title-graphic-text div {
  background-image: url(../img/startscreen-title.svg);
  padding-top: 36%;
}
.startscreen .startscreen-inner .title-graphic .title-graphic-question-mark {
  width: 27%;
  left: 44%;
  top: 46%;
  transform-origin: top center;
  animation-name: question-mark;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.startscreen .startscreen-inner .title-graphic .title-graphic-question-mark div {
  padding-top: 150%;
  background-image: url(../img/startscreen-question-mark.svg);
}
.startscreen .startscreen-inner .startscreen-intro {
  font-size: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .startscreen .startscreen-inner .startscreen-intro {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .startscreen .startscreen-inner .startscreen-intro {
    font-size: 1.625rem;
  }
}
.startscreen .startscreen-inner a.btn-start {
  animation-name: btn-start;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.leave-dialogue {
  position: fixed;
  z-index: 14;
  top: 50%;
  left: 50%;
  width: 90vw;
  min-width: 250px;
  max-width: 500px;
  transform: translate(-50%, -50%);
  padding: var(--outer-margin);
  text-align: center;
  background-color: var(--color-background);
  border-radius: 15px 15px;
  box-shadow: 0 0 10px rgba(0, 102, 153, 0.6);
  font-size: 1.25rem;
}
@media only screen and (min-width: 1024px) {
  .leave-dialogue {
    font-size: 1.5rem;
  }
}
.leave-dialogue-inner {
  display: grid;
  gap: var(--gutter-width);
}
.leave-dialogue-inner .leave-dialogue-actions {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 0.5rem;
  flex-flow: row wrap;
  justify-content: stretch;
}
.leave-dialogue-inner .leave-dialogue-actions * {
  flex: 1 0 auto;
}
.leave-dialogue-enter-active {
  animation: leave-dialogue-show 0.4s cubic-bezier(0.08, 0.65, 0.32, 1.275);
}
.leave-dialogue-leave-active {
  animation: leave-dialogue-hide 0.2s ease-in;
}

.leave-dialogue-curtain {
  position: fixed;
  z-index: 13;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

@keyframes question-mark {
  0%, 100% {
    transform: rotateZ(-4deg);
  }
  50% {
    transform: rotateZ(4deg);
  }
}
@keyframes btn-start {
  0%, 15%, 30% {
    transform: scale(1);
  }
  7%, 22% {
    transform: scale(1.1);
  }
}
@keyframes leave-dialogue-show {
  0% {
    opacity: 0;
    transform: translate(-50%, -10%);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
@keyframes leave-dialogue-hide {
  0% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -80%);
  }
}
.endscreen {
  width: 100%;
  grid-column: 1;
  grid-row: 1/span 4;
  display: grid;
  padding: var(--outer-margin);
  position: relative;
  max-width: var(--max-width-app);
  align-items: center;
  overflow: hidden;
}
.endscreen .endscreen-card {
  padding: calc(var(--outer-margin) * 2) var(--outer-margin) calc(var(--outer-margin));
  min-height: min(80vh, 600px);
  z-index: 15;
  font-size: 1.0625rem;
  border-radius: 15px 15px;
  box-shadow: 0 0 10px rgba(0, 102, 153, 0.6);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 2rem;
}
.endscreen .endscreen-card h2 {
  font-size: 2rem;
}
.endscreen .endscreen-card-enter-active {
  opacity: 0;
  animation: endscreen-card-show 0.5s 0.5s cubic-bezier(0.08, 0.65, 0.32, 1.275);
}
.endscreen .endscreen-card-leave-active {
  animation: endscreen-card-hide 0.4s ease-in;
}
.endscreen .endscreen-title {
  text-align: center;
}
.endscreen .endscreen-title .title-superheading {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5em;
  font-size: 1.3125rem;
  text-transform: uppercase;
  color: #e2001a;
}
.endscreen .endscreen-reset {
  display: grid;
  justify-items: center;
  gap: 1rem;
}
.endscreen .endscreen-reset a {
  color: #2486d3;
  text-decoration: none;
}

@keyframes endscreen-card-show {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes endscreen-card-hide {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-90%);
  }
}
.step-indicator {
  grid-row: 1;
  grid-column: 1;
  display: grid;
  padding: var(--outer-margin);
  width: 100%;
  min-height: 60px;
  max-width: var(--max-width-app);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.step-indicator-inner {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}
.step-indicator-inner.step-indicator-enter-active {
  animation: step-indicator-show 0.4s ease-out;
}
.step-indicator-inner.step-indicator-leave-active {
  animation: step-indicator-hide 0.2s ease-in;
}
.step-indicator .step-indicator-text {
  color: #e2001a;
  text-transform: uppercase;
  font-family: "Barlow-Condensed-Web", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 1.3125rem;
}
@media only screen and (min-width: 2000px) and (min-height: 900px) {
  .step-indicator .step-indicator-text {
    font-size: 1.4375rem;
  }
}

@keyframes step-indicator-show {
  0% {
    transform: translateY(-110%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes step-indicator-hide {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-110%);
  }
}
.claims {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width-app);
  grid-column: 1;
  grid-row: 2;
}

.claim {
  width: 100%;
  display: grid;
  gap: var(--outer-margin);
  align-items: start;
  padding: 0 var(--outer-margin) var(--outer-margin);
}
.claim .claim-text {
  min-height: 120px;
  font-size: 1.5rem;
  line-height: 1.5;
  display: grid;
  align-items: center;
  text-shadow: 0 0 7px rgba(0, 102, 153, 0.5);
}
@media only screen and (min-width: 768px) {
  .claim .claim-text {
    font-size: 1.625rem;
  }
}
@media only screen and (min-width: 1200px) {
  .claim .claim-text {
    font-size: 1.75rem;
  }
}
.claim .claim-actions {
  display: grid;
  gap: 0.5rem;
}
.claim .claim-actions button:disabled {
  opacity: 1 !important;
}
.claim-enter-active {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  animation: claim-show 0.5s 0.2s ease-in-out;
}
.claim-leave-active {
  animation: claim-hide 0.3s 0.1s ease-in-out;
}
.claim-reverse-enter-active {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  animation: claim-reverse-show 0.5s 0.2s ease-in-out;
}
.claim-reverse-leave-active {
  animation: claim-reverse-hide 0.3s 0.1s ease-in-out;
}

@keyframes claim-show {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes claim-hide {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}
@keyframes claim-reverse-show {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes claim-reverse-hide {
  0% {
    opacity: 1;
    transform: translatX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
.hangman {
  position: relative;
  grid-column: 1;
  grid-row: 3;
  width: 100%;
  max-width: var(--max-width-app);
}
.hangman-inner {
  position: relative;
  display: grid;
  align-items: end;
}
.hangman-inner .hangman-player-holder {
  pointer-events: none;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  aspect-ratio: 1;
}
.hangman-inner .hangman-player-holder .player-el {
  position: absolute;
  display: block;
  opacity: 0;
  width: 100%;
  height: 100%;
  bottom: -10%;
  top: auto;
  left: 0;
}
.hangman-inner .hangman-player-holder .player-el.visible {
  opacity: 1;
}
.hangman-inner .hangman-player-holder .player-el.explosion {
  height: 150%;
}
.hangman .hangman-lightning {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  animation: hangman-lightning 2.5s linear;
}

@keyframes hangman-lightning {
  0% {
    background-color: #fff;
  }
  5% {
    background-color: transparent;
  }
  6% {
    background-color: #fff;
  }
  15%, 24% {
    background-color: transparent;
  }
  25% {
    background-color: #fff;
  }
  36%, 40% {
    background-color: transparent;
  }
  41% {
    background-color: #fff;
  }
  47% {
    background-color: transparent;
  }
  48% {
    background-color: #fff;
  }
  60% {
    background-color: transparent;
  }
}
.speech-bubble {
  position: absolute;
  z-index: 5;
  pointer-events: all;
  left: 47%;
  bottom: 45%;
  transform-origin: center bottom;
  transform: translateX(-50%);
  width: 85%;
  text-align: left;
  font-size: 1.125rem;
  transition: color 0.3s;
}
.speech-bubble:after {
  content: "";
  display: block;
  position: absolute;
  left: 30%;
  bottom: -20px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 20px 0px 0 20px;
  border-color: #fff transparent transparent transparent;
}
.speech-bubble * {
  color: #069;
}
@media (hover: hover) {
  .speech-bubble:where(:not(:disabled)):hover {
    background-color: #fff;
    border-color: #fff;
  }
  .speech-bubble:where(:not(:disabled)):hover * {
    color: #0e2632;
  }
}
.speech-bubble.anim-delayed {
  animation-delay: 1.5s;
}
.speech-bubble.anim-delayed-long {
  animation-delay: 3.5s;
}
.speech-bubble-enter-active {
  opacity: 0;
  animation: speech-bubble-show 0.4s 0.5s cubic-bezier(0.08, 0.65, 0.32, 1.275);
}
.speech-bubble-leave-active {
  opacity: 0;
  animation: speech-bubble-hide 0.2s ease-in;
}

@keyframes speech-bubble-show {
  0% {
    opacity: 0;
    transform: translate(-50%, 0) scale(0.5);
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes speech-bubble-hide {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -90%) scale(1.1);
  }
}
.step-navigation {
  grid-column: 1;
  grid-row: 4;
  display: grid;
  align-items: end;
  width: 100%;
  max-width: var(--max-width-app);
  position: relative;
  z-index: 1;
  min-height: calc(50px + var(--outer-margin) * 2);
  padding: var(--outer-margin);
  overflow-y: clip;
}
.step-navigation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.step-navigation-enter-active {
  opacity: 0;
  animation: step-navigation-show 0.4s 1.5s ease-out;
}
.step-navigation-leave-active {
  animation: step-navigation-hide 0.3s ease-in;
}
.step-navigation-reverse-leave-active {
  animation: step-navigation-reverse-hide 0.3s ease-in;
}
.step-navigation .anim-delayed {
  animation-delay: 2.5s;
}
.step-navigation .anim-delayed-long {
  animation-delay: 4.5s;
}

@keyframes step-navigation-show {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes step-navigation-hide {
  0% {
    opacity: 1;
    transform: translatX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}
@keyframes step-navigation-reverse-hide {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}
.source-overlay .source-overlay-curtain {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
  position: fixed;
  z-index: 11;
}
.source-overlay .source-overlay-card {
  z-index: 12;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-width-app);
  max-height: 90vh;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 0 10px rgba(0, 102, 153, 0.6);
  display: grid;
  overflow: auto;
  font-size: 1rem;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media only screen and (min-width: 768px) {
  .source-overlay .source-overlay-card {
    font-size: 1.125rem;
  }
}
.source-overlay .source-overlay-card .source-overlay-card-inner {
  padding: calc(var(--outer-margin) * 1) var(--outer-margin) calc(var(--outer-margin) * 2);
  display: grid;
  gap: 2rem;
}
.source-overlay .source-overlay-card .source-overlay-card-inner h2 {
  font-size: 1.625rem;
}
.source-overlay .source-overlay-card .btn-close {
  position: sticky;
  left: calc(100% - var(--outer-margin) - 1.5rem);
  top: var(--outer-margin);
}
.source-overlay .source-overlay-card .source-text {
  font-style: italic;
  margin-bottom: 1rem;
}
.source-overlay .source-overlay-card .source {
  font-size: 0.875rem;
  text-align: right;
}
.source-overlay .source-overlay-card-enter-active {
  position: fixed;
  animation: source-overlay-card-show 0.4s ease-out;
}
.source-overlay .source-overlay-card-leave-active {
  position: fixed;
  animation: source-overlay-card-hide 0.2s ease-in;
}

@keyframes source-overlay-card-show {
  0% {
    transform: translate(-50%, 110%);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
@keyframes source-overlay-card-hide {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, 110%);
  }
}
@media only screen and (max-width: 767px) {
  .header-nav {
    position: fixed;
    z-index: 50;
    width: 500px;
    max-width: 94vw;
    min-height: 40vh;
    max-height: 90vh;
    top: 50%;
    left: 50%;
    overflow: auto;
    display: none;
    padding: var(--outer-margin);
    align-items: center;
    transform: translate(-50%, -20%);
    background-color: #fff;
    border-radius: 15px 15px;
    box-shadow: 0 0 10px rgba(0, 102, 153, 0.6);
  }
  .header-nav.active {
    display: grid;
    opacity: 0;
  }
  .header-nav.visible {
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: transform 0.5s cubic-bezier(0.08, 0.65, 0.32, 1.275), opacity 0.1s ease-in;
  }
  .header-nav.anim-out {
    transform: translate(-50%, -70%);
    opacity: 0;
    transition: transform 0.3s ease-in, opacity 0.3s ease-in;
  }
  .header-nav ul {
    margin: 0;
    padding: var(--outer-margin);
    display: flex;
    flex-flow: column wrap;
    height: 100%;
    align-items: center;
    justify-content: center;
  }
  .header-nav ul li {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 1.5rem;
  }
  .header-nav ul li:before {
    content: none;
  }
  .header-nav ul li:last-child {
    margin-left: 0;
  }
  .header-nav a:not(.btn-primary) {
    text-decoration: none;
    font-size: 1.5rem;
    color: #069;
  }
}
@media only screen and (max-width: 767px) and (hover: hover) {
  .header-nav a:not(.btn-primary):where(:not(:disabled)):hover {
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
  }
}
@media only screen and (max-width: 767px) {
  .header-nav a:not(.btn-primary):focus-visible {
    outline-color: #2486d3;
  }
  .header-nav a.btn-primary {
    font-size: 1.375rem;
  }
  .header-nav a.btn-primary:focus-visible {
    outline-color: #e2001a;
  }
  .header-curtain {
    display: none;
    position: fixed;
    z-index: 40;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(0, 102, 153, 0.4);
    transition: opacity 0.3s;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
  .header-curtain.active {
    display: block;
  }
  .header-curtain.visible {
    opacity: 1;
  }
}
@media only screen and (min-width: 768px) {
  .header-toggle-nav,
  .header-curtain {
    display: none;
  }
  .header-nav {
    display: flex;
    justify-content: flex-end;
  }
  .header-nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    height: 100%;
    align-items: center;
  }
  .header-nav ul li {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 2rem;
  }
  .header-nav ul li:before {
    content: none;
  }
  .header-nav ul li:first-child {
    margin-left: 0;
  }
  .header-nav a:not(.btn-primary) {
    text-decoration: none;
    font-size: 1.3125rem;
  }
}
@media only screen and (min-width: 768px) and (min-width: 2000px) and (min-height: 900px) {
  .header-nav a:not(.btn-primary) {
    font-size: 1.4375rem;
  }
}
@media only screen and (min-width: 768px) and (hover: hover) {
  .header-nav a:not(.btn-primary):where(:not(:disabled)):hover {
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
  }
}
section {
  display: grid;
}
section.black {
  background-color: #000;
}
section.black,
section.black p,
section.black .p,
section.black h1,
section.black .h1,
section.black h2,
section.black .h2,
section.black h3,
section.black .h3,
section.black h4,
section.black .h4,
section.black h5,
section.black .h5,
section.black h6,
section.black .h6 {
  color: #fff;
}
section.black a {
  color: #fff;
}

.onecolumn.normal .grid {
  max-width: var(--max-width-one-col);
  margin: 0 auto;
}

/*# sourceMappingURL=styles.css.map*/