@charset "UTF-8";
/* prettier-ignore */
/* border box for everything */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img, audio, video, embed, svg {
  max-width: 100%;
  width: auto;
  height: auto;
}

/* nanoreset */
abbr, article, aside, audio, blockquote, body, code, div, em, fieldset, footer, form, h1, h2, h3, h4, h5, h6, header, html, img, label, legend, li, nav, object, ol, p, pre, section, span, table, tbody, tfoot, thead, time, tr, ul, video {
  font-size: 100%;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  background-color: transparent;
}

iframe {
  font-size: 100%;
  font-weight: inherit;
  vertical-align: baseline;
}

iframe, small, strong, sub, sup, td, th {
  margin: 0;
  padding: 0;
  background-color: transparent;
}

small {
  border: 0;
}

small, strong {
  vertical-align: baseline;
}

small, sub, sup {
  font-weight: inherit;
}

strong, sub, sup, td, th {
  font-size: 100%;
}

body, html {
  height: 100%;
}

html {
  overflow-y: scroll;
  box-sizing: border-box;
}

*, :after, :before {
  box-sizing: inherit;
  background-repeat: no-repeat;
}

body {
  line-height: 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

audio, embed, iframe, img, object, video {
  max-width: 100%;
  height: auto;
}

iframe, strong, sub, sup, td, th {
  border: 0;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

blockquote, q {
  quotes: none;
}

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

sup {
  vertical-align: text-top;
}

input[type=radio], sub {
  vertical-align: text-bottom;
}

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

caption, td, th {
  font-weight: 400;
  text-align: left;
  vertical-align: top;
}

input, select {
  vertical-align: middle;
}

input[type=checkbox] {
  vertical-align: bottom;
}

b, strong {
  font-weight: 700;
}

small {
  font-size: 80%;
}

abbr, acronym {
  cursor: help;
  text-decoration: none;
  border-bottom: 0.1em dotted;
}

a:active, a:hover {
  outline-width: 0;
}

input {
  border-radius: 0;
}

[role=button], [type=button], [type=reset], [type=submit], button, input[type=file], label {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

button, input, select, textarea {
  margin: 0;
  text-transform: none;
  border: 0;
}

img {
  border-style: none;
}

sub, sup {
  font-size: 75%;
}

sub {
  bottom: -3px;
  position: relative;
}

hr {
  border: 0;
  height: 1px;
  display: block;
  background: #000;
  clear: both;
}

/* Transitions */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/*
┌────────────────────────────────────┐
	Variables
└────────────────────────────────────┘
*/
:root {
  --grid: 12;
  --max: 1680px;
  --maxinner: 1600px;
  --base: 100% / 12;
  --basevw: 100vw / 12;
  --pad: 10px;
  --mobilePad: 20px;
  --copyfontsize: calc(1.1rem + 0.52vw);
  --smallfontsize: calc(1.0rem + 0.52vw);
  --h1size: calc(2.8rem + 1.9vw);
  --h2size: calc(1.4rem + 1.5vw);
  --h3size: calc(1.4rem + 1.1vw);
  --h4size: calc(1rem + 0.6vw);
  --h5size: calc(0.9rem + 0.5vw);
  --col-highlight: $green;
  --blue: #0f507e;
  --bluetrans: rgba(15,80,126,.95);
  --gray: #ebebeb;
  --yellow: #ecff00;
}

@media (min-width: 1680px) {
  :root {
    --copyfontsize: 2rem;
    --smallfontsize: 1.8rem;
    --h1size: 5.8rem;
    --h2size: 4rem;
    --h3size: 3.3rem;
    --h4size: 2.2rem;
    --h5size: calc(0.9rem + 0.5vw);
  }
}
@media (max-width: 900px) {
  :root {
    --pad: 20px;
    --copyfontsize: 1.5rem;
    --smallfontsize:1.4rem;
    --h1size: 7vw;
    --h2size: 6vw;
    --h3size: 6vw;
    --h4size: 4vw;
    --h5size: calc(0.9rem + 0.5vw);
  }
}
/*
┌────────────────────────────────────┐
	Layout //// Boxes
└────────────────────────────────────┘ */
.col,
.article,
.column,
.text {
  position: relative;
  text-align: left;
  vertical-align: top;
  font-size: var(--copyfontsize);
}

.rowx {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: var(--copyfontsize);
}
.rowx > * {
  flex: 1 1 auto;
  word-break: break-word;
  hyphens: auto;
  min-width: 1%;
}

.row {
  font-size: 0;
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
}
.row > * {
  display: inline-block;
  vertical-align: top;
}

.box {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.col[class*=type-],
.ceOut {
  padding: 10vh 0;
}

[class*=cols] {
  font-size: var(--copyfontsize);
}

.padx {
  padding-left: var(--pad);
  padding-right: var(--pad);
  overflow: hidden;
}

.pady {
  padding-top: var(--pad);
  padding-bottom: var(--pad);
  overflow: hidden;
}

.pad {
  padding: var(--pad);
  overflow: hidden;
}

/*
	Old Grid
*/
.col16 {
  width: 16.66%;
}

.col20 {
  width: 20%;
}

.col25, .gridTwocol.cols75-25 > .colRight, .gridTwocol.cols25-75 > .colLeft, .count5 .col, .count4 .col {
  width: 25%;
}

.col30 {
  width: 30%;
}

.col33, .count8 .col, .count7 .col, .count6 .col, .count3 .col {
  width: 33.33%;
}

.col40, .gridTwocol.cols60-40 > .colRight, .gridTwocol.cols40-60 > .colLeft {
  width: 40%;
}

.col50, .gridTwocol.cols50-50 > .col, .count2 .col {
  width: 50%;
}

.col60, .gridTwocol.cols60-40 > .colLeft, .gridTwocol.cols40-60 > .colRight {
  width: 60%;
}

.col66 {
  width: 66.66%;
}

.col70 {
  width: 70%;
}

.col75, .gridTwocol.cols75-25 > .colLeft, .gridTwocol.cols25-75 > .colRight {
  width: 75%;
}

.col80 {
  width: 80%;
}

.col84 {
  width: 83.33%;
}

.col90 {
  width: 90%;
}

.col100, .count1 .col {
  width: 100%;
  display: block;
}

.col1 {
  width: calc(1 * var(--basep));
}

.col2 {
  width: calc(2 * var(--basep));
}

.col3 {
  width: calc(3 * var(--basep));
}

.col4 {
  width: calc(4 * var(--basep));
}

.col5 {
  width: calc(5 * var(--basep));
}

.col6 {
  width: calc(6 * var(--basep));
}

.col7 {
  width: calc(7 * var(--basep));
}

.col8 {
  width: calc(8 * var(--basep));
}

.col9 {
  width: calc(9 * var(--basep));
}

.col10 {
  width: calc(10 * var(--basep));
}

.col11 {
  width: calc(11 * var(--basep));
}

.col12 {
  width: calc(12 * var(--basep));
}

.col13 {
  width: calc(13 * var(--basep));
}

.col14 {
  width: calc(14 * var(--basep));
}

.col15 {
  width: calc(15 * var(--basep));
}

@media (min-width: 901px) and (max-width: 1024px) {
  .col16,
  .col20,
  .col25,
  .gridTwocol.cols75-25 > .colRight,
  .gridTwocol.cols25-75 > .colLeft,
  .count5 .col,
  .count4 .col,
  .col33,
  .count8 .col,
  .count7 .col,
  .count6 .col,
  .count3 .col {
    width: 50% !important;
  }
}
@media (max-width: 900px) {
  .col {
    width: 100% !important;
    margin: 0 !important;
  }
}
.ind5 {
  margin-left: 5%;
}

.ind10 {
  margin-left: 10%;
}

.ind16 {
  margin-left: 16.66%;
}

.ind20 {
  margin-left: 20%;
}

.ind25 {
  margin-left: 25%;
}

.ind30 {
  margin-left: 30%;
}

.ind33 {
  margin-left: 33.33%;
}

.ind40 {
  margin-left: 40%;
}

.ind50 {
  margin-left: 50%;
}

.ind60 {
  margin-left: 60%;
}

.ind66 {
  margin-left: 66.66%;
}

.ind70 {
  margin-left: 70%;
}

.ind75 {
  margin-left: 75%;
}

.ind80 {
  margin-left: 80%;
}

.ind90 {
  margin-left: 90%;
}

/*
	New Grid
*/
[class*=cols] {
  flex-basis: auto;
  max-width: 100%;
}

.cols1 {
  width: calc(1 * var(--base));
}

.cols2 {
  width: calc(2 * var(--base));
}

.cols3, .module_textimage .headlineLeft {
  width: calc(3 * var(--base));
}

.cols4, .module_textimage[data-layout*=colTwoWithLine] .imageItem {
  width: calc(4 * var(--base));
}

.cols5 {
  width: calc(5 * var(--base));
}

.cols6, .module_textimage[data-layout="colTwoWithLine imageBelow"] .textItem, .module_textimage[data-layout*=colTwoWithLine] .textItem, .news-list-view .article, .news-list-view [class*=articletype] {
  width: calc(6 * var(--base));
}

.cols7, .module_textimage[data-layout="colTwoWithLine imageBelow"] .imageItem {
  width: calc(7 * var(--base));
}

.cols8 {
  width: calc(8 * var(--base));
}

.cols9 {
  width: calc(9 * var(--base));
}

.cols10 {
  width: calc(10 * var(--base));
}

.cols11 {
  width: calc(11 * var(--base));
}

.cols12 {
  width: calc(12 * var(--base));
}

.cols13 {
  width: calc(13 * var(--base));
}

.cols14 {
  width: calc(14 * var(--base));
}

.cols15 {
  width: calc(15 * var(--base));
}

.cols16 {
  width: calc(16 * var(--base));
}

.cols17 {
  width: calc(17 * var(--base));
}

.cols18 {
  width: calc(18 * var(--base));
}

.cols19 {
  width: calc(19 * var(--base));
}

.cols20 {
  width: calc(20 * var(--base));
}

@media (max-width: 900px) {
  [class*=cols] {
    width: 100%;
    padding: 0 var(--mobilePad);
  }
}
.maxs1 {
  max-width: calc(1 * var(--base));
}

.maxs2 {
  max-width: calc(2 * var(--base));
}

.maxs3 {
  max-width: calc(3 * var(--base));
}

.maxs4 {
  max-width: calc(4 * var(--base));
}

.maxs5 {
  max-width: calc(5 * var(--base));
}

.maxs6 {
  max-width: calc(6 * var(--base));
}

.maxs7 {
  max-width: calc(7 * var(--base));
}

.maxs8 {
  max-width: calc(8 * var(--base));
}

.maxs9 {
  max-width: calc(9 * var(--base));
}

.maxs10 {
  max-width: calc(10 * var(--base));
}

.maxs11 {
  max-width: calc(11 * var(--base));
}

.maxs12 {
  max-width: calc(12 * var(--base));
}

.maxs13 {
  max-width: calc(13 * var(--base));
}

.maxs14 {
  max-width: calc(14 * var(--base));
}

.maxs15 {
  max-width: calc(15 * var(--base));
}

.maxs16 {
  max-width: calc(16 * var(--base));
}

.maxs17 {
  max-width: calc(17 * var(--base));
}

.maxs18 {
  max-width: calc(18 * var(--base));
}

.maxs19 {
  max-width: calc(19 * var(--base));
}

.maxs20 {
  max-width: calc(20 * var(--base));
}

@media (max-width: 900px) {
  main [class*=max] {
    max-width: none;
  }
}
.inds1, .content .layoutEmpty, .module_textimage[data-layout=textLeftOnImage] .imageItem, .module_textimage .headlineLeft {
  margin-left: calc(1 * var(--base));
}

.indsp1 {
  padding-left: calc(1 * var(--base));
}

.inds2 {
  margin-left: calc(2 * var(--base));
}

.indsp2 {
  padding-left: calc(2 * var(--base));
}

.inds3, .module_verticalgraph, .module_textimage[data-layout="colTwoWithLine imageBelow"] .imageItem {
  margin-left: calc(3 * var(--base));
}

.indsp3 {
  padding-left: calc(3 * var(--base));
}

.inds4, .module_textimage[data-layout="colTwoWithLine imageBelow"] .textItem, .news-list-view .article, .news-list-view [class*=articletype] {
  margin-left: calc(4 * var(--base));
}

.indsp4, .content .type-textmedia.layoutEmpty {
  padding-left: calc(4 * var(--base));
}

.inds5 {
  margin-left: calc(5 * var(--base));
}

.indsp5 {
  padding-left: calc(5 * var(--base));
}

.inds6 {
  margin-left: calc(6 * var(--base));
}

.inds7 {
  margin-left: calc(7 * var(--base));
}

.inds8 {
  margin-left: calc(8 * var(--base));
}

@media (max-width: 900px) {
  main [class*=inds] {
    margin-left: 0;
  }
}
.ends1, .content .type-textmedia.layoutEmpty, .module_textimage[data-layout=textRightOnImage] .imageItem {
  margin-right: calc(1 * var(--base));
}

.ends2, .module_textimage[data-layout="colTwoWithLine imageBelow"] .textItem, .module_textimage[data-layout="colTwoWithLine imageBelow"] .imageItem, .module_textimage[data-layout*=colTwoWithLine] .textItem {
  margin-right: calc(2 * var(--base));
}

.ends3 {
  margin-right: calc(3 * var(--base));
}

.ends4 {
  margin-right: calc(4 * var(--base));
}

.ends5 {
  margin-right: calc(5 * var(--base));
}

.ends6 {
  margin-right: calc(6 * var(--base));
}

.ends7 {
  margin-right: calc(7 * var(--base));
}

.ends8 {
  margin-right: calc(8 * var(--base));
}

@media (max-width: 900px) {
  [class*=ends] {
    margin-right: 0;
  }
}
@supports (width: 100vw) {
  .col100vw,
  .breakout {
    width: 100vw;
    display: block;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}
.layoutGrid {
  display: none;
  pointer-events: none;
  z-index: 10000;
  height: 100vh;
  position: fixed !important;
  width: 100%;
  top: 0;
  opacity: 0.25;
  max-width: var(--max);
  left: 50%;
  transform: translateX(-50%);
}
.layoutGrid > * {
  box-shadow: 1px 1px 2px #00ffcd;
  height: 100%;
}
.layoutGrid > *:nth-child(1), .layoutGrid *:last-child {
  background: rgba(21, 28, 53, 0.76);
}

.jumplinks {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 300px;
  z-index: 2000;
}
.jumplinks a {
  opacity: 1;
  height: 0;
  line-height: 0px;
  display: block;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  background: #ff7e7e;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
.jumplinks a:focus {
  opacity: 1;
  height: auto;
  line-height: 2.5;
  outline: none;
  padding: 5px 20px;
}

body.highcontrast > header,
body.highcontrast > footer,
body.highcontrast > main {
  filter: invert(100%) hue-rotate(180deg) !important;
}
body.highcontrast > header img,
body.highcontrast > header video,
body.highcontrast > header :not(object):not(body) > embed,
body.highcontrast > header object,
body.highcontrast > header svg image,
body.highcontrast > header [style*="background:url"],
body.highcontrast > header [style*="background-image:url"],
body.highcontrast > header [style*="background: url"],
body.highcontrast > header [style*="background-image: url"],
body.highcontrast > header [background],
body.highcontrast > footer img,
body.highcontrast > footer video,
body.highcontrast > footer :not(object):not(body) > embed,
body.highcontrast > footer object,
body.highcontrast > footer svg image,
body.highcontrast > footer [style*="background:url"],
body.highcontrast > footer [style*="background-image:url"],
body.highcontrast > footer [style*="background: url"],
body.highcontrast > footer [style*="background-image: url"],
body.highcontrast > footer [background],
body.highcontrast > main img,
body.highcontrast > main video,
body.highcontrast > main :not(object):not(body) > embed,
body.highcontrast > main object,
body.highcontrast > main svg image,
body.highcontrast > main [style*="background:url"],
body.highcontrast > main [style*="background-image:url"],
body.highcontrast > main [style*="background: url"],
body.highcontrast > main [style*="background-image: url"],
body.highcontrast > main [background] {
  filter: invert(100%) hue-rotate(180deg) !important;
}
body.highcontrast .parallaxImage img.loaded {
  opacity: 0.2;
}

/*
	Basic Tabindex Focus Styles
*/
header .meta > a:focus,
header button:focus,
main .meta > a:focus,
main button:focus,
footer .meta > a:focus,
footer button:focus {
  outline: 2px solid #00ffd0 !important;
}
header a > button:focus,
main a > button:focus,
footer a > button:focus {
  outline: none !important;
}

html.bigfont {
  font-size: 16px;
}

nav.main a:focus {
  outline: none;
  border: 0 none;
  background: rgba(221, 221, 221, 0.29);
}

body {
  font: 400 1.6rem/1.6 "proxima", sans-serif;
}

@font-face {
  font-family: "boton";
  src: url("../Fonts/boton-webfont.woff2") format("woff2"), url("../Fonts/boton-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lato", sans-serif;
  src: url("../Fonts/Lato-Regular.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat", sans-serif;
  src: url("../Fonts/Montserrat-Regular.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}
/*PROXIMA NOVA FONTS*/
@font-face {
  font-family: "proxima";
  font-style: normal;
  font-weight: 400;
  src: local("Proxima Nova Regular"), url("../Fonts/proximanova/ProximaNova-Regular.woff") format("woff");
}
@font-face {
  font-family: "proxima";
  font-style: normal;
  font-weight: 300;
  src: local("Proxima Nova Thin"), url("../Fonts/proximanova/ProximaNovaT-Thin.woff") format("woff");
}
@font-face {
  font-family: "proxima";
  font-style: normal;
  font-weight: 200;
  src: local("Proxima Nova Light"), url("../Fonts/proximanova/ProximaNova-Light.woff") format("woff");
}
@font-face {
  font-family: "proxima";
  font-style: normal;
  font-weight: 500;
  src: local("Proxima Nova Semibold"), url("../Fonts/proximanova/ProximaNova-Semibold.woff") format("woff");
}
@font-face {
  font-family: "proxima";
  font-style: normal;
  font-weight: 600;
  src: local("Proxima Nova Bold"), url("../Fonts/proximanova/ProximaNova-Bold.woff") format("woff");
}
@font-face {
  font-family: "proxima";
  font-style: normal;
  font-weight: 700;
  src: local("Proxima Nova Extrabold"), url("../Fonts/proximanova/ProximaNova-Extrabld.woff") format("woff");
}
@font-face {
  font-family: "proxima";
  font-style: normal;
  font-weight: 800;
  src: local("Proxima Nova Black"), url("../Fonts/proximanova/ProximaNova-Black.woff") format("woff");
}
/*ALEO FONTS*/
/* #### Generated By: http://www.cufonfonts.com #### */
@font-face {
  font-family: "Aleo Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Aleo Regular"), url("../Fonts/aleo/Aleo-Regular.woff") format("woff");
}
@font-face {
  font-family: "Aleo Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Aleo Italic"), url("../Fonts/aleo/Aleo-Italic.woff") format("woff");
}
@font-face {
  font-family: "Aleo Light";
  font-style: normal;
  font-weight: normal;
  src: local("Aleo Light"), url("../Fonts/aleo/Aleo-Light.woff") format("woff");
}
@font-face {
  font-family: "Aleo Light Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Aleo Light Italic"), url("../Fonts/aleo/Aleo-LightItalic.woff") format("woff");
}
@font-face {
  font-family: "Aleo Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Aleo Bold"), url("../Fonts/aleo/Aleo-Bold.woff") format("woff");
}
@font-face {
  font-family: "Aleo Bold Italic";
  font-style: normal;
  font-weight: normal;
  src: local("Aleo Bold Italic"), url("../Fonts/aleo/Aleo-BoldItalic.woff") format("woff");
}
/*
	Hamburger
*/
.hamburger {
  display: none;
  cursor: pointer;
  position: fixed;
  z-index: 10000;
  top: 20px;
  right: 38px;
  padding: 10px;
  overflow: hidden;
  margin: 0 0 0 0px;
  padding: 0;
  width: 40px;
  height: 50px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 1024px) {
  .hamburger {
    display: block;
    top: 4px;
    right: 10px;
  }
}
.hamburger::before, .hamburger::after {
  content: "";
  position: absolute;
  background-color: #0f507e;
  left: 20%;
  right: 20%;
  top: 50%;
  margin-top: 10px;
  height: 2px;
  display: block;
  opacity: 1;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.hamburger:before {
  margin-top: -8px;
}
.hamburger:after {
  margin-top: 6px;
}
.hamburger span {
  background: transparent;
  width: 1px;
  overflow: hidden;
  display: block;
}
.hamburger span::before, .hamburger span::after {
  content: "";
  position: absolute;
  background-color: #0f507e;
  width: 60%;
  left: 20%;
  top: 50%;
  margin-top: -1px;
  height: 2px;
  display: block;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

body.showMenu .hamburger::before, body.showMenu .hamburger::after {
  opacity: 0;
  left: 50%;
  right: 50%;
}
body.showMenu .hamburger span::before {
  transform: rotate(45deg);
}
body.showMenu .hamburger span::after {
  transform: rotate(-45deg);
}

body.showMenu .hamburger::before, body.showMenu .hamburger::after, body.showMenu .hamburger span:before, body.showMenu .hamburger span:after, header:hover .hamburger::before, header:hover .hamburger::after, header:hover .hamburger span:before, header:hover .hamburger span:after {
  background-color: #0f507e;
}

aside {
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  height: 0px;
  width: 100%;
  z-index: 800;
  overflow: hidden;
  color: #fff;
}
aside .asideSocials {
  height: 100%;
  background-color: #000;
}
aside .asideMenu {
  height: 100%;
  background-color: #000;
}

body.showAside > aside {
  height: 100%;
}

/*
┌────────────────────────────────────┐
	Header
└────────────────────────────────────┘ */
body > header {
  -webkit-transition: top 0.6s ease-in-out, right 0.6s ease-in-out, bottom 0.6s ease-in-out, left 0.6s ease-in-out;
  -moz-transition: top 0.6s ease-in-out, right 0.6s ease-in-out, bottom 0.6s ease-in-out, left 0.6s ease-in-out;
  -ms-transition: top 0.6s ease-in-out, right 0.6s ease-in-out, bottom 0.6s ease-in-out, left 0.6s ease-in-out;
  -o-transition: top 0.6s ease-in-out, right 0.6s ease-in-out, bottom 0.6s ease-in-out, left 0.6s ease-in-out;
  transition: top 0.6s ease-in-out, right 0.6s ease-in-out, bottom 0.6s ease-in-out, left 0.6s ease-in-out;
  -webkit-transition-timing-function: ease-in-out !important;
  transition-timing-function: ease-in-out !important;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  margin: 0 0px;
  text-align: left;
  position: fixed;
  width: 100%;
  z-index: 900;
  top: 7vh;
  box-shadow: 0 0 0 #fff;
}
@media (max-width: 1680px) {
  body > header {
    width: auto;
    left: calc(0.5 * var(--base));
    right: calc(0.5 * var(--base));
  }
}
body > header .box {
  background: rgb(255, 255, 255);
  padding: 0px 0px;
  position: relative;
}
body > header .logo {
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
@media (max-width: 1680px) {
  body > header .logo {
    margin-left: calc(0.5 * var(--base)) !important;
  }
}
body > header .logo {
  -webkit-transition-timing-function: ease-in-out !important;
  transition-timing-function: ease-in-out !important;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  height: 100px;
  padding: 20px 0;
  display: inline-block;
}
@media (max-width: 1024px) {
  body > header .logo {
    height: 60px;
    max-width: 120px;
    padding: 7px 20px;
    margin-left: 0 !important;
    text-align: left;
  }
}
body > header .logo a {
  display: block;
  height: 230px;
  height: 100%;
  margin: 0;
  text-decoration: none;
}
body > header .logo svg {
  width: auto;
  height: 100%;
  max-width: 110px;
}
body > header #logoSvg {
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
body > header a:hover {
  border: 0;
}
body > header a:hover #line2 {
  fill: red;
}
body > header .langMenu {
  display: none;
  float: right;
  padding: 10px;
}
@media (max-width: 1024px) {
  body > header {
    height: 60px;
    padding: 0px 0px;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    overflow: hidden;
  }
}

@media (min-width: 900px) {
  body.scrolledLittle > header {
    background: #fff;
  }
  body.scrolledLittle > header .logo {
    height: 25px;
  }
}
body.headerShrinked > header {
  top: 0;
  background: #fff;
  box-shadow: 0 0 7px rgba(11, 44, 69, 0.18);
}
@media (max-width: 1680px) {
  body.headerShrinked > header {
    left: 0;
    right: 0;
  }
}
@media (max-width: 1680px) {
  body.headerShrinked > header .logo {
    margin-left: calc(1 * var(--base)) !important;
  }
}
@media (max-width: 1024px) {
  body.headerShrinked > header .logo {
    margin-left: 0 !important;
  }
}

body.showMenu > header {
  height: 100%;
  background-color: #ddd;
}
@media (max-width: 1024px) {
  body.showMenu > header {
    background: #fff;
  }
  body.showMenu > header .logo {
    opacity: 0;
    pointer-events: none;
  }
}

/*
┌────────────────────────────────────┐
	Footer
└────────────────────────────────────┘ */
footer {
  text-align: left;
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 0;
  padding: 5vh 0 2vh;
  background: rgb(10, 41, 64);
  background: -moz-linear-gradient(90deg, rgb(10, 41, 64) 0%, rgb(15, 80, 126) 100%);
  background: -webkit-linear-gradient(90deg, rgb(10, 41, 64) 0%, rgb(15, 80, 126) 100%);
  background: linear-gradient(90deg, rgb(10, 41, 64) 0%, rgb(15, 80, 126) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0a2940",endColorstr="#0f507e",GradientType=1);
}
footer .rowx {
  justify-content: flex-start;
}
footer .rowx > * {
  flex: 0 1 auto;
}
footer .ceOut, footer .inds1.cols6, footer .content .cols6.layoutEmpty, .content footer .cols6.layoutEmpty, footer .module_textimage[data-layout="colTwoWithLine imageBelow"] .inds1.textItem, footer .module_textimage[data-layout="colTwoWithLine imageBelow"] .content .textItem.layoutEmpty, .content footer .module_textimage[data-layout="colTwoWithLine imageBelow"] .textItem.layoutEmpty, .module_textimage[data-layout="colTwoWithLine imageBelow"] footer .inds1.textItem, .module_textimage[data-layout="colTwoWithLine imageBelow"] footer .content .textItem.layoutEmpty, .content .module_textimage[data-layout="colTwoWithLine imageBelow"] footer .textItem.layoutEmpty, footer .module_textimage[data-layout*=colTwoWithLine] .inds1.textItem, footer .module_textimage[data-layout*=colTwoWithLine] .content .textItem.layoutEmpty, .content footer .module_textimage[data-layout*=colTwoWithLine] .textItem.layoutEmpty, .module_textimage[data-layout*=colTwoWithLine] footer .inds1.textItem, .module_textimage[data-layout*=colTwoWithLine] footer .content .textItem.layoutEmpty, .content .module_textimage[data-layout*=colTwoWithLine] footer .textItem.layoutEmpty, footer .module_textimage[data-layout=textLeftOnImage] .cols6.imageItem, footer .module_textimage[data-layout=textLeftOnImage] .module_textimage[data-layout="colTwoWithLine imageBelow"] .imageItem.textItem, .module_textimage[data-layout="colTwoWithLine imageBelow"] footer .module_textimage[data-layout=textLeftOnImage] .imageItem.textItem, footer .module_textimage[data-layout=textLeftOnImage] .module_textimage[data-layout*=colTwoWithLine] .imageItem.textItem, .module_textimage[data-layout*=colTwoWithLine] footer .module_textimage[data-layout=textLeftOnImage] .imageItem.textItem, .module_textimage[data-layout=textLeftOnImage] footer .cols6.imageItem, .module_textimage[data-layout=textLeftOnImage] footer .module_textimage[data-layout="colTwoWithLine imageBelow"] .imageItem.textItem, .module_textimage[data-layout="colTwoWithLine imageBelow"] .module_textimage[data-layout=textLeftOnImage] footer .imageItem.textItem, .module_textimage[data-layout=textLeftOnImage] footer .module_textimage[data-layout*=colTwoWithLine] .imageItem.textItem, .module_textimage[data-layout*=colTwoWithLine] .module_textimage[data-layout=textLeftOnImage] footer .imageItem.textItem, footer .module_textimage .cols6.headlineLeft, footer .module_textimage[data-layout="colTwoWithLine imageBelow"] .headlineLeft.textItem, footer .module_textimage[data-layout*=colTwoWithLine] .headlineLeft.textItem, .module_textimage footer .cols6.headlineLeft, .module_textimage[data-layout="colTwoWithLine imageBelow"] footer .headlineLeft.textItem, .module_textimage[data-layout*=colTwoWithLine] footer .headlineLeft.textItem, footer .news-list-view .inds1.article, footer .news-list-view .content .article.layoutEmpty, .content footer .news-list-view .article.layoutEmpty, footer .news-list-view .module_textimage[data-layout=textLeftOnImage] .article.imageItem, .module_textimage[data-layout=textLeftOnImage] footer .news-list-view .article.imageItem, footer .news-list-view .module_textimage .article.headlineLeft, .module_textimage footer .news-list-view .article.headlineLeft, .news-list-view footer .inds1.article, .news-list-view footer .content .article.layoutEmpty, .content .news-list-view footer .article.layoutEmpty, .news-list-view footer .module_textimage[data-layout=textLeftOnImage] .article.imageItem, .module_textimage[data-layout=textLeftOnImage] .news-list-view footer .article.imageItem, .news-list-view footer .module_textimage .article.headlineLeft, .module_textimage .news-list-view footer .article.headlineLeft, footer .news-list-view .inds1[class*=articletype], footer .news-list-view .content [class*=articletype].layoutEmpty, .content footer .news-list-view [class*=articletype].layoutEmpty, footer .news-list-view .module_textimage[data-layout=textLeftOnImage] [class*=articletype].imageItem, .module_textimage[data-layout=textLeftOnImage] footer .news-list-view [class*=articletype].imageItem, footer .news-list-view .module_textimage [class*=articletype].headlineLeft, .module_textimage footer .news-list-view [class*=articletype].headlineLeft, .news-list-view footer .inds1[class*=articletype], .news-list-view footer .content [class*=articletype].layoutEmpty, .content .news-list-view footer [class*=articletype].layoutEmpty, .news-list-view footer .module_textimage[data-layout=textLeftOnImage] [class*=articletype].imageItem, .module_textimage[data-layout=textLeftOnImage] .news-list-view footer [class*=articletype].imageItem, .news-list-view footer .module_textimage [class*=articletype].headlineLeft, .module_textimage .news-list-view footer [class*=articletype].headlineLeft {
  padding: var(--pad) 0 !important;
}
footer ul {
  padding: 0;
}
footer p {
  margin: 0.5em 0;
}
footer p, footer a, footer .copyright {
  font-size: var(--smallfontsize);
}
footer .copyright {
  padding-top: 14px;
}
footer * {
  color: #fff;
  text-decoration: none;
  font-style: normal;
}
footer .footercontent {
  padding-bottom: 3vh;
}
footer .legal {
  text-align: left;
  display: inline-block;
}
footer nav li {
  display: inline-block;
  list-style: none;
  margin: 0;
}
footer nav li a {
  padding: 0 16px;
  margin-left: -16px;
}
@media (max-width: 900px) {
  footer {
    height: auto;
    position: relative;
    padding: 6vh var(--mobilePad);
  }
  footer .cols2 {
    max-width: 50%;
  }
  footer .footercontent {
    padding-bottom: 0vh;
  }
  footer .copyright {
    padding: 0;
  }
}

footer a[href*=tel] {
  padding: 4px 0 4px 37px;
  background: transparent url("/typo3conf/ext/mk7base/Resources/Public/Img/icon_phone.svg") no-repeat left center/17px auto;
}
footer a[href*="mailto:"], footer a[href*=UnCryptMailto] {
  padding: 4px 0 4px 37px;
  background: transparent url("/typo3conf/ext/mk7base/Resources/Public/Img/icon_mail.svg") no-repeat left center/21px auto;
}

footer .social {
  display: inline-block;
  margin-right: 20px;
}
footer .social a {
  display: inline-block;
  width: 28px;
  height: 30px;
  margin-right: 14px;
  text-indent: 51px;
  overflow: hidden;
}
footer .social a.linkedin {
  background: transparent url("/typo3conf/ext/mk7base/Resources/Public/Img/icon_li.svg") no-repeat center center/contain;
}
footer .social a.xing {
  background: transparent url("/typo3conf/ext/mk7base/Resources/Public/Img/icon_xi.svg") no-repeat center center/contain;
}

/*
┌────────────────────────────────────┐
	Navigation
└────────────────────────────────────┘ */
@media (min-width: 1025px) {
  header nav {
    text-align: right;
    display: inline-block;
    vertical-align: top;
  }
  header nav ul {
    text-align: left;
    margin: 0;
  }
  header nav li {
    padding: 0px;
    display: inline-block;
  }
  header nav li a {
    text-decoration: none;
    display: block;
    padding: 0px 34px;
    font-weight: 400;
  }
  header nav .navOne {
    padding: 0px 0 0;
  }
  header nav a.level1 {
    line-height: 100px;
    font-family: "proxima", sans-serif;
    font-weight: 600;
    padding: 0 17px;
    position: relative;
  }
  header nav li.level1:nth-child(1) > a, header nav li.level1:nth-child(2) > a, header nav li.level1:nth-child(300) > a {
    pointer-events: none;
  }
  header nav li.level1 a.level1:after {
    content: "";
    right: 40px;
    height: 2px;
    background: #0f507e;
    position: absolute;
    top: 65%;
    left: 40px;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  header nav li.level1:hover a.level1:after, header nav li.level1.act a.level1:after, header nav li.level1.cur a.level1:after {
    left: 35px;
    right: 35px;
    opacity: 1;
  }
  header nav a.level2 {
    line-height: 2;
    padding-top: 10px;
    padding-bottom: 5px;
    position: relative;
    font-family: "boton", sans-serif;
    font-size: 3.6rem;
  }
  header nav a.level3 {
    color: #fff;
    line-height: 2;
    position: relative;
    font-family: "proxima", sans-serif;
    font-weight: 600;
    font-size: var(--copyfontsize);
  }
  header nav li.level1 ul.level2 {
    padding-bottom: 0;
    background: transparent;
  }
  header nav li.level1 ul.level2 li.level2 {
    padding: 0 0 20px 0;
  }
  header nav li.level1 a.level2 {
    pointer-events: none;
  }
  header nav a.level2,
  header nav a.level3 {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  header nav a.level2:hover,
  header nav a.level3:hover {
    color: #fff;
    background: rgba(11, 42, 65, 0.5);
  }
  header nav ul.level1 {
    display: inline-block;
  }
  header nav ul.level2 {
    opacity: 0; /* height: 1px; overflow: hidden;  */
    position: absolute;
    pointer-events: none;
    top: 100%;
    right: 0;
    left: calc(2 * var(--base));
    padding: 0px 0;
    background: var(--bluetrans);
    display: flex;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  header nav ul.level2 a.level2 {
    display: block;
    white-space: nowrap;
    color: #fff;
  }
  header nav ul.level3 {
    padding-bottom: 20px;
  }
  header nav li.level1.focus + ul.level2,
  header nav li.level1.focus ul.level2, header nav li.level1:hover + ul.level2,
  header nav li.level1:hover ul.level2, header nav li.level1:focus + ul.level2,
  header nav li.level1:focus ul.level2,
  header nav li.level1 > a:hover + ul.level2,
  header nav li.level1 > a:hover ul.level2,
  header nav li.level1 > a:focus + ul.level2,
  header nav li.level1 > a:focus ul.level2, header nav li.level1:focus-within + ul.level2,
  header nav li.level1:focus-within ul.level2 {
    opacity: 1;
    top: 100%;
    height: auto;
    pointer-events: all;
  }
  header nav li.level2 {
    width: 50%;
    vertical-align: top;
    background: var(--bluetrans);
    flex: 1 1 auto;
  }
  header nav li.level2:first-child {
    margin-right: 1px;
  }
  header nav li.level3 {
    display: block;
  }
}
@media (max-width: 1024px) {
  body > header .box {
    height: 100%;
  }
  header nav {
    display: block;
    padding: 0px !important;
    margin: 0 !important;
    float: none;
    text-align: left;
    overflow: hidden;
  }
  header nav ul {
    padding: 0;
    display: block;
  }
  header nav li {
    padding: 0px;
    display: block;
    margin: 0;
  }
  header nav li.hassub a.level1 {
    position: relative;
  }
  header nav li.hassub a.level1:after {
    content: "";
    background: transparent url("/typo3conf/ext/mk7base/Resources/Public/Img/arrow_submenu.svg") no-repeat center center/18px 18px;
    position: absolute;
    right: 17px;
    bottom: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    -webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    -ms-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
  }
  header nav li.hassub:hover a.level1:after {
    background: transparent url("/typo3conf/ext/mk7base/Resources/Public/Img/arrow_submenu_down_white.svg") no-repeat top center/18px 18px;
  }
  header nav a {
    font-size: 4.8vw;
    line-height: 1.3;
    padding-top: 4vh;
    padding-bottom: 2vh;
    font-weight: 500;
    padding: 0 20px;
    text-decoration: none;
    line-height: 8vh;
    display: block;
  }
  header nav ul.level2 {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    transition-timing-function: cubic-bezier(0.42, 0, 0, 0.99);
  }
  header nav ul.level1 li.level1:nth-child(1) > a, header nav ul.level1 li.level1:nth-child(2) > a, header nav ul.level1 li.level1:nth-child(3) > a {
    pointer-events: none;
  }
  header nav ul.level1 li.level1:nth-child(1):hover, header nav ul.level1 li.level1:nth-child(2):hover, header nav ul.level1 li.level1:nth-child(3):hover {
    background: #0f507e;
  }
  header nav ul.level1 li.level1:nth-child(1):hover a, header nav ul.level1 li.level1:nth-child(2):hover a, header nav ul.level1 li.level1:nth-child(3):hover a {
    color: #fff;
  }
  header nav ul.level1 li.level1:nth-child(1):hover ul.level2, header nav ul.level1 li.level1:nth-child(2):hover ul.level2, header nav ul.level1 li.level1:nth-child(3):hover ul.level2 {
    visibility: visible;
    opacity: 1;
    height: auto;
    max-height: 19vh;
  }
  header nav ul.level1 li.level1:nth-child(1):hover ul.level2:before, header nav ul.level1 li.level1:nth-child(2):hover ul.level2:before, header nav ul.level1 li.level1:nth-child(3):hover ul.level2:before {
    content: "";
    position: absolute;
    left: -50px;
    top: -50px;
    z-index: 0;
    width: 50px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.3);
  }
  header nav li.level2 {
    flex: 1 1 100%;
    padding: 0;
  }
  header nav li.level2 a.level2 {
    pointer-events: none;
  }
  header nav ul.level3 {
    position: absolute;
    top: 50px !important;
    left: 100vw;
    width: 100vw;
    background-color: #0f507e;
    max-height: calc(100vh - 100px);
    overflow: auto;
    right: -2px !important;
    opacity: 0;
    flex-wrap: wrap;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    transition-timing-function: cubic-bezier(0.42, 0, 0, 0.99);
  }
  header nav ul.level3 a.level3 {
    color: #fff;
    pointer-events: none;
    display: none;
  }
  header nav li.level2:hover ul.level3 {
    height: 100vh;
    width: 100%;
    display: block;
    opacity: 1;
    left: 0;
  }
  header nav li.level2:hover ul.level3 a {
    pointer-events: all;
    display: block;
  }
  header nav li.level2:hover ul.level3:before {
    content: "";
    position: fixed;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    background: #0f507e url("/typo3conf/ext/mk7base/Resources/Public/Img/arrow_small_left_white.svg") no-repeat left 19px center/auto 15px;
    height: 50px;
    z-index: 100000;
  }
}
.contentSub a {
  display: block;
  padding-left: 20px;
  margin-left: -20px;
}
.contentSub a:hover {
  background: rgba(11, 42, 65, 0.5);
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  header nav.main {
    min-width: 100%;
  }
  header nav.main ul.level1 {
    padding-top: 80px;
  }
  header nav.main a {
    font-size: 3vw;
  }
}
/*! Flickity v2.2.1 https://flickity.metafizzy.co ---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (max-width: 900px) {
  .flickity-slider {
    height: auto;
  }
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: #fff;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19f;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto; /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%; /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}
@media (max-width: 900px) {
  .flickity-prev-next-button.previous {
    left: -15px;
  }
}

.flickity-prev-next-button.next {
  right: 10px;
}
@media (max-width: 900px) {
  .flickity-prev-next-button.next {
    right: -15px;
  }
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/*
	Dots
*/
.flickity-page-dots {
  bottom: 0;
  padding: 20px 0;
  margin: 0;
}
.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  padding: 7px;
  margin: 0 10px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

/*
	Dots as Squares
*/
main .flickity-page-dots .dot {
  border-radius: 0;
  width: 8vw;
  height: 15px;
  padding: 0;
  margin: 0 2px;
  background: transparent;
  position: relative;
}
main .flickity-page-dots .dot:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 3px;
  right: 3px;
  height: 4px;
  background: var(--col-highlight);
}
main .flickity-page-dots .dot:before.is-selected:before {
  background: #ddd;
}

/*
	Timer
*/
.flickTimer {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  height: 3px;
  background: #fff;
  z-index: 10000;
}
.flickTimer .progressBar {
  height: 100%;
  position: absolute;
  left: 0;
  background: #000;
  opacity: 0.8;
}

/*
	Big Buttons
*/
.flickity-button.flickity-prev-next-button {
  background: transparent;
  height: 100%;
  border-radius: 0;
  width: 50%;
}
.flickity-button.flickity-prev-next-button svg {
  display: none;
}
.flickity-button.flickity-prev-next-button:hover, .flickity-button.flickity-prev-next-button:focus {
  outline: none;
}
.flickity-button.flickity-prev-next-button.previous {
  right: auto;
  left: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.flickity-button.flickity-prev-next-button.previous:hover {
  cursor: url(../Img/arrow-prev.svg) 50 50, auto;
}
.flickity-button.flickity-prev-next-button.next {
  right: 0;
}
.flickity-button.flickity-prev-next-button.next:hover {
  cursor: url(../Img/arrow-next.svg) 50 50, auto;
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  height: 100%;
  left: 0;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-bg, .fancybox-inner, .fancybox-outer, .fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-caption, .fancybox-infobar, .fancybox-navigation .fancybox-button, .fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s, visibility 0s linear 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-caption .fancybox-caption, .fancybox-show-infobar .fancybox-infobar, .fancybox-show-nav .fancybox-navigation .fancybox-button, .fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  transition: opacity 0.25s, visibility 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  text-align: center;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide:before {
  content: "";
  display: inline-block;
  height: 100%;
  margin-right: -0.25em;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide, .fancybox-slide--current, .fancybox-slide--next, .fancybox-slide--previous {
  display: block;
}

.fancybox-slide--next {
  z-index: 99995;
}

.fancybox-slide--image {
  overflow: visible;
  padding: 44px 0;
}

.fancybox-slide--image:before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px 6px 0;
}

.fancybox-slide--iframe {
  padding: 44px 44px 0;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0 0 6px;
  max-width: 100%;
  overflow: auto;
  padding: 0;
  padding: 24px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  margin: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-drag .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-dragging .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image, .fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--html .fancybox-content {
  margin-bottom: 6px;
}

.fancybox-slide--iframe .fancybox-content, .fancybox-slide--map .fancybox-content, .fancybox-slide--video .fancybox-content {
  height: 100%;
  margin: 0;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
  height: calc(100% - 44px);
  margin-bottom: 44px;
}

.fancybox-iframe, .fancybox-video {
  background: transparent;
  border: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  vertical-align: top;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  outline: none;
  padding: 10px;
  transition: color 0.2s;
  vertical-align: top;
  width: 44px;
}

.fancybox-button, .fancybox-button:link, .fancybox-button:visited {
  color: #ccc;
}

.fancybox-button:focus, .fancybox-button:hover {
  color: #fff;
}

.fancybox-button.disabled, .fancybox-button.disabled:hover, .fancybox-button[disabled], .fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
}

.fancybox-button svg {
  display: block;
  overflow: visible;
  position: relative;
  shape-rendering: geometricPrecision;
}

.fancybox-button svg path {
  fill: transparent;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 3;
}

.fancybox-button--pause svg path:nth-child(1), .fancybox-button--play svg path:nth-child(2) {
  display: none;
}

.fancybox-button--play svg path, .fancybox-button--share svg path, .fancybox-button--thumbs svg path {
  fill: currentColor;
}

.fancybox-button--share svg path {
  stroke-width: 1;
}

.fancybox-navigation .fancybox-button {
  height: 38px;
  opacity: 0;
  padding: 6px;
  position: absolute;
  top: 50%;
  width: 38px;
}

.fancybox-show-nav .fancybox-navigation .fancybox-button {
  transition: opacity 0.25s, visibility 0s, color 0.25s;
}

.fancybox-navigation .fancybox-button:after {
  content: "";
  left: -25px;
  padding: 50px;
  position: absolute;
  top: -25px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  right: 6px;
}

.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #555;
  cursor: pointer;
  height: 44px;
  margin: 0;
  padding: 6px;
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  z-index: 10;
}

.fancybox-close-small svg {
  fill: transparent;
  opacity: 0.8;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: stroke 0.1s;
}

.fancybox-close-small:focus {
  outline: none;
}

.fancybox-close-small:hover svg {
  opacity: 1;
}

.fancybox-slide--iframe .fancybox-close-small, .fancybox-slide--image .fancybox-close-small, .fancybox-slide--video .fancybox-close-small {
  color: #ccc;
  padding: 5px;
  right: -12px;
  top: -44px;
}

.fancybox-slide--iframe .fancybox-close-small:hover svg, .fancybox-slide--image .fancybox-close-small:hover svg, .fancybox-slide--video .fancybox-close-small:hover svg {
  background: transparent;
  color: #fff;
}

.fancybox-is-scaling .fancybox-close-small, .fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
  display: none;
}

.fancybox-caption {
  bottom: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 25px 44px;
  right: 0;
}

.fancybox-caption:before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAEtCAQAAABjBcL7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHRJREFUKM+Vk8EOgDAIQ0vj/3+xBw8qIZZueFnIKC90MCAI8DlrkHGeqqGIU6lVigrBtpCWqeRWoHDNqs0F7VNVBVxmHRlvoVqjaYkdnDIaivH2HqZ5+oZj3JUzWB+cOz4G48Bg+tsJ/tqu4dLC/4Xb+0GcF5BwBC0AA53qAAAAAElFTkSuQmCC);
  background-repeat: repeat-x;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -25px;
  z-index: -1;
}

.fancybox-caption:after {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.3);
  content: "";
  display: block;
  left: 44px;
  position: absolute;
  right: 44px;
  top: 0;
}

.fancybox-caption a, .fancybox-caption a:link, .fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

.fancybox-loading {
  -webkit-animation: a 0.8s infinite linear;
  animation: a 0.8s infinite linear;
  background: transparent;
  border: 6px solid hsla(0, 0%, 39%, 0.5);
  border-radius: 100%;
  border-top-color: #fff;
  height: 60px;
  left: 50%;
  margin: -30px 0 0 -30px;
  opacity: 0.6;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 60px;
  z-index: 99999;
}

@-webkit-keyframes a {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes a {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.fancybox-fx-fade.fancybox-slide--next, .fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-1turn);
  transform: rotate(-1turn);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(1turn);
  transform: rotate(1turn);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scaleX(1) translateZ(0);
  transform: scaleX(1) translateZ(0);
}

.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translateZ(0) scale(1);
  transform: translateZ(0) scale(1);
}

.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:link, .fancybox-share__button:visited {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

.fancybox-thumbs {
  background: #fff;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs > ul {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x > ul {
  overflow: hidden;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs > ul > li {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1);
}

.fancybox-thumbs > ul > li {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.fancybox-thumbs > ul > li:before {
  border: 4px solid #4ea7f9;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs .fancybox-thumbs-active:before {
  opacity: 1;
}

@media (max-width: 800px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs > ul > li {
    max-width: calc(100% - 10px);
  }
}
/*! locomotive-scroll v4.0.6 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

[data-scroll-direction=horizontal] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}

[data-scroll-direction=horizontal] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover,
.has-scroll-dragging .c-scrollbar,
.has-scroll-scrolling .c-scrollbar {
  opacity: 1;
}

[data-scroll-direction=horizontal] .c-scrollbar {
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 0;
  transform: scaleY(1);
}

[data-scroll-direction=horizontal] .c-scrollbar:hover {
  transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: -webkit-grab;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

[data-scroll-direction=horizontal] .c-scrollbar_thumb {
  right: auto;
  bottom: 0;
}

/*
┌────────────────────────────────────┐
	cb Quick Google Map Fix
└────────────────────────────────────┘ */
.cbQuickGoogleMap img {
  max-width: none !important;
}

/*
┌────────────────────────────────────┐
	Flickity Allgemein
└────────────────────────────────────┘ */
.csc-flickity .col,
.csc-flickity .frame,
.contentPic .col,
.contentPic .frame {
  width: 100%;
  padding: 0;
  margin: 0;
  color: #ffffff;
}
.csc-flickity .csc-inner,
.contentPic .csc-inner {
  padding: 0 0px;
}
.csc-flickity .csc-text,
.csc-flickity header,
.contentPic .csc-text,
.contentPic header {
  text-align: left;
}

.flickCounter {
  position: absolute;
  bottom: 100px;
  left: 50%;
  z-index: 1000;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  width: 50px;
  margin-left: -25px;
}

/*
┌────────────────────────────────────┐
	Flickity Fullscreen Top Slider
└────────────────────────────────────┘ */
.contentPic .csc-textpic-wrap {
  max-width: 1000px;
  margin: 0 auto;
  display: block;
  max-width: 956px;
}
.contentPic .csc-textpic-wrap * {
  color: #fff;
  text-align: left;
}
.contentPic .csc-textpic-wrap h1,
.contentPic .csc-textpic-wrap h2 {
  text-transform: uppercase;
}
.contentPic .csc-textpic-wrap h1 {
  font-size: 30px;
}
.contentPic .csc-textpic-text,
.contentPic header {
  position: absolute;
  top: 50%;
  margin-top: -70px;
  background-color: #fff;
  color: #000;
  padding: 0px 30px;
}
.contentPic .csc-textpic-center-outer,
.contentPic .csc-textpic-center-inner,
.contentPic figure,
.contentPic img {
  float: none;
  right: 0;
  width: 100%;
  max-width: inherit;
}

/*
┌────────────────────────────────────┐
	Flickity Zitat-Slider
└────────────────────────────────────┘ */
.contentMain .csc-flickity {
  background: #4c8aa8;
  margin: 0 35px;
}
.contentMain .csc-flickity .csc-text {
  padding: 70px;
}
.contentMain .csc-flickity p {
  font-size: 12px;
}
.contentMain .csc-flickity b,
.contentMain .csc-flickity strong {
  font-weight: 300;
  font-size: 25px;
  line-height: 1.4;
}

.tocontent {
  height: 65px;
  text-align: center;
  z-index: 60;
  position: relative;
  background: #fff url("/typo3conf/ext/mk7base/Resources/Public/Img/icon_scroll_to_content.gif") no-repeat center 3px;
  background-size: 50px 45px;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.tocontent:hover {
  background-position: center 21px;
  cursor: pointer;
}
.tocontent:after {
  content: "MEHR";
}

@-webkit-keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}
@-moz-keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}
@keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}
.scroll-btn {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
}
.scroll-btn > button {
  display: inline-block;
  line-height: 18px;
  font-size: 13px;
  font-weight: 400;
  color: #7f8c8d;
  color: #000;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 2px;
  width: 200px;
  position: relative;
  background: transparent;
  border: 0;
}
.scroll-btn > button:focus {
  outline: none;
}
.scroll-btn > :hover,
.scroll-btn > :focus,
.scroll-btn > .active {
  color: #000;
}
.scroll-btn > :hover,
.scroll-btn > :focus,
.scroll-btn > :active,
.scroll-btn > .active {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.scroll-btn p {
  margin: 0;
}
.scroll-btn .mouse {
  position: relative;
  display: block;
  width: 35px;
  height: 55px;
  margin: 0 auto 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid #000;
  border-radius: 23px;
}
.scroll-btn .mouse > * {
  position: absolute;
  display: block;
  top: 29%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: #000;
  border-radius: 50%;
  -webkit-animation: ani-mouse 2.5s linear infinite;
  -moz-animation: ani-mouse 2.5s linear infinite;
  animation: ani-mouse 2.5s linear infinite;
}

.scrollDown {
  position: fixed;
  bottom: 0;
  padding: 4px 10px;
  width: 100%;
}
.scrollDown button {
  padding-top: 60px;
  background: transparent;
  border: 0;
}
.scrollDown button:focus {
  outline: none;
}
.scrollDown button span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 22px;
  height: 34px;
  margin-left: -11px;
  border: 2px solid #00ffd0;
  border-radius: 9px;
  box-sizing: border-box;
}
.scrollDown button span:before {
  position: absolute;
  top: 3px;
  left: 50%;
  content: "";
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #00ffd0;
  border-radius: 100%;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 16px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/*
┌────────────────────────────────────┐
	TYPO3 Responsive Images
└────────────────────────────────────┘
*/
.ce-gallery .ce-row {
  padding: 0;
  font-size: 0;
}
.ce-gallery .ce-column {
  margin: 0px 0px var(--pad) 0px;
  display: inline-block;
  vertical-align: middle;
}
.ce-gallery .ce-column:first-child {
  padding-top: 0;
}
.ce-gallery[data-ce-columns="6"] .ce-column {
  width: 16.6%;
}
.ce-gallery[data-ce-columns="5"] .ce-column {
  width: 20%;
}
.ce-gallery[data-ce-columns="4"] .ce-column {
  width: 25%;
}
.ce-gallery[data-ce-columns="3"] .ce-column {
  width: 33.3%;
}
.ce-gallery[data-ce-columns="2"] .ce-column {
  width: 50%;
}
.ce-gallery[data-ce-columns="1"] .ce-column {
  width: 100%;
}
.ce-gallery figure {
  margin: 0;
  padding: 0 var(--pad);
  font-size: var(--copyfontsize);
}
.ce-gallery .ce-column:last-child, .ce-gallery td.csc-textpic-imagecolumn.csc-textpic-lastcol .csc-textpic-image {
  margin-right: 0;
  padding-right: 0;
}

.csc-textpic-imagewrap[data-csc-images="1"] figure {
  margin-bottom: 0 !important;
}

/*
┌────────────────────────────────────┐
	Paddings
└────────────────────────────────────┘
*/
body > main > .content .paddingTop10vh {
  padding-top: 10vh;
}
body > main > .content .paddingTop5vh {
  padding-top: 5vh;
}
body > main > .content .paddingTop0 {
  padding-top: 0;
}
body > main > .content .paddingBottom10vh {
  padding-bottom: 10vh;
}
body > main > .content .paddingBottom5vh {
  padding-bottom: 5vh;
}
body > main > .content .paddingBottom0 {
  padding-bottom: 0;
}

.type-textmedia .ceIn {
  background: #fff;
  position: relative;
  z-index: 10;
  padding: 30px 0;
}

/*
┌────────────────────────────────────┐
	Lists
└────────────────────────────────────┘
*/
.ceIn ul, .ceIn ol {
  margin: var(--pad) 0 0 25px;
}

/*
┌────────────────────────────────────┐
	TYPO3 Media Elements
└────────────────────────────────────┘
*/
.video-embed-item {
  width: 100%;
}

.video-embed {
  position: relative;
  padding-bottom: 50%;
  padding-top: 5px;
  height: 0;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
┌────────────────────────────────────┐
	csc-mailform
└────────────────────────────────────┘ */
.contenttable td {
  padding: 0px var(--pad) 0px 0;
}

.ce-align-left {
  text-align: left;
}

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

.ce-align-right {
  text-align: right;
}

.ce-table td, .ce-table th {
  vertical-align: top;
}

.ce-textpic, .ce-nowrap .ce-bodytext, .ce-gallery, .ce-row, .ce-uploads li, .ce-uploads div {
  overflow: hidden;
}

.ce-left .ce-gallery, .ce-column {
  float: left;
  width: 50%;
}
.ce-left .ce-gallery figure, .ce-column figure {
  padding-left: 0;
}

.ce-above .ce-gallery {
  width: 100%;
}

.ce-center .ce-outer {
  position: relative;
  float: right;
  right: 50%;
}

.ce-center .ce-inner {
  position: relative;
  float: right;
  right: -50%;
}

.ce-right .ce-gallery {
  float: right;
  width: 50%;
}
.ce-right .ce-gallery figure {
  padding-right: 0;
}

.ce-gallery figure {
  margin: 0;
}

.ce-gallery figcaption {
  caption-side: bottom;
}

.ce-gallery img {
  display: block;
}

.ce-gallery iframe {
  border-width: 0;
}

.ce-column:last-child {
  margin-right: 0;
}

.ce-row:last-child {
  margin-bottom: 0;
}

.ce-above .ce-bodytext {
  clear: both;
}

.ce-intext.ce-left ol, .ce-intext.ce-left ul {
  padding-left: var(--pad);
  overflow: auto;
}

.news-single .article {
  padding: 0;
  display: block;
  z-index: 20;
}
@media (max-width: 900px) {
  .news-single .article {
    padding: 0 var(--mobilePad);
  }
}
.news-single .news-list-date {
  font-size: var(--copyfontsize);
  color: #0f507e;
  position: absolute;
  top: 0.4em;
  top: calc(0.2em + 0.28vw);
  padding-right: 62px;
  right: 100%;
  text-align: left;
}
@media (min-width: 1680px) {
  .news-single .news-list-date {
    top: 0.43em;
  }
}
.news-single h1 {
  background: #fff;
  padding: 2vh 0;
}
.news-single h2 span {
  background: #fff;
  margin-left: -35px;
  padding: 13px 0;
  margin-right: 11px;
  z-index: 1999;
  position: relative;
}
.news-single .news-text-wrap {
  background: #fff;
  padding: 20px 0;
}
.news-single .outer {
  width: 100%;
}
.news-single .footer {
  font-size: 1.3rem;
  color: #aaa;
}
.news-single .ceOut {
  width: 100%;
  margin-left: 0;
  padding-top: 20px;
}

a.detail-back-btn {
  border-radius: 1.6em;
  line-height: 48px;
  padding: 0 111px 0 30px;
  border: 1px solid #0f507e;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
a.detail-back-btn:before {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #a8a8a8;
  right: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 25px;
}
a.detail-back-btn:after {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
  position: absolute;
  height: 100%;
  width: 35px;
  right: 18px;
  background: url("/typo3conf/ext/mk7base/Resources/Public/Img/arrow_small_right_blue.svg") no-repeat right center/contain;
}
a.detail-back-btn:hover:after {
  right: 14px;
}
a.detail-back-btn:hover:before {
  right: 0px;
  left: 0px;
  opacity: 0.15;
}
a.detail-back-btn {
  padding: 0 20px 0 65px;
  margin-top: 30px;
}
a.detail-back-btn:after {
  transform: rotate(180deg);
  right: auto;
  left: 18px;
}

/*
	News Pagination
*/
.page-navigation:first-child {
  display: none;
}

.page-navigation {
  text-align: center;
}

ul.pagination {
  text-align: center;
}
ul.pagination li {
  display: inline-block;
  padding: 20px;
}

.news-list-view .no-media-element {
  display: none;
}
.news-list-view .article, .news-list-view [class*=articletype] {
  font-size: var(--copyfontsize);
  padding: var(--pad);
  display: block;
  margin-top: 6vh;
  background: #fff;
  z-index: 10;
  position: relative;
}
@media (max-width: 900px) {
  .news-list-view .article, .news-list-view [class*=articletype] {
    width: auto;
    margin: 20px 20px 60px;
  }
}
.news-list-view .article .news-list-date, .news-list-view [class*=articletype] .news-list-date {
  position: absolute;
  top: 1em;
  padding-right: 70px;
  right: 100%;
  text-align: left;
}
@media (max-width: 900px) {
  .news-list-view .article .news-list-date, .news-list-view [class*=articletype] .news-list-date {
    position: relative;
    top: 0;
    padding-right: 0;
    right: 0;
    padding: 12px 0;
    display: inline-block;
  }
}
.news-list-view .article .header, .news-list-view [class*=articletype] .header {
  margin-bottom: 20px;
}
.news-list-view .article .header h2 span, .news-list-view [class*=articletype] .header h2 span {
  background: #fff;
  margin-left: -45px;
  top: -1px;
  width: 35px;
  padding: 0px 0;
  z-index: 1999;
  position: relative;
  display: inline-block;
}
@media (max-width: 900px) {
  .news-list-view .article .header h2 span, .news-list-view [class*=articletype] .header h2 span {
    display: none;
  }
}
.news-list-view .article a, .news-list-view [class*=articletype] a {
  text-decoration: none;
}
.news-list-view .article a.more, .news-list-view [class*=articletype] a.more {
  border-radius: 1.6em;
  line-height: 48px;
  padding: 0 111px 0 30px;
  border: 1px solid #0f507e;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.news-list-view .article a.more:before, .news-list-view [class*=articletype] a.more:before {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #a8a8a8;
  right: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 25px;
}
.news-list-view .article a.more:after, .news-list-view [class*=articletype] a.more:after {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
  position: absolute;
  height: 100%;
  width: 35px;
  right: 18px;
  background: url("/typo3conf/ext/mk7base/Resources/Public/Img/arrow_small_right_blue.svg") no-repeat right center/contain;
}
.news-list-view .article a.more:hover:after, .news-list-view [class*=articletype] a.more:hover:after {
  right: 14px;
}
.news-list-view .article a.more:hover:before, .news-list-view [class*=articletype] a.more:hover:before {
  right: 0px;
  left: 0px;
  opacity: 0.15;
}
.news-list-view .article .teaser-text div h1, .news-list-view .article .teaser-text div h2, .news-list-view .article .teaser-text div h3, .news-list-view .article .teaser-text div h4, .news-list-view .article .teaser-text div p, .news-list-view .article .teaser-text div a, .news-list-view .article .teaser-text div b, .news-list-view .article .teaser-text div strong, .news-list-view [class*=articletype] .teaser-text div h1, .news-list-view [class*=articletype] .teaser-text div h2, .news-list-view [class*=articletype] .teaser-text div h3, .news-list-view [class*=articletype] .teaser-text div h4, .news-list-view [class*=articletype] .teaser-text div p, .news-list-view [class*=articletype] .teaser-text div a, .news-list-view [class*=articletype] .teaser-text div b, .news-list-view [class*=articletype] .teaser-text div strong {
  font-weight: normal;
  color: #0f507e;
}
.news-list-view .article .news-img-wrap, .news-list-view [class*=articletype] .news-img-wrap {
  float: left;
  margin: 0 20px 0 0;
}
.news-list-view .article:after, .news-list-view [class*=articletype]:after {
  content: "";
  position: absolute;
  top: var(--pad);
  left: var(--pad);
  right: var(--pad);
  bottom: var(--pad);
  z-index: -1;
}

/*
	DP Cookieconsent
*/
body.dp--cookie-consent {
  overflow: hidden;
}
body.dp--cookie-consent main {
  filter: blur(2px);
}

.cc-window.cc-floating {
  background-color: #fff !important;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  max-width: 470px;
  bottom: auto;
}
.cc-window.cc-floating .dp--cookie-check {
  display: block;
  margin: 0.8rem 0 0.4rem;
}
.cc-window.cc-floating label {
  display: inline-block;
  color: #000;
  font-family: "mont", sans-serif;
  position: relative;
  padding: 0 14px 0 26px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
}
.cc-window.cc-floating label input[type=checkbox] {
  position: absolute;
  left: 0;
  margin-right: 5px;
  margin: 0 10px 0 0;
  background-color: #fff;
  border: 2px solid #000003;
  width: 17px;
  height: 17px;
  -webkit-appearance: none;
  outline: none;
  line-height: 22px;
}
.cc-window.cc-floating label input[type=checkbox]:checked {
  background-color: #000003;
}
.cc-window.cc-floating .cc-message {
  color: #000;
  font-family: "merri", Helvetica, sans-serif;
  font-size: 13px;
}
.cc-window.cc-floating .cc-link {
  color: #000 !important;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}
.cc-window.cc-floating .cc-message {
  text-align: left;
  margin: 30px 30px 0 !important;
}
.cc-window.cc-floating .cc-message:before {
  content: "";
  margin-bottom: 20px;
  width: 60px;
  display: block;
  height: 70px;
  background: transparent url("/typo3conf/ext/mk7base/Resources/Public/Img/logo_stier_icon.svg") no-repeat left top/contain;
}
.cc-window.cc-floating a.cc-btn.cc-allow,
.cc-window.cc-floating a.cc-btn.cc-dismiss {
  color: #000 !important;
  border: 2px solid #000 !important;
  margin: 8px 4px 30px;
  padding: 2px 12px 0;
  line-height: 2.5;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  font-family: "mont", sans-serif;
}
.cc-window.cc-floating a.cc-btn.cc-dismiss {
  color: #fff !important;
  background-color: #000 !important;
}

#dp--cookie-marketing {
  display: none;
}

.cc-revoke.dp--revoke.cc-top,
.cc-revoke.dp--revoke.cc-bottom {
  left: 17px;
  bottom: 10px;
  display: none !important;
}

.cc-revoke.dp--revoke:hover {
  opacity: 1;
}

.dp--overlay {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  font-size: calc(1rem + 2vw);
}
.dp--overlay .db--overlay-submit {
  background-color: #000 !important;
}

.cc-window.cc-floating .cc-compliance {
  padding: 0 28px;
}

li.uid_209 {
  pointer-events: none;
}
li.uid_209.js {
  pointer-events: all;
}

body:before {
  opacity: 0;
  content: "";
  width: 100%;
  pointer-events: none;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(0, 0, 3);
  z-index: 100;
  -webkit-transition: opacity 1.5s ease-in-out;
  -moz-transition: opacity 1.5s ease-in-out;
  -ms-transition: opacity 1.5s ease-in-out;
  -o-transition: opacity 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out;
}

body.dp--cookie-consent:before {
  opacity: 0.5;
}

@media all and (max-width: 760px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 760px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 760px), only screen and (-o-min-device-pixel-ratio: 21) and (max-width: 760px), only screen and (min-device-pixel-ratio: 2) and (max-width: 760px), only screen and (min-resolution: 192dpi) and (max-width: 760px), only screen and (min-resolution: 2dppx) and (max-width: 760px) {
  .cc-window.cc-floating {
    top: 50%;
    left: 20px;
    right: 20px;
    max-width: 100%;
    transform: translate3d(0%, -50%, 0);
  }
  .cc-window.cc-floating .cc-message {
    margin: 27px 15px 0 !important;
  }
  .cc-window.cc-floating .cc-compliance {
    padding: 0 11px;
  }
}
.gridOnecol {
  background: transparent center center repeat;
}

/*
┌────────────────────────────────────┐
	gridelements
└────────────────────────────────────┘ */
@media (max-width: 900px) {
  .gridTwocol > .col {
    width: 100% !important;
  }
}
/*
	Mailform
*/
form {
  opacity: 0;
  -webkit-transition: all 0.3s 0s ease-in-out;
  -moz-transition: all 0.3s 0s ease-in-out;
  -ms-transition: all 0.3s 0s ease-in-out;
  -o-transition: all 0.3s 0s ease-in-out;
  transition: all 0.3s 0s ease-in-out;
}
form .row {
  display: inline-block;
  width: 50%;
  vertical-align: top;
}
form .form-group {
  width: 50%;
  display: inline-block;
  padding: 0 40px 0 0;
}
@media (max-width: 900px) {
  form .form-group {
    padding: 0 10px 0 0;
  }
}
form .form-group:first-of-type, form .form-group:last-of-type {
  width: 100%;
}
form input, form textarea {
  width: 100%;
  background-color: #fff;
  min-height: 44px;
  padding: 1.2vh 6px;
  border: 0 none;
  color: #000;
  font-weight: bold;
  font-size: 1.9rem;
  font-family: "bold", sans-serif;
}
form input::-webkit-input-placeholder, form textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #000;
  font-size: 1.3rem;
  letter-spacing: 1px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "regular", sans-serif;
  -webkit-text-fill-color: initial;
}
form input::-moz-placeholder, form textarea::-moz-placeholder { /* Firefox 19+ */
  color: #000;
  font-size: 1.3rem;
  letter-spacing: 1px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "regular", sans-serif;
}
form input:-ms-input-placeholder, form textarea:-ms-input-placeholder { /*IE 10+ */
  color: #000;
  font-size: 1.3rem;
  letter-spacing: 1px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "regular", sans-serif;
}
form input:-moz-placeholder, form textarea:-moz-placeholder { /* Firefox 18- */
  color: #000;
  font-size: 1.3rem;
  letter-spacing: 1px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "regular", sans-serif;
}
form textarea {
  width: calc(100vw - 80px);
  max-width: 1120px;
  min-height: 98px;
}
@media (max-width: 900px) {
  form textarea {
    width: calc(100vw - 75px);
  }
}
form .btn-group button {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
}
form select {
  text-transform: uppercase;
  font-family: "regular", sans-serif;
}
form select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  height: calc(22px + 2.4vh);
  letter-spacing: 1px;
  background: #fff;
  border: none;
  color: #000;
  border-radius: 0;
  cursor: pointer;
  font-size: 1.3rem;
  outline: none;
  padding-left: 6px;
  width: 100%;
}
form select option {
  color: #666;
  font-family: "regular", sans-serif;
}
form select::-ms-expand {
  display: none;
}
form select:focus::-ms-value {
  background-color: transparent;
}

.mk7slider .innerWide {
  width: 100%;
}
.mk7slider .slides {
  display: block;
}
.mk7slider .slide.sliderLo {
  height: 40vh;
}
@media (max-width: 900px) {
  .mk7slider .slide.sliderLo {
    max-height: 30vh;
    height: calc(40vh - 50px);
  }
}
.mk7slider .slide.sliderHi {
  max-height: 55vw;
  height: 77vh;
}
@media (max-width: 900px) {
  .mk7slider .slide.sliderHi {
    max-height: 100vh;
    height: calc(100vh - 50px);
  }
}
.mk7slider .slide.responsiveVideo {
  max-height: initial;
  height: auto;
  position: relative !important;
}
.mk7slider .slide.responsiveVideo video {
  position: relative;
  top: 0;
  left: 0;
  transform: translate(0%, 0%);
}
.mk7slider .slide {
  width: 100%;
  background: transparent none no-repeat center center/cover;
}
.mk7slider .slide img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.mk7slider .slide video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .mk7slider .slide video {
    object-fit: cover;
  }
}
.mk7slider h2 {
  font-family: "boton", serif;
}
.mk7slider .positionBox {
  position: absolute;
  z-index: 50;
  left: 50%;
  right: 0;
  max-width: var(--max);
  width: 100%;
  overflow: visible;
  top: 50%;
  transform: translate3d(-50%, 50%, 0);
  color: #fff;
}
@media (max-width: 900px) {
  .mk7slider .positionBox {
    transform: translate3d(-50%, -50%, 0);
  }
}
.mk7slider .positionBox .text {
  max-width: 780px;
}
.mk7slider .positionBox a {
  color: #0f507e;
  border-radius: 10em;
  line-height: 57px;
  padding: 0 114px 0 30px;
  border: 1px solid #0f507e;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  background: #fff;
}
.mk7slider .positionBox a:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 35px;
  right: 18px;
  background: url("/typo3conf/ext/mk7base/Resources/Public/Img/arrow_small_right_blue.svg") no-repeat right center/contain;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.mk7slider .positionBox a:hover:after {
  right: 14px;
}
.mk7slider .positionBox a:hover:before {
  right: -10px;
  left: -25px;
}
@media (max-width: 900px) {
  .mk7slider .positionBox a {
    line-height: 3;
  }
}
.mk7slider .positionBox a {
  margin-top: 1vh;
}
.mk7slider .positionBox:before {
  content: "";
  position: absolute;
  left: calc(4 * var(--base));
  margin-left: -31px;
  top: 0;
  transform: translateY(-100%);
  height: 100vh;
  width: 1px;
  background: #fff;
}
.mk7slider .positionBox:after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(4 * var(--base));
  margin-left: -31px;
  height: 50vh;
  width: 1px;
  background: #fff;
}
@media (max-width: 900px) {
  .mk7slider .sliderLo .positionBox {
    transform: translate3d(-50%, 50%, 0);
  }
  .mk7slider .sliderLo .positionBox:before {
    top: -10px;
  }
  .mk7slider .sliderLo .positionBox:after {
    top: calc(100% + 10px);
  }
}
.mk7slider .sliderHi .positionBox {
  transform: translate3d(-50%, -25%, 0);
}
@media (max-width: 900px) {
  .mk7slider .sliderHi .positionBox {
    transform: translate3d(-50%, -50%, 0);
  }
}
.mk7slider .sliderHi .positionBox:before {
  top: -30px;
  transform: translateY(-100%);
  height: 100vh;
}
.mk7slider .sliderHi .positionBox:after {
  left: calc(4 * var(--base));
  height: 50vh;
  top: 100%;
}
.mk7slider .slide.is-selected .slideText {
  opacity: 1;
}
.mk7slider .heightResponsive .slide {
  height: 60vw;
}
.mk7slider .fxFade .flickity-slider {
  transform: none !important;
}
.mk7slider .fxFade .slide {
  left: 0 !important;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
}
.mk7slider .fxFade .slide.is-selected {
  opacity: 1;
  z-index: 0;
}

body.two_col {
  padding-top: 100vh;
}
body.two_col .contentPic {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
}
body.two_col .contentPic .mk7slider {
  height: 100vh;
}
body.two_col .contentPic .ceOut,
body.two_col .contentPic .ceIn,
body.two_col .contentPic .mk7slider,
body.two_col .contentPic .slides {
  height: 100%;
}

.accordion {
  padding: 5vh 0;
}
.accordion .opener {
  cursor: pointer;
}
.accordion .opener .col {
  padding: var(--pad);
}
.accordion .opener .btn {
  text-align: right;
}
.accordion .opener .btn span {
  font-size: 13px;
  position: relative;
  top: -3px;
  opacity: 1;
  -webkit-transition: all 0.81s ease-in-out;
  -moz-transition: all 0.81s ease-in-out;
  -ms-transition: all 0.81s ease-in-out;
  -o-transition: all 0.81s ease-in-out;
  transition: all 0.81s ease-in-out;
}
.accordion .opener .btn:before {
  content: "↑";
  position: absolute;
  right: 10px;
  top: 12px;
  opacity: 0;
  font-size: 18px;
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.accordion .content {
  max-height: 0;
  overflow: hidden;
  position: relative;
  top: 20px;
  opacity: 0;
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.accordion .content .text,
.accordion .content .image {
  padding: var(--pad);
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.accordion .accordionItem {
  border-top: 1px solid #eee;
  padding: 10px 0;
}
.accordion .accordionItem.act .opener .btn span {
  opacity: 0;
  margin-right: 15px;
}
.accordion .accordionItem.act .opener .btn:before {
  opacity: 1;
  right: var(--pad);
}
.accordion .accordionItem.act .content {
  height: auto;
  top: 0;
  max-height: 900px;
  opacity: 1;
}
.accordion .accordionItem.act .content .text,
.accordion .accordionItem.act .content .image {
  padding: var(--pad);
}
.accordion .accordionItem:last-child {
  border-bottom: 1px solid #eee;
}

.textslider header {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.textslider .slides {
  min-height: 40vh;
}
.textslider .slide {
  padding: 20vh 0;
  color: #fff;
  text-align: right;
}
.textslider .slide .textItem {
  display: inline-block;
}
.textslider h3 p {
  background: var(--col-highlight);
  color: #fff;
  padding: 6px 20px 6px 10vw;
  margin: 0.3em 0;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
}
.textslider .backgroundImageItems {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.module_textimage {
  text-align: center;
  z-index: 100;
  padding: 0 var(--pad) 20px;
  overflow: visible;
}
.module_textimage img {
  width: 100%;
}
.module_textimage video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .module_textimage video {
    position: relative;
  }
}
.module_textimage .textItem {
  position: relative;
  background: #fff;
  padding: 10px 40px;
  padding: 0px 40px;
  top: -80px;
}
.module_textimage .headlineLeft {
  position: absolute;
  transform: translate3d(0%, -25%, 0);
  top: 50%;
  padding: 0;
  left: 0;
  text-align: left;
}
@media (max-width: 900px) {
  .module_textimage .headlineLeft {
    position: relative;
    margin-left: 0;
  }
}
.module_textimage[data-layout=textRightOnImage] .row {
  max-width: 50%;
}
.module_textimage[data-layout=textRightOnImage] .imageItem {
  float: left;
}
.module_textimage[data-layout=textRightOnImage] .textItem {
  margin-left: 50%;
  box-shadow: 15px 22px 23px rgba(16, 80, 126, 0.09);
}
.module_textimage[data-layout=textLeftOnImage] .row {
  max-width: 50%;
}
.module_textimage[data-layout=textLeftOnImage] .imageItem {
  float: right;
}
.module_textimage[data-layout=textLeftOnImage] .textItem {
  margin-right: 50%;
  box-shadow: -15px 22px 23px rgba(16, 80, 126, 0.09);
}
.module_textimage[data-layout*=imageLeftTextRightBlue] {
  display: inline-block;
  text-align: right;
  width: 50%;
}
@media (max-width: 900px) {
  .module_textimage[data-layout*=imageLeftTextRightBlue] {
    padding: 0 var(--mobilePad);
  }
}
.module_textimage[data-layout*=imageLeftTextRightBlue] > * {
  vertical-align: top;
}
.module_textimage[data-layout*=imageLeftTextRightBlue] .imageItem {
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.module_textimage[data-layout*=imageLeftTextRightBlue] .imageItem img {
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
}
.module_textimage[data-layout*=imageLeftTextRightBlue] .textItem {
  color: #fff;
  top: 0;
  width: 50%;
  padding-bottom: 20%;
  min-height: 350px;
  background: #0f507e;
}
.module_textimage[data-layout*=imageLeftTextRightBlue] .textItem .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 40px 5px;
  overflow: auto;
  max-height: 60%;
  max-width: 600px;
}
.module_textimage[data-layout*=imageLeftTextRightBlue] .textItem a {
  padding: 0 65px 0 0px;
  display: inline-block;
  text-decoration: none;
  position: relative;
  line-height: 48px;
  z-index: 1;
}
.module_textimage[data-layout*=imageLeftTextRightBlue] .textItem a:before {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(11, 42, 65, 0.5);
  right: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: -1;
  border-radius: 25px;
}
.module_textimage[data-layout*=imageLeftTextRightBlue] .textItem a:after {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
  position: absolute;
  height: 100%;
  width: 35px;
  right: 18px;
  background: url("/typo3conf/ext/mk7base/Resources/Public/Img/arrow_small_right_white.svg") no-repeat right center/contain;
}
.module_textimage[data-layout*=imageLeftTextRightBlue] .textItem a:hover:after {
  right: 14px;
}
.module_textimage[data-layout*=imageLeftTextRightBlue] .textItem a:hover:before {
  right: -10px;
  left: -25px;
}
.module_textimage[data-layout*=imageLeftTextRightBlue] header {
  font-size: 1.4rem;
  line-height: 1;
  padding-top: 2.2em;
}
.module_textimage[data-layout*="imageLeftTextRightBlue fullWidth"] {
  display: block;
  width: 100%;
  z-index: 100;
}
.module_textimage .backgroundImageItems {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-position: center center;
  background-size: cover;
}

.module_textimage[data-layout*=colTwoWithLine] {
  padding-top: 10vh;
  padding-bottom: 7vh;
}
.module_textimage[data-layout*=colTwoWithLine].frame-space-before-paddingTop0 {
  padding-top: 2vh;
}
.module_textimage[data-layout*=colTwoWithLine].frame-space-after-paddingBottom0 {
  padding-bottom: 2vh;
}
.module_textimage[data-layout*=colTwoWithLine] .imageItem img {
  padding: 0 90px 0 40px;
}
@media (max-width: 900px) {
  .module_textimage[data-layout*=colTwoWithLine] .imageItem img {
    padding: 0 0 40px 0;
  }
}
.module_textimage[data-layout*=colTwoWithLine] .textItem {
  padding: 0;
  top: -13px;
}
.module_textimage[data-layout*=colTwoWithLine] .textItem .text h1,
.module_textimage[data-layout*=colTwoWithLine] .textItem .text h2,
.module_textimage[data-layout*=colTwoWithLine] .textItem .text h3,
.module_textimage[data-layout*=colTwoWithLine] .textItem .text h4,
.module_textimage[data-layout*=colTwoWithLine] .textItem .text h5 {
  color: #0cc1e2;
  padding-top: 0.6em;
}
.module_textimage[data-layout*=colTwoWithLine].paddingTop0 .textItem {
  top: -8px;
}
.module_textimage[data-layout*=colTwoWithLine] header span {
  background: #fff;
  margin-left: -39px;
  margin-right: 6px;
  top: -2px;
  padding: 13px 0;
  z-index: 1999;
  position: relative;
}
@media (max-width: 1024px) {
  .module_textimage[data-layout*=colTwoWithLine] header span {
    display: none;
  }
}
.module_textimage[data-layout*=colTwoWithLine] header h4 span {
  display: none;
}

.module_textimage .logoModule {
  display: flex;
  flex-wrap: wrap;
}
.module_textimage .logoModule > * {
  flex-basis: 100%;
}
.module_textimage .logoModule .logoRow {
  margin-left: -20px;
  padding: 40px 0;
  text-align: left;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.module_textimage .logoModule .imageItem {
  order: 2;
  float: none !important;
  margin-right: 0 !important;
}
.module_textimage .logoModule .logo {
  display: inline-block;
  width: 155px;
  padding: 20px;
}
.module_textimage .logoModule .logo img {
  padding: 0;
  max-height: 120px;
  object-fit: contain;
}
.module_textimage .logoModule .textItem {
  order: 1;
}

.module_textimage[data-layout="colTwoWithLine imageBelow"] .row {
  display: flex;
  flex-wrap: wrap;
}
.module_textimage[data-layout="colTwoWithLine imageBelow"] .imageItem {
  order: 2;
}
.module_textimage[data-layout="colTwoWithLine imageBelow"] .imageItem img {
  padding: 0 90px 0 40px;
}
.module_textimage[data-layout="colTwoWithLine imageBelow"] .textItem {
  order: 1;
  padding: 0;
  top: -28px;
}

@media (max-width: 900px) {
  main .content .module_textimage {
    width: 100%;
    margin-bottom: 20px;
  }
  main .content .module_textimage .imageItem {
    position: relative;
    width: 100%;
    margin: 0;
  }
  main .content .module_textimage .imageItem img {
    position: relative;
    padding: 0 0px;
  }
  main .content .module_textimage .textItem {
    min-height: 0;
    padding-bottom: 0;
  }
  main .content .module_textimage .textItem .text {
    position: relative;
    padding: 0;
  }
}
.headline_mover {
  padding: 15vh 0;
}
.headline_mover h1 {
  line-height: 1;
}
.headline_mover .line1 {
  width: auto;
  text-align: center; /* padding-right: 47%; */
}
.headline_mover .line2 {
  width: auto;
  text-align: center;
  padding-left: 10%;
}
.headline_mover .line3 {
  width: auto;
  text-align: center;
  padding-left: 10%;
}
.headline_mover .line4 {
  width: auto;
  text-align: center;
  padding-left: 10%;
}
.headline_mover .subline {
  padding: 7vh 0 0;
  text-align: center;
}

.module_textgradient {
  text-align: center;
  background: #fff;
  z-index: 20;
}
.module_textgradient.text2active {
  z-index: 1000;
}
.module_textgradient.text2active .box:after {
  display: none;
}
.module_textgradient header span {
  background: #0d3857;
  margin-left: -35px;
  z-index: 1999;
  position: relative;
}
.module_textgradient header span svg text {
  fill: #fff;
}
@media (max-width: 900px) {
  .module_textgradient header span {
    display: none;
  }
}
.module_textgradient .box {
  padding: 12vh 0;
  text-align: left;
  overflow: hidden;
}
@media (min-width: 900px) {
  .module_textgradient .box {
    position: relative;
  }
  .module_textgradient .box:after {
    content: "";
    position: absolute;
    left: calc(4 * var(--base));
    margin-left: -31px;
    top: -20px;
    bottom: -20px;
    width: 1px;
    background: #0f507e;
    z-index: 60;
  }
}
.module_textgradient.lineOnlyTop .box:after {
  bottom: auto;
  height: 37%;
}
.module_textgradient.frame-space-after-paddingBottom0 .box {
  padding-bottom: 1vh;
}
.module_textgradient.bggradient {
  background: rgb(10, 41, 64);
  background: -moz-linear-gradient(90deg, rgb(10, 41, 64) 0%, rgb(15, 80, 126) 100%);
  background: -webkit-linear-gradient(90deg, rgb(10, 41, 64) 0%, rgb(15, 80, 126) 100%);
  background: linear-gradient(90deg, rgb(10, 41, 64) 0%, rgb(15, 80, 126) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0a2940",endColorstr="#0f507e",GradientType=1);
  color: #fff;
  margin-top: 0px;
  margin-bottom: 0px;
}
.module_textgradient.bggradient .box:after {
  background: #fff;
}
.module_textgradient.bgwhite header span {
  background: #fff;
}
.module_textgradient.bgwhite header span svg text {
  fill: #0f507e;
}
.module_textgradient a {
  text-decoration: none;
}
.module_textgradient.textSingle a {
  color: #0f507e;
  border-radius: 10em;
  line-height: 57px;
  padding: 0 114px 0 30px;
  border: 1px solid #0f507e;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  background: #fff;
}
.module_textgradient.textSingle a:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 35px;
  right: 18px;
  background: url("/typo3conf/ext/mk7base/Resources/Public/Img/arrow_small_right_blue.svg") no-repeat right center/contain;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.module_textgradient.textSingle a:hover:after {
  right: 14px;
}
.module_textgradient.textSingle a:hover:before {
  right: -10px;
  left: -25px;
}
@media (max-width: 900px) {
  .module_textgradient.textSingle a {
    line-height: 3;
  }
}
@media (max-width: 900px) {
  .module_textgradient.textSingle a {
    margin-left: 0;
  }
}
.module_textgradient.textSingle a[href="/newsletter/"] {
  width: 25vw;
  max-width: 470px;
  min-width: 300px;
  margin-left: 0;
}

@media (max-width: 900px) {
  .contentSub .module_textgradient .column2 {
    margin-top: 10vh;
  }
}

.module_verticalgraph {
  padding: 10vh 0;
  z-index: 10;
  position: relative;
}

.module_team {
  font-size: 0;
  padding: 0 0 10vh 0;
}
@media (max-width: 900px) {
  .module_team {
    padding-left: 20px;
  }
}
.module_team .teamItem {
  position: relative;
  display: inline-block;
  overflow: visible;
  padding-bottom: 7vh;
  min-width: 270px;
  box-shadow: 0 0 0 #fff;
  background: #fff;
  padding: 30px;
  margin-right: -30px;
  z-index: 10;
  left: -30px;
}
.module_team .teamItem p {
  font-size: 1.3rem;
}
.module_team .teamItem.open {
  box-shadow: 0px -6px 12px rgba(15, 80, 126, 0.18);
  z-index: 1000;
}
.module_team .imageItem {
  overflow: hidden;
}
.module_team .imageItem img {
  transform: scale(1);
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  pointer-events: none;
  display: block;
}
.module_team .imageItem:hover img {
  transform: scale(1.06);
}
.module_team .headline {
  margin-bottom: 30px;
}
.module_team .headline span {
  background: #fff;
  margin-left: -39px;
  top: -5px;
  padding: 13px 0;
  z-index: 1999;
  position: relative;
}
.module_team .textItem {
  position: relative;
  font-size: 80%;
  padding-right: 20px;
}
.module_team .textItem strong {
  line-height: 1.2;
  display: inline-block;
  padding-top: 0.8em;
}
.module_team .textItem p {
  margin-top: 0.2em;
  text-align: left;
}
.module_team .textItem .detailsOpen {
  cursor: pointer;
}
.module_team .detailsClose {
  font-weight: 600;
  font-size: 1.7rem;
  margin: 23px auto;
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid;
  border-radius: 50%;
  line-height: 38px;
  cursor: pointer;
}
.module_team .details {
  position: absolute;
  text-align: center;
  top: 100%;
  left: -30px;
  transform: translateY(-40px);
  right: -30px;
  padding: 10px 30px;
  opacity: 0;
  pointer-events: none;
  background: #fff;
  color: #0f507e;
  z-index: 10;
  font-size: 1.3rem;
  box-shadow: 0 0 0 #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 900px) {
  .module_team .details {
    transform: translateY(-30px);
  }
}
.module_team .details p {
  text-align: left;
}
.module_team .details.open {
  opacity: 1;
  pointer-events: all;
  box-shadow: 0 8px 12px rgba(15, 80, 126, 0.18);
}

#uid_232 .content > .module_team:nth-child(3) {
  padding-bottom: 0;
}

.animatedheadline .wrap:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--yellow);
  transition: transform 0.75s cubic-bezier(0.22, 0.61, 0.37, 1) 1s;
  transform: translateX(0);
}
.animatedheadline .wrap.is-inview:after {
  transform: translateX(100%);
}

.frame-type-form_formframework form {
  padding: 8px;
  background-color: #ddd;
}
.frame-type-form_formframework .form-group {
  margin-bottom: 10px;
}
.frame-type-form_formframework input {
  border: 0;
  padding: 2px 5px;
}
.frame-type-form_formframework .control-label {
  display: none;
}
.frame-type-form_formframework .next .btn {
  border: 0;
  background: #adadad;
  font-weight: 700;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

.text-justify {
  text-align: justify;
}

.ceOut.type-div {
  visibility: hidden;
  padding: 0;
}

html {
  font-size: 10px;
}

html,
body {
  margin: 0;
  padding: 0;
  overscroll-behavior: none;
}

body {
  font-size: var(--copyfontsize);
  line-height: 1.6;
  padding: 0px 0px 0px;
  margin: 0 !important;
  text-align: left;
  color: #0f507e;
}
@media (max-width: 900px) {
  body {
    padding-bottom: 0;
  }
}
body.two_col {
  padding-bottom: 0;
}
body.two_col footer {
  position: relative;
  z-index: 40;
}

p {
  margin: 1em 0px;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.3;
  font-family: "boton", serif;
  padding-bottom: 0.3em;
}
h1 strong, h1 b,
h2 strong,
h2 b,
h3 strong,
h3 b,
h4 strong,
h4 b,
h5 strong,
h5 b {
  font-weight: normal;
}

h1 {
  font-size: var(--h1size);
}

h2 {
  font-size: var(--h2size);
}

h3 {
  font-size: var(--h3size);
}

h4 {
  font-size: var(--h4size);
  font-family: "proxima", serif;
}

h5 {
  font-size: var(--h5size);
}

h2.subheader {
  font-size: 2.4rem;
}

h3.subheader {
  font-size: 1.8rem;
}

h4.subheader {
  font-size: 1.44rem;
}

a {
  color: var(--col-highlight);
}

.text ul {
  margin-left: 1.4em;
}

.col-blue {
  color: #0f507e !important;
}

/*
	Präsentation
*/
.dce-horizontal-graph {
  padding-bottom: 7vh;
}
.dce-horizontal-graph .box-horizontal {
  position: relative;
  padding: 5vh 0;
}
.dce-horizontal-graph .box-number {
  position: absolute;
  top: -0.48em;
  transform: translateX(-113px);
  top: 50%;
  transform: translate3d(-117px, calc(-50% - 0px), 0);
  border: 1px solid #0f507e;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  font-size: var(--h3size);
  text-align: center;
  color: #0f507e;
  line-height: 57px;
  font-family: "boton", serif;
}

div#c527 {
  margin-top: 10vh;
}

div#c528.module_textimage .imageItem {
  width: calc(4 * var(--base));
  margin-left: calc(4 * var(--base));
  margin-right: calc(4 * var(--base));
}
@media (max-width: 900px) {
  div#c528.module_textimage .imageItem {
    width: auto;
    margin: 37px 0 0;
  }
}
div#c528.module_textimage .imageItem img {
  padding: 0;
}
@media (max-width: 900px) {
  div#c528.module_textimage .headlineLeft {
    position: relative;
    margin-left: 0;
    top: -110px;
    margin: 0;
    width: 100%;
  }
}

div#c632 .logoRow {
  padding: 0;
}

div#c618 .logoRow {
  padding-bottom: 0;
}

/*
┌────────────────────────────────────┐
	Main grid, wraps, containers
└────────────────────────────────────┘ */
.container {
  text-align: left;
  height: 100%;
  margin: 0 auto;
  padding: 0px 70px 0;
  overflow: hidden;
  text-align: left;
  position: relative;
}

main {
  position: relative;
  display: block;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 900px) {
  main {
    padding-top: 50px;
  }
}

body > main, html body > header, ul.level2 {
  opacity: 1;
}

.pic {
  overflow: hidden;
}

.content {
  max-width: var(--max);
  position: relative;
}
@media (max-width: 900px) {
  .content .layoutEmpty {
    padding: var(--mobilePad);
    margin: 0;
  }
}
.content .type-textmedia.layoutEmpty {
  margin-left: 0;
  width: auto;
}
@media (max-width: 900px) {
  .content .type-textmedia.layoutEmpty {
    padding-left: calc(1 * var(--base));
  }
}

@media (min-width: 1680px) {
  .content {
    margin: 0 auto;
  }
}
.content:after {
  content: "";
  position: absolute;
  left: calc(4 * var(--base));
  margin-left: -31px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #0f507e;
}
@media (max-width: 900px) {
  .content:after {
    display: none;
    left: calc(1 * var(--base));
  }
}

/*
┌────────────────────────────────────┐
	Loading transition
└────────────────────────────────────┘ */
body:after {
  content: "";
  width: 100%;
  height: calc(100vh - 80px);
  opacity: 0;
  position: fixed;
  top: 80px;
  left: 0;
  background: var(--col-highlight);
}

html.is-ready body:after {
  transform: scaleY(1);
  -webkit-animation: loadTrans 0.6s 0.3s both ease-in;
  animation: loadTrans 0.6s 0.3s both ease-in;
}

@-webkit-keyframes loadTrans {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 0;
  }
}
@keyframes loadTrans {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 0;
  }
}
.col-highlight {
  color: var(--col-highlight);
}

.hoverPic {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  z-index: 1000;
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.hoverPic:hover {
  opacity: 1;
}

/*
┌────────────────────────────────────┐
	rte styles / ckeditor
└────────────────────────────────────┘ */
blockquote {
  padding: 0;
}
blockquote p {
  quotes: "» " " «";
  font-size: 3rem;
  font-size: 2.6vw;
  font-weight: 700;
  line-height: 1.4;
}
blockquote p:before {
  content: open-quote;
}
blockquote p:after {
  content: close-quote;
}

.rteIntroText {
  background: transparent;
  text-align: center;
  padding: var(--pad);
  font-size: 2.4rem;
}/*# sourceMappingURL=a.css.map */