@font-face {
    font-family: 'Munken Sans Web';
    src: url('../Fonts/MunkenSansWeb-Bold.woff2') format('woff2'),
        url('../Fonts/MunkenSansWeb-Bold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Munken Sans Web';
    src: url('../Fonts/MunkenSansWeb-Regular.woff2') format('woff2'),
        url('../Fonts/MunkenSansWeb-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Munken Sans Web';
    src: url('../Fonts/MunkenSansWeb-Medium.woff2') format('woff2'),
        url('../Fonts/MunkenSansWeb-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
  --color-orange: #fd5539;
  --color-white: #ffffff;
  --color-white-offwhite: #f4f4f4;
  --color-gray-light: #c3c3c3;
  --color-gray: #777777;
  --color-green: #00323f;
  --color-green-dark: #00596e;
  --color-green-light: #009ba6;
  --color-black: #0a0a0a;
  --color-primary: var(--color-green);

  --text-color: var(--color-black);
  --link-color: var(--color-black);
  --link-hover-color: var(--color-orange);

  --font-family-default: 'Munken Sans Web', Arial, sans-serif;
  --font-weight-default: normal;
  --font-size-default: 19px;
  --font-size-xsmall: 14px;
  --font-size-small: 16px;
  --font-size-large: 30px;
  --font-size-xlarge: 38px;
  --font-size-xxlarge: 60px;
  --line-height-default: 30px;
  --line-height-xsmall: 21px;
  --line-height-small: 25px;
  --line-height-large: 40px;
  --line-height-xlarge: 47px;
  --line-height-xxlarge: 68px;
  --font-weight-bold: 600;
  --font-weight-medium: 500;

  --max-application-width: 1400px;
  --grid-mobile-columns: 25px repeat(12, 1fr) 25px;
  --grid-default-columns: minmax(25px, 1fr) repeat(12, minmax(20px, calc((var(--max-application-width) - 220px) / 12))) minmax(25px, 1fr);
}

.neos-contentcollection {
  /* ToDo put in be specific css file */
}

.neos-contentcollection > [class^='style__addEmptyContentCollectionOverlay'] {
    flex: 1 1 100%;
  }

body {
  margin: 0;
  font-family: 'Munken Sans Web', Arial, sans-serif;
  font-family: var(--font-family-default);
  font-size: 1.1875rem;
  font-size: var(--font-size-default);
  font-weight: normal;
  font-weight: var(--font-weight-default);
  line-height: 1.875rem;
  line-height: var(--line-height-default);
  color: #0a0a0a;
  color: var(--text-color);
}

h1,
h2,
h3,
h4 {
  margin-top: 32px;
  margin-bottom: 0;
}

h1 {
  font-size: 3.75rem;
  font-size: var(--font-size-xxlarge);
  font-weight: 500;
  font-weight: var(--font-weight-medium);
  line-height: 4.25rem;
  line-height: var(--line-height-xxlarge);
}

h2 {
  font-size: 2.375rem;
  font-size: var(--font-size-xlarge);
  font-weight: 500;
  font-weight: var(--font-weight-medium);
  line-height: 2.9375rem;
  line-height: var(--line-height-xlarge);
}

h2 + .Text > p:first-child {
    margin-top: 24px;
  }

h3 {
  font-size: 1.875rem;
  font-size: var(--font-size-large);
  font-weight: 600;
  font-weight: var(--font-weight-bold);
  line-height: 2.5rem;
  line-height: var(--line-height-large);
}

h3 + .Text > p:first-child {
    margin-top: 14px;
  }

h4 {
  font-size: 1.1875rem;
  font-size: var(--font-size-default);
  font-weight: 600;
  font-weight: var(--font-weight-bold);
  line-height: 1.875rem;
  line-height: var(--line-height-default);
}

h4 + .Text > p:first-child {
    margin-top: 7px;
  }

a {
  text-decoration: underline;
  color: #0a0a0a;
  color: var(--link-color)
}

a:hover {
    color: #fd5539;
    color: var(--link-hover-color);
  }

ul,
ol {
  margin-top: 32px;
  margin-bottom: 0;
}

ul {
  padding-left: 0;
  list-style-type: none;
}

ul li::before {
    content: '·';
    display: inline-block;
    width: 40px;
    padding-left: 5px;
    text-align: left;
  }

img {
  max-width: 100%;
}

p {
  margin-top: 32px;
  margin-bottom: 0;
}

picture {
  display: flex;
}

figure {
  margin: 0;
}

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

table th,
  table td {
    padding: 16px 0;
    border: none;
    text-align: left
  }

table th:last-child, table td:last-child {
      text-align: right;
    }

table th {
    border-bottom: 2px solid #009ba6;
    border-bottom: 2px solid var(--color-green-light);
  }

table td {
    border-bottom: 2px solid #c3c3c3;
    border-bottom: 2px solid var(--color-gray-light);
  }

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

html,
body {
  height: auto;
  min-height: 100vh;
}

body {
  background: #ffffff;
  background: var(--color-white);
}

body > header,
  body > main,
  body > footer {
    grid-column: 1 / -1;
  }

body > .ReadSpeaker,
  body > .Main {
    display: grid;
    grid-template-columns: 25px repeat(12, 1fr) 25px;
    grid-template-columns: var(--grid-mobile-columns);
    grid-gap: 20px;
    gap: 20px;
  }

body > .ReadSpeaker > .neos-contentcollection, body > .Main > .neos-contentcollection {
      grid-column: 1 / -1;
    }

@media screen and (min-width: 768px) {

  body > .ReadSpeaker,
  body > .Main {
      grid-template-columns: minmax(25px, 1fr) repeat(12, minmax(20px, calc((1400px - 220px) / 12))) minmax(25px, 1fr);
      grid-template-columns: var(--grid-default-columns)
  }
    }

.BackLink {
  position: absolute;
  top: -25px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-size: var(--font-size-small);
  font-weight: 500;
  font-weight: var(--font-weight-medium);
  line-height: 1.5625rem;
  line-height: var(--line-height-small);
  text-decoration: none;
  text-transform: uppercase;
  color: #777777;
  color: var(--color-gray);

}

.BackLink svg {
    width: 16px;
    height: 16px;
    transform: rotate(180deg);
  }

.BackLink svg .cls-1 {
      fill: #ffffff;
      fill: var(--color-white);
    }

.BackLink svg .cls-1,
    .BackLink svg .cls-3 {
      stroke: #777777;
      stroke: var(--color-gray);
    }

.BackLink svg .cls-2 {
      -webkit-clip-path: url(#clip-path);
              clip-path: url(#clip-path);
    }

.BackLink svg .cls-3 {
      fill: none;
      stroke-width: 2px;
    }

.Caption {
  margin: 20px 0 0;
  font-size: 0.875rem;
  font-size: var(--font-size-xsmall);
  line-height: 1.3125rem;
  line-height: var(--line-height-xsmall);
}

[data-lightbox]:not(.Image--large) .Caption {
  margin-top: -20px;
}

@media screen and (min-width: 768px) {
  [data-lightbox] .Caption {
    margin-top: -20px;
  }
}

a svg.IconMore {
    width: 16px;
    height: 16px;
    margin-left: 5px;
  }

a svg.IconMore .cls-1 {
      fill: transparent;
    }

a svg.IconMore .cls-1,
    a svg.IconMore .cls-3 {
      stroke: #0a0a0a;
    }

a svg.IconMore .cls-2 {
      -webkit-clip-path: url(#clip-path);
              clip-path: url(#clip-path);
    }

a svg.IconMore .cls-3 {
      fill: none;
      stroke-width: 2px;
    }

a:hover svg.IconMore .cls-1,
    a:hover svg.IconMore .cls-3 {
      stroke: #fd5539;
      stroke: var(--color-orange);
    }

.Menu-item a {
    text-decoration: none;
  }

.MenuToggle-container {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  padding: 10px 5px 2px;
  background: white
}

.MenuToggle-container.is-active {
    background: transparent;
  }

.MenuToggle {
  display: inline-block;
  flex-shrink: 0;
  width: 5.5em;
  height: 3.4em;
  font-size: 0.625rem;
  cursor: pointer;
  transform: scale(0.5);
}

.MenuToggle-lines {
  position: relative;
  top: 1.4em
}

.MenuToggle-lines.is-active {
    width: 0;
    background: #ffffff;
    background: var(--color-white)
  }

.MenuToggle-lines.is-active::before {
      bottom: 0;
      width: 5em;
      background: #ffffff;
      background: var(--color-white);
      transform: rotate(45deg);
    }

.MenuToggle-lines.is-active::after {
      top: 0;
      width: 5em;
      background: #ffffff;
      background: var(--color-white);
      transform: rotate(-45deg);
    }

.MenuToggle-lines,
.MenuToggle-lines::before,
.MenuToggle-lines::after {
  display: block;
  width: 5.5em;
  height: 0.6em;
  background: #0a0a0a;
  background: var(--color-black);
  transition: width 500ms, transform 500ms, top 500ms, bottom 500ms, background 500ms;
}

.MenuToggle-lines::before,
.MenuToggle-lines::after {
  content: '';
  position: absolute;
  width: 5.5em;
}

.MenuToggle-lines::before {
  bottom: 1.2em;
}

.MenuToggle-lines::after {
  top: 1.2em;
  width: 4.5em;
}

.NewsItem-title {
    margin-top: 0;
  }

.NewsItem-link {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-size: var(--font-size-small);
    font-weight: 600;
    font-weight: var(--font-weight-bold);
    line-height: 1.5625rem;
    line-height: var(--line-height-small);
    text-decoration: none;
    text-transform: uppercase;
  }

.NewsItem-link img {
      width: 16px;
      height: 16px;
    }

.Picture .lazyload,
  .Picture .lazyloading {
    opacity: 0;
  }

.Picture .lazyloaded {
    opacity: 1;
    transition: opacity 750ms;
  }

.ReadSpeaker #readspeaker_button1 {
  grid-column: 2 / span 12;
}

.SliderNavigation--dots {
  position: absolute;
  right: 25px;
  bottom: 50px;
  display: flex;
  align-items: center;
  float: right;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 16px;
}

.SliderNavigation--dots > * {
    width: 8px;
    height: 8px;
    margin-left: 8px;
    text-decoration: none;
    background: #00596e;
    background: var(--color-green-dark);
    cursor: pointer
  }

.SliderNavigation--dots > *:nth-child(odd) {
      width: 12px;
    }

.SliderNavigation--dots > *:nth-child(3n+1) {
      align-self: flex-end;
    }

.SliderNavigation--dots > *:nth-child(3n+2) {
      align-self: flex-start;
    }

.SliderNavigation--dots > *.is-active {
      background: #009ba6;
      background: var(--color-green-light);
    }

.Accordeon {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column: 2 / span 12;
  grid-column-gap: 32px;
  -moz-column-gap: 32px;
       column-gap: 32px;
  margin-top: 32px
}

@media screen and (min-width: 768px) {

.Accordeon {
    grid-column: 4 / span 7;
    grid-column-gap: 64px;
    -moz-column-gap: 64px;
         column-gap: 64px
}
  }

.Accordeon-handler {
    grid-column: 1;
    align-self: center;
    width: 36px;
    max-width: none;
    max-width: initial;
    height: 36px;
    cursor: pointer;
    transition: transform 0.5s ease-in-out;
  }

.Accordeon-title {
    z-index: 1;
    grid-column: 2;
    margin-top: 0;
    cursor: pointer;
  }

.Accordeon-body-container {
    grid-column: 1 / -1;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-in-out
  }

@media screen and (min-width: 768px) {

  .Accordeon-body-container {
      grid-column: 2
  }
    }

.Accordeon-body {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease-in-out;
  }

.Accordeon.is-open .Accordeon-handler {
      transform: rotate(90deg);
    }

.Accordeon.is-open .Accordeon-body {
      transform: scaleY(1);
    }

.neos-backend .Accordeon-title,
  .neos-backend .Accordeon-body {
    padding: 24px;
  }

.Award-date {
    font-size: 1rem;
    font-size: var(--font-size-small);
    font-weight: normal;
    font-weight: var(--font-weight-default);
    line-height: 1.5625rem;
    line-height: var(--line-height-small);
  }

.Award p {
    font-size: 1.875rem;
    font-size: var(--font-size-large);
    font-weight: normal;
    font-weight: var(--font-weight-default);
    line-height: 2.5rem;
    line-height: var(--line-height-large)
  }

.Award p:first-child {
      margin-top: 16px;
    }

.Columns {
  display: grid;
  grid-template-columns: 25px repeat(12, 1fr) 25px;
  grid-template-columns: var(--grid-mobile-columns);
  grid-column: 1 / -1;
  grid-gap: 20px;
  gap: 20px
}

@media screen and (min-width: 768px) {

.Columns {
    grid-column: 2 / span 12;
    grid-gap: 56px 100px;
    gap: 56px 100px;
}

    .Columns > *:not(.GridBlock) {
      grid-column: span 1 !important;
    }

    .Columns--2 {
      grid-template-columns: repeat(2, 1fr);
    }

    .Columns--3 {
      grid-template-columns: repeat(3, 1fr);
    }

    .Columns--4 {
      grid-template-columns: repeat(4, 1fr);
    }
  }

.GridBlock {
  grid-column: 1 / -1
}

@media screen and (min-width: 768px) {
      .GridBlock.span--2 {
        grid-column: span 2;
      }

      .GridBlock.span--3 {
        grid-column: span 3;
      }

    .GridBlock .Slider {
      margin-top: 32px;
    }
  }

.Headline {
  grid-column: 2 / span 12;
  word-break: break-word
}

@media screen and (min-width: 768px) {

.Headline {
    grid-column: 5 / span 6
}
  }

/** Styles for Marktplatz.Windstaerke:Component.Molecule.Hero */

.Hero {
  display: grid;
  grid-template-columns: 25px repeat(12, 1fr) 25px;
  grid-template-columns: var(--grid-mobile-columns);
  grid-column: 1 / -1;
}

.Hero-image {
    position: relative;
    grid-column: 1 / -1;
    overflow-y: hidden;
    height: calc(100% - 20px);
  }

.Hero-image > .lazyloaded {
      position: absolute;
      bottom: 0;
      left: 0;
      display: block;
      width: 100%;
      transition: opacity 750ms, bottom 200ms;
    }

.Hero-image::after {
      content: '';
      display: block;
      width: 100%;
      height: 0;
      padding-bottom: calc(50% - 10px);
    }

.Hero-text {
    z-index: 1;
    grid-column: 2 / span 12;
    font-size: 1.875rem;
    font-size: var(--font-size-large);
    font-weight: 600;
    font-weight: var(--font-weight-bold);
    line-height: 2.5rem;
    line-height: var(--line-height-large);
    background: #ffffff;
    background: var(--color-white);
  }

.Hero-text a {
      display: inline-flex;
      align-items: center;
      font-size: 1rem;
      font-size: var(--font-size-small);
      font-weight: 500;
      font-weight: var(--font-weight-medium);
      line-height: 1.5625rem;
      line-height: var(--line-height-small);
      text-decoration: none;
      text-transform: uppercase

    }

.Hero-text a::before {
        content: url("../Assets/icon_internal_link.svg");
        display: inline-block;
        width: 18px;
        height: 18px;
        margin-right: 5px;
      }

.Hero-text a[target=_blank]::before {
        content: url("../Assets/icon_external_link.svg");
      }

@media screen and (min-width: 768px) {

.Hero {
    grid-column: 2 / span 12;
}

    .Hero-image {
      grid-column: 2 / -1;
    }

    .Hero-text {
      grid-column: 1 / span 7;
      padding: 30px 50px 0 0;
    }
      .Hero.has-image .Hero-text {
        margin-top: -120px;
      }
  }

.Image {
  margin: 64px 0 0;
}

.Image--small {
    grid-column: 2 / span 12
  }

@media screen and (min-width: 768px) {

  .Image--small {
      grid-column: 5 / span 6
  }
    }

.Image--large {
    display: grid;
    grid-template-columns: 25px repeat(12, 1fr) 25px;
    grid-template-columns: var(--grid-mobile-columns);
    grid-column: 1 / -1
  }

@media screen and (min-width: 768px) {

  .Image--large {
      display: block;
      grid-column: 3 / span 10
  }
    }

.Image--large picture {
      grid-column: 1 / -1
    }

@media screen and (min-width: 768px) {

    .Image--large picture {
        grid-column: 2 / span 12
    }
      }

.Image--large figcaption {
      grid-column: 2 / span 12;
    }

.Image-lightboxHandler {
    position: relative;
    top: -32px;
    cursor: pointer;
  }

.ImageLightbox {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
  }

.ImageLightbox .ImageLightbox-handler {
      position: absolute;
      top: 0;
      right: 0;
      border: none;
      background: transparent;
      cursor: pointer;
    }

.ImageLightbox .ImageLightbox-content {
      width: auto;
      max-width: 80vw;
      height: auto;
      max-height: 80vh;
    }

.ImageTeaser {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 25px repeat(12, 1fr) 25px;
  grid-template-columns: var(--grid-mobile-columns);
  min-height: calc(100vw * 0.5625);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover
}

@media screen and (min-width: 768px) {

.ImageTeaser {
    grid-template-columns: minmax(25px, 1fr) repeat(12, minmax(20px, calc((1400px - 220px) / 12))) minmax(25px, 1fr);
    grid-template-columns: var(--grid-default-columns)
}
  }

.ImageTeaser-text {
    grid-row: 2;
    grid-column: 2 / span 12;
    margin-bottom: 80px;
    font-size: 2.375rem;
    font-size: var(--font-size-xlarge);
    font-weight: 500;
    font-weight: var(--font-weight-medium);
    line-height: 2.9375rem;
    line-height: var(--line-height-xlarge);
    color: #ffffff;
    color: var(--color-white)
  }

@media screen and (min-width: 768px) {

  .ImageTeaser-text {
      grid-column: 8 / span 6
  }
    }

.ImageTeaser-text a {
      display: inline-flex;
      align-items: center;
      font-size: 1rem;
      font-size: var(--font-size-small);
      font-weight: 500;
      font-weight: var(--font-weight-medium);
      line-height: 1.5625rem;
      line-height: var(--line-height-small);
      text-decoration: none;
      text-transform: uppercase;
      color: #ffffff;
      color: var(--color-white);
    }

.Logo {
  grid-row: 1 / -1;
  grid-column: 1 / -1
}

@media screen and (min-width: 768px) {

.Logo {
    grid-column: 2 / span 3;
    margin-right: 70px
}
  }

.Menu.Menu--dimension {
  margin-left: 20px;
  font-size: 0.875rem;
  font-size: var(--font-size-xsmall);
  text-transform: uppercase;
  opacity: 0;
}

.Menu.Menu--dimension .Menu-item a {
      color: #00596e;
      color: var(--color-green-dark);
    }

.Menu.Menu--dimension .Menu-item:hover a, .Menu.Menu--dimension .Menu-item.Menu-item-is-current a {
        text-decoration: underline;
      }

.Menu.Menu--footer {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
  font-size: 0.875rem;
  font-size: var(--font-size-xsmall);
  line-height: 1.3125rem;
  line-height: var(--line-height-xsmall)
}

@media screen and (min-width: 768px) {

.Menu.Menu--footer {
    flex-direction: row;
    margin: 0 auto 95px
}
  }

.Menu.Menu--footer > .Menu-item > a {
    font-weight: 600;
    font-weight: var(--font-weight-bold);
  }

.Menu.Menu--footer .Menu-item {
    margin-bottom: 10px
  }

.Menu.Menu--footer .Menu-item:last-child {
      margin-bottom: 0;
    }

.Menu.Menu--footer .Menu-item a {
      color: #f4f4f4;
      color: var(--color-white-offwhite);
      opacity: 0.7
    }

.Menu.Menu--footer .Menu-item a:hover {
        text-decoration: underline;
        color: #ffffff;
        color: var(--color-white);
        opacity: 1;
      }

.Menu.Menu--footer .Menu-sub {
    display: none
  }

@media screen and (min-width: 768px) {

  .Menu.Menu--footer .Menu-sub {
      display: flex;
      margin-top: 10px;
  }

      .Menu.Menu--footer .Menu-sub .Menu-sub {
        margin-left: 10px;
      }
    }

.Menu.Menu--footer-meta {
  flex-direction: column;
  font-size: 0.875rem;
  font-size: var(--font-size-xsmall);
  line-height: 1.3125rem;
  line-height: var(--line-height-xsmall)
}

@media screen and (min-width: 768px) {

.Menu.Menu--footer-meta {
    flex-direction: row;
    margin: 0 auto
}
  }

.Menu.Menu--footer-meta .Menu-item {
    margin-bottom: 10px;
    font-weight: 500;
    font-weight: var(--font-weight-medium)
  }

@media screen and (min-width: 768px) {

  .Menu.Menu--footer-meta .Menu-item {
      margin-right: 26px;
      font-weight: normal;
      font-weight: var(--font-weight-default)
  }
    }

.Menu.Menu--footer-meta .Menu-item a {
      color: #f4f4f4;
      color: var(--color-white-offwhite);
      opacity: 0.7
    }

.Menu.Menu--footer-meta .Menu-item a:hover {
        text-decoration: underline;
        color: #ffffff;
        color: var(--color-white);
        opacity: 1;
      }

.Menu--header-meta {
    font-size: 0.875rem;
    font-size: var(--font-size-xsmall);
  }

.Menu--header-meta .Menu-item a {
        color: #00596e;
        color: var(--color-green-dark);
      }

.Menu--header-meta .Menu-item:hover a, .Menu--header-meta .Menu-item.Menu-item-is-current a {
          color: #009ba6;
          color: var(--color-green-light);
        }

.Menu--main {
    font-weight: 500;
    font-weight: var(--font-weight-medium);
  }

.Menu {
  display: flex;
  width: auto
}

.Menu > * {
    margin-right: 20px
  }

.Menu > *:last-child {
      margin-right: 0;
    }

.Menu-sub {
    display: flex;
    flex-direction: column;
  }

.Main .News {
    display: grid;
    grid-column: 2 / span 12;
    grid-gap: 20px 150px;
    gap: 20px 150px;
  }

.Main .News > *:first-child {
      grid-column: 1 / -1;
      font-size: 1rem;
      font-size: var(--font-size-small);
      font-weight: 600;
      font-weight: var(--font-weight-bold);
      line-height: 1.5625rem;
      line-height: var(--line-height-small);
      text-transform: uppercase;
    }

@media screen and (min-width: 768px) {
  .Main .News {
      grid-template-columns: repeat(2, 1fr);
      grid-column: 2 / span 12
  }
    }

.PortalList {
  display: flex;
  align-items: center;
  justify-content: center
}

.PortalList > * ~ * {
    margin-left: 30px;
  }

.PortalList-item {
  padding: 10px;
  background: var(--clr-background);
}

@media screen and (max-width: 576px) {
  .PortalList {
    flex-flow: column;
    flex-wrap: wrap
  }

    .PortalList > * ~ * {
      margin-left: 0;
    }

  .PortalList .PortalList-item {
    width: 100%;
    margin-top: 0;
  }

  .PortalList .PortalList-item + .PortalList-item {
    margin-top: 10px;
  }

  .PortalList .PortalList-item .Picture {
    display: flex;
    justify-content: center;
  }

  .PortalList .PortalList-item img {
    width: 80%;
  }
}

.Quote {
  grid-column: 2 / span 12;
  margin: 0;
  font-size: 1.875rem;
  font-size: var(--font-size-large);
  line-height: 2.5rem;
  line-height: var(--line-height-large)
}

@media screen and (min-width: 768px) {

.Quote {
    grid-column: 5 / span 6
}
  }

.Quote blockquote {
    margin: 0;
  }

.Quote blockquote p {
      quotes: '„' '”'
    }

.Quote blockquote p:first-child::before {
        content: open-quote;
      }

.Quote blockquote p:last-child::after {
          content: close-quote;
        }

.ReferenceBlock {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 20px;
  gap: 20px;
  margin: 70px 0;
}

.ReferenceBlock-content {
    background: #ffffff;
    background: var(--color-white);
  }

.ReferenceBlock-link {
    display: flex;
    align-items: center;
    margin-top: 7px;
    font-size: 1rem;
    font-size: var(--font-size-small);
    font-weight: 500;
    font-weight: var(--font-weight-medium);
    line-height: 1.5625rem;
    line-height: var(--line-height-small);
    text-decoration: none;
    text-transform: uppercase
  }

.ReferenceBlock-link:hover {
      text-decoration: underline;
    }

.ReferenceBlock-image picture {
      overflow: hidden;
    }

.ReferenceBlock-image img {
      transform: scale(1.5);
      transition: transform 1.75s ease-in-out !important;
    }

.ReferenceBlock.is--scale .ReferenceBlock-image img {
   transform: scale(1);
  }

@media screen and (min-width: 768px) {

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

    .ReferenceBlock-content {
      padding: 0 50px 50px 50px;
      background: #ffffff;
      background: var(--color-white);
    }

    .ReferenceBlock-date {
      font-size: 1rem;
      font-size: var(--font-size-small);
      font-weight: 500;
      font-weight: var(--font-weight-medium);
      line-height: 1.5625rem;
      line-height: var(--line-height-small);
    }

    .ReferenceBlock-title {
      margin-top: 16px;
    }
      .ReferenceBlock-text > p:first-child {
        margin-top: 24px;
      }
  }

.ReferenceBlock--large .ReferenceBlock-image {
      grid-column: 1 / -1;
    }

.ReferenceBlock--large .ReferenceBlock-content {
      grid-column: 2 / span 10;
    }

@media screen and (min-width: 768px) {
        .ReferenceBlock--large.ReferenceBlock--top-left .ReferenceBlock-image {
          grid-column: 2 / -1;
        }

        .ReferenceBlock--large.ReferenceBlock--top-left .ReferenceBlock-content {
          position: absolute;
          top: 0;
          grid-column: 1;
          width: calc(100% / 12 * 6);
        }
        .ReferenceBlock--large.ReferenceBlock--top-right .ReferenceBlock-image {
          grid-column: 1 / span 11;
        }

        .ReferenceBlock--large.ReferenceBlock--top-right .ReferenceBlock-content {
          position: absolute;
          top: 0;
          right: -100px;
          width: calc(100% / 12 * 6);
        }
    }

.ReferenceBlock--small .ReferenceBlock-image {
      grid-column: 2 / span 10;
    }

.ReferenceBlock--small .ReferenceBlock-content {
      grid-column: 2 / span 10;
      margin-top: -50px;
      padding-top: 25px;
    }

.ReferenceBlock--small.ReferenceBlock--top-left .ReferenceBlock-image, .ReferenceBlock--small.ReferenceBlock--bottom-left .ReferenceBlock-image {
        grid-column: 2 / span 11;
      }

.ReferenceBlock--small.ReferenceBlock--top-left .ReferenceBlock-content, .ReferenceBlock--small.ReferenceBlock--bottom-left .ReferenceBlock-content {
        grid-column: 2 / span 9;
      }

.ReferenceBlock--small.ReferenceBlock--top-right .ReferenceBlock-image, .ReferenceBlock--small.ReferenceBlock--bottom-right .ReferenceBlock-image {
        grid-column: 1 / span 11;
      }

.ReferenceBlock--small.ReferenceBlock--top-right .ReferenceBlock-content, .ReferenceBlock--small.ReferenceBlock--bottom-right .ReferenceBlock-content {
        grid-column: 1 / span 10;
        padding-left: 25px;
      }

@media screen and (min-width: 768px) {
        .ReferenceBlock--small.ReferenceBlock--top-left .ReferenceBlock-image {
          grid-column: span 8 / -1;
        }

        .ReferenceBlock--small.ReferenceBlock--top-left .ReferenceBlock-content {
          position: absolute;
          top: 25px;
          grid-column: 1 / span 5;
        }
        .ReferenceBlock--small.ReferenceBlock--top-right .ReferenceBlock-image {
          grid-column: 1 / span 8;
        }

        .ReferenceBlock--small.ReferenceBlock--top-right .ReferenceBlock-content {
          position: absolute;
          top: 25px;
          grid-column: span 5 / -1;
          padding-left: 50px;
        }
        .ReferenceBlock--small.ReferenceBlock--bottom-left .ReferenceBlock-image {
          grid-column: span 8 / -1;
        }

        .ReferenceBlock--small.ReferenceBlock--bottom-left .ReferenceBlock-content {
          position: absolute;
          bottom: -50px;
          grid-column: 1 / span 5;
        }
        .ReferenceBlock--small.ReferenceBlock--bottom-right .ReferenceBlock-image {
          grid-column: 1 / span 8;
        }

        .ReferenceBlock--small.ReferenceBlock--bottom-right .ReferenceBlock-content {
          position: absolute;
          bottom: -50px;
          grid-column: span 5 / -1;
          padding-left: 50px;
        }
    }

.Section--gray .ReferenceBlock-content {
  background: #f4f4f4;
  background: var(--color-white-offwhite);
}

@media screen and (min-width: 768px) {
  .Columns .ReferenceBlock--small {
    margin-top: 260px;
  }
}

.ReferenceBlocks {
  grid-column: 1 / -1;
  height: auto
}

@media screen and (min-width: 768px) {

.ReferenceBlocks {
    grid-column: 2 / span 12
}
  }

.ReferenceBlocks .Headline {
    font-size: 4.375rem;
    font-weight: 600;
    font-weight: var(--font-weight-bold);
    line-height: 3.625rem;
    text-align: center;
  }

:root {
  --gradient-start-color: rgba(0,155,166,0.01961);
  //--gradient-start-color: red;
  --gradient-end-color: rgba(0,155,166,0.12941);
}

.Section {
  display: grid;
  grid-template-columns: 25px repeat(12, 1fr) 25px;
  grid-template-columns: var(--grid-mobile-columns);
  padding-bottom: 80px;
}

.Section > *:first-child {
    margin-top: calc(80px - 32px);
  }

.Section--gray {
    background: #f4f4f4;
    background: var(--color-white-offwhite);
  }

.Section--gradient {
    background: transparent radial-gradient(farthest-corner at top, rgba(0,155,166,0.01961) 0%, rgba(0,155,166,0.12941) 50%) top right/150% 150%;
    background: transparent radial-gradient(farthest-corner at top, var(--gradient-start-color) 0%, var(--gradient-end-color) 50%) top right/150% 150%;
    -webkit-animation: gradientRoll 5s infinite alternate;
            animation: gradientRoll 5s infinite alternate;
  }

@media screen and (min-width: 768px) {

.Section {
    grid-template-columns: minmax(25px, 1fr) repeat(12, minmax(20px, calc((1400px - 220px) / 12))) minmax(25px, 1fr);
    grid-template-columns: var(--grid-default-columns)
}
  }

@-webkit-keyframes gradientRoll {
  to {
    background-position: top left;
  }
}

@keyframes gradientRoll {
  to {
    background-position: top left;
  }
}

.Slider {
  position: relative;
  grid-column: 1 / -1;
  overflow: hidden;
  scroll-behavior: smooth
}

@media screen and (min-width: 768px) {

.Slider {
    grid-column: 2 / span 12
}
  }

.Slider-slides {
    display: flex;
    flex-flow: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    scrollbar-width: none;
  }

.Slider-slides > * {
      flex: none;
      width: 100%;
      scroll-snap-align: center;
    }

.Slider-slides::-webkit-scrollbar {
      display: none;
    }

.Slider-slides .Caption {
      min-height: 63px;
      margin-left: 25px
    }

@media screen and (min-width: 768px) {

    .Slider-slides .Caption {
        margin-left: 0
    }
      }

.Slider-slides .Image {
      margin-top: 0;
    }

.Slider picture {
    position: relative;
    grid-column: 1 / -1;
    overflow-y: hidden;
    height: calc(100% - 100px);
  }

.Slider picture > .lazyloaded {
      position: absolute;
      bottom: 0;
      left: 0;
      display: block;
      width: 100%;
      transition: opacity 750ms, bottom 200ms;
    }

.Slider picture::after {
      content: '';
      display: block;
      width: 100%;
      height: 0;
      padding-bottom: calc(50% - 10px);
    }

.SliderNavigation-button {
  position: absolute;
  top: calc(50% - 41px * 2);
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.SliderNavigation-button--prev {
    left: 0;
  }

.SliderNavigation-button--next {
    right: 0;
  }

.SliderTeaser {
  display: grid;
  grid-template-columns: 25px repeat(12, 1fr) 25px;
  grid-template-columns: var(--grid-mobile-columns);
}

.SliderTeaser .Slider {
    grid-column: 1 / -1;
  }

.SliderTeaser .Slider picture {
      position: relative;
      grid-column: 1 / -1;
      overflow: hidden;
    }

.SliderTeaser .Slider picture > * {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        transition: all 200ms ease;
      }

.SliderTeaser .Slider picture::after {
        content: '';
        display: block;
        width: 100%;
        height: 0;
        padding-bottom: 50%;
      }

@media screen and (min-width: 768px) {

.SliderTeaser {
    grid-template-columns: minmax(25px, 1fr) repeat(12, minmax(20px, calc((1400px - 220px) / 12))) minmax(25px, 1fr);
    grid-template-columns: var(--grid-default-columns);
}

    .SliderTeaser .Slider {
      grid-column: 3 / span 11;
    }
  }

.SliderTeaser-meta {
    margin-bottom: 16px;
    font-size: 1rem;
    font-size: var(--font-size-small);
    font-weight: 600;
    font-weight: var(--font-weight-bold);
    line-height: 1.5625rem;
    line-height: var(--line-height-small);
    letter-spacing: 0.05rem;
    background: #ffffff;
    background: var(--color-white);
  }

.SliderTeaser-introduction {
    position: relative;
    z-index: 1;
    grid-column: 2 / span 12;
    padding-bottom: 50px;
    background: #ffffff;
    background: var(--color-white);
  }

.SliderTeaser-introduction a {
      display: flex;
      align-items: center;
      font-size: 1rem;
      font-size: var(--font-size-small);
      font-weight: 500;
      font-weight: var(--font-weight-medium);
      line-height: 1.5625rem;
      line-height: var(--line-height-small);
      text-decoration: none;
      text-transform: uppercase;
    }

@media screen and (min-width: 768px) {

  .SliderTeaser-introduction {
      grid-column: 2 / span 5;
      margin-top: -240px;
      padding: 0 50px 50px 0
  }

      .SliderTeaser-introduction::before {
        content: '';
        position: absolute;
        top: -50px;
        display: inline-block;
        width: 75%;
        height: 50px;
        background: #ffffff;
        background: var(--color-white);
      }

      .SliderTeaser-introduction .SliderTeaser-block {
         position: absolute;
        z-index: 0;
         top: 0;
         right: 0;
         width: 25%;
         height: 100px;
         background: #ffffff;
         background: var(--color-white);
       }
    }

.Text {
  grid-column: 2 / span 12;
}

.Text .table {
    margin-top: 32px;
  }

@media screen and (min-width: 768px) {

.Text {
    grid-column: 5 / span 6
}
  }

.Video {
  position: relative;
  grid-column: 2 / span 12;
  height: 0;
  margin-top: 64px;
  padding-bottom: 56.25%
}

@media screen and (min-width: 768px) {

.Video {
    grid-column: 5 / span 6
}
  }

.Video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.VideoTeaser {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  color: var(--color-white);
}

.VideoTeaser video {
    width: 100%;
  }

.VideoTeaser-text {
    position: absolute;
    margin-top: 0;
    font-size: 2.375rem;
    font-size: var(--font-size-xlarge);
    font-weight: 500;
    font-weight: var(--font-weight-medium);
    line-height: 2.9375rem;
    line-height: var(--line-height-xlarge);
  }

.VideoTeaser-text span {
      display: inline-block;
    }

.Aside {
  position: fixed;
  z-index: 10;
  top: 0;
  display: none;
  grid-template-rows: 1fr auto;
  grid-template-columns: 25px 1fr 25px;
  grid-gap: 20px;
  gap: 20px;
  overflow-y: auto;
  width: 100vw;
  min-height: 100%;
  max-height: 100vw;
  padding: 40px 0 70px;
  background: #00596e;
  background: var(--color-green-dark);
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out
}

.Aside.is-active {
    transform: translateY(0);
  }

.Aside.is-active .MenuToggle {
      display: block;
    }

.Aside * {
    color: #ffffff;
    color: var(--color-white);
  }

.Aside-content {
    grid-row: 2;
    grid-column: 2;
    font-size: 1rem;
    font-size: var(--font-size-small);
    font-weight: normal;
    font-weight: var(--font-weight-default);
    line-height: 1.5625rem;
    line-height: var(--line-height-small);
  }

.Aside-navigation {
    display: grid;
    grid-template-rows: 1fr auto;
    grid-row: 1;
    grid-column: 2;
    margin-top: 25px;
  }

.Aside-metaContainer {
    display: flex;
    flex-direction: column;
    grid-row: 2;
    margin-top: 50px;
    margin-bottom: 20px;
  }

.Aside-metaContainer .Menu {
      line-height: 1.875rem;
      line-height: var(--line-height-default);
    }

.Aside-metaContainer .Menu--dimension {
      flex-direction: row !important;
      margin-left: 0;
    }

.Aside .Menu {
    flex-direction: column;
    grid-row: 1;
    line-height: 2.5rem;
    line-height: var(--line-height-large);
  }

.Aside .Menu-item {
    position: relative;
  }

.Aside .Menu-item a {
      display: block;
      color: #ffffff !important;
      color: var(--color-white) !important;
    }

.Aside .Menu-item.has-sub::before {
      content: '';
      position: absolute;
      top: 10px;
      left: -25px;
      display: block;
      width: 18px;
      height: 18px;
      background: url("../Assets/icon_chevron--white.svg");
      background-repeat: no-repeat;
      background-size: cover;
      cursor: pointer;
      transition: transform 200ms ease-in-out;
    }

.Aside .Menu-item.is-hovered.has-sub::before {
      transform: rotate(90deg);
    }

.Aside .Menu-sub {
    display: flex;
    overflow: hidden;
    max-height: 0;
    font-size: 1rem;
    font-size: var(--font-size-small);
    font-weight: normal;
    font-weight: var(--font-weight-default);
    line-height: 1.875rem;
    line-height: var(--line-height-default);
    opacity: 0;
    transform: scale(0);
    transform-origin: top left;
    transition: all 0.5s ease-in-out;
  }

.Aside .Menu-sub a {
      color: #f4f4f4 !important;
      color: var(--color-white-offwhite) !important;
    }

.Aside .Menu-sub .Menu-item-is-current,
    .Aside .Menu-sub a:hover {
      text-decoration: underline;
    }

.Aside .is-hovered .Menu-sub {
    max-height: 400px;
    opacity: 1;
    transform: scale(1);
  }

@media screen and (min-width: 768px) {

.Aside {
    grid-template-columns: minmax(25px, 1fr) repeat(12, minmax(20px, calc((1400px - 220px) / 12))) minmax(25px, 1fr);
    grid-template-columns: var(--grid-default-columns);
    min-height: 400px;
}

    .Aside-content {
      grid-row: initial;
      grid-column: 3 / span 3;
      margin-top: 65px;
    }

    .Aside-navigation {
      display: block;
      grid-row: initial;
      grid-column: 6 / span 7;
      margin-top: initial;
    }

      .Aside-navigation .Aside-metaContainer {
        flex-direction: row;
        margin-top: 5px;
        margin-bottom: 10px;
      }

    .Aside .Menu {
      flex-direction: row;
    }

      .Aside .Menu--dimension {
        margin-left: 20px;
      }

    .Aside .Menu-item.has-sub::before {
      display: none;
    }

    .Aside .Menu-sub {
      position: absolute;
      top: 38px
    }

      .Aside .Menu-sub::before {
        content: '';
        display: block;
        width: 18px;
        height: 18px;
        background: url("../Assets/icon_chevron--white.svg");
        background-repeat: no-repeat;
        background-size: cover;
        transform: rotate(90deg);
      }

  }

/** Styles for Marktplatz.Windstaerke:Component.Organism.Footer */

.Footer {
  display: grid;
  grid-template-columns: 25px repeat(12, 1fr) 25px;
  grid-template-columns: var(--grid-mobile-columns);
  grid-gap: 20px;
  gap: 20px;
  background-color: #00323f;
  background-color: var(--color-primary);
}

.Footer > * {
    grid-column: 2 / span 12;
  }

@media screen and (min-width: 768px) {

.Footer {
    grid-template-columns: minmax(25px, 1fr) repeat(12, minmax(20px, calc((1400px - 220px) / 12))) minmax(25px, 1fr);
    grid-template-columns: var(--grid-default-columns)
}
  }

.Footer-content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 20px;
  gap: 20px;
  overflow: hidden;
  padding: 70px 0 40px;
}

.Footer-content > * {
    grid-column: 1 / -1;
  }

@media screen and (min-width: 768px) {
    .Footer-content > * {
      grid-column: 2 / span 10;
    }
  }

.Footer-portalMenu {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 15px;
  text-align: center;
  background: white;
}

@media screen and (max-width: 576px) {
  .Footer-portalMenu {
    flex-flow: column;
    flex-wrap: wrap;
  }
}

.Footer-portalMenu .Headline {
  margin-right: 30px;
  color: white;
}

/** Styles for Marktplatz.Windstaerke:Component.Organism.Header */

.Header {
  display: grid;
  grid-template-columns: 25px repeat(12, 1fr) 25px;
  grid-template-columns: var(--grid-mobile-columns);
  grid-gap: 20px;
  gap: 20px;
  padding-top: 40px

}

@media screen and (min-width: 768px) {

.Header {
    grid-template-columns: minmax(25px, 1fr) repeat(12, minmax(20px, calc((1400px - 220px) / 12))) minmax(25px, 1fr);
    grid-template-columns: var(--grid-default-columns)

}
  }

.Header > * {
    grid-column: 2 / span 12;
  }

.Header-content {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 20px;
    gap: 20px;
    overflow: hidden;
  }

.Header-content .Header-metaContainer {
      display: none;
      grid-row: 1;
      grid-column: 5 / span 7;
      margin-top: 10px
    }

@media screen and (min-width: 768px) {

    .Header-content .Header-metaContainer {
        display: flex
    }
      }

.Header .Menu--main {
    display: none;
    grid-row: 2;
    grid-column: 5 / span 7
  }

@media screen and (min-width: 768px) {

  .Header .Menu--main {
      display: flex
  }
    }

.Header .Menu-item a:hover {
        color: #00596e;
        color: var(--color-green-dark);
      }

.Header .Menu-item-is-current a {
      color: #009ba6;
      color: var(--color-green-light);
    }

.Article-header {
    position: relative;
    grid-column: 2 / span 12;
    background: #ffffff;
    background: var(--color-white)
  }

@media screen and (min-width: 768px) {
  .Article-header {
      grid-column: 2 / span 5
  }
    }

.Article:not(.has-image) .has-backlink {
      margin-top: 70px;
    }

.Article.has-image .Article-header {
      margin-top: -105px;
    }

.Article-image {
    grid-column: 1/ span -1
  }

@media screen and (min-width: 768px) {

  .Article-image {
      grid-column: 6 / span 7
  }
    }

.Article-introduction-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column: 2 / span 12;
  }

.Article-introduction {
    grid-column: 1 / -1;
    font-size: 1.875rem;
    font-size: var(--font-size-large);
    font-weight: 600;
    font-weight: var(--font-weight-bold);
    line-height: 2.5rem;
    line-height: var(--line-height-large)
  }

@media screen and (min-width: 768px) {

  .Article-introduction {
      grid-column: 1 / span 7
  }
    }

.Article-meta {
    grid-column: 1 / -1;
    font-size: 1rem;
    font-size: var(--font-size-small);
    font-weight: 600;
    font-weight: var(--font-weight-bold);
    line-height: 1.5625rem;
    line-height: var(--line-height-small);
    text-transform: uppercase;
    color: #009ba6;
    color: var(--color-green-light)
  }

@media screen and (min-width: 768px) {

  .Article-meta {
      grid-column: 10 / span 3
  }
    }

.Exhibition-dates {
    font-size: 1rem;
    font-size: var(--font-size-small);
    font-weight: 600;
    font-weight: var(--font-weight-bold);
    line-height: 1.5625rem;
    line-height: var(--line-height-small);
  }

.HomePage .Columns--3 .Text a {
        font-size: 1rem;
        font-size: var(--font-size-small);
        font-weight: 500;
        font-weight: var(--font-weight-medium);
        line-height: 1.5625rem;
        line-height: var(--line-height-small);
        text-decoration: none;
        text-transform: uppercase;
      }

.Form {
  grid-column: 2 / span 12;
}

.Form legend {
    padding: 0;
    font-size: 2.375rem;
    font-size: var(--font-size-xlarge);
    font-weight: 600;
    font-weight: var(--font-weight-bold);
    line-height: 2.9375rem;
    line-height: var(--line-height-xlarge);
  }

.Form fieldset {
    margin: 0;
    padding: 0;
    border: none;
  }

.Form label {
    font-size: 0.875rem;
    font-size: var(--font-size-xsmall);
    font-weight: normal;
    font-weight: var(--font-weight-default);
    line-height: 1.3125rem;
    line-height: var(--line-height-xsmall);
  }

.Form input,
  .Form select,
  .Form textarea {
    width: 100%;
    margin: 0 0 12px;
    padding: 10px;
    border: 2px solid #c3c3c3;
    border: 2px solid var(--color-gray-light);
    font-size: 1rem;
    font-size: var(--font-size-small);
    font-weight: normal;
    font-weight: var(--font-weight-default);
    line-height: 1.5625rem;
    line-height: var(--line-height-small);
    background: #f4f4f4;
    background: var(--color-white-offwhite);
    outline: none
  }

.Form input:active,
    .Form input:focus,
    .Form select:active,
    .Form select:focus,
    .Form textarea:active,
    .Form textarea:focus {
      border-color: #009ba6;
      border-color: var(--color-green-light);
      outline-offset: 0;
    }

.Form textarea {
    min-height: 150px;
  }

.Form select {
    z-index: 1;
    border-radius: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none
  }

.Form select::-ms-expand {
      display: none;
    }

.Form .has--select {
    position: relative
  }

.Form .has--select::after {
      content: '';
      position: absolute;
      z-index: 2;
      top: 15px;
      right: 15px;
      display: block;
      width: 18px;
      height: 18px;
      background: url("../Assets/icon_chevron.svg") no-repeat center center;
      background-size: contain;
      transform: rotate(90deg);
    }

.Form p {
    font-size: 1rem;
    font-size: var(--font-size-small);
    font-weight: normal;
    font-weight: var(--font-weight-default);
    line-height: 1.5625rem;
    line-height: var(--line-height-small);
  }

.Form ul li::before {
      display: none;
    }

.Form .inputs-list {
    margin-top: 12px;
  }

.Form .inputs-list li {
      margin-bottom: 16px;
    }

.Form .inputs-list label {
      display: grid;
      grid-template-columns: minmax(24px, auto) 1fr;
      grid-gap: 16px;
      gap: 16px;
      align-items: center;
    }

.Form .inputs-list input[type=radio] {
      width: 25px;
      height: 25px;
      margin: 0;
      padding: 0;
      border: 2px solid #c3c3c3;
      border: 2px solid var(--color-gray-light);
      border-radius: 50%;
      background: #f4f4f4;
      background: var(--color-white-offwhite);
      outline: none;
      transition: all 200ms ease-in-out;
      -webkit-appearance: none
    }

.Form .inputs-list input[type=radio]:checked {
        border: 7px solid #f4f4f4;
        border: 7px solid var(--color-white-offwhite);
        background: #0a0a0a;
        background: var(--color-black);
      }

.Form .checkbox {
    display: grid;
    grid-template-columns: minmax(24px, auto) 1fr;
    grid-auto-flow: dense;
    grid-gap: 16px;
    gap: 16px;
    align-items: start;
    margin-top: 16px;
  }

.Form .checkbox label {
      grid-column: 2;
    }

.Form .checkbox label :first-child {
        margin-top: 0;
      }

.Form .checkbox label :nth-last-child(2) {
        display: inline;
      }

.Form .checkbox .input {
      grid-column: 1;
    }

.Form .checkbox input[type=checkbox] {
      width: 25px;
      height: 25px;
      margin: 0;
      padding: 0;
      border: 2px solid #c3c3c3;
      border: 2px solid var(--color-gray-light);
      background: #f4f4f4;
      background: var(--color-white-offwhite);
      outline: none;
      transition: all 200ms ease-in-out;
      -webkit-appearance: none
    }

.Form .checkbox input[type=checkbox]:checked {
        border: 7px solid #f4f4f4;
        border: 7px solid var(--color-white-offwhite);
        background: #0a0a0a;
        background: var(--color-black);
      }

.Form input[type=time] {
    position: relative
  }

.Form input[type=time]::after {
      content: '';
      position: absolute;
      right: 15px;
      display: block;
      width: 18px;
      height: 18px;
      background: url("../Assets/icon_time.svg") no-repeat center center;
      background-size: contain;
    }

.Form input[type=date] {
    position: relative
  }

.Form input[type=date]::after {
      content: '';
      position: absolute;
      right: 15px;
      display: block;
      width: 18px;
      height: 18px;
      background: url("../Assets/icon_calendar.svg") no-repeat center center;
      background-size: contain;
    }

.Form input[type=number] {
    -webkit-appearance: textfield;
       -moz-appearance: textfield;
            appearance: textfield
  }

.Form input[type=number]::-webkit-outer-spin-button,
    .Form input[type=number]::-webkit-inner-spin-button {
      margin: 0;
      -webkit-appearance: none;
    }

.Form .has--number {
    position: relative;
  }

.Form .has--number .number--up,
    .Form .has--number .number--down {
      content: '';
      position: absolute;
      right: 15px;
      display: block;
      width: 18px;
      height: 18px;
      background: url("../Assets/icon_chevron.svg") no-repeat center center;
      background-size: contain;
      cursor: pointer;
    }

.Form .has--number .number--up {
      top: 10px;
      transform: rotate(-90deg);
    }

.Form .has--number .number--down {
      bottom: 20px;
      transform: rotate(90deg);
    }

.Form button {
    margin: 0;
    padding: 15px 24px;
    border: 2.5px solid #0a0a0a;
    border: 2.5px solid var(--color-black);
    font-size: 1rem;
    font-size: var(--font-size-small);
    font-weight: 600;
    font-weight: var(--font-weight-bold);
    line-height: 1.5625rem;
    line-height: var(--line-height-small);
    text-transform: uppercase;
    background: #ffffff;
    background: var(--color-white);
    color: #0a0a0a;
    color: var(--color-black);
    outline: none;
    cursor: pointer
  }

.Form button:hover {
      border-color: #009ba6;
      border-color: var(--color-green-light);
      background: #009ba6;
      background: var(--color-green-light);
      color: #ffffff;
      color: var(--color-white);
    }

.Form .required {
    margin-left: 5px;
  }

.Form .help-inline {
    display: block;
    grid-column: 1 / -1;
    margin-top: -10px;
    font-size: 0.875rem;
    font-size: var(--font-size-xsmall);
    font-weight: normal;
    font-weight: var(--font-weight-default);
    line-height: 1.3125rem;
    line-height: var(--line-height-xsmall);
    text-align: right;
    color: #fd5539;
    color: var(--color-orange);
  }

.Form .help-block {
    display: block;
    grid-column: 1 / -1;
    margin-top: -36px;
    margin-bottom: 12px;
    font-size: 0.75rem;
    font-weight: normal;
    font-weight: var(--font-weight-default);
    line-height: 1.1875rem;
  }

.FormExplanation {
    background: #f4f4f4;
    background: var(--color-white-offwhite);
  }

.FormExplanation p {
      padding: 25px;
    }

@media screen and (min-width: 768px) {

.Form {
    grid-column: 4 / span 7;
}

    .Form fieldset {
      display: grid;
      grid-template-columns: repeat(11, 1fr);
      grid-gap: 20px;
      gap: 20px;
    }

      .Form fieldset > * {
        grid-column: 1 / -1;
      }

    .Form .small {
      grid-column: span 2;
    }

    .Form .medium {
      grid-column: span 4
    }

      .Form .medium.next--medium {
        grid-column: span 6;
      }

      .Form .medium.prev--medium {
        grid-column: 7 / span 6;
      }

    .Form .normal.next--small {
      grid-column: span 9;
    }

      .Form .normal.next--small + .small {
        grid-column: 10 / span 3;
      }

    .Form .normal.prev--medium {
      grid-column: 5 / span 8;
    }
  }
