@charset "UTF-8";
/* prettier-ignore */
/* 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: 10;
  --max: 1440px;
  --base: 100% / 10;
  --basevw: 100vw / 10;
  --pad: 20px;
  --copyfontsize: clamp(1.5rem, 1vw, 2rem);
  --smallfontsize: calc(1.2rem + 0.25vw);
  --h1sizeslider: clamp(2rem, 2.5vw, 6rem);
  --h1size: 6rem;
  --h2size: 6rem;
  --h3size: 3.3rem;
  --h4size: 2.4rem;
  --h5size: 3rem;
  --h6size: 2rem;
  --quotesize: 4.5rem;
  --col-highlight: $green;
  --col-inputtext: #ecff00;
  --gray: #f5f5f5;
  --yellow: #ecff00;
  --yellow30: #fde8bf;
  --col-menubg: rgba(0, 0, 0, 0.9);
  --col-menucol: #fff;
}

@media (min-width: 1584px) {
  :root {
    --base: calc(var(--max) / var(--grid));
  }
}
@media (max-width: 1584px) {
  :root {
    --h1size: 3.9vw;
    --h2size: 3.9vw;
    --h3size: 2.3vw;
    --h4size: 1.55vw;
    --h5size: 3rem;
    --h6size: 2rem;
  }
}
@media (max-width: 900px) {
  :root {
    --h1size: 3rem;
    --h2size: 3rem;
    --h3size: 2.55rem;
    --h4size: 1.55rem;
    --h5size: 1.8rem;
    --h6size: 2rem;
    --quotesize: 2.5rem;
    --h1sizeslider: 1.45rem;
    --smallfontsize: calc(1.4rem + 0.25vw);
  }
}
/* 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;
}

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

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  overflow-y: scroll;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

iframe {
  border: 0;
}

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

blockquote,
q {
  quotes: none;
}

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

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

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

input {
  line-height: normal;
  border-radius: 0;
}

input,
select {
  vertical-align: middle;
}

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

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

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

input::-ms-clear {
  display: none;
}

input::-ms-reveal {
  display: none;
}

strong,
b {
  font-weight: bold;
}

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

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

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

[disabled] {
  cursor: not-allowed;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
sub, sup {
  font-size: 75%;
}

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

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

.layoutGrid {
  display: none !important;
  pointer-events: none;
  z-index: 10000;
  height: 100vh;
  position: fixed;
  width: 100%;
  top: 0;
  opacity: 0.55;
  left: 50%;
  transform: translateX(-50%);
}
.layoutGrid > * {
  box-shadow: 0px 0px 1px 1px #00ffcd;
  height: 100%;
}

@media (min-width: 1024px) {
  .hideOnDesktop {
    display: none !important;
  }
}
@media (max-width: 900px) {
  .hideOnDesktop {
    display: block !important;
  }
}

@media (max-width: 1024px) {
  .hideOnMobile {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .hideOnMobile {
    display: block !important;
  }
}

/*
┌────────────────────────────────────┐
	Layout //// Boxes
└────────────────────────────────────┘ */
.col, .article, .column, .text {
  position: relative;
  text-align: left;
  vertical-align: top;
  font-size: var(--copyfontsize);
}

.rowx {
  display: flex;
  flex-direction: row;
  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;
}
.row > .col {
  display: inline-block;
}

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

[class*=cols] {
  max-width: 100%;
}

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

main .col[class*=type-].paddingTop10vh, main .ceOut.paddingTop10vh, main section.paddingTop10vh {
  padding-top: 10vh;
}
main .col[class*=type-].paddingTop5vh, main .ceOut.paddingTop5vh, main section.paddingTop5vh {
  padding-top: 5vh;
}
main .col[class*=type-].paddingTop0, main .ceOut.paddingTop0, main section.paddingTop0 {
  padding-top: 0;
}
main .col[class*=type-].paddingBottom10vh, main .ceOut.paddingBottom10vh, main section.paddingBottom10vh {
  padding-bottom: 10vh;
}
main .col[class*=type-].paddingBottom5vh, main .ceOut.paddingBottom5vh, main section.paddingBottom5vh {
  padding-bottom: 5vh;
}
main .col[class*=type-].paddingBottom0, main .ceOut.paddingBottom0, main section.paddingBottom0 {
  padding-bottom: 0;
}

.ceIn, .pad {
  padding: 0 var(--pad) 0px;
  overflow: hidden;
}

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

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

/*
	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, section.textImage .textBottom .image, section.textImage .textBottom .text, .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;
  }
}
.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;
}

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

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

.cols3, section.textImage .text70.image30.textRight .image, section.textImage .text70.image30 .image {
  width: calc(3 * var(--base));
}

.cols4, section.textImage .text60.image40 .image {
  width: calc(4 * var(--base));
}

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

.cols6, section.textImage .text60.image40 .text {
  width: calc(6 * var(--base));
}

.cols7, section.textImage .text70.image30.textRight .text, section.textImage .text70.image30 .text {
  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%;
  }
}
.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 {
  margin-left: calc(1 * var(--base));
}

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

.inds3 {
  margin-left: calc(3 * var(--base));
}

.inds4 {
  margin-left: calc(4 * var(--base));
}

.inds5 {
  margin-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;
  }
}
@supports (width: 100vw) {
  .col100vw, .breakout {
    width: 100vw;
    display: block;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}
.frame-type-form_formframework form {
  padding: 20px;
  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, .ce-headline-left {
  text-align: left;
}

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

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

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

.jumplinks {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 300px;
  z-index: 2000;
}
.jumplinks li {
  display: block;
}
.jumplinks a {
  opacity: 1;
  height: 0;
  line-height: 0px;
  display: block;
  -webkit-transition: all 0.5s 0s;
  -moz-transition: all 0.5s 0s;
  -ms-transition: all 0.5s 0s;
  -o-transition: all 0.5s 0s;
  transition: all 0.5s 0s;
  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;
}
@media (max-width: 900px) {
  .jumplinks {
    display: none;
  }
}

html.highcontrast main * {
  color: #242424 !important;
}
html.highcontrast :root {
  --colcorp: #fff !important;
}
html.highcontrast .metarow a,
html.highcontrast .metarow button {
  color: #242424;
  font-weight: 600;
}
html.highcontrast nav.main ul.level2 {
  background: #242424;
}
html.highcontrast nav.main a.level3 {
  color: #fff;
}
html.highcontrast nav.main a.level3:hover {
  background: #fff;
  color: #000;
}
html.highcontrast nav.main a.level1.act,
html.highcontrast nav.main a.level1.cur {
  background: #242424;
  border-radius: 0px;
  color: #fff;
}
html.highcontrast .mm-menu_theme-dark {
  --mm-color-background: #000 !important;
}
html.highcontrast .bgRight,
html.highcontrast .bgLeft {
  display: none;
}
html.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;
}

/*
	Big Font
*/
html.bigfont {
  font-size: 16px;
  --max: 2304px;
}
html.bigfont a.logo.cols2 {
  width: 100%;
}
html.bigfont a.logo.cols2 img {
  max-width: 250px;
}

nav.main a:focus {
  outline: none;
  border: 0 none;
  background: #fff;
  color: var(--colcorp) !important;
  border-radius: 0px;
}

/* source-sans-pro-300 - latin */
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 300;
  src: url("../Fonts//sspro/source-sans-pro-v14-latin-300.eot"); /* IE9 Compat Modes */
  src: local(""), url("../Fonts//sspro/source-sans-pro-v14-latin-300.eot?#iefix") format("embedded-opentype"), url("../Fonts//sspro/source-sans-pro-v14-latin-300.woff2") format("woff2"), url("../Fonts//sspro/source-sans-pro-v14-latin-300.woff") format("woff"), url("../Fonts//sspro/source-sans-pro-v14-latin-300.ttf") format("truetype"), url("../Fonts//sspro/source-sans-pro-v14-latin-300.svg#SourceSansPro") format("svg"); /* Legacy iOS */
}
/* source-sans-pro-regular - latin */
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  src: url("../Fonts//sspro/source-sans-pro-v14-latin-regular.eot"); /* IE9 Compat Modes */
  src: local(""), url("../Fonts//sspro/source-sans-pro-v14-latin-regular.eot?#iefix") format("embedded-opentype"), url("../Fonts//sspro/source-sans-pro-v14-latin-regular.woff2") format("woff2"), url("../Fonts//sspro/source-sans-pro-v14-latin-regular.woff") format("woff"), url("../Fonts//sspro/source-sans-pro-v14-latin-regular.ttf") format("truetype"), url("../Fonts//sspro/source-sans-pro-v14-latin-regular.svg#SourceSansPro") format("svg"); /* Legacy iOS */
}
/* source-sans-pro-600 - latin */
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 600;
  src: url("../Fonts//sspro/source-sans-pro-v14-latin-600.eot"); /* IE9 Compat Modes */
  src: local(""), url("../Fonts//sspro/source-sans-pro-v14-latin-600.eot?#iefix") format("embedded-opentype"), url("../Fonts//sspro/source-sans-pro-v14-latin-600.woff2") format("woff2"), url("../Fonts//sspro/source-sans-pro-v14-latin-600.woff") format("woff"), url("../Fonts//sspro/source-sans-pro-v14-latin-600.ttf") format("truetype"), url("../Fonts//sspro/source-sans-pro-v14-latin-600.svg#SourceSansPro") format("svg"); /* Legacy iOS */
}
/* source-sans-pro-700 - latin */
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 700;
  src: url("../Fonts//sspro/source-sans-pro-v14-latin-700.eot"); /* IE9 Compat Modes */
  src: local(""), url("../Fonts//sspro/source-sans-pro-v14-latin-700.eot?#iefix") format("embedded-opentype"), url("../Fonts//sspro/source-sans-pro-v14-latin-700.woff2") format("woff2"), url("../Fonts//sspro/source-sans-pro-v14-latin-700.woff") format("woff"), url("../Fonts//sspro/source-sans-pro-v14-latin-700.ttf") format("truetype"), url("../Fonts//sspro/source-sans-pro-v14-latin-700.svg#SourceSansPro") format("svg"); /* Legacy iOS */
}
/* source-sans-pro-900 - latin */
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 900;
  src: url("../Fonts//sspro/source-sans-pro-v14-latin-900.eot"); /* IE9 Compat Modes */
  src: local(""), url("../Fonts//sspro/source-sans-pro-v14-latin-900.eot?#iefix") format("embedded-opentype"), url("../Fonts//sspro/source-sans-pro-v14-latin-900.woff2") format("woff2"), url("../Fonts//sspro/source-sans-pro-v14-latin-900.woff") format("woff"), url("../Fonts//sspro/source-sans-pro-v14-latin-900.ttf") format("truetype"), url("../Fonts//sspro/source-sans-pro-v14-latin-900.svg#SourceSansPro") format("svg"); /* Legacy iOS */
}
body {
  font: 400 1.5rem/1.6 "Source Sans Pro", sans-serif;
}

/* source-serif-pro-regular - latin */
@font-face {
  font-family: "Source Serif Pro";
  font-style: normal;
  font-weight: 400;
  src: url("../Fonts//serifpro/source-serif-pro-v11-latin-regular.eot"); /* IE9 Compat Modes */
  src: local(""), url("../Fonts//serifpro/source-serif-pro-v11-latin-regular.eot?#iefix") format("embedded-opentype"), url("../Fonts//serifpro/source-serif-pro-v11-latin-regular.woff2") format("woff2"), url("../Fonts//serifpro/source-serif-pro-v11-latin-regular.woff") format("woff"), url("../Fonts//serifpro/source-serif-pro-v11-latin-regular.ttf") format("truetype"), url("../Fonts//serifpro/source-serif-pro-v11-latin-regular.svg#SourceSerifPro") format("svg"); /* Legacy iOS */
}
/* source-serif-pro-700 - latin */
@font-face {
  font-family: "Source Serif Pro";
  font-style: normal;
  font-weight: 700;
  src: url("../Fonts//serifpro/source-serif-pro-v11-latin-700.eot"); /* IE9 Compat Modes */
  src: local(""), url("../Fonts//serifpro/source-serif-pro-v11-latin-700.eot?#iefix") format("embedded-opentype"), url("../Fonts//serifpro/source-serif-pro-v11-latin-700.woff2") format("woff2"), url("../Fonts//serifpro/source-serif-pro-v11-latin-700.woff") format("woff"), url("../Fonts//serifpro/source-serif-pro-v11-latin-700.ttf") format("truetype"), url("../Fonts//serifpro/source-serif-pro-v11-latin-700.svg#SourceSerifPro") format("svg"); /* Legacy iOS */
}
/*
	Hamburger
*/
.hamburger {
  display: none;
  cursor: pointer;
  position: fixed;
  z-index: 10000;
  top: 20px;
  right: 0;
  padding: 10px;
  overflow: hidden;
  margin: 0 0 0 0px;
  padding: 0;
  width: 50px;
  height: 50px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-transition: all 0.25s 0s;
  -moz-transition: all 0.25s 0s;
  -ms-transition: all 0.25s 0s;
  -o-transition: all 0.25s 0s;
  transition: all 0.25s 0s;
}
@media (max-width: 900px) {
  .hamburger {
    display: block;
  }
}
.hamburger::before, .hamburger::after {
  content: "";
  position: absolute;
  background-color: #000;
  left: 20%;
  right: 20%;
  top: 50%;
  margin-top: 10px;
  height: 2px;
  display: block;
  opacity: 1;
  -webkit-transition: all 0.25s 0s;
  -moz-transition: all 0.25s 0s;
  -ms-transition: all 0.25s 0s;
  -o-transition: all 0.25s 0s;
  transition: all 0.25s 0s;
}
.hamburger:before {
  margin-top: -11px;
}
.hamburger:after {
  margin-top: 9px;
}
.hamburger span {
  background: transparent;
  width: 1px;
  overflow: hidden;
  display: block;
}
.hamburger span::before, .hamburger span::after {
  content: "";
  position: absolute;
  background-color: #000;
  width: 60%;
  left: 20%;
  top: 50%;
  margin-top: -1px;
  height: 2px;
  display: block;
  -webkit-transition: all 0.25s 0s;
  -moz-transition: all 0.25s 0s;
  -ms-transition: all 0.25s 0s;
  -o-transition: all 0.25s 0s;
  transition: all 0.25s 0s;
}

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: #000;
}

/*

	Custom Scrollbar
*/
.areatitlecontainer {
  position: absolute;
  left: 10px;
  top: 50%;
  width: 20px;
  height: 50%;
  z-index: 1000;
}
.areatitlecontainer span {
  font-family: "mont", sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  transform: rotate(-90deg);
  left: -6px;
  opacity: 0;
  position: absolute;
  text-transform: uppercase;
  color: var(--col-highlight);
  white-space: nowrap;
  transform-origin: left top;
  padding: 0 40px;
  display: inline-block;
  -webkit-transition: all 0.6s 0s;
  -moz-transition: all 0.6s 0s;
  -ms-transition: all 0.6s 0s;
  -o-transition: all 0.6s 0s;
  transition: all 0.6s 0s;
}
.areatitlecontainer span.act:first-child {
  opacity: 1;
  left: 2px;
}

.scrollbarcontainer {
  position: absolute;
  left: 10px;
  top: 50%;
  width: 20px;
  height: 47%;
  z-index: 1000;
}
.scrollbarcontainer:before {
  content: "";
  position: absolute;
  left: 16px;
  width: 1px;
  top: 2px;
  bottom: 2px;
  background-color: var(--col-highlight);
}
.scrollbarcontainer .c-scrollbar {
  opacity: 1 !important;
  top: 0%;
  height: 100%;
}
.scrollbarcontainer .c-scrollbar_thumb {
  border-radius: 0;
  width: 3px;
  right: 0;
  background: var(--col-highlight);
  opacity: 1;
  transition: right 0.3s, width 0.3s;
}
.scrollbarcontainer .c-scrollbar:hover {
  transform: scaleX(1);
}
.scrollbarcontainer .c-scrollbar:hover .c-scrollbar_thumb {
  width: 9px;
  right: -3px;
}

aside {
  -webkit-transition: all 0.6s 0s;
  -moz-transition: all 0.6s 0s;
  -ms-transition: all 0.6s 0s;
  -o-transition: all 0.6s 0s;
  transition: all 0.6s 0s;
  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: all 0.3s 0s;
  -moz-transition: all 0.3s 0s;
  -ms-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  -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;
  padding: 10px 5% 0px;
  text-align: left;
  position: fixed;
  width: auto;
  margin: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.9);
  top: 0;
  left: 0;
  right: 0;
}
@media (min-width: 1024px) {
  body > header .groupWrap {
    float: left;
  }
  body > header .metaWrap {
    float: right;
  }
}
body > header .metarow {
  margin-bottom: var(--pad);
  align-items: flex-end;
}
@media (max-width: 900px) {
  body > header .metarow {
    display: none;
  }
}
body > header .mainrow {
  align-items: flex-end;
}
@media (max-width: 900px) {
  body > header .mainrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
  }
}
body > header .logo {
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  -ms-transition: height 0.3s;
  -o-transition: height 0.3s;
  transition: height 0.3s;
  -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;
  width: 16%;
  display: inline-block;
  margin: 0;
}
@media (max-width: 900px) {
  body > header .logo {
    text-align: left;
    height: 50px;
    padding: 7px 20px;
    width: 100%;
  }
  body > header .logo img {
    max-height: 80px;
  }
}
body > header .logo a {
  /* background: transparent url($imgPath+logo.png) no-repeat scroll 0 0; background-size: contain; */
  display: block;
  height: 100%;
  margin: 0;
}
body > header .logo img.logoImg {
  max-width: 300px;
  max-height: 90px;
}
body > header .logo svg {
  width: auto;
  height: 100%;
}
body > header #logoSvg {
  -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;
}
body > header a {
  text-decoration: none;
}
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: 900px) {
  body > header {
    height: 90px;
    padding: 0px 50px 0 20px;
    text-align: center;
    overflow: hidden;
  }
}

@media (min-width: 1024px) {
  body.scrolledLittle > header {
    background: #fff;
  }
  body.scrolledLittle > header .logo {
    height: 25px;
  }
}
body.showMenu > header {
  height: 100%;
  background-color: #ddd;
}

@media (max-width: 900px) {
  .mm-navbars_top .meta_label,
  .leicheSprache {
    display: none !important;
  }
  .mm-navbars_top .mm-navbar > *,
  .mm-navbars_top .mm-navbar button {
    background-color: transparent !important;
  }
}
/*
┌────────────────────────────────────┐
	Navigation
└────────────────────────────────────┘ */
.jumpFullPage {
  position: fixed;
  top: 100px;
  right: 0;
  width: 15px;
  overflow: hidden;
  -webkit-transition: all 0.5s 0s;
  -moz-transition: all 0.5s 0s;
  -ms-transition: all 0.5s 0s;
  -o-transition: all 0.5s 0s;
  transition: all 0.5s 0s;
}
.jumpFullPage li {
  display: block;
  width: 200px;
  background: yellow;
}
.jumpFullPage li.active {
  background: red;
}
.jumpFullPage a {
  display: block;
  padding: 2px 15px;
}
.jumpFullPage:hover {
  width: 200px;
}

/*
┌────────────────────────────────────┐
	Footer
└────────────────────────────────────┘ */
footer {
  padding-bottom: 10px;
}

footer, .footerMenu {
  background: #eaeaea;
  text-align: left;
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 900px) {
  footer, .footerMenu {
    height: auto;
    position: relative;
  }
  footer .cols4 ul, footer section.textImage .text60.image40 .image ul, section.textImage .text60.image40 footer .image ul, .footerMenu .cols4 ul, .footerMenu section.textImage .text60.image40 .image ul, section.textImage .text60.image40 .footerMenu .image ul {
    display: flex;
    justify-items: flex-end;
    justify-content: space-around;
    padding: 0 20px !important;
    flex-wrap: wrap;
  }
  footer .cols4 ul li, footer section.textImage .text60.image40 .image ul li, section.textImage .text60.image40 footer .image ul li, .footerMenu .cols4 ul li, .footerMenu section.textImage .text60.image40 .image ul li, section.textImage .text60.image40 .footerMenu .image ul li {
    width: auto;
  }
  footer .cols4 ul li a, footer section.textImage .text60.image40 .image ul li a, section.textImage .text60.image40 footer .image ul li a, .footerMenu .cols4 ul li a, .footerMenu section.textImage .text60.image40 .image ul li a, section.textImage .text60.image40 .footerMenu .image ul li a {
    padding: 0;
  }
}
footer .ceOut, .footerMenu .ceOut {
  padding: 0 0 !important;
}
footer .ceOut ul, .footerMenu .ceOut ul {
  padding: 0;
  margin: 0;
  font-size: var(--smallfontsize);
}
footer *, .footerMenu * {
  color: #474747;
  text-decoration: none;
  font-style: normal;
}
footer p, .footerMenu p {
  margin: 1.5em 0px 0;
  font-size: var(--smallfontsize);
}
footer p strong, .footerMenu p strong {
  font-size: var(--copyfontsize);
}
footer li, .footerMenu li {
  display: block;
  padding: 0;
  margin: 0;
}
footer li:before, .footerMenu li:before {
  content: "❯";
  display: inline-block;
  padding: 0px 10px 0px 0;
  color: var(--colcorp);
  line-height: 32px;
}
footer .type-text strong, footer .type-text b, .footerMenu .type-text strong, .footerMenu .type-text b {
  color: var(--colcorp);
}

.rootlineWrap {
  margin-top: 10px;
  font-size: var(--copyfontsize);
}
.rootlineWrap .icon_house {
  padding: 0.1em 9px 0 14px;
  padding: 0 9px 0 14px;
  display: inline-block;
  width: 40px;
}
@media (max-width: 900px) {
  .rootlineWrap .icon_house {
    padding: 0 0px 0 20px;
  }
}
.rootlineWrap .icon_house svg {
  width: 100%;
  max-width: 0.9em;
}
.rootlineWrap ul {
  display: inline-block;
}
@media (max-width: 900px) {
  .rootlineWrap ul {
    width: auto !important;
  }
}
.rootlineWrap li {
  display: inline-block;
  margin-right: 13px;
}
.rootlineWrap li:first-child:before {
  display: none;
}
.rootlineWrap li, .rootlineWrap a, .rootlineWrap span {
  display: inline-block;
  line-height: 32px;
  height: 32px;
  overflow: hidden;
  vertical-align: top;
}
.rootlineWrap li.act span {
  font-weight: 600;
  color: #000 !important;
}

.footerMenu {
  border-top: 20px solid #fff;
  border-bottom: 40px solid #fff;
  background: #eaeaea;
}
.footerMenu .ceOut:last-child {
  text-align: right;
}
.footerMenu .ceIn {
  padding: 0;
}
.footerMenu > * {
  display: inline-block;
}
.footerMenu a {
  line-height: 40px;
  padding: 0 20px;
}
.footerMenu ul {
  margin: 0;
  padding: 0;
}
.footerMenu li {
  display: inline-block;
}
@media (max-width: 900px) {
  .footerMenu li {
    width: 50%;
  }
}
.footerMenu li:before {
  display: none;
}

.footerMenu .mk7sociallinks li {
  padding: 0 10px 0 0;
  width: auto !important;
}
.footerMenu .mk7sociallinks li a svg {
  display: inline-block;
  width: 21px;
}
.footerMenu .mk7sociallinks li a svg rect {
  fill: #6B6B6B;
}
.footerMenu .mk7sociallinks li a span {
  display: inline-block;
  position: relative;
  top: -6px;
  padding-left: 6px;
}
@media (max-width: 900px) {
  .footerMenu .mk7sociallinks {
    text-align: center;
    width: 100%;
  }
  .footerMenu .mk7sociallinks .title {
    display: none;
  }
}

/*
┌────────────────────────────────────┐
	Navigation
└────────────────────────────────────┘ */
nav.main {
  text-align: right;
  vertical-align: top;
}
nav.main ul {
  display: inline-block;
  text-align: left;
  margin: 0;
}
nav.main li {
  padding: 0px;
  display: inline-block;
}
nav.main li a {
  text-decoration: none;
  display: block;
  font-style: normal;
  color: #000;
  padding: 5px 20px;
  font-weight: 600;
}
nav.main li a:hover {
  color: #555;
}
nav.main a.level1.act, nav.main a.level1.cur {
  color: var(--colcorp);
}
nav.main .navOne {
  padding: 0px 0 0;
}
nav.main li.level1:last-child a {
  padding-right: 0;
}
nav.main a.level1 {
  padding: 25px 1.2vw 10px;
  padding: 25px clamp(10px, 1.1vw, 19px) 10px;
}
nav.main li.level1 span.arrowIcon {
  opacity: 0;
  width: 17px;
  height: 20px;
  display: block;
  text-align: center;
  margin: 0 auto;
  position: relative;
  top: 0;
  -webkit-transition: all 0.3s 0s;
  -moz-transition: all 0.3s 0s;
  -ms-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}
nav.main li.level1 span.arrowIcon svg path {
  fill: var(--colcorp);
}
nav.main li.level1.hassub span.arrowIcon {
  opacity: 1;
}
nav.main li.level1:hover a.level1:after, nav.main li.level1:hover span.arrowIcon {
  top: 10px;
}
nav.main ul.level2 {
  opacity: 0; /* height: 1px; overflow: hidden;  */
  position: absolute;
  pointer-events: none;
  left: 0;
  right: 0;
  -webkit-transition: all 0.5s 0s;
  -moz-transition: all 0.5s 0s;
  -ms-transition: all 0.5s 0s;
  -o-transition: all 0.5s 0s;
  transition: all 0.5s 0s;
}
nav.main li.level1.focus + ul.level2,
nav.main li.level1.focus ul.level2, nav.main li.level1:hover + ul.level2,
nav.main li.level1:hover ul.level2, nav.main li.level1:focus + ul.level2,
nav.main li.level1:focus ul.level2,
nav.main li.level1 > a:hover + ul.level2,
nav.main li.level1 > a:hover ul.level2,
nav.main li.level1 > a:focus + ul.level2,
nav.main li.level1 > a:focus ul.level2, nav.main li.level1:focus-within + ul.level2,
nav.main li.level1:focus-within ul.level2 {
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 900px) {
  nav.main {
    display: block;
    padding: 0px;
    margin: 0;
    float: none;
  }
  nav.main ul {
    padding: 0;
  }
  nav.main li {
    padding: 0px;
    display: block;
    margin: 0;
  }
  nav.main li a {
    color: #000;
    font-size: calc(1.8rem + 1vh);
    line-height: 2.4;
  }
}

/*
	Jumbo Menu
*/
header .rowx {
  position: relative;
}

nav.main ul.level2 {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  left: 0;
  width: 100%;
  top: 100%;
  min-height: 320px !important;
  padding-bottom: 20px;
  background: var(--col-menubg);
  vertical-align: top;
  border-top: 10px solid var(--colcorp);
}
nav.main li.level2 {
  flex: 1 1 auto;
  position: relative;
  vertical-align: top;
  display: block;
  padding-top: 10px;
}
nav.main a.level2 {
  color: var(--colcorp);
}
nav.main a.level3 {
  color: var(--col-menucol);
  padding: 1px 20px;
}
nav.main ul.level3 li.level3 {
  display: block;
  font-size: var(--smallfontsize);
}
nav.main a.level2:hover, nav.main a.level3:hover {
  background-color: #fff;
  color: var(--colcorp);
}

/*
┌────────────────────────────────────────────┐
  Menü Seite die nicht 100% breit sein sollen
└────────────────────────────────────────────┘ */
body.nesthaekchen li.level1,
li.id95,
body.zuhause_gmbh li.id394,
body.hospizium_wiesbaden li.id660,
body.hospizium #mainMenu li.level1,
body li.level1.children1 {
  position: relative;
}
body.nesthaekchen li.level1 > ul,
li.id95 > ul,
body.zuhause_gmbh li.id394 > ul,
body.hospizium_wiesbaden li.id660 > ul,
body.hospizium #mainMenu li.level1 > ul,
body li.level1.children1 > ul {
  left: 50% !important;
  transform: translateX(-50%);
  min-width: 240px;
  display: block;
}
body.nesthaekchen li.level1 > ul ul,
li.id95 > ul ul,
body.zuhause_gmbh li.id394 > ul ul,
body.hospizium_wiesbaden li.id660 > ul ul,
body.hospizium #mainMenu li.level1 > ul ul,
body li.level1.children1 > ul ul {
  display: block;
}
body.nesthaekchen li.level1 > ul li,
li.id95 > ul li,
body.zuhause_gmbh li.id394 > ul li,
body.hospizium_wiesbaden li.id660 > ul li,
body.hospizium #mainMenu li.level1 > ul li,
body li.level1.children1 > ul li {
  display: block;
}
body.nesthaekchen li.level1:last-child > ul,
li.id95:last-child > ul,
body.zuhause_gmbh li.id394:last-child > ul,
body.hospizium_wiesbaden li.id660:last-child > ul,
body.hospizium #mainMenu li.level1:last-child > ul,
body li.level1.children1:last-child > ul {
  left: 100% !important;
  transform: translateX(-100%);
}

/*
┌────────────────────────────────────────────┐
  Menü in zwei reihen
└────────────────────────────────────────────┘ */
li.id12 li.level2 {
  flex: 1 0 30%;
}

/*
┌────────────────────────────────────┐
	Sprachwahl
└────────────────────────────────────┘ */
.navLang {
  height: 40px;
  overflow: hidden;
  padding-top: 40px;
  position: absolute;
  right: 0;
  top: 20px;
  -webkit-transition: all 0.5s 0s;
  -moz-transition: all 0.5s 0s;
  -ms-transition: all 0.5s 0s;
  -o-transition: all 0.5s 0s;
  transition: all 0.5s 0s;
}
.navLang li {
  display: block;
  opacity: 0;
  -webkit-transition: all 0.5s 0s;
  -moz-transition: all 0.5s 0s;
  -ms-transition: all 0.5s 0s;
  -o-transition: all 0.5s 0s;
  transition: all 0.5s 0s;
  width: 77px;
}
.navLang li a {
  display: inline-block;
  padding: 5px;
  text-decoration: none;
  font-weight: 300;
}
.navLang li.langActive {
  opacity: 1;
  position: absolute;
  top: 0;
  font-weight: 500;
  padding: 6px;
}
.navLang li.langActive a {
  font-weight: 500;
}
.navLang li.langAvailable {
  -webkit-transition: all 0.5s 0s;
  -moz-transition: all 0.5s 0s;
  -ms-transition: all 0.5s 0s;
  -o-transition: all 0.5s 0s;
  transition: all 0.5s 0s;
  background-color: transparent;
}
.navLang li.langAvailable a {
  font-weight: 500;
}
.navLang li.langAvailable:hover {
  background: #223967;
}
.navLang li.langNotAvailable a {
  cursor: default;
  pointer-events: none;
  color: #aaa;
}
.navLang:hover {
  overflow: visible;
  height: 200px;
  background-color: #ddd;
}
.navLang:hover li {
  opacity: 1;
}

.metarow a, .metarow button {
  font-size: var(--smallfontsize);
  color: #474747;
  font-weight: 400;
  font-family: "Source Sans Pro", sans-serif;
  line-height: 35px;
}
@media (max-width: 900px) {
  .metarow .leicheSprache, .metarow .kontakt, .metarow .networklink, .metarow .mk7sociallinks, .metarow .joblink, .metarow .sucheEinblenden {
    opacity: 0.2;
    visibility: hidden;
  }
}

.metaWrap {
  text-align: right;
}

nav.meta {
  font-size: 1.4rem;
  z-index: 300;
}
nav.meta a {
  margin-left: 0px;
}
nav.meta a button {
  margin-left: 0;
}
nav.meta span.icon {
  width: 21px;
  height: 21px;
  display: inline-block;
  position: relative;
  top: 6px;
  margin: 0px 1px;
}
nav.meta span.icon svg {
  height: 100%;
  width: auto;
}
nav.meta button {
  position: relative;
  display: inline-block;
  margin: 0 0 0 6px;
  line-height: 1.7;
  background: transparent;
  border: 0;
  outline: none;
}
@media (max-width: 900px) {
  nav.meta {
    top: 100vh;
    transform: translateY(-100%);
  }
  nav.meta > * {
    margin: 0px 0;
    display: inline-block;
  }
}

.networklink {
  display: none;
}

/*! 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:only-child {
  display: none;
}

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

/*
	Dots
*/
.flickity-page-dots {
  bottom: 0;
  padding: 20px 0;
  margin: 0;
}
@media (max-width: 900px) {
  .flickity-page-dots {
    padding: 4px 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(--colcorp);
}
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: 80px;
}
.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 0s;
  -moz-transition: all 0.4s 0s;
  -ms-transition: all 0.4s 0s;
  -o-transition: all 0.4s 0s;
  transition: all 0.4s 0s;
}
@media (max-width: 900px) {
  .flickity-button.flickity-prev-next-button.previous {
    left: -20px;
  }
}
.flickity-button.flickity-prev-next-button.next {
  right: 0;
}
@media (max-width: 900px) {
  .flickity-button.flickity-prev-next-button.next {
    right: -20px;
  }
}
.slides[data-length="1"] .flickity-button.flickity-prev-next-button {
  display: none;
}

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;
}

/*!
 * mmenu.js
 * mmenujs.com
 *
 * Copyright (c) Fred Heusschen
 * frebsite.nl
 *
 * License: CC-BY-NC-4.0
 * http://creativecommons.org/licenses/by-nc/4.0/
 */
:root {
  --mm-line-height:20px;
  --mm-listitem-size:44px;
  --mm-navbar-size:44px;
  --mm-offset-top:0;
  --mm-offset-right:0;
  --mm-offset-bottom:0;
  --mm-offset-left:0;
  --mm-color-border:rgba(0, 0, 0, 0.1);
  --mm-color-button:rgba(0, 0, 0, 0.3);
  --mm-color-text:rgba(0, 0, 0, 0.75);
  --mm-color-text-dimmed:rgba(0, 0, 0, 0.3);
  --mm-color-background:#f3f3f3;
  --mm-color-background-highlight:rgba(0, 0, 0, 0.05);
  --mm-color-background-emphasis:rgba(255, 255, 255, 0.4);
  --mm-shadow:0 0 10px rgba(0, 0, 0, 0.3);
}

.mm-hidden {
  display: none !important;
}

.mm-wrapper {
  overflow-x: hidden;
  position: relative;
}

.mm-menu {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: var(--mm-offset-top);
  right: var(--mm-offset-right);
  bottom: var(--mm-offset-bottom);
  left: var(--mm-offset-left);
  z-index: 0;
  -ms-scroll-chaining: chained;
  overscroll-behavior: auto;
  background: var(--mm-color-background);
  border-color: var(--mm-color-border);
  color: var(--mm-color-text);
  line-height: var(--mm-line-height);
  -webkit-tap-highlight-color: var(--mm-color-background-emphasis);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mm-menu a, .mm-menu a:active, .mm-menu a:hover, .mm-menu a:link, .mm-menu a:visited {
  text-decoration: none;
  color: inherit;
}

[dir=rtl] .mm-menu {
  direction: rtl;
}

.mm-panel {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  z-index: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  overflow-y: auto;
  color: var(--mm-color-text);
  border-color: var(--mm-color-border);
  background: var(--mm-color-background);
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.mm-panel:after {
  height: 44px;
}

.mm-panel:not(.mm-hidden) {
  display: block;
}

.mm-panel:after {
  content: "";
  display: block;
  height: var(--mm-listitem-size);
}

.mm-panel_opened {
  z-index: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-panel_opened-parent {
  -webkit-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}

.mm-panel_highest {
  z-index: 2;
}

.mm-panel_noanimation {
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.mm-panel_noanimation.mm-panel_opened-parent {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-panels > .mm-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.mm-panel__content {
  padding: 20px 20px 0;
}

.mm-panels {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  position: relative;
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: hidden;
  background: var(--mm-color-background);
  border-color: var(--mm-color-border);
  color: var(--mm-color-text);
}

[dir=rtl] .mm-panel:not(.mm-panel_opened) {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

[dir=rtl] .mm-panel.mm-panel_opened-parent {
  -webkit-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0);
}

.mm-listitem_vertical > .mm-panel {
  display: none;
  width: 100%;
  padding: 10px 0 10px 10px;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}

.mm-listitem_vertical > .mm-panel:after, .mm-listitem_vertical > .mm-panel:before {
  content: none;
  display: none;
}

.mm-listitem_opened > .mm-panel {
  display: block;
}

.mm-listitem_vertical > .mm-listitem__btn {
  height: 44px;
  height: var(--mm-listitem-size);
  bottom: auto;
}

.mm-listitem_vertical .mm-listitem:last-child:after {
  border-color: transparent;
}

.mm-listitem_opened > .mm-listitem__btn:after {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  right: 19px;
}

.mm-btn {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50px;
  padding: 0;
}

.mm-btn:after, .mm-btn:before {
  border: 2px solid rgba(0, 0, 0, 0.3);
  border: 2px solid var(--mm-color-button);
}

.mm-btn_next:after, .mm-btn_prev:before {
  content: "";
  border-bottom: none;
  border-right: none;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
}

.mm-btn_prev:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 23px;
  right: auto;
}

.mm-btn_next:after {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  right: 23px;
  left: auto;
}

.mm-btn_close:after, .mm-btn_close:before {
  content: "";
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: block;
  width: 5px;
  height: 5px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mm-btn_close:before {
  border-right: none;
  border-bottom: none;
  right: 18px;
}

.mm-btn_close:after {
  border-left: none;
  border-top: none;
  right: 25px;
}

[dir=rtl] .mm-btn_next:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 23px;
  right: auto;
}

[dir=rtl] .mm-btn_prev:before {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  right: 23px;
  left: auto;
}

[dir=rtl] .mm-btn_close:after, [dir=rtl] .mm-btn_close:before {
  right: auto;
}

[dir=rtl] .mm-btn_close:before {
  left: 25px;
}

[dir=rtl] .mm-btn_close:after {
  left: 18px;
}

.mm-navbar {
  min-height: 44px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #f3f3f3;
  color: rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: var(--mm-navbar-size);
  border-bottom: 1px solid var(--mm-color-border);
  background: var(--mm-color-background);
  color: var(--mm-color-text-dimmed);
  text-align: center;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.mm-navbar > * {
  min-height: 44px;
}

@supports (position: -webkit-sticky) or (position: sticky) {
  .mm-navbar_sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
  }
}
.mm-navbar > * {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mm-navbar__btn {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.mm-navbar__title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
}

.mm-navbar__title:not(:last-child) {
  padding-right: 0;
}

.mm-navbar__title > span {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mm-navbar__btn:not(.mm-hidden) + .mm-navbar__title {
  padding-left: 0;
}

.mm-navbar__btn:not(.mm-hidden) + .mm-navbar__title:last-child {
  padding-right: 50px;
}

[dir=rtl] .mm-navbar {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.mm-listview {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}

.mm-listitem {
  color: rgba(0, 0, 0, 0.75);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--mm-color-text);
  border-color: var(--mm-color-border);
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.mm-listitem:after {
  content: "";
  border-color: inherit;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  left: 20px;
  right: 0;
  bottom: 0;
}

.mm-listitem a, .mm-listitem a:hover {
  text-decoration: none;
}

.mm-listitem__btn, .mm-listitem__text {
  padding: 12px;
  display: block;
  padding: calc((var(--mm-listitem-size) - var(--mm-line-height)) / 2);
  padding-left: 0;
  padding-right: 0;
  color: inherit;
}

.mm-listitem__text {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 10px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 10%;
  flex-basis: 10%;
}

.mm-listitem__btn {
  background: rgba(3, 2, 1, 0);
  border-color: inherit;
  width: auto;
  padding-right: 50px;
  position: relative;
}

.mm-listitem__btn:not(.mm-listitem__text) {
  border-left-width: 1px;
  border-left-style: solid;
}

.mm-listitem_selected > .mm-listitem__text {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
}

.mm-listitem_opened > .mm-listitem__btn, .mm-listitem_opened > .mm-panel {
  background: rgba(0, 0, 0, 0.05);
  background: var(--mm-color-background-highlight);
}

[dir=rtl] .mm-listitem:after {
  left: 0;
  right: 20px;
}

[dir=rtl] .mm-listitem__text {
  padding-left: 10px;
  padding-right: 20px;
}

[dir=rtl] .mm-listitem__btn {
  padding-left: 50px;
  border-left-width: 0;
  border-left-style: none;
}

[dir=rtl] .mm-listitem__btn:not(.mm-listitem__text) {
  padding-right: 0;
  border-right-width: 1px;
  border-right-style: solid;
}

.mm-page {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.mm-slideout {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: 1;
}

.mm-wrapper_opened {
  overflow-x: hidden;
  position: relative;
}

.mm-wrapper_opened .mm-page {
  min-height: 100vh;
}

.mm-wrapper_background .mm-page {
  background: inherit;
}

.mm-menu_offcanvas {
  position: fixed;
  right: auto;
  z-index: 0;
}

.mm-menu_offcanvas:not(.mm-menu_opened) {
  display: none;
}

.mm-menu_offcanvas {
  width: 80%;
  min-width: 240px;
  max-width: 440px;
}

.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0);
  }
}
@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(440px, 0, 0);
    transform: translate3d(440px, 0, 0);
  }
}
.mm-wrapper__blocker {
  background: rgba(3, 2, 1, 0);
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.mm-wrapper_blocking {
  overflow: hidden;
}

.mm-wrapper_blocking body {
  overflow: hidden;
}

.mm-wrapper_blocking .mm-wrapper__blocker {
  display: block;
}

.mm-sronly {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  width: 1px !important;
  min-width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
}

.mm-menu_autoheight:not(.mm-menu_offcanvas) {
  position: relative;
}

.mm-menu_autoheight.mm-menu_position-bottom, .mm-menu_autoheight.mm-menu_position-top {
  max-height: 80%;
}

.mm-menu_autoheight-measuring .mm-panel {
  display: block !important;
}

.mm-menu_autoheight-measuring .mm-panels > .mm-panel {
  bottom: auto !important;
  height: auto !important;
}

.mm-menu_autoheight-measuring .mm-listitem_vertical:not(.mm-listitem_opened) .mm-panel {
  display: none !important;
}

[class*=mm-menu_columns-] {
  -webkit-transition-property: width;
  -o-transition-property: width;
  transition-property: width;
}

[class*=mm-menu_columns-] .mm-panels > .mm-panel {
  right: auto;
  -webkit-transition-property: width, -webkit-transform;
  transition-property: width, -webkit-transform;
  -o-transition-property: width, transform;
  transition-property: width, transform;
  transition-property: width, transform, -webkit-transform;
}

[class*=mm-menu_columns-] .mm-panels > .mm-panel_opened, [class*=mm-menu_columns-] .mm-panels > .mm-panel_opened-parent {
  display: block !important;
}

[class*=mm-panel_columns-] {
  border-right: 1px solid;
  border-color: inherit;
}

.mm-menu_columns-1 .mm-panel_columns-0, .mm-menu_columns-2 .mm-panel_columns-1, .mm-menu_columns-3 .mm-panel_columns-2, .mm-menu_columns-4 .mm-panel_columns-3 {
  border-right: none;
}

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-0 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-menu_columns-0 .mm-panels > .mm-panel {
  z-index: 0;
}

.mm-menu_columns-0 .mm-panels > .mm-panel else {
  width: 100%;
}

.mm-menu_columns-0 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.mm-menu_columns-0 {
  width: 80%;
  min-width: 240px;
  max-width: 0;
}

.mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0);
  }
}
@media all and (min-width: 0px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0);
  }
}
@media all and (min-width: 0px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-1 {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.mm-menu_columns-1 .mm-panels > .mm-panel {
  z-index: 1;
  width: 100%;
}

.mm-menu_columns-1 .mm-panels > .mm-panel else {
  width: 100%;
}

.mm-menu_columns-1 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate3d(200%, 0, 0);
  transform: translate3d(200%, 0, 0);
}

.mm-menu_columns-1 {
  width: 80%;
  min-width: 240px;
  max-width: 440px;
}

.mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0);
  }
}
@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(440px, 0, 0);
    transform: translate3d(440px, 0, 0);
  }
}
.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0);
  }
}
@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-440px, 0, 0);
    transform: translate3d(-440px, 0, 0);
  }
}
[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-2 {
  -webkit-transform: translate3d(200%, 0, 0);
  transform: translate3d(200%, 0, 0);
}

.mm-menu_columns-2 .mm-panels > .mm-panel {
  z-index: 2;
  width: 50%;
}

.mm-menu_columns-2 .mm-panels > .mm-panel else {
  width: 100%;
}

.mm-menu_columns-2 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate3d(300%, 0, 0);
  transform: translate3d(300%, 0, 0);
}

.mm-menu_columns-2 {
  width: 80%;
  min-width: 240px;
  max-width: 880px;
}

.mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0);
  }
}
@media all and (min-width: 1100px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(880px, 0, 0);
    transform: translate3d(880px, 0, 0);
  }
}
.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0);
  }
}
@media all and (min-width: 1100px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-880px, 0, 0);
    transform: translate3d(-880px, 0, 0);
  }
}
[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-3 {
  -webkit-transform: translate3d(300%, 0, 0);
  transform: translate3d(300%, 0, 0);
}

.mm-menu_columns-3 .mm-panels > .mm-panel {
  z-index: 3;
  width: 33.34%;
}

.mm-menu_columns-3 .mm-panels > .mm-panel else {
  width: 100%;
}

.mm-menu_columns-3 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate3d(400%, 0, 0);
  transform: translate3d(400%, 0, 0);
}

.mm-menu_columns-3 {
  width: 80%;
  min-width: 240px;
  max-width: 1320px;
}

.mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0);
  }
}
@media all and (min-width: 1650px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(1320px, 0, 0);
    transform: translate3d(1320px, 0, 0);
  }
}
.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0);
  }
}
@media all and (min-width: 1650px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-1320px, 0, 0);
    transform: translate3d(-1320px, 0, 0);
  }
}
[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-4 {
  -webkit-transform: translate3d(400%, 0, 0);
  transform: translate3d(400%, 0, 0);
}

.mm-menu_columns-4 .mm-panels > .mm-panel {
  z-index: 4;
  width: 25%;
}

.mm-menu_columns-4 .mm-panels > .mm-panel else {
  width: 100%;
}

.mm-menu_columns-4 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate3d(500%, 0, 0);
  transform: translate3d(500%, 0, 0);
}

.mm-menu_columns-4 {
  width: 80%;
  min-width: 240px;
  max-width: 1760px;
}

.mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0);
  }
}
@media all and (min-width: 2200px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(1760px, 0, 0);
    transform: translate3d(1760px, 0, 0);
  }
}
.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0);
  }
}
@media all and (min-width: 2200px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-1760px, 0, 0);
    transform: translate3d(-1760px, 0, 0);
  }
}
[class*=mm-menu_columns-].mm-menu_position-bottom, [class*=mm-menu_columns-].mm-menu_position-top {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}

.mm-wrapper_opening [class*=mm-menu_columns-].mm-menu_position-front {
  -webkit-transition-property: width, min-width, max-width, -webkit-transform;
  transition-property: width, min-width, max-width, -webkit-transform;
  -o-transition-property: width, min-width, max-width, transform;
  transition-property: width, min-width, max-width, transform;
  transition-property: width, min-width, max-width, transform, -webkit-transform;
}

.mm-counter {
  color: rgba(0, 0, 0, 0.3);
  display: block;
  padding-left: 20px;
  float: right;
  text-align: right;
  color: var(--mm-color-text-dimmed);
}

.mm-listitem_nosubitems > .mm-counter {
  display: none;
}

[dir=rtl] .mm-counter {
  text-align: left;
  float: left;
  padding-left: 0;
  padding-right: 20px;
}

.mm-divider {
  position: relative;
  min-height: 20px;
  padding: 4.3px;
  background: #f3f3f3;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  min-height: var(--mm-line-height);
  padding: calc((var(--mm-listitem-size) * 0.65 - var(--mm-line-height)) * 0.5);
  padding-right: 10px;
  padding-left: 20px;
  font-size: 75%;
  text-transform: uppercase;
  background: var(--mm-color-background);
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.mm-divider:before {
  background: rgba(0, 0, 0, 0.05);
}

@supports (position: -webkit-sticky) or (position: sticky) {
  .mm-divider {
    position: -webkit-sticky;
    position: sticky;
    z-index: 2;
    top: 0;
  }
  .mm-navbar_sticky:not(.mm-hidden) ~ .mm-listview .mm-divider {
    top: var(--mm-navbar-size);
  }
}
.mm-divider:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--mm-color-background-highlight);
}

.mm-wrapper_dragging .mm-menu, .mm-wrapper_dragging .mm-slideout {
  -webkit-transition-duration: 0s !important;
  -o-transition-duration: 0s !important;
  transition-duration: 0s !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.mm-wrapper_dragging .mm-menu {
  pointer-events: none !important;
}

.mm-wrapper_dragging .mm-wrapper__blocker {
  display: none !important;
}

.mm-menu_dropdown {
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  height: 80%;
}

.mm-wrapper_dropdown .mm-slideout {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  z-index: 0;
}

.mm-wrapper_dropdown .mm-wrapper__blocker {
  -webkit-transition-delay: 0s !important;
  -o-transition-delay: 0s !important;
  transition-delay: 0s !important;
  z-index: 1;
}

.mm-wrapper_dropdown .mm-menu_dropdown {
  z-index: 2;
}

.mm-wrapper_dropdown.mm-wrapper_opened:not(.mm-wrapper_opening) .mm-menu_dropdown {
  display: none;
}

.mm-menu_tip-bottom:before, .mm-menu_tip-left:before, .mm-menu_tip-right:before, .mm-menu_tip-top:before {
  content: "";
  background: inherit;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  z-index: -1;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mm-menu_tip-left:before {
  left: 22px;
}

.mm-menu_tip-right:before {
  right: 22px;
}

.mm-menu_tip-top:before {
  top: -8px;
}

.mm-menu_tip-bottom:before {
  bottom: -8px;
}

:root {
  --mm-iconbar-size:50px;
}

.mm-menu_iconbar-left .mm-navbars_bottom, .mm-menu_iconbar-left .mm-navbars_top, .mm-menu_iconbar-left .mm-panels {
  margin-left: 50px;
  margin-left: var(--mm-iconbar-size);
}

.mm-menu_iconbar-right .mm-navbars_bottom, .mm-menu_iconbar-right .mm-navbars_top, .mm-menu_iconbar-right .mm-panels {
  margin-right: 50px;
  margin-right: var(--mm-iconbar-size);
}

.mm-iconbar {
  width: 50px;
  border-color: rgba(0, 0, 0, 0.1);
  background: #f3f3f3;
  color: rgba(0, 0, 0, 0.3);
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: var(--mm-iconbar-size);
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0 solid;
  border-color: var(--mm-color-border);
  background: var(--mm-color-background);
  color: var(--mm-color-text-dimmed);
  text-align: center;
}

.mm-menu_iconbar-left .mm-iconbar, .mm-menu_iconbar-right .mm-iconbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.mm-menu_iconbar-left .mm-iconbar {
  border-right-width: 1px;
  left: 0;
}

.mm-menu_iconbar-right .mm-iconbar {
  border-left-width: 1px;
  right: 0;
}

.mm-iconbar__bottom, .mm-iconbar__top {
  width: 100%;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  overflow-y: auto;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.mm-iconbar__bottom > *, .mm-iconbar__top > * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  padding: 12.5px 0;
}

.mm-iconbar__bottom a, .mm-iconbar__bottom a:hover, .mm-iconbar__top a, .mm-iconbar__top a:hover {
  text-decoration: none;
}

.mm-iconbar__tab_selected {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
}

:root {
  --mm-iconpanel-size:50px;
}

.mm-panel_iconpanel-1 {
  width: calc(100% - 50px);
  width: calc(100% - var(--mm-iconpanel-size) * 1);
}

.mm-panel_iconpanel-2 {
  width: calc(100% - 100px);
  width: calc(100% - var(--mm-iconpanel-size) * 2);
}

.mm-panel_iconpanel-3 {
  width: calc(100% - 150px);
  width: calc(100% - var(--mm-iconpanel-size) * 3);
}

.mm-panel_iconpanel-first ~ .mm-panel {
  width: calc(100% - 50px);
  width: calc(100% - var(--mm-iconpanel-size));
}

.mm-menu_iconpanel .mm-panels > .mm-panel {
  left: auto;
  -webkit-transition-property: width, -webkit-transform;
  transition-property: width, -webkit-transform;
  -o-transition-property: transform, width;
  transition-property: transform, width;
  transition-property: transform, width, -webkit-transform;
}

.mm-menu_iconpanel .mm-panels > .mm-panel_opened, .mm-menu_iconpanel .mm-panels > .mm-panel_opened-parent {
  display: block !important;
}

.mm-menu_iconpanel .mm-panels > .mm-panel_opened-parent {
  overflow-y: hidden;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
}

.mm-menu_iconpanel .mm-panels > .mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
  border-left-width: 1px;
  border-left-style: solid;
}

.mm-menu_hidedivider .mm-panel_opened-parent .mm-divider, .mm-menu_hidenavbar .mm-panel_opened-parent .mm-navbar {
  opacity: 0;
}

.mm-panel__blocker {
  background: inherit;
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.mm-panel_opened-parent .mm-panel__blocker {
  opacity: 0.6;
  bottom: -100000px;
}

[dir=rtl] .mm-menu_iconpanel .mm-panels > .mm-panel {
  left: 0;
  right: auto;
  -webkit-transition-property: width, -webkit-transform;
  transition-property: width, -webkit-transform;
  -o-transition-property: transform, width;
  transition-property: transform, width;
  transition-property: transform, width, -webkit-transform;
}

[dir=rtl] .mm-menu_iconpanel .mm-panels > .mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
  border-left: none;
  border-right: 1px solid;
  border-color: inherit;
}

.mm-menu_keyboardfocus a:focus, .mm-menu_keyboardfocus.mm-menu_opened ~ .mm-wrapper__blocker a:focus {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
  outline: 0;
}

.mm-wrapper__blocker .mm-tabstart {
  cursor: default;
  display: block;
  width: 100%;
  height: 100%;
}

.mm-wrapper__blocker .mm-tabend {
  opacity: 0;
  position: absolute;
  bottom: 0;
}

.mm-navbars_top {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.mm-navbars_top .mm-navbar:not(:last-child) {
  border-bottom: none;
}

.mm-navbars_bottom {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.mm-navbars_bottom .mm-navbar {
  border-bottom: none;
}

.mm-navbars_bottom .mm-navbar:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--mm-color-border);
}

.mm-btn:not(.mm-hidden) + .mm-navbar__searchfield .mm-searchfield__input {
  padding-left: 0;
}

.mm-navbar__searchfield:not(:last-child) .mm-searchfield__input {
  padding-right: 0;
}

.mm-navbar__breadcrumbs {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.mm-navbar__breadcrumbs > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-right: 6px;
}

.mm-navbar__breadcrumbs > a {
  text-decoration: underline;
}

.mm-navbar__breadcrumbs:not(:last-child) {
  padding-right: 0;
}

.mm-btn:not(.mm-hidden) + .mm-navbar__breadcrumbs {
  padding-left: 0;
}

.mm-navbar_tabs > * {
  padding: 0 10px;
  border: 1px solid transparent;
}

.mm-navbar__tab_selected {
  background: #f3f3f3;
  color: rgba(0, 0, 0, 0.75);
  background: var(--mm-color-background);
  color: var(--mm-color-text);
}

.mm-navbar__tab_selected:not(:first-child) {
  border-left-color: rgba(0, 0, 0, 0.1);
}

.mm-navbar__tab_selected:not(:last-child) {
  border-right-color: rgba(0, 0, 0, 0.1);
}

.mm-navbar__tab_selected:not(:first-child) {
  border-left-color: var(--mm-color-border);
}

.mm-navbar__tab_selected:not(:last-child) {
  border-right-color: var(--mm-color-border);
}

.mm-navbars_top .mm-navbar_tabs {
  border-bottom: none;
}

.mm-navbars_top .mm-navbar_tabs > * {
  border-bottom-color: rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--mm-color-border);
}

.mm-navbars_top .mm-navbar__tab_selected {
  border-top-color: rgba(0, 0, 0, 0.1);
  border-top-color: var(--mm-color-border);
  border-bottom-color: transparent;
}

.mm-navbars_top.mm-navbars_has-tabs .mm-navbar {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
}

.mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar {
  background: #f3f3f3;
  background: var(--mm-color-background);
}

.mm-navbars_bottom .mm-navbar_tabs:first-child {
  border-top: none;
}

.mm-navbars_bottom .mm-navbar_tabs > * {
  border-top-color: rgba(0, 0, 0, 0.1);
  border-top-color: var(--mm-color-border);
}

.mm-navbars_bottom .mm-navbar__tab_selected {
  border-bottom-color: rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--mm-color-border);
  border-top-color: transparent;
}

.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar {
  background: #f3f3f3;
  background: var(--mm-color-background);
}

.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs, .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
}

.mm-searchfield {
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: var(--mm-navbar-size);
  padding: 0;
  overflow: hidden;
}

.mm-searchfield input {
  height: 30.8px;
  line-height: 30.8px;
}

.mm-searchfield input, .mm-searchfield input:focus, .mm-searchfield input:hover {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.75);
}

.mm-searchfield input {
  display: block;
  width: 100%;
  max-width: 100%;
  height: calc(var(--mm-navbar-size) * 0.7);
  min-height: unset;
  max-height: unset;
  margin: 0;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none !important;
  border-radius: 4px;
  line-height: calc(var(--mm-navbar-size) * 0.7);
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: 0 !important;
  font: inherit;
  font-size: inherit;
}

.mm-searchfield input, .mm-searchfield input:focus, .mm-searchfield input:hover {
  background: var(--mm-color-background-highlight);
  color: var(--mm-color-text);
}

.mm-searchfield input::-ms-clear {
  display: none;
}

.mm-searchfield__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mm-panel__noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
  padding: 50px 0;
  color: var(--mm-color-text-dimmed);
  text-align: center;
  font-size: 150%;
}

.mm-searchfield__btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.mm-panel_search {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  border-left: none !important;
}

.mm-searchfield__cancel {
  line-height: 44px;
  display: block;
  padding-right: 10px;
  margin-right: -100px;
  line-height: var(--mm-navbar-size);
  text-decoration: none;
  -webkit-transition: margin 0.4s ease;
  -o-transition: margin 0.4s ease;
  transition: margin 0.4s ease;
}

.mm-searchfield__cancel-active {
  margin-right: 0;
}

.mm-listitem_nosubitems > .mm-listitem__btn {
  display: none;
}

.mm-listitem_nosubitems > .mm-listitem__text {
  padding-right: 10px;
}

.mm-listitem_onlysubitems > .mm-listitem__text:not(.mm-listitem__btn) {
  z-index: -1;
  pointer-events: none;
}

.mm-sectionindexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  z-index: 5;
  -webkit-transition: right 0.4s ease;
  -o-transition: right 0.4s ease;
  transition: right 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.mm-sectionindexer a {
  color: rgba(0, 0, 0, 0.3);
  color: var(--mm-color-text-dimmed);
  line-height: 1;
  text-decoration: none;
  display: block;
}

.mm-sectionindexer ~ .mm-panel {
  padding-right: 0;
}

.mm-sectionindexer_active {
  right: 0;
}

.mm-sectionindexer_active ~ .mm-panel {
  padding-right: 20px;
}

.mm-menu_selected-hover .mm-listitem__btn, .mm-menu_selected-hover .mm-listitem__text, .mm-menu_selected-parent .mm-listitem__btn, .mm-menu_selected-parent .mm-listitem__text {
  -webkit-transition: background-color 0.4s ease;
  -o-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}

.mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected:not(:hover) > .mm-listitem__text {
  background: 0 0;
}

.mm-menu_selected-hover .mm-listitem__btn:hover, .mm-menu_selected-hover .mm-listitem__text:hover {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
}

.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) > .mm-listitem__text {
  background: 0 0;
}

.mm-menu_selected-parent .mm-listitem_selected-parent > .mm-listitem__btn, .mm-menu_selected-parent .mm-listitem_selected-parent > .mm-listitem__text {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
}

:root {
  --mm-sidebar-collapsed-size:50px;
  --mm-sidebar-expanded-size:440px;
}

.mm-wrapper_sidebar-collapsed body, .mm-wrapper_sidebar-expanded body {
  position: relative;
}

.mm-wrapper_sidebar-collapsed .mm-slideout, .mm-wrapper_sidebar-expanded .mm-slideout {
  -webkit-transition-property: width, -webkit-transform;
  transition-property: width, -webkit-transform;
  -o-transition-property: width, transform;
  transition-property: width, transform;
  transition-property: width, transform, -webkit-transform;
}

.mm-wrapper_sidebar-collapsed .mm-page, .mm-wrapper_sidebar-expanded .mm-page {
  background: inherit;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 100vh;
}

.mm-wrapper_sidebar-collapsed .mm-menu_sidebar-collapsed, .mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  top: 0 !important;
  right: auto !important;
  bottom: 0 !important;
  left: 0 !important;
}

.mm-wrapper_sidebar-collapsed .mm-slideout {
  width: calc(100% - 50px);
  -webkit-transform: translate3d(50px, 0, 0);
  transform: translate3d(50px, 0, 0);
  width: calc(100% - var(--mm-sidebar-collapsed-size));
  -webkit-transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0);
  transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0);
}

.mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidedivider .mm-divider, .mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidenavbar .mm-navbar {
  opacity: 0;
}

.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
  width: 440px;
  width: var(--mm-sidebar-expanded-size);
  min-width: 0 !important;
  max-width: 100000px !important;
  border-right-width: 1px;
  border-right-style: solid;
}

.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded.mm-menu_pageshadow:after {
  content: none;
  display: none;
}

.mm-wrapper_sidebar-expanded.mm-wrapper_blocking, .mm-wrapper_sidebar-expanded.mm-wrapper_blocking body {
  overflow: visible;
}

.mm-wrapper_sidebar-expanded .mm-wrapper__blocker {
  display: none !important;
}

.mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened ~ .mm-slideout {
  width: calc(100% - 440px);
  -webkit-transform: translate3d(440px, 0, 0);
  transform: translate3d(440px, 0, 0);
  width: calc(100% - var(--mm-sidebar-expanded-size));
  -webkit-transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0);
  transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0);
}

.mm-menu__blocker {
  background: rgba(3, 2, 1, 0);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.mm-menu_opened .mm-menu__blocker {
  display: none;
}

[dir=rtl].mm-wrapper_sidebar-collapsed .mm-slideout {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

[dir=rtl].mm-wrapper_sidebar-expanded .mm-slideout {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

[dir=rtl].mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

input.mm-toggle {
  margin-top: 5px;
  background: rgba(0, 0, 0, 0.1);
  display: inline-block;
  min-width: 58px;
  width: 58px;
  height: 34px;
  margin: 0 10px;
  margin-top: calc((var(--mm-listitem-size) - 34px) / 2);
  border: none !important;
  background: var(--mm-color-border);
  border-radius: 34px;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

input.mm-toggle:before {
  background: #f3f3f3;
}

input.mm-toggle:before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  margin: 1px;
  border-radius: 34px;
  background: var(--mm-color-background);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

input.mm-toggle:checked {
  background: #4bd963;
}

input.mm-toggle:checked:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
}

input.mm-check {
  margin-top: 2px;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  border: none !important;
  background: 0 0 !important;
  cursor: pointer;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 10px;
  margin-top: calc((var(--mm-listitem-size) - 40px) / 2);
}

input.mm-check:before {
  content: "";
  display: block;
  width: 40%;
  height: 20%;
  margin: 25% 0 0 20%;
  border-left: 3px solid;
  border-bottom: 3px solid;
  border-color: var(--mm-color-text);
  opacity: 0.3;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

input.mm-check:checked:before {
  opacity: 1;
}

[dir=rtl] input.mm-toggle:checked ~ label.mm-toggle:before {
  float: left;
}

.mm-menu_border-none .mm-listitem:after {
  content: none;
}

.mm-menu_border-full .mm-listitem:after {
  left: 0 !important;
}

.mm-menu_fx-menu-slide {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.mm-wrapper_opened .mm-menu_fx-menu-slide {
  -webkit-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}

.mm-wrapper_opening .mm-menu_fx-menu-slide {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-wrapper_opened .mm-menu_fx-menu-slide.mm-menu_position-right {
  -webkit-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0);
}

.mm-wrapper_opening .mm-menu_fx-menu-slide.mm-menu_position-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-menu_fx-panels-none .mm-panel, .mm-panel_fx-none {
  -webkit-transition-property: none;
  -o-transition-property: none;
  transition-property: none;
}

.mm-menu_fx-panels-none .mm-panel.mm-panel_opened-parent, .mm-panel_fx-none.mm-panel_opened-parent {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-menu_fx-panels-slide-0 .mm-panel_opened-parent {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-menu_fx-panels-slide-100 .mm-panel_opened-parent {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.mm-menu_fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px;
}

.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(100vw, 0, 0);
  transform: translate3d(100vw, 0, 0);
}

@media all and (max-width: 140px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(140px, 0, 0);
    transform: translate3d(140px, 0, 0);
  }
}
@media all and (min-width: 10000px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(10000px, 0, 0);
    transform: translate3d(10000px, 0, 0);
  }
}
.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(-100vw, 0, 0);
  transform: translate3d(-100vw, 0, 0);
}

@media all and (max-width: 140px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-140px, 0, 0);
    transform: translate3d(-140px, 0, 0);
  }
}
@media all and (min-width: 10000px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-10000px, 0, 0);
    transform: translate3d(-10000px, 0, 0);
  }
}
.mm-menu_fullscreen.mm-menu_position-top {
  height: 100vh;
  min-height: 140px;
  max-height: 10000px;
}

.mm-menu_fullscreen.mm-menu_position-bottom {
  height: 100vh;
  min-height: 140px;
  max-height: 10000px;
}

.mm-menu_listview-justify .mm-panels > .mm-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.mm-menu_listview-justify .mm-panels > .mm-panel:after {
  content: none;
  display: none;
}

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listview {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  min-height: 50px;
}

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem__text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mm-listview_inset {
  list-style: inside disc;
  width: 100%;
  padding: 0 30px 15px 30px;
  margin: 0;
}

.mm-listview_inset .mm-listitem {
  padding: 5px 0;
}

.mm-menu_multiline .mm-listitem__text {
  -o-text-overflow: clip;
  text-overflow: clip;
  white-space: normal;
}

[class*=mm-menu_pagedim].mm-menu_opened ~ .mm-wrapper__blocker {
  opacity: 0;
}

.mm-wrapper_opening [class*=mm-menu_pagedim].mm-menu_opened ~ .mm-wrapper__blocker {
  opacity: 0.3;
  -webkit-transition: opacity 0.4s ease 0.4s;
  -o-transition: opacity 0.4s ease 0.4s;
  transition: opacity 0.4s ease 0.4s;
}

.mm-menu_opened.mm-menu_pagedim ~ .mm-wrapper__blocker {
  background: inherit;
}

.mm-menu_opened.mm-menu_pagedim-black ~ .mm-wrapper__blocker {
  background: #000;
}

.mm-menu_opened.mm-menu_pagedim-white ~ .mm-wrapper__blocker {
  background: #fff;
}

.mm-menu_popup {
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  opacity: 0;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  height: 80%;
  min-height: 140px;
  max-height: 880px;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  z-index: 2;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.mm-menu_popup.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  z-index: 0;
}

.mm-menu_popup.mm-menu_opened ~ .mm-wrapper__blocker {
  -webkit-transition-delay: 0s !important;
  -o-transition-delay: 0s !important;
  transition-delay: 0s !important;
  z-index: 1;
}

.mm-wrapper_opening .mm-menu_popup {
  opacity: 1;
}

.mm-menu_position-right {
  left: auto;
  right: 0;
}

.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0);
}

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0);
  }
}
@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-440px, 0, 0);
    transform: translate3d(-440px, 0, 0);
  }
}
.mm-menu_position-bottom, .mm-menu_position-front, .mm-menu_position-top {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.mm-menu_position-bottom.mm-menu_opened, .mm-menu_position-front.mm-menu_opened, .mm-menu_position-top.mm-menu_opened {
  z-index: 2;
}

.mm-menu_position-bottom.mm-menu_opened ~ .mm-slideout, .mm-menu_position-front.mm-menu_opened ~ .mm-slideout, .mm-menu_position-top.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  z-index: 0;
}

.mm-menu_position-bottom.mm-menu_opened ~ .mm-wrapper__blocker, .mm-menu_position-front.mm-menu_opened ~ .mm-wrapper__blocker, .mm-menu_position-top.mm-menu_opened ~ .mm-wrapper__blocker {
  z-index: 1;
}

.mm-menu_position-front {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.mm-menu_position-front.mm-menu_position-right {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.mm-menu_position-bottom, .mm-menu_position-top {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

.mm-menu_position-top {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.mm-menu_position-top {
  height: 80vh;
  min-height: 140px;
  max-height: 880px;
}

.mm-menu_position-bottom {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  top: auto;
}

.mm-menu_position-bottom {
  height: 80vh;
  min-height: 140px;
  max-height: 880px;
}

.mm-wrapper_opening .mm-menu_position-bottom, .mm-wrapper_opening .mm-menu_position-front, .mm-wrapper_opening .mm-menu_position-top {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-menu_shadow-page:after {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  content: "";
  display: block;
  width: 20px;
  height: 120%;
  position: absolute;
  left: 100%;
  top: -10%;
  z-index: 100;
  -webkit-clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%);
  clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%);
  -webkit-box-shadow: var(--mm-shadow);
  box-shadow: var(--mm-shadow);
}

.mm-menu_shadow-page.mm-menu_position-right:after {
  left: auto;
  right: 100%;
  -webkit-clip-path: polygon(20px 0, 40px 0, 40px 100%, 20px 100%);
  clip-path: polygon(20px 0, 40px 0, 40px 100%, 20px 100%);
}

.mm-menu_shadow-page.mm-menu_position-front:after {
  content: none;
  display: none;
}

.mm-menu_shadow-menu {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: var(--mm-shadow);
  box-shadow: var(--mm-shadow);
}

.mm-menu_shadow-panels .mm-panels > .mm-panel {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: var(--mm-shadow);
  box-shadow: var(--mm-shadow);
}

.mm-menu_theme-white {
  --mm-color-border:rgba( 0,0,0, 0.1 );
  --mm-color-button:rgba( 0,0,0, 0.3 );
  --mm-color-text:rgba( 0,0,0, 0.7 );
  --mm-color-text-dimmed:rgba( 0,0,0, 0.3 );
  --mm-color-background:#fff;
  --mm-color-background-highlight:rgba( 0,0,0, 0.06 );
  --mm-color-background-emphasis:rgba( 0,0,0, 0.03 );
  --mm-shadow:0 0 10px rgba( 0,0,0, 0.2 );
}

.mm-menu_theme-dark {
  --mm-color-border:rgba( 0,0,0, 0.3 );
  --mm-color-button:rgba( 255,255,255, 0.4 );
  --mm-color-text:rgba( 255,255,255, 0.85 );
  --mm-color-text-dimmed:rgba( 255,255,255, 0.4 );
  --mm-color-background:#333;
  --mm-color-background-highlight:rgba( 255,255,255, 0.08 );
  --mm-color-background-emphasis:rgba( 0,0,0, 0.1 );
  --mm-shadow:0 0 20px rgba( 0,0,0, 0.5 );
}

.mm-menu_theme-black {
  --mm-color-border:rgba( 255,255,255, 0.25 );
  --mm-color-button:rgba( 255,255,255, 0.4 );
  --mm-color-text:rgba( 255,255,255, 0.75 );
  --mm-color-text-dimmed:rgba( 255,255,255, 0.4 );
  --mm-color-background:#000;
  --mm-color-background-highlight:rgba( 255,255,255, 0.2 );
  --mm-color-background-emphasis:rgba( 255,255,255, 0.15 );
  --mm-shadow:none;
}

body.modal-open .mm-slideout {
  z-index: unset;
}

.mm-navbars_top a, .mm-navbars_top button {
  color: #fff;
}
.mm-navbars_top .mm-navbar > * {
  width: 50px;
  height: 50px;
  flex-grow: 0;
  display: inline-block;
  overflow: hidden;
  text-indent: 51px;
  margin-left: 10px;
  background: url("../Img/kontrast.svg") no-repeat center center/auto 21px;
}
.mm-navbars_top .kontrastErhoehen {
  background-image: url("../Img/kontrast.svg");
}
.mm-navbars_top .schriftgroesseErhoehen {
  background-image: url("../Img/textgroesse.svg");
}
.mm-navbars_top .suche {
  background-image: url("../Img/lupe.svg");
}
.mm-navbars_top .telefon {
  background-image: url("../Img/telefon.svg");
}
.mm-navbars_top .leichteSprache {
  background-image: url("../Img/leichte_sprache.svg");
}

.mm-panels {
  margin-top: 50px;
}

.mm-navbars_top .mm-navbar > a.mm-btn_prev {
  position: absolute;
  background-image: none;
  left: -11px;
  top: 57px;
  font-size: 1.4rem;
  overflow: visible;
  width: auto;
}
.mm-navbars_top .mm-navbar > a.mm-btn_prev:after {
  content: "zurück";
  font-style: italic;
  color: #fff;
  font-size: 1.4rem;
  line-height: 49px;
  border: 0;
  text-align: left;
  margin-left: -8px;
}

.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(calc(100% - 50px), 0, 0);
  transform: translate3d(calc(100% - 50px), 0, 0);
}

.mm-menu_offcanvas {
  z-index: 1000;
  display: block !important;
  left: 0;
  width: calc(100% - 50px);
  -webkit-transition: all 0.4s 0s;
  -moz-transition: all 0.4s 0s;
  -ms-transition: all 0.4s 0s;
  -o-transition: all 0.4s 0s;
  transition: all 0.4s 0s;
}

.mm-menu_offcanvas:not(.mm-menu_opened) {
  left: -100vw;
}

.mm-menu_offcanvas {
  width: calc(100% - 50px);
  min-width: 240px;
  max-width: 900px;
}

.mm-slideout {
  z-index: 10;
  display: none;
}

.mm-wrapper__blocker {
  z-index: 2000;
}

.mm-btn:after, .mm-btn:before {
  border-color: var(--colcorp) !important;
}

.mm-navbars_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.mm-navbars_bottom a {
  line-height: 1.15;
  font-size: 12px;
  color: #fff !important;
}

.mm-navbars_bottom .mm-navbar {
  font-size: 83%;
}

.mm-menu[aria-hidden=true] a {
  display: none;
}

.mm-panels .arrowIcon {
  display: none;
}

.mk7slider .slides {
  display: block;
}
.mk7slider .slide {
  width: 100%;
  background: transparent none no-repeat center center/cover;
}
.mk7slider .slide img {
  width: 100%;
}
.mk7slider .positionBox {
  position: absolute;
  left: 80px;
  right: 80px;
  top: 50%;
  overflow: visible;
  transform: translateY(-50%);
}
@media (max-width: 900px) {
  .mk7slider .positionBox {
    left: 50px;
    right: 50px;
  }
}
.mk7slider .slideText {
  -webkit-transition: all 0.5s 0.5s 0s;
  -moz-transition: all 0.5s 0.5s 0s;
  -ms-transition: all 0.5s 0.5s 0s;
  -o-transition: all 0.5s 0.5s 0s;
  transition: all 0.5s 0.5s 0s;
  opacity: 0;
  color: #fff;
  font-weight: bold;
  padding: 20px 30px;
  font-size: var(--copyfontsize);
}
.mk7slider .slideText h3 {
  background-color: transparent;
}
.mk7slider .slideText h1,
.mk7slider .slideText h2,
.mk7slider .slideText h3,
.mk7slider .slideText h4,
.mk7slider .slideText h5 {
  color: #fff;
}
.mk7slider .slideText:after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--colcorp);
  opacity: 0.7;
}
.mk7slider .slide.is-selected .slideText {
  opacity: 1;
}
.mk7slider .heightResponsive .slide {
  height: 60vw;
}
.mk7slider .slides2 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  color: #000;
  width: 400px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.89);
}
.mk7slider .slides2 .slideOverlay {
  text-align: center;
  padding: 20px;
}
.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;
}
.mk7slider .flickity-button.flickity-prev-next-button:after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  width: 40px;
  height: 60px;
}
.mk7slider .flickity-button.flickity-prev-next-button.previous:after {
  left: 20px;
  background: rgba(var(--colcorprgb), 0.75) url(../Img/arrow_left.svg) no-repeat center center/contain;
}
.mk7slider .flickity-button.flickity-prev-next-button.next:after {
  right: 20px;
  background: rgba(var(--colcorprgb), 0.75) url(../Img/arrow_right.svg) no-repeat center center/contain;
}

.cursor.hover.flickity {
  border: 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%;
}

/*
┌────────────────────────────────────┐
	dce social links
└────────────────────────────────────┘ */
.mk7sociallinks {
  display: inline-block;
  margin: 0 2vw;
  margin: 0;
  top: 3px;
  position: relative;
}
.mk7sociallinks.inline li {
  display: inline-block;
}
.mk7sociallinks.stacked li {
  display: block;
}
.mk7sociallinks.alignCenter {
  text-align: center;
}
.mk7sociallinks svg rect {
  fill: var(--colcorp);
}

header .mk7sociallinks span.title {
  display: none;
}

.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 0s;
  -moz-transition: all 0.81s 0s;
  -ms-transition: all 0.81s 0s;
  -o-transition: all 0.81s 0s;
  transition: all 0.81s 0s;
}
.accordion .opener .btn:before {
  content: "↑";
  position: absolute;
  right: 10px;
  top: 12px;
  opacity: 0;
  font-size: 18px;
  -webkit-transition: all 0.8s 0s;
  -moz-transition: all 0.8s 0s;
  -ms-transition: all 0.8s 0s;
  -o-transition: all 0.8s 0s;
  transition: all 0.8s 0s;
}
.accordion .content {
  max-height: 0;
  overflow: hidden;
  position: relative;
  top: 20px;
  opacity: 0;
  -webkit-transition: all 0.8s 0s;
  -moz-transition: all 0.8s 0s;
  -ms-transition: all 0.8s 0s;
  -o-transition: all 0.8s 0s;
  transition: all 0.8s 0s;
}
.accordion .content .text,
.accordion .content .image {
  padding: var(--pad);
  -webkit-transition: all 0.8s 0s;
  -moz-transition: all 0.8s 0s;
  -ms-transition: all 0.8s 0s;
  -o-transition: all 0.8s 0s;
  transition: all 0.8s 0s;
}
.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;
}

section.textImage {
  padding: var(--pad) 0 6vh 0;
  display: inline-block;
}
section.textImage.col100, section.textImage .textBottom section.textImage.image, section.textImage .textBottom section.textImage.text, .count1 section.textImage.col {
  display: block;
}
section.textImage > h2 {
  padding: 20px 0;
}
section.textImage .row {
  padding: 30px​;
}
section.textImage .text60.image40 .text {
  padding: 20px;
}
section.textImage .text70.image30 .text {
  padding: 20px;
}
section.textImage .text70.image30.textRight .text {
  order: 2;
  padding: 20px;
}
section.textImage .text70.image30.textRight .image {
  order: 1;
}
@media (max-width: 1024px) {
  section.textImage .text {
    flex-basis: 100%;
  }
  section.textImage .image {
    min-height: 160px;
  }
}
section.textImage .image {
  position: relative;
}
section.textImage .image[data-backgroundsize=contain] .imageItem {
  background-size: contain;
}
section.textImage .image[data-backgroundsize=contain] .imageItem img {
  object-fit: contain;
  height: 100%;
}
section.textImage .image[data-backgroundsize=cover] .imageItem {
  background-size: cover;
}
section.textImage .image[data-backgroundsize=cover] .imageItem img {
  object-fit: cover;
  height: 100%;
}
section.textImage .caption {
  position: absolute;
  padding: 4px 0;
  font-size: 80%;
  width: 100%;
  font-style: italic;
}
section.textImage .imageItem {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent no-repeat center center/cover;
}
section.textImage .imageItem img {
  display: block;
  width: 100%;
}
section.textImage .textLeft .imageItem {
  left: 20px;
}
section.textImage .textRight .imageItem {
  right: 20px;
}
@media (max-width: 900px) {
  section.textImage .textRight .imageItem {
    right: 0;
  }
}
section.textImage .styleTextGray .text {
  background: #dadada;
  color: #000;
}
section.textImage .styleTextColCorp .text {
  background: var(--colcorp);
  color: #fff;
}
section.textImage .styleTextColCorp .text h1,
section.textImage .styleTextColCorp .text h2,
section.textImage .styleTextColCorp .text h3,
section.textImage .styleTextColCorp .text blockquote,
section.textImage .styleTextColCorp .text p {
  color: #fff;
}
section.textImage .borderImage .imageItem,
section.textImage .boderImage .imageItem {
  border: 1px solid var(--colcorp);
}
section.textImage .borderAll {
  padding: 20px 0;
  position: relative;
}
section.textImage .borderAll:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--colcorp);
}
section.textImage .borderAll .imageItem {
  right: 20px;
}
section.textImage .textBottom {
  display: flex !important;
}
section.textImage .textBottom .text {
  order: 2;
  padding: 20px;
}
section.textImage .textBottom .image {
  order: 1;
}
section.textImage .textBottom .image .imageItem {
  position: relative;
  margin-bottom: 30px;
}

.mk7container section.textImage .text {
  padding: 20px 0;
}

.module_textimagecols img {
  width: 100%;
}
.module_textimagecols .backgroundImageItems {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-position: center center;
  background-size: cover;
}
.module_textimagecols .columns > div {
  flex-basis: 30%;
  min-width: 340px;
  margin: 20px 20px 0 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;
}

.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%);
}

.module_icons {
  text-align: center;
}
@media (max-width: 900px) {
  .module_icons {
    justify-content: center;
  }
}
.module_icons .item {
  margin-bottom: 100px;
}
@media (max-width: 900px) {
  .module_icons .item {
    max-width: 50%;
    margin-bottom: 20px;
  }
}
.module_icons .item:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
@media (max-width: 900px) {
  .module_icons .item:after {
    display: none;
  }
}
.module_icons .icon {
  position: absolute;
  padding: 0 10px;
}
@media (max-width: 900px) {
  .module_icons .icon {
    position: relative;
  }
}
.module_icons .icon svg g:first-child {
  stroke: var(--colcorp);
}
.module_icons .icon svg circle {
  -webkit-transition: all 0.3s 0s;
  -moz-transition: all 0.3s 0s;
  -ms-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  fill: transparent;
}
.module_icons .icon svg path {
  fill: var(--colcorp);
}
.module_icons a:hover .icon svg circle {
  fill: #eaeaea;
}
.module_icons .title {
  position: absolute;
  top: 100%;
  padding: 0 var(--pad);
  text-align: center;
  left: 20px;
  right: 20px;
}
@media (max-width: 900px) {
  .module_icons .title {
    padding: 0;
  }
}

.module_map {
  background-color: rgba(var(--colcorprgb), 0.25);
  padding: 20px;
  margin: var(--pad) 0;
}
.module_map.smallbox {
  max-width: 710px;
}
.module_map .row {
  padding-top: 10px;
}
.module_map .map svg {
  width: 100%;
}
.module_map .map svg path {
  fill: var(--colcorp);
}
.module_map .item {
  cursor: w-resize;
  color: var(--colcorp);
  padding: 10px 10px 10px 40px;
  line-height: 1.2;
  -webkit-transition: all 0.5s 0s;
  -moz-transition: all 0.5s 0s;
  -ms-transition: all 0.5s 0s;
  -o-transition: all 0.5s 0s;
  transition: all 0.5s 0s;
}
.module_map .item:hover, .module_map .item.act {
  color: #000;
}
.module_map .dot {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  -webkit-transition: all 0.25s 0s;
  -moz-transition: all 0.25s 0s;
  -ms-transition: all 0.25s 0s;
  -o-transition: all 0.25s 0s;
  transition: all 0.25s 0s;
}
.module_map .dot:before {
  content: "";
  width: 60px;
  height: 60px;
  transform: translate3d(-50%, -50%, 0px);
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  left: 50%;
  top: 50%;
  -webkit-transition: all 0.5s 0s;
  -moz-transition: all 0.5s 0s;
  -ms-transition: all 0.5s 0s;
  -o-transition: all 0.5s 0s;
  transition: all 0.5s 0s;
}
.module_map .dot:hover, .module_map .dot.act {
  background: #fff;
  width: 30px;
  height: 30px;
}
.module_map .dot:hover:before, .module_map .dot.act:before {
  opacity: 1;
  width: 47px;
  height: 47px;
}

.jobModule {
  margin: var(--pad) 0;
}
.jobModule > h3 {
  padding: 0.4em 20px;
}
.jobModule .jobItem h4 {
  border: none;
}
.jobModule .jobItem a {
  display: block;
  position: relative;
  padding: 14px 20px 4px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.3s 0s;
  -moz-transition: all 0.3s 0s;
  -ms-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}
.jobModule .jobItem a:hover {
  background: rgba(255, 255, 255, 0.45);
}
.jobModule .jobItem a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  border-top: 1px solid #000;
}
.jobModule a.showAll {
  font-weight: bold;
  border-top: 1px solid #000;
  padding: 20px 0px 40px;
  margin: 0 20px;
  display: block;
}

.joblistitem {
  display: inline-block;
  padding-top: 0;
  padding-bottom: 0;
}
.joblistitem > a {
  display: block;
  background: #fff;
  border: 1px solid var(--colcorp);
  padding: 20px;
  margin: 0 0 40px 0;
  box-shadow: 0 0 24px rgba(183, 183, 183, 0.568627451);
  text-decoration: none;
  -webkit-transition: all 0.5s 0s;
  -moz-transition: all 0.5s 0s;
  -ms-transition: all 0.5s 0s;
  -o-transition: all 0.5s 0s;
  transition: all 0.5s 0s;
}
.joblistitem > a:hover {
  box-shadow: 5px 5px 11px 4px #b7b7b7;
}
.joblistitem h1 {
  font-size: 3.6rem;
}
@media (max-width: 900px) {
  .joblistitem h1 {
    font-size: 2.6rem;
    padding-bottom: 10px;
  }
}
.joblistitem h3 {
  font-size: 2.2rem;
}
@media (max-width: 900px) {
  .joblistitem h3 {
    font-size: 1.8rem;
    padding-bottom: 10px;
  }
}
.joblistitem .listItemLogo {
  max-width: 400px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 900px) {
  .joblistitem .listItemLogo {
    max-width: 100%;
    position: relative;
    left: 0;
    top: 0;
    transform: translateY(0%);
  }
}
.joblistitem .details .col {
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.7;
}

.careerLiveSearch {
  padding: 5vh 0 3vh;
}
.careerLiveSearch input,
.careerLiveSearch select {
  -webkit-appearance: none;
  appearance: none;
  width: 75%;
  padding: 10px 30px 10px 10px;
  border: 1px solid var(--colcorp);
  background: transparent;
  font-size: 1.4rem;
  font-weight: bold;
}
@media (max-width: 900px) {
  .careerLiveSearch input,
  .careerLiveSearch select {
    width: 100%;
  }
}
.joblist {
  padding-top: 0;
}
.joblist > h2 {
  margin-bottom: 1em;
}

.joblistitem > a {
  height: 350px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .joblistitem > a {
    height: auto;
  }
}
.joblistitem header {
  min-height: 127px;
}
.joblistitem[class*=hidden] > a {
  height: 0;
  padding: 0;
  opacity: 0;
  margin: 0;
}

.jobdetail .description {
  padding: 4vh 30px 4vh 0;
}
.jobdetail .description ul {
  margin: 0 0px 1em 20px;
}
.jobdetail .details {
  margin-top: 4vh;
  max-width: 550px;
}
.jobdetail .details h4 {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 10px 0px;
  font-weight: normal;
  margin: 20px 0;
}
.jobdetail .details .inner {
  padding: 1px 20px 20px;
  background: #e7c7e7;
}
.jobdetail .contact {
  margin-top: 25px;
  padding-right: 175px;
  margin-bottom: 68px;
}
.jobdetail .contact .contactPic {
  position: absolute;
  top: 26px;
  right: 0px;
  width: 160px;
}
.jobdetail .contact span,
.jobdetail .contact strong {
  display: inline-block;
  vertical-align: top;
}
.jobdetail .contact strong {
  min-width: 90px;
}
.jobdetail .button {
  background-color: var(--colcorp);
  border-radius: 4px;
  padding: 3px 20px;
  display: inline-block;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 1px 2px 7px rgba(0, 0, 0, 0.4666666667);
  border: 1px solid rgba(130, 12, 136, 0.14);
  -webkit-transition: all 0.3s 0s;
  -moz-transition: all 0.3s 0s;
  -ms-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}
.jobdetail .button:hover {
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4666666667);
}
.jobdetail .applicate {
  margin-right: 20px;
}
.jobdetail .sharejob {
  background: #bbb;
}
.jobdetail .backlink {
  margin: 20px 0;
}

/*
	Kompakte Darstellung der Jobsliste für Projektseiten / Fachbereiche
*/
.joblist.listCompact {
  background-color: rgba(var(--colcorprgb), 0.25);
  max-width: 700px;
}
.joblist.listCompact .joblistitem {
  overflow: visible;
  margin: 0;
}
.joblist.listCompact .joblistitem header {
  min-height: auto;
}
.joblist.listCompact .joblistitem header h1 {
  font-size: 2.9rem;
}
.joblist.listCompact .joblistitem header h3 {
  font-size: 1.7rem;
  padding: 4px 0 17px;
}
.joblist.listCompact > h2 {
  text-align: right;
  font-size: var(--h3size);
  padding: var(--pad);
  margin: 0;
}
.joblist.listCompact .joblistitem > a {
  margin: 0 var(--pad) var(--pad);
  width: auto;
  border: 0 none;
  padding-bottom: 10px;
  height: auto;
  background: rgba(255, 255, 255, 0.39);
}
.joblist.listCompact .joblistitem > a:hover {
  box-shadow: 5px 5px 11px 4px rgba(0, 0, 0, 0.28);
}
.joblist.listCompact .linkAllJobOffers {
  padding: 0 22px 13px;
  text-align: right;
  width: 100%;
  border-bottom: 0;
}
.joblist.listCompact .listItemLogo {
  display: none !important;
}

/* The Modal (background) */
.modal {
  visibility: hidden; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 20px;
  width: 100%; /* Full width */
  height: 0%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -ms-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.modal.active {
  opacity: 1;
  visibility: visible;
  height: 100%;
  pointer-events: all;
}
.modal h2 {
  max-width: 80%;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.flipCards {
  position: relative;
  min-height: 50vh;
  padding: 0 2vw;
}

.flipCardItem {
  display: inline-block;
  padding: 10px;
  background: var(--colcorp);
  margin: 20px 1.4%;
  position: relative;
  text-align: center;
  height: clamp(100px, 12vw, 180px);
  cursor: pointer;
  opacity: 1;
  box-shadow: inset 0px 0px 0px #fff;
  -webkit-transition: all 0.3s 0s;
  -moz-transition: all 0.3s 0s;
  -ms-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}
.flipCardItem.open {
  z-index: 10;
  opacity: 1 !important;
}
.flipCardItem:hover {
  opacity: 0.95;
  box-shadow: inset 0px 0px 16px rgba(0, 0, 0, 0.2901960784);
}
@media (max-width: 1024px) {
  .flipCardItem {
    margin: 0 0 20px;
  }
}
.flipCardItem h3 {
  padding: 25px 20px;
  color: #fff;
  font-weight: bold;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.flipCardOverlay {
  position: fixed;
  top: 150px;
  left: 0;
  width: 100%;
  bottom: 0;
  background: #fff;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -ms-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
  display: flex;
  flex-wrap: wrap;
  overflow: auto;
}
@media (max-width: 900px) {
  .flipCardOverlay {
    align-content: center;
    flex-wrap: wrap;
  }
}
.flipCardOverlay > .col {
  align-self: center;
  max-height: 100%;
  overflow-y: auto;
}
@media (max-width: 1024px) {
  .flipCardOverlay > .col {
    flex-basis: 100%;
  }
}
.flipCardOverlay blockquote {
  font-size: 3vw;
  hyphens: auto;
  font-size: clamp(2rem, 1.9vw, 6rem);
  font-weight: 600;
  line-height: 1.2;
  padding-left: 18%;
}
.flipCardOverlay blockquote:before {
  width: 13%;
}
.flipCardOverlay blockquote cite {
  font-size: 1vw;
  font-size: clamp(1.5rem, 1.2vw, 2rem);
  color: #000;
  display: block;
  text-align: right;
  font-weight: normal;
}
.flipCardOverlay ul {
  margin-left: 22px;
}
.flipCardOverlay .flipCardImage {
  padding: 20px;
  object-fit: cover;
}

.flipCardItem.open .flipCardOverlay {
  z-index: 10;
  opacity: 1;
  pointer-events: all;
}

.flipCardClose {
  position: fixed;
  bottom: 15px;
  left: 37px;
  padding: 6px 15px;
  z-index: 10;
  font-size: 1.7vw;
  font-size: clamp(1.5rem, 1.7vw, 3rem);
  color: #000;
  background: #fff;
  border-radius: 8px;
  cursor: not-allowed;
  -webkit-transition: all 0.3s 0s;
  -moz-transition: all 0.3s 0s;
  -ms-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}
.flipCardClose i {
  font-style: normal;
  font-weight: bold;
  padding: 0 3px;
  font-size: 2vw;
  color: var(--colcorp);
}
.flipCardClose:hover {
  background: #ddd;
}

.flipCardPlaceholder {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

html.flipCardOpen, body.flipCardOpen {
  overflow: hidden;
}

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

.mk7container > header {
  padding: 4vh 0 0vh;
  position: relative;
}
.mk7container > header .headline {
  color: var(--colcorp);
}
.mk7container .ceOut {
  padding: 0;
  margin: var(--pad) 0;
}
.mk7container .ceIn {
  padding: 0;
}
.mk7container .colLeft .ceOut:not(.bg_corp) .ceIn {
  padding: 0 20px 0 0;
}
.mk7container .colLeft {
  padding-right: calc(var(--pad) / 2);
  padding-left: 0;
}
.mk7container .colRight {
  padding-left: calc(var(--pad) / 2);
  padding-right: 0;
}
@media (max-width: 900px) {
  .mk7container .colRight {
    padding-left: 0;
  }
}
.mk7container.twoCol .row > * {
  display: inline-block;
  vertical-align: top;
}
.mk7container h4 {
  padding-bottom: 6px;
  margin-bottom: 10px;
  border-bottom: 1px solid #000;
}

/*
	Gelbe balken
*/
.mk7container.meEven > header:before, .mk7container.meOdd > header:before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: calc((100vw - 1440px) / 4);
}

.mk7container.meEven > header:before {
  left: calc((100vw - 1440px) / 4 * -1);
  transform: translateX(-100%);
  background: var(--colcorp);
}

.mk7container.meOdd > header:before {
  right: calc((100vw - 1440px) / 4 * -1);
  transform: translateX(100%);
  background: var(--colcorp);
}

@media (max-width: 1584px) {
  .mk7container.meEven > header:before, .mk7container.meOdd > header:before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    background: var(--colcorp);
    width: 5%;
  }
  .mk7container.meEven > header:before {
    left: 0;
    transform: translateX(-150%);
  }
  .mk7container.meOdd > header:before {
    left: auto;
    right: 0;
    transform: translateX(150%);
  }
}
.bg_corp {
  background-color: rgba(var(--colcorprgb), 0.25);
}
.bg_corp header {
  padding: 0;
}
.bg_corp .ceIn {
  padding: var(--pad);
}

.mk7container.oneCol .containerHeadline {
  padding: 0;
}
.mk7container.oneCol .item {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
}
.mk7container.oneCol .item .col25, .mk7container.oneCol .item .gridTwocol.cols75-25 > .colRight, .mk7container.oneCol .item .gridTwocol.cols25-75 > .colLeft, .mk7container.oneCol .item .count4 .col, .count4 .mk7container.oneCol .item .col, .mk7container.oneCol .item .count5 .col, .count5 .mk7container.oneCol .item .col {
  max-width: 430px;
  width: 100%;
  min-width: 300px;
}
.mk7container.oneCol .item > * {
  display: inline-block;
  vertical-align: top;
  flex: 1 1;
}
/*
┌────────────────────────────────────┐
	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("../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: calc(1.5rem + 0.25vw);
}
.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
└────────────────────────────────────┘
*/
/*
┌────────────────────────────────────┐
	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 {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  display: block;
}
.news-single .outer {
  width: 100%;
}
.news-single .footer {
  font-size: 90%;
}
.news-single .header {
  padding-bottom: 27px;
}
.news-single .news-img-wrap {
  margin: 40px 0;
}
.news-single .pager {
  border-top: 1px solid #000;
  padding-top: 20px;
  margin: 20px 0 0 0;
  text-align: center;
}
.news-single .pager a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: var(--smallfontsize);
}
.news-single .pager .previous, .news-single .pager .next {
  white-space: nowrap;
  position: absolute;
}
.news-single .pager .previous {
  left: 0;
}
.news-single .pager .next {
  right: 0;
}
.news-single .pager li {
  display: inline-block;
  list-style-type: none;
}

.no-news-found {
  padding-top: calc(var(--pad) * 2);
  max-width: 800px;
  margin: 0 auto;
}

.news-list-view {
  padding-top: var(--pad);
  max-width: 800px;
  margin: 0 auto;
}
.news-list-view .article {
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
  border-top: 1px solid;
  padding-top: 10px;
}
.news-list-view .article [itemprop=description] p {
  display: inline;
}
.news-list-view .article [itemprop=description] a.more {
  font-weight: bold;
  margin-left: 10px;
}
.news-list-view .article h4 {
  padding: 10px 0;
  border: 0;
}
.news-list-view .article h4 a {
  text-decoration: none;
}
.news-list-view .article .news-list-date, .news-list-view .article .news-list-category {
  font-size: 90%;
}
.news-list-view .article .news-img-wrap {
  float: left;
  margin: 0 20px 0 0;
}
.news-list-view .article .no-media-element {
  padding: 20px;
  max-width: 144px;
  display: inline-block;
  background: #ddd;
}
.news-list-view .article .no-media-element a {
  display: inline-block;
}

.news-list-view .news-backlink-wrap {
  border-top: 1px solid;
  padding-top: 14px;
  list-style-type: none;
  font-weight: bold;
}
.news-list-view .news-backlink-wrap a {
  text-decoration: none;
}
.news-list-view .news-backlink-wrap:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7.41' height='12' viewBox='0 0 7.41 12'%3E%3Cpath id='Pfad_1390' data-name='Pfad 1390' d='M10,6,8.59,7.41,13.17,12,8.59,16.59,10,18l6-6Z' transform='translate(-8.59 -6)' fill='%23f5a100'/%3E%3C/svg%3E%0A");
  color: var(--colcorp);
  width: 15px;
  height: 15px;
  display: inline-block;
  background-size: contain;
}

#uid_4 .news-backlink-wrap {
  display: none;
}

/*
	News Category Menu
*/
.news-cat-menu {
  padding-top: var(--pad);
  max-width: 800px;
  margin: 0 auto;
}
.news-cat-menu:before {
  content: "Filtern nach:";
}
.news-cat-menu a.active {
  font-weight: 600;
}
.news-cat-menu ul {
  margin: 0;
}
.news-cat-menu li {
  list-style: none;
  display: inline-block;
  font-size: 70%;
}
.news-cat-menu li:before {
  content: "•";
  display: inline-block;
  padding: 0 5px;
}
.news-cat-menu li:first-child:before {
  display: none;
}

/*
	Pagination
*/
.page-navigation {
  text-align: center;
  margin: 43px 0 0;
  border-top: 1px solid;
  padding-top: 12px;
}
.page-navigation li, .page-navigation a, .page-navigation p {
  font-size: var(--smallfontsize);
}

.f3-widget-paginator {
  text-align: center;
}
.f3-widget-paginator li {
  vertical-align: top;
  display: inline-block;
  position: relative;
  padding: 0 0px;
  margin: 0 10px;
  line-height: 32px;
  list-style: none;
  border-bottom: 1px solid #fff;
}
.f3-widget-paginator li.current {
  padding: 0 10px;
}
.f3-widget-paginator li.current:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--colcorp);
}
.f3-widget-paginator li:only-child {
  display: none;
}
.f3-widget-paginator a {
  padding: 0 10px;
  line-height: 32px;
  display: block;
  text-decoration: none;
}
.f3-widget-paginator .previous a {
  background: transparent url("../Img/icon_pfeil_links_blau.svg") no-repeat center center/contain;
}
.f3-widget-paginator .next a {
  background: transparent url("../Img/icon_pfeil_rechts_blau.svg") no-repeat center center/contain;
}

/*
┌────────────────────────────────────┐
	Searchform / Suche
└────────────────────────────────────┘ */
.searchForm {
  position: absolute;
  top: 0px;
  height: 0;
  opacity: 0;
  overflow: hidden;
  left: 40px;
  right: 40px;
  left: 0;
  right: 0;
  z-index: 1200;
  background: #ffffff;
  text-align: left;
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.65s 0s;
  -moz-transition: all 0.65s 0s;
  -ms-transition: all 0.65s 0s;
  -o-transition: all 0.65s 0s;
  transition: all 0.65s 0s;
}
.searchForm form {
  width: 700px;
  margin: 0 auto;
  position: relative;
  height: 91px;
  top: 0px;
}
@media (max-width: 900px) {
  .searchForm form {
    width: 100%;
  }
}
.searchForm input {
  font-size: 38px;
  background: transparent;
  color: #000;
  font-weight: bold;
  padding: 10px;
  background: rgba(255, 255, 255, 0.33);
  color: var(--col-inputtext);
  border-radius: 0;
  display: inline-block;
  margin: 0px 0px;
  min-width: 250px;
  height: 65px;
  width: 100%;
}
.searchForm input:focus {
  outline: none;
}
.searchForm input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--colcorp);
  opacity: 1; /* Firefox */
}
.searchForm input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--colcorp);
}
.searchForm input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--colcorp);
}
@media (max-width: 900px) {
  .searchForm input {
    border-radius: 30px;
    margin: 10px 0;
    font-size: 18px;
    left: 10px;
    position: relative;
  }
}
.searchForm button#tx-indexedsearch-searchbox-button-submit {
  width: 65px;
  right: 0;
  color: #092155;
  top: 26px;
  position: absolute;
  bottom: 0;
  border-radius: 0%;
  background: #fff;
}
.searchForm button#tx-indexedsearch-searchbox-button-submit:before {
  display: none;
  font-size: 50px;
  color: #0700d7;
  position: relative;
  top: -5px;
}
.searchForm button#tx-indexedsearch-searchbox-button-submit:focus {
  outline: none;
}
@media (max-width: 900px) {
  .searchForm button#tx-indexedsearch-searchbox-button-submit {
    width: 50px;
    right: 0px;
    height: 55px;
    top: 16px;
  }
  .searchForm button#tx-indexedsearch-searchbox-button-submit svg {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .searchForm .tx-indexedsearch-searchbox {
    position: relative;
    top: 20vh;
  }
  .searchForm .tx-indexedsearch-searchbox svg {
    width: 100%;
  }
}
.sucheAktiv .searchForm {
  top: 0px;
  height: 50vh;
  opacity: 1;
}
@media (min-width: 901px) and (max-width: 1024px) {
  .sucheAktiv .searchForm {
    top: 70px;
  }
}

@media (max-width: 900px) {
  .searchForm {
    height: 0;
  }
  .searchForm .tx-indexedsearch-info-noresult {
    display: none;
  }
  .searchForm form {
    top: 0;
  }
  #search_input_label {
    display: none;
  }
  .sucheAktiv .searchForm {
    height: 86px;
    top: 84px;
    left: 20px;
    right: 20px;
    position: fixed;
    z-index: 10000000;
  }
}
.searchForm .tx-indexedsearch-info-sword,
.searchForm .tx-indexedsearch-browsebox,
.searchForm .tx-indexedsearch-text-item-size,
.searchForm .tx-indexedsearch-text-item-crdate,
.searchForm .tx-indexedsearch-text-item-mtime,
.searchForm .tx-indexedsearch-res {
  display: none;
}

/*
	Search results
*/
main .tx-indexedsearch-browsebox li {
  display: inline-block;
  padding: 3px 10px;
  margin-top: 10px;
}
main .tx-indexedsearch-rules {
  display: none;
}
main input#tx-indexedsearch-searchbox-sword {
  padding: 10px 4px;
  font-size: 2rem;
  border: 1px solid var(--colcorp);
  line-height: 2rem;
  margin: 0 0 0 8px;
}
main .tx-indexedsearch-form {
  display: inline-block;
}
main .tx-indexedsearch-icon {
  display: none;
}
main .tx-indexedsearch-description {
  margin: 0.6em 0px;
}
main .tx-indexedsearch-search-submit {
  display: inline-block;
}
main .tx-indexedsearch-search-submit input {
  padding: 10px;
  font-size: 2rem;
  border: 1px solid silver;
  line-height: 26px;
}
main .tx-indexedsearch-searchbox {
  text-align: center;
  margin: 48px 0 10px;
  font-size: 2rem;
}
main .tx-indexedsearch-searchbox legend {
  display: none;
}
main .tx-indexedsearch-info-sword,
main .tx-indexedsearch-browsebox {
  text-align: center;
  color: #000;
}
main .tx-indexedsearch-res {
  background: #fff;
  padding: 20px;
  margin: 4vh 0;
}
main .tx-indexedsearch-res span.tx-indexedsearch-percent {
  color: #aaa;
  font-size: 2.4rem;
  padding-left: 10px;
}
main .tx-indexedsearch-res .tx-indexedsearch-text-item-size,
main .tx-indexedsearch-res .tx-indexedsearch-text-item-crdate,
main .tx-indexedsearch-res .tx-indexedsearch-text-item-mtime,
main .tx-indexedsearch-res dt.tx-indexedsearch-text-item-path {
  display: none;
}
main .tx-indexedsearch-res dl {
  margin: 0;
  padding: 0;
}
main .tx-indexedsearch-res dl dt,
main .tx-indexedsearch-res dl dd {
  display: inline-block;
  margin: 0;
}
main .tx-indexedsearch-res .tx-indexedsearch-text-item-path a {
  border: 0;
  padding: 0;
  font-family: monospace;
  font-size: 80%;
  color: var(--colcorp);
  -webkit-transition: all 0.25s 0s;
  -moz-transition: all 0.25s 0s;
  -ms-transition: all 0.25s 0s;
  -o-transition: all 0.25s 0s;
  transition: all 0.25s 0s;
}
main .tx-indexedsearch-res .tx-indexedsearch-text-item-path a:hover {
  color: #000;
}

/*
	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(var(--logocookies)) 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;
  -moz-transition: opacity 1.5s;
  -ms-transition: opacity 1.5s;
  -o-transition: opacity 1.5s;
  transition: opacity 1.5s;
}

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
*/
mailform {
  opacity: 0;
  -webkit-transition: all 0.3s 0s 0s;
  -moz-transition: all 0.3s 0s 0s;
  -ms-transition: all 0.3s 0s 0s;
  -o-transition: all 0.3s 0s 0s;
  transition: all 0.3s 0s 0s;
}
mailform .row {
  display: inline-block;
  width: 50%;
  vertical-align: top;
}
mailform .form-group {
  width: 50%;
  display: inline-block;
  padding: 0 40px 0 0;
}
@media (max-width: 900px) {
  mailform .form-group {
    padding: 0 10px 0 0;
  }
}
mailform .form-group:first-of-type, mailform .form-group:last-of-type {
  width: 100%;
}
mailform input, mailform 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;
}
mailform input::-webkit-input-placeholder, mailform 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;
}
mailform input::-moz-placeholder, mailform 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;
}
mailform input:-ms-input-placeholder, mailform 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;
}
mailform input:-moz-placeholder, mailform 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;
}
mailform textarea {
  width: calc(100vw - 80px);
  max-width: 1120px;
  min-height: 98px;
}
@media (max-width: 900px) {
  mailform textarea {
    width: calc(100vw - 75px);
  }
}
mailform .btn-group button {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
}
mailform select {
  text-transform: uppercase;
  font-family: "regular", sans-serif;
}
mailform 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%;
}
mailform select option {
  color: #666;
  font-family: "regular", sans-serif;
}
mailform select::-ms-expand {
  display: none;
}
mailform select:focus::-ms-value {
  background-color: transparent;
}

.type-menu_sitemap .ceIn > ul {
  margin: 0;
}
.type-menu_sitemap .ceIn > ul ul {
  margin: 0px 60px;
}
.type-menu_sitemap .ceIn > ul li {
  list-style: none;
}
.type-menu_sitemap .ceIn > ul > li {
  padding: 20px 0;
}
.type-menu_sitemap .ceIn > ul a {
  background: #fff;
  border-radius: 6em;
  padding: 2px 20px;
  margin-bottom: 8px;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s 0s;
  -moz-transition: all 0.3s 0s;
  -ms-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}
.type-menu_sitemap .ceIn > ul a:hover {
  background: #fff;
  box-shadow: 0 0 9px #b5b5b5;
}

body[data-project*=hospizium].loaded .bgLeft, body[data-project*=hospizium].loaded .bgRight {
  opacity: 1;
}

body[data-project*=betreuungsverein] {
  --copyfontsize: clamp(1.6rem, 1.15vw, 2.1rem);
}

body[data-project*=zuhause_mobil] a.joblink span {
  display: none;
}

html {
  font-size: 10px;
}

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

body {
  font-size: var(--copyfontsize);
  line-height: 1.4;
  padding: 0px 0px 0px;
  margin: 0 !important;
  text-align: left;
  color: #000;
}
@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: 0 0 0.6em 0px;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1;
}

.mk7slider h1 {
  font-size: var(--h1sizeslider);
  font-weight: 400;
}

h1, h2 {
  font-size: var(--h1size);
  color: var(--colcorp);
  position: relative;
  left: -0.05em;
  font-weight: 400;
  word-break: break-word;
}

h3, .subheaderOf1, .subheaderOf2, .subheaderOf3 {
  font-size: var(--h3size);
  font-weight: 400;
  padding: 0;
  line-height: 1.2;
}

h4 {
  font-size: var(--h4size);
  font-weight: 600;
  line-height: 1.2;
}

h5 {
  font-size: var(--h5size);
  background-color: var(--colcorp);
  color: #fff;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 20px;
  display: block !important;
}
h5:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.82' height='24' viewBox='0 0 14.82 24'%3E%3Cpath id='Pfad_1393' data-name='Pfad 1393' d='M8.82,8.59,18,17.75l9.18-9.16L30,11.41l-12,12-12-12Z' transform='translate(-8.59 30) rotate(-90)' fill='%23fff'/%3E%3C/svg%3E%0A");
  margin: 0px 9px 0 14px;
  width: 0.5em;
  top: 0.15em;
  background-size: contain;
  background-position: center;
  display: inline-block;
  position: relative;
  height: 1em;
}

h6 {
  font-size: var(--h6size);
  font-weight: 600;
}

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

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

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

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

table {
  margin: 0 0 0.6em 0px;
}

/*
┌────────────────────────────────────┐
	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;
  padding: 0 5%;
  overflow: hidden;
}
@media (max-width: 900px) {
  main {
    padding: 0 20px;
  }
}
main > .content {
  padding-top: 170px;
  -webkit-transition: all 0.5s 0s;
  -moz-transition: all 0.5s 0s;
  -ms-transition: all 0.5s 0s;
  -o-transition: all 0.5s 0s;
  transition: all 0.5s 0s;
}

/*
┌────────────────────────────────────┐
	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 0s;
  -moz-transition: all 0.6s 0s;
  -ms-transition: all 0.6s 0s;
  -o-transition: all 0.6s 0s;
  transition: all 0.6s 0s;
}
.hoverPic:hover {
  opacity: 1;
}

/*
┌────────────────────────────────────┐
	rte styles / ckeditor
└────────────────────────────────────┘ */
blockquote {
  padding: 0 0 0 120px;
  font-family: "Source Serif Pro", serif;
  color: var(--colcorp);
  position: relative;
}
@media (max-width: 900px) {
  blockquote {
    padding: 40px 0 0 0;
  }
}
blockquote:before {
  content: open-quote;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='79.851' height='68.075' viewBox='0 0 79.851 68.075'%3E%3Cpath id='Quote' d='M15.817,29.932a28.173,28.173,0,0,1-7.007-8.346,18.347,18.347,0,0,1-1.889-8.117q0-6.679,3.555-9.917t9.6-3.193a17.727,17.727,0,0,1,12.01,4.463A69.853,69.853,0,0,1,34.308,12.5a36.267,36.267,0,0,1,.893,8.117,41.3,41.3,0,0,1-2.45,14.127,58.591,58.591,0,0,1-6.7,13,71.374,71.374,0,0,1-9.679,11.445A77.277,77.277,0,0,1,4.7,68.432L.47,62.427A99.111,99.111,0,0,0,13.363,50.3a55.869,55.869,0,0,0,8.693-14.574Zm45.164,0a28.173,28.173,0,0,1-7.007-8.346,18.348,18.348,0,0,1-1.889-8.117q0-6.679,3.555-9.917T65.2.358a17.732,17.732,0,0,1,12.01,4.463A69.854,69.854,0,0,1,79.433,12.5a36.56,36.56,0,0,1,.888,8.117,41.3,41.3,0,0,1-2.445,14.127A58.593,58.593,0,0,1,71.2,47.759a71.629,71.629,0,0,1-9.665,11.43,77.274,77.274,0,0,1-11.678,9.228l-4.23-6.005A100.114,100.114,0,0,0,58.522,50.288,55.473,55.473,0,0,0,67.2,35.714Z' transform='translate(-0.47 -0.357)' fill='%23fad080'/%3E%3C/svg%3E%0A");
  display: inline-block;
  position: absolute;
  left: 0;
  width: 80px;
  height: 75px;
  margin-right: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
}
@media (max-width: 900px) {
  blockquote:before {
    width: 30px;
    top: 0px;
  }
}
blockquote p {
  font-size: var(--quotesize);
  font-weight: 400;
  line-height: 1.12;
}
blockquote p:after {
  display: none;
  content: close-quote;
}

:target::before {
  content: "";
  display: block;
  height: 180px;
  margin-top: -180px;
}

.rteIntroText {
  background: transparent;
  text-align: center;
  padding: var(--pad);
  font-size: 2.4rem;
}

.bgLeft, .bgRight {
  opacity: 0;
  position: fixed;
  width: 40vw;
  height: 40vw;
  z-index: 0;
  transform: translateX(20px);
}
@media (max-width: 900px) {
  .bgLeft, .bgRight {
    display: none;
  }
}

.bgLeft {
  -webkit-transition: all 1.4s 0s;
  -moz-transition: all 1.4s 0s;
  -ms-transition: all 1.4s 0s;
  -o-transition: all 1.4s 0s;
  transition: all 1.4s 0s;
  top: 150px;
  left: -200px;
}

.bgRight {
  -webkit-transition: all 2s 1s;
  -moz-transition: all 2s 1s;
  -ms-transition: all 2s 1s;
  -o-transition: all 2s 1s;
  transition: all 2s 1s;
  bottom: 0;
  right: -150px;
}

body.loaded .bgLeft, body.loaded .bgRight {
  opacity: 0.09;
  transform: translateX(0px);
}/*# sourceMappingURL=a.css.map */