@charset "UTF-8";
.contao-cookiebar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  padding: 15px;
  max-height: 100vh;
  box-sizing: border-box;
  pointer-events: none;
  overflow: hidden; }
  .contao-cookiebar * {
    box-sizing: border-box; }
  .contao-cookiebar:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  .contao-cookiebar .cc-inner {
    display: inline-block;
    overflow-y: auto;
    max-height: 100%;
    max-width: 100%;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    font-size: 1rem;
    text-align: left; }
  .contao-cookiebar.cc-top .cc-inner {
    vertical-align: top; }
  .contao-cookiebar.cc-top.cc-active .cc-inner {
    animation: cookiebar-top-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-top.cc-saved .cc-inner {
    animation: cookiebar-top-out 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-bottom .cc-inner {
    vertical-align: bottom; }
  .contao-cookiebar.cc-bottom.cc-active .cc-inner {
    animation: cookiebar-bottom-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-bottom.cc-saved .cc-inner {
    animation: cookiebar-bottom-out 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-middle .cc-inner {
    vertical-align: middle; }
  .contao-cookiebar.cc-middle.cc-active .cc-inner {
    animation: cookiebar-middle-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-middle.cc-saved .cc-inner {
    animation: cookiebar-middle-out 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-left {
    text-align: left; }
  .contao-cookiebar.cc-right {
    text-align: right; }
  .contao-cookiebar .cc-head h1:first-child, .contao-cookiebar .cc-head h2:first-child, .contao-cookiebar .cc-head h3:first-child, .contao-cookiebar .cc-head h4:first-child, .contao-cookiebar .cc-head h5:first-child, .contao-cookiebar .cc-head h6:first-child {
    margin-top: 0; }
  .contao-cookiebar .cc-head p {
    margin-bottom: 15px; }
  .contao-cookiebar .cc-btn {
    display: inline-block;
    cursor: pointer;
    width: 100%;
    padding: 8px 14px;
    margin-bottom: 8px;
    font-size: 15px;
    outline: 0 none;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    color: #444;
    background: #f5f5f5; }
    .contao-cookiebar .cc-btn:hover {
      background: #ececec; }
    .contao-cookiebar .cc-btn:last-child {
      margin-bottom: 0; }
  .contao-cookiebar .grayscale .cc-btn {
    background: #f1efef; }
    .contao-cookiebar .grayscale .cc-btn:hover {
      background: #ececec; }
    .contao-cookiebar .grayscale .cc-btn.success {
      background: #fbfbfb; }
      .contao-cookiebar .grayscale .cc-btn.success:hover {
        background: #f7f7f7; }
  .contao-cookiebar .highlight .cc-btn.success {
    background: #4e9e3e;
    border-color: #3e7830;
    color: #fff; }
    .contao-cookiebar .highlight .cc-btn.success:hover {
      background: #4c933f; }
  .contao-cookiebar label {
    position: relative;
    display: block;
    padding: 8px 13px 8px 0;
    line-height: 1.2rem; }
    .contao-cookiebar label.group {
      font-weight: 600; }
  .contao-cookiebar input {
    position: absolute;
    width: 1px;
    height: 1px;
    outline: 0 none;
    opacity: 0; }
    .contao-cookiebar input + label {
      padding: 8px 13px 8px 50px;
      cursor: pointer; }
      .contao-cookiebar input + label:before {
        content: '';
        position: absolute;
        top: 6px;
        left: 0;
        width: 35px;
        height: 18px;
        margin: 0;
        box-sizing: content-box;
        border-radius: 10px;
        background: #fff;
        border: 2px solid #9c9b99;
        transition: border-color .2s; }
      .contao-cookiebar input + label:after {
        display: block;
        content: '';
        position: absolute;
        top: 10px;
        left: 4px;
        width: 14px;
        height: 14px;
        border-radius: 10px;
        background: #9c9b99;
        transition: background .2s, margin-left .2s, padding .2s; }
      .contao-cookiebar input + label:active:after {
        padding-left: 5px; }
    .contao-cookiebar input.cc-group-half + label:after {
      background: linear-gradient(to right, #9c9b99 0%, #9c9b99 50%, #399d32 50%, #399d32 100%); }
    .contao-cookiebar input:checked + label:after {
      background: #399d32;
      margin-left: 17px; }
    .contao-cookiebar input:checked + label:active:after {
      margin-left: 12px; }
    .contao-cookiebar input:checked + label:before {
      background: #dcf3db;
      border-color: #399d32; }
    .contao-cookiebar input:disabled + label {
      pointer-events: none; }
      .contao-cookiebar input:disabled + label:after {
        background: #c8c7c5; }
      .contao-cookiebar input:disabled + label:before {
        background: #f4f4f4;
        border-color: #c8c7c5; }
  .contao-cookiebar.cc-active .cc-inner {
    opacity: 1;
    pointer-events: auto;
    visibility: visible; }
  .contao-cookiebar.cc-active.cc-blocked {
    pointer-events: auto;
    animation: cookiebar-overlay-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-saved.cc-inner {
    opacity: 0;
    pointer-events: none;
    visibility: hidden; }
  .contao-cookiebar.cc-saved.cc-blocked {
    pointer-events: none;
    animation: cookiebar-overlay-out 0.5s ease-in-out forwards; }

@media (min-width: 768px) {
  .contao-cookiebar .cc-btn {
    width: auto;
    margin-bottom: 0; }
  .contao-cookiebar .cc-inner {
    max-width: 750px; } }

@keyframes cookiebar-overlay-in {
  0% {
    background: rgba(0, 0, 0, 0); }
  100% {
    background: rgba(0, 0, 0, 0.75); } }

@keyframes cookiebar-overlay-out {
  0% {
    background: rgba(0, 0, 0, 0.75); }
  100% {
    background: rgba(0, 0, 0, 0);
    visibility: hidden; } }

@keyframes cookiebar-top-in {
  0% {
    opacity: 0;
    transform: translateY(-100%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes cookiebar-top-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%); } }

@keyframes cookiebar-middle-in {
  0% {
    opacity: 0;
    transform: scale(0); }
  100% {
    opacity: 1;
    transform: scale(1); } }

@keyframes cookiebar-middle-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: scale(1); }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: scale(0); } }

@keyframes cookiebar-bottom-in {
  0% {
    opacity: 0;
    transform: translateY(100%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes cookiebar-bottom-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%); } }

.contao-cookiebar {
  color: #444444; }
  .contao-cookiebar p {
    color: #868686;
    line-height: 1.4; }
  .contao-cookiebar .cc-inner {
    padding: 25px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    background: #fff; }
  .contao-cookiebar .cc-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    position: relative;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    margin-bottom: 10px; }
    .contao-cookiebar .cc-group > label {
      flex-grow: 1;
      margin: 5px 0 5px 10px; }
    .contao-cookiebar .cc-group .cc-detail-btn {
      border: 0 none;
      outline: 0 none;
      background: transparent;
      font-size: 13px;
      letter-spacing: 0;
      text-transform: initial;
      cursor: pointer;
      color: #a2a2a2;
      padding: 8px 10px;
      line-height: 1.2rem; }
      .contao-cookiebar .cc-group .cc-detail-btn span:nth-child(2) {
        display: none; }
      .contao-cookiebar .cc-group .cc-detail-btn.cc-active span:nth-child(1) {
        display: none; }
      .contao-cookiebar .cc-group .cc-detail-btn.cc-active span:nth-child(2) {
        display: inline; }
      .contao-cookiebar .cc-group .cc-detail-btn:hover {
        color: #717171; }
    .contao-cookiebar .cc-group .cc-detail-btn-details {
      display: inline-block;
      border: 0 none;
      outline: 0 none;
      background: transparent;
      font-size: 13px;
      letter-spacing: 0;
      text-transform: initial;
      cursor: pointer;
      color: #a2a2a2;
      text-decoration: underline;
      padding: 0;
      margin: 0 0 10px; }
      .contao-cookiebar .cc-group .cc-detail-btn-details span:nth-child(2) {
        display: none; }
      .contao-cookiebar .cc-group .cc-detail-btn-details.cc-active span:nth-child(1) {
        display: none; }
      .contao-cookiebar .cc-group .cc-detail-btn-details.cc-active span:nth-child(2) {
        display: inline; }
      .contao-cookiebar .cc-group .cc-detail-btn-details:hover {
        color: #717171; }
  .contao-cookiebar .cc-cookies {
    display: none;
    width: 100%;
    background: #fbfbfb;
    border-radius: 0 0 5px 5px; }
    .contao-cookiebar .cc-cookies > p {
      font-size: 0.875rem; }
    .contao-cookiebar .cc-cookies > p, .contao-cookiebar .cc-cookies > .cc-cookie {
      margin: 0;
      padding: 15px;
      border-top: 1px solid #e6e6e6; }
    .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info {
      font-size: 0.875rem;
      background: #fff;
      padding: 10px;
      border-radius: 5px;
      border: 1px solid #efefef; }
      .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info > div > span {
        font-weight: 600; }
      .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info > div + div {
        margin-top: 5px;
        word-wrap: break-word; }
      .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info + button.cc-detail-btn-details {
        margin-top: 15px; }
    .contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-desc > p {
      margin-bottom: 0; }
    .contao-cookiebar .cc-cookies .cc-cookie label.cookie + p, .contao-cookiebar .cc-cookies .cc-cookie label.cookie + .cc-cookie-info, .contao-cookiebar .cc-cookies .cc-cookie label.cookie + button.cc-detail-btn-details {
      margin-top: 10px; }
    .contao-cookiebar .cc-cookies .cc-cookie p {
      margin: 0 0 15px;
      font-size: 0.875rem; }
  .contao-cookiebar .cc-footer, .contao-cookiebar .cc-info {
    text-align: center; }
  .contao-cookiebar .cc-info {
    margin-top: 15px; }
    .contao-cookiebar .cc-info > p {
      font-size: 0.875rem; }
    .contao-cookiebar .cc-info > a {
      display: inline-block;
      font-size: 0.813rem;
      color: #a2a2a2;
      text-decoration: none; }
      .contao-cookiebar .cc-info > a:hover {
        color: #717171; }
      .contao-cookiebar .cc-info > a + a:before {
        display: inline-block;
        content: '·';
        margin-right: 5px; }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li{float:left}.ce_gallery>ul li.col_first{clear:left}.float_left{float:left}.float_right{float:right}.block{overflow:hidden}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
/*Basics*/

:root {
    --button-color: #F66035;
    --button-hover-color: #F86F4C;
    --text-on-light: #F66035;
    --text-on-dark: #F66035;
    --text-on-button: #FFF;
    --header-color: #313131;
    --header-border-color: #222222;
    --header-text-color: #ffffff;
}



*{
    border: none;
    outline: none;
    box-sizing: border-box;
}

html{
font-size:100.1%;
overflow-x:hidden;
-webkit-overflow-scrolling: touch;
 -webkit-text-size-adjust: 100%;
}
 
body, html {
height:100%;
min-height:100%;
}

body{
font-family: interstate, sans-serif;
color:#222;
font-size: 18px;
line-height: 1.8rem;
font-weight:300;
display: flex;
min-height: 100vh;
flex-direction: column;
}



  #wrapper {
    flex: 1 0 auto;
  }

/*Basics*/

/*Ende sticky footer*/

/*Form*/
input,textarea,select{
/*Safari*/
-webkit-appearance: none;
border-radius:0;
-webkit-border-radius:0;
}

.widget{
    margin-bottom: 2rem;
    display: table;
    width: 100%;
    box-sizing: border-box;
      color:gray;
}


.widget.widget-checkbox{
    color: inherit;
}



.widget.w50,.widget-select {
    float: left;
    width: calc((100% - 2rem) / 2);
    margin-right: 2rem;
    margin-bottom: 2rem;
}

.widget.w50.clr {
    margin-right: 0;
}

.widget.w50.noflaot {
    float:none;
}

.widget.widget-checkbox, .widget.widget-radio {
    display: block;
    margin-bottom: 2rem;
    padding-left: 32px;
}

.widget.widget-checkbox label span, .widget.widget-radio label span{
    display: inherit;
}

.widget.widget-text input {
 
    padding: 10px 15px;
    width: 100%;
    background: #f3f4f6;
    border: 0;
    box-sizing: border-box;
}

.widget.widget-textarea textarea {
    padding: 15px;
    width: 100%;
    background: #f3f4f6;
    border: 0;
    box-sizing: border-box;
}

.submit{
    background: transparent;
    padding: 0 4rem;
    line-height: 3rem;
    float: right;
    display: table;
    cursor: pointer;
    color: white;
}



body .icheckbox_minimal {
    margin-left: -32px;
    margin-right: 10px;
}


body .dk-select, body .dk-select-multi{
    width: 100%;
    box-sizing: border-box;
}


body .dk-select .dk-selected{

    padding:10px 15px;
}

body .dk-select{
    height: auto;
}

body select[data-dkcacheid] {
    display: block;
    height: 100%;
    width: 200px;
    position: absolute;
    top: 0;
    opacity: 0;
    z-index: -99999;
}

.widget-select {
    position: relative;
}



/*Ende Form*/

/*set images to maxwidth 100%*/
figure{
line-height:0;
    margin: 0;
}

figure > img, .image_container > img{
max-width:100%;
height:auto;
}

a{
color:inherit;
}
 
 
a:focus{
}
/*Ende Basics*/



 a {
transition:all 0.2s ease;
-webkit-transition:all 0.2s ease;
-moz-transition:all 0.2s ease;
-o-transition:all 0.2s ease;
-ms-transition:all 0.2s ease; 
text-decoration: none;
color:inherit;
 }


.table{
display:table;
width:100%;
}

.table-wrapper {
  display: table;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  height: 100%;
  table-layout:fixed;
}

.row{
display:table-row;
position:relative;
}

.row > *{
display:table-cell;
}

.vtop{
    vertical-align: top
}

.vmiddle{
    vertical-align: middle
}

.vbottom{
    vertical-align: bottom
}


.headlinecontainer{
margin-bottom:2rem;
}

.headlinecontainer > *{
margin:0;

}


h1, h2, h3, h4, h5, h6 {
    font-family: "KlavikaWebBasicLight",arial,sans-serif;
    font-weight: 100;
}
 
h1, .h1 {
  font-size:1.7em;
  line-height:1.2em;
  letter-spacing:0.03em;
  margin-bottom:0.5em;
}

h2 {
    font-size: 1.4rem;
    line-height: 1.6;
}
h3, .h3 {
  font-size:1.5em
}
h4 {
font-size:1.4em;
    margin-bottom: 0;
}

h5, .h5{
font-size:16px;
font-weight:600;
}
h6{}

ul li{

}


li{
list-style-type:none;
}

 
p{
margin-bottom:20px;
    margin-top:0;
}

p:last-of-type{
margin-bottom:0;
}
 
ul,ol{
margin:0;
    padding:0;
}
 

span{
    display: block;
}

#main {

}


/*Teaser*/
.ce_pageteaser span, .ce_pageteaser a, .ce_page_teasers_element span, .ce_page_teasers_element a{
    display: block;
}
.teasergrid > div {
    margin: -10px -10px -20px;
    display: table;
    min-width: 100%;
}

.ce_gallery ul > li a{
    display: block;
}

.teasergrid > div > *,.ce_gallery ul > li{
    float: left;
    margin:0 10px 20px;
}

.ce_gallery ul > li img{
    max-width: 100%;
    height: auto;
}

.teasergrid > .itemsperRow_1 > *, .ce_gallery ul.cols_1 > li{
    width:calc(100% / 1 )
}

.teasergrid > .itemsperRow_2 > *,.ce_gallery ul.cols_2 > li{
 width:calc( (100% - (4 * 10px)) / 2 )
}

.teasergrid > .itemsperRow_3 > *, .ce_gallery ul.cols_3 > li{
    width:calc( (100% - (6 * 10px)) / 3 )
}

.teasergrid > .itemsperRow_4 > *, .ce_gallery ul.cols_4 > li{
    width:calc( (100% - (8 * 10px)) / 4 )
}

.teasergrid > .itemsperRow_5 > *, .ce_gallery ul.cols_5 > li{
     width:calc( (100% - (10 * 10px)) / 5 )
}


.teasergrid > .itemsperRow_6 > *, .ce_gallery ul.cols_6 > li{
    width:calc(100% / 6 )
}



#herosection{
    width: 100%;
	position:relative;
}

#herosection .mod_pageImage > .inside.mod_pageImage > .inside,#herosection .mod_pageImage > .inside .bgImage{
    line-height:0;
}

#herosection .mod_pageImage > .inside .caption{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 6;
}


#herosection .inside,#herosection .inside .ce_herosection,#herosection .inside .ce_herosection .flexslider,#herosection .inside .ce_herosection .flexslider .slides, #herosection .inside .ce_herosection .flexslider .slides li,#herosection .inside .ce_herosection .flexslider .slides li .bgImage, #herosection .inside .ce_herosection .mod_pageImage,#herosection .inside .ce_herosection .mod_pageImage .inside, #herosection .inside .ce_herosection .mod_pageImage .inside .bgImage{
    height: 100%;
}

#herosection .caption *, #herosection .bgImage *,#herosection .flex-control-nav{
    height: auto;
}


/*if googlemap Iframe*/
#herosection iframe {

    border: 0;
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 99999;
}


.headersimple,.headermega,.headertop > .inside,.headerbottom > .inside, .footertop > .inside,.footerbottom > .inside,#main .mod_article > .block,footer > .inside{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
        position: relative;
}

footer{
    background: black;
    color: white;
}


#main .mod_article > .block{
    padding: 6rem 2rem;
}


 #main .mod_article.fullwidth > .block, #main .mod_article > .block.fullwidth {
    max-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*parallax*/
.fullwidth.mod_article > .block.ce_parallaxImage{
    padding: 0;
}

.parallax-container {
    position: relative;
    overflow: hidden;
    height: 650px;
}

.parallax-container .parallax {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}


.parallax-container .parallax img {
    opacity: 0;
    position: absolute;
    left: 50%;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}



/*introtext*/
#main .mod_article > .ce_introtext{
    max-width: 980px;
}

/*align*/

.flex-viewport{
    height: 100%;
}

body .flexslider {
    margin: 0;
    background: transparent;
    border: none;
    position: relative;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
 
}

body .flex-control-nav {

    bottom: 0;

    z-index: 999;
}





.avatar.rounded {
    border-radius: 50%;
    overflow: hidden;
    height: 20vw;
    width: 20vw;
    max-width: 250px;
    max-height: 250px;
  margin: 0 auto; 
}

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

.textholder.align_above{
    margin-bottom: 6rem;
}

/*csscolumn*/

.columnized{
      column-fill: balance;
      -webkit-column-gap: 2em;
     -moz-column-gap: 2em;
          column-gap: 2em;
    orphans: 3;
    widows: 3;
}


.columnized.colcount_2{
 -webkit-columns: 2 200px;
     -moz-columns: 2 200px;
          columns: 2 200px;
}

.columnized.colcount_3{
-webkit-columns: 3 200px;
     -moz-columns: 3 200px;
          columns: 3 200px;
}


.columnized.colcount_4{
 -webkit-columns: 4 200px;
     -moz-columns: 4 200px;
          columns: 4 200px;
}


.columnized h3, .columnized h2, .columnized h1, .columnized h4, .columnized h5, .columnized h6,.columnized .headlinecontainer { 
  -webkit-column-span: all; 
          column-span: all; 
}


.columnized p {
  break-after: column;
    -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}

/*Headerefx*/
header.clone {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    transition: 0.2s transform cubic-bezier(.3,.73,.3,.74);
    width: 100%;
    z-index: 999;
}

body.effectHeader.showOnUp.up header.clone {
     transform: translateY(0);
}

body.effectHeader.showOnDown.down header.clone,body.effectHeader.showOnDown.up header.clone {
      transform: translateY(0);
}


.vAlign_middle .row > *{
    vertical-align: middle;
}

.vAlign_top .row > *{
    vertical-align: top;
}


.vAlign_bottom .row > *{
    vertical-align: bottom;
}

.ce_kachelelement .row > *{
    width: 50%;
}

.card{
    position: relative;
margin: .5rem 0 1rem -37px;
background-color: #fff;
-webkit-transition: -webkit-box-shadow .25s;
transition: -webkit-box-shadow .25s;
transition: box-shadow .25s;
transition: box-shadow .25s, -webkit-box-shadow .25s;
border-radius: 2px;
    
    box-shadow: 0 10px 30px 0 rgba(2,15,73,0.25);
}

.bildmitschatten .bgImage {
	box-shadow: 0 10px 30px 0 rgba(2,15,73,0.25);
}

.card .holder{
    display: table;
    width: 100%;
    height: 100%;
}

.card .holder > .row{}


.card .holder > .row > *{}

.card .holder .caption {
  padding: 2rem;
  box-sizing: border-box;
    height: 100%;
}


.ce_kachelelement .notfloat_right{
    padding-left:calc(((100% - 1280px) / 2)); 
}

.ce_kachelelement .notfloat_right > .inside{
    padding: 4rem 4rem 4rem 2rem;
}

.ce_kachelelement .notfloat_left{
    padding-right:calc(((100% - 1280px) / 2)); 
  
}

.ce_kachelelement .notfloat_left > .inside{
     padding: 4rem 2rem 4rem 4rem;
}

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


/*scrolltop*/
a#return-to-top {
  position: fixed;
  z-index: 10;
  bottom: 7rem;
  right: 2rem;
  background: rgba(0,0,0,0.8);
  color: white;
  width: 50px;
  height: 50px;
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a#return-to-top:hover {
opacity:0.8;
}



a#return-to-top .icon-chevron-up{
display: table;
height: 100%;
width: 100%;
}


a#return-to-top .icon-chevron-up > i{
display: table-cell;
vertical-align: middle;
text-align: center;
}

#return-to-top img {
   width: 59%;
	transform: rotate(-90deg);
	margin: 6px 0 0 12px;
}

.bgImage > img{
    max-width: 100%;
    height: auto;
}

.ce_gridList .slides li > img{
    opacity: 0;
    width: auto;
    max-width: 100%;
}

.ce_gridList .flexslider .slides > li:first-of-type{
    display: block;
}

.video_holder {
  position: relative;
background: black;
  overflow: hidden;
}

.ce_gridList video{

  width: 100%;
  height: auto;
}

/*Tciker*/
.ce_ticker{
    padding: 1rem 2rem 0.5rem;
    box-sizing: border-box;
}

#ticker {
    width: 100%;
    list-style: none;
    height: 1.85em;
    overflow: hidden;
    margin: 0;
}

#ticker > li {
    width: 100%;
    text-align: center;
    font-weight: bold;
}



/*Searchmodal*/
.openBtn {
    padding: 0;
    line-height: 0;
    display: inline-block;
    vertical-align: middle;
    background: transparent;
    margin-left: 2rem;
}

.openBtn img{
    max-width: 100%;
    height: auto;
}

.openBtn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.openBtn:hover {
 opacity: 0.8;
}

.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
}


.overlay-content {
  position: relative;
  top: 46%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}

.overlay .closebtn:hover {
  color: #ccc;
}


[type="search"] {
width: 100%;
}


.mod_search form {
    display: table;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

.mod_search form > .formbody{
   display: table-row;  
}

.mod_search form > .formbody > *{
   display: table-cell;
    vertical-align: middle;
}


.mod_search form .widget-text {
    background: white;
    width: calc(100% - 200px);
}


.mod_search form .widget-submit {
    width: 200px;
    border: 2px solid gray;
    background: gray;
}


.mod_search form .widget-submit > * {
    width: 100%;
    background: transparent;
    text-transform: uppercase;
    cursor: pointer;
    color: white;
}
 .mod_search form [type="submit"] {
    padding: 0;
    margin: 0;
    line-height: 1;

}


.mod_search form .widget.widget-text input{
   background: white;
    padding: 10px 20px;
}

/*Linked Headline*/
/*headlinelink*/



.ce_headlineLink > .inside {
    display: table;
    margin: 0 auto;
}

.ce_headlineLink .h2 {
    font-size: 56px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ce_headlineLink .subheadline{
    font-size: 28px; 
}

.ce_headlineLink .headlineholder {
    padding-left: 3rem;
}

.ce_headlineLink .icon {
width: 100px;
height: 100px;
}


/*HeroImage*/
.ce_heroImage{
   position: relative;
}

.ce_heroImage .caption{
       position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}


.ce_heroImage .caption > .inside{
    display: table;
    height: 100%;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 2rem;
    box-sizing: border-box;
}

.noMargBottom{
    margin: 0;
}

.captext{
    text-align: center;
}

.capholder h2{
    font-size: 48px;
    line-height: 1;
}

.capholder .linkText {
    display: table;
    margin: 0 auto;
        margin-top: 0px;
    background: var(--orange);
    line-height: 1;
    padding: 10px 2rem;
    margin-top: 2rem;
}

.footertop .row > *{
    vertical-align: middle;
}

.socialholder {
    float: right;
    display: table;
}

.socialcell .item {
    float: left;
    margin-left: 20px;
    width: 40px;
}

.socialcell img {
    max-width: 100%;
    opacity: 0.8;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
}

/*wow*/

.wow{
    visibility: hidden;
}

.logowhite {
    margin-bottom: 2rem;
}


.mod_logo {
    width: 180px;
}

.mod_logo img {
    max-width: 100%;
}

.footertop .row > * {
    vertical-align: top;
}


.social {
    display: table;
    float: right;
}

.social > * {
    float: left;
    margin-right: 20px;
}

.social span {
    display: block;
}

.socialIcon img {
    max-height: 100%;
}

.social img {
    height: 25px;
    width: auto;
}

.headertopholder {
    display: table;
    width: 100%;
    text-align: center;
    letter-spacing: 0.03rem;
    line-height: 1;
}

.headertopholder, .footertop, .footerbottom {
    padding: 20px 0;
    font-weight: 400;
    font-size: 15px;
}

.footertop{
    background: gray;

}

.footerbottom,.headertop{
    background: black;
}

.footertop, .footerbottom, .headertop{
      color: white;  
}

.social > * > span {
    height: 100%;
    line-height: 0;
}

.map {
    height: 450px;
}


#header .row > * > span.icon {
    height: 0.8rem;
    margin-right: 5px;
}

#header .row > * > span {
    display: inline-block;
    vertical-align: middle;
}

#header .row > * > span.icon img {
    height: 100%;
    width: auto;
}

#header .mod_navigation > ul > li {
    float: left;
    margin-left: 2rem;
}

.navigation > * {
    
    width: auto;
}

header .row > *{
    vertical-align: middle;
}

body .sf-menu a, body .sf-menu strong {
    border: none;
    padding: .75em 1em;
        padding-right: 1em;
    color: inherit;
    display: block;
}

body .sf-menu li {
    background: transparent !important;
    white-space: nowrap;
    *white-space: normal;
    -webkit-transition: background .2s;
    transition: background .2s;
}

#header .mod_navigation .sf-menu ul a, #header .mod_navigation .sf-menu ul strong{
    border-bottom: 1px solid rgba(0,0,0,0.3);
}

#header .mod_navigation .sf-menu ul strong{
    display: block;
padding: .75em 1em;
    padding-right: 1em;
padding-right: 1em;
}

#header .mod_navigation .sf-menu ul a:hover, #header .mod_navigation .sf-menu ul strong:hover, #header .mod_navigation .sf-menu ul strong{
    background: whiteSmoke;
}

body .sf-menu ul {
    box-shadow: none;
    background: white;
}

body .sf-arrows .sf-with-ul:after{
    border-top-color: var(--blue) !important;
}

body .sf-menu {
    float: none;
    margin-bottom: 0;
}

header .mod_navigation.block{
    overflow: visible;
}

body .sf-menu a {
    color: inherit;
}


.pageimage {
    position: relative;
    background: black;
}




.linkText {
    display: table;
    margin-top: 2rem;
}

.linkText a {
    display: block;
    border: 1px solid rgba(255,255,255,0.6);
    line-height: 1;
    padding: 10px 40px;
}

/*paddingsetup*/

.noPadBottom, #main .mod_article > .block > .block.noPadBottom{
    padding-bottom: 0;
}

.noPadTop, #main .mod_article > .block > .block.noPadTop{
    padding-top: 0;
}


.noPadBottom, #main .mod_article > .block > .block.noPadBottom{
    padding-bottom: 0;
}

.padTopSmall, #main .mod_article > .block > .block.padTopSmall{
    padding-top: 2rem;
}

.padBottomSmall, #main .mod_article > .block > .block.padBottomSmall{
    padding-bottom: 2rem;
}

/*gridlist varinate*/
.twocol.ce_gridList{
    
}


.twocol.ce_gridList .teasergrid > div > div{
    display: table;
    margin: 0 auto;
    padding-right: 2rem;
}

.twocol.ce_gridList .teasergrid > div > div > .inside{
    display: table-row;
}

.twocol.ce_gridList .teasergrid > div > div > .inside > *{
    display: table-cell;
    vertical-align: middle;
}



.twocol.ce_gridList .teasergrid > div > div > .inside > .text{
    text-align: left;
}

.twocol.ce_gridList .teasergrid > div > div > .inside > .image_container{
    padding-right: 2rem;
}

.center.twocol.ce_gridList .teasergrid > div > div {
    margin: 0 auto;
    float: none;
    display: inline-block;
    vertical-align: middle;
}

.center.twocol.ce_gridList .teasergrid > div {
    margin: 0 -2rem 0 0;
}


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

/*kachelelement overlap*/
.mediaholder{
    position: relative;
}



.ce_headline > ::after {
    content: '';
    display: block;
    max-width: 50px;
    margin: 2rem auto 0;
    height: 3px;
    width: 100%;
    background: #333;
}

.ce_kachelelement .overlapElement > .inside{
    padding: 0;
}

.ce_kachelelement .overlapElement.notfloat_left > .inside .holder {
    padding: 2rem;
    margin-left: -4rem;
    margin-right: 4rem;
    /*width: calc(100% + 4rem);*/
    background: #d6e8ef;
     position: relative;
    z-index: 1;
}

.ce_kachelelement .overlapElement.notfloat_right > .inside .holder {
    padding: 2rem;
    margin-right: -4rem;
  /*  width: calc(100% + 4rem);*/
 margin-left: 4rem;
    position: relative;
    z-index: 1;
}


.mod_article .ce_kachelelement .overlapElement > .inside .holder{
     background: white;
}

.mod_article[style*="background: #d6e8ef"] .ce_kachelelement .overlapElement > .inside .holder{
    background: #d6e8ef;
}


.ce_kachelelement .overlap .mediaholder .bgImage{
    padding: 4rem 0;
    margin-top: -4rem;
}

.table.overlap {
    margin-bottom: 4rem;
    margin-top: 4rem;
}

#header .link .title, .ce_text a, #footer a, .links li span, .readmore{
	transition: all 0.2s;
}
#header .link .title:hover, .ce_text a:hover, #footer a:hover, .links li span:hover, .readmore:hover, .ce_hyperlink a:hover {
	opacity:0.75;
}

.mod_article:not(.fullwidth) .ce_kachelelement .notfloat_right > .inside{
    padding-left: 0;
}

.rightalign{
    text-align: right;
}

.rightalign nav{
    float: right;
    display: table;
}

.center .headline:after,.center .headlinecontainer:after, .center:after{
    margin-left: auto;
      margin-right: auto;
}

.mod_article{
    position: relative;
}

.mod_article > .bgImage{
    position: absolute;
    height: 100%;
    width: 100vw;
    left: 0;
    top: 0;
    z-index: 0
}

#herosection::after{
    display: none;
}


.col_1_3{
    width: calc(100% / 3);
}

.col_2_3{
    width: calc(100% - (100% / 3));
}

.avatar.rounded img {
  height: 20vw;
  width: 20vw;
  max-width: 250px;
  max-height: 250px;
  object-fit: cover;
  object-position: 50% 50%;
}
@media all and (min-width: 1920px){

#herosection:after {
	content:'';
	display:block;
	z-index:1;
	width:100%;
	height:75px;
	position:absolute;
	bottom:0;
	background-color:white;
    display: none;
}

}

@media all and (max-width: 1260px){

    #ninetillfive .ce_kachelelement .notfloat_right{
        vertical-align: middle;
    }
    
    #ninetillfive .ce_kachelelement .notfloat_right > .inside{
        padding-top: 10rem;
    }
    
    #ninetillfive .headlinecontainer > * {
  font-size: 36px;
}
}

@media all and (max-width: 980px){
   .teasergrid > .itemsperRow_3 > *, .ce_gallery ul.cols_3 > li {
  width: calc( (100% - (4 * 10px)) / 2 );
}
    
    #herosection h1 {
  font-size: 32px;
}

    #herosection .caption .inside > div {
  padding-top: 4rem;
}
    
    .ce_kachelelement .row > *,.twocol .row > *{
        display: table-footer-group;
    }
    
    .ce_kachelelement .row > .mediaholder, .twocol .row > .mediaholder{
        display: table-header-group;
    }
    
    .twocol .row > .ce_text:first-of-type .inside, .jobfacts .holder .inside,.ce_kachelelement .row > *, .twocol .row > .ce_text > .inner {
  padding: 2rem 20px;
}
    
    #herosection{
  overflow: hidden;
    }
    
    
      #ninetillfive .ce_kachelelement .notfloat_right > .inside{
        padding-top: 4rem;
    }
    
    body .mod_joblist .teasergrid > div > div:hover .caption{
    background: white;
        opacity: 1;
}
 body .mod_joblist .teasergrid > div > div:hover .caption .title > *{
opacity: 1;
}

.mod_joblist .teasergrid > div > div .caption .title > .plus{
  display: none;
}
    
    .mod_joblist .teasergrid > div > div .caption .inner:after{
        display: block;
    }
    .facts > span{
        display: inline;
    }
    
  
    
    .arcname {
  margin-bottom: 0.5rem;
    }
    
    .card .holder .caption {
  padding: 20px;
}
    
    .mod_joblist .teasergrid > div > div .caption .title {
  padding-right: 60px;
}
    
    .mod_joblist .teasergrid > div > div .caption .title::after {
  display: table;
    }
    
    .teasergrid > .itemsperRow_4 > *, .ce_gallery ul.cols_4 > li {
  width: calc( (100% - (4 * 10px)) / 2 );
}
    
}


@media all and (max-width: 780px){
    .footertop .row > *{
        display: block;
        width: auto;
    }  
    
    
    .onepage_navigation__list li {
float:none;
display: block;
text-align:center;
margin:0 0 15px 0;
}
    
    .footertop .row > * .holder > img {
  width: auto;
}
    
    .footertop .row > * .holder {
  width: auto;
  margin: 0 -25% -15% 0;
}
    .ce_heroImage{
        display: table;
        width: 100%;
    }
    
    .ce_heroImage .inside{
        display: table-row;
    }
    
    .ce_heroImage .inside > .bgImage{
         display: table-footer-group;
    }
    
 #herosection .mod_pageImage > .inside .caption{
         display: table-header-group;
        background: #4D9DD7;
        position: relative;
    }
    

    #herosection .row > div > div > div {
  width: auto;
}
    
    #main .mod_article > .block {
  padding: 2rem 2rem 4rem;
}
    #ninetillfive .ce_kachelelement .notfloat_right > .inside {
  padding-top: 4rem;
}
    .ce_kachelelement .notfloat_right > .inside{
        padding-bottom: 0;
    }
    .ce_kachelelement .notfloat_left > .inside{
        padding-top: 2rem;
    }
    
    #herosection .caption .inside > div {
  padding-bottom: 4rem;
  padding-top: 8rem;
}
}



@media all and (max-width: 680px){
   .teasergrid > .itemsperRow_3 > *, .ce_gallery ul.cols_3 > li {
  width: 100%;
       margin: 0 0 20px;
}
    
        .teasergrid > .itemsperRow_4 > *, .ce_gallery ul.cols_4 > li {
  width: calc( (100% - (0 * 10px)) / 1 );
}
    
    #main .mod_article > .block,.ce_kachelelement .notfloat_right > .inside {
  padding: 2rem;
    }
    
    .ce_kachelelement .notfloat_left > .inside{
        padding: 0;
    }
    
    .links {
  display: table;
  margin: 0 auto;
}
header > .inside {
padding:0;
}
#header .link .title .label {
display:none;
}
header > .inside .holder > .table,
#herosection .caption .inside > div {
padding-left:20px;
padding-right:20px;
}

.safari #herosection .table > .row {
padding-left:0;
padding-right:0;
}
h2,
#ninetillfive .headlinecontainer > *,
.footertop .headlinecontainer > * {
font-size: 24px;
}
#ninetillfive .headlinecontainer > * {
padding-right:0;
}
.footertop .row > .text {
width:auto;
}
.footer_top:after {
background-position:50% 50%;
}
.footertop .row > * .holder {
margin:0 -28% -15% 0;
}
#company .mediaholder::after {
width:40px;
}
.iconlist .listitem {
margin-bottom: 20px;
}
.col {
column-count: 1;
column-gap: 0;
}
}
#nav-icon {
  position: relative;
  margin: 0 auto;
  width: 25px;
  height: 20px;
  z-index: 10;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

#nav-icon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background: var(--darkblue);
  border-radius: 0;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon span:nth-child(2) {
  top: 18px;
  top: 8px;
}

#nav-icon span:nth-child(3) {
  top: 36px;
  top: 16px;
}


#overlay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    z-index: 9999999;
    overflow: auto;

}

/*#overlay div.navbarLink {
  position: absolute;
  right: 0;
  top: 0;
  margin: 24px 20px 20px;
} */

#overlay div.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100vh;
  -webkit-box-pack: center;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

#overlay div.content > nav{
    margin: 0 auto;
}

#overlay ul {
  list-style: none;
  margin: 0;
  padding: 0;
 color: var(--darkblue);;
  text-align: center;
  display: block;
    padding-top: 4rem;
}

#overlay ul li {
  display: block;
  margin: 0;
    margin-bottom: 0px;
  font-size: 31px;
  line-height: 1.4;
  margin-bottom: 2rem;
}

#overlay .nav_items .nav_link {
  font-size: 32px;
}

#responsivenav{
    display: none;
}


#nav-icon.animate-icon span:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon.animate-icon span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon.animate-icon span:nth-child(3) {
  top: 8px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}


#responsivenav #nav-icon.animate-icon{
    display: none;
}
/*Basics*/

:root {
    --lightblue: #83C4F4;
    --darkblue: #1D3D5C;
    --gray: #797F84;
    --iceblue: rgba(131,196,244,0.21);
    --orange: #F34607;
}

/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('/files/theme/layout/fonts/poppins/poppins-v20-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/poppins/poppins-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/poppins/poppins-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('/files/theme/layout/fonts/poppins/poppins-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('/files/theme/layout/fonts/poppins/poppins-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/files/theme/layout/fonts/poppins/poppins-v20-latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('/files/theme/layout/fonts/poppins/poppins-v20-latin-500.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/poppins/poppins-v20-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/poppins/poppins-v20-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('/files/theme/layout/fonts/poppins/poppins-v20-latin-500.woff') format('woff'), /* Modern Browsers */
       url('/files/theme/layout/fonts/poppins/poppins-v20-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/files/theme/layout/fonts/poppins/poppins-v20-latin-500.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('/files/theme/layout/fonts/poppins/poppins-v20-latin-600.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/poppins/poppins-v20-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/poppins/poppins-v20-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('/files/theme/layout/fonts/poppins/poppins-v20-latin-600.woff') format('woff'), /* Modern Browsers */
       url('/files/theme/layout/fonts/poppins/poppins-v20-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/files/theme/layout/fonts/poppins/poppins-v20-latin-600.svg#Poppins') format('svg'); /* Legacy iOS */
}


/* poppins-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('/files/theme/layout/fonts/poppins/poppins-v20-latin-700.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/poppins/poppins-v20-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/poppins/poppins-v20-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('/files/theme/layout/fonts/poppins/poppins-v20-latin-700.woff') format('woff'), /* Modern Browsers */
       url('/files/theme/layout/fonts/poppins/poppins-v20-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/files/theme/layout/fonts/poppins/poppins-v20-latin-700.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* poppins-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  src: url('/files/theme/layout/fonts/poppins/poppins-v20-latin-900.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/poppins/poppins-v20-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/poppins/poppins-v20-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
       url('/files/theme/layout/fonts/poppins/poppins-v20-latin-900.woff') format('woff'), /* Modern Browsers */
       url('/files/theme/layout/fonts/poppins/poppins-v20-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/files/theme/layout/fonts/poppins/poppins-v20-latin-900.svg#Poppins') format('svg'); /* Legacy iOS */
}


/* source-sans-pro-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  src: url('/files/theme/layout/fonts/sourcesanspro/source-sans-pro-v21-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('/files/theme/layout/fonts/sourcesanspro/source-sans-pro-v21-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/sourcesanspro/source-sans-pro-v21-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('/files/theme/layout/fonts/sourcesanspro/source-sans-pro-v21-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('/files/theme/layout/fonts/sourcesanspro/source-sans-pro-v21-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/files/theme/layout/fonts/sourcesanspro/source-sans-pro-v21-latin-regular.svg#SourceSansPro') format('svg'); /* Legacy iOS */
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  src: url('/files/theme/layout/fonts/sourcesanspro/source-sans-pro-v21-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
}


body{
     font-family: 'Source Sans Pro',sans-serif;
    font-weight: 400;
    font-size: 22px;
   
        color:var(--gray);
}

.headline > *, .headlinecontainer > *,h1,h2,h3,h4,h5,h6,#header .mod_navigation > ul > li > a,#header .mod_navigation > ul > li > strong{
     font-family: 'Poppins';
     font-weight: 600;
    text-transform: uppercase;
     color:var(--darkblue);
}
.mod_article {
line-height:150%;
}

h1{
    font-size: 36px;
}

h2, .h2{
    font-size: 46px;
}

b, strong {
font-weight: 700;
}

.headline::after, .headlinecontainer::after {
  content: '';
  height: 10px;
  width: 20%;
  max-width: 65px;
  background: var(--lightblue);
  display: block;
  margin-top: 10px;
}


.headlinecontainer > *{
    font-weight: 700;
    line-height: 1.3;
}

header,
#responsivenav{
position:fixed;
width:100%;
z-index:10;
background-color:white;
}
#wrapper > :nth-child(2) {
padding-top:183px;
}

.headersimple{
    padding: 2rem;
	max-width: 1365px;
}
footer .footer_top{
    background: var(--darkblue);
}

footer .footer_bottom{
    background: white;
    color: #333;
}

footer > .inside{
    max-width: none;
    padding: 0;
}

footer > .inside .footer_top > .inside,footer > .inside .footer_bottom > .inside,#herosection > .inside{
    max-width: 1365px;
    padding: 20px 2rem;
    margin: 0 auto;
   
    box-sizing: border-box;
}

footer > .inside .footer_top > .inside,footer > .inside .footer_bottom > .inside{
     font-size: 16px;
}


p.small{
    font-size: 16px;
    line-height: 1.2;
}

footer .footertop .mod_logo, header .mod_logo {
  width: 170px;

}

footer .footertop .mod_logo{
     margin-bottom: 2rem; 
}


#header .mod_navigation > ul > li > a,#header .mod_navigation > ul > li > strong{
     color: var(--gray);
    font-size: 20px;
    letter-spacing: 0.1rem;
}

#header .mod_navigation > ul > li > a:after,#header .mod_navigation > ul > li > strong:after{
    content: '';
    display: block;
background: transparent;
    height: 5px;
}

#header .mod_navigation > ul > li > a:hover:after,#header .mod_navigation > ul > li > strong:after{
   background: var(--lightblue);
}

#header .mod_navigation > ul > li.last > * {
	white-space: nowrap;
background: #83C4F4;
color: white;
padding: 10px 2rem;
display: inline-block;
border-radius: 5px;
box-shadow: 0 2px 2px -1px rgba(0,0,0,.3);
position:relative;
margin-top:-10px;
}
#header .mod_navigation > ul > li.last > a:after, #header .mod_navigation > ul > li.last > strong:after {
display:none;
}

footer > .inside .footer_top > .inside{
    padding: 3rem 2rem;
}

footer > .inside .footer_bottom > .inside{
    color: var(--gray);
}

footer > .inside .footer_bottom li{
    float: left;
    margin-bottom: 0;
    margin-left: 20px;
}



footer .footer_top nav li{
    margin-bottom: 20px;
}

footer .sociallist > li{
    float: left;
    margin-left: 5px;
}

footer > .inside .footer_bottom li.first, footer .sociallist > li:first-of-type{
    margin-left: 0;
}

footer .sociallist{
    display: table;
    float: right;
}

#herosection{
    height: auto;
}

.margAuto table,.margAuto p.small{
  width: 100%;
  max-width: 860px;
  margin: 0 auto;

}

.ce_list.margAuto .headlinecontainer{
    text-align: center;
}

.ce_list.margAuto .headline::after, .ce_list.margAuto .headlinecontainer::after {
 margin: 20px auto 0;
}

.ce_list.margAuto ul{
    display: table;
    margin: 0 auto;
}

/*priceboxes*/

.pricing-table  .teasergrid > div{
    display: flex;
}

.pricing-table .plan, .ce_flow .item,.mod_article > .block.cardbox{
		
		background: #fff;
		color: #797F84;
		color: #1D3D5C;
        box-sizing: border-box;
        display: table-cell;
    float: none;

		position: relative;
		
		box-shadow: 0 2px 2px -1px rgba(0,0,0,.3);		
	}

#main .mod_article > .block {
padding:2rem;
}

#main .mod_article > .block.cardbox{
    margin: 0 auto;
    display: table;
}


#main .mod_article > .block > .block{
    padding: 4rem 0;
}

.ce_flow .teasergrid > .itemsperRow_3 > .item{
    margin: 0 30px 20px 10px;
    float: left;
}

.ce_flow .teasergrid > .itemsperRow_3 > .item:last-of-type{
      margin: 0 10px 20px 10px;
}


.ce_flow .teasergrid > .itemsperRow_3 > .item{
  width: calc( (100% - (6 * 10px)) / 3 );
}

.ce_flow .teasergrid > .itemsperRow_3 > .item{
  width: calc((100% - ((2 * 30px) + (4 * 10px))) / 3);
}

.ce_flow .item.first{
    border-radius: 100px 0 0 100px;
}


.ce_flow .item.first::after, .ce_flow .item.first + .item ::after {
  width: 0;
  content: '';
  display: block;
  height: 0;
  border-top: 30px solid transparent;
  border-left: 30px solid white;
  border-bottom: 30px solid transparent;
  position: absolute;
  right: -30px;
  top: 50%;
  margin-top: -15px;

}
  


.ce_flow .item:last-of-type{
    border-radius: 0 100px 100px 0;
}


.ce_flow .item > .inside, .pricing-table .plan > .inside > *{
    padding: 2rem;
}


.ce_flow .item > .inside .counter {
  display: table;
  background: var(--darkblue);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  color: white;
  text-align: center;
  margin: 0 auto 20px;
  text-transform: uppercase;
  line-height: 1;
}

.ce_flow .item > .inside .counter .count {

  color: white;
    font-size: 65px;

  margin-bottom: 5px;
    margin-bottom: 0;
}


.ce_flow .item > .inside .stepname, .ce_flow .item > .inside .counter .count{
  
  font-family: 'Poppins',sans-serif;
      font-weight: 700;
      letter-spacing: -0.08rem;
}

.ce_flow .item > .inside .stepname{
        text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 0.08rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    text-align: center
}


.pricing-table .plan .header{
    background: rgba(29,61,92,0.15);
    color: #1D3D5C;
}

.pricing-table .plan#box_pro .header{
 background: rgba(29,61,92,0.34);
        background: rgba(29,61,92,1);
        color: white;
}

.pricing-table .plan#box_expert .header{
    background: rgba(29,61,92,1);
    color: white;
}

.pricing-table .plan .header .version {
  text-transform: uppercase;
  font-weight: 700;
  color: #1D3D5C;
  font-size: 38px;
  font-family: 'Poppins',sans-serif;
  letter-spacing: -0.08rem;
  margin-bottom: 20px;
}

.pricing-table .plan#box_expert .header .version,.pricing-table .plan#box_pro .header .version{
    color:white;
}

.pricing-table .plan .header .price {
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 400;
}


.pricing-table .plan .header .price .smallTxt{
    font-size: 18px;
}

.pricing-table .plan .header .price > *{
    display: inline-block;
}
.pricing-table .plan .header .desc {
font-size:18px;
}
#main ul > li.disabled {
opacity:0.5;
}
#main ul > li.disabled::before{
background: url(/files/theme/layout/images/icons/disabled.svg) no-repeat scroll 0 0 transparent;
background-size: contain;
}
.pricing-table .plan .boxbody .features ul{
    
}
#main ul {
margin-top:20px;
margin-bottom:20px;
}
#main ul > li, .ce_text ul li{
    position: relative;
    line-height: 1.7;
    margin-bottom: 11px;
    margin-left: 44px;
    color: #797F84;
}

#main ul > li::before, .ce_text ul li:before {
  content: '';
  height: 33px;
  width: 33px;
  background: url(/files/theme/layout/images/icons/check.svg) no-repeat scroll 0 0 transparent;

  background-size: contain;


  position: relative;
  float: left;
  margin: 0 15px 0 -49px;
  line-height: 0;
  top: 0.2rem;
}
	.pricing-table .plan:after {
	  z-index: -1; 
	  position: absolute; 
	  content: "";
	  bottom: 10px;
	  right: 4px;
	  width: 80%; 
	  top: 80%; 
	  box-shadow: 0 12px 5px rgba(0, 0, 0, .3);
	  transform: rotate(3deg);	
	}	
.pricing-table .plan.highlight {
  top: -3rem;
  padding-bottom: 4rem;
}

.pricing-table {
  padding-top: calc(3rem + 10px);
  box-sizing: border-box;
}

.ce_pricebox .headlinecontainer{
    margin-bottom: 4rem;
}
/*priceboxes*/

.ce_feedback{
    overflow: visible;
}
.ce_feedback .item{
    margin-bottom: 8rem;
}

.ce_feedback .item .zitat .inside{
    padding: 2rem 2rem 2rem;
    border-radius: 10px;
    white-space: nowrap;
}

.ce_feedback .item .zitat .inside:before{
    content: '';
    width: 120px;
    height: 120px;
    background: url(/files/theme/layout/images/placeholder/quote.svg) no-repeat scroll 50% 50% transparent;
    background-size: contain;
    display: inline-block;

}



.ce_feedback .item .zitat .text,.ce_feedback .item .zitat :before { 
    display: inline-block; 
    width: 50%; 
    white-space: normal; 
    vertical-align: bottom;
}


.ce_feedback .item .zitat:after {
    content: '';
      width: 0;
      height: 0;
      border-top: 30px solid transparent;
      border-left: 30px solid white;
      border-bottom: 30px solid transparent;
    position: absolute;
    right: -30px;
    top:50%;
    margin-top: 1rem;
    }

.ce_feedback .item.odd .zitat::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-right: 30px solid white;
  border-bottom: 30px solid transparent;
  border-left: 0;
  left: -30px;
  z-index: 1;
}


.ce_feedback .item .zitat .text {
  width: calc(100% - 120px);
  box-sizing: border-box;
}

.ce_feedback .item.even .zitat .text {
  padding-left: 2rem;
}


.ce_feedback .item.odd .zitat .text {
  padding-left: 2rem;
}

.ce_feedback .item .row > .author {
    padding: 2rem 2rem 0 0;
    text-align: center;


}


.ce_feedback .item.even .row > .author {

    padding-left: calc(2rem + 30px);

}

.ce_feedback .item.odd .row > .author {

    padding-right: calc(2rem + 30px);

}

.ce_feedback .item .row > .author > .inside{
      white-space: nowrap;
}
.ce_feedback .item .row > .author > .inside > * {
  display: inline-block;
  white-space: normal;
  vertical-align: middle;
}

.ce_feedback .item .row > .author .authortext{
    padding-left: 20px;
	text-align:left;
	font-size:18px;
}

.ce_feedback .item.odd .row > .author .authortext{
    padding-left: 0;
    padding-right: 20px;
	text-align:right;
}

.ce_feedback .item .row > .author .authortext .name{
   font-family: 'Poppins';
     font-weight: 600;
    text-transform: uppercase;
}

.ce_feedback .headlinecontainer,.mod_faqpage .headlinecontainer{
    text-align: center;
    margin-bottom: 4rem;
}


.ce_feedback .headlinecontainer:after,.mod_faqpage .headlinecontainer:after{
    margin-left: auto;
    margin-right: auto;
}

.counteritem{
    text-align: center;
}

.counterholder > *{
    display: inline-block;
          text-transform: uppercase;
  font-weight: 700;
  color: #1D3D5C;
  font-size: 48px;
  font-family: 'Poppins',sans-serif;
  letter-spacing: -0.08rem;
}

.counterholder > .before{
    margin-right: 10px;
}

.counter-value:after{
      content: '';
  height: 10px;
  width: 40px;
  background: var(--lightblue);
  display: block;
    margin: 0 auto;
  margin-top: 30px;

}

.odotext{
          text-transform: uppercase;
  font-weight: 700;
  color: var(--gray);
  font-size: 20px;
  font-family: 'Poppins',sans-serif;
  letter-spacing: 0.02rem;
}

#main .mod_article > .block.ce_odometer{
    padding: 12rem 2rem;
}

.colorwhite, .colorwhite .headlinecontainer > *{
    color: white;
}

.linkholder{
     margin-top: 4rem;
}

.readmore,
.back,
.more,.widget-submit button {
  white-space: nowrap;
  background: #83C4F4;
  color: white;
  padding: 15px 2rem;
   font-family: 'Poppins';
    font-weight: 600;
  display: table;
  text-transform: uppercase;
  border-radius: 5px;
  line-height: 1;
    box-shadow: 0 2px 2px -1px rgba(0,0,0,.3);		
letter-spacing: 0.25rem;
}

.readmore > *,
.back a,
.more a{
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
}
.back,
.more {
line-height:inherit;
margin-top:1rem;
}
.more {
padding:5px 1rem;
font-size:16px;
}

.readmore .arrow{
    margin-right: 10px;
}
.ce_accordion{
    margin-bottom: 20px;
        box-shadow: 0 2px 2px -1px rgba(0,0,0,.3);	
      background: white;
}
.ce_accordion .toggler{
  cursor: pointer;
      font-weight: 700;
  color: var(--darkblue);
  font-size: 22px;
  font-family: 'Poppins',sans-serif;
  letter-spacing: 0.02rem;
    padding: 20px;
 text-transform:uppercase;
 
}

.ce_accordion .headline::after,.ce_accordion .headlinecontainer::after{
    display: none;
}

.ce_accordion .accordion{
    padding: 10px 20px 2rem;
}

.ui-accordion-header-icon {
  background: url(/files/theme/layout/images/icons/arrowdown.svg) no-repeat scroll 50% 50% transparent;
  background-size: contain;
  height: 33px;
  width: 33px;
  float: right;
}


.active .ui-accordion-header-icon{
    transform: rotate(180deg);
}

.mod_glossary .grouplist {
  display: table;
  width: 99%;
  table-layout: fixed;
}

.mod_glossary ul {
  display: table-row;
}

.mod_glossary li {
  display: table-cell;
  border: 1px solid lightgray;
    border-right-color: lightgray;
    border-right-style: solid;
    border-right-width: 1px;
  border-right: none;
  text-align: center;
  background: white;
}

#main .mod_glossary  ul > li::before, .mod_glossary .ce_text ul li:before {
    display: none;
}
    
.mod_glossary li:first-child {
  border-radius: 8px 0 0 8px;
}

.mod_glossary li a {
  display: block;
  padding: 4px;
}
.mod_glossary li:hover a {
background:var(--darkblue);
    color: white;
}

.glossary {
  padding: 0 1rem;
}

.mod_glossary .letter {
  font-size: 30px;
  padding: 2rem 0 3rem;
}

.glossary .item {
  margin-bottom: 2rem;
}

.glossary h4 {
  margin: 0;
}

.ce_teamList h4{
    font-size: 23px;
}

.mod_glossary li.inactive {
  background: whiteSmoke;
}


.mod_glossary li:last-child {
  border-right: 1px solid lightgray;
  border-radius: 0 8px 8px 0;
}
.ce_headline > ::after{
    display: none;
}

#main .mod_article > .block.cardbox {
  margin: 4rem auto 6rem;
  display: table;
  max-width: calc(1280px - 4rem);
}

#main .mod_article > .block.cardbox:last-of-type{
    margin-bottom: 0;
}

#main .mod_article.colorwhite > .block.cardbox .headlinecontainer > *{
    color: var(--darkblue);
}

.center .linkholder .readmore{
    margin: 0 auto;
}

.ce_kachelelement > .inside > .headlinecontainer:after {
    display: none;
}

.ce_kachelelement > .inside > .headlinecontainer.before > *{
    display: inline-block;
    vertical-align: middle;
}

.ce_kachelelement > .inside > .headlinecontainer.before:before {
    content: '';
    width: 80px;
    height: 80px;
    display: inline-block;
    vertical-align: middle;

   background: url(/files/theme/layout/images/placeholder/40523/check_big.svg) no-repeat scroll 0 0 transparent;
    background-size:contain;
    margin-right: 10px;
}

/*.ce_kachelelement > .inside > .headlinecontainer.before > *{
    font-size: 39px;
} */

.ce_kachelelement .notfloat_right{
    padding-left: 0
}

.ce_kachelelement .notfloat_left{
    padding-right: 0
}

.ce_kachelelement .notfloat_right > .inside {
  padding: 0 20px 4rem 0;
}

.ce_kachelelement .notfloat_left > .inside {
  padding: 0 0 4rem 20px;
}

.mod_article.colorwhite,
#article-16 {
padding-top:2rem;
padding-bottom:2rem;
}
.block > .block .bgImage > img{
   
    position: relative;
    z-index: -1;
}

.block > .block.scale .bgImage > img,
.slides li .bgImage {
 transform: scale(1.3);
}

.mod_article.block,.mod_article.block > .block, .mod_article.block > .block .block{
    overflow: visible;
}

.col_2 .text{
    column-count: 2;
    column-gap: 2rem;
}

.headlinecontainer{
    margin-bottom: 4rem;
}

footer .mod_customnav{ 
text-align: right;
}

footer .footersimple .image{
    line-height: 0;
    margin-bottom: 2rem;
}

footer .footersimple .image:last-of-type{
    margin-bottom: 0;
}

.teasergrid > .itemsperRow_6 > *, .ce_gallery ul.cols_6 > li{
   width: calc( (100% - (12 * 10px)) / 6 );
}

.teasergrid img{
    max-width: 100%;
}

.safari .counter.table{
    display: block;
}

.safari .counter.table > .row{
    display: table;
    width: 100%;
    height: 100%;
}

.headlinecontainer.before{
    white-space: nowrap;
}

.headlinecontainer.before > *{
    white-space: normal;
}

/*.ce_kachelelement > .inside > .headlinecontainer.before > * {
  font-size: 28px;
}*/

#article-1 .ce_kachelelement .textholder {
width:60%;
}
.index .ce_iconList img {
opacity:0.6;
  filter: grayscale(100%);
transition: all 0.7s;
}
.index .ce_iconList img:hover {
opacity:1;
filter: grayscale(0%);
}
#article-20 .video_container{
min-height:516px;
}
    
figcaption {
font-size:14px;
line-height:130%;
display:block;
padding-top:10px;
}
#return-to-top img {
margin: 0 0 0 10px;
}
.ce_pricebox .text {
color:white;
}

.ce_pricebox .download{
    margin-top: 3rem;
}

.ce_pricebox .download .text{
    color: var(--darkblue);
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 16px;
}

.ce_pricebox .download a > span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.2;
}

.ce_pricebox .download a > span.icon{
    margin-right: 10px;
}

#overlay nav li > * {
text-transform:uppercase;
font-family: 'Poppins',sans-serif;
      font-weight: 700;
}
#overlay ul {
padding-top:0;
}

.pricing-table .readmore {
  font-size: 18px;
  margin-top: 3rem;
  display: block;
  line-height: 1.2;
  padding: 10px 20px;
  text-align: center;
}
.widget{
    font-size: 16px;
}

body .checkbox_container label {
  display: table;
  width: 100%;
  margin-bottom: 20px;
}


body .checkbox_container label > * {
  vertical-align: top;
  display: inline-block !important;
  line-height: 1.4;
  margin-top: 0;

}

body .widget.widget-checkbox.datenschutzerklaerung{ 
margin-bottom: 0;
}

.index .ce_iconList img {
  opacity: 0.6;
  transition: all 0.5s;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

#main ul > li:last-of-type{
    margin-bottom: 0;
}

p.link{
    margin-top: 2rem;
}

p.link > a{
    text-transform: none;
}

footer .logo{
    margin-bottom: 20px;
}

.ce_kachelelement .row > .mediaholder:first-of-type{
    padding-right: 2rem;
}

.ce_kachelelement .row > .notfloat_right + .mediaholder{
    padding-left: 2rem;
}

body .timeline__content p {
  font-size: 22px;
  line-height: 150%;
  color: var(--gray);
}

body .timeline__content h2{
    margin-bottom: 10px;
    font-size: 22px;
}

.jump{
    margin-top: 2rem;
  
   
}

.jump > a{
     text-decoration: underline;
    color: var(--darkblue);
}
.nouppercase h1 {
font-size:33px;
}
.index .ce_iconList a {
display:block;
padding: 0 20px;
}
#main .mod_article#article-29 > .block > .block {
padding-bottom:0;
}
#main .mod_article > .block > .ce_form.block,
#main .mod_article > .block > .ce_gallery.block {
padding-top:0;
}
#main .ce_gallery ul {
text-align:center;
background-color:var(--darkblue);
}
#main .ce_gallery ul > li {
list-style:none;

display:inline-block;
padding:1rem;
max-width:250px;
margin-left:0;
float:none;
}
#main .ce_gallery ul > li::before {
display:none;
}
.ce_table .headlinecontainer {
padding-top:3rem;
}
.ce_table .headlinecontainer:after {
display:none;
}
.ce_table th,
.ce_table td {
font-size:16px;
padding:3px 8px;
}
.ce_table th {
background-color:var(--lightblue);
color:white;
font-weight:bold;
padding:3px 24px;
}
.ce_table .even {
background-color:whitesmoke;
}
#table_73 td {
text-align:right;
}
#table_73 td.col_first {
text-align:left;
}


.parent_kmuvalue-expert #header .mod_navigation > ul > li > *{

  white-space: nowrap;
  background: #83C4F4;
  color: white;
  padding: 10px 2rem;
  display: inline-block;
  border-radius: 5px;
  box-shadow: 0 2px 2px -1px rgba(0,0,0,.3);
  position: relative;
  margin-top: -10px;

}


.parent_kmuvalue-expert #header .mod_navigation > ul > li > a::after,.parent_kmuvalue-expert #header .mod_navigation > ul > li> strong::after{
    display: none;
}

.parent_kmuvalue-expert #herosection > .inside {
    padding-bottom: 6rem;
}


#main .planned.ce_list ul li::before {

  background: url(/files/theme/layout/images/icons/check-grau.svg) no-repeat scroll 0 0 transparent;
    background-size: auto;
  background-size: contain;
 
}
.ce_text a, .text a {
color:var(--lightblue);
}
.ce_text a:hover, .text a:hover {
text-decoration:underline;
}
.ce_text .readmore, .ce_text .back, .ce_text .more, .ce_text .widget-submit button {
color: white;
}

#article-58 .ce_table table{
	  width: 100%;
  max-width: 890px;
  margin: 0 auto;

}
#article-58 .ce_table table th.head_0{
	width:56%;
}
#article-58 .ce_table table th.head_1,
#article-58 .ce_table table th.head_2 {
	width:22%;
}

#article-58 .ce_table table td,#article-56 .ce_table table td,#article-56 .ce_table table th,#article-58 .ce_table table th {
  vertical-align: middle;
  padding: 10px;
  font-size: 20px;
  line-height: 1.4;
}

#article-58 .ce_table table tr td:not(.col_first){
	text-align:center;
	vertical-align:middle;
	line-height:0;
}

#article-58 .ce_table table tr td:not(.col_first) img {
  width: 25px;
  height: 25px;
  display: block;
  margin:10px auto;
}

#article-58 .ce_table table .foot_0{
	font-size:14px;
	padding:10px 20px;
}

#article-58 .ce_table table .foot_0 > *{
	display:inline-block;
	vertical-align:middle;
}

#article-56 .ce_table table td {
	text-align:center;
}
#article-56 .ce_table table th {
	width:33.3%;
}

.stoerer {
position:relative;
}
.stoerer figure{
position:absolute;
right:50px;
top:30px;
max-width:160px;
}
.block > .block.experthero .bgImage > img {
z-index: 1;
}
#main .experthero ul > li {
color:white;
}
.experthero .inside {
padding-top: 0;
}
#main .mod_article > .block.experthero {
max-width:1365px;
padding: 0 2rem;
}
.parent_kmuvalue-expert #header .mod_navigation > ul > li.first > * {
background-color:var(--gray);
}
.headcenter .headlinecontainer {
text-align:center;
}
#article-32 .readmore {
margin:0 auto;
}
#main ul.slides > li::before {
display:none;
}
#main ul.slides > li {
margin:0;
}
.parent_kmuvalue-expert .headersimple .mod_logo img {
height:auto;
}
.parent_kmuvalue-expert .headersimple{
	padding:1.5rem;
}
.parent_kmuvalue-expert #wrapper > :nth-child(2) {
padding-top: 168px;
}
#main .mod_article > .block.noPadTop {
padding-top:0;
}
#main .mod_article > .block.expert-anmelden {
margin-top:-40px;
z-index:9;
}
.expert-anmelden .linkholder {
margin-top: 2rem;
}
.pricing-table .item_3 .download {
display:none;
}
.pricing-table .item_3:before {
content: 'Von Bewertungsexperten begleitet & gepr\00fc ft ';
text-align:center;
display:block;
width: calc( 100% - 6px);
padding: 3px;
background-color:var(--lightblue);
font-size:16px;
position:absolute;
top:-39px;
}

.pricing-table .item_3.plan .header {
background: linear-gradient(135deg, rgba(29,61,92,0) 0%,rgba(29,61,92,0.7) 100%);
}
.ce_player video {
    width: 100%;
    height: auto;
}
@media screen and (max-width: 1345px) {
#article-1 .headlinecontainer > * {
font-size:30px;
letter-spacing: 0;
}
}

@media screen and (max-width: 1280px) {
	body {
		font-size:20px;
	}
    .ce_flow .item > .inside .counter{
        width: 160px;
        height: 160px;
    }
    #main .mod_article > .block > .block{
        padding: 0;
    }
    .ce_feedback .item .row > .author > .inside > *{
        display: table-footer-group;
    }
    
    .ce_feedback .item .row > .author > .inside > .media{
        display: table-header-group;
    }

.stoerer figure{
right:-30px;
top:-20px;
}

}

@media screen and (max-width: 1040px) {
    .ce_flow .teasergrid > .itemsperRow_3 > .item {
  width: 100%;
  max-width: 430px;
  margin: 0 auto 2rem;
  float: none;
  display: block;
  border-radius: 0;
  text-align: left;
}
    .mod_article.block > .block .block.ce_table table {
    	overflow-x:auto;
    	width:100%;
    }
    .ce_flow .item.first::after, .ce_flow .item.first + .item ::after {
        display: none;
    }
    
    .ce_flow .teasergrid > .itemsperRow_3 > .item:last-of-type{
        margin: 0 auto;
    }
}
@media screen and (max-width: 1140px) {
 #header .mod_navigation > ul > li > a, #header .mod_navigation > ul > li > strong{
        font-size: 18px;
        letter-spacing: 0;
    } 
}
@media screen and (max-width: 1025px) {
    
    #header .mod_navigation > ul > li{
        margin-left: 20px;
    } 
    
    .teasergrid > .itemsperRow_4 > .counteritem{
        margin-bottom: 5rem;
    }
    
    .ce_feedback .item.even .row > .author {
  padding-left: 50px;
}

    .ce_feedback .item.odd .row > .author {
  padding-right: 50px;
}
    
        #main .mod_article > .block{
        padding: 4rem 2rem;
    }
    
    #main .mod_article > .block > .block{
        padding: 2rem 0 4rem;
    }
    
    .block > .block.scale .bgImage > img{
       transform: unset;
    }
    
    .ce_kachelelement > .inside > .headlinecontainer.before > * {
  font-size: 28px;
  width: calc(100% - (2rem + 80px));
}
    
 #header .mod_navigation > ul > li > a, #header .mod_navigation > ul > li > strong{
        letter-spacing: 0;
    } 
    
    #main .mod_article > .block.ce_odometer {
  padding: 2rem 2rem;
  margin-bottom: -4rem;
}
    
    .ce_kachelelement .notfloat_right > .inside{
        padding: 0;
    }
    
       .headlinecontainer {
  margin-bottom: 2rem;
}
    
      .teasergrid > .itemsperRow_6 > *, .ce_gallery ul.cols_6 > li {
  width: calc( (100% - (6 * 10px)) / 3 );
}
    
}

@media screen and (max-width: 950px) {
    header{
        display: none;
    }
    
    #responsivenav{
    display: block;
}
    
   .ce_feedback .item .row > *{
        display: block;
        width: 100%;
    }
    
    .ce_feedback .item .row > .author > .inside > *,.ce_feedback .item .row > .author > .inside > .media{
        display: inline-block;
        vertical-align: middle;
    }
    
    .ce_feedback .item .row > .author > .inside > .media{
        float: left;
        height: 100px;
    }
    
    .ce_feedback .item .row > .author > .inside > .media img{
        height: 100%;
    }
    
    .ce_feedback .item.odd .row > .author .authortext{
        padding: 0;
    }
    
    .ce_feedback .item .row > .author{
        display: table-footer-group;
    }
    
    .ce_feedback .item .row > .zitat{
        display: table-header-group;
    }
    
    .ce_feedback .item {
  margin-bottom: 2rem;
}

    .ce_feedback .item .row > .author > .inside {
  white-space: unset;
  padding: 3rem 2rem 2rem;
        display: table;
        margin: 0 auto;
}
    
    .ce_feedback .item .row > .author,.ce_feedback .item.odd .row > .author .authortext{
        text-align: left;
        padding-left: 20px;
    }
    
    .ce_feedback .item .row > .author .authortext .name,  .ce_feedback .item .row > .author .authortext p{
        font-size: 16px;
        line-height: 1.5;
    }
    
    .ce_feedback .item.even .zitat::after, .ce_feedback .item.odd .zitat::after{
        top: auto;
bottom: -39px;
transform: rotate(-90deg);
margin-left: -110px;
        left: 50%;
    }
    
    .ce_feedback .item.even .zitat::after{
        transform: rotate(90deg);
    }
    
    .footersimple .row > *{
        display: block;
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
    }
    
    footer .mod_customnav{
        text-align: left;
    }
    
    footer .footer_top nav li {
  margin-bottom: 10px;
  line-height: 1.2;
}
    
    .col_2 .text {
  column-count: 1;
  column-gap: 0;
}
    
    .pricing-table{
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-table .teasergrid > div{
        display: table;
    }
    
 .pricing-table .teasergrid > div > *{
  width: 100%;
     float: none;
     display: table;
}
          .teasergrid > .itemsperRow_6 > *, .ce_gallery ul.cols_6 > li {
  width: calc( (100% - (4 * 10px)) / 2 );
}
.stoerer figure{
right:-40px;
top:-40px;
}
  
}

@media screen and (max-width: 640px) {

#main .mod_article > .block.expert-anmelden {
	margin-top:3rem;
}
.expert-anmelden .linkholder .readmore {
	margin-top:20px;
}
#article-34 .headlinecontainer {
	margin-top:2rem;
}
#article-58 .ce_table table td, #article-56 .ce_table table td, #article-56 .ce_table table th, #article-58 .ce_table table th {
	font-size:14px;
}
.mod_article.block > .block .block.ce_table {
	overflow-x:auto;
	width:100%;
}
p.small {
font-size: 14px;
}
.ce_feedback .item .zitat .inside::before {
  content: '';
  width: 60px;
  height: 120px;
  background: url(/files/theme/layout/images/placeholder/quote.svg) no-repeat scroll 50% 50% transparent;
    background-size: auto;
  background-size: contain;
  display: inline-block;
  vertical-align: bottom;
}
    
    .ce_feedback .item .zitat .text {
  width: calc(100% - 60px);
  box-sizing: border-box;
  font-size: 18px;
  line-height: 1.6;
}
    
    #main .mod_article > .block {
  padding: 2rem 20px;
}
a#return-to-top {
bottom:1rem;
rigth:1rem;
}
.readmore, .back, .more {
letter-spacing: 0;
font-size:18px;
padding:10px 1rem;
}
figure.video_container {
display:none;
}
.mod_logo {
width: 120px;
}
.headersimple {
padding: 1rem 2rem;
}
#wrapper > :nth-child(2) {
padding-top:140px;
}
}
