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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ce_hyperlink.button {
  background-color: #94bd56;
  margin: auto;
  max-width: 300px; }
  .ce_hyperlink.button.career {
    max-width: 345px; }
    .ce_hyperlink.button.career a {
      max-width: 345px; }
  .ce_hyperlink.button a {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    color: #ffffff !important;
    z-index: 1;
    display: block;
    height: 55px;
    line-height: 55px;
    margin: auto;
    max-width: 300px;
    text-decoration: none;
    width: 100%;
    font-family: "source_sans_probold", Helvetica, sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    position: relative;
    text-align: center; }
    .ce_hyperlink.button a:hover {
      background-color: #007caf; }

input[type="submit"] {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #94bd56;
  border-radius: 0;
  border: none;
  color: #ffffff;
  max-width: 300px;
  padding: 15px 15px;
  width: 100%; }
  input[type="submit"]:hover {
    background-color: #007caf;
    color: #ffffff; }
  @media only screen and (max-width: 500px) {
    input[type="submit"] {
      width: 100%; } }

.ce_hyperlink .button {
  background-color: #94bd56;
  margin: auto;
  max-width: 300px;
  color: #ffffff !important;
  z-index: 1;
  display: block;
  height: 55px;
  line-height: 55px;
  margin: auto;
  max-width: 300px;
  text-decoration: none;
  width: 100%;
  font-family: "source_sans_probold", Helvetica, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  position: relative; }
  .ce_hyperlink .button:after {
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #007caf;
    content: "";
    height: 100%;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 0;
    z-index: -1; }
  .ce_hyperlink .button:hover:after {
    width: 100%;
    opacity: 1; }
.ce_hyperlink.left {
  margin: 20px 0 0 0; }

.ce_download img {
  display: none; }
.ce_download a {
  padding-left: 20px;
  position: relative;
  overflow: hidden;
  height: 20px;
  text-decoration: none;
  display: inline-block; }
  .ce_download a:before {
    background: transparent url(../../files/standard/layout/images/icon-download.png) no-repeat center center;
    width: 10px;
    height: 15px;
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 4px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .ce_download a:hover:before {
    top: 6px; }

.ce_form .wform {
  margin-top: 50px; }

body.safari .ce_form .widget.client span {
  padding-left: 1px; }

label.mandatory.required:after {
  content: "*";
  display: inline-block;
  color: #94bd56; }

.ce_form {
  padding: 0 2px; }
  .ce_form .widget.client {
    margin-bottom: 0; }
    .ce_form .widget.client.under {
      margin-bottom: 15px; }
      .ce_form .widget.client.under span {
        display: block; }
        .ce_form .widget.client.under span.mandatory {
          display: inline-block; }
    .ce_form .widget.client span {
      display: inline-block;
      margin-right: 25px; }
    .ce_form .widget.client input {
      width: auto; }
    .ce_form .widget.client label {
      cursor: pointer;
      position: static; }
  .ce_form .widget.headline {
    margin: 0; }
    .ce_form .widget.headline h3 {
      margin: 0; }
  .ce_form .widget {
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    transition: all 0.8s;
    margin-bottom: 30px;
    padding: 10px 1px;
    position: relative;
    width: 100%; }
    .ce_form .widget.widget-radio {
      padding: 0; }
      .ce_form .widget.widget-radio label {
        bottom: inherit; }
    .ce_form .widget.widget-checkbox fieldset, .ce_form .widget.widget-radio fieldset {
      margin-top: -5px; }
      .ce_form .widget.widget-checkbox fieldset label .mandatory, .ce_form .widget.widget-radio fieldset label .mandatory {
        color: #94bd56; }
    .ce_form .widget.widget-captcha {
      margin-top: 15px; }
      .ce_form .widget.widget-captcha label {
        bottom: 15px; }
        .ce_form .widget.widget-captcha label.active {
          bottom: 15px; }
      .ce_form .widget.widget-captcha .captcha_text {
        left: 140px;
        font-size: 12px;
        color: #A9A9A9;
        position: absolute;
        bottom: 15px;
        -webkit-transition: all 0.8s;
        -moz-transition: all 0.8s;
        transition: all 0.8s; }
    .ce_form .widget:after {
      -webkit-transition: all 0.8s;
      -moz-transition: all 0.8s;
      transition: all 0.8s;
      background-color: #94bd56;
      content: "";
      display: block;
      height: 3px;
      width: 0%;
      position: relative;
      bottom: 1px; }
    .ce_form .widget.explanation {
      margin-bottom: 0;
      padding: 0; }
      .ce_form .widget.explanation p .mandatory {
        color: #94bd56; }
    .ce_form .widget.active:after {
      width: 99%; }
    .ce_form .widget.active label, .ce_form .widget.active .captcha_text {
      bottom: -7px;
      font-size: 11px; }
    .ce_form .widget.active .captcha_text {
      left: 100px; }
    .ce_form .widget label {
      -webkit-transition: all 0.8s;
      -moz-transition: all 0.8s;
      transition: all 0.8s;
      bottom: 15px;
      left: 0;
      position: absolute; }
    .ce_form .widget input, .ce_form .widget select {
      border-color: transparent transparent gray transparent;
      width: 99%; }
    .ce_form .widget select {
      background-position: 95% 50%;
      background-repeat: no-repeat; }
    .ce_form .widget textarea {
      background-color: #ffffff;
      height: 196px;
      width: 99%; }
      .ce_form .widget textarea.service {
        height: auto; }
    .ce_form .widget input:focus, .ce_form .widget select:focus {
      background-color: #ffffff;
      border-color: transparent transparent gray transparent; }
    .ce_form .widget.select select {
      padding: 3px 0 5px; }
      .ce_form .widget.select select option {
        color: #94bd56; }
    .ce_form .widget.widget-textarea label {
      left: 5px; }
    .ce_form .widget.widget-textarea.active label {
      left: 0; }
  .ce_form .mandatory span.mandatory {
    color: #94bd56; }
  .ce_form input[type="checkbox"] {
    width: inherit; }
    .ce_form input[type="checkbox"] + label {
      position: static; }
  .ce_form input[type="submit"] {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #94bd56;
    border-radius: 0;
    border: none;
    color: #ffffff;
    max-width: 300px;
    padding: 15px 15px;
    width: 100%; }
    .ce_form input[type="submit"]:hover {
      background-color: #007caf;
      color: #ffffff; }
    @media only screen and (max-width: 500px) {
      .ce_form input[type="submit"] {
        width: 100%; } }
  .ce_form .error {
    color: #ff0000; }

@media only screen and (max-width: 900px) {
  .route {
    margin-bottom: 30px; } }

.fbform h3 {
  margin-bottom: 30px !important; }
.fbform .widget-checkbox, .fbform .widget-radio {
  padding: 0;
  margin: 0; }
  .fbform .widget-checkbox.yes span, .fbform .widget-radio.yes span {
    background: transparent url(../../files/standard/layout/images/feedback/nicht-gut.jpg) no-repeat 20px center;
    margin-bottom: 15px; }
    .fbform .widget-checkbox.yes span.zufrieden, .fbform .widget-radio.yes span.zufrieden {
      background: transparent url(../../files/standard/layout/images/feedback/sehr-gut.jpg) no-repeat 20px center; }
    .fbform .widget-checkbox.yes span span, .fbform .widget-radio.yes span span {
      margin-top: 5px; }
    .fbform .widget-checkbox.yes span label, .fbform .widget-radio.yes span label {
      margin-left: 30px;
      display: inline-block;
      vertical-align: middle;
      width: calc(100% - 15%); }
      @media only screen and (max-width: 430px) {
        .fbform .widget-checkbox.yes span label, .fbform .widget-radio.yes span label {
          width: calc(100% - 25%); } }
    .fbform .widget-checkbox.yes span input, .fbform .widget-radio.yes span input {
      display: inline-block;
      vertical-align: middle;
      width: 18px; }
  .fbform .widget-checkbox.no, .fbform .widget-radio.no {
    background: transparent url(../../files/standard/layout/images/feedback/nicht-gut.jpg) no-repeat 20px center; }
    .fbform .widget-checkbox.no span, .fbform .widget-radio.no span {
      margin-top: 5px; }
    .fbform .widget-checkbox.no label, .fbform .widget-radio.no label {
      margin-left: 30px;
      display: inline-block;
      vertical-align: middle;
      width: calc(100% - 15%); }
      @media only screen and (max-width: 430px) {
        .fbform .widget-checkbox.no label, .fbform .widget-radio.no label {
          width: calc(100% - 25%); } }
    .fbform .widget-checkbox.no input, .fbform .widget-radio.no input {
      display: inline-block;
      vertical-align: middle;
      width: 18px; }
.fbform .widget-textarea.reason {
  display: none; }
  .fbform .widget-textarea.reason.visible {
    display: block; }
.fbform .ratings span {
  background: transparent url(../../files/standard/layout/images/feedback/sehr-gut.jpg) no-repeat right center;
  width: 25px;
  height: 24px;
  display: inline-block; }
  .fbform .ratings span label {
    text-indent: -99999px; }

.ce_form .fbform .widget .radio_container span label {
  position: static; }

.contact_persons .item {
  display: inline-block;
  margin-bottom: 5%;
  margin-right: calc(2% - 5px);
  vertical-align: top;
  width: 30%; }
  @media only screen and (min-width: 1024px) {
    .contact_persons .item:nth-of-type(3n) {
      margin-right: 0; } }
  @media only screen and (max-width: 1023px) {
    .contact_persons .item {
      width: 48%; } }
  @media only screen and (max-width: 768px) {
    .contact_persons .item {
      display: block;
      margin-bottom: 10%;
      width: 100%; } }

.contact_persons .data span {
  width: 63px; }
.contact_persons h2 {
  margin-bottom: 20px; }

.event {
  margin: 50px auto;
  border-bottom: 1px solid #94bd56;
  padding-bottom: 50px; }
  .event:nth-of-type(5n) {
    border-bottom: none; }
  .event .info {
    font-size: 12px; }
  .event .subcolumns .col_1 {
    margin-bottom: 30px; }
  .event .subcolumns .col_2 p {
    padding: 0 0 8px; }
  .event .ce_image {
    max-width: 250px;
    max-height: 250px;
    overflow: hidden; }
    .event .ce_image:hover img {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -ms-transform: scale(1.2);
      -o-transform: scale(1.2);
      transform: scale(1.2); }
    .event .ce_image img {
      width: 100%;
      height: 100%;
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1);
      -webkit-transition: all 0.8s ease-in-out;
      -moz-transition: all 0.8s ease-in-out;
      transition: all 0.8s ease-in-out; }
  .event .ce_download img {
    display: none; }
  .event .ce_download a {
    padding-left: 25px;
    position: relative;
    font-size: 13px; }
    .event .ce_download a:before {
      font-family: "iconfont";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: ""; }
    .event .ce_download a:before {
      position: absolute;
      left: 0;
      bottom: 0%;
      font-size: 16px; }

.item {
  overflow: hidden;
  margin-bottom: 80px; }
  .item.last-child {
    margin-bottom: 0; }
  .item.services_left .textElement {
    background-color: #f5f5f5;
    margin-top: 30px; }
    @media only screen and (max-width: 950px) {
      .item.services_left .textElement {
        margin-top: 0; } }
  @media only screen and (max-width: 1140px) {
    .item.services_left .left {
      max-width: 40%; } }
  @media only screen and (max-width: 950px) {
    .item.services_left .left {
      max-width: 450px;
      margin: auto; } }
  @media only screen and (max-width: 1140px) {
    .item.services_left .right {
      max-width: 60%; } }
  @media only screen and (max-width: 950px) {
    .item.services_left .right {
      max-width: 450px;
      margin: auto; } }
  .item.services_right .textElement {
    background-color: #f5f5f5;
    margin-top: 30px; }
    @media only screen and (max-width: 950px) {
      .item.services_right .textElement {
        margin-top: 0; } }
  @media only screen and (max-width: 1140px) {
    .item.services_right .right {
      max-width: 40%; } }
  @media only screen and (max-width: 950px) {
    .item.services_right .right {
      max-width: 450px;
      margin: auto; } }
  @media only screen and (max-width: 1140px) {
    .item.services_right .left {
      max-width: 60%; } }
  @media only screen and (max-width: 950px) {
    .item.services_right .left {
      max-width: 450px;
      margin: auto; } }
  .item .image_container {
    max-width: 450px;
    width: 100%; }
  .item .left {
    float: left; }
    @media only screen and (max-width: 950px) {
      .item .left {
        float: none; } }
  .item .right {
    float: right; }
    @media only screen and (max-width: 950px) {
      .item .right {
        float: none; } }
  .item .textElement {
    max-width: 605px;
    width: 100%;
    padding: 40px; }
    @media only screen and (max-width: 950px) {
      .item .textElement {
        padding: 10px; } }
  @media only screen and (max-width: 950px) {
    .item h2 {
      font-size: 35px;
      line-height: 40px; } }
  @media only screen and (max-width: 320px) {
    .item h2 {
      font-size: 27px;
      line-height: 37px; } }

.subcolumns .ce_text {
  background-color: transparent; }

section.footer {
  background-color: #fafafa;
  padding-top: 65px;
  padding: 65px 90px;
  border-top: 1px solid #f0f0f0; }
  @media only screen and (max-width: 1280px) {
    section.footer {
      padding: 65px 5%; } }
  section.footer h2.h1Style {
    text-align: left; }
  section.footer .grid {
    float: left;
    width: 25%; }
    @media only screen and (max-width: 1100px) {
      section.footer .grid {
        width: 33%;
        min-height: 300px; } }
    @media only screen and (max-width: 1100px) {
      section.footer .grid {
        width: 50%;
        margin-bottom: 30px; } }
    @media only screen and (max-width: 700px) {
      section.footer .grid {
        width: 100%;
        min-height: 0;
        float: none; } }
    section.footer .grid.grid-one h4 + .data + h4, section.footer .grid.grid-one input[type="submit"] + .data + h4, section.footer .grid.grid-one .ce_hyperlink:not(.button) a + .data + h4, .ce_hyperlink:not(.button) section.footer .grid.grid-one a + .data + h4, section.footer .grid.grid-one .mod_newsreader .back + .data + h4, .mod_newsreader section.footer .grid.grid-one .back + .data + h4, section.footer .grid.grid-one h4 + .data + input[type="submit"], section.footer .grid.grid-one input[type="submit"] + .data + input[type="submit"], section.footer .grid.grid-one .ce_hyperlink:not(.button) a + .data + input[type="submit"], .ce_hyperlink:not(.button) section.footer .grid.grid-one a + .data + input[type="submit"], section.footer .grid.grid-one .mod_newsreader .back + .data + input[type="submit"], .mod_newsreader section.footer .grid.grid-one .back + .data + input[type="submit"], section.footer .grid.grid-one .ce_hyperlink:not(.button) h4 + .data + a, .ce_hyperlink:not(.button) section.footer .grid.grid-one h4 + .data + a, section.footer .grid.grid-one .ce_hyperlink:not(.button) input[type="submit"] + .data + a, .ce_hyperlink:not(.button) section.footer .grid.grid-one input[type="submit"] + .data + a, section.footer .grid.grid-one .ce_hyperlink:not(.button) a + .data + a, .ce_hyperlink:not(.button) section.footer .grid.grid-one a + .data + a, section.footer .grid.grid-one .mod_newsreader .ce_hyperlink:not(.button) .back + .data + a, .ce_hyperlink:not(.button) section.footer .grid.grid-one .mod_newsreader .back + .data + a, .mod_newsreader section.footer .grid.grid-one .ce_hyperlink:not(.button) .back + .data + a, .ce_hyperlink:not(.button) .mod_newsreader section.footer .grid.grid-one .back + .data + a, section.footer .grid.grid-one .mod_newsreader h4 + .data + .back, .mod_newsreader section.footer .grid.grid-one h4 + .data + .back, section.footer .grid.grid-one .mod_newsreader input[type="submit"] + .data + .back, .mod_newsreader section.footer .grid.grid-one input[type="submit"] + .data + .back, section.footer .grid.grid-one .ce_hyperlink:not(.button) .mod_newsreader a + .data + .back, .mod_newsreader section.footer .grid.grid-one .ce_hyperlink:not(.button) a + .data + .back, .ce_hyperlink:not(.button) section.footer .grid.grid-one .mod_newsreader a + .data + .back, .mod_newsreader .ce_hyperlink:not(.button) section.footer .grid.grid-one a + .data + .back, section.footer .grid.grid-one .mod_newsreader .back + .data + .back, .mod_newsreader section.footer .grid.grid-one .back + .data + .back {
      margin-top: 20px; }
    section.footer .grid.grid-two .data.h4Style ul {
      margin: 0; }
    section.footer .grid.grid-two .data.h4Style a {
      font-family: "source_sans_probold", Helvetica, sans-serif;
      font-size: 15px;
      line-height: 25px;
      text-decoration: none;
      text-transform: uppercase; }
    section.footer .grid.grid-three .ce_hyperlink {
      color: #555555;
      float: left;
      margin-right: 17px; }
      section.footer .grid.grid-three .ce_hyperlink:last-child {
        margin-right: 0; }
      section.footer .grid.grid-three .ce_hyperlink:hover {
        opacity: .8; }
      section.footer .grid.grid-three .ce_hyperlink a {
        padding: 0; }
        section.footer .grid.grid-three .ce_hyperlink a:before {
          display: none; }
    section.footer .grid.grid-three nav {
      float: none;
      margin-bottom: 44px;
      max-width: 265px;
      overflow: hidden; }
      section.footer .grid.grid-three nav ul {
        overflow: hidden; }
        section.footer .grid.grid-three nav ul li {
          margin: 0;
          width: 100%;
          display: block;
          float: none; }
    section.footer .grid.grid-three nav li a {
      color: #555555; }
      section.footer .grid.grid-three nav li a:hover, section.footer .grid.grid-three nav li a nav li span {
        color: #94bd56; }
    section.footer .grid.grid-three nav li.submenu:hover:after {
      display: none; }
    section.footer .grid.grid-three nav li:hover ul, section.footer .grid.grid-three nav li:hover li {
      display: none; }
    section.footer .grid.grid-three .data.h4Style ul {
      margin: 0 0 44px 0; }
    section.footer .grid.grid-three .data.h4Style a {
      font-family: "source_sans_probold", Helvetica, sans-serif;
      font-size: 15px;
      line-height: 25px;
      text-decoration: none;
      text-transform: uppercase; }
    section.footer .grid.grid-four .ce_image {
      -webkit-transition: all 0.5;
      -moz-transition: all 0.5;
      transition: all 0.5;
      margin-bottom: 25px;
      display: inline-block; }
      section.footer .grid.grid-four .ce_image:nth-of-type(1) {
        margin-right: 4%; }
      section.footer .grid.grid-four .ce_image:hover {
        opacity: .8; }
      @media only screen and (max-width: 310px) {
        section.footer .grid.grid-four .ce_image {
          text-align: center;
          display: block; } }

.ce_gallery {
  margin-top: 30px; }
  .ce_gallery ul {
    padding: 0;
    margin: 0; }
    .ce_gallery ul li {
      max-width: 24.2%;
      list-style-type: none;
      margin-right: 1%;
      margin-bottom: 1%; }
      .ce_gallery ul li:nth-of-type(4n) {
        margin-right: 0; }
      @media only screen and (max-width: 768px) {
        .ce_gallery ul li {
          max-width: 49%;
          margin-right: 2%; }
          .ce_gallery ul li:nth-of-type(2n) {
            margin-right: 0; } }
      @media only screen and (max-width: 500px) {
        .ce_gallery ul li {
          max-width: 100%;
          margin-right: 0%;
          margin-bottom: 5%; } }

#cboxCurrent,
#cboxTitle {
  display: none !important; }

.outer {
  position: absolute;
  right: 2%;
  top: 20%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  float: right;
  margin: 16px 15px 0 0; }
  @media only screen and (min-width: 1056px) {
    .outer {
      display: none; } }

a.hamburger {
  width: 32px;
  height: 30px;
  display: block;
  margin: 0 auto;
  position: relative; }

.line {
  width: 32px;
  height: 4px;
  display: block;
  position: absolute;
  background: #94bd56;
  border-radius: 2px;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out; }

.line-1 {
  top: 0; }

.line-2 {
  margin-top: -3px;
  top: 50%; }

.line-3 {
  bottom: 3px; }

a.active .line-1 {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  -o-transform: rotate(315deg);
  transform: rotate(315deg);
  background: #94bd56; }

a.active .line-2 {
  opacity: 0; }

a.active .line-3 {
  bottom: 50%;
  margin-bottom: -3px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  -o-transform: rotate(-315deg);
  transform: rotate(-315deg);
  background: #94bd56; }

.ce_hyperlink:not(.button) a {
  color: #94bd56;
  padding-left: 15px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle; }
  .ce_hyperlink:not(.button) a:before {
    content: "\e904";
    font-size: 11px;
    left: 0;
    position: absolute;
    top: 0px; }

.android .ce_hyperlink:not(.button) a:before {
  top: -1px; }

.jobs {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 50px;
  margin-top: 50px; }
  .jobs.first {
    margin-top: 70px; }
  .jobs.last {
    border-bottom: none; }
  .jobs h2 {
    margin-bottom: 10px; }
  .jobs .ce_hyperlink {
    display: inline-block;
    margin-right: 30px; }
    .jobs .ce_hyperlink a:before {
      top: 0; }

.mod_newsreader .data span {
  width: 90px; }
.mod_newsreader .requirements {
  margin-bottom: 20px; }

.mobileOnly {
  display: none; }
  .mobileOnly.active {
    background-color: #94bd56;
    display: block;
    left: 0;
    padding: 20px 15px;
    position: absolute;
    top: 80px;
    width: 100%;
    z-index: 2; }

.mobileOnly {
  font-size: 18px; }
  .mobileOnly li {
    margin: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5); }
    .mobileOnly li.last {
      border-bottom: 0; }
    .mobileOnly li.trail a {
      color: #007caf; }
      .mobileOnly li.trail a:hover {
        color: #007caf; }
    .mobileOnly li a {
      color: #ffffff;
      display: block; }
      .mobileOnly li a:hover {
        color: #ffffff; }
    .mobileOnly li span.active {
      color: #007caf;
      display: block; }
      .mobileOnly li span.active:hover {
        color: #007caf; }
    .mobileOnly li.submenu {
      position: relative; }
      .mobileOnly li.submenu.opensub span:before {
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        transition: all 0.5s; }
      .mobileOnly li.submenu.opensub ul, .mobileOnly li.submenu.opensub li {
        display: block; }
    .mobileOnly li.submenu:not(.news) a:not(.login):not(.search):before, .mobileOnly li.submenu:not(.news) span.active:not(.login):not(.search):before {
      -webkit-transition: all 0.5s;
      -moz-transition: all 0.5s;
      transition: all 0.5s;
      content: "\e901";
      display: block;
      color: #ffffff;
      position: absolute;
      right: 0;
      font-size: 15px;
      font-weight: bold; }
    .mobileOnly li.search {
      margin-right: 0; }
  .mobileOnly .submenu:hover:after {
    display: none; }
  .mobileOnly .submenu ul {
    background-color: #94bd56;
    border: none;
    display: none;
    margin: 5px 0 20px;
    padding: 10px;
    position: static; }
    .mobileOnly .submenu ul li {
      margin: 10px 0;
      font-size: 16px;
      border-bottom: 0; }
      .mobileOnly .submenu ul li a {
        color: #ffffff; }
      .mobileOnly .submenu ul li span.active {
        color: #007caf; }

nav {
  float: right;
  overflow: visible !important;
  font-size: 15px; }
  nav.main-nav {
    margin-right: 65px; }
    @media only screen and (max-width: 1130px) {
      nav.main-nav {
        margin-right: 40px; } }
    @media only screen and (max-width: 1055px) {
      nav.main-nav {
        display: none; } }
    nav.main-nav ul.level_1 {
      margin-top: 44px; }
  @media only screen and (max-width: 1420px) {
    nav.service-nav {
      margin-right: 2%; } }
  @media only screen and (max-width: 1055px) {
    nav.service-nav {
      display: none; } }
  nav.service-nav .submenu ul {
    min-width: 160px; }
  nav.service-nav ul.level_1 {
    margin-top: 44px; }
  nav.service-nav a {
    color: #94bd56; }
  nav li {
    float: left;
    font-family: "source_sans_probold", Helvetica, sans-serif;
    margin-right: 30px;
    text-transform: uppercase; }
    nav li.active a, nav li.active span {
      color: #94bd56; }
    nav li.active.submenu .regular:not(.active) a {
      color: #555555; }
    nav li.news li a {
      color: #000000; }
      nav li.news li a:hover {
        color: #94bd56; }
    @media only screen and (max-width: 1055px) {
      nav li {
        float: none; } }
    nav li.last {
      margin-right: 0; }
    nav li.submenu {
      position: relative; }
      nav li.submenu:after {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 7.5px 10px 7.5px;
        border-color: transparent transparent #94bd56 transparent;
        bottom: -23px;
        content: "";
        display: block;
        display: none;
        left: 0;
        position: absolute; }
      nav li.submenu:hover:after {
        display: block; }
    nav li.search {
      margin-right: 25px; }
      nav li.search span.icon {
        text-indent: -99999px;
        display: none; }
      nav li.search a:before, nav li.search span:before {
        content: "\e902";
        font-size: 24px; }
      nav li.search a:hover:before {
        -webkit-animation-duration: 1s;
        -moz-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-iteration-count: infinite;
        -moz-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-name: coloring;
        -moz-animation-name: coloring;
        animation-name: coloring; }
    nav li.login span.icon {
      text-indent: -99999px;
      display: none; }
    nav li.login a:before {
      content: "\e903";
      font-size: 20px; }
    nav li.login a:hover:before {
      -webkit-animation-duration: 1s;
      -moz-animation-duration: 1s;
      animation-duration: 1s;
      -webkit-animation-iteration-count: infinite;
      -moz-animation-iteration-count: infinite;
      animation-iteration-count: infinite;
      -webkit-animation-name: coloring;
      -moz-animation-name: coloring;
      animation-name: coloring; }
    nav li.submenu ul {
      line-height: normal;
      background-color: rgba(255, 255, 255, 0.8);
      display: none;
      position: absolute;
      z-index: 100;
      left: -30px;
      border-top: 5px solid #94bd56;
      border-bottom: 5px solid #94bd56;
      min-width: 289px;
      padding-top: 38px;
      padding-bottom: 42px;
      padding-left: 30px;
      top: 48px; }
      nav li.submenu ul .hover, nav li.submenu ul:hover {
        display: block; }
    nav li.contacts ul {
      min-width: 271px; }
    nav li.submenu li {
      float: none;
      padding-bottom: 0;
      margin-bottom: 15px; }
      nav li.submenu li.last {
        margin-bottom: 0; }
    nav li:hover ul, nav li:hover li {
      display: block; }
    nav li a, nav li span {
      color: #333333;
      text-decoration: none; }
      nav li a:hover, nav li span:hover {
        color: #94bd56; }
    nav li span {
      color: #94bd56; }
      nav li span.icon {
        color: inherit; }

@media only screen and (min-width: 1055px) {
  #nav li.hover ul,
  #nav li.hover:after {
    display: block; } }

.ie nav.main-nav li.submenu ul {
  min-width: 288px; }

.firefox nav.main-nav li.submenu ul {
  min-width: 287px; }

#news-aktuelles .mod_newslist .layout_latest:not(.last), #case-studies .mod_newslist .layout_latest:not(.last) {
  margin-bottom: 70px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 100px; }
#news-aktuelles .mod_newslist .image_container, #case-studies .mod_newslist .image_container {
  float: left;
  width: 30%; }
  @media only screen and (max-width: 900px) {
    #news-aktuelles .mod_newslist .image_container, #case-studies .mod_newslist .image_container {
      float: none;
      width: 100%; } }
  @media only screen and (max-width: 1040px) {
    #news-aktuelles .mod_newslist .image_container img, #case-studies .mod_newslist .image_container img {
      padding-bottom: 30px; } }
#news-aktuelles .mod_newslist h2, #case-studies .mod_newslist h2 {
  float: right;
  width: 70%; }
  @media only screen and (max-width: 1180px) {
    #news-aktuelles .mod_newslist h2, #case-studies .mod_newslist h2 {
      float: none; } }
  @media only screen and (max-width: 1040px) {
    #news-aktuelles .mod_newslist h2, #case-studies .mod_newslist h2 {
      width: 100%; } }
  #news-aktuelles .mod_newslist h2 a, #case-studies .mod_newslist h2 a {
    text-decoration: none; }
#news-aktuelles .mod_newslist .teaser, #case-studies .mod_newslist .teaser {
  float: right;
  width: 70%; }
  @media only screen and (max-width: 1180px) {
    #news-aktuelles .mod_newslist .teaser, #case-studies .mod_newslist .teaser {
      float: none;
      width: 100%; } }
  @media only screen and (max-width: 1040px) {
    #news-aktuelles .mod_newslist .teaser, #case-studies .mod_newslist .teaser {
      width: 100%; } }
#news-aktuelles .mod_newslist .more a, #case-studies .mod_newslist .more a {
  text-decoration: none; }

.mod_newsreader .info {
  display: none; }
.mod_newsreader .back {
  margin-top: 30px; }
  .mod_newsreader .back a {
    text-decoration: none; }

#news-aktuelles .mod_newslist .image_container {
  float: none;
  width: auto; }
#news-aktuelles .mod_newslist .images {
  float: left;
  width: 30%; }
  @media only screen and (max-width: 950px) {
    #news-aktuelles .mod_newslist .images {
      width: 80%;
      float: none; } }
  @media only screen and (max-width: 450px) {
    #news-aktuelles .mod_newslist .images {
      width: 80%;
      float: none; } }
#news-aktuelles .mod_newslist .texts {
  float: right;
  width: 70%; }
  @media only screen and (max-width: 950px) {
    #news-aktuelles .mod_newslist .texts {
      width: 100%; } }
  @media only screen and (max-width: 450px) {
    #news-aktuelles .mod_newslist .texts {
      width: 100%; } }
#news-aktuelles .mod_newslist h2, #news-aktuelles .mod_newslist .teaser {
  float: none;
  width: 100%; }

.pagination {
  overflow: visible; }
  .pagination > p {
    display: none; }
  .pagination ul li {
    display: inline-block;
    vertical-align: bottom;
    margin-right: 5px; }
    .pagination ul li a, .pagination ul li span {
      border-bottom: 2px solid #94bd56;
      display: block;
      min-width: 25px;
      text-align: center;
      text-decoration: none; }
      .pagination ul li a:hover, .pagination ul li span:hover {
        border-color: #007caf; }
    .pagination ul li span {
      border-color: #007caf;
      position: relative;
      color: #007caf; }
      .pagination ul li span:before {
        color: #94bd56;
        font-size: 30px;
        left: 0;
        position: absolute;
        top: -25px;
        right: 0;
        margin: auto;
        text-align: center; }

.mod_search {
  text-align: center;
  max-width: 1055px;
  margin: 0 auto; }
  .mod_search .widget {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto; }
    .mod_search .widget.active:after {
      width: 100%; }
  .mod_search input {
    border-radius: 0; }
    .mod_search input[type="search"] {
      max-width: 500px;
      width: 100%;
      -webkit-appearance: none; }
    .mod_search input[type="submit"] {
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      transition: all 0.3s;
      background-color: #94bd56;
      border: 0;
      color: #ffffff;
      height: 55px;
      margin-left: -3px;
      margin-top: -1px;
      padding: 0 10px; }
      .mod_search input[type="submit"]:hover {
        background-color: #007caf; }
  .mod_search p.header {
    font-size: 13px;
    color: #94bd56; }
  .mod_search .even, .mod_search .odd {
    border-bottom: 1px solid #fafafa;
    padding: 50px 0;
    max-width: 750px;
    margin: 0 auto; }
    @media only screen and (max-width: 640px) {
      .mod_search .even, .mod_search .odd {
        text-align: left; } }
    .mod_search .even.last, .mod_search .odd.last {
      border-bottom: none; }
    .mod_search .even h3, .mod_search .odd h3 {
      margin-bottom: 10px; }
      .mod_search .even h3 a, .mod_search .odd h3 a {
        text-decoration: none; }
      .mod_search .even h3 span, .mod_search .odd h3 span {
        display: none; }
    .mod_search .even .highlight, .mod_search .odd .highlight {
      background-color: beige;
      padding: 3px 10px;
      color: #94bd56;
      border-radius: 3px; }
    .mod_search .even p.url, .mod_search .odd p.url {
      display: none; }

.mod_sitemap {
  overflow: visible; }
  .mod_sitemap ul.level_1 li {
    display: inline-block;
    position: relative;
    vertical-align: top;
    margin-right: 2%;
    padding-left: 26px;
    z-index: 5;
    width: 31%; }
    .mod_sitemap ul.level_1 li:before {
      font-family: "iconfont";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: ""; }
    @media only screen and (max-width: 955px) {
      .mod_sitemap ul.level_1 li {
        margin-bottom: 20px; } }
    @media only screen and (max-width: 765px) {
      .mod_sitemap ul.level_1 li {
        width: inherit; } }
    @media only screen and (max-width: 430px) {
      .mod_sitemap ul.level_1 li {
        display: block; } }
    .mod_sitemap ul.level_1 li:before {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      font-size: 20px;
      width: 20px;
      color: #94bd56;
      width: 100%; }
    .mod_sitemap ul.level_1 li a {
      text-decoration: none;
      color: #94bd56; }
    .mod_sitemap ul.level_1 li ul.level_2 li {
      display: block;
      font-size: 12px;
      padding-left: 0;
      width: inherit; }
      @media only screen and (max-width: 955px) {
        .mod_sitemap ul.level_1 li ul.level_2 li {
          margin-bottom: 0px; } }
      .mod_sitemap ul.level_1 li ul.level_2 li:before {
        display: none; }
      .mod_sitemap ul.level_1 li ul.level_2 li a {
        color: #000000; }

#slider {
  overflow: visible; }

.ce_caroufredsel {
  position: relative;
  overflow: visible; }
  .ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_next, .ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev {
    -webkit-transition: all 2s;
    -moz-transition: all 2s;
    transition: all 2s;
    color: #94bd56;
    font-size: 60px;
    position: absolute;
    right: -68px;
    text-decoration: none;
    top: 50%;
    height: 60px;
    line-height: 60px;
    margin-top: -70px; }
    @media only screen and (max-width: 1590px) {
      .ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_next, .ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev {
        display: none !important; } }
    .ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_next:before, .ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev:before {
      content: "\e901"; }
    .ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_next:hover:before, .ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev:hover:before {
      right: -75px; }
    .ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_next span, .ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev span {
      display: none; }
  .ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev {
    left: -68px;
    right: inherit; }
    .ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev:before {
      content: "\e900"; }
    .ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev span {
      display: none; }
    @media only screen and (max-width: 1590px) {
      .ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev {
        display: none; } }

.contentslider.ce_caroufredsel {
  position: relative;
  overflow: visible; }
  @media only screen and (max-width: 1590px) {
    .contentslider.ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_next, .contentslider.ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev {
      display: block !important; } }
  @media only screen and (max-width: 1024px) {
    .contentslider.ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_next, .contentslider.ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev {
      display: none !important; } }
  @media only screen and (max-width: 1280px) {
    .contentslider.ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_next {
      right: 0; } }
  @media only screen and (max-width: 1280px) {
    .contentslider.ce_caroufredsel .caroufredsel_controls .caroufredsel_navi a.caroufredsel_prev {
      left: 0; } }

.ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi {
  text-align: center;
  margin-top: 22px;
  margin-bottom: 105px; }
  .ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a {
    border-radius: 50%;
    border: 3px solid #007caf;
    display: inline-block;
    height: 13px;
    margin-right: 118px;
    position: relative;
    text-indent: -99999px;
    width: 13px; }
    @media only screen and (max-width: 1055px) {
      .ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a {
        margin-right: 100px; } }
    @media only screen and (max-width: 915px) {
      .ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a {
        margin-right: 70px; } }
    @media only screen and (max-width: 680px) {
      .ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a {
        margin-right: 25px; } }
    .ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a.selected {
      background-color: #94bd56; }
    .ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a:after {
      background-color: #94bd56;
      content: "";
      display: block;
      height: 1px;
      width: 100px;
      position: absolute;
      left: 19px;
      top: 50%; }
      @media only screen and (max-width: 1055px) {
        .ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a:after {
          width: 80px; } }
      @media only screen and (max-width: 915px) {
        .ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a:after {
          width: 50px; } }
      @media only screen and (max-width: 680px) {
        .ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a:after {
          display: none; } }
    .ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a:last-child {
      margin-right: 0; }
      .ce_caroufredsel .caroufredsel_controls .caroufredsel_pagi a:last-child:after {
        display: none; }

#philosophie h1 {
  margin-bottom: 0;
  color: #94bd56;
  position: relative; }
  #philosophie h1:after {
    position: absolute;
    content: "";
    background: transparent url("../../files/standard/layout/images/slider-rules-plus.png") no-repeat 0 0;
    width: 50px;
    height: 50px;
    top: 60%;
    right: 30%; }
    @media only screen and (max-width: 1125px) {
      #philosophie h1:after {
        display: none; } }
#philosophie h5 {
  margin-bottom: 25px;
  color: #94bd56; }

.sp-buttons {
  margin-top: 60px;
  margin-bottom: 105px; }

.sp-button {
  margin-right: 60px !important;
  border-radius: 50%;
  border: 3px solid #007caf !important;
  display: inline-block;
  height: 13px !important;
  position: relative;
  width: 13px !important; }
  .sp-button:after {
    background-color: #94bd56;
    content: "";
    display: block;
    height: 1px;
    width: 40px;
    position: absolute;
    left: 19px;
    top: 50%; }
  .sp-button.sp-selected-button {
    background-color: #94bd56; }
  .sp-button:nth-of-type(10):after {
    display: none; }

@media only screen and (max-width: 1150px) {
  .sp-button:after {
    display: none; }

  .sp-button {
    margin-right: 25px !important; }

  .sp-buttons {
    margin-top: 0;
    bottom: 0; } }
@media only screen and (max-width: 650px) {
  .sp-button {
    margin-right: 5px !important; } }
.sp-layer {
  position: absolute;
  right: 15%;
  top: 50%;
  padding: 30px;
  background: #ffffff;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%); }
  .sp-layer p {
    max-width: 400px;
    padding: 20px !important;
    color: #555555;
    line-height: 30px;
    font-size: 20px; }
    .sp-layer p .special-words {
      color: #94bd56;
      font-size: 25px; }
  .sp-layer:before {
    position: absolute;
    content: "";
    background: transparent url("../../files/standard/layout/images/slider-rules-left.png") no-repeat 0 0;
    width: 42px;
    height: 42px;
    top: 0;
    left: 0; }
  .sp-layer:after {
    position: absolute;
    content: "";
    background: transparent url("../../files/standard/layout/images/slider-rules-right.png") no-repeat 0 0;
    width: 42px;
    height: 42px;
    bottom: 0;
    right: 0; }

@media only screen and (max-width: 1150px) {
  p {
    max-width: 100% !important; }

  .sp-layer {
    position: relative !important;
    left: 0 !important;
    top: 0 !important; }
    .sp-layer:before, .sp-layer:after {
      display: none; }

  .sp-slide {
    text-align: center; } }
.sp-white {
  background-color: #ffffff !important; }

.sp-arrows .sp-arrow:after {
  display: none; }
.sp-arrows .sp-arrow:before {
  background-color: transparent;
  transform: inherit; }
.sp-arrows .sp-previous-arrow {
  left: -80px !important;
  right: inherit;
  transition: all 2s;
  color: #94bd56;
  font-size: 60px;
  position: absolute;
  text-decoration: none;
  top: 50%;
  height: 60px;
  line-height: 60px;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); }
  .sp-arrows .sp-previous-arrow:before {
    content: "\e900";
    right: 0 !important; }
.sp-arrows .sp-next-arrow {
  transition: all 2s;
  margin-right: 80px;
  color: #94bd56;
  font-size: 60px;
  position: absolute;
  right: -80px !important;
  text-decoration: none;
  top: 50%;
  height: 60px;
  line-height: 60px;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0); }
  .sp-arrows .sp-next-arrow:before {
    content: "\e901";
    left: 0 !important; }
@media only screen and (max-width: 1270px) {
  .sp-arrows {
    display: none; } }

@media screen, projection {
  body {
    background-color: transparent; }

  #cboxContent {
    height: auto !important;
    width: auto; }
    #cboxContent #wrapper {
      overflow: hidden;
      height: auto;
      height: auto !important; }
    #cboxContent #container,
    #cboxContent #main,
    #cboxContent #main .inside,
    #cboxContent .mod_article, #cboxContent .ce_image {
      height: auto;
      min-height: auto;
      display: block; } }

/*# sourceMappingURL=standard-lightbox.css.map */

