@charset "UTF-8";
/**************** DEFINITIONS AND MIXINS ******************/ /* Definitions */
/**
 * Grid setup
 *
 * The grid will calculate dimensions based on these two variables:
 * $fg-columns will inform the grid loops how many columns there should be.
 * $fg-gutter will inform the grid loops how big eac column's gutters should be.
 *
 * The grid will name columns, rows, offsets based on these three variables:
 * $fg-class-row string used for the row class
 * $fg-class-col string used for the column class
 * $fg-class-off string used for the offset class
 */
/**
 * Break point namespace object
 *
 * Set the default namespace object with these defaults with the
 * understanding that you can pass in whatever you might require for your site.
 *
 * $fg-breakpoints is a Sass list with nested lists inside. Each sub list defines two things.
 * 1. The namespace for that breakpoint. (Required) (i.e. xs, sm, md, lg)
 * 2. The min-width measurement for the breakpoint for that namespace. (i.e. 48em, 62em, 75em)
 *
 * Note: These should be in the proper order (at least till libsass handles map keys properly).
 *
 * Note: If the measurement is left out then it will be skipped when generating
 * the grid and applied to global styles.
 *
 */
/* Media Breakpoints */
/**************** ACTUAL STYLES ***************************/
/* Modules go first */
/* Normalize first */ /* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevents 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/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * 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
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * 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 Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
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.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type=button],
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;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 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/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* Then other modules */
/**
 * Flex Grid -
 * Version: 0.3.4
 *
 * Simple grid built with flex box and sass.
 *
 * Matthew Simo - matthew.a.simo@gmail.com
 */
/**
 * Class Name Defaults
 *
 * Define class names for columns, rows and offsets in case compatibility with other
 * libraries is necessary.
/**
 * Calculate column size percentage
 */
/**
 * Spacing mixin to create uniform margin/padding
 */
/**
 * Row wrapper class, flex box parent.
 */
.row {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /*@include spacing( ( -$fg-gutter ), margin, horizontal );*/
}

.col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1, .col-lg, .col-md, .col-sm, .col-xs {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-height: 1px;
  padding-left: 2rem;
  padding-right: 2rem;
}

.col-lg, .col-md, .col-sm, .col-xs {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  max-width: 100%;
}

/**
 * Generate a set of grid column classes using a namespace
 *
 * .col-[namespace] for intelligent column division
 * .col-[namespace]-[number] for a column that covers a specific number of columns (e.g. 1-12 by default)
 * .off-[namespace]-[number] for pushing a col a specific number of columns (e.g. 1-11 by default)
 */
@media (max-width: 767px) {
  .col-xs-12 {
    padding: 0 5%;
  }
}
/**
 * Build the grid in two steps, to help minimize file size
 * Step 1, for each namespace, create the grid-base
 * Step 2, for each namespace, wrap the col width/offset measurements in their breakpoint media query
 */
.col-xs-1 {
  -ms-flex-preferred-size: 8.3333333333%;
      flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.6666666667%;
      flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.3333333333%;
      flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.6666666667%;
      flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.3333333333%;
      flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.6666666667%;
      flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.3333333333%;
      flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.6666666667%;
      flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}

.off-xs-1 {
  margin-left: 8.3333333333%;
}

.off-xs-2 {
  margin-left: 16.6666666667%;
}

.off-xs-3 {
  margin-left: 25%;
}

.off-xs-4 {
  margin-left: 33.3333333333%;
}

.off-xs-5 {
  margin-left: 41.6666666667%;
}

.off-xs-6 {
  margin-left: 50%;
}

.off-xs-7 {
  margin-left: 58.3333333333%;
}

.off-xs-8 {
  margin-left: 66.6666666667%;
}

.off-xs-9 {
  margin-left: 75%;
}

.off-xs-10 {
  margin-left: 83.3333333333%;
}

.off-xs-11 {
  margin-left: 91.6666666667%;
}

@media only screen and (min-width: 768px) {
  .col-sm-1 {
    -ms-flex-preferred-size: 8.3333333333%;
        flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.6666666667%;
        flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.6666666667%;
        flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.3333333333%;
        flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.6666666667%;
        flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  .off-sm-1 {
    margin-left: 8.3333333333%;
  }
  .off-sm-2 {
    margin-left: 16.6666666667%;
  }
  .off-sm-3 {
    margin-left: 25%;
  }
  .off-sm-4 {
    margin-left: 33.3333333333%;
  }
  .off-sm-5 {
    margin-left: 41.6666666667%;
  }
  .off-sm-6 {
    margin-left: 50%;
  }
  .off-sm-7 {
    margin-left: 58.3333333333%;
  }
  .off-sm-8 {
    margin-left: 66.6666666667%;
  }
  .off-sm-9 {
    margin-left: 75%;
  }
  .off-sm-10 {
    margin-left: 83.3333333333%;
  }
  .off-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media only screen and (min-width: 992px) {
  .col-md-1 {
    -ms-flex-preferred-size: 8.3333333333%;
        flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    -ms-flex-preferred-size: 16.6666666667%;
        flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    -ms-flex-preferred-size: 41.6666666667%;
        flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex-preferred-size: 58.3333333333%;
        flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    -ms-flex-preferred-size: 91.6666666667%;
        flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  .off-md-1 {
    margin-left: 8.3333333333%;
  }
  .off-md-2 {
    margin-left: 16.6666666667%;
  }
  .off-md-3 {
    margin-left: 25%;
  }
  .off-md-4 {
    margin-left: 33.3333333333%;
  }
  .off-md-5 {
    margin-left: 41.6666666667%;
  }
  .off-md-6 {
    margin-left: 50%;
  }
  .off-md-7 {
    margin-left: 58.3333333333%;
  }
  .off-md-8 {
    margin-left: 66.6666666667%;
  }
  .off-md-9 {
    margin-left: 75%;
  }
  .off-md-10 {
    margin-left: 83.3333333333%;
  }
  .off-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media only screen and (min-width: 1200px) {
  .col-lg-1 {
    -ms-flex-preferred-size: 8.3333333333%;
        flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    -ms-flex-preferred-size: 16.6666666667%;
        flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.6666666667%;
        flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.3333333333%;
        flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    -ms-flex-preferred-size: 91.6666666667%;
        flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  .off-lg-1 {
    margin-left: 8.3333333333%;
  }
  .off-lg-2 {
    margin-left: 16.6666666667%;
  }
  .off-lg-3 {
    margin-left: 25%;
  }
  .off-lg-4 {
    margin-left: 33.3333333333%;
  }
  .off-lg-5 {
    margin-left: 41.6666666667%;
  }
  .off-lg-6 {
    margin-left: 50%;
  }
  .off-lg-7 {
    margin-left: 58.3333333333%;
  }
  .off-lg-8 {
    margin-left: 66.6666666667%;
  }
  .off-lg-9 {
    margin-left: 75%;
  }
  .off-lg-10 {
    margin-left: 83.3333333333%;
  }
  .off-lg-11 {
    margin-left: 91.6666666667%;
  }
}
h1, h2, h3, h4, h5, h6, hgroup,
ul, ol, dd,
p,
pre, table, fieldset, hr {
  margin: 0;
  margin-bottom: 3rem;
}

figure {
  margin-bottom: 0;
}

.largeMargin {
  margin-bottom: 3rem;
}

.superMargin {
  margin-bottom: 6rem;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

#container {
  padding-top: 12.5rem;
}

.inside-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.panel {
  padding: 6rem 0;
}
@media (max-width: 1023px) {
  .panel {
    margin-top: 9rem;
  }
}

.double-padded {
  padding: 12rem 0;
}

.single-padded-bottom {
  padding-bottom: 6rem;
}

.no-padding-bottom {
  padding-bottom: 0;
}

.no-padding-top {
  padding-top: 0;
}

.no-padding {
  padding: 0;
}

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

.ce_image {
  margin-bottom: 1.5rem;
}

.without-inside-container .inside-container {
  width: 100%;
}

.has-primary-color-bg {
  background-color: rgb(0, 0, 0);
}

.has-secondary-color-bg {
  background-color: rgb(1, 1, 1);
}

.red-background {
  background-color: rgb(227, 5, 18);
}

.grey-background {
  background-color: #e6e6e6;
}

.black-background {
  background-color: black;
}

.border-bottom-white {
  border-bottom: 1px solid white;
}

.full-height {
  min-height: 100vh;
}

.has-bg-image {
  background-size: cover;
  background-position: center;
}

.relative {
  position: relative;
}

/* montserrat-300 - latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/montserrat-v14-latin-300.eot"); /* IE9 Compat Modes */
  src: local("Montserrat Light"), local("Montserrat-Light"), url("../fonts/montserrat-v14-latin-300.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-v14-latin-300.woff2") format("woff2"), url("../fonts/montserrat-v14-latin-300.woff") format("woff"), url("../fonts/montserrat-v14-latin-300.ttf") format("truetype"), url("../fonts/montserrat-v14-latin-300.svg#Montserrat") format("svg"); /* Legacy iOS */
}
/* montserrat-300italic - latin */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 300;
  src: url("../fonts/montserrat-v14-latin-300italic.eot"); /* IE9 Compat Modes */
  src: local("Montserrat Light Italic"), local("Montserrat-LightItalic"), url("../fonts/montserrat-v14-latin-300italic.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-v14-latin-300italic.woff2") format("woff2"), url("../fonts/montserrat-v14-latin-300italic.woff") format("woff"), url("../fonts/montserrat-v14-latin-300italic.ttf") format("truetype"), url("../fonts/montserrat-v14-latin-300italic.svg#Montserrat") format("svg"); /* Legacy iOS */
}
/* montserrat-regular - latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/montserrat-v14-latin-regular.eot"); /* IE9 Compat Modes */
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url("../fonts/montserrat-v14-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-v14-latin-regular.woff2") format("woff2"), url("../fonts/montserrat-v14-latin-regular.woff") format("woff"), url("../fonts/montserrat-v14-latin-regular.ttf") format("truetype"), url("../fonts/montserrat-v14-latin-regular.svg#Montserrat") format("svg"); /* Legacy iOS */
}
/* montserrat-italic - latin */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/montserrat-v14-latin-italic.eot"); /* IE9 Compat Modes */
  src: local("Montserrat Italic"), local("Montserrat-Italic"), url("../fonts/montserrat-v14-latin-italic.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-v14-latin-italic.woff2") format("woff2"), url("../fonts/montserrat-v14-latin-italic.woff") format("woff"), url("../fonts/montserrat-v14-latin-italic.ttf") format("truetype"), url("../fonts/montserrat-v14-latin-italic.svg#Montserrat") format("svg"); /* Legacy iOS */
}
/* montserrat-700 - latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/montserrat-v14-latin-700.eot"); /* IE9 Compat Modes */
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url("../fonts/montserrat-v14-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-v14-latin-700.woff2") format("woff2"), url("../fonts/montserrat-v14-latin-700.woff") format("woff"), url("../fonts/montserrat-v14-latin-700.ttf") format("truetype"), url("../fonts/montserrat-v14-latin-700.svg#Montserrat") format("svg"); /* Legacy iOS */
}
/* montserrat-700italic - latin */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/montserrat-v14-latin-700italic.eot"); /* IE9 Compat Modes */
  src: local("Montserrat Bold Italic"), local("Montserrat-BoldItalic"), url("../fonts/montserrat-v14-latin-700italic.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-v14-latin-700italic.woff2") format("woff2"), url("../fonts/montserrat-v14-latin-700italic.woff") format("woff"), url("../fonts/montserrat-v14-latin-700italic.ttf") format("truetype"), url("../fonts/montserrat-v14-latin-700italic.svg#Montserrat") format("svg"); /* Legacy iOS */
}
/* montserrat-800 - latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/montserrat-v14-latin-800.eot"); /* IE9 Compat Modes */
  src: local("Montserrat ExtraBold"), local("Montserrat-ExtraBold"), url("../fonts/montserrat-v14-latin-800.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-v14-latin-800.woff2") format("woff2"), url("../fonts/montserrat-v14-latin-800.woff") format("woff"), url("../fonts/montserrat-v14-latin-800.ttf") format("truetype"), url("../fonts/montserrat-v14-latin-800.svg#Montserrat") format("svg"); /* Legacy iOS */
}
/* montserrat-800italic - latin */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 800;
  src: url("../fonts/montserrat-v14-latin-800italic.eot"); /* IE9 Compat Modes */
  src: local("Montserrat ExtraBold Italic"), local("Montserrat-ExtraBoldItalic"), url("../fonts/montserrat-v14-latin-800italic.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-v14-latin-800italic.woff2") format("woff2"), url("../fonts/montserrat-v14-latin-800italic.woff") format("woff"), url("../fonts/montserrat-v14-latin-800italic.ttf") format("truetype"), url("../fonts/montserrat-v14-latin-800italic.svg#Montserrat") format("svg"); /* Legacy iOS */
}
/* montserrat-900 - latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/montserrat-v14-latin-900.eot"); /* IE9 Compat Modes */
  src: local("Montserrat Black"), local("Montserrat-Black"), url("../fonts/montserrat-v14-latin-900.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-v14-latin-900.woff2") format("woff2"), url("../fonts/montserrat-v14-latin-900.woff") format("woff"), url("../fonts/montserrat-v14-latin-900.ttf") format("truetype"), url("../fonts/montserrat-v14-latin-900.svg#Montserrat") format("svg"); /* Legacy iOS */
}
/* montserrat-900italic - latin */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 900;
  src: url("../fonts/montserrat-v14-latin-900italic.eot"); /* IE9 Compat Modes */
  src: local("Montserrat Black Italic"), local("Montserrat-BlackItalic"), url("../fonts/montserrat-v14-latin-900italic.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-v14-latin-900italic.woff2") format("woff2"), url("../fonts/montserrat-v14-latin-900italic.woff") format("woff"), url("../fonts/montserrat-v14-latin-900italic.ttf") format("truetype"), url("../fonts/montserrat-v14-latin-900italic.svg#Montserrat") format("svg"); /* Legacy iOS */
}
/* Font Awesome */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/fa-solid-900.eot"); /* IE9 Compat Modes */
  src: url("../fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-solid-900.woff2") format("woff2"), url("../fonts/fa-solid-900.woff") format("woff"), url("../fonts/fa-solid-900.ttf") format("truetype"), url("../fonts/fa-solid-900.svg") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/fa-brands-400.eot"); /* IE9 Compat Modes */
  src: url("../fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.woff") format("woff"), url("../fonts/fa-brands-400.ttf") format("truetype"), url("../fonts/fa-brands-400.svg") format("svg"); /* Legacy iOS */
}
html {
  font-size: 62.5%;
}
@media (max-width: 1280px) {
  html {
    font-size: 52%;
  }
}
@media (max-width: 1200px) {
  html {
    font-size: 47%;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 42%;
  }
}
@media (max-width: 992px) {
  html {
    font-size: 37%;
  }
}
@media (max-width: 760px) {
  html {
    font-size: 42%;
  }
}

h1,
.looks-like-h1,
.looks-like-h1 p {
  font-family: "Montserrat";
  color: rgb(0, 0, 0);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.35;
}
@media (max-width: 600px) {
  h1,
  .looks-like-h1,
  .looks-like-h1 p {
    font-size: 3.5rem;
  }
}

h2,
.looks-like-h2,
.looks-like-h2 p {
  font-family: "Montserrat";
  color: rgb(0, 0, 0);
  font-size: 3.6rem;
  font-weight: 800;
  text-transform: uppercase;
}

h3,
.looks-like-h3,
.looks-like-h3 p {
  font-family: "Montserrat";
  color: rgb(0, 0, 0);
  font-size: 2.4rem;
  font-weight: 800;
}

h4,
.looks-like-h4,
.looks-like-h4 p {
  font-family: "Montserrat";
  color: rgb(0, 0, 0);
  font-size: 2rem;
}

p,
a,
li,
td,
input,
label,
option,
textarea,
select {
  font-family: "Montserrat";
  color: rgb(0, 0, 0);
  font-size: 2rem;
  line-height: 1.8;
}
@media (max-width: 1024px) {
  p,
  a,
  li,
  td,
  input,
  label,
  option,
  textarea,
  select {
    font-size: 2.4rem;
  }
}

.larger-text {
  font-size: 2.4rem;
}
@media (max-width: 1024px) {
  .larger-text {
    font-size: 2.6rem;
  }
}
.larger-text p,
.larger-text a,
.larger-text li,
.larger-text td,
.larger-text input,
.larger-text label,
.larger-text option,
.larger-text textarea,
.larger-text select {
  font-size: 2.4rem;
}
@media (max-width: 1024px) {
  .larger-text p,
  .larger-text a,
  .larger-text li,
  .larger-text td,
  .larger-text input,
  .larger-text label,
  .larger-text option,
  .larger-text textarea,
  .larger-text select {
    font-size: 2.6rem;
  }
}

.smaller-text {
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  .smaller-text {
    font-size: 2rem;
  }
}
.smaller-text p,
.smaller-text a,
.smaller-text li,
.smaller-text td,
.smaller-text input,
.smaller-text label,
.smaller-text option,
.smaller-text textarea,
.smaller-text select {
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  .smaller-text p,
  .smaller-text a,
  .smaller-text li,
  .smaller-text td,
  .smaller-text input,
  .smaller-text label,
  .smaller-text option,
  .smaller-text textarea,
  .smaller-text select {
    font-size: 2rem;
  }
}

.emphasized p,
.emphasized a,
.emphasized li,
.emphasized td,
.emphasized input,
.emphasized label,
.emphasized option,
.emphasized textarea,
.emphasized select {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.45;
}
@media (max-width: 1024px) {
  .emphasized p,
  .emphasized a,
  .emphasized li,
  .emphasized td,
  .emphasized input,
  .emphasized label,
  .emphasized option,
  .emphasized textarea,
  .emphasized select {
    font-size: 2.6rem;
  }
}

.extra-bold {
  font-weight: 800;
}

.light {
  font-weight: 300;
}

.is-button {
  text-align: center;
  margin-bottom: 4.5rem;
}
.is-button a {
  font-size: 2.4rem;
  font-weight: normal;
  display: inline-block;
  border: 2px solid red;
  padding: 2rem 2.5rem;
  text-decoration: none;
  min-width: 23rem;
}
.is-button a:hover {
  text-decoration: none;
}
.is-button--primary a {
  background-color: rgb(227, 5, 18);
  color: white;
}
.is-button--primary a:hover {
  background-color: white;
  color: rgb(227, 5, 18);
}
.is-button--secondary a {
  background-color: white;
  color: rgb(227, 5, 18);
}
.is-button--secondary a:hover {
  background-color: rgb(227, 5, 18);
  color: white;
}
.is-button--grey {
  text-align: left;
}
.is-button--grey a {
  background-color: white;
  border-color: white;
  color: #3c3c3c;
  font-weight: bold;
  font-size: 2.4rem;
}
.is-button--grey:hover a {
  background-color: rgb(227, 5, 18);
  border-color: rgb(227, 5, 18);
  color: white;
}
.is-button--project {
  text-align: left;
}
.is-button--project a {
  border-color: white;
  background-color: transparent;
  color: white;
  font-weight: bold;
  font-size: 2.4rem;
}
.is-button--project:hover a {
  background-color: white;
  border-color: white;
  color: rgb(227, 5, 18);
}
.is-button.icon--play a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.is-button.icon--play a::after {
  content: "\f04b";
  font-family: "Font Awesome 5 Free";
  font-size: 1.3rem;
  margin-left: 1rem;
  font-weight: bold;
}

a {
  font-weight: bold;
  text-decoration: underline;
}

ul {
  list-style-type: square;
}
ul li {
  margin-bottom: 0.5rem;
}

.white-text {
  color: white;
}
.white-text h1,
.white-text h2,
.white-text h3,
.white-text h4,
.white-text h5,
.white-text p,
.white-text a,
.white-text li,
.white-text td,
.white-text input,
.white-text label,
.white-text option,
.white-text textarea,
.white-text select,
.white-text span {
  color: white;
}

.inverted-text {
  display: inline-block;
  background-color: black;
  color: white;
  padding: 0.5rem 1rem;
}

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

.highlighted-text {
  background-color: rgb(227, 5, 18);
  padding: 0 1rem;
}

.footer-text-small * {
  font-size: 1.4rem;
}
@media (max-width: 1024px) {
  .footer-text-small * {
    font-size: 1.7rem;
  }
}

/* Then components and sections */
.button {
  display: inline-block;
}
.button a {
  display: inline-block;
  width: auto;
  padding: 1rem 2rem;
  width: auto;
}
.button.primary a {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}
.button.secondary a {
  background-color: rgb(1, 1, 1);
  color: rgb(255, 255, 255);
}
.button.download a::before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2rem;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f019";
  padding-right: 1rem;
}

/* Socials für Contao. Hyperlink Elemente in Container. Klasse: .socials.[netzwerk] */
.social-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-items: center;
}

.social {
  display: inline-block;
  margin-right: 1rem;
}
.social a {
  display: inline-block;
  height: 4rem;
  width: 4rem;
  color: transparent;
  position: relative;
}
.social a::before {
  text-align: center;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2rem;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "";
  padding-right: 0;
  color: rgb(255, 255, 255);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.social.facebook a::before {
  content: "\f09a";
}
.social.youtube a::before {
  content: "\f167";
}
.social.twitter a::before {
  content: "\f099";
}
.social.xing a::before {
  content: "\f168";
}
.social.email a::before {
  content: "\f003";
}

/* Standard Slick Slider CSS */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Standard Theme */
/* Slider */
.slick-loading .slick-list {
  background: #fff url("/files/images/layout/fancybox_loading.gif") center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 1;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 0;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 3rem;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f104";
  padding-right: 1rem;
  color: rgb(227, 5, 18);
}

[dir=rtl] .slick-prev:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 3rem;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f105";
  padding-right: 1rem;
}

.slick-next {
  right: 0;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 3rem;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f105";
  padding-right: 1rem;
  color: rgb(227, 5, 18);
  right: 2rem;
}

[dir=rtl] .slick-next:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 3rem;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f104";
  padding-right: 1rem;
}

/* Dots */
.slick-slider {
  margin-bottom: 55px;
}

.slick-dots {
  position: absolute;
  bottom: -45px;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

/* Modifikationen am Standard */
.slick-slider * {
  outline: 0;
}

.sliderControlls {
  position: relative;
  top: -50%;
}

@media (max-width: 992px) {
  .slick-next {
    right: 0;
  }
  .slick-prev {
    left: 0;
  }
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ce_youtube {
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
  margin-bottom: 3rem;
}
@media (max-width: 749px) {
  .ce_youtube {
    margin-bottom: -1px;
  }
}

.ce_youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
}

@media (max-width: 749px) {
  .yt-col {
    padding: 0;
  }
  .yt-panel {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
body h2 {
  text-transform: none;
}

.logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 365px) {
  .logos {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 801px) {
  /*** Navigation ***/
  .menu-wrapper {
    margin-bottom: -2rem;
  }
  .menu-list li {
    list-style-type: none;
    padding-bottom: 10px;
    font-size: 1.5rem;
  }
  .mod_navigation .invisible {
    display: none;
  }
  strong.active {
    padding-left: 8px;
  }
  .main-menu .level_1 {
    margin-bottom: 0;
  }
  .main-menu .level_1 > li.submenu:after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    font-weight: bold;
  }
  .main-menu .level_2 > li.submenu:after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    font-weight: bold;
  }
  .main-menu ul {
    list-style-type: none;
    text-align: right;
    padding: 20px 0px;
  }
  .main-menu li {
    display: inline-block;
    font-size: 1.5rem;
    margin-right: 0.5rem;
  }
  .main-menu li:last-child {
    margin-right: 0;
  }
  .main-menu li:hover ul.level_2 {
    display: block !important;
  }
  .main-menu ul.level_2 {
    display: none;
    position: fixed;
    background: white;
    padding: 0 20px 0 0;
  }
  .main-menu ul.level_2 li {
    display: list-item !important;
    padding: 5px 0px;
    text-align: left;
  }
  .main-menu .level_2 ul.level_3 {
    display: none;
    position: absolute;
    top: 0;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    background: white;
    padding: 0;
  }
  .main-menu .level_2 ul.level_3 li {
    display: list-item !important;
    padding: 5px 0px;
    text-align: left;
  }
  .main-menu .level_2 ul.level_3 li::after {
    content: none !important;
  }
  .main-menu .level_2 ul.level_3 > li:not(:last-child) {
    border-bottom: 1px solid black;
    border-bottom: 1px solid black;
  }
  .main-menu .level_2 li:hover ul.level_3 {
    display: block !important;
    min-width: 20rem;
  }
  .main-menu a {
    text-decoration: none;
    color: black;
    font-size: 1.5rem;
    font-weight: 500;
    padding-left: 8px;
  }
  .main-menu strong {
    padding-left: 8px;
  }
}
@media (max-width: 800px) {
  .main-menu * {
    color: black;
  }
  .main-menu li {
    list-style: none;
  }
  .main-menu li a {
    text-decoration: none;
  }
}
.angebote {
  text-align: center;
}
@media (max-width: 767px) {
  .angebote .col-xs-12 {
    margin-bottom: 5rem;
  }
}
.angebote__icon {
  width: 15rem;
  height: auto;
  margin: 0 auto;
}
.angebote h3 {
  margin-top: 3rem;
  margin-bottom: 0;
}
.angebote .angebote__content p {
  margin-bottom: 0;
}
.angebote .angebote__content a {
  font-weight: 500;
}

.hidden {
  display: none;
}

.simplefilter {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.simplefilter li {
  margin-right: 10px;
}
.simplefilter li:last-child {
  margin-right: 0;
}

.button--filter {
  font-weight: 500;
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid rgb(227, 5, 18);
  color: rgb(227, 5, 18);
  text-decoration: none;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.button--filter:hover {
  background-color: rgb(227, 5, 18);
  color: white;
}
.button--filter.active {
  background-color: rgb(227, 5, 18);
  color: white;
}

.partner-slider .slick-dots li {
  margin-bottom: 1rem;
}

.edih-colors h1,
.edih-colors h2,
.edih-colors h3,
.edih-colors h4,
.edih-colors h5,
.edih-colors h6 {
  color: #164194;
}

.header--mobile > .logos .header--logo:nth-last-of-type(1) {
  padding-top: 0.7rem;
}
@media (max-width: 365px) {
  .header--mobile > .logos .header--logo img {
    width: auto !important;
    height: 5rem !important;
  }
}
@media (max-width: 365px) {
  .header--mobile .mobile-nav-logo img,
  .header--mobile .header--logo img {
    width: auto !important;
    height: 5rem !important;
  }
}

.teams {
  text-align: center;
  margin-top: 2.5rem;
}
.teams h3 {
  margin-top: 3.5rem;
  margin-bottom: 0.5rem;
}
.teams .team__image img {
  width: 28rem;
  height: 28rem;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 767px) {
  .teams .team__image img {
    width: 25rem;
    height: 25rem;
  }
}

.mod_search {
  position: relative;
  margin-right: 1.5rem;
}
.mod_search input.text {
  display: none;
  width: 40rem;
  height: 3rem;
  margin-right: 3rem;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  z-index: 9999999;
  background-color: #fff;
  position: fixed;
  margin-left: -43rem;
  margin-top: -0.5rem;
}
@media (max-width: 400px) {
  .mod_search input.text {
    width: 25rem;
    margin-left: -28rem;
  }
}
.mod_search i {
  font-size: 2rem;
  padding-top: 0.5rem;
  cursor: pointer;
  padding-left: 0.5rem;
}
.mod_search .submit {
  display: none;
}

.header-right--mobile {
  display: none;
}

@media (max-width: 800px) {
  .header-right--mobile {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    position: relative;
  }
  .header-right--mobile .lang-en {
    margin-right: 1.5rem;
  }
  .header-right--mobile .lang-de {
    margin-right: 1.5rem;
  }
  .header-right--mobile i {
    font-size: 3rem;
  }
}
.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 800px) {
  .header-right {
    position: relative;
  }
  .header-right .lang-en {
    margin-right: 1.5rem;
  }
  .header-right .lang-de {
    margin-right: 1.5rem;
  }
  .header-right i {
    font-size: 3rem;
  }
}

.inside-container.panel .mod_search i,
.inside-container.panel .mod_search input {
  display: none !important;
}

@media (max-width: 800px) {
  .mod_navigation ul {
    list-style: none;
    padding: 0;
  }
  .mod_navigation ul {
    margin-bottom: 0;
  }
  .mod_navigation ul li {
    position: relative;
    margin-bottom: 0;
  }
  .mod_navigation ul a {
    border-bottom: 1px solid #e0e0e0;
  }
  .mod_navigation a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .mod_navigation a:hover {
    background-color: #e0e0e0;
  }
  .mod_navigation .level_2,
  .mod_navigation .level_3 {
    display: none;
    padding-left: 20px;
  }
  .mod_navigation li.submenu.trail {
    padding-left: 5px;
    position: relative;
  }
  .mod_navigation li.submenu.trail .level_3,
  .mod_navigation li.submenu.trail .level_2 {
    display: block;
    padding-left: 20px;
  }
  .mod_navigation li.submenu.trail strong.submenu.trail {
    padding-left: 5px;
  }
  .mod_navigation li.submenu.trail strong.submenu.trail::after {
    position: absolute;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    right: 0;
    top: 0.5rem;
    padding: 0 4rem;
  }
  .mod_navigation i {
    position: absolute;
    right: 0;
    top: 1.2rem;
    padding: 0 4rem;
  }
  .mod_navigation .submenu i.active {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .mod_navigation .active .level_2,
  .mod_navigation .active .level_3 {
    padding-left: 20px;
    display: block;
  }
  .active .active {
    margin-left: 10px;
  }
  li.active {
    background-color: #f7f7f7;
  }
}
#kontakt .ce_form {
  font-weight: bold;
}

.mod_newscategories > div {
  position: relative;
}
.mod_newscategories > div::after {
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-size: 4rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: white;
  font-weight: bold;
}
@media (max-width: 600px) {
  .mod_newscategories > div::after {
    padding-right: 8rem;
  }
}
@media (max-width: 422px) {
  .mod_newscategories > div::after {
    padding-right: 16rem;
  }
}
@media (max-width: 360px) {
  .mod_newscategories > div::after {
    padding-right: 22rem;
  }
}
.mod_newscategories select {
  font-size: 2.4rem;
  font-weight: 800;
  padding-left: 2rem;
  padding-right: 2rem;
  height: 8rem;
  background-color: #e6e6e6;
  color: white;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
}
@media (max-width: 600px) {
  .mod_newscategories select {
    padding-left: 8rem;
  }
}
@media (max-width: 422px) {
  .mod_newscategories select {
    padding-left: 16rem;
  }
}
@media (max-width: 360px) {
  .mod_newscategories select {
    padding-left: 22rem;
  }
}
.mod_newscategories select option {
  font-size: 2.4rem;
  font-weight: 800;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100%;
  height: 8rem;
  background-color: #e6e6e6;
  border: none;
  border-radius: 0;
}

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

.ce_form .checkbox input[type=checkbox]:checked + label::before {
  background-image: url(/files/images/layout/icons/close.svg) !important;
}

#header {
  border-bottom: 1px solid black;
  position: fixed;
  z-index: 100;
  width: 100%;
  background-color: white;
}
#header .header--desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 120px;
  margin-top: 0.5rem;
}
@media (max-width: 800px) {
  #header .header--desktop {
    display: none;
  }
}
#header .header--mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 6rem 0 1rem 0;
}
@media (min-width: 801px) {
  #header .header--mobile {
    display: none;
  }
}
#header .header--logo {
  margin-left: 3rem;
}
#header .header--logo .image_container {
  height: 7rem;
}
#header .header--logo .image_container img {
  height: 100%;
  width: auto;
}
#header .header--navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
#header .header--navigation ul li {
  padding: 0 1.5rem;
  border-right: 1px solid black;
}
#header .header--navigation ul li:first-child {
  padding-left: 0;
}
@media (max-width: 800px) {
  #header .header--navigation ul li:last-child {
    padding-right: 0;
    border-right: none;
  }
}
#header .header--navigation ul li a {
  font-weight: 300;
  text-decoration: none;
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  #header .header--navigation ul li a {
    font-size: 2rem;
  }
}
@media (max-width: 880px) {
  #header .header--navigation ul li a {
    font-size: 1.8rem;
  }
}
@media (max-width: 800px) {
  #header .header--navigation ul li a {
    font-size: 2rem;
  }
}
#header .header--navigation ul li a:hover {
  text-decoration: underline;
}
#header .header--navigation ul li a.active {
  font-weight: bold;
  text-decoration: none !important;
}

.menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media (max-width: 800px) {
  .menu-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.menu-wrapper .menu-red-link {
  margin-left: 1.5rem;
}
.menu-wrapper .menu-red-link a {
  font-size: 1.6rem;
  color: rgb(227, 5, 18);
  font-weight: 300;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .menu-wrapper .menu-red-link a {
    font-size: 2rem;
  }
}
@media (max-width: 880px) {
  .menu-wrapper .menu-red-link a {
    font-size: 1.8rem;
  }
}
@media (max-width: 800px) {
  .menu-wrapper .menu-red-link a {
    font-size: 2rem;
  }
}
.menu-wrapper .menu-red-link a:hover {
  text-decoration: underline;
}

.mobile-nav-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-nav-container.is-open {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  overflow: scroll;
}
.mobile-nav-container .mobile-nav-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 3rem 5%;
  margin: 5rem 0;
}
.mobile-nav-container .mobile-nav-header .image_container {
  height: 7rem;
  margin-left: 3rem;
}
.mobile-nav-container .mobile-nav-header .image_container img {
  height: 100%;
  width: auto;
}
.mobile-nav-container .mobile-main-nav {
  margin-bottom: 6rem !important;
}
.mobile-nav-container .mobile-main-nav,
.mobile-nav-container .mobile-sub-nav {
  padding: 0;
  margin: 0;
  list-style-type: none;
  text-align: center;
}
.mobile-nav-container .mobile-main-nav li a,
.mobile-nav-container .mobile-sub-nav li a {
  color: white;
  font-size: 3.7rem;
  text-transform: uppercase;
  font-weight: 800;
  text-decoration: none;
}
.mobile-nav-container .mobile-main-nav li a.active,
.mobile-nav-container .mobile-sub-nav li a.active {
  font-weight: bold;
  color: #9c1006;
}
.mobile-nav-container .mobile-main-nav li a.small,
.mobile-nav-container .mobile-sub-nav li a.small {
  font-size: 2.5rem;
  font-weight: normal;
  text-transform: none;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.d-none {
  display: none;
}

.navigation-toggle .hamburger:focus {
  outline: 0;
}
.navigation-toggle .hamburger .hamburger-box span,
.navigation-toggle .hamburger .hamburger-box span::after,
.navigation-toggle .hamburger .hamburger-box span::before {
  background-color: rgb(255, 255, 255);
}
.navigation-toggle .hamburger-label {
  display: inline-block;
  margin-left: 5px;
  margin-right: 2rem;
  vertical-align: super;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 1;
}

/**** HAMBURGER *****/
/*!
* Hamburgers
* @description Tasty CSS-animated hamburgers
* @author Jonathan Suh @jonsuh
* @site https://jonsuh.com/hamburgers
* @link https://github.com/jonsuh/hamburgers
* @link https://github.com/jonsuh/hamburgers/blob/master/dist/hamburgers.css/
*/
.hamburger {
  margin-top: -1.25rem;
  padding: 0;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  overflow: visible;
  outline: none;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
* Slider
*/
.hamburger--slider .hamburger-inner {
  top: 2px;
}
.hamburger--slider .hamburger-inner::before {
  top: 10px;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider.is-active {
  padding: 0;
}
.hamburger--slider.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  -webkit-transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
          transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(-90deg);
          transform: translate3d(0, -20px, 0) rotate(-90deg);
}

.footer-upper {
  background-color: #dddddd;
  padding: 2rem 0;
}
.footer-upper .footer-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-upper .footer-logos .ce_hyperlink {
  margin: 0 4rem;
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  text-align: center;
}
@media (max-width: 800px) {
  .footer-upper .footer-logos .ce_hyperlink {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-bottom: 3rem !important;
  }
  .footer-upper .footer-logos .ce_hyperlink:last-child {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 600px) {
  .footer-upper .footer-logos .ce_hyperlink {
    margin: 0 1rem;
  }
}
.footer-upper .footer-logos .ce_hyperlink .image_container {
  height: 5.5rem;
}
@media (max-width: 800px) {
  .footer-upper .footer-logos .ce_hyperlink .image_container {
    height: 8.5rem;
  }
}
.footer-upper .footer-logos .ce_hyperlink .image_container img {
  height: 100%;
  width: auto;
}
@media (max-width: 800px) {
  .footer-upper .footer-logos .ce_hyperlink .image_container img {
    height: 80%;
  }
}
.footer-upper .footer-logos .ce_hyperlink:first-child {
  margin-left: 0;
}
.footer-upper .footer-logos .ce_hyperlink:last-child {
  margin-right: 0;
}
@media (max-width: 800px) {
  .footer-upper .footer-logos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer-lower {
  padding: 3rem 0;
}
.footer-lower .footer-col {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-lower .footer-col p {
  font-size: 1.6rem;
  margin-bottom: auto;
}
.footer-lower .footer-col img {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .footer-lower .footer-col {
    margin-bottom: 3rem;
  }
  .footer-lower .footer-col:last-child {
    margin-bottom: 0;
  }
}
.footer-lower .footer-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer-lower .footer-logos .ce_hyperlink {
  -ms-flex-preferred-size: 24%;
      flex-basis: 24%;
  text-align: center;
}
@media (max-width: 600px) {
  .footer-lower .footer-logos .ce_hyperlink {
    -ms-flex-preferred-size: 49%;
        flex-basis: 49%;
    margin-bottom: 6rem;
  }
}
.footer-lower .footer-logos .ce_hyperlink .image_container {
  height: 5.5rem;
}
@media (max-width: 600px) {
  .footer-lower .footer-logos .ce_hyperlink .image_container {
    height: 6.2rem;
  }
}
.footer-lower .footer-logos .ce_hyperlink .image_container img {
  height: 100%;
  width: auto;
}
.footer-lower .footer-logos .ce_hyperlink:last-child {
  margin-right: 0;
}
.footer-lower .footer-line {
  border-bottom: 2px solid black;
  display: inline-block;
  width: 4.5rem;
  margin-top: 4.5rem;
  margin-bottom: 2rem;
}
.footer-lower .copyright {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.footer-lower .imprint-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 749px) {
  .footer-lower .imprint-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-lower .imprint-row .ce_text {
    margin-bottom: 1rem;
  }
}
.footer-lower .imprint-row p {
  font-size: 1.8rem;
  margin-bottom: 0;
}
.footer-lower .imprint-row ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.footer-lower .imprint-row ul li {
  margin-bottom: 0;
  line-height: 1;
  padding-right: 3rem;
  border-right: 1px solid black;
  padding-left: 3rem;
}
.footer-lower .imprint-row ul li a {
  line-height: 1;
  font-size: 1.8rem;
  font-weight: normal;
  text-decoration: none;
}
.footer-lower .imprint-row ul li a:hover {
  text-decoration: underline;
}
.footer-lower .imprint-row ul li:last-child {
  padding-left: 3rem;
  border-right: none;
}
.footer-lower .footer-lower-text {
  padding-left: 2.5rem;
}
@media (max-width: 767px) {
  .footer-lower .footer-lower-text {
    text-align: center;
  }
}
.footer-lower .col-sm-4 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .footer-lower .col-sm-4 {
    text-align: center;
  }
}
.footer-lower .col-sm-4 img {
  width: 25rem;
  height: auto;
}

.site-header {
  min-height: 60rem;
}
.site-header p {
  font-size: 2.4rem;
}

.info-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.info-icon {
  -ms-flex-preferred-size: 24%;
      flex-basis: 24%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
}
@media (max-width: 649px) {
  .info-icon {
    -ms-flex-preferred-size: 49%;
        flex-basis: 49%;
    margin-bottom: 6rem;
  }
}
.info-icon__container {
  width: 20rem;
  height: 9.5rem;
  margin-bottom: 4.5rem;
  text-align: center;
}
.info-icon__container img {
  width: auto;
  height: 100%;
}
.info-icon__text {
  color: rgb(227, 5, 18);
  font-size: 2.4rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .info-icon__text {
    font-size: 2.7rem;
  }
}
@media (max-width: 749px) {
  .info-icon__text {
    font-size: 1.8rem;
  }
}
.info-icon__dots {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
.info-icon__dots li {
  background-color: rgb(227, 5, 18);
  height: 0.9rem;
  width: 0.9rem;
  margin-right: 1.5rem;
}
.info-icon__dots li:last-child {
  margin-right: 0;
}

.counters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.counter-el {
  -ms-flex-preferred-size: 23%;
      flex-basis: 23%;
  text-align: center;
}
@media (max-width: 649px) {
  .counter-el {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-bottom: 3rem;
  }
  .counter-el:last-child {
    margin-bottom: 0;
  }
}
.counter-el__wrapper {
  margin-bottom: 1.5rem;
}
.counter-el__prefix, .counter-el__suffix,
.counter-el .counter {
  color: white;
  font-size: 7rem;
  font-weight: 800;
}
@media (max-width: 749px) {
  .counter-el__prefix, .counter-el__suffix,
  .counter-el .counter {
    font-size: 5.5rem;
  }
}
@media (max-width: 649px) {
  .counter-el__prefix, .counter-el__suffix,
  .counter-el .counter {
    font-size: 7rem;
  }
}
.counter-el p {
  color: white;
  font-size: 2.4rem;
}
@media (max-width: 649px) {
  .counter-el p {
    font-size: 4rem;
  }
}

.partner-slider__slide {
  padding: 0 5rem;
}
@media (max-width: 749px) {
  .partner-slider__slide {
    padding: 0 2rem;
  }
}
.partner-slider .slick-dots {
  bottom: -65px;
}
.partner-slider .slick-dots li {
  width: 10px;
  height: 10px;
}
.partner-slider .slick-dots li button {
  border: 2px solid rgb(227, 5, 18);
  border-radius: 100%;
  width: 10px;
  height: 10px;
}
.partner-slider .slick-dots li button:hover {
  background-color: rgb(227, 5, 18);
}
.partner-slider .slick-dots li.slick-active button {
  background-color: rgb(227, 5, 18);
}

.applied-ai__logo {
  margin-bottom: 4.5rem;
}
.applied-ai__logo .image_container {
  max-width: 20rem;
  margin: 0 auto;
}

.chapter-headline {
  font-weight: 800;
  font-size: 3.6rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.close-read-more {
  margin-top: 3rem;
  text-decoration: none;
  color: rgb(227, 5, 18);
}

.close-read-more-button {
  -webkit-transform: translateY(-9.5rem);
      -ms-transform: translateY(-9.5rem);
          transform: translateY(-9.5rem);
  height: 0;
  overflow: visible;
}

.collapsible-text {
  display: none;
}

.project__current {
  padding: 0 !important;
  background-size: cover;
  background-position: center;
}
.project__current-inner {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: rgba(200, 20, 20, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 767px) {
  .project__current-inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.project__current-inner .ce_text {
  max-width: 64rem;
}
.project__current-inner .ce_text * {
  color: white;
}
.project__current-inner .ce_text h2 {
  font-size: 7.5rem;
  font-weight: 800;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .project__current-inner .ce_text h2 {
    font-size: 5rem;
  }
}
.project__current-inner .ce_text p {
  font-size: 3.6rem;
}
.project__wrapper {
  display: inline-block;
  margin-top: 25rem;
  margin-right: 25%;
}
@media (max-width: 1024px) {
  .project__wrapper {
    margin-right: 12.5%;
  }
}
@media (max-width: 767px) {
  .project__wrapper {
    margin-right: 0;
    margin-top: 15rem;
    max-width: 75%;
  }
  .project__wrapper .ce_text {
    max-width: 100%;
    margin-bottom: 5rem;
  }
  .project__wrapper .ce_hyperlink {
    text-align: center;
  }
}
.project__all {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: #3c3c3c;
}
@media (max-width: 767px) {
  .project__all {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 3rem;
  }
}
.project__all .ce_text {
  max-width: 40rem;
}
.project__all .ce_text p {
  font-size: 3.6rem;
  color: white;
}
.project__all-inner {
  padding-left: 3rem;
}
@media (max-width: 767px) {
  .project__all-inner {
    padding-left: 0;
  }
}
.project__all-inner .all-projects-mobile {
  text-align: center;
}
.project__all-inner .all-projects-mobile a {
  color: white;
  text-decoration: none;
  font-size: 4rem;
  font-weight: 400;
}
.project__all-inner .all-projects-mobile a:hover {
  text-decoration: underline;
}
.project__all-inner .all-projects-mobile a::after {
  content: "\f04b";
  font-family: "Font Awesome 5 Free";
  font-size: 3rem;
  margin-left: 3rem;
}

.map-container__consent {
  border: 3px solid #e6e6e6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.map-container__outer {
  position: relative;
}
.map-container .leaflet-control-attribution a {
  font-size: 11px;
}
.map-container__map {
  height: 60rem;
}
.map-container__image {
  text-align: center;
  margin-top: 5.5rem;
  margin-bottom: 4.5rem;
}
.map-container__image img {
  width: 18rem;
  height: auto;
}
.map-container__text {
  max-width: 46rem;
  text-align: center;
}
.map-container__text .extra-bold {
  font-size: 2.4rem;
}
.map-container__text a {
  text-decoration: none;
}

.iframe_container__consent {
  border: 3px solid #e6e6e6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.iframe_container__outer {
  position: relative;
}
.iframe_container__image {
  text-align: center;
  margin-top: 5.5rem;
  margin-bottom: 4.5rem;
}
.iframe_container__image img {
  width: 18rem;
  height: auto;
}
.iframe_container__text {
  max-width: 46rem;
  text-align: center;
}
.iframe_container__text .extra-bold {
  font-size: 2.4rem;
}
.iframe_container__text a {
  text-decoration: none;
}

@media (max-width: 1024px) {
  .hide-tech-radar {
    display: none;
  }
}
.mod_eventlist {
  max-height: 48rem;
  overflow-y: auto;
  padding-right: 5rem;
}
.mod_eventlist::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #e6e6e6;
}
.mod_eventlist::-webkit-scrollbar {
  width: 12px;
  background-color: #f5f5f5;
}
.mod_eventlist::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
}

.event {
  border-top: 2px solid black;
  padding: 1.5rem 0;
}
.event:last-child {
  border-bottom: 2px solid black;
}
.event a {
  text-decoration: none;
}
.event a:hover .news-item__date p {
  color: rgb(227, 5, 18);
}
.event a:hover .news-item__title {
  color: rgb(227, 5, 18);
}
.event a:hover .news-item__more {
  background-image: url("/files/images/layout/arrow-red.png");
}

.news-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 649px) {
  .news-item__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.news-item__date {
  -ms-flex-preferred-size: 16rem;
      flex-basis: 16rem;
}
@media (max-width: 649px) {
  .news-item__date {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.news-item__date p {
  margin-bottom: 0;
  font-size: 2.4rem;
  font-weight: 800;
}
.news-item__more {
  -ms-flex-preferred-size: 10rem;
      flex-basis: 10rem;
  margin-left: auto;
}
.news-item__more.has-more {
  background-image: url("/files/images/layout/arrow-grey.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 4rem;
}
.news-item__title {
  margin-bottom: 0.5rem;
}
.news-item__teaser * {
  font-size: 1.8rem;
  font-weight: normal;
  margin-bottom: 0;
}
.news-item__text {
  -ms-flex-preferred-size: calc(100% - 26rem);
      flex-basis: calc(100% - 26rem);
}
@media (max-width: 649px) {
  .news-item__text {
    -ms-flex-preferred-size: calc(100% - 10rem);
        flex-basis: calc(100% - 10rem);
  }
}

.dehub-map .image_container {
  margin-bottom: 2rem;
}
.dehub-map .image_container img {
  max-width: 51rem;
}
@media (max-width: 749px) {
  .dehub-map .image_container img {
    max-width: 80%;
  }
}
@media (max-width: 649px) {
  .dehub-map .image_container img {
    max-width: 100%;
  }
}

.contact-headline {
  color: rgb(227, 5, 18);
  font-size: 5.5rem;
  text-transform: none;
}
@media (max-width: 600px) {
  .contact-headline {
    font-size: 3.5rem;
  }
}

.ce_form {
  /*Outer box of the fake checkbox*/
}
.ce_form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 749px) {
  .ce_form .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.ce_form .form-group .widget {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.ce_form .form-group .widget:first-child {
  margin-right: 1rem;
}
@media (max-width: 749px) {
  .ce_form .form-group .widget:first-child {
    margin-left: 0;
    margin-right: 0;
  }
}
.ce_form .form-group .widget:last-child {
  margin-left: 1rem;
}
@media (max-width: 749px) {
  .ce_form .form-group .widget:last-child {
    margin-left: 0;
    margin-right: 0;
  }
}
.ce_form .widget {
  margin-bottom: 1.5rem;
  position: relative;
}
.ce_form .widget-select::after {
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-size: 4rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: white;
}
.ce_form .widget-select.option-selected::after {
  color: black;
}
.ce_form .widget input {
  font-size: 2.4rem;
  font-weight: 800;
  padding-left: 2rem;
  padding-right: 2rem;
  height: 8rem;
  background-color: #e6e6e6;
  border: none;
  border-radius: 0;
}
.ce_form .widget select {
  position: relative;
  color: white;
  -moz-appearance: window;
  -webkit-appearance: none;
}
.ce_form .widget select.option-selected {
  color: black;
}
.ce_form .widget select option {
  color: black;
}
.ce_form .widget select option:first-child {
  color: white;
}
.ce_form .widget select,
.ce_form .widget select option {
  font-size: 2.4rem;
  font-weight: 800;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100%;
  height: 8rem;
  background-color: #e6e6e6;
  border: none;
  border-radius: 0;
}
.ce_form .widget textarea {
  font-size: 2.4rem;
  font-weight: 800;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background-color: #e6e6e6;
  border: none;
  border-radius: 0;
  min-height: 32rem;
}
.ce_form ::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fdfcfc;
  opacity: 1;
  /* Firefox */
}
.ce_form ::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fdfcfc;
  opacity: 1;
  /* Firefox */
}
.ce_form :-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fdfcfc;
  opacity: 1;
  /* Firefox */
}
.ce_form ::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fdfcfc;
  opacity: 1;
  /* Firefox */
}
.ce_form ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fdfcfc;
  opacity: 1;
  /* Firefox */
}
.ce_form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fdfcfc;
}
.ce_form ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #fdfcfc;
}
.ce_form .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ce_form .checkbox input[type=checkbox] {
  opacity: 0;
}
.ce_form .checkbox label {
  position: relative;
}
.ce_form .checkbox label::before,
.ce_form .checkbox label::after {
  content: "";
  /*Needed for the line-height to take effect*/
  display: inline-block;
}
.ce_form .checkbox label::before {
  height: 5rem;
  width: 5rem;
  border: none;
  margin-right: 1.5rem;
  background-color: #e6e6e6;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 5rem;
  -webkit-transform: translateY(2rem);
      -ms-transform: translateY(2rem);
          transform: translateY(2rem);
}
@media (max-width: 749px) {
  .ce_form .checkbox label::before {
    -webkit-transform: translateY(0) translateX(-1.5rem);
        -ms-transform: translateY(0) translateX(-1.5rem);
            transform: translateY(0) translateX(-1.5rem);
    display: block;
    margin: 0 auto 1.5rem auto;
  }
}
.ce_form .checkbox input[type=checkbox]:checked + label::before {
  background-image: url("/files/images/layout/close.svg");
}
.ce_form .contact-submit {
  margin-top: 2rem;
  text-align: center;
}
.ce_form .contact-submit button {
  font-size: 2.4rem;
  line-height: 1.98;
  font-weight: bold;
  padding: 2rem 2.5rem;
  border-radius: 0;
  min-width: 23rem;
  border: none;
  background-image: none;
  color: white;
  background-color: rgb(227, 5, 18);
}
.ce_form .contact-submit button:hover {
  color: rgb(227, 5, 18);
  background-color: white;
  border: 1px solid rgb(227, 5, 18);
}
.ce_form .contact-submit button.disabled {
  color: white;
  background-color: #e6e6e6;
}
.ce_form .contact-submit button.disabled:hover {
  color: white;
  background-color: #e6e6e6;
  border: none;
}

@media (max-width: 649px) {
  .project-listing {
    padding: 0;
  }
}
.mod_newslist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.layout_project {
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
  margin-bottom: 2.5%;
  margin-right: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.layout_project:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 649px) {
  .layout_project {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-bottom: 4.5rem;
    margin-right: 0;
  }
}
.layout_project__company {
  background-color: rgb(227, 5, 18);
  min-height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
}
.layout_project__company p {
  margin-bottom: 0;
  font-weight: bold;
  color: white;
}
.layout_project__image {
  height: 25rem;
}
@media (max-width: 649px) {
  .layout_project__image {
    height: 35rem;
  }
}
.layout_project__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.layout_project__image--full {
  height: auto;
  margin-top: -1px;
}
.layout_project__text-content {
  background-color: #e6e6e6;
  padding: 2rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 649px) {
  .layout_project__text-content {
    background-color: white;
  }
}
.layout_project__category {
  font-size: 1.6rem;
  font-weight: 400;
  color: rgb(227, 5, 18);
  margin-bottom: 0.5rem;
}
@media (max-width: 1024px) {
  .layout_project__category {
    font-size: 2rem;
  }
}
.layout_project__category--full {
  margin-top: 2rem;
}
.layout_project__date {
  font-size: 1.6rem;
  font-weight: 400;
  color: #c4c4c4;
  margin-bottom: 0.5rem;
}
@media (max-width: 1024px) {
  .layout_project__date {
    font-size: 2rem;
  }
}
.layout_project__title {
  font-size: 2.4rem;
  text-transform: none;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.layout_project__title a {
  text-decoration: none;
}
.layout_project__title a:hover {
  text-decoration: underline;
}
.layout_project__title-full {
  font-size: 5.5rem;
  text-transform: none;
  font-weight: 800;
}
@media (max-width: 649px) {
  .layout_project__title-full {
    font-size: 4rem;
  }
}
.layout_project__content p,
.layout_project__content a,
.layout_project__content span,
.layout_project__content li {
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  .layout_project__content p,
  .layout_project__content a,
  .layout_project__content span,
  .layout_project__content li {
    font-size: 2rem;
  }
}
.layout_project .border-top {
  padding-top: 2rem;
  border-top: 3px solid black;
}

.mod_newscategories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mod_newscategories .ce_form {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.hide-marker {
  display: none;
}

.filtered-marker {
  display: none;
}

.marker-control-overlay {
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
  background-color: #fff;
  position: absolute;
  top: 10px;
  left: 50px;
  z-index: 2;
  padding: 0 10px;
}
@media (max-width: 700px) {
  .marker-control-overlay {
    top: 103%;
    left: 0;
  }
}
.marker-control-overlay form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 700px) {
  .marker-control-overlay form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 1rem;
  }
}
.marker-control-overlay .control-element {
  margin-right: 15px;
}
.marker-control-overlay .control-element--select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.marker-control-overlay .control-element--select.hidden {
  display: none;
}

@media (max-width: 700px) {
  .map-padding {
    padding-bottom: 16rem;
  }
}
iframe#radar {
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
  height: 100rem;
}

.negative-margin-bottom {
  margin-bottom: -7.5rem;
}

#marker-selector-form label,
#marker-selector-form select,
#marker-selector-form option {
  font-size: 1.6rem;
}
#marker-selector-form .control-element--select {
  margin-right: 0;
}

.event-logo {
  height: 6rem;
  width: 6rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left top;
     object-position: left top;
  margin-top: 0.5rem;
}
@media (max-width: 649px) {
  .event-logo {
    margin-left: 3rem;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.pagination ul li {
  margin-right: 1.5rem;
}
.pagination ul li:last-child {
  margin-right: 0;
}
.pagination ul li a {
  text-decoration: none;
}
.pagination ul li a:hover {
  text-decoration: underline;
}

.consent-screen__language {
  border: 1px solid rgb(227, 5, 18);
  color: rgb(227, 5, 18);
}
.consent-screen__language option {
  color: rgb(227, 5, 18);
}

.mod_changelanguage {
  margin-left: 20px;
}
.mod_changelanguage ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

li.lang-de a {
  text-decoration: none;
}
li.lang-de a span {
  font-size: 1.5rem;
  text-transform: lowercase;
  font-weight: 500;
}
@media (max-width: 800px) {
  li.lang-de a span {
    font-size: 2.5rem;
  }
}
li.lang-de a:before {
  height: 30px;
  width: 31px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}

li.lang-en a {
  text-decoration: none;
}
li.lang-en a span {
  font-size: 1.5rem;
  text-transform: lowercase;
  font-weight: 500;
}
@media (max-width: 800px) {
  li.lang-en a span {
    font-size: 2.5rem;
  }
}
li.lang-en a:before {
  height: 30px;
  width: 31px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}

.workshop-offerings {
  margin-top: 3rem;
}
.workshop-offerings__offering {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .workshop-offerings__offering {
    margin-bottom: 9rem;
  }
}
.workshop-offerings__offering h3 {
  text-align: center;
  margin-bottom: 3rem;
}
.workshop-offerings__offering .content-toggle {
  position: absolute;
  top: 22rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #e6e6e6;
  border-radius: 100%;
  width: 4rem;
  height: 4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*
        @media (min-width: 768px) {
          display: none;
        }
  */
}
.workshop-offerings__offering .content-toggle.open::after {
  content: "\f068";
}
.workshop-offerings__offering .content-toggle::after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-size: 2.5rem;
  font-weight: bold;
}
.workshop-offerings__offering .content-toggle:hover {
  cursor: pointer;
}
.workshop-offerings__icon {
  width: 15rem;
  height: 15rem;
  margin: 0 auto 3rem auto;
}
.workshop-offerings__icon img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
  width: 100%;
  height: 100%;
}
.workshop-offerings__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border: 2px solid black;
  border-radius: 5px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.workshop-offerings__content.open {
  max-height: 80rem;
}
.workshop-offerings__content__inner {
  padding: 2rem 3rem;
  height: 100%;
}

.social-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.linkedin {
  margin-right: 3rem;
  text-decoration: none;
}
.linkedin::after {
  content: "\f08c";
  font-family: "Font Awesome 5 Brands";
  font-size: 2.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.linkedin:hover::after {
  color: #2867b2;
}

.team-container .col-xs-12 {
  margin-bottom: 5rem;
}
.team-container h1,
.team-container h2,
.team-container h3,
.team-container h4,
.team-container h5,
.team-container h6 {
  text-align: center;
}

.workshop-items {
  margin-top: 3rem;
}
.workshop-items__item {
  border-top: 2px solid black;
  padding: 1.5rem 0;
}
.workshop-items__item:last-child {
  border-bottom: 2px solid black;
}
.workshop-items__item__header {
  width: 80%;
  margin: 3rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.workshop-items__item__header h3 {
  margin-bottom: 0;
}
.workshop-items__item__header:hover {
  cursor: pointer;
}
.workshop-items__item__header.open::after {
  content: "\f068";
}
.workshop-items__item__header::after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-size: 2.5rem;
}
.workshop-items__item__content {
  width: 80%;
  margin: 0rem auto;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.workshop-items__item__content__teaser * {
  font-size: 1.8rem;
  font-weight: normal;
}

.section--showroom {
  border-top: 6rem solid rgb(227, 5, 18);
}

.section--showroom-bottom {
  background-color: rgb(227, 5, 18);
  padding: 3rem 0;
}
.section--showroom-bottom .is-button {
  margin-bottom: 0;
}

.image-slider {
  margin: 0 -2rem;
}
.image-slider__slide {
  margin: 0 2rem;
}
.image-slider__slide img {
  margin-bottom: 0.5rem;
}
.image-slider .slick-dots {
  position: relative;
  bottom: 0;
}
.image-slider .slick-dots button {
  border: 2px solid rgb(227, 5, 18);
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.image-slider .slick-dots button:hover {
  background-color: rgb(227, 5, 18);
}
.image-slider .slick-dots .slick-active button {
  background-color: rgb(227, 5, 18);
}

/* Last go the browser specifics */
/*# sourceMappingURL=main.css.map */