/**
 * adds resets for buttons that are not covered by reset-and-normalize base
 */
[role='button'],
input[type='button'],
input[type='reset'],
input[type='submit'],
button {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  background: none;
  border: 0;
  font: inherit;
  font-size: 100%;
  padding: 0;
  text-align: inherit;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
[role='button']:-moz-focusring,
input[type='button']:-moz-focusring,
input[type='reset']:-moz-focusring,
input[type='submit']:-moz-focusring,
button:-moz-focusring {
  outline: none;
}
[role='button']:focus,
input[type='button']:focus,
input[type='reset']:focus,
input[type='submit']:focus,
button:focus {
  outline: none;
}

/**
 * adds resets for links that are not covered by reset-and-normalize base
 */
a {
  color: inherit;
  text-decoration: none;
}
a:-moz-focusring, a:focus {
  outline: none;
}

/**
 * Based on
 *
 *  - reset.css 2.0 by Eric Meyer
      (public domain)
 *    http://meyerweb.com/eric/tools/css/reset/
 *
 *  - normalize.css 8.0.1 by Nicolas Gallagher and Jonathan Neal
 *    (licensed under MIT)
 *    https://github.com/necolas/normalize.css
 *
 *  - Based on Reboot from Bootstrap 4.2.1
 *    (licensed under MIT)
 *    https://github.com/twbs/bootstrap
 */
/**
 * IE10+ doesn't honor `<meta name='viewport'>` in some cases
 */
@-ms-viewport {
  width: device-width;
}
/**
 * general reset
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
main {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

/**
 * HTML5 display-role reset for older browsers
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main,
summary {
  display: block;
}

/**
 * inherit box model for all elements
 */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/**
 * html root rules
 * 1. set border-box for inheritance
 * 2. avoid 300ms click delay on touch devices that support the `touch-action`
 *    CSS property
 * 3. Prevent adjustments of font size after orientation changes in IE, on
 *    Windows Phone and iOS.
 * 4. Setting @viewport causes scrollbars to overlap content in IE11 and Edge,
 *    so we force a non-overlapping, non-auto-hiding scrollbar to counteract.
 * 5. Change the default tap highlight to be completely transparent in iOS.
 */
html {
  /* 1 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 2 */
  /* 3 */
  /* 4 */
  /* 5 */
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

/**
 * body rules
 * 3. Set an explicit initial text-align value so that we can later use the
 *    `inherit` value on things like `<th>` elements.
 */
body {
  text-align: left;
}

/**
 * Lists
 */
ol,
ul {
  list-style: none;
}

/**
 * Quotes
 */
blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

/**
 * Tables
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  caption-side: bottom;
}

/**
 * Table Headers
 * 1. Matches default `<td>` alignment by inheriting from the `<body>`, or the
 *    closest parent with a set `text-align`.
 */
th {
  /* 1 */
  text-align: inherit;
}

/**
 * Horizontal Lines
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  /* 1 */
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  /* 2 */
  overflow: visible;
}

/**
 * Preformatted Text
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Don't allow content to break outside
 * 3. We have @viewport set which causes scrollbars to overlap content in IE11
 *    and Edge, so we force a non-overlapping, non-auto-hiding scrollbar to
 *    counteract.
 */
pre,
code,
kbd,
samp {
  /* 1 */
  font-family: monospace, monospace;
}

pre {
  /* 2 */
  overflow: auto;
  /* 3 */
  -ms-overflow-style: scrollbar;
}

/**
 * Links
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  /* 1 */
  background-color: transparent;
  /* 2 */
  -webkit-text-decoration-skip: objects;
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 * 3. Add explicit cursor to indicate changed behavior.
 * 4. Prevent the text-decoration to be skipped.
 */
abbr[title] {
  /* 1 */
  /*border-bottom: none;*/
  cursor: help;
  /* 2 */
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 3 */
  /* 4 */
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/**
 * Hide SVG overflow in IE
 */
svg:not(:root) {
  overflow: hidden;
}

/**
 * Remove the default `border-radius` that macOS Chrome adds.
 * Details at https://github.com/twbs/bootstrap/issues/24093
 */
button {
  border-radius: 0;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 * Credit: https://github.com/suitcss/base/
 */
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

/**
 * form element resets
 * 1. Remove the margin in Firefox and Safari
 * 2. inherit font rules
 */
input,
button,
select,
optgroup,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type='reset'],
[type='submit'],
[type='button'] {
  /* 2 */
  -webkit-appearance: button;
}

/**
 * Remove the default appearance of temporal inputs to avoid a Mobile Safari
 * bug where setting a custom line-height prevents text from being vertically
 * centered within the input.
 * See https://bugs.webkit.org/show_bug.cgi?id=139848
 * and https://github.com/twbs/bootstrap/issues/11266
 */
input[type='date'],
input[type='time'],
input[type='datetime-local'],
input[type='month'] {
  -webkit-appearance: listbox;
}

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Textareas should really only resize vertically so they don't break their
 *    (horizontal) containers.
 */
textarea {
  overflow: auto;
  resize: vertical;
}

/**
 * Show the overflow in IE.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 */
button,
select {
  text-transform: none;
}

/**
 * Remove the inheritance of word-wrap in Safari.
 * See https://github.com/twbs/bootstrap/issues/24990
 */
select {
  word-wrap: normal;
}

/**
 * Remove inner border and padding from Firefox, but don't restore the outline
 * like Normalize.
 */
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * 1. Add the correct box sizing in IE 10-
 * 2. Remove the padding in IE 10-
 */
input[type='radio'],
input[type='checkbox'] {
  /* 1 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 2 */
  padding: 0;
}

/**
 * Suppress the focus outline on elements that cannot be accessed via keyboard.
 * This prevents an unwanted focus outline from appearing around elements that
 * might still respond to pointer events.
 * Credit: https://github.com/suitcss/base
 */
[tabindex='-1']:focus {
  outline: 0 !important;
}

/**
 * Browsers set a default `min-width: min-content` on fieldsets,
 * unlike e.g. `<div>`s, which have `min-width: 0` by default.
 * So we reset that to ensure fieldsets behave more like a standard block element.
 * See https://github.com/twbs/bootstrap/issues/12359
 * and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
 */
fieldset {
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Set display to block for all browsers
 */
legend {
  /* 2 */
  color: inherit;
  /* 3 */
  display: block;
  /* 1 */
  max-width: 100%;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type='checkbox'],
[type='radio'] {
  /* 1 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 2 */
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type='search'] {
  /* 1 */
  -webkit-appearance: textfield;
  /* 2 */
  outline-offset: -2px;
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  font: inherit;
}

/**
 * Correct element display for output
 */
output {
  display: inline-block;
}

/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

[hidden] {
  display: none;
}

/* stylelint-disable */
/****
****  font-family und font-faces
****
 */
/* stylelint-enable */
/*
* Ab hier sind nur noch Funktionen, Mixins, oder Generation von Klassen
*
 */
.row__inner {
  margin: 0 auto;
  max-width: 1920px;
  padding: 0 15px;
  position: relative;
}

.row__inner--sm {
  margin: 0 auto;
  max-width: 750px;
}
@media (min-width: 125em) {
  .row__inner--sm {
    margin: 0 auto;
    max-width: 80%;
  }
}

.row__inner--tw {
  margin: 0 auto;
  max-width: 1500px;
}

.row__inner--lg {
  margin: 0 auto;
  max-width: 750px;
}

/*
.col-1{
  width:span(12);
  @include breakpoint(small){
    width:span(10);
  }
  @include breakpoint(medium){
    width:susy-span(6 of 12);
    width: percentage(2/12);
  }
  @include breakpoint(lg){
    width:span(2);
  }
}*/
/*
* Ab hier sind nur noch Funktionen, Mixins, oder Generation von Klassen
*
 */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "neue-haas-unica, sans-serif";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

/*
* Ab hier sind nur noch Funktionen, Mixins, oder Generation von Klassen
*/
:root {
  --color-black: #000000;
  --color-grey: #A3A0A0;
  --color-footer: #707070;
  --color-footertypo: #fff;
  --color-marker: #FEED01;
}

.c-black {
  color: #000000;
  color: var(--color-black);
}

.bg-black {
  background-color: #000000;
  background-color: var(--color-black);
}

.c-grey {
  color: #A3A0A0;
  color: var(--color-grey);
}

.bg-grey {
  background-color: #A3A0A0;
  background-color: var(--color-grey);
}

.c-footer {
  color: #707070;
  color: var(--color-footer);
}

.bg-footer {
  background-color: #707070;
  background-color: var(--color-footer);
}

.c-footertypo {
  color: #fff;
  color: var(--color-footertypo);
}

.bg-footertypo {
  background-color: #fff;
  background-color: var(--color-footertypo);
}

.c-marker {
  color: #FEED01;
  color: var(--color-marker);
}

.bg-marker {
  background-color: #FEED01;
  background-color: var(--color-marker);
}

/* Hide for both screenreaders and browsers
css-discuss.incutio.com/wiki/Screenreader_Visibility */
/* Hide only visually, but have it available for screenreaders
www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
/* Hide visually and from screenreaders, but maintain layout */
.block {
  display: block;
  height: auto;
  width: 100%;
}

body {
  line-height: 1.5;
  font-family: neue-haas-unica, sans-serif;
  font-weight: 300;
  font-size: min(max(1.75rem, 1.09375vw), 1.75rem);
  font-size: clamp(1.75rem, 1.09375vw, 1.75rem);
  font-family: "neue-haas-unica", serif;
}
.noclamp body {
  font-size: 28px;
}

.h-border:after, h1.t-h1:after, h2.t-h2:after, h3.t-h2:after {
  content: '';
  width: 3em;
  height: 4px;
  background: #FEED01;
  background: var(--color-marker);
  position: absolute;
  bottom: 0;
  left: 0;
}

.t-h1 {
  line-height: 1.11;
  font-family: neue-haas-unica, sans-serif;
  font-weight: 400;
  font-size: min(max(4.5rem, 2.8125vw), 4.5rem);
  font-size: clamp(4.5rem, 2.8125vw, 4.5rem);
}
.noclamp .t-h1 {
  font-size: 72px;
}

h1.t-h1 {
  padding-bottom: .5em;
  position: relative;
  margin-bottom: .45em;
  margin-top: 1.5em;
}

.t-h2 {
  line-height: 1.25;
  font-family: neue-haas-unica, sans-serif;
  font-weight: 400;
  font-size: min(max(3rem, 1.875vw), 3rem);
  font-size: clamp(3rem, 1.875vw, 3rem);
  text-transform: lowercase;
}
.noclamp .t-h2 {
  font-size: 48px;
}

h2.t-h2 {
  padding-bottom: .5em;
  position: relative;
  margin-bottom: .45em;
}

h3.t-h2 {
  padding-bottom: .5em;
  position: relative;
  margin-bottom: .45em;
}

.t-xs {
  line-height: 1.22;
  font-family: neue-haas-unica, sans-serif;
  font-weight: 400;
  font-size: min(max(1.125rem, 0.703125vw), 1.125rem);
  font-size: clamp(1.125rem, 0.703125vw, 1.125rem);
}
.noclamp .t-xs {
  font-size: 18px;
}

.t-s {
  line-height: 1.38;
  font-family: neue-haas-unica, sans-serif;
  font-weight: 400;
  font-size: min(max(1.5rem, 0.9375vw), 1.5rem);
  font-size: clamp(1.5rem, 0.9375vw, 1.5rem);
}
.noclamp .t-s {
  font-size: 24px;
}

.t-btn {
  line-height: 1.5;
  font-family: neue-haas-unica, sans-serif;
  font-weight: 300;
  font-size: min(max(1.75rem, 1.09375vw), 1.75rem);
  font-size: clamp(1.75rem, 1.09375vw, 1.75rem);
}
.noclamp .t-btn {
  font-size: 28px;
}

.primary__link {
  line-height: 1.11;
  font-family: neue-haas-unica, sans-serif;
  font-weight: 400;
  font-size: min(max(4.5rem, 2.8125vw), 4.5rem);
  font-size: clamp(4.5rem, 2.8125vw, 4.5rem);
}
.noclamp .primary__link {
  font-size: 72px;
}
.primary__subnav__link {
  line-height: 1.25;
  font-family: neue-haas-unica, sans-serif;
  font-weight: 400;
  font-size: min(max(3rem, 1.875vw), 3rem);
  font-size: clamp(3rem, 1.875vw, 3rem);
}
.noclamp .primary__subnav__link {
  font-size: 48px;
}

.htmleditor p + p {
  margin-top: 1em;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  color: #21759b;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
}

.header {
  height: 6em;
}

.primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.primary li {
  margin-right: 2em;
}
.primary__link {
  color: #A3A0A0;
  color: var(--color-grey);
  text-transform: lowercase;
}
.primary__link:hover, .primary__link:focus {
  color: #000000;
  color: var(--color-black);
}
.primary__link.current, .primary__link.section {
  color: #000000;
  color: var(--color-black);
}
.primary__sub {
  position: absolute;
  left: 0;
  top: 3em;
}

.footer {
  color: #fff;
  color: var(--color-footertypo);
  padding: 1em;
}
.footer h3:after {
  display: none;
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__col1 {
  width: 50%;
}
.footer__col1__sm__c {
  padding-top: 1em;
}
.footer__col1__sm__c a {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 1em;
}
.footer__col1__sm__c svg {
  display: block;
  width: 100%;
  fill: white;
}
.footer__col2 {
  width: 25%;
}
.footer__col3 {
  width: 25%;
}

.btn {
  width: auto;
  border: 1px solid #A3A0A0;
  border: 1px solid var(--color-grey);
  padding: .25em;
}

.el-category {
  margin-bottom: 2em;
}

.el-img img {
  display: block;
  width: 100%;
  height: auto;
}
.el-img__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2em;
  gap: 2em;
  padding-bottom: 2em;
}
.el-img__content {
  margin-bottom: 2em;
}

.el-pov {
  margin-bottom: 2em;
}
.el-pov__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2em;
  gap: 2em;
}
.el-pov__wrapper img {
  display: block;
  width: 100%;
  margin-bottom: .25em;
  height: auto;
}
.el-pov__entry a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.el-pov__entry__title {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.el-pov__entry img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.el-pov .btn {
  display: inline-block;
  margin: .5em 0;
}

.el-newsteaser {
  margin-bottom: 2em;
}
.el-newsteaser__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2em;
  gap: 2em;
}
.el-newsteaser__wrapper img {
  display: block;
  width: 100%;
  margin-bottom: .25em;
  height: auto;
}
.el-newsteaser__entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.el-newsteaser__entry__title {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-bottom: 1em;
}
.el-newsteaser__entry__date {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-bottom: 1em;
}
.el-newsteaser__entry__content {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.el-award {
  margin-bottom: 2em;
}
.el-award__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.el-award__entry {
  margin-right: 1em;
}

.el-project__wrapper {
  display: grid;
  grid-template-columns: 20% 75%;
  grid-gap: 2em;
  gap: 2em;
  padding-bottom: 3em;
  padding-top: 2em;
}
.el-project__content {
  max-width: 849px;
}

.el-text {
  margin-bottom: 2em;
}
.el-text__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2em;
  gap: 2em;
  padding-bottom: 3em;
  padding-top: 1em;
}

/*
.ei11 {
}
 */

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