@charset "UTF-8";
/*!
*   (C) 2022 Kieweg und Freiermuth Werbeagentur GmbH
*   
*   Main Theme File
*/
/* Theme Settings */
/* Spacings */
/* Breakpoints */
/* Color Palette Lightmode */
/*
*   (C) 2021 Kieweg und Freiermuth Werbeagentur GmbH
*   
*   Reset default browser styles to a minimum
*   
*/
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
*   (C) 2021 Kieweg und Freiermuth Werbeagentur GmbH
*
*   Mixins File
*   
*   Predefined mixins for global usage
*/
/* Media Query Mixins */
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../public/fonts/IBMPlexSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../public/fonts/IBMPlexSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../public/fonts/IBMPlexSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../public/fonts/IBMPlexSans-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../public/fonts/IBMPlexSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../public/fonts/IBMPlexSans-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: "Icons";
  src: url("../public/fonts/doctors.woff") format("woff");
  font-weight: 400;
  font-display: block;
}
.fontsize--extrasmall {
  font-size: 0.667rem;
  line-height: 0.889rem;
}

.fontsize--small {
  font-size: 0.778rem;
  line-height: 1.111rem;
}

.fontsize--normal {
  font-size: 1rem;
  line-height: 1.6rem;
}

.fontsize--medium {
  font-size: 1.667rem;
  line-height: 2rem;
}

.fontsize--large {
  font-size: 2.5rem;
  line-height: 3.611rem;
}

.fontsize--extralarge {
  font-size: 2.778rem;
  line-height: 3.611rem;
}

.fontweight--light {
  font-weight: 300;
}

.color--white {
  color: var(--light);
}

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

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

@media (prefers-color-scheme: dark) {
  body .color--white {
    color: var(--dark);
  }
}
body.theme--dark .color--white {
  color: var(--dark);
}

@media (prefers-color-scheme: light) {
  body.theme--dark .color--white {
    color: var(--dark);
  }
}
h1, h2, h3, h4, h5 {
  margin-bottom: 0.5em;
  max-width: 790px;
}

.full-width h1, .full-width h2, .full-width h3, .full-width h4, .full-width h5, .full-width p {
  max-width: 100%;
}

em {
  font-style: italic;
}

a {
  text-decoration: none;
  color: var(--dark);
}
a:hover {
  text-decoration: underline;
}

main a {
  color: var(--key);
  font-weight: bold;
}

footer a {
  color: var(--key);
}

strong, .fontweight--bold {
  font-weight: 700;
}

p {
  max-width: 790px;
}
p + p {
  margin-top: 10px;
}
p + h1, p + h2, p + h3 {
  margin-top: 10px;
}

.ce_text ul {
  margin: 10px 0;
  max-width: 790px;
}
.ce_text ul li {
  padding-left: 20px;
  position: relative;
}
.ce_text ul li:before {
  content: "✚";
  font-size: 12px;
  position: absolute;
  left: 0;
  color: var(--key);
}
.ce_text ul li.color--white:before {
  color: var(--light);
}
.ce_text ul li.color--key:before {
  color: var(--key);
}
.ce_text ul li.color--accent:before {
  color: var(--accent);
}

blockquote p {
  font-size: 1.667rem;
  line-height: 2rem;
  color: var(--accent);
  font-style: italic;
  padding: 40px;
  position: relative;
}
blockquote p:before {
  content: "»";
  font-size: 2em;
  position: absolute;
  left: 0;
  line-height: 0;
}

@media (prefers-color-scheme: dark) {
  body .ce_text ul li:before {
    color: var(--dark);
  }
}
body.theme--dark .ce_text ul li:before {
  color: var(--dark);
}

@media (prefers-color-scheme: light) {
  body.theme--dark .ce_text ul li:before {
    color: var(--dark);
  }
}
.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.position--relative {
  position: relative;
}

.position--absolute {
  position: absolute;
}

html {
  -webkit-font-smoothing: antialiased;
}

body {
  --dark: #1B1C1D;
  --darkgray: #343434;
  --gray: #cccccc;
  --graydark: #2e2e2e;
  --lightgray: #f3f3f3;
  --light: #fff;
  --key: #144298;
  --key-light: #487bdb;
  --accent: #61ba75;
  --accent-light: #45aae6;
  color: var(--dark);
  font-family: "IBM Plex Sans", sans-serif;
  background: var(--light);
  color: var(--dark);
  font-size: 1rem;
  line-height: 1.6rem;
}
@media (prefers-color-scheme: dark) {
  body {
    --dark: #fff;
    --darkgray: #f3f3f3;
    --gray: #cccccc;
    --lightgray: #343434;
    --light: #343434;
  }
}
body.theme--dark {
  --dark: #fff;
  --darkgray: #f3f3f3;
  --gray: #cccccc;
  --lightgray: #343434;
  --light: #343434;
}

@media (prefers-color-scheme: light) {
  body.theme--dark {
    --dark: #fff;
    --darkgray: #f3f3f3;
    --gray: #cccccc;
    --lightgray: #343434;
    --light: #343434;
  }
}

header {
  padding: 20px 0;
}
header .inside {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer {
  background: var(--lightgray);
  overflow: hidden;
}
footer .inside {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 1.6rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
}
@media (max-width: 767px) {
  footer .inside {
    padding: 0;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
footer .inside > * {
  padding: 20px 0 40px 0;
}
@media (max-width: 767px) {
  footer .inside > * {
    padding: 20px;
  }
}
footer .inside .mod_logo {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/span 3;
  padding-top: 40px;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  footer .inside .mod_logo {
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
footer .inside > *:nth-child(5) {
  -ms-grid-column: 4;
  grid-column: 4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/span 2;
  position: relative;
  background: var(--key-light);
  color: var(--light);
  padding: 80px;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  footer .inside > *:nth-child(5) {
    -ms-grid-column: 1;
    grid-column: 1;
    grid-row: auto;
    padding: 20px;
  }
}
footer .inside > *:nth-child(5) a {
  color: var(--light);
}
footer .inside > *:nth-child(5):after {
  content: "";
  background: var(--key-light);
  position: absolute;
  left: 0;
  right: -400px;
  top: 0;
  bottom: 0;
  z-index: -2;
}

@media (prefers-color-scheme: dark) {
  body footer {
    background: var(--graydark);
  }
  body footer .inside a {
    color: var(--dark);
  }
  body footer .inside > *:nth-child(5), body footer .inside > *:nth-child(5) a {
    color: var(--dark);
  }
}
body.theme--dark footer {
  background: var(--graydark);
}
body.theme--dark footer .inside a {
  color: var(--dark);
}
body.theme--dark footer .inside > *:nth-child(5), body.theme--dark footer .inside > *:nth-child(5) a {
  color: var(--dark);
}

@media (prefers-color-scheme: light) {
  body.theme--dark footer {
    background: var(--graydark);
  }
  body.theme--dark footer .inside a {
    color: var(--dark);
  }
  body.theme--dark footer .inside > *:nth-child(5), body.theme--dark footer .inside > *:nth-child(5) a {
    color: var(--dark);
  }
}
#FooterExtra {
  background: var(--key-light);
  color: var(--light);
  padding: 40px 0;
}
#FooterExtra a {
  color: var(--light);
}
#FooterExtra .inside {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
}
#FooterExtra .inside * {
  max-width: 100%;
}

@media (prefers-color-scheme: dark) {
  body #FooterExtra a, body footer .inside > *:nth-child(4), body footer .inside > *:nth-child(4) a {
    color: var(--dark);
  }
}
body.theme--dark #FooterExtra a, body.theme--dark footer .inside > *:nth-child(4), body.theme--dark footer .inside > *:nth-child(4) a {
  color: var(--dark);
}

@media (prefers-color-scheme: light) {
  body.theme--dark #FooterExtra a, body.theme--dark footer .inside > *:nth-child(4), body.theme--dark footer .inside > *:nth-child(4) a {
    color: var(--dark);
  }
}
.mod_article {
  position: relative;
}
.mod_article:not(.grid--disabled) .inside {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.mod_article.background--gray {
  background: var(--gray);
}
.mod_article.background--key {
  background: var(--key);
}
.mod_article.background--key-light {
  background: var(--key-light);
}
.mod_article.background--accent {
  background: var(--accent);
}
.mod_article.background--accent-light {
  background: var(--accent-light);
}
.mod_article.margin-top--off {
  margin-top: -60px;
  z-index: -1;
}
.mod_article.center--text > .inside {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mod_article.center--text .ce_text {
  display: inline-block;
  margin: 0 auto;
}

.invisible {
  display: none;
}

.mod_logo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mod_logo a {
  display: inline-block;
  font-size: 1.667rem;
  line-height: 2rem;
  font-weight: 700;
}
@media (max-width: 575px) {
  .mod_logo a {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}
.mod_logo a img {
  max-width: 260px;
  height: auto;
  display: block;
}
@media (max-width: 575px) {
  .mod_logo a img {
    width: 180px;
  }
}
.mod_logo a:hover {
  color: var(--accent);
}

@media (min-width: 576px) and (max-width: 767px) {
  header .mod_navigation {
    display: none;
  }
}
@media (max-width: 575px) {
  header .mod_navigation {
    display: none;
  }
}
header .mod_navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .mod_navigation ul li a, header .mod_navigation ul li strong {
  padding: 20px;
}
header .mod_navigation ul li a.active, header .mod_navigation ul li strong.active {
  font-weight: bold;
}
@media (max-width: 767px) {
  header .mod_navigation.open {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    z-index: 200;
    background: #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  header .mod_navigation.open ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  header .mod_navigation.open ul li {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    padding: 0;
  }
  header .mod_navigation.open ul li a, header .mod_navigation.open ul li strong {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    padding: 20px;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  header .mod_button {
    display: none;
  }
}

.mod_burger {
  display: none;
  justify-self: flex-end;
  padding: 25px 20px;
  margin: -20px;
  min-height: 20px;
  max-height: 20px;
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1000;
}
.mod_burger span {
  display: block;
  width: 40px;
  height: 3px;
  background: #1B1C1D;
}
@media (max-width: 767px) {
  .mod_burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.button {
  background: var(--accent);
  color: var(--light);
  display: block;
  padding: 10px 20px;
  font-weight: bold;
  text-align: center;
}
.button:hover {
  -webkit-box-shadow: 5px 5px 0px 0px var(--dark);
          box-shadow: 5px 5px 0px 0px var(--dark);
  background: var(--accent-light);
  -webkit-transform: translate(-2px, -2px);
          transform: translate(-2px, -2px);
  text-decoration: none;
}
.button.button--dark {
  background: var(--dark);
}
.button.button--dark:hover {
  background: var(--darkgray);
}
.button.button--light {
  background: var(--light);
}
.button.button--light:hover {
  background: var(--lightgray);
}
.button.button--key {
  background: var(--key);
}
.button.button--key:hover {
  background: var(--key-light);
}
.button.button--accent {
  background: var(--accent);
}
.button.button--accent:hover {
  background: var(--accent-light);
}
.button.button--text-dark {
  color: var(--dark);
}
.button.button--text-light {
  color: var(--light);
}
.button.button--text-key {
  color: var(--key);
}
.button.button--text-accent {
  color: var(--accent);
}

.ce_image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.ce_image.tint--key figure, .ce_image.tint--key-light figure, .ce_image.tint--accent figure, .ce_image.tint--accent-light figure {
  position: relative;
}
.ce_image.tint--key figure:after, .ce_image.tint--key-light figure:after, .ce_image.tint--accent figure:after, .ce_image.tint--accent-light figure:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--key);
  z-index: 100;
  opacity: 0.2;
  mix-blend-mode: multiply;
}
.ce_image.tint--key figure:after {
  background: var(--key);
}
.ce_image.tint--key-light figure:after {
  background: var(--key-light);
}
.ce_image.tint--accent figure:after {
  background: var(--accent);
}
.ce_image.tint--accent-light figure:after {
  background: var(--accent-light);
}

.mod_columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 100%;
}
.mod_columns > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -ms-grid;
  display: grid;
}
.mod_columns > .column {
  padding: 10px;
}
.mod_columns > .column.flex--0 {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
}
.mod_columns > .column.flex--1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.mod_columns > .column.flex--2 {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
.mod_columns > .column.flex--3 {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
.mod_columns > .column.flex--4 {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
}
.mod_columns > .column.flex--5 {
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5;
}
.mod_columns > .column.flex--6 {
  -webkit-box-flex: 6;
      -ms-flex: 6;
          flex: 6;
}
.mod_columns > .column.flex--7 {
  -webkit-box-flex: 7;
      -ms-flex: 7;
          flex: 7;
}
.mod_columns > .column.flex--8 {
  -webkit-box-flex: 8;
      -ms-flex: 8;
          flex: 8;
}
.mod_columns > .column.flex--9 {
  -webkit-box-flex: 9;
      -ms-flex: 9;
          flex: 9;
}
.mod_columns > .column.flex--10 {
  -webkit-box-flex: 10;
      -ms-flex: 10;
          flex: 10;
}
.mod_columns > .column.flex--11 {
  -webkit-box-flex: 11;
      -ms-flex: 11;
          flex: 11;
}
.mod_columns > .column.flex--12 {
  -webkit-box-flex: 12;
      -ms-flex: 12;
          flex: 12;
}
.mod_columns > .column.padding--off {
  padding: 0;
}
.mod_columns > .column.relative {
  position: relative;
}
.mod_columns > .column.has--whitebackground {
  background: #fff;
}
.mod_columns > .column.has--dropshadow {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
}
.mod_columns > .column.padding--increase {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-right: 60px;
  padding-left: 60px;
}
.mod_columns > .column.background--gray-light .column--inside {
  background: var(--lightgray);
  padding: 20px;
}
.mod_columns > .column.background--gray .column--inside {
  background: var(--gray);
  padding: 20px;
}
.mod_columns > .column.background--key .column--inside {
  background: var(--key);
  padding: 20px;
}
.mod_columns > .column.background--key-light .column--inside {
  background: var(--key-light);
  padding: 20px;
}
.mod_columns > .column.background--accent .column--inside {
  background: var(--accent);
  padding: 20px;
}
.mod_columns > .column.background--accent-light .column--inside {
  background: var(--accent-light);
  padding: 20px;
}
.mod_columns.margin--off {
  margin-top: -10px;
  margin-right: -10px;
  margin-bottom: -10px;
  margin-left: -10px;
}
.mod_columns.grid--enabled {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  padding: 60px 10px;
}
.mod_columns.hero--box {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -80px;
}
@media (max-width: 767px) {
  .mod_columns.hero--box {
    position: relative;
    bottom: 0;
  }
  .mod_columns.hero--box .column {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
  }
}
.mod_columns.hero--box .column:first-child > * {
  max-width: 600px;
}
@media (min-width: 576px) and (max-width: 767px) {
  .mod_columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 575px) {
  .mod_columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .mod_columns.reverse--mobile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (max-width: 575px) {
  .mod_columns.reverse--mobile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media (prefers-color-scheme: dark) {
  body .mod_columns > .column.background--gray .column--inside {
    background: var(--graydark);
  }
}
body.theme--dark .mod_columns > .column.background--gray .column--inside {
  background: var(--graydark);
}

@media (prefers-color-scheme: light) {
  body.theme--dark .mod_columns > .column.background--gray .column--inside {
    background: var(--graydark);
  }
}
*.column--text--width {
  max-width: 600px;
}

.mod_article.framed > * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
}
.mod_article.framed > *.mod_columns {
  padding: 0 10px;
}

.mod_article .align--start {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.mod_article .align--center {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.mod_article .align--end {
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
}

.mod_article .alignContent--start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.mod_article .alignContent--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mod_article .alignContent--spaceAround {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.mod_article .alignContent--spaceBetween {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.mod_article .alignContent--spaceEvenly {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.mod_article .alignContent--end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.mod_article .justify--start {
  justify-self: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.mod_article .justify--center {
  -ms-grid-column-align: center;
      justify-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mod_article .justify--end {
  justify-self: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.mod_article .justifyContent--start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.mod_article .justifyContent--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mod_article .justifyContent--spaceAround {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: space-around;
      -ms-flex-align: space-around;
          align-items: space-around;
}

.mod_article .justifyContent--spaceBetween {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
}

.mod_article .justifyContent--spaceEvenly {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: space-evenly;
      -ms-flex-align: space-evenly;
          align-items: space-evenly;
}

.mod_article .justifyContent--end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#Title .mod_article .inside {
  padding: 0;
  position: relative;
}
#Title .mod_article .inside .ce_text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  position: absolute;
  box-sizing: border-box;
  bottom: -40px;
  left: -40px;
  width: auto;
  padding-bottom: 30px;
  padding-top: 30px;
  padding-left: 60px;
  padding-right: 60px;
  border-bottom: 20px solid transparent;
  -webkit-box-shadow: 0px 10px 0px 0px var(--accent);
          box-shadow: 0px 10px 0px 0px var(--accent);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media (max-width: 767px) {
  #Title .mod_article .inside .ce_text {
    padding-left: 20px;
    bottom: 0;
    left: 0;
    position: inherit;
  }
}
#Title .mod_article .inside .ce_text > * {
  z-index: 10;
}
#Title .mod_article .inside .ce_text > *:last-child {
  margin-bottom: 0;
}
#Title .mod_article .inside .ce_text:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 0;
  background-color: var(--key);
}
#Title .mod_article .inside .ce_image {
  z-index: 0;
}
#Title .mod_article .inside .ce_image img {
  width: 100%;
}

.mod_spacer {
  display: block;
}
.mod_spacer.spacer--1 {
  height: 20px;
}
.mod_spacer.spacer--2 {
  height: 40px;
}
.mod_spacer.spacer--3 {
  height: 60px;
}
.mod_spacer.spacer--4 {
  height: 80px;
}
.mod_spacer.spacer--5 {
  height: 100px;
}
.mod_spacer.spacer--6 {
  height: 120px;
}
.mod_spacer.spacer--7 {
  height: 140px;
}
.mod_spacer.spacer--8 {
  height: 160px;
}
.mod_spacer.spacer--line {
  position: relative;
}
.mod_spacer.spacer--line:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  display: block;
  border-bottom: 1px solid #1B1C1D;
}

.download-element a {
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: var(--lightgray);
  max-width: 790px;
  padding: 20px;
  margin-bottom: 10px;
  padding-left: 60px;
}
.download-element a:before {
  content: "A";
  font-family: "Icons";
  color: var(--key);
  display: inline-block;
  margin-right: 20px;
  position: absolute;
  left: 20px;
  top: 20px;
}
.download-element a:hover {
  background: var(--key);
  color: var(--light);
  text-decoration: none;
}
.download-element a:hover:before {
  color: var(--light);
}
.download-element a .size {
  display: none;
}

@media (prefers-color-scheme: dark) {
  body .download-element a {
    background: var(--graydark);
    color: var(--darkgray);
  }
  body .download-element a:before {
    color: var(--darkgray);
  }
  body .download-element a:hover {
    color: var(--darkgray);
  }
  body .download-element a:hover:before {
    color: var(--darkgray);
  }
}
body.theme--dark .download-element a {
  background: var(--graydark);
  color: var(--darkgray);
}
body.theme--dark .download-element a:before {
  color: var(--darkgray);
}
body.theme--dark .download-element a:hover {
  color: var(--darkgray);
}
body.theme--dark .download-element a:hover:before {
  color: var(--darkgray);
}

@media (prefers-color-scheme: light) {
  body.theme--dark .download-element a {
    background: var(--graydark);
    color: var(--darkgray);
  }
  body.theme--dark .download-element a:before {
    color: var(--darkgray);
  }
  body.theme--dark .download-element a:hover {
    color: var(--darkgray);
  }
  body.theme--dark .download-element a:hover:before {
    color: var(--darkgray);
  }
}
.ce_table {
  overflow: scroll;
}
.ce_table table {
  width: 100%;
}
.ce_table table thead th {
  padding: 20px;
  background: var(--key-light);
  color: var(--light);
  font-weight: bold;
}
.ce_table table thead th:first-child {
  background: none;
}
.ce_table table tbody th {
  font-weight: bold;
  text-align: left;
}
.ce_table table tbody td {
  padding: 20px;
  width: calc(100% / 6);
}
.ce_table table tbody td:nth-child(even) {
  background: var(--lightgray);
}

.block.background--gray {
  background: var(--gray);
  padding: 20px;
}

.block.background--key {
  background: var(--key);
  padding: 20px;
}

.block.background--key-light {
  background: var(--key-light);
  padding: 20px;
}

.block.background--accent {
  background: var(--accent);
  padding: 20px;
}

.block.background--accent-light {
  background: var(--accent-light);
  padding: 20px;
}
/*# sourceMappingURL=theme.css.map */