/**
 * CLICKPRESS CSS-Grid
 * @author: Stefan Schulz-Lauterbach
 *
 * thanks to Dinko Skopljak for co-working
 */
.justify-items-start {
  justify-items: start;
}

.justify-items-center {
  justify-items: center;
}

.justify-items-end {
  justify-items: end;
}

.justify-items-stretch {
  justify-items: stretch;
}

.content-start {
  align-content: start;
}

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

.content-end {
  align-content: end;
}

.items-start {
  align-items: start;
}

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

.items-end {
  align-items: end;
}

.items-stretch {
  align-items: stretch;
}

.items-baseline {
  align-items: baseline;
}

[class*=grid_] {
  display: grid;
  grid-gap: 1rem;
}
[class*=grid_] > .block {
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .grid_mobile_100 {
    grid-template-columns: 1fr;
  }
  .grid_mobile_50_50 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid_mobile_33_33_33 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid_mobile_25_25_25_25 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid_mobile_75_25 {
    grid-template-columns: 3fr 1fr;
  }
  .grid_mobile_25_75 {
    grid-template-columns: 1fr 3fr;
  }
  .grid_mobile_66_33 {
    grid-template-columns: 2fr 1fr;
  }
  .grid_mobile_33_66 {
    grid-template-columns: 1fr 2fr;
  }
  .grid_mobile_60_40 {
    grid-template-columns: 3fr 2fr;
  }
  .grid_mobile_40_60 {
    grid-template-columns: 2fr 3fr;
  }
  .grid_mobile_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_mobile_25_50_25 {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .grid_mobile_25_25_50 {
    grid-template-columns: 1fr 1fr 2fr;
  }
  .grid_mobile_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_mobile_30_40_30 {
    grid-template-columns: 3fr 4fr 3fr;
  }
  .grid_mobile_30_30_40 {
    grid-template-columns: 3fr 3fr 4fr;
  }
  .gap_mobile_0 {
    grid-gap: 0;
  }
  .gap_mobile_1 {
    grid-gap: 1rem;
  }
  .gap_mobile_2 {
    grid-gap: 2rem;
  }
  .gap_mobile_3 {
    grid-gap: 3rem;
  }
  .gap_mobile_4 {
    grid-gap: 4rem;
  }
  .gap_mobile_5 {
    grid-gap: 5rem;
  }
  .gap_mobile_6 {
    grid-gap: 6rem;
  }
  .gap_mobile_7 {
    grid-gap: 7rem;
  }
  .gap_mobile_8 {
    grid-gap: 8rem;
  }
  .gap_mobile_9 {
    grid-gap: 9rem;
  }
  .gap_mobile_10 {
    grid-gap: 10rem;
  }
  .gap_mobile_11 {
    grid-gap: 11rem;
  }
  .gap_mobile_12 {
    grid-gap: 12rem;
  }
}
@media (min-width: 768px) {
  .grid_tablet_100 {
    grid-template-columns: 1fr;
  }
  .grid_tablet_50_50 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid_tablet_33_33_33 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid_tablet_25_25_25_25 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid_tablet_75_25 {
    grid-template-columns: 3fr 1fr;
  }
  .grid_tablet_25_75 {
    grid-template-columns: 1fr 3fr;
  }
  .grid_tablet_66_33 {
    grid-template-columns: 2fr 1fr;
  }
  .grid_tablet_33_66 {
    grid-template-columns: 1fr 2fr;
  }
  .grid_tablet_60_40 {
    grid-template-columns: 3fr 2fr;
  }
  .grid_tablet_40_60 {
    grid-template-columns: 2fr 3fr;
  }
  .grid_tablet_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_tablet_25_50_25 {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .grid_tablet_25_25_50 {
    grid-template-columns: 1fr 1fr 2fr;
  }
  .grid_tablet_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_tablet_30_40_30 {
    grid-template-columns: 3fr 4fr 3fr;
  }
  .grid_tablet_30_30_40 {
    grid-template-columns: 3fr 3fr 4fr;
  }
  .grid_tablet_20_40_40 {
    grid-template-columns: 1fr 2fr 2fr;
  }
  .grid_tablet_40_20_40 {
    grid-template-columns: 2fr 1fr 2fr;
  }
  .grid_tablet_40_40_20 {
    grid-template-columns: 2fr 2fr 1fr;
  }
  .gap_tablet_0 {
    grid-gap: 0;
  }
  .gap_tablet_1 {
    grid-gap: 1rem;
  }
  .gap_tablet_2 {
    grid-gap: 2rem;
  }
  .gap_tablet_3 {
    grid-gap: 3rem;
  }
  .gap_tablet_4 {
    grid-gap: 4rem;
  }
  .gap_tablet_5 {
    grid-gap: 5rem;
  }
  .gap_tablet_6 {
    grid-gap: 6rem;
  }
  .gap_tablet_7 {
    grid-gap: 7rem;
  }
  .gap_tablet_8 {
    grid-gap: 8rem;
  }
  .gap_tablet_9 {
    grid-gap: 9rem;
  }
  .gap_tablet_10 {
    grid-gap: 10rem;
  }
  .gap_tablet_11 {
    grid-gap: 11rem;
  }
  .gap_tablet_12 {
    grid-gap: 12rem;
  }
}
@media (min-width: 992px) {
  .grid_desktop_100 {
    grid-template-columns: 1fr;
  }
  .grid_desktop_50_50 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid_desktop_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_desktop_33_33_33 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid_desktop_75_25 {
    grid-template-columns: 3fr 1fr;
  }
  .grid_desktop_25_75 {
    grid-template-columns: 1fr 3fr;
  }
  .grid_desktop_66_33 {
    grid-template-columns: 2fr 1fr;
  }
  .grid_desktop_60_40 {
    grid-template-columns: 3fr 2fr;
  }
  .grid_desktop_40_60 {
    grid-template-columns: 2fr 3fr;
  }
  .grid_desktop_33_66 {
    grid-template-columns: 1fr 2fr;
  }
  .grid_desktop_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_desktop_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_desktop_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_desktop_25_50_25 {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .grid_desktop_25_25_50 {
    grid-template-columns: 1fr 1fr 2fr;
  }
  .grid_desktop_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_desktop_30_40_30 {
    grid-template-columns: 3fr 4fr 3fr;
  }
  .grid_desktop_30_30_40 {
    grid-template-columns: 3fr 3fr 4fr;
  }
  .grid_desktop_20_40_40 {
    grid-template-columns: 1fr 2fr 2fr;
  }
  .grid_desktop_40_20_40 {
    grid-template-columns: 2fr 1fr 2fr;
  }
  .grid_desktop_40_40_20 {
    grid-template-columns: 2fr 2fr 1fr;
  }
  .grid_desktop_25_25_25_25 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid_desktop_40_20_20_20 {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .grid_desktop_20_40_20_20 {
    grid-template-columns: 1fr 2fr 1fr 1fr;
  }
  .grid_desktop_20_20_40_20 {
    grid-template-columns: 1fr 1fr 2fr 1fr;
  }
  .grid_desktop_20_20_20_40 {
    grid-template-columns: 1fr 1fr 1fr 2fr;
  }
  .grid_desktop_20_20_20_20_20 {
    grid-template-columns: repeat(5, 1fr);
  }
  .gap_desktop_0 {
    grid-gap: 0;
  }
  .gap_desktop_1 {
    grid-gap: 1rem;
  }
  .gap_desktop_2 {
    grid-gap: 2rem;
  }
  .gap_desktop_3 {
    grid-gap: 3rem;
  }
  .gap_desktop_4 {
    grid-gap: 4rem;
  }
  .gap_desktop_5 {
    grid-gap: 5rem;
  }
  .gap_desktop_6 {
    grid-gap: 6rem;
  }
  .gap_desktop_7 {
    grid-gap: 7rem;
  }
  .gap_desktop_8 {
    grid-gap: 8rem;
  }
  .gap_desktop_9 {
    grid-gap: 9rem;
  }
  .gap_desktop_10 {
    grid-gap: 10rem;
  }
  .gap_desktop_11 {
    grid-gap: 11rem;
  }
  .gap_desktop_12 {
    grid-gap: 12rem;
  }
}

/*# sourceMappingURL=clickpress-grid.css.map */

#colorbox,#cboxOverlay,#cboxWrapper{position:absolute;top:0;left:0;z-index:9999;overflow:hidden;-webkit-transform:translate3d(0,0,0)}#cboxWrapper{max-width:none}#cboxOverlay{position:fixed;width:100%;height:100%}#cboxMiddleLeft,#cboxBottomLeft{clear:left}#cboxContent{position:relative}#cboxLoadedContent{overflow:auto;-webkit-overflow-scrolling:touch}#cboxTitle{margin:0}#cboxLoadingOverlay,#cboxLoadingGraphic{position:absolute;top:0;left:0;width:100%;height:100%}#cboxPrevious,#cboxNext,#cboxClose,#cboxSlideshow{cursor:pointer}.cboxPhoto{float:left;margin:auto;border:0;display:block;max-width:none;-ms-interpolation-mode:bicubic}.cboxIframe{width:100%;height:100%;display:block;border:0;padding:0;margin:0}#colorbox,#cboxContent,#cboxLoadedContent{box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}#cboxOverlay{background:#000;opacity:.9;filter:alpha(opacity = 90)}#colorbox{outline:0}#cboxContent{margin-top:20px;background:#000}.cboxIframe{background:#fff}#cboxError{padding:50px;border:1px solid #ccc}#cboxLoadedContent{border:5px solid #000;background:#fff}#cboxTitle{position:absolute;top:-20px;left:0;color:#ccc}#cboxCurrent{position:absolute;top:-20px;right:0;color:#ccc}#cboxLoadingGraphic{background:url(../../assets/colorbox/images/loading.gif) no-repeat center center}#cboxPrevious,#cboxNext,#cboxSlideshow,#cboxClose{border:0;padding:0;margin:0;overflow:visible;width:auto;background:0 0}#cboxPrevious:active,#cboxNext:active,#cboxSlideshow:active,#cboxClose:active{outline:0}#cboxSlideshow{position:absolute;top:-20px;right:90px;color:#fff}#cboxPrevious{position:absolute;top:50%;left:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top left;width:28px;height:65px;text-indent:-9999px}#cboxPrevious:hover{background-position:bottom left}#cboxNext{position:absolute;top:50%;right:5px;margin-top:-32px;background:url(../../assets/colorbox/images/controls.png) no-repeat top right;width:28px;height:65px;text-indent:-9999px}#cboxNext:hover{background-position:bottom right}#cboxClose{position:absolute;top:5px;right:5px;display:block;background:url(../../assets/colorbox/images/controls.png) no-repeat top center;width:38px;height:19px;text-indent:-9999px}#cboxClose:hover{background-position:bottom center}
@media screen, projection {

 /**
  * Standardize some basic elements
  */
  body, 
  form {
    margin:0;
    padding:0;
  }

  img {
    border:0;
  }

  header, 
  footer, 
  nav, 
  section, 
  aside, 
  article, 
  figure, 
  figcaption {
    display:block;
  }

 /**
  * Clear floats
  */
  .block {
     /*overflow:hidden;*/
  }

  .clear, #clear {
    height:0.1px;
    font-size:0.1px;
    line-height:0.1px;
    clear:both;
  }

 /**
  * Hide invisible elements
  */
  .invisible {
    width:0;
    height:0;
    left:-1000px;
    top:-1000px;
    position:absolute;
    overflow:hidden;
    display:inline;
  }

 /**
  * Fix some positioning issues
  */
  #container,
  .inside {
    position:relative;
  }

 /**
  * Custom layout sections
  */
  .custom {
    display:block;
  }

  #container:after, 
  .custom:after {
    content:" ";
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
  }

 /**
  * Responsive images
  */
  img {
    max-width:100%;
    height:auto;
    width:auto;
  }

  .ie7 img {
    -ms-interpolation-mode:bicubic;
  }

 /**
  * Format the Contao image galleries (now rendered as unordered lists)
  */
  .ce_gallery ul {
    margin:0;
    padding:0;
    overflow:hidden;
    list-style:none;
  }

  .ce_gallery li {
    float:left;
  }

  .ce_gallery li.col_first {
    clear:left;
  }

 /*------------------------------------------------------------------------*/

 /**
  * General list styling
  */
  .mod_article ul, 
  .mod_article ol { 
    list-style:disc; 
    padding:0 0 0 20px; 
    margin:5px 10px 5px;
  }
  
  .data ul { 
    margin:5px 0;
    padding-left:0;
    list-style:none;
  }

  .mod_article ol { 
    list-style:decimal;
  }

  .mod_article li { 
    padding:1px 0; 
  }

  .data span { 
    float:left;
    width:55px;
  }

 /*------------------------------------------------------------------------*/

 /**
  * Reset contao navigation styles
  */
  nav ul,
  .mod_sitemap ul,
  .pagination ul {
    margin:0;
    padding:0;
  }

}

/*! normalize.css v2.1.3 | MIT License | git.io/normalize */

/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined in IE 8/9.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */

audio,
canvas,
video {
    display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */

[hidden],
template {
    display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
    font-family: sans-serif; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */

body {
    margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
    background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */

a:focus {
    outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
    outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */

b,
strong {
    font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */

dfn {
    font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
    background: #ff0;
    color: #000;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */

code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */

pre {
    white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */

q {
    quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9.
 */

img {
    border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */

svg:not(:root) {
    overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari 5.
 */

figure {
    margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
    border: 0; /* 1 */
    padding: 0; /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */

button,
input,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 2 */
    margin: 0; /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

button,
input {
    line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */

button,
select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button; /* 2 */
    cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
    cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */

textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

@media screen, projection {

  form br { 
    display:none; 
  }

  input, textarea, select {
    -webkit-border-radius:2px;
    border-radius:2px;
    padding:5px;
  }

  input[type="text"]:focus, 
  input[type="password"]:focus, 
  input[type="date"]:focus, 
  input[type="datetime"]:focus, 
  input[type="email"]:focus, 
  input[type="number"]:focus, 
  input[type="search"]:focus, 
  input[type="tel"]:focus, 
  input[type="time"]:focus, 
  input[type="url"]:focus, 
  textarea:focus {
    outline:0 none;
  }

 /**
  * Fix some width and height settings
  */
  input[type="file"] {
    cursor:pointer;
    display:block;
  }

  input[type="file"], 
  input[type="image"], 
  input[type="submit"], 
  input[type="reset"], 
  input[type="button"], 
  input[type="radio"], 
  input[type="checkbox"] {
    width:auto;
  }

  textarea, 
  select[multiple], 
  select[size] {
    height:auto;
  }

  fieldset {
    border:0;
    padding:0;
    margin:0;
  }

  legend {
    width:100%;
    display:block;
    border:0;
  }

  .entry {
    margin-bottom:10px;
  }

  .entry label {
    width:100px;
    display:inline-block;
  }

  .checkbox_container { 
    margin-top:10px; 
  }

  .checkbox_container input, 
  .radio_container input {
    width:auto;
  }

  .checkbox_container span, 
  .radio_container span { 
    display:block; 
  }

  .checkbox_container legend > span, 
  .radio_container legend > span {
    display:inline;
  }

  .checkbox_container legend > span:before, 
  .radio_container legend > span:before {
    content:" ";
  }

  .checkbox_container label, 
  .checkbox_container input { 
    vertical-align:middle; 
  }

  input.checkbox, 
  input.radio { 
    margin-right:3px;
  }

  .checkbox_container label, 
  .radio_container label { 
    float:none;
    display:inline;
  }

  span > input, 
  input + label {
    display:inline;
  }

  .captcha_text {
    display:block;
    float:none;
  }

  input[type="checkbox"],
  input[type="radio"],
  x:-moz-any-link {
    position:relative;
  }

  input[type="checkbox"] { 
    top:-1px;
  }

  input[type="radio"] { 
    top:2px;
  }

  .submit_container { 
    margin:10px 0;
  }

}
@media screen, projection {
  
  html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, font, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-weight:inherit;
    font-style:inherit;
    vertical-align:baseline;
  }

  body {
    color:#000;
    background-color:#fff;
  }
  
  ol, ul {
    list-style:none;
  }
  
  table {
    border-collapse:separate;
    border-spacing:0;
  }
  
  caption, th, td {
    text-align:left;
    font-weight:normal;
  }

 /*------------------------------------------------------------------------*/

  input[type="text"], 
  input[type="password"], 
  input[type="date"], 
  input[type="datetime"],
  input[type="email"], 
  input[type="number"], 
  input[type="search"], 
  input[type="tel"], 
  input[type="time"],
  input[type="url"], 
  textarea {
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    display:inline-block;
  }

  button,
  html input[type="button"],
  input[type="reset"],
  input[type="submit"] {
    -webkit-appearance:button;
    cursor:pointer;
  }

  button::-moz-focus-inner {
    border:0;
    padding:0;
  }

  img {
    vertical-align:middle;
  }

  object {
    display:block;
  }

  textarea {
    resize:vertical;
  }

  textarea[contenteditable] {
    -webkit-appearance:none;
  }

  hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #ccc;
    margin:1em 0;
    padding:0;
  }
 
}
.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}

@media (max-width: 80em) { }

@media (max-width: 48em) { }

@media (max-width: 56.250em) {

  .subcolumns .first,
  .subcolumns .mod_colsetPart,
  .subcolumns .sc_second,
  .subcolumns > div {
    float:none;
    width:100%;
    margin:0;
  }

  .equalize > div {
    display:block;
  }

  .subcolumns .mod_colsetPart,
  .subcolumns .ce_colsetPart,
  .subcolumns .sc_second {
    margin-top:0;
  }

  .subcolumns .subcl,
  .subcolumns .subcr,
  .subcolumns .subc {
    padding:0 !important;
  }

  .ym-grid .first,
  .ym-grid .ce_colsetStart,
  .ym-grid .ce_colsetPart,
  .ym-grid > div {
    float:none;
    width:100%;
    margin:0;
  }

  .ym-grid .ym-gbox-left,
  .ym-grid .ym-gbox,
  .ym-grid .ym-gbox-right {
    padding:0 !important;
  }

}

@media (max-width: 30em) { }

@media (orientation:portrait) and (orientation:portrait) { }

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) { }
@media print {

  * {
    margin:0;
    padding:0;
    border:0;
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, font, img, ins, kbd, q, s, samp,
  small, strike, sub, sup, tt, var,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
  }

  img, object {
    display:block;
    margin:0;
    padding:0;
    border:0;
  }

  body {
    width:100%;
    text-align:left;
    margin:0;
    padding:0;
    font:11pt Arial, Helvetica, sans-serif;
    color:#000;
    background-color:#fff;
    background-image:none;
  }

  /*
   * show the logo
   */

  #logo a {
    content: url(../../files/standard/layout/images/logo.png);
  }

 /*------------------------------------------------------------------------*/

 /**
  * Hide and reset
  */

  h1, h2, h3, h4, h5, h6 {
    font-weight:700;
    margin:0.75em 0 0.5em;
    text-align:left;
    page-break-after:avoid;
  }

  h1 {
    padding:0 0 0.5em;
    border-bottom:1px solid #ccc;
  }


  p {
    margin:0.5em 0;
    font-stretch:expanded;
  }

  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content:" (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  img {
    padding:0.5em 0;
    max-width: 100% !important;
    width: auto;
    height: auto;
  }

  .sideLinks,
  .caroufredsel_controls {
    display: none;
  }

  /**
   * reset caroufredsel
   */

  .caroufredsel, .ce_caroufredsel, .caroufredsel_wrapper, .caroufredsel_skin,
  .ce_caroufredsel_start, .ce_image {
    width: 100% !important;
    max-width: 100% !important;
  }

  .caroufredsel .ce_image:not(.visible) {
    display: none;

  }

  .mod_newslist .layout_latest {
    margin-bottom: 100px !important;
  }

  .mod_newslist .texts {
    width: 60% !important;
    margin-left: 10%;
  }


 /*------------------------------------------------------------------------*/

  #header {
    width:auto;
    height:auto;
  }

  footer,
  aside,
  nav,
  .pagination {
    display:none;
  }

  #main {
    float:none;
    width:auto;
    margin:0;
  }

  .subcolumns .first,
  .subcolumns .mod_colsetPart,
  .subcolumns .sc_second {
    float:none;
    width:100%;
    margin:0 !important;
  }

  .subcolumns .mod_colsetPart,
  .subcolumns .sc_second {
    margin-top:0 !important;
  }

  .subcolumns .subcl,
  .subcolumns .subcr,
  .subcolumns .subc {
    padding:0 !important;
  }

 /*------------------------------------------------------------------------*/

  table {
    width:100%;
  }

}
@charset "UTF-8";
/*
 * Strip units from all numbers
 * 
 * Based on the following ticket:
 * https://github.com/sass/sass/issues/533
 */
/*
 * Font Settings
 */
/*
 * Color settings
 *
 * How to use color variables:
 * http://davidwalsh.name/sass-color-variables-dont-suck
 * http://chir.ag/projects/name-that-color/
 */
/*
 * Icon settings
 *
 * How to use icon variables and the new map function:
 * http://jaydenseric.com/blog/fun-with-sass-and-font-icons
 *
 * To use data types "maps", use the alpha version of Compass
 * http://stackoverflow.com/questions/22515932/use-map-data-type-with-compass
 */
/*
 * Strip units from all numbers
 * 
 * Based on the following ticket:
 * https://github.com/sass/sass/issues/533
 */
/*
 * Font Settings
 */
/*
 * Color settings
 *
 * How to use color variables:
 * http://davidwalsh.name/sass-color-variables-dont-suck
 * http://chir.ag/projects/name-that-color/
 */
/*
 * Icon settings
 *
 * How to use icon variables and the new map function:
 * http://jaydenseric.com/blog/fun-with-sass-and-font-icons
 *
 * To use data types "maps", use the alpha version of Compass
 * http://stackoverflow.com/questions/22515932/use-map-data-type-with-compass
 */
/*
 * Convert absolute font sizes to rem with px fallback
 * 
 * How to use
 * @include adjust-font-size-to-rem($font-size, [$line-height]);
 */
/*
 * Example media queries
 *
 * max-width
 * @include breakpoint(500)
 * @media screen and (max-width: 500px)
 *
 * min-width
 * @include breakpoint(500, min)
 * @media screen and (min-width: 500px)
 *
 * min-width and max-width
 * @include breakpoint(470 500)
 * @media screen and (min-width: 470px) and (max-width: 500px)
 */
/*
 * Normalize the icon font
 * 
 * How to use
 * @include normalize-icon-font($font-family, [$styles]);
 * 
 * Real life example (without styles)
 * @include normalize-icon-font('Arial', false);
 */
/*
 * For adding font icons to elements using CSS pseudo-elements
 * 
 * Based on the following tutorial:
 * http://jaydenseric.com/blog/fun-with-sass-and-font-icons
 *
 * You need the compass alpha to use this mixin
 * http://stackoverflow.com/questions/22515932/use-map-data-type-with-compass
 * 
 * How to use
 * @include icon-font($font, [$icon], [$position], [$styles]);
 */
/*
 * Normalize the icon font
 * 
 * How to use
 * @include normalize-icon-font($font-family, [$styles]);
 * 
 * Real life example (without styles)
 * @include normalize-icon-font('Arial', false);
 */
/*
 * Reset the box-shadow
 */
/*
 * triangle with the ci-color
 */
.ce_hyperlink.button {
  background-color: #94bd56;
  margin: auto;
  max-width: 300px;
}
.ce_hyperlink.button.career {
  max-width: 345px;
}
.ce_hyperlink.button.career a {
  max-width: 345px;
}
.ce_hyperlink.button a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  color: #ffffff !important;
  z-index: 1;
  display: block;
  height: 55px;
  line-height: 55px;
  margin: auto;
  max-width: 300px;
  text-decoration: none;
  width: 100%;
  font-family: "source_sans_probold", Helvetica, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  position: relative;
  text-align: center;
}
.ce_hyperlink.button a:hover {
  background-color: #007caf;
}

button[type=submit], input[type=submit] {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #94bd56;
  border-radius: 0;
  border: none;
  color: #ffffff;
  max-width: 300px;
  padding: 15px 15px;
  width: 100%;
}
button[type=submit]:hover, input[type=submit]:hover {
  background-color: #007caf;
  color: #ffffff;
}
@media only screen and (max-width: 500px) {
  button[type=submit], input[type=submit] {
    width: 100%;
  }
}

.ce_hyperlink .button {
  background-color: #94bd56;
  margin: auto;
  max-width: 300px;
  color: #ffffff !important;
  z-index: 1;
  display: block;
  height: 55px;
  line-height: 55px;
  margin: auto;
  max-width: 300px;
  text-decoration: none;
  width: 100%;
  font-family: "source_sans_probold", Helvetica, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  position: relative;
}
.ce_hyperlink .button:after {
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #007caf;
  content: "";
  height: 100%;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 0;
  z-index: -1;
}
.ce_hyperlink .button:hover:after {
  width: 100%;
  opacity: 1;
}
.ce_hyperlink.left {
  margin: 20px 0 0 0;
}

.ce_download img {
  display: none;
}
.ce_download a {
  padding-left: 20px;
  position: relative;
  overflow: hidden;
  height: 20px;
  text-decoration: none;
  display: inline-block;
}
.ce_download a:before {
  background: transparent url(../../files/standard/layout/images/icon-download.png) no-repeat center center;
  width: 10px;
  height: 15px;
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 4px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ce_download a:hover:before {
  top: 6px;
}

.ce_form .wform {
  margin-top: 50px;
}

body.safari .ce_form .widget.client span {
  padding-left: 1px;
}

label.mandatory.required:after {
  content: "*";
  display: inline-block;
  color: #94bd56;
}

.ce_form {
  padding: 0 2px;
}
.ce_form .widget.client {
  margin-bottom: 0;
}
.ce_form .widget.client.under {
  margin-bottom: 15px;
}
.ce_form .widget.client.under span {
  display: block;
}
.ce_form .widget.client.under span.mandatory {
  display: inline-block;
}
.ce_form .widget.client span {
  display: inline-block;
  margin-right: 25px;
}
.ce_form .widget.client input {
  width: auto;
}
.ce_form .widget.client label {
  cursor: pointer;
  position: static;
}
.ce_form .widget.headline {
  margin: 0;
}
.ce_form .widget.headline h3 {
  margin: 0;
}
.ce_form .widget {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  transition: all 0.8s;
  margin-bottom: 30px;
  padding: 10px 1px;
  position: relative;
  width: 100%;
}
.ce_form .widget.widget-radio {
  padding: 0;
}
.ce_form .widget.widget-radio label {
  bottom: inherit;
}
.ce_form .widget.widget-checkbox fieldset, .ce_form .widget.widget-radio fieldset {
  margin-top: -5px;
}
.ce_form .widget.widget-checkbox fieldset label .mandatory, .ce_form .widget.widget-radio fieldset label .mandatory {
  color: #94bd56;
}
.ce_form .widget.widget-captcha {
  margin-top: 15px;
}
.ce_form .widget.widget-captcha label {
  bottom: 15px;
}
.ce_form .widget.widget-captcha label.active {
  bottom: 15px;
}
.ce_form .widget.widget-captcha .captcha_text {
  left: 140px;
  font-size: 12px;
  color: #A9A9A9;
  position: absolute;
  bottom: 15px;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  transition: all 0.8s;
}
.ce_form .widget:after {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  transition: all 0.8s;
  background-color: #94bd56;
  content: "";
  display: block;
  height: 3px;
  width: 0%;
  position: relative;
  bottom: 1px;
}
.ce_form .widget.explanation {
  margin-bottom: 0;
  padding: 0;
}
.ce_form .widget.explanation p .mandatory {
  color: #94bd56;
}
.ce_form .widget.active:after {
  width: 99%;
}
.ce_form .widget.active label, .ce_form .widget.active .captcha_text {
  bottom: -7px;
  font-size: 11px;
}
.ce_form .widget.active .captcha_text {
  left: 100px;
}
.ce_form .widget label {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  transition: all 0.8s;
  bottom: 15px;
  left: 0;
  position: absolute;
}
.ce_form .widget input, .ce_form .widget select {
  border-color: transparent transparent gray transparent;
  width: 99%;
}
.ce_form .widget select {
  background-position: 95% 50%;
  background-repeat: no-repeat;
}
.ce_form .widget textarea {
  background-color: #ffffff;
  height: 196px;
  width: 99%;
}
.ce_form .widget textarea.service {
  height: auto;
}
.ce_form .widget input:focus, .ce_form .widget select:focus {
  background-color: #ffffff;
  border-color: transparent transparent gray transparent;
}
.ce_form .widget.select select {
  padding: 3px 0 5px;
}
.ce_form .widget.select select option {
  color: #94bd56;
}
.ce_form .widget.widget-textarea label {
  left: 5px;
}
.ce_form .widget.widget-textarea.active label {
  left: 0;
}
.ce_form .mandatory span.mandatory {
  color: #94bd56;
}
.ce_form input[type=checkbox] {
  width: inherit;
}
.ce_form input[type=checkbox] + label {
  position: static;
}
.ce_form button[type=submit] {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #94bd56;
  border-radius: 0;
  border: none;
  color: #ffffff;
  max-width: 300px;
  padding: 15px 15px;
  width: 100%;
}
.ce_form button[type=submit]:hover {
  background-color: #007caf;
  color: #ffffff;
}
@media only screen and (max-width: 500px) {
  .ce_form button[type=submit] {
    width: 100%;
  }
}
.ce_form .error {
  color: #ff0000;
}

@media only screen and (max-width: 900px) {
  .route {
    margin-bottom: 30px;
  }
}

.fbform h3 {
  margin-bottom: 30px !important;
}
.fbform .widget-checkbox, .fbform .widget-radio {
  padding: 0;
  margin: 0;
}
.fbform .widget-checkbox.yes span, .fbform .widget-radio.yes span {
  background: transparent url(../../files/standard/layout/images/feedback/nicht-gut.jpg) no-repeat 20px center;
  margin-bottom: 15px;
}
.fbform .widget-checkbox.yes span.zufrieden, .fbform .widget-radio.yes span.zufrieden {
  background: transparent url(../../files/standard/layout/images/feedback/sehr-gut.jpg) no-repeat 20px center;
}
.fbform .widget-checkbox.yes span span, .fbform .widget-radio.yes span span {
  margin-top: 5px;
}
.fbform .widget-checkbox.yes span label, .fbform .widget-radio.yes span label {
  margin-left: 30px;
  display: inline-block;
  vertical-align: middle;
  width: 85%;
}
@media only screen and (max-width: 430px) {
  .fbform .widget-checkbox.yes span label, .fbform .widget-radio.yes span label {
    width: 75%;
  }
}
.fbform .widget-checkbox.yes span input, .fbform .widget-radio.yes span input {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
}
.fbform .widget-checkbox.no, .fbform .widget-radio.no {
  background: transparent url(../../files/standard/layout/images/feedback/nicht-gut.jpg) no-repeat 20px center;
}
.fbform .widget-checkbox.no span, .fbform .widget-radio.no span {
  margin-top: 5px;
}
.fbform .widget-checkbox.no label, .fbform .widget-radio.no label {
  margin-left: 30px;
  display: inline-block;
  vertical-align: middle;
  width: 85%;
}
@media only screen and (max-width: 430px) {
  .fbform .widget-checkbox.no label, .fbform .widget-radio.no label {
    width: 75%;
  }
}
.fbform .widget-checkbox.no input, .fbform .widget-radio.no input {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
}
.fbform .widget-textarea.reason {
  display: none;
}
.fbform .widget-textarea.reason.visible {
  display: block;
}
.fbform .ratings span {
  background: transparent url(../../files/standard/layout/images/feedback/sehr-gut.jpg) no-repeat right center;
  width: 25px;
  height: 24px;
  display: inline-block;
}
.fbform .ratings span label {
  text-indent: -99999px;
}
.ce_form .fbform .widget .radio_container span label {
  position: static;
}

.contact_persons .item {
  display: inline-block;
  margin-bottom: 5%;
  margin-right: calc(2% - 5px);
  vertical-align: top;
  width: 30%;
}
@media only screen and (min-width: 1024px) {
  .contact_persons .item:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .contact_persons .item {
    width: 48%;
  }
}
@media only screen and (max-width: 768px) {
  .contact_persons .item {
    display: block;
    margin-bottom: 10%;
    width: 100%;
  }
}

.contact_persons .data span {
  width: 63px;
}
.contact_persons h2 {
  margin-bottom: 20px;
}

.event {
  margin: 50px auto;
  border-bottom: 1px solid #94bd56;
  padding-bottom: 50px;
}
.event:nth-of-type(5n) {
  border-bottom: none;
}
.event .info {
  font-size: 12px;
}
.event .subcolumns .col_1 {
  margin-bottom: 30px;
}
.event .subcolumns .col_2 p {
  padding: 0 0 8px;
}
.event .ce_image {
  max-width: 250px;
  max-height: 250px;
  overflow: hidden;
}
.event .ce_image:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.event .ce_image img {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.event .ce_download img {
  display: none;
}
.event .ce_download a {
  padding-left: 25px;
  position: relative;
  font-size: 13px;
}
.event .ce_download a:before {
  font-family: "iconfont";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}
.event .ce_download a:before {
  position: absolute;
  left: 0;
  bottom: 0%;
  font-size: 16px;
}

.item {
  overflow: hidden;
  margin-bottom: 80px;
}
.item.last-child {
  margin-bottom: 0;
}
.item.services_left .textElement {
  background-color: #f5f5f5;
  margin-top: 20px;
}
@media only screen and (max-width: 950px) {
  .item.services_left .textElement {
    margin-top: 0;
  }
}
@media only screen and (max-width: 1140px) {
  .item.services_left .left {
    max-width: 40%;
  }
}
@media only screen and (max-width: 950px) {
  .item.services_left .left {
    max-width: 450px;
    margin: auto;
  }
}
@media only screen and (max-width: 1140px) {
  .item.services_left .right {
    max-width: 60%;
  }
}
@media only screen and (max-width: 950px) {
  .item.services_left .right {
    max-width: 450px;
    margin: auto;
  }
}
.item.services_right .textElement {
  background-color: #f5f5f5;
  margin-top: 30px;
}
@media only screen and (max-width: 950px) {
  .item.services_right .textElement {
    margin-top: 0;
  }
}
@media only screen and (max-width: 1140px) {
  .item.services_right .right {
    max-width: 40%;
  }
}
@media only screen and (max-width: 950px) {
  .item.services_right .right {
    max-width: 450px;
    margin: auto;
  }
}
@media only screen and (max-width: 1140px) {
  .item.services_right .left {
    max-width: 60%;
  }
}
@media only screen and (max-width: 950px) {
  .item.services_right .left {
    max-width: 450px;
    margin: auto;
  }
}
.item .image_container {
  max-width: 440px;
  width: 100%;
}
.item .left {
  float: left;
}
@media only screen and (max-width: 950px) {
  .item .left {
    float: none;
  }
}
.item .right {
  float: right;
}
@media only screen and (max-width: 950px) {
  .item .right {
    float: none;
  }
}
.item .textElement {
  max-width: 605px;
  width: 100%;
  padding: 40px;
}
@media only screen and (max-width: 950px) {
  .item .textElement {
    padding: 10px;
  }
}
@media only screen and (max-width: 950px) {
  .item h2 {
    font-size: 35px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 320px) {
  .item h2 {
    font-size: 27px;
    line-height: 37px;
  }
}

.subcolumns .ce_text {
  background-color: transparent;
}

footer {
  width: 100%;
  background-color: #f7f7f7;
}
footer .inside {
  width: 80%;
  margin-inline: auto;
}
footer .inside section {
  background-color: transparent;
}
@media only screen and (max-width: 480px) {
  footer .inside {
    width: 90%;
  }
}
@media screen and (min-width: 480px) and (max-width: 1320px) {
  footer .inside {
    width: 95%;
  }
}

section.footer {
  background-color: #fafafa;
  padding: 65px 0;
  border-top: 1px solid #f0f0f0;
}
@media only screen and (max-width: 1280px) {
  section.footer {
    padding: 65px 2%;
  }
}
@media only screen and (max-width: 680px) {
  section.footer {
    padding: 2rem 0;
  }
}
@media only screen and (max-width: 1024px) {
  section.footer .grid {
    margin-bottom: 30px;
  }
}
section.footer .grid .h1Style {
  font-family: "source_sans_prolight", Helvetica, sans-serif;
  font-size: 38px;
  line-height: 65px;
  margin-bottom: 25px;
}
section.footer .grid.grid-one h4 + .data + h4, section.footer .grid.grid-one .mod_newsreader .back + .data + h4, .mod_newsreader section.footer .grid.grid-one .back + .data + h4, section.footer .grid.grid-one .mod_newsreader h4 + .data + .back, .mod_newsreader section.footer .grid.grid-one h4 + .data + .back, section.footer .grid.grid-one .mod_newsreader .back + .data + .back, .mod_newsreader section.footer .grid.grid-one .back + .data + .back, section.footer .grid.grid-one .ce_hyperlink:not(.button) a + .data + h4, section.footer .grid.grid-one .ce_hyperlink:not(.button) .mod_newsreader a + .data + .back, .mod_newsreader section.footer .grid.grid-one .ce_hyperlink:not(.button) a + .data + .back, .ce_hyperlink:not(.button) section.footer .grid.grid-one a + .data + h4, .ce_hyperlink:not(.button) section.footer .grid.grid-one .mod_newsreader a + .data + .back, .mod_newsreader .ce_hyperlink:not(.button) section.footer .grid.grid-one a + .data + .back, section.footer .grid.grid-one .ce_hyperlink:not(.button) h4 + .data + a, section.footer .grid.grid-one .ce_hyperlink:not(.button) .mod_newsreader .back + .data + a, .mod_newsreader section.footer .grid.grid-one .ce_hyperlink:not(.button) .back + .data + a, .ce_hyperlink:not(.button) section.footer .grid.grid-one h4 + .data + a, .ce_hyperlink:not(.button) section.footer .grid.grid-one .mod_newsreader .back + .data + a, .mod_newsreader .ce_hyperlink:not(.button) section.footer .grid.grid-one .back + .data + a, section.footer .grid.grid-one .ce_hyperlink:not(.button) a + .data + a, .ce_hyperlink:not(.button) section.footer .grid.grid-one a + .data + a, section.footer .grid.grid-one button[type=submit] + .data + h4, section.footer .grid.grid-one .mod_newsreader button[type=submit] + .data + .back, .mod_newsreader section.footer .grid.grid-one button[type=submit] + .data + .back, section.footer .grid.grid-one .ce_hyperlink:not(.button) button[type=submit] + .data + a, .ce_hyperlink:not(.button) section.footer .grid.grid-one button[type=submit] + .data + a, section.footer .grid.grid-one input[type=submit] + .data + h4, section.footer .grid.grid-one .mod_newsreader input[type=submit] + .data + .back, .mod_newsreader section.footer .grid.grid-one input[type=submit] + .data + .back, section.footer .grid.grid-one .ce_hyperlink:not(.button) input[type=submit] + .data + a, .ce_hyperlink:not(.button) section.footer .grid.grid-one input[type=submit] + .data + a, section.footer .grid.grid-one h4 + .data + button[type=submit], section.footer .grid.grid-one .mod_newsreader .back + .data + button[type=submit], .mod_newsreader section.footer .grid.grid-one .back + .data + button[type=submit], section.footer .grid.grid-one .ce_hyperlink:not(.button) a + .data + button[type=submit], .ce_hyperlink:not(.button) section.footer .grid.grid-one a + .data + button[type=submit], section.footer .grid.grid-one button[type=submit] + .data + button[type=submit], section.footer .grid.grid-one input[type=submit] + .data + button[type=submit], section.footer .grid.grid-one h4 + .data + input[type=submit], section.footer .grid.grid-one .mod_newsreader .back + .data + input[type=submit], .mod_newsreader section.footer .grid.grid-one .back + .data + input[type=submit], section.footer .grid.grid-one .ce_hyperlink:not(.button) a + .data + input[type=submit], .ce_hyperlink:not(.button) section.footer .grid.grid-one a + .data + input[type=submit], section.footer .grid.grid-one button[type=submit] + .data + input[type=submit], section.footer .grid.grid-one input[type=submit] + .data + input[type=submit] {
  margin-top: 20px;
}
section.footer .grid.grid-one h3, section.footer .grid.grid-one .h4Style {
  font-family: "source_sans_probold", Helvetica, sans-serif;
  font-size: 15px;
  line-height: 25px;
  text-decoration: none;
}
section.footer .grid.grid-two .data.h4Style ul {
  margin: 0;
}
section.footer .grid.grid-two .data.h4Style a {
  font-family: "source_sans_proregular", Helvetica, sans-serif;
  font-size: 15px;
  line-height: 25px;
  text-decoration: none;
}
section.footer .grid.grid-three .ce_hyperlink {
  color: #555555;
  float: left;
  margin-right: 17px;
  margin-bottom: 17px;
}
section.footer .grid.grid-three .ce_hyperlink:hover {
  opacity: 0.8;
}
section.footer .grid.grid-three .ce_hyperlink a {
  padding: 0;
}
section.footer .grid.grid-three .ce_hyperlink a:before {
  display: none;
}
section.footer .grid.grid-three nav {
  float: none;
  margin-bottom: 44px;
  max-width: 265px;
  overflow: hidden;
}
section.footer .grid.grid-three nav ul {
  overflow: hidden;
}
section.footer .grid.grid-three nav ul li {
  margin: 0;
  width: 100%;
  display: block;
  float: none;
}
section.footer .grid.grid-three nav li a {
  color: #555555;
}
section.footer .grid.grid-three nav li a:hover, section.footer .grid.grid-three nav li a nav li span {
  color: #94bd56;
}
section.footer .grid.grid-three nav li.submenu:hover:after {
  display: none;
}
section.footer .grid.grid-three nav li:hover ul, section.footer .grid.grid-three nav li:hover li {
  display: none;
}
section.footer .grid.grid-three .data.h4Style ul {
  margin: 0 0 44px 0;
}
section.footer .grid.grid-three .data.h4Style a {
  font-family: "source_sans_proregular", Helvetica, sans-serif;
  font-size: 15px;
  line-height: 25px;
  text-decoration: none;
}
section.footer .grid.grid-four .ce_image {
  -webkit-transition: all 0.5;
  -moz-transition: all 0.5;
  transition: all 0.5;
  margin-bottom: 25px;
  display: inline-block;
}
section.footer .grid.grid-four .ce_image:nth-of-type(1) {
  margin-right: 4%;
}
section.footer .grid.grid-four .ce_image:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 310px) {
  section.footer .grid.grid-four .ce_image {
    text-align: center;
    display: block;
  }
}

.ce_gallery {
  margin-top: 30px;
}
.ce_gallery ul {
  padding: 0;
  margin: 0;
}
.ce_gallery ul li {
  max-width: 24.2%;
  list-style-type: none;
  margin-right: 1%;
  margin-bottom: 1%;
}
.ce_gallery ul li:nth-of-type(4n) {
  margin-right: 0;
}
@media only screen and (max-width: 768px) {
  .ce_gallery ul li {
    max-width: 49%;
    margin-right: 2%;
  }
  .ce_gallery ul li:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 500px) {
  .ce_gallery ul li {
    max-width: 100%;
    margin-right: 0%;
    margin-bottom: 5%;
  }
}

#cboxCurrent,
#cboxTitle {
  display: none !important;
}

/**
 * Hamburger icon
 */
.outer {
  position: absolute;
  right: 2%;
  top: 20%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  float: right;
  margin: 16px 15px 0 0;
}
@media only screen and (min-width: 1055px) {
  .outer {
    display: none;
  }
}

a.hamburger {
  width: 32px;
  height: 30px;
  display: block;
  margin: 0 auto;
  position: relative;
}

.line {
  width: 32px;
  height: 4px;
  display: block;
  position: absolute;
  background: #94bd56;
  border-radius: 2px;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.line-1 {
  top: 0;
}

.line-2 {
  margin-top: -3px;
  top: 50%;
}

.line-3 {
  bottom: 3px;
}

a.active .line-1 {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  -o-transform: rotate(315deg);
  transform: rotate(315deg);
  background: #94bd56;
}

a.active .line-2 {
  opacity: 0;
}

a.active .line-3 {
  bottom: 50%;
  margin-bottom: -3px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  -o-transform: rotate(-315deg);
  transform: rotate(-315deg);
  background: #94bd56;
}

.ce_hyperlink:not(.button) a {
  color: #94bd56;
  padding-left: 15px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
}
.ce_hyperlink:not(.button) a:before {
  content: "\e904";
  font-size: 11px;
  left: 0;
  position: absolute;
  top: 0px;
}

.android .ce_hyperlink:not(.button) a:before {
  top: -1px;
}

.jobs {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 50px;
  margin-top: 50px;
}
.jobs.first {
  margin-top: 70px;
}
.jobs.last {
  border-bottom: none;
}
.jobs h2 {
  margin-bottom: 10px;
}
.jobs .ce_hyperlink {
  display: inline-block;
  margin-right: 30px;
}
.jobs .ce_hyperlink a:before {
  top: 0;
}

.mod_newsreader .data span {
  width: 90px;
}
.mod_newsreader .requirements {
  margin-bottom: 20px;
}

#mobileNavBack a {
  padding-left: 32px;
}
#mobileNavBack a:before {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  content: "\e901";
  display: block;
  color: #94bd56;
  position: absolute;
  left: 8px;
  right: unset;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  font-size: 15px;
  font-weight: bold;
}

.mobileOnly {
  display: none;
}
.mobileOnly.active {
  background-color: #ffffff;
  display: block;
  left: 0;
  padding: 20px 15px;
  position: absolute;
  top: 80px;
  width: 100%;
  z-index: 2;
  height: calc(100vh - 80px);
}

.mobileOnly {
  font-size: 18px;
}
.mobileOnly ul.level_1 {
  margin-top: 18px;
}
.mobileOnly li {
  border-bottom: 1px solid #cecece;
  margin-right: 0;
}
.mobileOnly li.last {
  border-bottom: 0;
}
.mobileOnly li.trail > a {
  color: #94bd56;
}
.mobileOnly li.trail > a:hover {
  color: #007caf;
}
.mobileOnly li a, .mobileOnly li > span {
  position: relative;
  color: #94bd56;
  display: block;
  padding: 18px 0px;
}
.mobileOnly li a:hover, .mobileOnly li > span:hover {
  color: #007caf;
}
.mobileOnly li span.active {
  color: #94bd56;
  display: block;
}
.mobileOnly li span.active:hover {
  color: #94bd56;
}
.mobileOnly li.submenu {
  position: unset;
}
.mobileOnly li.submenu.opensub ul {
  left: 0;
}
.mobileOnly li.submenu.opensub span:before {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.mobileOnly li.submenu.opensub ul, .mobileOnly li.submenu.opensub li {
  display: block;
}
.mobileOnly li.submenu:not(.news) a:not(.login):not(.search):before, .mobileOnly li.submenu:not(.news) span.active:not(.login):not(.search):before {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  content: "\e901";
  display: block;
  color: #94bd56;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: bold;
}
.mobileOnly li.submenu:not(.news) .level_2 a:not(.login):not(.search):before, .mobileOnly li.submenu:not(.news) .level_2 span.active:not(.login):not(.search):before {
  display: none;
}
.mobileOnly li.search {
  margin-right: 0;
}
.mobileOnly .submenu:hover:after {
  display: none;
}
.mobileOnly .submenu ul {
  background-color: #ffffff;
  border: none;
  padding: 20px;
  position: absolute;
  left: 100%;
  transition: 0.3s ease-in-out;
  width: 100%;
  height: calc(100vh - 80px);
  padding-top: 0;
}
.mobileOnly .submenu ul li {
  margin: 0;
}
.mobileOnly .submenu ul li span.active {
  color: #94bd56;
}

/**
  * Navigation elements
  */
nav {
  float: right;
  overflow: visible !important;
  font-size: 19px;
}
@media only screen and (max-width: 1130px) {
  nav.main-nav {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 1055px) {
  nav.main-nav {
    display: none;
  }
}
nav.main-nav ul.level_1 {
  margin-top: 44px;
  display: flex;
  gap: 1rem;
  color: #94bd56;
}
@media only screen and (max-width: 1420px) {
  nav.service-nav {
    margin-right: 2%;
  }
}
@media only screen and (max-width: 1055px) {
  nav.service-nav {
    display: none;
  }
}
nav.service-nav .submenu ul {
  min-width: 160px;
}
nav.service-nav ul.level_1 {
  margin-top: 44px;
  display: flex;
  gap: 1rem;
}
nav.service-nav a {
  color: #94bd56;
}
nav li {
  float: left;
  font-family: "source_sans_prolight", Helvetica, sans-serif;
  color: #94bd56;
}
nav li a, nav li span {
  color: #94bd56;
}
nav li.active a, nav li.active span {
  color: #94bd56;
}
nav li.active.submenu .regular:not(.active) a {
  color: #94bd56;
}
nav li.news li a {
  color: #000000;
}
nav li.news li a:hover {
  color: #94bd56;
}
@media only screen and (max-width: 1055px) {
  nav li {
    float: none;
  }
}
nav li.last {
  margin-right: 0;
}
nav li.submenu {
  position: relative;
}
nav li.submenu:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7.5px 10px 7.5px;
  border-color: transparent transparent #94bd56 transparent;
  bottom: -23px;
  content: "";
  display: block;
  display: none;
  left: 0;
  position: absolute;
}
nav li.submenu:hover:after {
  display: block;
}
nav li.search {
  margin-right: 25px;
}
nav li.search span.icon {
  text-indent: -99999px;
  display: none;
}
nav li.search a:before, nav li.search span:before {
  content: "\e902";
  font-size: 24px;
}
@media only screen and (max-width: 1055px) {
  nav li.search a:before, nav li.search span:before {
    margin-right: 8px;
  }
}
nav li.search a:hover:before {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: coloring;
  -moz-animation-name: coloring;
  animation-name: coloring;
}
nav li.login span.icon {
  text-indent: -99999px;
  display: none;
}
nav li.login a:before {
  content: "\e903";
  font-size: 20px;
}
nav li.login a:hover:before {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: coloring;
  -moz-animation-name: coloring;
  animation-name: coloring;
}
nav li.submenu ul {
  line-height: normal;
  background-color: rgb(255, 255, 255);
  display: none;
  position: absolute;
  z-index: 100;
  left: -30px;
  border-top: 5px solid #94bd56;
  border-bottom: 5px solid #94bd56;
  min-width: 289px;
  padding-top: 38px;
  padding-bottom: 42px;
  padding-left: 30px;
  top: 48px;
}
nav li.submenu ul .hover, nav li.submenu ul:hover {
  display: block;
}
nav li.contacts ul {
  min-width: 271px;
}
nav li.submenu li {
  float: none;
  padding-bottom: 0;
  margin-bottom: 15px;
}
nav li.submenu li.last {
  margin-bottom: 0;
}
nav li:hover ul, nav li:hover li {
  display: block;
}
nav li a, nav li span {
  text-decoration: none;
}
nav li a:hover, nav li span:hover {
  color: #007caf;
}
nav li span {
  color: #555555;
  cursor: pointer;
}
nav li span.icon {
  color: inherit;
}

@media only screen and (min-width: 1055px) {
  #nav li.hover ul,
  #nav li.hover:after {
    display: block;
  }
}

.ie nav.main-nav li.submenu ul {
  min-width: 288px;
}

.firefox nav.main-nav li.submenu ul {
  min-width: 287px;
}

@media only screen and (min-width: 1055px) {
  nav li.submenu.submenu--mobile-only ul li:not(:nth-child(1)):not(:nth-child(2)) {
    display: none !important;
  }
}
#news-aktuelles .mod_newslist .layout_latest:not(.last), #case-studies .mod_newslist .layout_latest:not(.last) {
  margin-bottom: 60px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 30px;
  overflow: hidden;
}
#news-aktuelles .mod_newslist .image_container, #case-studies .mod_newslist .image_container {
  float: left;
  width: 30%;
}
@media only screen and (max-width: 900px) {
  #news-aktuelles .mod_newslist .image_container, #case-studies .mod_newslist .image_container {
    float: none;
    width: 100%;
  }
}
@media only screen and (max-width: 1040px) {
  #news-aktuelles .mod_newslist .image_container img, #case-studies .mod_newslist .image_container img {
    padding-bottom: 30px;
  }
}
#news-aktuelles .mod_newslist h2, #case-studies .mod_newslist h2 {
  float: right;
  width: 70%;
}
@media only screen and (max-width: 1180px) {
  #news-aktuelles .mod_newslist h2, #case-studies .mod_newslist h2 {
    float: none;
  }
}
@media only screen and (max-width: 1040px) {
  #news-aktuelles .mod_newslist h2, #case-studies .mod_newslist h2 {
    width: 100%;
  }
}
#news-aktuelles .mod_newslist h2 a, #case-studies .mod_newslist h2 a {
  text-decoration: none;
}
#news-aktuelles .mod_newslist .teaser, #case-studies .mod_newslist .teaser {
  float: right;
  width: 70%;
}
@media only screen and (max-width: 1180px) {
  #news-aktuelles .mod_newslist .teaser, #case-studies .mod_newslist .teaser {
    float: none;
    width: 100%;
  }
}
@media only screen and (max-width: 1040px) {
  #news-aktuelles .mod_newslist .teaser, #case-studies .mod_newslist .teaser {
    width: 100%;
  }
}
#news-aktuelles .mod_newslist .more a, #case-studies .mod_newslist .more a {
  text-decoration: none;
}

.mod_newsreader .info {
  display: none;
}
.mod_newsreader .back {
  margin-top: 30px;
}
.mod_newsreader .back a {
  text-decoration: none;
}

#news-aktuelles .mod_newslist .image_container {
  float: none;
  width: auto;
}
#news-aktuelles .mod_newslist .images {
  float: left;
  width: 30%;
}
@media only screen and (max-width: 950px) {
  #news-aktuelles .mod_newslist .images {
    width: 80%;
    float: none;
  }
}
@media only screen and (max-width: 450px) {
  #news-aktuelles .mod_newslist .images {
    width: 80%;
    float: none;
  }
}
#news-aktuelles .mod_newslist .texts {
  float: right;
  width: 70%;
}
@media only screen and (max-width: 950px) {
  #news-aktuelles .mod_newslist .texts {
    width: 100%;
  }
}
@media only screen and (max-width: 450px) {
  #news-aktuelles .mod_newslist .texts {
    width: 100%;
  }
}
#news-aktuelles .mod_newslist h2, #news-aktuelles .mod_newslist .teaser {
  float: none;
  width: 100%;
}

.pagination {
  overflow: visible;
}
.pagination > p {
  display: none;
}
.pagination ul li {
  display: inline-block;
  vertical-align: bottom;
  margin-right: 5px;
}
.pagination ul li a, .pagination ul li span {
  border-bottom: 2px solid #94bd56;
  display: block;
  min-width: 25px;
  text-align: center;
  text-decoration: none;
}
.pagination ul li a:hover, .pagination ul li span:hover {
  border-color: #007caf;
}
.pagination ul li span {
  border-color: #007caf;
  position: relative;
  color: #007caf;
}
.pagination ul li span:before {
  color: #94bd56;
  font-size: 30px;
  left: 0;
  position: absolute;
  top: -25px;
  right: 0;
  margin: auto;
  text-align: center;
}

.mod_search {
  text-align: center;
  max-width: 1055px;
  margin: 0 auto;
}
.mod_search .widget {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.mod_search .widget.active:after {
  width: 100%;
}
.mod_search input {
  border-radius: 0;
}
.mod_search input[type=search] {
  max-width: 500px;
  width: 100%;
  -webkit-appearance: none;
}
.mod_search button[type=submit] {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #94bd56;
  border: 0;
  color: #ffffff;
  height: 55px;
  margin-left: -3px;
  margin-top: -1px;
  padding: 0 10px;
}
.mod_search button[type=submit]:hover {
  background-color: #007caf;
}
.mod_search p.header {
  font-size: 13px;
  color: #94bd56;
}
.mod_search div {
  border-bottom: 1px solid #fafafa;
  padding: 50px 0;
  max-width: 750px;
  margin: 0 auto;
}
@media only screen and (max-width: 640px) {
  .mod_search div {
    text-align: left;
  }
}
.mod_search .even.last, .mod_search .odd.last {
  border-bottom: none;
}
.mod_search h3 {
  margin-bottom: 10px;
}
.mod_search h3 a {
  text-decoration: none;
}
.mod_search h3 span {
  display: none;
}
.mod_search .highlight {
  background-color: beige;
  padding: 3px 10px;
  color: #94bd56;
  border-radius: 3px;
}
.mod_search p.url {
  display: none;
}

.mod_sitemap {
  overflow: visible;
}
.mod_sitemap ul.level_1 li {
  display: inline-block;
  position: relative;
  vertical-align: top;
  margin-right: 2%;
  padding-left: 26px;
  z-index: 5;
  width: 31%;
}
.mod_sitemap ul.level_1 li:before {
  font-family: "iconfont";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}
@media only screen and (max-width: 955px) {
  .mod_sitemap ul.level_1 li {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 765px) {
  .mod_sitemap ul.level_1 li {
    width: inherit;
  }
}
@media only screen and (max-width: 430px) {
  .mod_sitemap ul.level_1 li {
    display: block;
  }
}
.mod_sitemap ul.level_1 li:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 20px;
  width: 20px;
  color: #94bd56;
  width: 100%;
}
.mod_sitemap ul.level_1 li a {
  text-decoration: none;
  color: #94bd56;
}
.mod_sitemap ul.level_1 li ul.level_2 li {
  display: block;
  font-size: 12px;
  padding-left: 0;
  width: inherit;
}
@media only screen and (max-width: 955px) {
  .mod_sitemap ul.level_1 li ul.level_2 li {
    margin-bottom: 0px;
  }
}
.mod_sitemap ul.level_1 li ul.level_2 li:before {
  display: none;
}
.mod_sitemap ul.level_1 li ul.level_2 li a {
  color: #000000;
}

#slider {
  overflow: visible;
}

.ce_caroufredsel {
  position: relative;
  overflow: visible;
}
.ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_next, .ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev {
  -webkit-transition: all 2s;
  -moz-transition: all 2s;
  transition: all 2s;
  color: #94bd56;
  font-size: 60px;
  position: absolute;
  right: -68px;
  text-decoration: none;
  top: 50%;
  height: 60px;
  line-height: 60px;
  margin-top: -70px;
}
@media only screen and (max-width: 1590px) {
  .ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_next, .ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev {
    display: none !important;
  }
}
.ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_next:before, .ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev:before {
  content: "\e901";
}
.ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_next:hover:before, .ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev:hover:before {
  right: -75px;
}
.ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_next span, .ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev span {
  display: none;
}
.ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev {
  left: -68px;
  right: inherit;
}
.ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev:before {
  content: "\e900";
}
.ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev span {
  display: none;
}
@media only screen and (max-width: 1590px) {
  .ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev {
    display: none;
  }
}

.contentslider.ce_caroufredsel {
  position: relative;
  overflow: visible;
}
@media only screen and (max-width: 1590px) {
  .contentslider.ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_next, .contentslider.ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev {
    display: block !important;
  }
}
@media only screen and (max-width: 1024px) {
  .contentslider.ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_next, .contentslider.ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev {
    display: none !important;
  }
}
@media only screen and (max-width: 1280px) {
  .contentslider.ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_next {
    right: 0;
  }
}
@media only screen and (max-width: 1280px) {
  .contentslider.ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev {
    left: 0;
  }
}

.ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi {
  text-align: center;
  margin-top: 22px;
  margin-bottom: 105px;
}
.ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a {
  border-radius: 50%;
  border: 3px solid #007caf;
  display: inline-block;
  height: 13px;
  margin-right: 68px;
  position: relative;
  text-indent: -99999px;
  width: 13px;
}
@media only screen and (max-width: 1055px) {
  .ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a {
    margin-right: 50px;
  }
}
@media only screen and (max-width: 915px) {
  .ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a {
    margin-right: 25px;
  }
}
@media only screen and (max-width: 680px) {
  .ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a {
    margin-right: 15px;
  }
}
.ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a.selected {
  background-color: #94bd56;
}
.ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a:after {
  background-color: #94bd56;
  content: "";
  display: block;
  height: 1px;
  width: 50px;
  position: absolute;
  left: 19px;
  top: 50%;
}
@media only screen and (max-width: 1055px) {
  .ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a:after {
    width: 30px;
  }
}
@media only screen and (max-width: 915px) {
  .ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a:after {
    width: 10px;
  }
}
@media only screen and (max-width: 680px) {
  .ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a:after {
    display: none;
  }
}
.ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a:last-child {
  margin-right: 0;
}
.ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a:last-child:after {
  display: none;
}

#philosophie h1 {
  margin-bottom: 0;
  color: #94bd56;
  position: relative;
}
#philosophie h1:after {
  position: absolute;
  content: "";
  background: transparent url("../../files/standard/layout/images/slider-rules-plus.png") no-repeat 0 0;
  width: 50px;
  height: 50px;
  top: 60%;
  right: 30%;
}
@media only screen and (max-width: 1125px) {
  #philosophie h1:after {
    display: none;
  }
}
#philosophie h2, #philosophie .h5Style {
  margin-bottom: 25px;
  color: #94bd56;
  font-size: 1em;
  line-height: 20px;
}

.sp-buttons {
  margin-top: 60px;
  margin-bottom: 40px;
}

.sp-button {
  margin-right: 60px !important;
  border-radius: 50%;
  border: 3px solid #007caf !important;
  display: inline-block;
  height: 13px !important;
  position: relative;
  width: 13px !important;
}
.sp-button:after {
  background-color: #94bd56;
  content: "";
  display: block;
  height: 1px;
  width: 40px;
  position: absolute;
  left: 19px;
  top: 50%;
}
.sp-button.sp-selected-button {
  background-color: #94bd56;
}
.sp-button:nth-of-type(10):after {
  display: none;
}

@media only screen and (max-width: 1150px) {
  .sp-button:after {
    display: none;
  }
  .sp-button {
    margin-right: 25px !important;
  }
  .sp-buttons {
    margin-top: 0;
    bottom: 0;
  }
}
@media only screen and (max-width: 650px) {
  .sp-button {
    margin-right: 5px !important;
  }
}
.sp-layer {
  position: absolute;
  right: 15%;
  top: 50%;
  padding: 30px;
  background: #ffffff;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.sp-layer p {
  max-width: 400px;
  padding: 20px !important;
  color: #555555;
  line-height: 30px;
  font-size: 20px;
}
.sp-layer p .special-words {
  color: #94bd56;
  font-size: 25px;
}
.sp-layer:before {
  position: absolute;
  content: "";
  background: transparent url("../../files/standard/layout/images/slider-rules-left.png") no-repeat 0 0;
  width: 42px;
  height: 42px;
  top: 0;
  left: 0;
}
.sp-layer:after {
  position: absolute;
  content: "";
  background: transparent url("../../files/standard/layout/images/slider-rules-right.png") no-repeat 0 0;
  width: 42px;
  height: 42px;
  bottom: 0;
  right: 0;
}

@media only screen and (max-width: 1150px) {
  p {
    max-width: 100% !important;
  }
  .sp-layer {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
  }
  .sp-layer:before, .sp-layer:after {
    display: none;
  }
  .sp-slide {
    text-align: center;
  }
}
.sp-white {
  background-color: #ffffff !important;
}

.sp-arrows .sp-arrow:after {
  display: none;
}
.sp-arrows .sp-arrow:before {
  background-color: transparent;
  transform: inherit;
}
.sp-arrows .sp-previous-arrow {
  left: -80px !important;
  right: inherit;
  transition: all 2s;
  color: #94bd56;
  font-size: 60px;
  position: absolute;
  text-decoration: none;
  top: 50%;
  width: 3rem;
  height: 60px;
  line-height: 60px;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.sp-arrows .sp-previous-arrow:before {
  content: "\e900";
  left: 0 !important;
  width: max-content;
  height: max-content;
  top: 0;
  left: 0;
}
.sp-arrows .sp-next-arrow {
  transition: all 2s;
  color: #94bd56;
  font-size: 60px;
  position: absolute;
  right: -80px !important;
  width: 3rem;
  text-decoration: none;
  top: 50%;
  height: 60px;
  line-height: 60px;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.sp-arrows .sp-next-arrow:before {
  content: "\e901";
  right: 0 !important;
  width: max-content;
  height: max-content;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 1270px) {
  .sp-arrows {
    display: none;
  }
}

.teaser.flex--33 {
  flex-basis: 100%;
  max-width: 100%;
  margin-top: 20px;
}

.teaser--icon img {
  display: block;
  margin: 0 auto;
  max-width: 150px;
}
.teaser--link {
  max-width: 300px !important;
  margin: 20px auto;
  text-align: center;
}
.teaser--link a {
  font-size: 18px;
  line-height: 25px;
  text-decoration: none;
}

@media screen and (min-width: 480px) {
  .teaser.flex--33 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .teaser--link {
    margin: 20px auto;
  }
}
@media screen and (min-width: 768px) {
  .teaser.flex--33 {
    flex-basis: 33%;
    max-width: 33%;
  }
}
.facts.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 925px;
  margin: 0 auto;
}

.facts.flex--33 > div {
  flex-basis: 100%;
  max-width: 100%;
  margin-top: 20px;
}

.facts--icon img {
  display: block;
  margin: 0 auto;
  max-width: 150px;
}
.facts--number {
  max-width: 300px !important;
  margin: 20px auto;
  text-align: center;
}
.facts--number p {
  font-size: 75px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 5px;
  color: #007caf;
}
.facts--text {
  max-width: 300px !important;
  margin: 20px auto;
  text-align: center;
}
.facts--text p {
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0px;
  color: #007caf;
}

@media screen and (min-width: 480px) {
  .facts.flex--33 {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .facts.flex--33 {
    flex-basis: 33%;
    max-width: 33%;
  }
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex.no--padding {
  padding: 0;
}
.flex--50 > div:first-child {
  padding-bottom: 10px;
}
.flex--50 > div:last-child {
  padding-top: 10px;
  padding-bottom: 10px;
}
.flex--25 {
  flex-basis: 100%;
  max-width: 100%;
}

@media screen and (min-width: 480px) {
  .flex--33 > div {
    flex-basis: 50%;
    max-width: 50%;
  }
  .flex--33 > div:last-child {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 680px) {
  .flex--50 > div {
    flex-basis: 50%;
    max-width: 50%;
  }
  .flex--50 > div:first-child {
    padding: 0;
    padding-right: 10px;
  }
  .flex--50 > div:last-child {
    padding: 0;
    padding-left: 10px;
  }
}
@media screen and (min-width: 480px) {
  .flex--25 {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .flex--33 > div {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .flex--33 > div:last-child {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .flex--25 {
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media screen, projection {
  html {
    overflow-y: scroll;
    height: 100%;
  }
  body {
    padding-top: 92px;
    -webkit-text-size-adjust: none;
    font-family: "source_sans_proregular", Helvetica, sans-serif;
    font-weight: normal;
    height: 100%;
    line-height: 25px;
    color: #555555;
  }
  #article-93 .ui-accordion-header-icon {
    display: none;
  }
  #article-99 .ui-accordion-header-icon {
    display: none;
  }
  /*------------------------------------------------------------------------*/
  /**
   * Normalize content elements
   */
  * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "iconfonts";
  }
  a {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    color: #555555;
    text-decoration: underline;
  }
  a:hover {
    text-decoration: none;
    color: #94bd56;
  }
  a:focus {
    outline: none;
  }
  em,
  i {
    font-style: italic;
  }
  strong,
  b {
    font-weight: 700;
  }
  /*------------------------------------------------------------------------*/
  /*------------------------------------------------------------------------*/
  /*------------------------------------------------------------------------*/
  /*------------------------------------------------------------------------*/
  /*------------------------------------------------------------------------*/
  /*------------------------------------------------------------------------*/
}
@media only screen and (max-width: 900px) {
  img {
    text-align: center;
  }
}
@media screen, projection {
  input[type=color]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=password]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, textarea:focus {
    background: none repeat scroll 0 0 #fafafa;
    border: 1px solid #999999;
  }
  input,
  textarea,
  select {
    border: 1px solid #999999;
    font-family: "Arial", Helvetica, sans-serif;
  }
  #main p {
    padding: 8px 0;
  }
  .data span {
    width: 70px;
  }
  header {
    height: 92px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: #ffffff;
  }
  header .inside {
    z-index: 100;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    width: 80%;
    max-width: 1400px;
    margin-inline: auto;
    height: 92px;
  }
}
@media only screen and (max-width: 1536px) {
  header .inside {
    width: 95%;
  }
}
@media screen, projection {
  header .inside #logo {
    order: 1;
  }
}
@media only screen and (max-width: 1320px) {
  header .inside #logo {
    width: 9.5rem;
  }
}
@media only screen and (max-width: 1090px) {
  header .inside #logo {
    width: 7.5rem;
  }
}
@media screen, projection {
  header .inside #nav-service {
    order: 3;
  }
  header .inside #nav {
    order: 2;
  }
  header .inside nav a {
    color: #555555;
  }
}
@media only screen and (max-width: 1055px) {
  header .inside nav a {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 1055px) {
  header .inside {
    width: 100%;
  }
}
@media screen, projection {
  #logo {
    height: 53px;
    width: 217px;
    float: left;
    margin-top: 24px;
  }
}
@media only screen and (max-width: 1420px) {
  #logo {
    margin-left: 2%;
  }
}
@media screen, projection {
  #logo a {
    background: transparent url(../../files/standard/layout/images/logos/logo-weder-gruppe.svg) no-repeat center center;
    display: block;
    height: inherit;
    text-indent: -99999px;
    width: inherit;
  }
  .business #logo a {
    background: transparent url(../../files/standard/layout/images/logos/logo-weder-business.svg) no-repeat center center;
    background-size: contain;
  }
  .logo-stiftung #logo a {
    background: transparent url(../../files/standard/layout/images/logos/logo-weder-stiftung.svg) no-repeat center center;
    background-size: contain;
  }
  .home #logo a {
    background: transparent url(../../files/standard/layout/images/logos/logo-weder-home.svg) no-repeat center center;
    background-size: contain;
  }
  h1,
  h2.h1Style {
    font-family: "source_sans_prolight", Helvetica, sans-serif;
    font-size: 55px;
    line-height: 62px;
    text-align: center;
    margin-bottom: 25px;
    color: #555555;
  }
}
@media only screen and (max-width: 1125px) {
  h1,
  h2.h1Style {
    font-size: 40px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 480px) {
  h1,
  h2.h1Style {
    font-size: 10vw;
    line-height: 1.2;
  }
}
@media screen, projection {
  h1 span.highlight,
  h2.h1Style span.highlight {
    color: #94bd56;
  }
  h2 {
    font-family: "source_sans_prolight", Helvetica, sans-serif;
    font-size: 40px;
    line-height: 45px;
    color: #555555;
  }
  h2 span.highlight {
    color: #94bd56;
  }
}
@media only screen and (max-width: 480px) {
  h2 {
    font-size: 9vw;
    line-height: 1.2;
  }
}
@media screen, projection {
  h3 {
    font-family: "source_sans_prolight", Helvetica, sans-serif;
    font-size: 30px;
    line-height: 30px;
    margin: 30px 0 10px;
  }
  h4, button[type=submit], input[type=submit], .ce_form button[type=submit], .ce_hyperlink:not(.button) a, .mod_newsreader .back, .mod_search button[type=submit] {
    font-family: "source_sans_probold", Helvetica, sans-serif;
    font-size: 15px;
    line-height: 25px;
    text-transform: uppercase;
  }
}
@media only screen and (max-width: 680px) {
  .caroufredsel_wrapper_273 div#caroufredsel_273 {
    height: 30rem !important;
  }
  .caroufredsel_wrapper_273 div#caroufredsel_273 .image-slide {
    width: 100vw;
  }
}
@media only screen and (max-width: 1200px) {
  .caroufredsel_wrapper_273 {
    max-height: 590px;
  }
  .caroufredsel_wrapper_273 .caroufredsel {
    max-height: 590px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1366px) {
  .caroufredsel_wrapper_273 {
    max-height: 568px;
  }
  .caroufredsel_wrapper_273 .caroufredsel {
    max-height: 568px;
  }
}
@media screen and (min-width: 1367px) and (max-width: 1536px) {
  .caroufredsel_wrapper_273 {
    max-height: 655px;
  }
  .caroufredsel_wrapper_273 .caroufredsel {
    max-height: 655px;
  }
}
@media only screen and (max-width: 750px) {
  .ce_sHtml5Start.d-flex.justify-content-center.mt-3.block {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .ce_sHtml5Start.d-flex.justify-content-center.mt-3.block div {
    flex-grow: 1;
    width: calc(50% - 0.8rem);
  }
  .ce_sHtml5Start.d-flex.justify-content-center.mt-3.block div a {
    line-height: initial !important;
  }
}
@media screen, projection {
  .start h2.h1Style {
    text-align: left;
  }
  .ce_text.center {
    text-align: center;
  }
  .mod_article {
    margin-top: 100px;
    padding-bottom: 100px;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
  }
}
@media only screen and (max-width: 1140px) {
  .mod_article {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen, projection {
  .mod_article.no-border {
    border-bottom: none;
  }
  .mod_article.center {
    text-align: center;
  }
  .mod_article.first {
    margin-top: 0;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 1140px) {
  .mod_article.first {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen, projection {
  .mod_article.first.w1170 {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 1140px) {
  .mod_article.first.w1170 {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen, projection {
  .mod_article.first.w1170 .inner_article {
    max-width: 1170px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
  }
  .mod_article.first .inner_article {
    max-width: 100%;
  }
  .mod_article.last, .mod_article.first {
    border: 0;
  }
  .mod_article.last:after, .mod_article.first:after {
    display: none;
  }
  .mod_article .inner_article {
    max-width: 1055px;
    margin: 0 auto;
  }
  .mod_article.fullWidth {
    border-bottom: none;
  }
  .mod_article.fullWidth .inner_article {
    max-width: 100%;
  }
  .mod_article.w100 .inner_article {
    max-width: 100%;
  }
  .legal h3 {
    margin-top: 30px;
  }
  .legal h4, .legal button[type=submit], .legal input[type=submit], .legal .ce_hyperlink:not(.button) a, .ce_hyperlink:not(.button) .legal a, .legal .mod_newsreader .back, .mod_newsreader .legal .back {
    margin-top: 15px;
  }
  #contentslider h2 {
    color: #007caf;
  }
}
@media only screen and (max-width: 900px) {
  #contentslider h2 {
    text-align: center;
    margin-bottom: 10px;
  }
}
@media screen, projection {
  #contentslider .ce_text p {
    padding: 8px 0 0;
  }
  .sideLinks {
    position: fixed;
    padding: 10px 0px;
    right: 0;
    width: 100%;
    bottom: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  }
  .sideLinks a {
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    transition: all 0.7s;
    background-color: #94bd56;
    color: #ffffff !important;
    display: block;
    height: 50px;
    line-height: 40px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    margin: 1px;
    position: relative;
  }
  .sideLinks a:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .sideLinks a:hover {
    background-color: #007caf;
  }
  .sideLinks a:nth-of-type(1):before {
    content: "\e902";
  }
  .sideLinks a:nth-of-type(2):before {
    content: "\e905";
  }
  .sideLinks a:nth-of-type(3):before {
    content: "\e906";
  }
  .sideLinks a:nth-child(4):before, .sideLinks a:nth-child(5):before, .sideLinks a:nth-child(6):before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  .sideLinks a:nth-child(4):before {
    background-image: url("../../files/standard/layout/images/icons/icon-news.svg");
  }
  .sideLinks a:nth-child(5):before {
    background-image: url("../../files/standard/layout/images/icons/icon-geschaeftskunden.svg");
  }
  .sideLinks a:nth-child(6):before {
    background-image: url("../../files/standard/layout/images/icons/icon-privatkunden.svg");
  }
}
@media screen and (min-width: 1024px) {
  .sideLinks {
    box-shadow: none;
    bottom: unset;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: auto;
    padding: 0;
    background-color: transparent;
  }
  .sideLinks a {
    width: 40px;
    height: 40px;
    margin: 2px 0px;
  }
}
@media only screen and (max-width: 900px) {
  .noMobile {
    display: none;
  }
}
@media screen, projection {
  .no-space-top {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .no-space-top p {
    padding-top: 0 !important;
  }
}
@media only screen and (max-width: 900px) {
  .no-space-top {
    margin-top: 30px !important;
    padding-top: inherit !important;
  }
  .no-space-top p {
    padding-top: 30px !important;
  }
}
@media screen, projection {
  .no-space-bottom {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .no-space-bottom p {
    padding-bottom: 0 !important;
  }
}
@media only screen and (max-width: 900px) {
  .no-space-bottom {
    margin-top: 30px !important;
    padding-top: inherit !important;
  }
  .no-space-bottom p {
    padding-bottom: 30px !important;
  }
}
@media screen, projection {
  #container {
    max-width: 1400px;
    margin: 0 auto;
    clear: both;
  }
  #main a {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    color: #94bd56;
  }
  #main a:hover {
    color: #007caf;
  }
  .oneColumn {
    text-align: center;
  }
  .oneColumn .ce_text {
    max-width: 430px;
    margin: 0 auto;
  }
  .oneColumn .ce_text p {
    padding: 8px 0 32px !important;
  }
  .contentslider .ce_image {
    text-align: right;
    margin-right: 50px;
  }
}
@media only screen and (max-width: 900px) {
  .contentslider .ce_image {
    margin-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
}
@media screen, projection {
  .contentslider .ce_text {
    width: 100%;
  }
  .contentslider .ce_text p {
    max-width: 630px;
  }
}
@media only screen and (max-width: 680px) {
  #article-65 {
    margin-top: -100px;
  }
}
@media screen, projection {
  .mod_article.withGuy {
    position: relative;
    overflow: visible;
  }
  .mod_article.withGuy .standingGuy {
    position: absolute;
    right: 15%;
    top: -85px;
    width: 235px;
    height: 521px;
  }
}
@media only screen and (max-width: 1345px) {
  .mod_article.withGuy .standingGuy {
    right: 20%;
    top: -120px;
  }
}
@media only screen and (max-width: 1360px) {
  .mod_article.withGuy .standingGuy {
    display: none;
  }
}
@media screen, projection {
  .mod_article.withGuy .insideTheGuy {
    position: absolute;
    right: 20px;
    top: 180px;
    text-align: left;
    padding-left: 50px;
  }
}
@media only screen and (max-width: 1345px) {
  .mod_article.withGuy .insideTheGuy {
    right: 60px;
  }
}
@media only screen and (max-width: 1360px) {
  .mod_article.withGuy .insideTheGuy {
    display: none;
  }
}
@media screen, projection {
  .mod_article.withGuy .insideTheGuy .outerHR {
    position: relative;
    left: 0px;
  }
  .mod_article.withGuy .insideTheGuy .outerHR hr {
    border-color: #94bd56;
  }
  .clearfix {
    *zoom: 1;
  }
  .clearfix:before, .clearfix:after {
    content: " ";
    display: table;
  }
  .clearfix:after {
    clear: both;
  }
}
.mod_article.filter-outline {
  border-bottom: 1px solid #c6c6c6;
}
.mod_article.w780 {
  margin: 100px auto 0;
}
.mod_article.w780 .inner_article {
  max-width: 780px;
  text-align: center;
}
.mod_article .w430 {
  max-width: 430px;
  margin: 0 auto 30px;
}
.mod_article .inner_article .over-headline {
  text-align: center;
  margin-bottom: 25px;
}

.filter {
  margin-top: 25px;
  padding-bottom: 25px;
}
@media only screen and (max-width: 960px) {
  .filter .desktop {
    display: none;
  }
}
@media only screen and (min-width: 960px) {
  .filter .mobile {
    display: none;
  }
}
.filter .mobile .mm_select {
  display: block;
  margin: 30px auto;
  width: 80%;
}
@media only screen and (max-width: 500px) {
  .filter .mobile .mm_select {
    width: 100%;
  }
}
.filter .mobile .mm_select.branch .select2-selection, .filter .mobile .mm_select.branch .select2-selection__arrow, .filter .mobile .mm_select.branch .select2-selection__rendered {
  height: 40px;
  line-height: 40px;
}
.filter .mobile .mm_select .select2-selection__choice {
  height: auto;
  background-color: #94bd56;
  border-color: #94bd56;
  color: #ffffff;
}
.filter .mobile .mm_select .select2-selection__choice:hover {
  opacity: 0.9;
}
.filter .mobile .mm_select .select2-selection__choice__remove {
  color: #ffffff;
}
.filter .mobile .mm_select .select2-selection__choice__remove:hover {
  color: red;
}
.filter .mobile .mm_select h3:before {
  display: none;
}
.filter .mobile .mm_select + .submit_container {
  margin-top: 50px;
  text-align: center;
}

.mm_select {
  width: 45%;
  display: inline-block;
  vertical-align: bottom;
}
.mm_select .hidden {
  display: none;
}
.mm_select .values.open {
  background-color: #ffffff;
  border-bottom: 1px solid #c6c6c6;
  border-left: 1px solid #c6c6c6;
  border-right: 1px solid #c6c6c6;
  display: block;
  left: 50%;
  margin-left: -530px;
  margin-top: 25px;
  max-width: 1060px;
  width: 100%;
  padding: 25px 65px 45px;
  position: absolute;
  z-index: 1;
}
.mm_select .values.open .close {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #94bd56;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 0;
}
.mm_select .values.open .close:hover {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media only screen and (max-width: 1040px) {
  .mm_select .values.open {
    max-width: 960px;
    margin-left: -480px;
  }
}
.mm_select .values.open input[type=checkbox] {
  position: relative;
  top: 1px;
}
.mm_select .values.open label {
  display: inline-block;
  font-size: 15px;
  margin-bottom: 8px;
}
.mm_select .values.open .submit_container {
  margin-top: 50px;
  text-align: center;
}
.mm_select .values.open ul li span.active {
  color: #007caf;
}
.mm_select h3 {
  cursor: pointer;
  margin: 1px 0 3px 0;
}
.mm_select h3 span {
  border-bottom: 1px solid #94bd56;
  color: #007caf;
  display: inline-block;
  font-size: 16px;
  line-height: 15px;
  margin-left: 10px;
  max-width: 220px;
  padding: 3px 20px 4px 0;
  position: relative;
  top: -3px;
  text-align: right;
  vertical-align: middle;
  width: 100%;
}
@media only screen and (max-width: 1130px) {
  .mm_select h3 span {
    max-width: 195px;
  }
}
@media only screen and (max-width: 1070px) {
  .mm_select h3 span {
    max-width: 180px;
  }
}
@media only screen and (max-width: 1035px) {
  .mm_select h3 span {
    max-width: 150px;
  }
}
.mm_select h3 span:after {
  color: #94bd56;
  content: "\e907";
  font-size: 7px;
  position: absolute;
  right: 0;
}
.mm_select.branch {
  margin-left: 70px;
}
.mm_select.branch h3 {
  position: relative;
}
.mm_select.branch h3:before {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  -o-transform-origin: 100% 0;
  transform-origin: 100% 0;
  color: #94bd56;
  content: "\e909";
  font-size: 30px;
  left: 9px;
  position: absolute;
}
.mm_select.branch h3:hover::before {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  animation-name: pulse;
}
.mm_select.branch .values ul {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 70px;
  -moz-column-gap: 70px;
  column-gap: 70px;
  margin-left: 3px;
  padding: 0;
}
.mm_select.branch .values ul li {
  font-family: "source_sans_probold", Helvetica, sans-serif;
  font-size: 15px;
  line-height: 25px;
  list-style-type: none;
  margin-bottom: 8px;
}
.mm_select.branch .values ul li.active a {
  color: #007caf !important;
}
.mm_select.branch .values ul li a {
  color: #555555 !important;
  text-decoration: none;
}
.mm_select.branch .values ul li a:hover {
  color: #94bd56 !important;
}

.mm_select.servicetype.inactive {
  opacity: 0.4;
  cursor: auto;
}
.mm_select.servicetype .values fieldset {
  display: inline-block;
  vertical-align: top;
  width: 45%;
}
@media only screen and (max-width: 720px) {
  .mm_select.servicetype .values fieldset {
    display: block;
    width: 100%;
  }
}
.mm_select.servicetype .values fieldset:nth-of-type(1) {
  margin-right: 70px;
}
.mm_select.servicetype .values fieldset:nth-of-type(1) h3, .mm_select.servicetype .values fieldset:nth-of-type(2) h3 {
  margin-top: 0;
}
.mm_select.servicetype .values h3 {
  margin: 50px 0 30px;
}
.mm_select.servicetype .values span {
  display: block;
}
.mm_select.servicetype .values span label {
  font-family: "source_sans_probold", Helvetica, sans-serif;
}

#main .quickfinder .formbody input[type=checkbox] {
  display: inline-block;
  position: relative;
  top: 4px;
  vertical-align: top;
}
@media only screen and (max-width: 600px) {
  #main .quickfinder .formbody input[type=checkbox] {
    margin-left: 1px;
  }
}
#main .quickfinder .formbody label {
  display: inline-block;
  font-size: 15px;
  margin-bottom: 8px;
  vertical-align: top;
  width: calc(100% - 25px);
}
#main .quickfinder fieldset:nth-of-type(1) h3, #main .quickfinder fieldset:nth-of-type(2) h3 {
  margin-top: 50px;
}
#main .quickfinder .mm_select {
  display: block;
  margin: 0;
  width: 100%;
}
#main .quickfinder .line {
  background: transparent;
  height: 63px;
  position: relative;
  width: 100%;
}
#main .quickfinder .line + p {
  text-align: center;
  padding-top: 19px;
}
#main .quickfinder span.number {
  background-color: #94bd56;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  font-family: "source_sans_prolight", Helvetica, sans-serif;
  font-size: 40px;
  height: 63px;
  line-height: 63px;
  margin: auto;
  text-align: center;
  width: 63px;
}
#main .quickfinder span.number:before {
  background: #f0f0f0;
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  display: block;
  left: 0;
  top: 50%;
  z-index: -1;
}
#main .quickfinder .business {
  min-height: 210px;
}
#main .quickfinder .business ul {
  max-width: 810px;
  margin: 20px auto 0;
  padding: 0;
}
#main .quickfinder .business ul li {
  display: inline-block;
  font-size: 30px;
  font-family: "source_sans_prolight", Helvetica, sans-serif;
  list-style-type: none;
  width: calc(50% - 2px);
}
@media only screen and (max-width: 500px) {
  #main .quickfinder .business ul li {
    display: block;
    width: 100%;
  }
}
#main .quickfinder .business ul li:nth-of-type(2) {
  text-align: right;
}
@media only screen and (max-width: 500px) {
  #main .quickfinder .business ul li:nth-of-type(2) {
    margin-bottom: 20px;
    margin-top: 25px;
    text-align: left;
  }
}
#main .quickfinder .business ul li a {
  text-decoration: none;
  color: #555555;
}
#main .quickfinder .business ul li a:hover {
  color: #94bd56;
}
#main .quickfinder .business ul li span {
  color: #007caf;
}
#main .quickfinder .branch ul {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 70px;
  -moz-column-gap: 70px;
  column-gap: 70px;
  padding: 0;
  max-width: 810px;
  margin: 20px auto 0;
}
@media only screen and (max-width: 600px) {
  #main .quickfinder .branch ul {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }
}
#main .quickfinder .branch ul li {
  font-family: "source_sans_probold", Helvetica, sans-serif;
  font-size: 15px;
  line-height: 25px;
  list-style-type: none;
  margin-bottom: 8px;
}
@media only screen and (max-width: 600px) {
  #main .quickfinder .branch ul li {
    margin-bottom: 15px;
  }
}
#main .quickfinder .branch ul li a {
  color: #555555;
  text-decoration: none;
}
#main .quickfinder .branch ul li a:hover {
  color: #94bd56;
}
#main .quickfinder .branch ul li span {
  color: #007caf;
}
#main .quickfinder .values {
  max-width: 810px;
  margin: 0 auto 70px;
}
#main .quickfinder .servicetype {
  margin-top: 60px;
}
#main .quickfinder .servicetype .submit_container {
  text-align: center;
}

body.private .servicetype {
  margin-left: 70px;
}
body.private .servicetype h3 {
  position: relative;
}
body.private .servicetype h3:before {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  -o-transform-origin: 100% 0;
  transform-origin: 100% 0;
  color: #94bd56;
  content: "\e909";
  font-size: 30px;
  left: -55px;
  position: absolute;
  display: block;
}
body.private .servicetype h3:hover::before {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  animation-name: pulse;
}
body.private .servicetype fieldset h3:before {
  display: none;
}

.accordeon {
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .accordeon {
    padding: 0 3%;
  }
}
@media only screen and (max-width: 768px) {
  .accordeon + .buttons {
    padding: 0 3%;
  }
}
.accordeon .toggler {
  border-top: 1px solid #f0f0f0;
  padding: 16px 0 10px;
  cursor: pointer;
}
.accordeon .toggler .inner-text {
  max-width: 780px;
  margin: auto;
}
.accordeon .toggler h3 {
  margin-top: 20px;
  max-width: 780px;
  margin: auto;
  position: relative;
}
@media only screen and (max-width: 600px) {
  .accordeon .toggler h3 {
    font-size: 23px;
    margin-right: 34px;
  }
}
.accordeon .toggler h3:after {
  content: "\e901";
  position: absolute;
  top: -5px;
  right: 0;
  width: 34px;
  height: 34px;
  background: #94bd56;
  border-radius: 50%;
  font-size: 19px;
  text-align: center;
  color: #ffffff;
  line-height: 34px;
  transition: transform 0.4s ease;
}
@media only screen and (max-width: 600px) {
  .accordeon .toggler h3:after {
    right: -34px;
  }
}
.accordeon .toggler h3:hover:after {
  background: #007caf;
}
.accordeon .toggler h3 span {
  font-size: 20px;
}
.accordeon .toggler.active h3:after {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.accordeon .toggler.active + .content {
  padding-bottom: 12px;
}
.accordeon .content {
  max-width: 780px;
  margin: auto;
}
.accordeon .content p {
  max-width: 360px;
}
.accordeon + .buttons {
  max-width: 780px;
  margin: 60px auto 0;
  overflow: hidden;
}
.accordeon + .buttons .button {
  float: left;
  width: 100%;
}
@media only screen and (max-width: 740px) {
  .accordeon + .buttons .button {
    float: none;
    margin-bottom: 20px;
  }
}
.accordeon + .buttons .button:nth-of-type(2) {
  float: right;
}
@media only screen and (max-width: 740px) {
  .accordeon + .buttons .button:nth-of-type(2) {
    float: none;
  }
}

.hide-headline .mm_select.servicetype .values h3 {
  display: none;
}

h2.group {
  border-bottom: 1px solid #c6c6c6;
  color: #007caf;
  margin-bottom: 45px;
  margin-top: 100px;
}

.ce_player {
  margin-top: 50px;
}
.ce_player video {
  width: 100% !important;
  height: auto;
}

.space-top {
  margin-top: 20px !important;
}

.space-bottom {
  margin-bottom: 20px !important;
}

.center {
  text-align: center;
}

.counter {
  counter-reset: list-count;
}
.counter h3 {
  margin-bottom: 30px;
}
.counter li {
  counter-increment: list-count;
  list-style-type: none;
  margin-bottom: 30px !important;
  padding-left: 60px;
  position: relative;
}
.counter li:before {
  background-color: #94bd56;
  color: #ffffff;
  content: counter(list-count);
  display: inline-block;
  height: 40px;
  left: 0;
  position: absolute;
  top: 3px;
  width: 40px;
  text-align: center;
  line-height: 39px;
  font-size: 26px;
  font-family: "source_sans_proregular", Helvetica, sans-serif;
}

.sLider + .mod_article {
  margin-top: -30px;
}

.videos {
  margin-top: 70px;
}

iframe {
  width: 100%;
}
@media only screen and (max-width: 900px) {
  iframe {
    margin-bottom: 30px;
  }
}

.ce_player {
  position: relative;
  padding-top: 0px;
}
.ce_player .mejs-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
}
.ce_player .mejs-overlay {
  height: 100% !important;
}

.ce_player .mejs-container,
.ce_player .mejs-overlay {
  width: 100% !important;
}

.mejs-poster {
  width: 100% !important;
  height: auto !important;
}

.partner {
  font-size: 0;
  text-align: center;
}
.partner .ce_hyperlink {
  display: inline-block;
}
.partner .hyperlink_txt {
  background: transparent url(../../files/standard/layout/images/partnerlogos/qulitaetsverbund.jpg) no-repeat bottom right;
  width: 351px;
  height: 150px;
  display: block;
  text-indent: -99999px;
}
.partner .hyperlink_txt:hover {
  background-position: top right;
}
.partner .cleaning-technology .hyperlink_txt {
  background-image: url(../../files/standard/layout/images/partnerlogos/vr.jpg);
}
.partner .nrw .hyperlink_txt {
  background-image: url(../../files/standard/layout/images/partnerlogos/gebaude-nrw.jpg);
}
.partner .industry .hyperlink_txt {
  background-image: url(../../files/standard/layout/images/partnerlogos/industrie-lippe.jpg);
}
.partner .service .hyperlink_txt {
  background-image: url(../../files/standard/layout/images/partnerlogos/gebauedeleister.jpg);
}
.partner .craft .hyperlink_txt {
  background-image: url(../../files/standard/layout/images/partnerlogos/handwerkskammer.jpg);
}
.partner .ihk .hyperlink_txt {
  background-image: url(../../files/standard/layout/images/partnerlogos/ihk.jpg);
}
.partner .agv .hyperlink_txt {
  background-image: url(../../files/standard/layout/images/partnerlogos/agv.jpg);
}

.partner .khonline .hyperlink_txt {
  background-image: url(../../files/standard/layout/images/partnerlogos/khonline.jpg);
}

.space-left {
  margin-left: 30px;
}

@keyframes pulse {
  0% {
    font-size: 30px;
  }
  50% {
    font-size: 32px;
    color: #007caf;
  }
  100% {
    font-size: 30px;
  }
}
@keyframes coloring {
  0% {
    color: #94bd56;
  }
  50% {
    color: #007caf;
  }
  100% {
    color: #94bd56;
  }
}
/** ------------------ STYLES CONTAO 4.4 09.2019 ------------------ **/
footer .mod_article {
  margin: 0;
  padding: 0;
}
footer .mod_article .inner_article {
  max-width: 100%;
}

.slider-pro .block {
  overflow: visible;
}
.slider-pro .sp-mask {
  max-height: max-content;
}
@media only screen and (max-width: 1150px) {
  .slider-pro .sp-slide {
    height: 25rem !important;
  }
}
.slider-pro .sp-image img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  position: relative;
}
.slider-pro .sp-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.6391982819) 21%, rgba(185, 180, 199, 0) 100%);
}
@media only screen and (max-width: 1150px) {
  .slider-pro .sp-image::after {
    background: transparent;
  }
}
.slider-pro .sp-layer {
  top: auto !important;
  bottom: 0 !important;
  width: 100%;
  background-color: transparent !important;
  padding: 2rem;
}
@media only screen and (max-width: 1150px) {
  .slider-pro .sp-layer {
    padding: 0;
  }
  .slider-pro .sp-layer p {
    max-width: 100%;
    color: #555555 !important;
  }
}
.slider-pro .sp-layer p {
  color: #ffffff;
  width: 100%;
  max-width: max-content;
}
.slider-pro.block {
  overflow: visible;
}

.cookiebar__button {
  background-color: #94bd56;
  transition: 0.2s ease-in-out;
  font-weight: normal;
}
.cookiebar__button:hover {
  background-color: #007caf;
}

/** Slider Startseite **/
.image-slide {
  background-color: #94bd56;
  position: relative;
  cursor: default;
}
.image-slide--mobile-wrapper {
  padding: 20px;
}
.image-slide--logo, .image-slide--headline, .image-slide--person {
  color: #ffffff;
}
.image-slide .image-slide--image, .image-slide .image-slide--video, .image-slide .image-slide--audio {
  position: relative;
  aspect-ratio: 16/9;
  max-height: 800px;
  width: 100%;
}
.image-slide .image-slide--image img, .image-slide .image-slide--image video, .image-slide .image-slide--video img, .image-slide .image-slide--video video, .image-slide .image-slide--audio img, .image-slide .image-slide--audio video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-slide .image-slide--image audio, .image-slide .image-slide--video audio, .image-slide .image-slide--audio audio {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.image-slide .image-slide--image audio::-webkit-media-controls-enclosure, .image-slide .image-slide--video audio::-webkit-media-controls-enclosure, .image-slide .image-slide--audio audio::-webkit-media-controls-enclosure {
  border-radius: 0;
}
.image-slide .cursor--pointer img, .image-slide .cursor--pointer video, .image-slide .cursor--pointer .image-slide--audio {
  cursor: pointer;
}
.image-slide .cursor--pointer .image-slide--headline {
  cursor: pointer;
}
.image-slide .image-slide--image-background {
  position: absolute;
  aspect-ratio: 16/9;
  max-height: 800px;
  width: 100%;
}
.image-slide .image-slide--image-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-slide--logo {
  width: 100%;
  max-width: 160px;
  position: absolute;
  top: 20px;
  right: 20px;
}
.image-slide--logo img {
  width: 100%;
}
.image-slide--headline {
  padding-bottom: 12px;
  cursor: default;
}
.image-slide--headline span {
  margin-top: 0;
  line-height: 130%;
}
.image-slide--headline span strong {
  font-family: "source_sans_proregular", Helvetica, sans-serif;
}
.image-slide--headline p {
  font-family: "source_sans_prolight", Helvetica, sans-serif;
}
.image-slide--person {
  font-size: 12px;
}
.image-slide--person p {
  padding: 0 !important;
  line-height: normal;
}
.image-slide--person a {
  color: white !important;
}

@media screen and (min-width: 768px) {
  .image-slide--mobile-wrapper {
    padding: 0;
  }
  .image-slide--logo {
    top: 5%;
    right: 5%;
    max-width: 200px;
  }
  .image-slide--headline {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px;
    background-color: #94bd56;
    width: 60%;
  }
  .image-slide--headline span {
    font-size: 24px;
  }
  .image-slide--person {
    position: absolute;
    left: 30%;
    bottom: 5%;
    color: #000000;
  }
  .image-slide--person a {
    cursor: pointer;
  }
}
@media screen and (min-width: 1024px) {
  .image-slide--logo {
    top: 8%;
  }
  .image-slide--headline {
    width: 50%;
    background: linear-gradient(to right, rgb(148, 189, 86) 0%, rgb(148, 189, 86) 50%, rgba(148, 189, 86, 0) 100%);
  }
  .image-slide--headline span {
    font-size: 30px;
  }
  .image-slide--person {
    left: 50%;
    bottom: 10%;
  }
}
@media screen and (min-width: 1400px) {
  .image-slide--logo {
    max-width: 250px;
  }
  .image-slide--headline {
    padding: 40px;
    padding-right: 140px;
    width: 55%;
  }
  .image-slide--headline span {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
/**
Fixed Filter
 */
body.has--scrolled .fixedFilter {
  display: block;
}

.fixedFilter {
  display: none;
  transition: 0.3s ease-in-out;
  overflow: visible;
  position: fixed;
  width: 100%;
  max-width: 1400px;
  background-color: #ffffff;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  top: 80px;
  font-size: 12px;
  padding: 8px 8px 24px 8px;
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
}
.fixedFilter.is--closed .desktop,
.fixedFilter.is--closed .mobile {
  height: 0;
  overflow: hidden;
}
.fixedFilter .close-filter {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background-color: #94bd56;
  bottom: -15px;
  border-radius: 100%;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.fixedFilter .close-filter:after {
  transition: all 0.5s;
  content: "\e901";
  display: block;
  color: #ffffff;
  position: absolute;
  left: 15px;
  top: 16px;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-size: 14px;
  font-weight: bold;
}
.fixedFilter .close-filter.is--active {
  transform: translateX(-50%) rotate(180deg);
}
.fixedFilter .select2-container {
  font-size: 12px;
}
.fixedFilter .select2-container--default .select2-selection--multiple {
  height: 40px;
}
.fixedFilter .mm_select,
.fixedFilter .submit_container {
  margin: 0 !important;
  margin-top: 8px !important;
}
.fixedFilter .mm_select input[type=submit],
.fixedFilter .submit_container input[type=submit] {
  border-radius: 4px;
  width: 100%;
  max-width: 100%;
  padding: 8px;
  font-size: 12px;
}
.fixedFilter .mm_select .values,
.fixedFilter .submit_container .values {
  text-align: left;
  max-width: 1400px;
  margin-left: -700px;
  margin-top: 30px;
}
.fixedFilter .mm_select .values.open,
.fixedFilter .submit_container .values.open {
  border: none;
}
.fixedFilter h3 {
  font-size: 14px;
}

.filter.no--border {
  padding: 0;
  margin: 0;
  border: none;
}

@media screen and (min-width: 480px) {
  .fixedFilter .mm_select {
    width: calc(50% - 2px) !important;
    display: inline-block !important;
  }
  .fixedFilter.privateFilter .mm_select {
    width: 100% !important;
  }
}
@media screen and (min-width: 1024px) {
  .fixedFilter {
    padding: 30px;
    font-size: 16px;
  }
  .fixedFilter .close-filter {
    display: none;
  }
  .fixedFilter .formbody {
    text-align: center;
  }
  .fixedFilter .mm_select {
    max-width: 500px !important;
  }
  .fixedFilter.privateFilter .mm_select {
    max-width: 500px !important;
  }
  .fixedFilter h3 {
    font-size: 24px;
  }
}
p {
  font-size: 0.875em;
}

h1, h2.h1Style {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 12px;
}

h2 {
  font-size: 24px;
  line-height: 1.2;
}

h3, .h3 {
  font-size: 20px;
}

h2.group {
  margin-top: 50px;
}
h2.group:first-child {
  margin-top: 0 !important;
}

.accordeon h2.group {
  border: none;
}

@media screen and (min-width: 768px) {
  p {
    font-size: 1em;
  }
  h1, h2.h1Style {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 30px;
  }
  h2.group {
    margin-top: 70px;
  }
  h3, .h3 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1280px) {
  h1, h2.h1Style {
    font-size: 55px;
    line-height: 65px;
    margin-bottom: 25px;
  }
  h2 {
    font-size: 40px;
    line-height: 45px;
  }
  h2.group {
    margin-top: 100px;
  }
  h3, .h3 {
    font-size: 30px;
  }
}
.dataprotection h2 {
  font-family: "source_sans_prolight", Helvetica, sans-serif;
  font-size: 24px;
  line-height: 24px;
  margin: 20px 0 10px;
}
.dataprotection h3 {
  font-family: "source_sans_probold", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  margin: 15px 0 0;
}

@media screen and (min-width: 768px) {
  .dataprotection h2 {
    font-size: 30px;
    line-height: 30px;
  }
}
.box {
  padding: 0px;
}
.box--s {
  max-width: 780px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .box {
    padding: 0px 40px 40px 40px;
  }
}
.mm_desktop {
  display: none;
}

#main .mm_mobile p {
  padding-top: 0;
}
#main .mm_mobile img {
  width: 100%;
}
#main .mm_mobile.accordeon {
  padding: 0;
  margin-top: 0;
}

@media screen and (min-width: 1024px) {
  .mm_desktop {
    display: block;
  }
  .mm_mobile {
    display: none;
  }
}
.mod_article {
  margin-top: 30px;
  padding-bottom: 30px;
}
.mod_article.normal {
  margin-top: 30px;
  padding-bottom: 30px;
  border: none;
}

@media screen and (min-width: 768px) {
  .mod_article {
    margin-top: 50px;
    padding-bottom: 50px;
  }
  .mod_article.normal {
    margin-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .mod_article {
    margin-top: 65px;
    padding-bottom: 80px;
  }
}
.center {
  text-align: center !important;
}

.marquee {
  margin-top: 15px;
  max-width: 100vw; /* iOS braucht das */
  white-space: nowrap;
  overflow: hidden;
  background-color: #94bd56;
  color: #fff;
  padding: 10px;
  position: relative;
}
.marquee a {
  color: #fff !important;
  text-decoration: none;
}
.marquee .marquee--info {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  padding: 10px 20px;
  /*background-color: #007caf;*/
  background-color: #555555;
  z-index: 1;
}
.marquee .marquee--info p {
  padding: 0 !important;
}
.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 10s linear infinite;
}
.marquee span:hover {
  animation-play-state: paused;
}

/* Make it move */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.slider-vorteile {
  padding-bottom: 1px;
}

.card {
  text-align: center;
  padding: 32px 16px;
  background-color: #fff;
  border-radius: 32px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}
.card > .ce_image {
  margin-bottom: 20px;
}
.card > .ce_hyperlink {
  margin-top: 20px;
}

.m-flex {
  display: flex;
  flex-wrap: wrap;
  margin: -16px;
}

.m-flex--25 > * {
  flex-basis: calc(100% - 32px);
  max-width: calc(100% - 32px);
  margin: 16px;
}

.width--s {
  max-width: 500px;
  margin: 0 auto;
}

.font-regular {
  font-family: "source_sans_proregular", Helvetica, sans-serif;
}
.font-regular h1,
.font-regular h2,
.font-regular h3,
.font-regular h4,
.font-regular button[type=submit],
.font-regular input[type=submit],
.font-regular .ce_hyperlink:not(.button) a,
.ce_hyperlink:not(.button) .font-regular a,
.font-regular .mod_newsreader .back,
.mod_newsreader .font-regular .back {
  font-family: "source_sans_proregular", Helvetica, sans-serif;
}

.font-blue {
  color: #007caf;
}

.no--margin-top h1,
.no--margin-top h2,
.no--margin-top h3,
.no--margin-top h4,
.no--margin-top button[type=submit],
.no--margin-top input[type=submit],
.no--margin-top .ce_hyperlink:not(.button) a,
.ce_hyperlink:not(.button) .no--margin-top a,
.no--margin-top .mod_newsreader .back,
.mod_newsreader .no--margin-top .back {
  margin-top: 8px;
}

.padding-y {
  padding-top: 40px;
  padding-bottom: 40px;
}

.m-flex--article {
  overflow: visible;
  padding: 40px 5%;
  margin-top: 0;
}
.m-flex--article .inner_article {
  max-width: 100%;
}

.align-left {
  text-align: left;
}

.job--generals {
  padding-bottom: 20px;
}

.job--infos {
  display: flex;
  flex-wrap: wrap;
  padding: 32px 0px 24px 0px;
}
.job--infos.is--overview {
  padding: 16px 0px 8px 0px;
}
.job--infos.is--overview .job--infos-item .icon {
  width: 20px;
}
.job--infos.is--overview .job--infos-item .content > span {
  font-weight: normal;
}
.job--infos-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-right: 32px;
  padding-bottom: 8px;
  flex-basis: 100%;
  max-width: 100%;
}
.job--infos-item .icon {
  flex-basis: 25px;
  max-width: 25px;
}
.job--infos-item .content {
  padding: 0px 8px;
  font-size: 14px;
  line-height: 18px;
  flex-basis: calc(100% - 25px);
  max-width: calc(100% - 25px);
}
.job--infos-item .content > span {
  font-family: "source_sans_proregular";
  font-weight: bold;
}

.no-underline {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .job--infos-item {
    flex-basis: 25%;
    max-width: 25%;
  }
  .card {
    padding: 56px 24px 90px 24px;
    position: relative;
  }
  .card > .ce_hyperlink {
    margin-top: 0;
    position: absolute;
    width: calc(100% - 32px);
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
  .m-flex--25 > * {
    flex-basis: calc(50% - 32px);
    max-width: calc(50% - 32px);
  }
  .image-slide {
    height: 100%;
  }
  .image-slide .image-slide--image, .image-slide .image-slide--video, .image-slide .image-slide--audio {
    height: 100%;
  }
  .image-slide--person a {
    color: #94bd56 !important;
  }
}
@media screen and (min-width: 1280px) {
  .job--infos-item {
    flex-basis: auto;
    max-width: none;
  }
  .job--infos-item .icon {
    flex-basis: auto;
    max-width: none;
    width: 25px;
  }
  .job--infos-item .content {
    max-width: none;
    flex-basis: auto;
  }
  .card > h2,
  .card > h3,
  .card > h4,
  .card > button[type=submit],
  .card > input[type=submit],
  .ce_hyperlink:not(.button) .card > a,
  .mod_newsreader .card > .back {
    margin-bottom: 10px;
  }
  .card > .ce_image {
    margin-bottom: 40px;
  }
  .m-flex--article {
    padding: 70px 16px;
  }
  .m-flex--25 > * {
    flex-basis: calc(25% - 32px);
    max-width: calc(25% - 32px);
  }
}
@media screen and (min-width: 1600px) {
  .m-flex--article {
    margin: -16px -100px;
  }
  .width--l {
    margin: 0px -150px;
  }
}
.maw-modal {
  position: fixed;
  bottom: 3vh;
  left: 0;
  margin: 0 5vw;
  z-index: 1500;
  width: 90vw;
  max-height: 90vh;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  transform: translateY(100px);
  border-radius: 20px;
  box-shadow: 0 0 0 100vh rgba(0, 124, 175, 0.9);
}

.maw-modal--close {
  cursor: pointer;
}

.maw-modal.is--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.modal-card--detail {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.modal-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.modal-card--wrapper {
  height: 20vh;
  min-height: 220px;
  width: 100%;
  position: relative;
  background: #007caf;
  background: linear-gradient(0deg, #007caf 0%, rgba(0, 124, 175, 0) 70%);
}

.modal-card--wrapper .title {
  text-transform: inherit;
  color: #fff;
  font-family: "source_sans_proregular", Helvetica, sans-serif;
  font-size: 20px;
  position: absolute;
  bottom: 24px;
  left: 32px;
  display: flex;
  flex-direction: column;
  width: 68%;
}

.modal-card--wrapper .title img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.modal-card--wrapper > .image_container img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 20px;
}

.modal-card--wrapper .trigger {
  position: absolute;
  right: 26px;
  bottom: 26px;
  background: unset;
  border: unset;
  cursor: pointer;
}

.modal-card--wrapper .trigger svg {
  display: block;
  height: 24px;
  width: 24px;
  background: #94bd56;
  border-radius: 50%;
  padding: 6px;
}

.modal-card--header {
  display: flex;
  align-items: center;
  padding: 20px;
  padding-bottom: 0;
}

.modal-card--header .headline {
  margin: 0;
  margin-right: 24px;
}

.modal-card--header .maw-modal--close {
  margin-top: 5px;
  margin-left: auto;
  width: 20px;
  height: 20px;
}

.modal-card--header .maw-modal--close svg {
  width: 100%;
  height: auto;
}

.modal-card--header .maw-modal--close svg path {
  fill: #555555 !important;
}

.modal-card--content {
  display: grid;
  grid-template-columns: 1fr;
  height: 100%;
  padding: 0 20px 20px;
  color: #555555;
  flex-basis: 100%;
  overflow: auto;
}

.modal-card--content .image_container {
  place-self: center;
}

.modal-card--content .image_container img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.modal-card--content .button-round {
  margin: auto 0 0 auto;
  flex-shrink: 0;
}

@media screen and (min-width: 78.75em) {
  .maw-modal {
    bottom: 50%;
    left: 50%;
    width: 60%;
    border-radius: 20px;
    transition: all 0.6s ease-in-out;
    transform: translate(-50%, 0%);
  }
  .maw-modal.is--open {
    transform: translate(-50%, 50%);
  }
  .modal-card--header {
    padding: 40px 40px 20px 40px;
  }
  .modal-card--content {
    padding: 0 40px 40px;
  }
}
.scroll-container {
  display: flex;
  overflow: scroll;
  padding: 0 0 20px 0;
  gap: 15px;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scroll-container.active {
  cursor: grabbing;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.scroll-container.cards {
  padding: 0 6% 20px 6%;
  margin-left: -6%;
  margin-right: -6%;
}

.scroll-container.cards > div {
  scroll-snap-align: center;
  flex: 96% 0 0;
}

.scroll-container.tabs {
  cursor: default;
}

@media screen and (min-width: 30em) {
  .scroll-container.cards > div {
    scroll-snap-align: center;
    flex: 80% 0 0;
  }
}
@media screen and (min-width: 64em) {
  .scroll-container.cards > div {
    flex: 30% 0 0;
  }
}
h1, h2.h1Style, h2 {
  font-family: "source_sans_proregular", Helvetica, sans-serif, Helvetica, sans-serif;
}

b, strong {
  font-family: "source_sans_probold", Helvetica, sans-serif;
}

.text-center {
  text-align: center;
}

.font-light {
  font-family: "source_sans_prolight", Helvetica, sans-serif;
}

.font-regular {
  font-family: "source_sans_proregular", Helvetica, sans-serif;
}

@media screen and (min-width: 768px) {
  .text-md-center {
    text-align: center;
  }
}
.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.mt-3 {
  margin-top: 18px;
}

.mt-4 {
  margin-top: 24px;
}

.mb-3 {
  margin-bottom: 18px;
}

.mb-4 {
  margin-bottom: 24px;
}

.d-md-flex > *:nth-child(odd) {
  padding-bottom: 10px;
}
.d-md-flex > *:nth-child(even) {
  padding-top: 10px;
}

.no--margin {
  margin: 0 !important;
}

.no--padding {
  padding: 0 !important;
}

.no--padding-bottom {
  padding-bottom: 0 !important;
}

.no--padding-x {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.no--margin-bottom {
  margin-bottom: 0 !important;
}

.block--auto .block {
  overflow: visible;
}

.cookiebar {
  z-index: 999999;
  padding: 20px;
  top: calc(50% - 10px) !important;
  left: calc(50% - 10px);
  transform: translate(-50%, -50%);
  margin: 10px;
  width: calc(100% - 20px);
  max-width: 460px;
}
.cookiebar__text {
  margin: 0 0 15px 0;
  font-size: 14px;
  line-height: 180%;
}
.cookiebar:before {
  content: "";
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  top: -200vw;
  left: -200vw;
  width: 600vw;
  height: 600vh;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .pb-mdm-0 {
    padding-bottom: 0;
  }
  .sideLinks {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .d-md-flex {
    display: flex;
    flex-wrap: wrap;
  }
  .d-md-flex > * {
    flex-basis: 50%;
    max-width: 50%;
  }
  .d-md-flex > *:nth-child(odd) {
    padding-right: 10px;
    padding-bottom: 0;
  }
  .d-md-flex > *:nth-child(even) {
    padding-left: 10px;
    padding-top: 0;
  }
}
.maw-icon {
  width: 13px;
  height: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.maw-icon.is--large {
  width: 16px;
  height: 16px;
}
.maw-icon.icon-mail {
  width: 18px;
  height: 18px;
}
.maw-icon > svg {
  width: 100%;
  position: relative;
  top: 0.05em;
}
.maw-icon.icon-whatsapp svg {
  transition: 0.2s ease-in-out;
}
.maw-icon.icon-whatsapp:hover svg {
  fill: #007caf;
}

.ce_hyperlink.button {
  border-radius: 36px;
}
.ce_hyperlink.button .maw-icon {
  margin-left: 8px;
}
.ce_hyperlink.button .maw-icon > svg > path {
  transition: all 0.3s;
  stroke: #FFFFFF;
}
.ce_hyperlink.button a {
  border-radius: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  height: 50px;
  line-height: 50px;
}
.ce_hyperlink.button.button--outline {
  background-color: transparent;
  border: 2px solid #94bd56;
}
.ce_hyperlink.button.button--outline .maw-icon > svg > path {
  stroke: #94bd56;
}
.ce_hyperlink.button.button--outline a {
  height: 46px;
  line-height: 46px;
  color: #94bd56 !important;
}
.ce_hyperlink.button.button--outline a:hover {
  background-color: #94bd56;
  color: #FFFFFF !important;
}
.ce_hyperlink.button.button--outline a:hover .maw-icon > svg > path {
  stroke: #FFFFFF;
}

.ce_form button[type=submit] {
  border-radius: 36px;
}

.d-flex .ce_hyperlink.button a {
  padding: 0 25px;
}

.button-group {
  margin: 30px 0 0 0;
  display: flex;
  justify-content: center;
}
.button-group .ce_hyperlink.button {
  margin: 0 12px 0 0;
}
.button-group .ce_hyperlink.button a {
  line-height: normal !important;
  padding: 0 25px;
}
.button-group .ce_hyperlink.button:last-child {
  margin: 0;
}

.mod_newslist {
  overflow: visible;
}

.jobs {
  overflow: visible;
  padding-bottom: 24px;
  margin-top: 24px;
}
.jobs.first {
  margin-top: 0;
}
.jobs.last {
  padding-bottom: 0;
}
.jobs h2 {
  font-size: 18px;
}
.jobs .ce_hyperlink {
  margin: 20px auto 0 auto;
}
.jobs .ce_hyperlink a {
  padding: 0 25px;
}

@media screen and (min-width: 1024px) {
  .jobs h2 {
    font-size: 24px;
  }
}
.job--infos {
  flex-wrap: nowrap;
  overflow: auto;
  padding-left: 5%;
  padding-right: 0;
  margin-left: -5%;
  margin-right: -5%;
}
.job--infos.is--overview {
  padding-left: 5%;
  padding-right: 0;
  margin-left: -5%;
  margin-right: -5%;
}
.job--infos-item {
  flex-wrap: nowrap;
}
.job--infos-item .content {
  white-space: nowrap;
}

.job-portal .ce_metamodel_list {
  overflow: visible;
}

.contact_persons--jobs {
  margin-left: -5%;
  margin-right: -5%;
}
.contact_persons--jobs .item {
  background-color: #FAFAFA;
  padding: 30px 5%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 2px 0;
}
.contact_persons--jobs .item-img {
  flex-basis: 85px;
  max-width: 85px;
}
.contact_persons--jobs .item-img-wrapper {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
}
.contact_persons--jobs .item-img-wrapper img {
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}
.contact_persons--jobs .item-content {
  padding-left: 30px;
  flex-basis: calc(100% - 85px);
  max-width: calc(100% - 85px);
}
.contact_persons--jobs .item.last {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .contact_persons--jobs {
    margin-left: 0%;
    margin-right: 0%;
    display: flex;
    flex-wrap: wrap;
  }
  .contact_persons--jobs .item {
    padding: 30px;
    width: calc(50% - 2px);
    flex-basis: calc(50% - 2px);
    max-width: calc(50% - 2px);
    margin: 0 2px 2px 0;
  }
  .contact_persons--jobs .item:last-child {
    margin: 0 2px 2px 0;
  }
}
.ce_accordion {
  border-bottom: 1px solid #F0F0F1;
}
.ce_accordion .toggler {
  cursor: pointer;
  padding: 13px 40px 13px 0;
  position: relative;
}
.ce_accordion .toggler.active .ui-accordion-header-icon {
  transform: rotate(180deg) translateY(5px);
}
.ce_accordion .accordion {
  padding: 0px 40px 12px 0;
}

.ui-accordion-header-icon {
  width: 12px;
  height: 12px;
  background-image: url("../../files/standard/layout/icons/sonstiges/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  transition: transform 0.2s ease-in-out;
}

.benefits {
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
  margin-left: -5%;
  margin-right: -5%;
  padding: 0 5%;
}
.benefits .benefit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 18px 12px 12px 0;
  line-height: normal;
  hyphens: auto;
  min-width: 180px;
  max-width: 180px;
}
.benefits .benefit-icon {
  flex-basis: 22px;
  max-width: 22px;
}
.benefits .benefit-headline {
  flex-basis: calc(100% - 22px);
  max-width: calc(100% - 22px);
  padding-left: 12px;
}

@media screen and (min-width: 768px) {
  .benefits .benefit {
    min-width: 230px;
    max-width: 230px;
  }
}
.fancy-list ol, .fancy-list ul {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  list-style-type: none;
  line-height: 180%;
}
.fancy-list ol li::marker, .fancy-list ul li::marker {
  display: none;
}
.fancy-list ol li::before, .fancy-list ul li::before {
  content: "💚";
  margin-right: 8px;
}

.table-wrap {
  width: 110%;
  overflow: auto;
  padding: 0 5%;
  margin: 0 -5%;
}
.table-wrap table {
  table-layout: fixed;
  font-size: 14px;
  line-height: 160%;
}
.table-wrap table tr:nth-child(even) {
  background: #eaeaea;
}
.table-wrap table td {
  padding: 8px;
}
.table-wrap table p {
  margin: 0 !important;
  padding: 0 !important;
}

.contact-anchor {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1010;
  border-radius: 50%;
  overflow: hidden;
}
.contact-anchor .image_container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.contact-anchor img {
  object-position: center;
  object-fit: cover;
  min-height: 100%;
  min-width: 100%;
}

@media screen and (min-width: 1280px) {
  .contact-anchor {
    right: 40px;
    bottom: 40px;
  }
}
.ce_form .widget.widget-radio.inline fieldset {
  display: flex;
}
.ce_form .widget.widget-radio.inline fieldset > legend {
  flex-basis: 100%;
  max-width: 100%;
  margin-bottom: 12px;
}
.ce_form .widget.widget-radio.inline fieldset > span {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.ce_form .widget.widget-radio.inline fieldset label {
  position: relative;
  margin-right: 32px;
  display: flex;
  align-items: center;
}
.ce_form .widget.widget-radio.inline fieldset label:before {
  content: " ";
  margin: -2px 8px 0 0;
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #F0F0F1;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ce_form .widget.widget-radio.inline fieldset input {
  display: none;
  appearance: none;
}
.ce_form .widget.widget-radio.inline fieldset input:checked + label:before {
  background-color: #94bd56;
  content: "✓";
  color: #FFFFFF;
  border-color: #94bd56;
  font-size: 12px;
}

.job-portal .mod_newsreader, .job-portal .mod_newsreader .layout_full {
  overflow: visible;
}
.job-portal .mod_article {
  border-bottom: none;
}

.mod_article.fluid {
  padding: 0;
  margin: 0;
}
.mod_article.fluid > .inner_article {
  max-width: unset;
}

.bg--gray {
  background-color: #FAFAFA;
}
.bg--gray.mod_article {
  padding-top: 30px;
}

@media screen and (min-width: 768px) {
  .bg--gray.mod_article {
    padding-top: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .bg--gray.mod_article {
    padding-top: 80px;
  }
}
.layout_job table, .layout_job ul, .layout_job ol {
  margin-top: 18px;
}
.layout_job .job--description {
  padding: 12px 0 0 0;
}

.social-share {
  position: relative;
  cursor: pointer;
}
.social-share-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
}
.social-share-button:hover + .social-share-content {
  visibility: visible;
  opacity: 1;
}
.social-share-content {
  position: absolute;
  bottom: calc(100% - 50px);
  left: calc(50% + 9px);
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-in-out;
}
.social-share-content-inner {
  padding: 10px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}
.social-share-content-inner > a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFF;
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
}
.social-share-content:hover {
  visibility: visible;
  opacity: 1;
}

.job-action-bar {
  position: fixed;
  z-index: 1000;
  display: flex;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
}
.job-action-bar .ce_hyperlink.button {
  display: inline-block;
  margin: 0;
}
.job-action-bar .ce_hyperlink.button a {
  padding: 0 25px;
}

@media screen and (min-width: 768px) {
  .job-action-bar {
    justify-content: center;
  }
}
@media screen and (min-width: 1280px) {
  .job-action-bar {
    padding: 40px;
  }
}

/*# sourceMappingURL=style.css.map */

.mod_rocksolid_slider {
    margin-bottom: 100px;
}
@font-face {
    font-family: 'iconfonts';
    src:    url('../../files/standard/layout/fonts/iconfonts/fonts/iconfonts.eot?980zay');
    src:    url('../../files/standard/layout/fonts/iconfonts/fonts/iconfonts.eot?980zay#iefix') format('embedded-opentype'),
        url('../../files/standard/layout/fonts/iconfonts/fonts/iconfonts.ttf?980zay') format('truetype'),
        url('../../files/standard/layout/fonts/iconfonts/fonts/iconfonts.woff?980zay') format('woff'),
        url('../../files/standard/layout/fonts/iconfonts/fonts/iconfonts.svg?980zay#iconfonts') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'iconfonts' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-pfeil-unten:before {
    content: "\e907";
}
.icon-schliessen:before {
    content: "\e908";
}
.icon-trichter:before {
    content: "\e909";
}
.icon-icon1:before {
    content: "\e905";
}
.icon-icon2:before {
    content: "\e906";
}
.icon-arrow-left:before {
    content: "\e900";
}
.icon-arrow-right:before {
    content: "\e901";
}
.icon-magnifier:before {
    content: "\e902";
}
.icon-schloss:before {
    content: "\e903";
}
.icon-small-arrow-right:before {
    content: "\e904";
}


/* Generated by Font Squirrel (http://www.fontsquirrel.com) on December 1, 2015 */



@font-face {
    font-family: 'source_sans_probold';
    src: url('../../files/standard/layout/fonts/source-sans-pro/sourcesanspro-bold-webfont.eot');
    src: url('../../files/standard/layout/fonts/source-sans-pro/sourcesanspro-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../../files/standard/layout/fonts/source-sans-pro/sourcesanspro-bold-webfont.woff2') format('woff2'),
         url('../../files/standard/layout/fonts/source-sans-pro/sourcesanspro-bold-webfont.woff') format('woff'),
         url('../../files/standard/layout/fonts/source-sans-pro/sourcesanspro-bold-webfont.ttf') format('truetype'),
         url('../../files/standard/layout/fonts/source-sans-pro/sourcesanspro-bold-webfont.svg#source_sans_probold') format('svg');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'source_sans_prolight';
    src: url('../../files/standard/layout/fonts/source-sans-pro/sourcesanspro-light-webfont.eot');
    src: url('../../files/standard/layout/fonts/source-sans-pro/sourcesanspro-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../../files/standard/layout/fonts/source-sans-pro/sourcesanspro-light-webfont.woff2') format('woff2'),
         url('../../files/standard/layout/fonts/source-sans-pro/sourcesanspro-light-webfont.woff') format('woff'),
         url('../../files/standard/layout/fonts/source-sans-pro/sourcesanspro-light-webfont.ttf') format('truetype'),
         url('../../files/standard/layout/fonts/source-sans-pro/sourcesanspro-light-webfont.svg#source_sans_prolight') format('svg');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'source_sans_proregular';
    src: url('../../files/standard/layout/fonts/source-sans-pro/sourcesanspro-regular-webfont.eot');
    src: url('../../files/standard/layout/fonts/source-sans-pro/sourcesanspro-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../../files/standard/layout/fonts/source-sans-pro/sourcesanspro-regular-webfont.woff2') format('woff2'),
         url('../../files/standard/layout/fonts/source-sans-pro/sourcesanspro-regular-webfont.woff') format('woff'),
         url('../../files/standard/layout/fonts/source-sans-pro/sourcesanspro-regular-webfont.ttf') format('truetype'),
         url('../../files/standard/layout/fonts/source-sans-pro/sourcesanspro-regular-webfont.svg#source_sans_proregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
/*!
*  - v1.3
* Homepage: http://bqworks.com/slider-pro/
* Author: bqworks
* Author URL: http://bqworks.com/
*/.slider-pro{position:relative;margin:0 auto;-moz-box-sizing:content-box;box-sizing:content-box}.sp-slides-container{position:relative}.sp-mask{position:relative;overflow:hidden}.sp-slides{position:relative;-webkit-backface-visibility:hidden;-webkit-perspective:1000}.sp-slide{position:absolute}.sp-image-container{overflow:hidden}.sp-image{position:relative;display:block;border:none}.sp-no-js{overflow:hidden;max-width:100%}.sp-thumbnails-container{position:relative;overflow:hidden;direction:ltr}.sp-bottom-thumbnails,.sp-top-thumbnails{left:0;margin:0 auto}.sp-top-thumbnails{position:absolute;top:0;margin-bottom:4px}.sp-bottom-thumbnails{margin-top:4px}.sp-left-thumbnails,.sp-right-thumbnails{position:absolute;top:0}.sp-right-thumbnails{right:0;margin-left:4px}.sp-left-thumbnails{left:0;margin-right:4px}.sp-thumbnails{position:relative}.sp-thumbnail{border:none}.sp-thumbnail-container{position:relative;display:block;overflow:hidden;float:left;-moz-box-sizing:border-box;box-sizing:border-box}.sp-rtl .sp-thumbnail-container{float:right}.sp-bottom-thumbnails .sp-thumbnail-container,.sp-top-thumbnails .sp-thumbnail-container{margin-left:2px;margin-right:2px}.sp-bottom-thumbnails .sp-thumbnail-container:first-child,.sp-top-thumbnails .sp-thumbnail-container:first-child{margin-left:0}.sp-bottom-thumbnails .sp-thumbnail-container:last-child,.sp-top-thumbnails .sp-thumbnail-container:last-child{margin-right:0}.sp-left-thumbnails .sp-thumbnail-container,.sp-right-thumbnails .sp-thumbnail-container{margin-top:2px;margin-bottom:2px}.sp-left-thumbnails .sp-thumbnail-container:first-child,.sp-right-thumbnails .sp-thumbnail-container:first-child{margin-top:0}.sp-left-thumbnails .sp-thumbnail-container:last-child,.sp-right-thumbnails .sp-thumbnail-container:last-child{margin-bottom:0}.sp-right-thumbnails.sp-has-pointer{margin-left:-13px}.sp-right-thumbnails.sp-has-pointer .sp-thumbnail{position:absolute;left:18px;margin-left:0!important}.sp-right-thumbnails.sp-has-pointer .sp-selected-thumbnail:before{content:'';position:absolute;height:100%;border-left:5px solid red;left:0;top:0;margin-left:13px}.sp-right-thumbnails.sp-has-pointer .sp-selected-thumbnail:after{content:'';position:absolute;width:0;height:0;left:0;top:50%;margin-top:-8px;border-right:13px solid red;border-top:8px solid transparent;border-bottom:8px solid transparent}.sp-left-thumbnails.sp-has-pointer{margin-right:-13px}.sp-left-thumbnails.sp-has-pointer .sp-thumbnail{position:absolute;right:18px}.sp-left-thumbnails.sp-has-pointer .sp-selected-thumbnail:before{content:'';position:absolute;height:100%;border-left:5px solid red;right:0;top:0;margin-right:13px}.sp-left-thumbnails.sp-has-pointer .sp-selected-thumbnail:after{content:'';position:absolute;width:0;height:0;right:0;top:50%;margin-top:-8px;border-left:13px solid red;border-top:8px solid transparent;border-bottom:8px solid transparent}.sp-bottom-thumbnails.sp-has-pointer{margin-top:-13px}.sp-bottom-thumbnails.sp-has-pointer .sp-thumbnail{position:absolute;top:18px;margin-top:0!important}.sp-bottom-thumbnails.sp-has-pointer .sp-selected-thumbnail:before{content:'';position:absolute;width:100%;border-bottom:5px solid red;top:0;margin-top:13px}.sp-bottom-thumbnails.sp-has-pointer .sp-selected-thumbnail:after{content:'';position:absolute;width:0;height:0;left:50%;top:0;margin-left:-8px;border-bottom:13px solid red;border-left:8px solid transparent;border-right:8px solid transparent}.sp-top-thumbnails.sp-has-pointer{margin-bottom:-13px}.sp-top-thumbnails.sp-has-pointer .sp-thumbnail{position:absolute;bottom:18px}.sp-top-thumbnails.sp-has-pointer .sp-selected-thumbnail:before{content:'';position:absolute;width:100%;border-bottom:5px solid red;bottom:0;margin-bottom:13px}.sp-top-thumbnails.sp-has-pointer .sp-selected-thumbnail:after{content:'';position:absolute;width:0;height:0;left:50%;bottom:0;margin-left:-8px;border-top:13px solid red;border-left:8px solid transparent;border-right:8px solid transparent}.sp-layer{position:absolute;margin:0;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-font-smoothing:subpixel-antialiased;-webkit-backface-visibility:hidden}.sp-black{color:#FFF;background:#000;background:rgba(0,0,0,.7)}.sp-white{color:#000;background:#fff;background:rgba(255,255,255,.7)}.sp-rounded{border-radius:10px}.sp-padding{padding:10px}.sp-grab{cursor:url(../../files/standard/layout/css/framework/images/openhand.cur),move}.sp-grabbing{cursor:url(../../files/standard/layout/css/framework/images/closedhand.cur),move}.sp-selectable{cursor:default}.sp-caption-container{text-align:center;margin-top:10px}.sp-full-screen{margin:0!important;background-color:#000}.sp-full-screen-button{position:absolute;top:5px;right:10px;font-size:30px;line-height:1;cursor:pointer;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.sp-full-screen-button:before{content:'\2195'}.sp-fade-full-screen{opacity:0;-webkit-transition:opacity .5s;transition:opacity .5s}.slider-pro:hover .sp-fade-full-screen{opacity:1}.sp-buttons{position:relative;width:100%;text-align:center;padding-top:10px}.sp-rtl .sp-buttons{direction:rtl}.sp-full-screen .sp-buttons{display:none}.sp-button{width:10px;height:10px;border:2px solid #000;border-radius:50%;margin:4px;display:inline-block;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer}.sp-selected-button{background-color:#000}@media only screen and (min-width:768px) and (max-width:1024px){.sp-button{width:14px;height:14px}}@media only screen and (min-width:568px) and (max-width:768px){.sp-button{width:16px;height:16px}}@media only screen and (min-width:320px) and (max-width:568px){.sp-button{width:18px;height:18px}}.sp-arrows{position:absolute}.sp-fade-arrows{opacity:0;-webkit-transition:opacity .5s;transition:opacity .5s}.sp-slides-container:hover .sp-fade-arrows{opacity:1}.sp-horizontal .sp-arrows{width:100%;left:0;top:50%;margin-top:-15px}.sp-vertical .sp-arrows{height:100%;left:50%;top:0;margin-left:-10px}.sp-arrow{position:absolute;display:block;width:20px;height:30px;cursor:pointer}.sp-vertical .sp-arrow{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.sp-horizontal .sp-previous-arrow{left:20px;right:auto}.sp-horizontal .sp-next-arrow,.sp-horizontal.sp-rtl .sp-previous-arrow{right:20px;left:auto}.sp-horizontal.sp-rtl .sp-next-arrow{left:20px;right:auto}.sp-vertical .sp-previous-arrow{top:20px}.sp-vertical .sp-next-arrow{bottom:20px;-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.sp-next-arrow:after,.sp-next-arrow:before,.sp-previous-arrow:after,.sp-previous-arrow:before{content:'';position:absolute;width:50%;height:50%;background-color:#FFF}.sp-arrow:before{left:30%;top:0;-webkit-transform:skew(145deg,0deg);-ms-transform:skew(145deg,0deg);transform:skew(145deg,0deg)}.sp-arrow:after{left:30%;top:50%;-webkit-transform:skew(-145deg,0deg);-ms-transform:skew(-145deg,0deg);transform:skew(-145deg,0deg)}.sp-horizontal.sp-rtl .sp-previous-arrow,.sp-next-arrow{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.sp-horizontal.sp-rtl .sp-next-arrow{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.ie7 .sp-arrow,.ie8 .sp-arrow{width:0;height:0}.ie7 .sp-arrow:after,.ie7 .sp-arrow:before,.ie8 .sp-arrow:after,.ie8 .sp-arrow:before{content:none}.ie7.sp-horizontal .sp-previous-arrow,.ie8.sp-horizontal .sp-previous-arrow{border-right:20px solid #FFF;border-top:20px solid transparent;border-bottom:20px solid transparent}.ie7.sp-horizontal .sp-next-arrow,.ie8.sp-horizontal .sp-next-arrow{border-left:20px solid #FFF;border-top:20px solid transparent;border-bottom:20px solid transparent}.ie7.sp-vertical .sp-previous-arrow,.ie8.sp-vertical .sp-previous-arrow{border-bottom:20px solid #FFF;border-left:20px solid transparent;border-right:20px solid transparent}.ie7.sp-vertical .sp-next-arrow,.ie8.sp-vertical .sp-next-arrow{border-top:20px solid #FFF;border-left:20px solid transparent;border-right:20px solid transparent}.sp-thumbnail-arrows{position:absolute}.sp-fade-thumbnail-arrows{opacity:0;-webkit-transition:opacity .5s;transition:opacity .5s}.sp-thumbnails-container:hover .sp-fade-thumbnail-arrows{opacity:1}.sp-bottom-thumbnails .sp-thumbnail-arrows,.sp-top-thumbnails .sp-thumbnail-arrows{width:100%;top:50%;left:0;margin-top:-12px}.sp-left-thumbnails .sp-thumbnail-arrows,.sp-right-thumbnails .sp-thumbnail-arrows{height:100%;top:0;left:50%;margin-left:-7px}.sp-thumbnail-arrow{position:absolute;display:block;width:15px;height:25px;cursor:pointer}.sp-left-thumbnails .sp-thumbnail-arrows .sp-thumbnail-arrow,.sp-right-thumbnails .sp-thumbnail-arrows .sp-thumbnail-arrow{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.sp-bottom-thumbnails .sp-previous-thumbnail-arrow,.sp-top-thumbnails .sp-previous-thumbnail-arrow{left:0}.sp-bottom-thumbnails .sp-next-thumbnail-arrow,.sp-top-thumbnails .sp-next-thumbnail-arrow{right:0}.sp-left-thumbnails .sp-previous-thumbnail-arrow,.sp-right-thumbnails .sp-previous-thumbnail-arrow{top:0}.sp-left-thumbnails .sp-next-thumbnail-arrow,.sp-right-thumbnails .sp-next-thumbnail-arrow{bottom:0}.sp-next-thumbnail-arrow:after,.sp-next-thumbnail-arrow:before,.sp-previous-thumbnail-arrow:after,.sp-previous-thumbnail-arrow:before{content:'';position:absolute;width:50%;height:50%;background-color:#FFF}.sp-previous-thumbnail-arrow:before{left:30%;top:0;-webkit-transform:skew(145deg,0deg);-ms-transform:skew(145deg,0deg);transform:skew(145deg,0deg)}.sp-previous-thumbnail-arrow:after{left:30%;top:50%;-webkit-transform:skew(-145deg,0deg);-ms-transform:skew(-145deg,0deg);transform:skew(-145deg,0deg)}.sp-next-thumbnail-arrow:before{right:30%;top:0;-webkit-transform:skew(35deg,0deg);-ms-transform:skew(35deg,0deg);transform:skew(35deg,0deg)}.sp-next-thumbnail-arrow:after{right:30%;top:50%;-webkit-transform:skew(-35deg,0deg);-ms-transform:skew(-35deg,0deg);transform:skew(-35deg,0deg)}.ie7 .sp-thumbnail-arrow,.ie8 .sp-thumbnail-arrow{width:0;height:0}.ie7 .sp-thumbnail-arrow:after,.ie7 .sp-thumbnail-arrow:before,.ie8 .sp-thumbnail-arrow:after,.ie8 .sp-thumbnail-arrow:before{content:none}.ie7 .sp-bottom-thumbnails .sp-previous-thumbnail-arrow,.ie7 .sp-top-thumbnails .sp-previous-thumbnail-arrow,.ie8 .sp-bottom-thumbnails .sp-previous-thumbnail-arrow,.ie8 .sp-top-thumbnails .sp-previous-thumbnail-arrow{border-right:12px solid #FFF;border-top:12px solid transparent;border-bottom:12px solid transparent}.ie7 .sp-bottom-thumbnails .sp-next-thumbnail-arrow,.ie7 .sp-top-thumbnails .sp-next-thumbnail-arrow,.ie8 .sp-bottom-thumbnails .sp-next-thumbnail-arrow,.ie8 .sp-top-thumbnails .sp-next-thumbnail-arrow{border-left:12px solid #FFF;border-top:12px solid transparent;border-bottom:12px solid transparent}.ie7 .sp-left-thumbnails .sp-previous-thumbnail-arrow,.ie7 .sp-right-thumbnails .sp-previous-thumbnail-arrow,.ie8 .sp-left-thumbnails .sp-previous-thumbnail-arrow,.ie8 .sp-right-thumbnails .sp-previous-thumbnail-arrow{border-bottom:12px solid #FFF;border-left:12px solid transparent;border-right:12px solid transparent}.ie7 .sp-left-thumbnails .sp-next-thumbnail-arrow,.ie7 .sp-right-thumbnails .sp-next-thumbnail-arrow,.ie8 .sp-left-thumbnails .sp-next-thumbnail-arrow,.ie8 .sp-right-thumbnails .sp-next-thumbnail-arrow{border-top:12px solid #FFF;border-left:12px solid transparent;border-right:12px solid transparent}a.sp-video{text-decoration:none}a.sp-video img{-webkit-backface-visibility:hidden;border:none}a.sp-video:after{content:'\25B6';position:absolute;width:45px;padding-left:5px;height:50px;border:2px solid #FFF;text-align:center;font-size:30px;border-radius:30px;top:0;color:#FFF;bottom:0;left:0;right:0;background-color:rgba(0,0,0,.2);margin:auto;line-height:52px}.slider-pro img.sp-image,.slider-pro img.sp-thumbnail{max-width:none;max-height:none;border:none!important;border-radius:0!important;padding:0!important;-webkit-box-shadow:none!important;-mox-box-shadow:none!important;box-shadow:none!important;transition:none;-moz-transition:none;-webkit-transition:none;-o-transition:none}.slider-pro a{position:static;transition:none!important;-moz-transition:none!important;-webkit-transition:none!important;-o-transition:none!important}.slider-pro canvas,.slider-pro embed,.slider-pro iframe,.slider-pro object,.slider-pro video{max-width:none;max-height:none}.slider-pro p.sp-layer{font-size:14px;line-height:1.4;margin:0}.slider-pro h1.sp-layer{font-size:32px;line-height:1.4;margin:0}.slider-pro h2.sp-layer{font-size:24px;line-height:1.4;margin:0}.slider-pro h3.sp-layer{font-size:19px;line-height:1.4;margin:0}.slider-pro h4.sp-layer{font-size:16px;line-height:1.4;margin:0}.slider-pro h5.sp-layer{font-size:13px;line-height:1.4;margin:0}.slider-pro h6.sp-layer{font-size:11px;line-height:1.4;margin:0}.slider-pro img.sp-layer{border:none}
.button.table a {
	padding: 0 5px 0 5px;
	font-size: 14px;
}

/* Table Styles */

.table-wrapper{
	margin: 20px 0 20px 0;
}

.fl-table {
    border-radius: 5px;
    font-size: 14px;
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    background-color: white;
}

.fl-table td, .fl-table th {
    text-align: center;
    padding: 8px;
}

.fl-table td {
    border-right: 1px solid #f8f8f8;
    font-size: 13px;
}

.fl-table thead th {
    color: #ffffff;
    background: #94bd56;
}


.fl-table thead th:nth-child(odd) {
    color: #ffffff;
    background: #555555;
}

.fl-table tr:nth-child(even) {
    background: #F8F8F8;
}
.marquee span {
    animation: marquee 50s linear infinite;
}
.marquee span a {
    font-weight: bold;
    
}

.marquee span a {
    font-weight: bold;
    color: #007caf !important;
}

.marquee span a:visited,
.marquee span a:link, 
.marquee span a:active {
    color: #007caf  !important;
}

.marquee span a:hover {
	color: #007caf !important;	
}

.marquee .mod_article {
	margin: 0px;
	padding: 0px;
	border: none;
	overflow: visible !important;
}

.marquee .mod_article .inner_article p {
	margin: 0px !important;
	padding: 0px !important;
}

nav li.translation {
	border: 1px solid #94bd56;
	padding: 2px;
	background-color: #94bd56;
	color: #ffffff !important;
	margin-left: 1em;
}

nav li.translation a{
	color: #ffffff !important;
}

.mod_newslist h2 {
	color: #94bd56;
}

a.noMove {
	color: #ffffff !important;
	text-decoration: none !important;
}
a:focus-visible{outline:-webkit-focus-ring-color auto 1px;outline-offset:2px;transition:0ms}.invisible{visibility:hidden;height:0}input:focus,textarea:focus,select:focus,button[type="submit"]:focus{outline:none}input:focus-visible,textarea:focus-visible,select:focus-visible,button[type="submit"]:focus-visible{outline:1px black solid;filter:drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.3));outline-offset:2px}.sideLinks>a:focus-visible{outline-offset:1px;background-color:#007caf}nav.mobileOnly li.translation{margin-left:0}.toggler:focus-visible{outline:-webkit-focus-ring-color auto 1px;outline-offset:2px}.contact_persons .ui-accordion-header-icon{display:none}section.footer .grid.grid-one .ce_hyperlink{color:#555555;float:left;margin-top:10px;margin-right:17px;margin-bottom:17px}section.footer .grid.grid-one .ce_hyperlink:hover{opacity:0.8}section.footer .grid.grid-one .ce_hyperlink a{padding:0}section.footer .grid.grid-one .ce_hyperlink a:before{display:none}.maw-modal--close{background-color:transparent;border:0;padding:0}.maw-modal--close:focus-visible{outline:-webkit-focus-ring-color auto 1px;outline-offset:2px}#main .image-slide a{padding:4px 0px;color:#fff;text-decoration:underline;font-weight:bold}#main .image-slide a:hover{color:black}@media screen and (max-width:680px){#article-65{margin-top:0}}section.footer .grid.grid-three .data.h4Style ul{margin:5px 0}
.justify-items-start{justify-items:start}.justify-items-center{justify-items:center}.justify-items-end{justify-items:end}.justify-items-stretch{justify-items:stretch}.content-start{align-content:start}.content-center{align-content:center}.content-end{align-content:end}.items-start{align-items:start}.items-center{align-items:center}.items-end{align-items:end}.items-stretch{align-items:stretch}.items-baseline{align-items:baseline}[class*="grid_"]{display:grid !important;grid-gap:2rem}[class*="grid_"]>.block{margin-bottom:0}.ce_cp_column_start:has(.content-swiper){overflow:hidden}@media (min-width:576px){.grid_mobile_100{grid-template-columns:1fr}.grid_mobile_50_50{grid-template-columns:repeat(2, 1fr)}.grid_mobile_33_33_33{grid-template-columns:repeat(3, 1fr)}.grid_mobile_25_25_25_25{grid-template-columns:repeat(4, 1fr)}.grid_mobile_75_25{grid-template-columns:3fr 1fr}.grid_mobile_25_75{grid-template-columns:1fr 3fr}.grid_mobile_66_33{grid-template-columns:2fr 1fr}.grid_mobile_33_66{grid-template-columns:1fr 2fr}.grid_mobile_60_40{grid-template-columns:3fr 2fr}.grid_mobile_40_60{grid-template-columns:2fr 3fr}.grid_mobile_50_25_25{grid-template-columns:2fr 1fr 1fr}.grid_mobile_25_50_25{grid-template-columns:1fr 2fr 1fr}.grid_mobile_25_25_50{grid-template-columns:1fr 1fr 2fr}.grid_mobile_40_30_30{grid-template-columns:4fr 3fr 3fr}.grid_mobile_30_40_30{grid-template-columns:3fr 4fr 3fr}.grid_mobile_30_30_40{grid-template-columns:3fr 3fr 4fr}.gap_mobile_0{grid-gap:0}.gap_mobile_1{grid-gap:1rem}.gap_mobile_2{grid-gap:2rem}.gap_mobile_3{grid-gap:3rem}.gap_mobile_4{grid-gap:4rem}.gap_mobile_5{grid-gap:5rem}.gap_mobile_6{grid-gap:6rem}.gap_mobile_7{grid-gap:7rem}.gap_mobile_8{grid-gap:8rem}.gap_mobile_9{grid-gap:9rem}.gap_mobile_10{grid-gap:10rem}.gap_mobile_11{grid-gap:11rem}.gap_mobile_12{grid-gap:12rem}}@media (min-width:768px){.grid_tablet_100{grid-template-columns:1fr}.grid_tablet_50_50{grid-template-columns:repeat(2, 1fr)}.grid_tablet_33_33_33{grid-template-columns:repeat(3, 1fr)}.grid_tablet_25_25_25_25{grid-template-columns:repeat(4, 1fr)}.grid_tablet_75_25{grid-template-columns:3fr 1fr}.grid_tablet_25_75{grid-template-columns:1fr 3fr}.grid_tablet_66_33{grid-template-columns:2fr 1fr}.grid_tablet_33_66{grid-template-columns:1fr 2fr}.grid_tablet_60_40{grid-template-columns:3fr 2fr}.grid_tablet_40_60{grid-template-columns:2fr 3fr}.grid_tablet_50_25_25{grid-template-columns:2fr 1fr 1fr}.grid_tablet_25_50_25{grid-template-columns:1fr 2fr 1fr}.grid_tablet_25_25_50{grid-template-columns:1fr 1fr 2fr}.grid_tablet_40_30_30{grid-template-columns:4fr 3fr 3fr}.grid_tablet_30_40_30{grid-template-columns:3fr 4fr 3fr}.grid_tablet_30_30_40{grid-template-columns:3fr 3fr 4fr}.grid_tablet_20_40_40{grid-template-columns:1fr 2fr 2fr}.grid_tablet_40_20_40{grid-template-columns:2fr 1fr 2fr}.grid_tablet_40_40_20{grid-template-columns:2fr 2fr 1fr}.gap_tablet_0{grid-gap:0}.gap_tablet_1{grid-gap:1rem}.gap_tablet_2{grid-gap:2rem}.gap_tablet_3{grid-gap:3rem}.gap_tablet_4{grid-gap:4rem}.gap_tablet_5{grid-gap:5rem}.gap_tablet_6{grid-gap:6rem}.gap_tablet_7{grid-gap:7rem}.gap_tablet_8{grid-gap:8rem}.gap_tablet_9{grid-gap:9rem}.gap_tablet_10{grid-gap:10rem}.gap_tablet_11{grid-gap:11rem}.gap_tablet_12{grid-gap:12rem}}@media (min-width:992px){.grid_desktop_100{grid-template-columns:1fr}.grid_desktop_50_50{grid-template-columns:repeat(2, 1fr)}.grid_desktop_50_25_25{grid-template-columns:2fr 1fr 1fr}.grid_desktop_33_33_33{grid-template-columns:repeat(3, 1fr)}.grid_desktop_75_25{grid-template-columns:3fr 1fr}.grid_desktop_25_75{grid-template-columns:1fr 3fr}.grid_desktop_66_33{grid-template-columns:2fr 1fr}.grid_desktop_60_40{grid-template-columns:3fr 2fr}.grid_desktop_40_60{grid-template-columns:2fr 3fr}.grid_desktop_33_66{grid-template-columns:1fr 2fr}.grid_desktop_50_25_25{grid-template-columns:2fr 1fr 1fr}.grid_desktop_40_30_30{grid-template-columns:4fr 3fr 3fr}.grid_desktop_50_25_25{grid-template-columns:2fr 1fr 1fr}.grid_desktop_25_50_25{grid-template-columns:1fr 2fr 1fr}.grid_desktop_25_25_50{grid-template-columns:1fr 1fr 2fr}.grid_desktop_40_30_30{grid-template-columns:4fr 3fr 3fr}.grid_desktop_30_40_30{grid-template-columns:3fr 4fr 3fr}.grid_desktop_30_30_40{grid-template-columns:3fr 3fr 4fr}.grid_desktop_20_40_40{grid-template-columns:1fr 2fr 2fr}.grid_desktop_40_20_40{grid-template-columns:2fr 1fr 2fr}.grid_desktop_40_40_20{grid-template-columns:2fr 2fr 1fr}.grid_desktop_25_25_25_25{grid-template-columns:repeat(4, 1fr)}.grid_desktop_40_20_20_20{grid-template-columns:2fr 1fr 1fr 1fr}.grid_desktop_20_40_20_20{grid-template-columns:1fr 2fr 1fr 1fr}.grid_desktop_20_20_40_20{grid-template-columns:1fr 1fr 2fr 1fr}.grid_desktop_20_20_20_40{grid-template-columns:1fr 1fr 1fr 2fr}.grid_desktop_20_20_20_20_20{grid-template-columns:repeat(5, 1fr)}.grid_desktop_16_16_16_16_16_16{grid-template-columns:repeat(6, 1fr)}.gap_desktop_0{grid-gap:0}.gap_desktop_1{grid-gap:1rem}.gap_desktop_2{grid-gap:2rem}.gap_desktop_3{grid-gap:3rem}.gap_desktop_4{grid-gap:4rem}.gap_desktop_5{grid-gap:5rem}.gap_desktop_6{grid-gap:6rem}.gap_desktop_7{grid-gap:7rem}.gap_desktop_8{grid-gap:8rem}.gap_desktop_9{grid-gap:9rem}.gap_desktop_10{grid-gap:10rem}.gap_desktop_11{grid-gap:11rem}.gap_desktop_12{grid-gap:12rem}}
