html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  min-width: 300px;
  overflow-x: hidden;
  overflow-y: scroll;
  text-rendering: optimizeLegibility;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
}

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

* {
  font-style: normal;
}

body {
  font-size: 16px;
  font-size: 100%;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  line-height: 1.5rem;
  background-color: #f1f1f1;
  background-repeat: no-repeat;
  background-position: top center;
  border-top: 0;
  scroll-behavior: smooth;
}

@media only screen and (max-width: 48em) {
  body {
    border: 0;
  }
}

.heading--main {
  margin-bottom: 0.375rem;
}

.heading--sub {
  margin-top: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
  color: #000;
  margin-top: 0;
}

h1 {
  color: #232323;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.075; /*1.1466;*/
  /*letter-spacing: 1px;*/
  margin-top: 0;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 85.375em) {
  h1 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
  }
}

@media only screen and (max-width: 64em) {
  h1 {
    font-size: 2.75rem;
    line-height: 1.125;
    margin-bottom: 2.5rem;
  }
}

@media only screen and (max-width: 55.9375em) {
  h1 {
    font-size: 2.25rem;
    line-height: 1.125;
    margin-bottom: 2.25rem;
  }
}

@media only screen and (max-width: 30em) {
  h1 {
    font-size: 2rem;
    line-height: 1.125;
    margin-bottom: 2.25rem;
  }
}

h2 {
  color: #232323;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.1466;
  margin-bottom: 2rem;
}

h2.has--icon {
  line-height: 1;
  display: inline;
}

.headline__icon {
  float: left;
  width: 100px;
  padding-right: 1rem;
}

@media only screen and (max-width: 48em) {
  h2 {
    font-size: 1.75rem;
    line-height: 1.125;
    margin-bottom: 0.8rem;
  }
}

h3 {
  color: #232323;
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1.1466;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 64em) {
  h3 {
    font-size: 2.25rem;
    line-height: 1.25;
    margin-bottom: 0.8rem;
  }
}

@media only screen and (max-width: 48em) {
  h3 {
    font-size: 2rem;
    line-height: 1.125;
    margin-bottom: 0.8rem;
  }
}

h4 {
  color: #232323;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.1466;
  margin-bottom: 0.85rem;
}

@media only screen and (max-width: 48em) {
  h4 {
    font-size: 1.25rem;
    line-height: 1.125;
    margin-bottom: 0.8rem;
  }
}

.ce_text h4 {
  margin-top: 1.75rem;
}

h5 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3125;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.3rem;
}

h5::before {
  display: inline-block;
  content: "";
  border-top: 1rem solid #ffff00;
  width: 5rem;
  margin: 0 1.25rem 0 0;
}

@media only screen and (max-width: 480px) {
  h5 {
    font-size: .875rem;
    letter-spacing: 1px;
    margin-bottom: .8rem;
  }
}

h6 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3125;
  margin-bottom: 0.25rem;
}

@media only screen and (max-width: 55.9375em) {
  h6 {
    font-size: 1rem;
  }
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

a {
  text-decoration: none;
  color: #777;
}

a:hover {
  color: #aaa;
}

.ce_hyperlink.link--youtube a {
  height: 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.75rem 0 0.75rem 4.25rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  background-image: url("../../img/icons/youtube.png");
  background-size: 3.5rem;
}

.ce_hyperlink.link--instagram a {
  height: 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.75rem 0 0.75rem 3.25rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  background-image: url("../../img/icons/instagram.png");
  background-size: 2.5rem;
}

.ce_hyperlink.btn--filled a {
  float: left;
  font-weight: 600;
  background: #000;
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 0;
  transition: all ease-in-out 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1.8rem;
}

@media only screen and (max-width: 55.9375em) {
  .ce_hyperlink.btn--filled a {
    width: 100%;
    text-align: center;
  }
}



.ce_text p /*,
.ce_list ul li*/ {
  font-size: 1.125rem;
  line-height: 1.875rem;
  /*-webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;*/
}

.ce_text.is--centered p {
  -webkit-hyphens: manual !important;
  -moz-hyphens: manual !important;
  -ms-hyphens: manual !important;
  hyphens: manual !important;
}

.ce_text ul {
  list-style-type: none;
  margin-left: 0.5rem;
  padding-left: 1rem;
  text-indent: -1rem;
  font-size: 1.125rem;
  line-height: 1.875rem;
}

.ce_text ul li::before {
  font-family: "IcoFont" !important;
  content: "\eab8";
  /*margin-right: 0.325rem;*/
}

.ce_text table {
  font-size: 1.125rem;
}

.ce_text table th {
  font-weight: 700;
  padding: 0.25rem 2rem 0.25rem 0;
  white-space: nowrap;
}

.ce_text table td {
  padding: 0.25rem 0;
}


@media only screen and (max-width: 90em) {
  .ce_text p,
  .ce_text table,
  .ce_list ul li {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media only screen and (max-width: 48em) {
  .ce_text p,
  .ce_text table,
  .ce_text ul li,
  .ce_list ul li {
    font-size: 0.9375rem;
    line-height: 1.5rem;
  }

  .ce_text ul {
    margin-left: 0.375rem;
  }

  .ce_text ul li {
    margin-bottom: 0.375rem;
  }
}

@media only screen and (max-width: 55.9375em) {
  main .ce_text,
  main .ce_headline,
  main .ce_hyperlink:not(.category--hover),
  main .ce_table,
  main .ce_list,
  main .ce_download,
  main .ce_accordion,
  main .ce_tabs ul.nav,
  main .mod_login,
  main .left--image-text,
  main .ce_form {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media only screen and (min-width: 48em) and (max-width: 55.9375em) {
  .columns--nobreak .col--1-3 .ce_text {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.ce_list ul li p {
  padding-left: 2rem;
}

hr,
.ce_text hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px dashed #aaa;
  margin: 2em 0;
  padding: 0;
}

@media only screen and (min-width: 64em) {
  #teaser {
    padding-top: 10rem;
  }
} 

.ce_text.teaser--text {
  max-width: 52rem;
  margin: 0 auto;
}

.ce_text.teaser--maintext {
  max-width: 52rem;
  margin: 0 auto 5rem auto;
}

@media only screen and (max-width: 64em) {
  .ce_text.teaser--text,
  .ce_text.teaser--maintext {
    max-width: 48rem;
  }
}

@media only screen and (max-width: 48em) {
  .ce_text.teaser--text,
  .ce_text.teaser--maintext {
    margin: 0 auto;
  }
}

.ce_text.teaser--maintext p {
  color: #777;
}

.ce_text.teaser--text p,
.ce_text.teaser--text p a,
.ce_text.teaser--text p a:visited {
  color: #999;
  font-size: 2.25rem;
  font-weight: 200;
  line-height: 1.475;
}

@media only screen and (max-width: 64em) {
  .ce_text.teaser--text p {
    font-size: 1.625rem;
    line-height: 1.35;
  }
}

@media only screen and (max-width: 55.9375em) {
  .ce_text.teaser--text p {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

@media only screen and (max-width: 28em) {
  .ce_text.teaser--text h5::before {
    display: block;
    margin: 0 auto 1rem auto;
  }
}

.ce_image img.grayscale {
  filter: grayscale(20%);
}

.ce_image.img--circular {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  flex-shrink: 1;
  justify-content: center;
}

.ce_image.img--circular img {
  position: relative;
  margin: .5em;
  width: 100%;
  max-width: 300px;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
}

.ce_image.img--circular img:before {
  display: block;
  content: '';
  margin-top: 100%;
}

.ce_image.img--circular h6 {
  position: absolute;
  top: 80%;
  transform: translateY(-50%);
  z-index: 99;
}

.ce_image:not(:first-child) {
  margin-top: 3rem;
}

.ce_image.img--hover-zoom {
  overflow: hidden;
}

.ce_image.img--hover-zoom img {
  filter: grayscale(20%);
  transition: transform .5s ease;
}

.ce_image.img--hover-zoom:hover img {
  transform: scale(1.05);
}

@media only screen and (max-width: 55.9375em) {
  .ce_image.img--hover-zoom img {
    transition: all 0s ease 0s;
  }

  .ce_image.img--hover-zoom:hover img {
    transform: none;
  }
}

.image_container img {
  display: block
}

.ce_image.pefc_badge {
  position: relative;
  top: -10rem;
  margin-bottom: -10rem;
  left: 4rem;
  width: 33%;
  height: auto;
  max-width: 200px;
}


.ce_image.aktionshaustueren_badge {
  position: relative;
  top: -10rem;
  margin-bottom: -10rem;
  left: 4rem;
  width: 40%;
  height: auto;
  max-width: 300px;
}

@media only screen and (min-width: 56em) and (max-width: 64em) {
  .ce_image.aktionshaustueren_badge {
    top: -6rem;
    margin-top: 0;
    margin-bottom:-6rem;
    width: 50%;
  }
}

@media only screen and (max-width: 55.9375em) {
  .ce_image.pefc_badge {
    top: -8rem;
    margin-top: 0;
    margin-bottom:-8rem;
  }

  .ce_image.aktionshaustueren_badge {
    top: -8rem;
    margin-top: 0;
    margin-bottom:-8rem;
  }
}


@media only screen and (max-width: 30em) {
  .ce_image.aktionshaustueren_badge {
    top: -4rem;
    margin-top: 0;
    margin-bottom:-4rem;
    width: 50%;
  }
}

.ce_image.profil-a_badge {
  position: relative;
  top: -7rem;
  margin-bottom:-7rem;
  left: 4rem;
  width: 38%;
  height: auto;
  max-width: 260px;
}

@media only screen and (max-width: 55.9375em) {
  .ce_image.profil-a_badge {
    top: -5rem;
    margin-top: 0;
    margin-bottom:-5rem;
    min-width: 160px;
  }
}

.left--image-text {
  display: flex;
}

.left--image-text .ce_image {
  flex-basis: 25%
}

.left--image-text .ce_image .image_container {
  margin-right: 2.5rem;
}

.left--image-text .ce_text {
  flex-basis: 75%
}

.left--image-text .ce_text h4 {
  margin-top: 0;
}

@media only screen and (max-width: 55.9375em) {
  .left--image-text .ce_image .image_container {
    margin-right: 0;
  }

  .left--image-text .ce_text {
    padding-right: 0;
  }
}


.ce_text.text--indented-right,
.ce_list.text--indented-right,
.ce_headline.text--indented-right,
.ce_hyperlink.text--indented-right,
.ce_accordion.text--indented-right,
.ce_image.img--indented-right {
  margin-right: 6rem;
}

.ce_text.text--indented-left,
.ce_list.text--indented-left,
.ce_headline.text--indented-left,
.ce_hyperlink.text--indented-left,
.ce_accordion.text--indented-left,
.ce_image.img--indented-left {
  margin-left: 6rem;
}

@media only screen and (max-width: 90em) {
  .ce_text.text--indented-right,
  .ce_list.text--indented-right,
  .ce_headline.text--indented-right,
  .ce_hyperlink.text--indented-right,
  .ce_accordion.text--indented-right,
  .ce_image.img--indented-right {
    margin-right: 3rem;
  }

  .ce_text.text--indented-left,
  .ce_list.text--indented-left,
  .ce_headline.text--indented-left,
  .ce_hyperlink.text--indented-left,
  .ce_accordion.text--indented-left,
  .ce_image.img--indented-left {
    margin-left: 3rem;
  }
}

@media only screen and (max-width: 55.9375em) {
  .ce_accordion.text--indented-right,
  .ce_image.img--indented-right {
    margin-right: 0;
  }

  .ce_accordion.text--indented-left,
  .ce_image.img--indented-left {
    margin-left: 0;
  }

  .ce_image.img--indented-left.img--indented-right {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.ce_hyperlink.link--youtube.text--indented-left {
  margin-left: 6rem;
  padding-left: 0;
}

.ce_image.img--shifted-down,
.mod_rocksolid_slider.img--shifted-down {
  margin-top: 6rem;
}

@media only screen and (max-width: 55.9375em) {
  .ce_image.img--shifted-down,
  .mod_rocksolid_slider.img--shifted-down {
    margin-top: 0;
    margin-left: 0;
  }
}

.ce_image.img--shifted-flush {
  position: relative;
  top: -6rem;
  margin-bottom: -6rem;
}

@media only screen and (max-width: 55.9375em) {
  .ce_image.img--shifted-flush {
    top: 0;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 56em) and (max-width: 79.9375em) {
  .ce_image.img--shifted-up {
    margin-top: 6rem;
  }

  .ce_image.img--shifted-up-8 {
    position: relative;
    margin-top: 4rem;
  }
}

@media only screen and (min-width: 80em) {
  .ce_image.img--shifted-up {
    position: relative;
    top: -12rem;
    margin-bottom: -12rem;
  }

  .ce_image.img--shifted-up-8 {
    position: relative;
    top: -8rem;
    margin-bottom: -8rem;
  }
}



/* ///////////////////////////////////////////////////
/                   ICON LIST
/////////////////////////////////////////////////// */

.ce_list.promises--with-icons ul li,
.ce_list.jobtraining--with-icons ul li,
.ce_list.recruiting--with-icons ul li,
.ce_list.advisory--with-icons ul li,
.ce_list.glazing--with-icons ul li,
.ce_list.monteur--with-icons ul li,
.ce_list.aufmass--with-icons ul li,
.ce_list.azubi--with-icons ul li {
  padding-left: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 60px;
  min-height: 60px;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 55.9375em) {
  .ce_list.promises--with-icons ul li,
  .ce_list.jobtraining--with-icons ul li,
  .ce_list.recruiting--with-icons ul li,
  .ce_list.advisory--with-icons ul li,
  .ce_list.glazing--with-icons ul li, 
  .ce_list.monteur--with-icons ul li,
  .ce_list.aufmass--with-icons ul li,
  .ce_list.azubi--with-icons ul li {
    padding-left: 80px;
  }
}

@media only screen and (max-width: 55.9375em) {
  .ce_list.promises--with-icons ul li,
  .ce_list.jobtraining--with-icons ul li,
  .ce_list.recruiting--with-icons ul li,
  .ce_list.advisory--with-icons ul li,
  .ce_list.glazing--with-icons ul li, 
  .ce_list.monteur--with-icons ul li,
  .ce_list.aufmass--with-icons ul li,
  .ce_list.azubi--with-icons ul li {
    padding-left: 60px;
    background-size: 40px;
    min-height: 40px;
  }
}

.ce_list.promises--with-icons ul li p,
.ce_list.jobtraining--with-icons ul li p,
.ce_list.recruiting--with-icons ul li p,
.ce_list.advisory--with-icons ul li p,
.ce_list.glazing--with-icons ul li p, 
.ce_list.monteur--with-icons ul li p,
.ce_list.aufmass--with-icons ul li p,
.ce_list.azubi--with-icons ul li p {
  padding-left: 0;
}

.ce_list.promises--with-icons ul li:nth-child(1) {
  background-image: url("../../img/icons/qualitaetsversprechen_1.png");
}

.ce_list.promises--with-icons ul li:nth-child(2) {
  background-image: url("../../img/icons/qualitaetsversprechen_2.png");
}

.ce_list.promises--with-icons ul li:nth-child(3) {
  background-image: url("../../img/icons/qualitaetsversprechen_3.png");
}

.ce_list.promises--with-icons ul li:nth-child(4) {
  background-image: url("../../img/icons/qualitaetsversprechen_4.png");
}

.ce_list.promises--with-icons ul li:nth-child(5) {
  background-image: url("../../img/icons/qualitaetsversprechen_5.png");
}



.ce_list.jobtraining--with-icons ul li:nth-child(1) {
  background-image: url("../../img/icons/ausbildungdetails_1.png");
}

.ce_list.jobtraining--with-icons ul li:nth-child(2) {
  background-image: url("../../img/icons/ausbildungdetails_2.png");
}

.ce_list.jobtraining--with-icons ul li:nth-child(3) {
  background-image: url("../../img/icons/ausbildungdetails_3.png");
}



.ce_list.recruiting--with-icons ul li:nth-child(1) {
  background-image: url("../../img/icons/schritt_1.png");
}

.ce_list.recruiting--with-icons ul li:nth-child(2) {
  background-image: url("../../img/icons/schritt_2.png");
}
.ce_list.recruiting--with-icons ul li:nth-child(3) {
  background-image: url("../../img/icons/schritt_3.png");
}

.ce_list.recruiting--with-icons ul li:nth-child(4) {
  background-image: url("../../img/icons/schritt_4.png");
}



.ce_list.monteur--with-icons ul li:nth-child(1) {
  background-image: url("../../img/icons/arbeitshilfen.png");
}

.ce_list.monteur--with-icons ul li:nth-child(2) {
  background-image: url("../../img/icons/regional.png");
}
.ce_list.monteur--with-icons ul li:nth-child(3) {
  background-image: url("../../img/icons/verlaesslich.png");
}



.ce_list.aufmass--with-icons ul li:nth-child(1) {
  background-image: url("../../img/icons/arbeitszeitmodell.png");
}

.ce_list.aufmass--with-icons ul li:nth-child(2) {
  background-image: url("../../img/icons/regional.png");
}
.ce_list.aufmass--with-icons ul li:nth-child(3) {
  background-image: url("../../img/icons/verlaesslich.png");
}



.ce_list.azubi--with-icons ul li:nth-child(1) {
  background-image: url("../../img/icons/azubi_voraussetzungen.png");
}

.ce_list.azubi--with-icons ul li:nth-child(2) {
  background-image: url("../../img/icons/azubi_perspektive.png");
}
.ce_list.azubi--with-icons ul li:nth-child(3) {
  background-image: url("../../img/icons/azubi_zusatzangebote.png");
}



.ce_list.advisory--with-icons ul li:nth-child(1) {
  background-image: url("../../img/icons/ausstellung_1.png");
}

.ce_list.advisory--with-icons ul li:nth-child(2) {
  background-image: url("../../img/icons/ausstellung_2.png");
}

.ce_list.advisory--with-icons ul li:nth-child(3) {
  background-image: url("../../img/icons/ausstellung_3.png");
}



.ce_list.glazing--with-icons ul li:nth-child(1) {
  background-image: url("../../img/icons/verglasung_1.png");
}

.ce_list.glazing--with-icons ul li:nth-child(2) {
  background-image: url("../../img/icons/verglasung_2.png");
}

.ce_list.glazing--with-icons ul li:nth-child(3) {
  background-image: url("../../img/icons/verglasung_3.png");
}

.ce_list.glazing--with-icons ul li:nth-child(4) {
  background-image: url("../../img/icons/verglasung_4.png");
}



.has--shadow.block {
  overflow: visible !important;
}

.img--circular.has--shadow.block .image_container {
  box-shadow: 0px 0px 50px -5px rgba(0,0,0,0.5);
}

.img--circular-small.has--shadow.block .image_container {
  box-shadow: 0px 0px 30px -5px rgba(0,0,0,0.5);
}

.is--bg-white {
  background-color: #fff;
}

.is--bg-grey {
  background-color: #e4e4e4;
}

@media only screen and (max-width: 55.9375em) {
  .has--img-left {
    padding-top: 0;
  }

  .has--img-right {
    padding-bottom: 0;
  }
}

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

.is--centered .image_container,
.is--centered .image_container img {
  margin: 0 auto;
}

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

.is--left {
  text-align: left;
}

.is--right {
  text-align: right;
}




/* ///////////////////////////////////////////////////
/                   HEADER
/////////////////////////////////////////////////// */
header {
  width: 100%;
  background: linear-gradient(to top, rgba(241,241,241,0), rgba(241,241,241,1));
  overflow: visible;
  padding-top: 2%;
  position: fixed;
  z-index: 998;
  transition: all .5s ease-out;
  /*-webkit-transform: translate3d(0, 0, 0);
  transform : translate3d(0, 0, 0);*/
  padding-left: 8%;
  padding-right: 4%;
}

@media only screen and (max-width: 85.3125em) {
  header {
    position: relative;
  }
}

@media only screen and (max-width: 63.9375em) {
  header {
    padding-top: 0;
  }
}

@media only screen and (max-width: 55.9375em) {
  header {
    padding-left: 0;
    padding-right: 0;
  }
}

header.sticky {
  position: fixed;
  padding-top: 0;
  transition: all .5s ease-out;
}

header .inside {
  background-color: #000;
  overflow: visible;
  top: 5%;
  z-index: 999;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 55.9375em) {
  header .inside {
    margin: 0;
  }
}

header .wrapper--inner {
  position: relative;
  max-width: 1400px;
  width: 100%;
  overflow: visible;
  margin: 0 auto;
  padding: 2rem 0;
  transition: all .5s ease-out;
}

@media only screen and (max-width: 85.3125em) {
  header .wrapper--inner {
    padding: 0.6rem 0 0.5rem 0;
  }
}

@media only screen and (max-width: 22.4375em) {
  header .wrapper--inner {
    padding: 0 !important;
  }
}

header.sticky .wrapper--inner {
  padding: 0.6rem 0 0.5rem 0;
}

@media only screen and (max-width: 85.3125em) {
  header.sticky .wrapper--inner {
    padding: 0 !important;
  }
}

header .header__logo {
  position: absolute;
  top: 2.5rem;
  left: 0;
  z-index: 999;
  transition: all .5s ease-out;
  width: 260px;
  height: auto;
}

@media only screen and (max-width: 85.3125em) {
  header .header__logo {
    top: 1rem;
    width: 200px;
  }
}

@media only screen and (max-width: 30em) {
  header .header__logo {
    top: 1.5rem;
    width: 190px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 22.4375em) {
  header .header__logo {
    top: 1rem;
    width: 165px;
  }
}

@media only screen and (min-width: 30.0625em) and (max-width: 104.9375em) {
  header .header__logo {
    left: 3rem;
  }
}

header.sticky .header__logo {
  top: 1rem;
  width: 200px;
}

@media only screen and (max-width: 85.3125em) {
  header.sticky .header__logo {
    top: 1rem;
    width: 150px;
  }
}

@media only screen and (max-width: 30em) {
  header.sticky .header__logo {
    left: 50%;
    transform: translateX(-50%);
  }
}




/* ///////////////////////////////////////////////////
/                   NAVIGATION
/////////////////////////////////////////////////// */

.is--mobile {
  display: none !important;
}

@media only screen and (max-width: 79.9375em) {
  .is--mobile {
    display: block !important;
  }

  .is--desktop {
    display: none !important;
  }
}

.ios .is--mobile,
.android .is--mobile {
  display: block !important;
}

.ios .is--desktop,
.android .is--desktop {
  display: none !important;
}

#hamburger-menu {
  display: block;
  text-align: right;
  padding: 1.5rem 3rem;
}

@media only screen and (max-width: 30em) {
  #hamburger-menu {
    padding: 1.375rem 2rem;
  }
}

#hamburger-menu a i {
  color: #fff !important;
  font-size: 2rem;
}


.nav--main {
  transition: all ease-in-out .2s;
  transition: all cubic-bezier(.4, 0, .2, 1) .3s;
}

@media only screen and (max-width: 79.9375em) {
  .nav--main {
    display: none !important;
  }
}

.nav--main ul {
  display: flex;
  justify-content: flex-end;
  padding: 1.5rem 0 1rem 0;
}


@media only screen and (min-width: 80em) and (max-width: 104.9375em) {
  .nav--main ul {
    padding-right: 3rem;
  }
}

.nav--main ul li {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s ease-in-out;
  margin-left: 1.375rem;
  padding-bottom: .25rem;
}

.nav--main ul li:first-child {
  margin-left: 0rem;
}

@media only screen and (max-width: 1536px) {
  .nav--main ul li {
    margin-left: 0.75rem;
    font-size: 1.2rem;
  }
}

.nav--main ul li a,
.nav--main ul li span,
.nav--main ul li strong {
  text-decoration: none;
  white-space: nowrap;
  padding: 0 0 .5rem 0;
  transition: all ease-in-out .2s;
  transition: all cubic-bezier(.4, 0, .2, 1) .3s;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1rem;
  color: #777;
}

@media only screen and (max-width: 1536px) {
  .nav--main ul li a,
  .nav--main ul li span,
  .nav--main ul li strong {
    letter-spacing: 0px;
  }
}

.nav--main ul li span {
  padding: 0;
}

.nav--main ul li .active,
.nav--main ul li .trail,
.nav--main ul li a:hover {
  border-bottom: 2px solid #f1f1f1;
  transition: none;
}

.nav--main ul li.submenu > a span::after,
.nav--main ul li.submenu > strong::after {
  font-family: "IcoFont";
  content: "\ea73";
  margin-left: .25rem;
}

.nav--main ul li a:hover {
  border-bottom: 2px solid #3f3f3f;
}

.nav--main ul li .level_2 {
  position: absolute;
  margin-top: .5rem;
}

.nav--main ul li .level_3,
.nav--main ul li .level_2 {
  display: none;
  padding: 0;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  margin-left: -2.5rem;
  z-index: 99999;
  background-color: #000;
}

.nav--main ul li .level_3 li,
.nav--main ul li .level_2 li {
  float: none;
  display: block;
  width: 100%;
  font-size: 1rem;
  /*text-transform: none;*/
  text-align: left;
  margin-left: 0rem;
  padding: 0;
  line-height: 1;
  border-bottom: 2px solid #3f3f3f;
}



.nav--main ul li .level_3 li:last-child, 
.nav--main ul li .level_2 li:last-child {
  border: none;
}

.nav--main ul li .level_3 li:hover a,
.nav--main ul li .level_2 li:hover a,
.nav--main ul li .level_3 li:hover span,
.nav--main ul li .level_2 li:hover span,
.nav--main ul li .level_3 li:hover strong,
.nav--main ul li .level_2 li:hover strong {
  color: #fff;
}

.nav--main ul li .level_3 li a,
.nav--main ul li .level_2 li a,
.nav--main ul li .level_3 li.active strong,
.nav--main ul li .level_2 li.active strong {
  padding: 1rem;
  border-bottom: none !important;
}


.nav--main ul li .level_3 li a,
.nav--main ul li .level_2 li a,
.nav--main ul li .level_3 li span,
.nav--main ul li .level_2 li span,
.nav--main ul li .level_3 li strong,
.nav--main ul li .level_2 li strong {
  display: block;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 1rem;
  color: #aaa;
  border-bottom: none !important;
}


.nav--main ul li .level_3 li.active strong,
.nav--main ul li .level_2 li.active strong {
  color: #fff;
}



.nav--main ul li.submenu:hover ul.level_2 {
  display: block;
}

.nav--main ul li.submenu:hover ul.level_2 ul.level_3 {
  display: block;
}

.nav--main ul li.submenu.about:hover ul.level_2 {
  display: none;
}




/* ///////////////////////////////////////////////////
/                   MAIN CONTENT
/////////////////////////////////////////////////// */

#container {
  padding-top: 0;
}

@media only screen and (min-width: 85.375em) {
  #container {
    padding-top: 6rem !important;
  }
}

#wrapper {
  margin: 0 auto;
}

@media only screen and (max-width: 48em) {
  #wrapper {
    width: 100% !important;
    overflow: hidden;
  }
}

.wrapper--inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.wrapper--inner-narrow {
  display: block;
  max-width: 1200px !important;
  width: 80% !important;
  margin: 0 auto;
}

@media only screen and (max-width: 64em) {
  .wrapper--inner-narrow {
    max-width: none;
    width: 100% !important;
  }
}

.wrapper--inner-wide {
  display: block;
  width: 90%;
  margin: 0 auto;
}

.mod_article.is--fullwidth {
  width: 100% !important;
  max-width: 100%;
  clear: both;
  margin: 0 auto;
  overflow: hidden;
  /*margin-bottom: 6rem;*/
  padding: 6rem 0;
}

@media only screen and (max-width: 105em) {
  .mod_article.is--fullwidth {
    max-width: none;
    padding: 4rem 4% 4rem 8%;
  }
}

@media only screen and (max-width: 55.9375em) {
  .mod_article.is--fullwidth {
    width: auto;
    padding: 3rem 0;
  }
}

.mod_article:not(.is--fullwidth) {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  /*margin-bottom: 5rem;*/
  padding: 6rem 0;
}

#bewerbung.mod_article:not(.is--fullwidth) {
  padding-top: 16rem;
}

#azubibewerbung.mod_article:not(.is--fullwidth) {
  padding-top: 10rem;
}

@media only screen and (max-width: 105em) {
  .mod_article:not(.is--fullwidth) {
    max-width: none;
    padding: 4rem 4% 4rem 8%;
  }
}

@media only screen and (max-width: 55.9375em) {
  .mod_article:not(.is--fullwidth) {
    width: auto;
    padding: 3rem 0;
  }

  #bewerbung.mod_article:not(.is--fullwidth) {
    padding-top: 8rem;
  }

  #azubibewerbung.mod_article:not(.is--fullwidth) {
    padding-top: 8rem;
  }
}




/* ///////////////////////////////////////////////////
/                   GRID
/////////////////////////////////////////////////// */

.col--50 {
  width: 48%;
  float: left;
}

.col--50:first-child {
  margin-right: 2%;
}

.col--50:last-child {
  margin-left: 2%;
}

.col--33 {
  width: 33.333%;
  float: left;
}


/* ///////////////////////////////////////////////// */

@media only screen and (max-width: 55.9375em) {
  .columns.columns--nobreak {
    display: flex;
    flex-flow: row wrap;
    clear: both;
  }
}

/* ///////////////////////////////////////////////// */

@media only screen and (min-width: 56em) {
  [class*="col--"] {
    float: left;
  }

  [class*="col--"]:first-child {
    clear: left;
  }

  [class*="col--"]:last-child {
    margin-right: 0;
  }

  .columns {
    display: flex;
    flex-flow: row wrap;
    clear: both;
  }
}

@media only screen and (min-width: 56em) and (max-width: 72em) {
  .columns.single-column--tablet {
    display: block;
    flex-flow: row nowrap;
  }
}


/* ///////////////////////////////////////////////// */

@media only screen and (max-width: 55.9375em) {
  .columns.columns--swap-mobile {
    display: flex;
    flex-flow: column;
  }

  .col--1-2 {
    width: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: 3rem;
  }

  .col--1-2:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }

  .columns.columns--swap-mobile .col--1-2:first-child {
    order: 2;
    margin-bottom: 0;
  }

  .columns.columns--swap-mobile .col--1-2:last-child {
    order: 1;
    margin-bottom: 3rem;
  }

  .columns--nobreak .col--1-2 {
    flex: 1;
    width: 48%;
    margin-right: 4%;
  }

  .columns--nobreak .col--1-2:last-child {
    margin-right: 0;
  }

  #formular {
    padding-top: 9rem;
  }
}

@media only screen and (min-width: 56em) {
  .col--1-2 {
    flex: 1;
    width: 46%;
    margin-right: 8%;
  }

  .gap--small .col--1-2 {
    width: 48%;
    margin-right: 4%;
  }

  .col--1-2:last-child {
    margin-right: 0;
  }
}

@media only screen and (min-width: 56em) and (max-width: 72em) {
  .columns.single-column--tablet .col--1-2 {
    flex: 0 1 auto;
    width: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: 3rem;
  }

  .columns.single-column--tablet .col--1-2:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }
}


/* ///////////////////////////////////////////////// */

@media only screen and (max-width: 55.9375em) {
  .col--1-3,
  .col--2-3 {
    width: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: 3rem;
  }

  .col--1-3:last-child,
  .col--2-3:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 48em) and (max-width: 55.9375em) {
  .columns--nobreak .col--1-3 {
    width: 28%;
    margin-right: 8%;
    margin-bottom: 0;
  }

  .columns--nobreak.gap--small .col--1-3 {
    width: 30.6666%;
    margin-right: 4%;
  }

  .columns--nobreak .col--1-3:last-child {
    margin-right: 0;
  }

  .columns--nobreak .col--2-3 {
    width: 64%;
    margin-right: 8%;
    margin-bottom: 0;
  }

  .columns--nobreak.gap--small .col--2-3 {
    width: 65.3333%;
    margin-right: 4%;
  }

  .columns--nobreak .col--2-3:last-child {
    margin-right: 0;
  }
}

@media only screen and (min-width: 56em) {
  .col--1-3 {
    width: 28%;
    margin-right: 8%;
  }

  .gap--small .col--1-3 {
    width: 30.6666%;
    margin-right: 4%;
  }

  .col--1-3:last-child {
    margin-right: 0;
  }

  .col--2-3 {
    width: 64%;
    margin-right: 8%;
  }

  .gap--small .col--2-3 {
    width: 65.3333%;
    margin-right: 4%;
  }

  .col--2-3:last-child {
    margin-right: 0;
  }
}

@media only screen and (min-width: 56em) and (max-width: 72em) {
  .columns.single-column--tablet .col--1-3,
  .columns.single-column--tablet .col--2-3 {
    flex: 0 1 auto;
    width: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: 3rem;
  }

  .columns.single-column--tablet .col--1-3:last-child,
  .columns.single-column--tablet .col--2-3:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }
}


/* ///////////////////////////////////////////////// */

@media only screen and (max-width: 55.9375em) {
  .col--2-5,
  .col--3-5 {
    width: 100%;
    float: none;
    margin-bottom: 3rem;
  }

  .col--2-5:last-child,
  .col--3-5:last-child {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 56em) {
  .col--2-5 {
    width: 36%;
    margin-right: 8%;
  }

  .col--2-5:last-child {
    margin-right: 0;
  }

  .col--3-5 {
    width: 56%;
    margin-right: 8%;
  }

  .col--3-5:last-child {
    margin-right: 0;
  }
}




/* ///////////////////////////////////////////////////
/                   GALLERY
/////////////////////////////////////////////////// */

.ce_gallery ul li {
  float: left;
  width: 20%;
  border-right: 0rem solid #f1f1f1;
  border-bottom: 0rem solid #f1f1f1;
}

@media only screen and (max-width: 41.625em) {
  .ce_gallery ul li {
    width: 33.333333%;
  }
}

.ce_gallery > ul li.col_first {
  clear: none;
}

.ce_gallery figure.image_container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ce_gallery figure.image_container:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.ce_gallery figure.image_container img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

.ce_gallery figure.image_container .gallery__overlay {
  display: none;
}

.gallery__overlay p.overlay__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.gallery__overlay p.overlay__text i {
  color: #777;
  font-size: 3.5rem;
}

.ce_gallery figure.image_container:hover .gallery__overlay {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.7);
  top: 0;
}

#cboxPrevious {
  background: url("../../img/icons/colorbox_controls.png") no-repeat top left !important;
}

#cboxNext {
  background: url("../../img/icons/colorbox_controls.png") no-repeat top right !important;
}

#cboxClose {
  background: url("../../img/icons/colorbox_controls.png") no-repeat top center !important;
}




/* ///////////////////////////////////////////////////
/                   CATEGORY SELECTION
/////////////////////////////////////////////////// */

.categories--shifted {
  position: relative;
  bottom: -14rem;
  margin-top: -14rem;
}

.category--hover {
  position: relative;
}

@media only screen and (max-width: 55.9375em) {
  .category--hover {
    margin: 0 2rem;
  }
}

@media only screen and (max-width: 30em) {
  .category--hover {
    margin: 0 1rem;
  }
}

.category--hover figure {
  /*background: #a49c88;*/
}

.category--hover figure img {
  opacity: 0.9;
  filter: grayscale(30%);
  transition: filter ease-in-out 0.3s;
  /*-webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;*/
}

.category--hover figure:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

.category--hover figure figcaption::before,
.category--hover figure figcaption::after {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  content: '';
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}

@media only screen and (min-width: 56em) and (max-width: 90em) {
  .category--hover figure figcaption::before,
  .category--hover figure figcaption::after {
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
  }
}

@media only screen and (min-width: 48em) and (max-width: 55.9375em) {
  .category--hover figure figcaption::before,
  .category--hover figure figcaption::after {
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
  }
}

@media only screen and (min-width: 30.0625em) and (max-width: 47.9375em) {
  .category--hover figure figcaption::before,
  .category--hover figure figcaption::after {
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
  }
}

@media only screen and (max-width: 30em) {
  .category--hover figure figcaption::before,
  .category--hover figure figcaption::after {
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
  }
}

.category--hover figure figcaption::before {
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  /*-webkit-transform: scale(0, 1);
  transform: scale(0, 1);*/
}

.category--hover figure figcaption::after {
  border-right: 3px solid #fff;
  border-left: 3px solid #fff;
  /*-webkit-transform: scale(1, 0);
  transform: scale(1, 0);*/
}

.category--hover figure h1 {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
  color: #fff;
  display: inline-block;
  padding: 0;
  position: absolute;
  text-align: center;
  top: 40%;
  width: 100%;
}

.category--hover figure h1 {
  font-family: 'Lato', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 0 0.6rem #222;
  line-height: 1.0;
}

.category--hover figure h1 span {
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: none;
  text-shadow: none;
  color: #000;
  line-height: 1.0;
  background-color: #fff;
  padding: .25rem .5rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
}

@media only screen and (min-width: 80.0625em) and (max-width: 90em) {
  .category--hover figure h1 {
    font-size: 2.5rem;
  }

  .category--hover figure h1 span {
    font-size: 1.25rem;
  }
}

@media only screen and (min-width: 56em) and (max-width: 80em) {
  .category--hover figure h1 {
    font-size: 2rem;
  }

  .category--hover figure h1 span {
    font-size: 1.125rem;
  }
}

@media only screen and (min-width: 40em) and (max-width: 55.9375em) {
  .category--hover figure h1 {
    font-size: 2.5rem;
  }

  .category--hover figure h1 span {
    font-size: 1.25rem;
  }
}

@media only screen and (min-width: 30.0625em) and (max-width: 39.9375em) {
  .category--hover figure h1 {
    font-size: 2.25rem;
  }

  .category--hover figure h1 span {
    font-size: 1.125rem;
  }
}

@media only screen and (max-width: 30em) {
  .category--hover figure h1 {
    font-size: 1.625rem;
  }

  .category--hover figure h1 span {
    font-size: 1rem;
  }
}

.category--hover figure a,
.category--hover figure a:active,
.category--hover figure a:focus,
.category--hover figure a:hover {
  color: #fff;
}

.category--hover figure:hover figcaption::before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}

.category--hover figure:hover figcaption::after {
  -webkit-transform: scale(1,0);
  transform: scale(1,0);
}

.category--hover figure:hover h1 {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}







.facts--with-icons h1 {
  color: #999;
  font-size: 2.75rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}

@media only screen and (max-width: 64em) {
  .facts--with-icons h1 {
    font-size: 2.125rem;
  }
}

.facts--with-icons h2 {
  color: #999;
  font-size: 1.5rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 64em) {
  .facts--with-icons h2 {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
  }
}

.facts--with-icons .facts__icon {
  max-width: 60px;
  margin: 0 auto .5rem auto;
  opacity: 0.4;
}

.facts--with-icons .facts__area::after {
  content: '\006D\00B2';
}





.content--main {
  width: 100%;
  padding: 0 0 5rem 0;
}

@media only screen and (max-width: 48em) {
  .content--main {
    width: 100%;
    padding: 0 2rem;
  }
}

.is--row {
  clear: both;
}

@media only screen and (max-width: 48em) {
  .is--row {
    margin: 1rem 0;
    clear: both;
  }
}

.content--borderbox {
  border: 0.5rem solid #fff;
  padding: 2rem;
  margin: 0 0 5rem 0;
}

@media only screen and (max-width: 55.9375em) {
  .content--borderbox {
    margin-left: 2rem;
    margin-right: 2rem;
    padding-left: 0;
    padding-right: 0;
  }
}


/* ///////////////////////////////////////////////////
/                   FEATURE-BOX
/////////////////////////////////////////////////// */
.column--with-icon h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.column--with-icon .image_container img {
  width: 90px;
  height: auto;
}

@media only screen and (max-width: 64em) {
  .column--with-icon .image_container img {
    width: 70px;
    height: auto;
  }
}


/* ///////////////////////////////////////////////////
/                   GOOGLE-MAPS
/////////////////////////////////////////////////// */
.ce_dlh_googlemaps.niederlassungen-map {
  padding-top: 4rem;
  -webkit-filter: grayscale(70%);
  filter: grayscale(70%);
}
.ce_dlh_googlemaps.niederlassungen-map #dlh_googlemap_1 {
  width: 100vw !important;
  height: 40rem !important;
  padding-bottom: 0 !important;
}




/* ///////////////////////////////////////////////////
/                   TITELBILD
/////////////////////////////////////////////////// */


.titelbild,
.titelbild-slider {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  height: 85vh;
}

@media only screen and (max-width: 80em) {
  .titelbild,
  .titelbild-slider {
    height: 70vh;
  }
}

.titelbild {
/*.slider--willkommen {*/
  padding-left: 8% !important;
  padding-right: 4% !important;
}

@media only screen and (max-width: 55.9375em) {
  .titelbild {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media only screen and (max-width: 52.125em) and (orientation: portrait) {
  .titelbild {
    height: 50vh;
    overflow: visible !important;
    margin-bottom: 2rem !important;
  }

  .titelbild-slider {
    height: 50vh;
    overflow: visible !important;
    margin-bottom: 2rem !important;
  }
}

.titelbild .slogan--vertical,
.slider--willkommen .slogan--vertical {
  position: absolute;
  bottom: 0rem;
  left: -3.5rem;
  transform: rotate(-90deg);
  transform-origin: left;
  color: #333;
  opacity: .5;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 2px;
  pointer-events: none;
}

@media only screen and (max-width: 85.375em) {
  .titelbild .slogan--vertical,
  .slider--willkommen .slogan--vertical {
    left: -3rem;
  }
}


@media only screen and (max-width: 80em) {
  .titelbild .slogan--vertical,
  .slider--willkommen .slogan--vertical {
    font-size: 1.125rem;
    left: -2.25rem;
  }
}

@media only screen and (max-width: 55.9375em) {
  .titelbild .slogan--vertical,
  .slider--willkommen .slogan--vertical {
    display: none;
  }
}

.slider--willkommen {
  overflow: visible !important;
  padding: 0 !important;
  margin: 0 auto;
}

.slider--willkommen .mod_rocksolid_slider,
.slider--willkommen .rsts-crop {
  overflow: visible;
}

.slider--willkommen .rsts-slides,
.slider--willkommen .rsts-slides .rsts-slide {
  transform: none !important;
  background-color: #f1f1f1;
  overflow: visible;
}

.slider--willkommen .rsts-nav {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

@media only screen and (max-width: 52.125em) {
  .slider--willkommen .rsts-nav {
    display: none;
  }
}

.slider--willkommen .rsts-nav-bullets a {
  background-color: #fff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  height: 3px;
  width: 30px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  transition: all .5s ease-in-out;
}

.slider--willkommen .rsts-nav-bullets a:hover,
.slider--willkommen .rsts-nav-bullets a.active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 60px;
}

.titelbild .ce_rsce_headerimage {
/*  width: 90%;*/
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  height: 100%;
  text-align: right;
  margin: 0 auto;
  overflow: visible;
}

.titelbild-slider .ce_rsce_slider-headerimage {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  height: 100%;
  text-align: right;
  margin: 0 auto;
  overflow: visible;
}

@media only screen and (max-width: 89.9375em) {
  .slider--willkommen {
    width: 100% !important;
  }

  .titelbild .ce_rsce_headerimage {
    width: 100%;
  }
}

@media only screen and (max-width: 48em) and (orientation: portrait) {
  .titelbild .ce_rsce_headerimage,
  .titelbild-slider .ce_rsce_slider-headerimage {
    height: 100%;
  }
}

.bgimage--position-top {
  background-position: center top !important;
}

.bgimage--position-bottom {
  background-position: center bottom !important;
}

.bgimage--position-center {
  background-position: center center !important;
}

.ce_rsce_headerimage .ce_text,
.ce_rsce_slider-headerimage .ce_text {
  width: 85%;
  max-width: 1400px;
  position: absolute;
  /*top: 65%;*/
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 52.125em) {
  .ce_rsce_headerimage .ce_text,
  .ce_rsce_slider-headerimage .ce_text {
    width: 100%;
  }

  .ce_rsce_headerimage .ce_text,
  .ce_rsce_slider-headerimage .ce_text {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media only screen and (max-width: 52.125em) and (orientation: portrait) {
  .ce_rsce_headerimage .ce_text,
  .ce_rsce_slider-headerimage .ce_text {
    bottom: -1.5rem;
    /*text-align: center;*/
  }
}

@media only screen and (max-width: 30em) {
  .ce_rsce_headerimage .ce_text,
  .ce_rsce_slider-headerimage .ce_text {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/*.ce_rsce_slider-headerimage .ce_text {
  position: absolute;
  bottom: -4rem;
  right: 6rem;
  max-width: 1400px;
  background-color: #fff;
  padding: 3rem;
}*/

.ce_rsce_headerimage .ce_text h1,
.ce_rsce_slider-headerimage .ce_text h1 {
  color: #fff;
  font-size: 4.25rem;
  line-height: 1.2;
  white-space: normal;
  font-weight: 500;
  text-shadow: 0 0 0.35rem #333;
  margin-bottom: 3rem;
}

@media only screen and (max-width: 80em) {
  .ce_rsce_headerimage .ce_text h1,
  .ce_rsce_slider-headerimage .ce_text h1 {
    font-size: 3.75rem;
  }
}

@media only screen and (max-width: 64em) {
  .ce_rsce_headerimage .ce_text h1,
  .ce_rsce_slider-headerimage .ce_text h1 {
    font-size: 3.5rem;
  }
}

@media only screen and (max-width: 52.125em) {
  .ce_rsce_headerimage .ce_text h1,
  .ce_rsce_slider-headerimage .ce_text h1 {
    font-size: 3.125rem;
  }
}

@media only screen and (max-width: 48em) {
  .ce_rsce_headerimage .ce_text h1,
  .ce_rsce_slider-headerimage .ce_text h1 {
    font-size: 2.875rem;
  }
}

@media only screen and (max-width: 35.5em) {
  .ce_rsce_headerimage .ce_text h1,
  .ce_rsce_slider-headerimage .ce_text h1 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

@media only screen and (max-width: 30em) {
  .ce_rsce_headerimage .ce_text h1,
  .ce_rsce_slider-headerimage .ce_text h1 {
    font-size: 2.125rem;
    line-height: 1.1;
    margin-bottom: 2rem;
  }
}

.ce_rsce_headerimage .ce_text h2,
.ce_rsce_slider-headerimage .ce_text h2 {
  display: inline;
  line-height: 1.7;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
  color: #000;
  background-color: #fff;
/*  background-color: rgba(255, 255, 255, 0.9);*/
  padding: .25rem .5rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
}


@media only screen and (min-width: 120.0625em) {
  .ce_rsce_headerimage .ce_text h2,
  .ce_rsce_slider-headerimage .ce_text h2 {
    font-size: 2.75rem;
    letter-spacing: 1px;
  }
}

@media only screen and (max-width: 120em) {
  .ce_rsce_headerimage .ce_text h2,
  .ce_rsce_slider-headerimage .ce_text h2 {
    font-size: 2.375rem;
  }
}

@media only screen and (max-width: 80em) {
  .ce_rsce_headerimage .ce_text h2,
  .ce_rsce_slider-headerimage .ce_text h2 {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 52.125em) {
  .ce_rsce_headerimage .ce_text h2,
  .ce_rsce_slider-headerimage .ce_text h2 {
    font-size: 1.75rem;
  }
}

@media only screen and (max-width: 35.5em) {
  .ce_rsce_headerimage .ce_text h2,
  .ce_rsce_slider-headerimage .ce_text h2 {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

@media only screen and (max-width: 30em) {
  .ce_rsce_headerimage .ce_text h2,
  .ce_rsce_slider-headerimage .ce_text h2 {
    font-size: 1.375rem;
    line-height: 1.85;
  }

  .ce_rsce_headerimage .ce_text h2 br,
  .ce_rsce_slider-headerimage .ce_text h2 br {
    content: ' ';
    display: none;
  }

  .ce_rsce_headerimage .ce_text h2 br::after,
  .ce_rsce_slider-headerimage .ce_text h2 br::after {
    content: ' ';
  }
}

.ce_rsce_headerimage .ce_hyperlink.header__next,
.ce_rsce_slider-headerimage .ce_hyperlink.header__next {
  position: absolute;
  width: 5%;
  max-width: 80px;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 63.9375em) {
  .ce_rsce_headerimage .ce_hyperlink.header__next,
  .ce_rsce_slider-headerimage .ce_hyperlink.header__next {
    display: none;
  }
}

@media only screen and (min-width: 85.375em) {
  .parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media only screen and (min-width: 90em) {
  .parallax {
    background-size: 93% !important;
  }
}

@media only screen and (min-width: 48em) and (max-width: 85.3125em) {
  .parallax {
    background-attachment: scroll;
  }
}




/* ///////////////////////////////////////////////////
/                   LINK-ANIMATION
/////////////////////////////////////////////////// */
.link--line-anim a {
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.125rem;
  font-weight: 700;
  color: #777;
  transition: color .2s ease;
  padding: 3px 0;
  margin-top: 1.0rem;
  margin-bottom: 1.0rem;
}

.link--line-anim a::after,
.link--line-anim a::before {
  content: ''; 
  position: absolute;
  top: calc(100% + 5px);
  width: 0;
  right: 0;
  height: 3px;
}

.link--line-anim a::before {
  transition: width .4s cubic-bezier(0.51, 0.18, 0, 0.88) .1s;
  background: #f44336;
}

.ce_hyperlink.link--line-anim a::after {
  transition: width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
  background: #f44336;
}

.link--line-anim a:hover {
  color: #aaa;    
}

.link--line-anim a:hover::after,
.link--line-anim a:hover::before {
  width: 100%;
  left: 0;
}




/* ///////////////////////////////////////////////////
/                   SLIDER
/////////////////////////////////////////////////// */
.slider--startseite {
  /*padding: 0 5.625rem;*/
  width: 90% !important;
  margin: 6rem auto;
  /*margin-bottom: 6rem;*/
}
/*
@media only screen and (max-width: 48em) {
  .slider--startseite {
    padding: 0;
  }
}

@media only screen and (max-width: 30em) {
  .slider--startseite {
    margin-bottom: 4rem;
  }
}

.slider--startseite > *,
.slider--startseite.rsts-skin-default.rsts-type-fade .rsts-slide {
  background: transparent;
  background-color: transparent;
}


.slider--startseite .ce_headline,
.slider--startseite .ce_text,
.slider--startseite .ww--single-bg {
  height: 721px;
}

@media only screen and (max-width: 1120px) {
  .slider--startseite .ce_headline,
  .slider--startseite .ce_text,
  .slider--startseite .ww--single-bg {
    height: 550px;
  }
}

@media only screen and (max-width: 1030px) {
  .slider--startseite .ce_headline,
  .slider--startseite .ce_text,
  .slider--startseite .ww--single-bg {
    height: 500px;
  }
}

@media only screen and (max-width: 48em) {
  .slider--startseite .ce_headline,
  .slider--startseite .ce_text,
  .slider--startseite .ww--single-bg {
    height: auto;
  }
}

.slider--startseite h1.ce_headline {
  position: absolute;
  left: 4rem;
  top: 8rem;
  z-index: 2;
  height: auto;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  font-size: 6.0rem;
  line-height: 1.137;
  color: #000;
}

@media only screen and (max-width: 1120px) {
  .slider--startseite h1.ce_headline {
    top: 3.5rem;
  }
}

@media only screen and (max-width: 1030px) {
  .slider--startseite h1.ce_headline {
    top: 2rem;
  }
}

@media only screen and (max-width: 48em) {
  .slider--startseite h1.ce_headline {
    position: relative;
    top: inherit;
    width: 90%;
    margin: 40vh 0 0 5%;
    background: #fff;
    padding: 1.125rem;
  }
}

@media only screen and (max-width: 1120px) {
  .slider--startseite h1.ce_headline {
    font-size: 4.5rem
  }
}

@media only screen and (max-width: 1030px) {
  .slider--startseite h1.ce_headline {
    font-size: 3.8rem
  }
}

@media only screen and (max-width: 48em) {
  .slider--startseite h1.ce_headline {
    font-size: 2.125rem;
    line-height: 1.176
  }
}

.slider--startseite .ce_text.is--block {
  display: block;
  width: 25%;
  float: left;
  padding: 25rem 4rem 2rem 4rem;
  background: #fff;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1120px) {
  .slider--startseite .ce_text.is--block {
    padding: 22rem 2rem 2rem 2rem;
  }
}

@media only screen and (max-width: 1030px) {
  .slider--startseite .ce_text.is--block {
    padding: 16rem 2rem 2rem 2rem;
  }
}

@media only screen and (max-width: 48em) {
  .slider--startseite .ce_text.is--block {
    padding: 0 1.125rem 1.125rem 1.125rem;
    width: 90%;
    margin: 0 0 0 5%;
  }
}

.slider--startseite .ce_text.is--block p {
  font-size: 1.25rem;
  line-height: 1.55;
  color: #333;
}

@media only screen and (max-width: 48em) {
  .slider--startseite .ce_text.is--block p {
    font-size: 1rem;
  }
}

.slider--startseite .ce_text.is--block a {
  display: inline-block;
}

.slider--startseite .ww--single-bg {
  display: block;
  width: 75%
  float: left;
  background-size: 75% !important;
  background-position: center;
}

@media only screen and (max-width: 48em) {
  .slider--startseite .ww--single-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    z-index: 0;
  }
}
*/



/* ///////////////////////////////////////////////////
/                   PRODUCT-SLIDER
/////////////////////////////////////////////////// */

.slider--products {
  margin: 0;
}

.slider--products .ce_text.product__text {
  display: block;
  width: 100%;
  min-height: 28rem;
  float: left;
  margin: 10rem 0 5rem 0;
  padding: 3rem 3rem 2rem 50%;
  background: #fff;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 85.375em) {
  .slider--products .ce_text.product__text {
    margin: 5rem 0;
    min-height: 0;
    padding: 3rem 3rem 3rem 50%;
  }
}

@media only screen and (max-width: 63em) {
  .slider--products .ce_text.product__text {
    margin: 0;
    min-height: 0;
    padding: 3rem 3rem 3rem 50%;
  }
}

@media only screen and (max-width: 41em) {
  .slider--products .ce_text.product__text {
    display: block;
    width: auto;
    min-height: 0;
    float: none;
    margin: 0;
    padding: 12rem 2rem 4rem 2rem;
  }
}

.slider--products .ce_text.product__text h2 {
  color: #232323;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.1466;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 63em) {
  .slider--products .ce_text.product__text h2 {
    font-size: 2rem;
  }
}

.slider--products .ce_text.product__text p {
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 0;
}

.slider--products .ce_text.product__text table {
  width: 100%;
  font-size: 0.875rem;
  margin: 0;
  margin-top: 1.5rem;
}

.slider--products .ce_text.product__text tr {
  border-bottom: 1px solid #ccc;
}

.slider--products .ce_text.product__text th {
  font-weight: 700;
  padding: 0.375rem 3rem 0.375rem 0;
  white-space: nowrap;
}

.slider--products .ce_text.product__text td {
  padding: 0.375rem 0;
}

.slider--products .ce_image.product__img {
  position: absolute;  
  left: 0;
  top: 0;
  width: 50%;
  height: auto;
  z-index: 2;
}

@media only screen and (max-width: 63em) {
  .slider--products .ce_image.product__img {
    margin-top: 4rem;
  }
}

@media only screen and (max-width: 41em) {
  .slider--products .ce_image.product__img {
    position: relative;  
    left: auto;
    top: auto;
    width: 100%;
    bottom: -10rem;
    margin-top: -10rem;
  }
}




/* //////////////// NACHHALTIGKEIT //////////////// */

.slider--certs {
  background: #fff;
  /*border: 8px solid #fff;*/
}

.slider--certs .ce_image.cert__logo {
  float: left;
  width: 35%;
  height: auto;
  padding: 3rem 3rem;
}

@media only screen and (max-width: 35.4375em) {
  .slider--certs .ce_image.cert__logo {
    float: none;
    position: relative;
    width: auto;
    max-width: 22rem;
    margin: 0 auto;
    height: auto;
    padding: 2rem 3rem 1rem 3rem;
  }
}

@media only screen and (min-width: 35.5em) and (max-width: 55.9375em) {
  .slider--certs .ce_image.cert__logo {
    padding: 2rem 1rem;
  }
}

@media only screen and (min-width: 56em) and (max-width: 79.9375em) {
  .slider--certs .ce_image.cert__logo {
    padding: 2rem 1rem;
  }

  .slider--certs .ce_image.cert__logo .image_container {
    max-width: 18rem;
    margin: 0 auto;
  }
}

.slider--certs .cert__details {
  float: left;
  display: block;
  width: 65%;
  min-height: 22rem;
  padding: 3rem 5rem;
  overflow: hidden;
}

@media only screen and (max-width: 35.4375em) {
  .slider--certs .cert__details {
    float: none;
    display: block;
    width: auto;
    padding: 0 0 4rem 0;
  }
}

@media only screen and (min-width: 35.5em) and (max-width: 55.9375em) {
  .slider--certs .cert__details {
    min-height: 0;
    padding: 1rem 0 4rem 0;
  }
}

@media only screen and (min-width: 56em) and (max-width: 79.9375em) {
  .slider--certs .cert__details {
    min-height: 0;
    padding: 1rem 2rem 4rem 0;
  }
}

.slider--certs .cert__details .ce_download {
  margin-top: 1.5rem;
}

@media only screen and (max-width: 47.9375em) {
  .slider--certs .cert__details .ce_download span.size {
    display: none;
  }
}

@media only screen and (min-width: 56em) and (max-width: 63.9375em) {
  .slider--certs .cert__details .ce_download span.size {
    display: none;
  }
}




/* ///////////////////////////////////////////////////
/                   DOWNLOADS
/////////////////////////////////////////////////// */
.mod_login label {
  width: 100%;
  font-size: .85rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: .4rem;
  float: none;
}

.mod_login input[type="text"], 
.mod_login input[type="password"] {
  border: none;
  -webkit-appearance: none;
  background: #fff;
  padding: .8rem .4rem .8rem 1rem;
  font-size: 1.2rem;
  color: #4d5f43;
  margin-bottom: .75rem;
  width: 100%
}

.mod_login {
  margin-top: 1.5rem;
}

.mod_login p.error {
  color: #ff0000;
}

.mod_login p.error::before {
  font-family: "IcoFont";
  content:'\f025';
  margin-right: 0.375rem;
}


/* ///////////////////////////////////////////////////
/                   DOWNLOADS
/////////////////////////////////////////////////// */
.ce_download p.download-element {
  font-size: 1rem;
  line-height: 1.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ccc;
}

.ce_download p.download-element.ext-pdf::before {
  display: inline-block;
  font-family: "IcoFont";
  font-size: 1.5rem;
  content: "\eb1e";
  color: #d21518;
  margin-right: 0.375rem;
}

.ce_download p a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  color: #777;
}

.ce_download p a:hover {
  color: #aaa;
}

.ce_download span.size {
  float: right;
  text-align: right;
}

.ce_downloads.file--locked .download-element span.size::after {
  font-family: "IcoFont";
  content: "\ef7a";
  margin-left: 2rem;
}




/* ///////////////////////////////////////////////////
/                   TABS
/////////////////////////////////////////////////// */
/*.ce_tabs {
  margin: 2rem 0;
}*/

.ce_tabs ul.nav {
  display: flex;
  justify-content: flex-start;
  padding: 1.5rem 0;
  padding-left: 6rem;
}

@media only screen and (max-width: 35.4375em) {
  .ce_tabs ul.nav {
    display: block;
    padding: 0;
    /*padding-left: 5rem;*/
  }
}

@media only screen and (min-width: 35.5em) and (max-width: 41.625em) {
  .ce_tabs ul.nav {
    padding-left: 2rem;
  }
}

@media only screen and (min-width: 41.6875em) and (max-width: 55.9375em) {
  .ce_tabs ul.nav {
    padding-left: 5rem;
  }
}

@media only screen and (min-width: 56em) and (max-width: 90em) {
  .ce_tabs ul.nav {
    padding-left: 3rem;
  }
}

.ce_tabs.job-advertisements ul.nav {
  display: block;
  justify-content: normal;
}

.ce_tabs ul.nav li {
  font-family: 'Lato', sans-serif;
  font-size: 1.125rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s ease-in-out;
  margin-left: 1.5rem;
  padding-bottom: .25rem;
}

@media only screen and (max-width: 35.4375em) {
  .ce_tabs ul.nav li {
    margin-left: 0;
    margin-bottom: 1rem;
  }
}

.ce_tabs.job-advertisements ul.nav li {
  margin-left: 0;
  margin-bottom: 1.25rem;
}

.ce_tabs ul.nav li:first-child {
  margin-left: 0rem;
}

.ce_tabs ul.nav li a {
  text-decoration: none;
  /*white-space: nowrap;*/
  /*padding: 0 0 .5rem 0;*/
  font-weight: 700;
  letter-spacing: 1px;
  color: #777;
}

a:active,
a:focus,
.ce_tabs ul.nav li a:active, 
.ce_tabs ul.nav li a:focus,
.ce_accordion div.toggler:active,
.ce_accordion div.toggler:focus {
  outline: 0;
  /*border: none;*/
  -webkit-outline-style: none;
  -moz-outline-style: none;
}

.ce_tabs ul.nav li a::before {
  font-family: "IcoFont";
  content: "\ea90";
  margin-right: 0.5rem;
}


.ce_tabs ul.nav li span {
  padding: 0;
}

.ce_tabs ul.nav li.ui-state-active a {
  border-bottom: 3px solid #f44336;
  transition: none;
}

.ce_tabs ul.nav li a:hover,
.ce_tabs ul.nav li a:active {
  color: #aaa;
  border-bottom: 3px solid #f44336;
}

/*.ce_tabs.tabpanel--staggered,
.panel--staggered {
  margin: 3rem 0;
}*/


.ce_tabs.tabpanel--staggered .panel,
.panel--staggered {
  position: relative;
}

.ce_tabs.tabpanel--staggered.tabpanel--mb5 .panel .ce_text.staggered__text { 
  margin-bottom: 5rem;
}

@media only screen and (max-width: 48em) {
  .ce_tabs.tabpanel--staggered.tabpanel--mb5 .panel .ce_text.staggered__text { 
    margin-bottom: 2rem;
  }
}

.ce_tabs.tabpanel--staggered .panel .ce_image.staggered__image .image_container,
.panel--staggered .ce_image .image_container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 60%;
}

@media only screen and (max-width: 63.9375em) {
  .ce_tabs.tabpanel--staggered .panel .ce_image.staggered__image .image_container,
  .panel--staggered .ce_image .image_container {
    position: relative;
    display: block;
    width: 100%;
  }
}

.ce_tabs.tabpanel--staggered .panel .ce_text.staggered__text,
.panel--staggered .ce_text,
.panel--staggered .ce_table {
  background: #fff;
  position: relative;
  z-index: 1;
  width: 50%;
  float: right;
  padding: 3rem;
  margin-top: 8rem;
}

@media only screen and (max-width: 47.9375em) {
  .ce_tabs.tabpanel--staggered .panel .ce_text.staggered__text,
  .panel--staggered .ce_text,
  .panel--staggered .ce_table {
    position: relative;
    display: block;
    width: auto;
    float: none;
    top:-4rem;
    padding: 2rem;
    margin: 0 2rem -4rem 2rem;
  }
}

@media only screen and (min-width: 48em) and (max-width: 63.9375em) {
  .ce_tabs.tabpanel--staggered .panel .ce_text.staggered__text,
  .panel--staggered .ce_text,
  .panel--staggered .ce_table {
    position: relative;
    display: block;
    width: auto;
    float: none;
    top:-8rem;
    padding: 2rem;
    margin: 0 2rem -8rem 2rem;
  }
}

@media only screen and (min-width: 64em) and (max-width: 79.9375em) {
  .ce_tabs.tabpanel--staggered .panel .ce_text.staggered__text,
  .panel--staggered .ce_text,
  .panel--staggered .ce_table {
    padding: 2rem;
    margin-top: 4rem;
  }
}

.ce_tabs.job-advertisements.tabpanel--staggered .panel .ce_image .image_container {
  position: relative;
  top: 0;
  left: 0;
  z-index: 0;
  width: 70%;
}

@media only screen and (max-width: 63.9375em) {
  .ce_tabs.job-advertisements.tabpanel--staggered .panel .ce_image .image_container {
    position: relative;
    display: block;
    width: 100%;
  }
}

.ce_tabs.job-advertisements.tabpanel--staggered .panel .ce_text {
  background: #fff;
  position: relative;
  z-index: 1;
  width: 70%;
  float: right;
  padding: 3rem;
  margin-top: -10rem;
}

@media only screen and (max-width: 47.9375em) {
  .ce_tabs.job-advertisements.tabpanel--staggered .panel .ce_text {
    position: relative;
    display: block;
    width: auto;
    float: none;
    top:-4rem;
    padding: 2rem;
    margin: 0 1rem -4rem 1rem;
  }

  .ce_tabs.job-advertisements.tabpanel--staggered .panel .ce_text h3 {
    font-size: 1.75rem;
    margin-bottom: 3rem;
  }
}

@media only screen and (min-width: 48em) and (max-width: 63.9375em) {
  .ce_tabs.job-advertisements.tabpanel--staggered .panel .ce_text {
    position: relative;
    display: block;
    width: auto;
    float: none;
    top:-8rem;
    padding: 2rem;
    margin: 0 2rem -8rem 2rem;
  }
}


@media only screen and (min-width: 64em) and (max-width: 79.9375em) {
  .ce_tabs.job-advertisements.tabpanel--staggered .panel .ce_text {
    width: 80%;
  }
}

.ce_tabs.job-advertisements.tabpanel--staggered .panel .ce_text p {
  font-size: 1rem;
  line-height: 1.5rem;
}

.panel--staggered .ce_table table {
  margin-bottom: 0;
}

.panel--staggered .ce_table table td {
  padding: 0.375rem 0;
}

.panel--staggered .ce_table table td.col_0 {
  font-weight: 700;
  color: #aaa;
}

.panel--staggered .ce_table table td.col_1 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.panel--staggered .ce_table table td.col_2 {
  font-size: 1rem !important;
  line-height: 1.25rem;
}

.ce_tabs.tabpanel--staggered .panel .ce_text h3,
.panel--staggered .ce_text h3,
.panel--staggered .ce_table h3 {
  margin-top: 0;
}


.ce_table.table--foerderung table {
  width: 100%;
  border: 1px solid #ddd;
}

.ce_table.table--foerderung table th {
  text-transform: uppercase;
}

.ce_table.table--foerderung table th,
.ce_table.table--foerderung table td:first-child {
  background-color: #f5f5f5;
  font-weight: bold;
}

.ce_table.table--foerderung table th,
.ce_table.table--foerderung table td {
  padding: 1rem;
  border: 1px solid #ddd;
}

.ce_text.table--footnote p {
  font-size: 0.75rem;
  line-height: 1.3;
  color: #999;
  margin-top: 2rem;
}

@media screen and (max-width:768px) {
  .ce_table.table--foerderung table {
    border: none;
  }

  .ce_table.table--foerderung table thead {
    display: none;
  }

  .ce_table.table--foerderung table tr {
    float: left;
    width: 100%;
    margin-bottom: 1rem;
    background-color: #f5f5f5;
  }

  .ce_table.table--foerderung table tr:last-child {
    margin-bottom: 0;
  }

  .ce_table.table--foerderung table td:first-child {
    text-transform: uppercase;
  }

  .ce_table.table--foerderung table td:not(:first-child) {
    background-color: #fff;
    border-top: none;
  }

  .ce_table.table--foerderung table tbody tr td {
    float: left;
    width: 100%;
    padding: 1em;
    text-align: right;
  }

  .ce_table.table--foerderung table tr td.td:first-child {
    font-weight: 600;
    letter-spacing: 1px;
  }

  .ce_table.table--foerderung table tr td.td--persons {
    text-align: right;
  }

  .ce_table.table--foerderung table tr td.td--hide {
    display: none;
  }

  .ce_table.table--foerderung button.modalbtn {
    width: 100%;
    letter-spacing: 1px;
  }

  .ce_table.table--foerderung table tbody tr td:not(:first-child)::before {
    content:attr(data-label);
    color: #555;
    width: 33%;
    position: absolute;
    left: 1rem;
    padding:1em;
    margin:-1em 1em -1em -1em;
    text-align: left;
    font-weight: bold;
  }

  .ce_table.table--foerderung table tbody tr td:not(:first-child) {
    position: relative;
    padding-left: 33%;
    font-size: 0.875rem;
    line-height: 1.3;
  }
}



/* ///////////////////////////////////////////////////
/                   DOWNLOADS
/////////////////////////////////////////////////// */

.section--downloads {
  position: relative;
  margin: 0 0 3rem 0;
}

@media only screen and (max-width: 55.9375em) {
  .section--downloads {
    margin: 0;
  }
}

.section--downloads .ce_downloads.download__text {
  display: block;
  width: 100%;
  min-height: 24rem;
  float: left;
  margin: 5rem 0 0 0;
  padding: 3rem 3rem 3rem 52%;
  background: #fff;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 55.9375em) {
  .section--downloads .ce_downloads.download__text {
    display: block;
    width: 100%;
    min-height: 0;
    float: none;
    margin: 5rem 0 0 0;
    padding: 8rem 2rem 4rem 2rem;
  }
}

.section--downloads .ce_downloads.download__text h2 {
  color: #232323;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.1466;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 2rem;
}


.section--downloads .ce_image.download__img {
  position: absolute;  
  left: 0;
  top: 0;
  width: 50%;
  height: auto;
  z-index: 2;
}

@media only screen and (max-width: 55.9375em) {
  .section--downloads .ce_image.download__img {
    position: relative;  
    left: auto;
    top: auto;
    width: 100%;
    bottom: -12rem;
    margin-top: -12rem;
  }
}




/* ///////////////////////////////////////////////////
/                   DOWNLOAD (Single)
/////////////////////////////////////////////////// */
.ce_download p.download-element {
  font-size: 1rem;
  line-height: 1.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ccc;
}

.ce_download p.download-element.ext-pdf::before {
  display: inline-block;
  font-family: "IcoFont";
  font-size: 1.5rem;
  content: "\eb1e";
  color: #d21518;
  margin-right: 0.375rem;
}

.ce_download p a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  color: #777;
}

.ce_download p a:hover {
  color: #aaa;
}

.ce_download span.size {
  float: right;
  width: 20%;
  text-align: right;
}


.ce_downloads span.size {
  float: right;
  /*width: 20%;*/
  text-align: right;
}

@media only screen and (max-width: 56em) {
  .ce_downloads span.size {
    display: none;
  }
}

.ce_downloads li.download-element {
  font-size: 1rem;
  line-height: 1.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ccc;
}

.ce_downloads li.download-element.ext-pdf::before {
  display: inline-block;
  font-family: "IcoFont";
  font-size: 1.5rem;
  content: "\eb1e";
  color: #d21518;
  margin-right: 0.375rem;
}

.ce_downloads li.download-element.ext-zip::before {
  display: inline-block;
  font-family: "IcoFont";
  font-size: 1.5rem;
  content: "\f02e";
  color: #555;
  margin-right: 0.375rem;
}

.ce_downloads li a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  color: #777;
}

.ce_downloads li a:hover {
  color: #aaa;
}




/* ///////////////////////////////////////////////////
/                   ACCORDION
/////////////////////////////////////////////////// */
.ce_accordion {
/*  margin-left: -0.2rem;
  padding-right: 5%;*/
  margin-top: 1.75rem;
}

.toggler {
  padding: 0.5rem 1rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #aaa;
  font-size: 1.25rem;
  padding-right: 2rem;
}

.toggler.ui-accordion-header-collapsed::after {
  font-family: "IcoFont";
  content: "\ea99";
  font-size: 1.2rem;
  float: right;
  display: inline-block;
  margin-right: -1rem;
}

.toggler.ui-accordion-header-active::after {
  font-family: "IcoFont";
  content: "\eaa1";
  font-size: 1.2rem;
  float: right;
  display: inline-block;
  margin-right: -1rem;
}

.ui-accordion-content .ce_downloads .download-element {
  padding-left: 2rem;
  padding-right: 1rem;
  transition: all ease-in-out 0.2s;
}

.ui-accordion-content .ce_downloads .download-element:nth-child(even) {
  background: #fafafa;
}

.ui-accordion-content .ce_downloads .download-element:hover {
  background: #ffffff;
}




/* ///////////////////////////////////////////////////
/                   NEWS
/////////////////////////////////////////////////// */
.mod_newslist.corporatenews,
.mod_newsarchive.corporatenews {
  display: flex;
  flex-wrap: wrap;
  margin-top: 6rem;
}

@media only screen and (max-width: 48em) {
  .mod_newslist.corporatenews,
  .mod_newsarchive.corporatenews {
    margin-top: 3rem;
  }
}

.layout_latest.corporatenews__card {
  width: 31.5%;
  margin: 0 0 2.75% 2.75%;
  float: left;
  text-align: left;
  background-color: #fff;
  position: relative;
}

.layout_latest.corporatenews__card:nth-child(3n+1) {
  margin: 0 0 2.75% 0;
}

@media only screen and (min-width: 56em) and (max-width: 63.9375em) {
  .layout_latest.corporatenews__card {
    width: 48.6%;
  }

  .layout_latest.corporatenews__card:nth-child(3n+0) {
    display: none;
  }
}

@media only screen and (max-width: 55.9375em) {
  .layout_latest.corporatenews__card {
    width: 100%;
    float: none;
    margin-left: 2rem;
    margin-right: 2rem;
    margin-bottom: 2rem;
  }

  .layout_latest.corporatenews__card:first-child {
    margin-left: 2rem;
    margin-right: 2rem;
    margin-bottom: 2.0rem;
  }
}

@media only screen and (max-width: 30em) {
  .layout_latest.corporatenews__card {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .layout_latest.corporatenews__card:first-child {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.layout_latest.corporatenews__card .image_container {
  height: 16rem;
  position: relative;
  top: 0;
  overflow: hidden;
}

@media only screen and (max-width: 90em) {
  .layout_latest.corporatenews__card .image_container {
    height: 14rem;
  }
}

@media only screen and (max-width: 79.9375em) {
  .layout_latest.corporatenews__card .image_container {
    height: 11.5rem;
  }
}

@media only screen and (max-width: 63.9375em) {
  .layout_latest.corporatenews__card .image_container {
    height: 16rem;
  }
}

@media only screen and (max-width: 55.9375em) {
  .layout_latest.corporatenews__card .image_container {
    height: 18rem;
  }
}

@media only screen and (max-width: 30em) {
  .layout_latest.corporatenews__card .image_container {
    height: 13rem;
  }
}

.layout_latest.corporatenews__card .image_container img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.layout_latest.corporatenews__card .corpratenews__text {
  padding: 2rem 2rem 5rem 2rem;
}

@media only screen and (min-width: 80em) and (max-width: 90em) {
  .layout_latest.corporatenews__card .corpratenews__text {
    padding: 2rem 1.5rem 5rem 1.5rem;
  }
}

@media only screen and (min-width: 64em) and (max-width: 79.9375em) {
  .layout_latest.corporatenews__card .corpratenews__text {
    padding: 2rem 1rem 5rem 1rem;
  }
}

.layout_latest.corporatenews__card .corpratenews__text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0rem;
  margin-bottom: 2rem;
}

.layout_latest.corporatenews__card .corpratenews__text h3 a {
  color: #777;
  line-height: 1.3;
  transition: all ease-in-out .2s;
}

.layout_latest.corporatenews__card .corpratenews__text h3 a:hover {
  color: #aaa;
}

@media only screen and (max-width: 55.9375em) {
  .layout_latest.corporatenews__card .corpratenews__text .ce_text {
    padding-left: 0;
    padding-right: 0;
  }
}

.layout_latest.corporatenews__card .corpratenews__text .ce_text p {
  /*font-size: 1rem;
  line-height: 1.65;*/
}

@media only screen and (max-width: 48em) {
  .layout_latest.corporatenews__card .corpratenews__text {
    padding: 2rem 1.5rem 4rem 1.5rem;
  }
}

.layout_latest.corporatenews__card .corpratenews__text .info {
  margin-bottom: 1.5rem;
}

.layout_latest.corporatenews__card .corpratenews__text .info,
.layout_latest.corporatenews__card .corpratenews__text .info time {
  color: #333;
  font-weight: 700;
  font-size: 1.0rem;
}

.layout_latest.corporatenews__card .corpratenews__text .info time {
  position: relative;
  left: -2rem;
}

.layout_latest.corporatenews__card .corpratenews__text .info time::before {
    display: inline-block;
    content: "";
    border-top: 1rem solid #fff900;
    width: 5rem;
    margin: 0 1.25rem 0 0;
}

@media only screen and (max-width: 48em) {
  .layout_latest.corporatenews__card .corpratenews__text .info,
  .layout_latest.corporatenews__card .corpratenews__text .info time {
    font-size: 0.85rem;
  }
}

@media only screen and (max-width: 48em) {
  .layout_latest.corporatenews__card .corpratenews__text h3 {
    font-size: 1.4rem;
  }
}

.layout_latest.corporatenews__card .corpratenews__text .teaser p {
  font-size: 1.15rem;
  line-height: 1.3rem;
}

@media only screen and (max-width: 48em) {
  .layout_latest.corporatenews__card .corpratenews__text .teaser p {
    font-size: 1.0rem;
    line-height: 1.3rem;
  }
}

.layout_latest.corporatenews__card .corpratenews__text .more {
  position: absolute;
  bottom: 0;
  right: 2rem;
}

.layout_latest.corporatenews__card:last-child:after {
  content: ' ';
  clear: both;
}

p.back {
  display: none;
}




/* ///////////////////////////////////////////////////
/                   EVENTS
/////////////////////////////////////////////////// */
.events--next {
  position: relative;
  width: auto;
  top: -10rem;
  margin: 12rem 0 -10rem 8%;
  overflow: hidden;
  padding-left: 2rem;
  padding-right: 8%;
  background-color: #e4e4e4;
}

@media only screen and (max-width: 105em) {
  .events--next {
    padding-left: 3rem;
  }
}

@media only screen and (max-width: 55.9375em) {
  .events--next {
    width: auto;
    top: -16rem;
    margin: 19rem 2rem -16rem 2rem;
    padding: 3rem 2rem 2rem 2rem;
  }
}

.events--next .wrapper--inner {
  margin: 4rem auto 3rem auto;
}

@media only screen and (max-width: 55.9375em) {
  .events--next .wrapper--inner {
    margin: 0 auto;
  }
}

.events--next h2 {
  font-size: 3rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 4rem;
}

@media only screen and (max-width: 80em) {
  .events--next h2 {
    font-size: 2.5rem;
  }
}

@media only screen and (max-width: 64em) {
  .events--next h2 {
    font-size: 2.25rem;
  }
}

@media only screen and (max-width: 30em) {
  .events--next h2 {
    font-size: 1.875rem;
  }
}

.events--next .mod_eventlist {
  margin-top: 3rem;
}

.events--next .mod_eventlist .empty {
  text-align: center;
}

.events--next .event {
  width: 33.333%;
  float: left;
  border-right: 1px solid #ccc;
  padding: 2.25rem 1rem;
  position: relative;
  text-align: center;
  overflow: visible;
}

.events--next .event:nth-child(3n+0) {
  border-right: none;
  border-bottom: none;
}

@media only screen and (max-width: 64em) {
  .events--next .event {
    padding: 0 2rem;
  }

  .events--next .event:first-child {
    padding-left: 0;
  }

  .events--next .event:last-child {
    padding-right: 0;
  }
}

@media only screen and (max-width: 47.9375em) {
  .events--next .event {
    width: 100%;
    padding: 1.25rem 0 .75rem 0;
    border-right: none;
    border-bottom: 1px solid #cacaca;
  }

  .events--next .event:first-child {
    padding-top: 0;
  }

  .events--next .event:last-child {
    padding-bottom: 0;
  }
}

.events--next .event h3 {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: none;
  color: #999;
  margin-bottom: .25rem;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.25;
}

@media only screen and (max-width: 64em) {
  .events--next .event h3 {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 55.9375em) {
  .events--next .event h3 {
    font-size: 1.25rem;
  }
}

.events--next .event .info time {
  font-size: 2.25rem;
  font-weight: 700;
  color: #888;
  line-height: 1.2;
}

@media only screen and (max-width: 64em) {
  .events--next .event .info time {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 55.9375em) {
  .events--next .event .info time {
    font-size: 1.6rem;
  }
}

.events--next .event .time {
  padding-bottom: .2rem;
  color: #999;
  font-size: 1.4rem;
  font-weight: 300;
}

@media only screen and (max-width: 64em) {
  .events--next .event .time {
    padding-bottom: .2rem;
    color: #999;
    font-size: 1.125rem;
    font-weight: 300;
  }
}

@media only screen and (max-width: 55.9375em) {
  .events--next .event .time {
    padding-bottom: .2rem;
    color: #999;
    font-size: 1.25rem;
    font-weight: 300;
  }
}

.events--next .event .time:before {
  font-family: "IcoFont";
  content: "\eedc";
  margin-right: 0.35rem;
}

.events--next .event .location,
.events--next .event .teaser {
  font-size: 1rem;
  font-weight: 400;
  color: #999;
}

.events--next .event div[itemprop="description"] p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #999;
}

.events--next .event .location i,
.events--next .event .teaser i {
  color: #888;
  font-family: 'Lato', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
}




/* ///////////////////////////////////////////////////
/                   MODAL
/////////////////////////////////////////////////// */

/* Modal Background */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.8);
}

/* Modal Content-Box */
.modal-content {
  border: none;
  background-color: #f7f7f7;
  margin: 5rem auto;
  padding: 3rem;
  width: 80%;
  max-width: 1024px;
  text-align: left;
}

.modal-content .ce_text h1,
.modal-content .ce_text h2 {
  padding-right: 2rem;
}

@media only screen and (max-width: 40em) {
  .modal-content {
    margin: 2rem auto;
    padding: 1.5rem;
    width: 90%;
    max-width: 800px;
  }
}

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

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




/* ///////////////////////////////////////////////////
/                   FORMULAR
/////////////////////////////////////////////////// */
#formular {
  padding-top: 9rem;
}

.alert--success {
  border: 8px solid #fff;
  padding: 1rem;
  margin-bottom: 3rem;
  text-align: center;
}

.alert--success h4 {
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.ce_form .widget {
  margin-bottom: 1.5rem;
}

.ce_form form input[type="text"],
.ce_form form input[type="email"],
.ce_form form input[type="tel"],
.ce_form form input[type="password"],
.ce_form form textarea {
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
  background-color: transparent;
  font-size: 1.75rem;
  color: #888;
  box-shadow: none;
  width: 100%;
  padding: 0.5rem;
}

.ce_form form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #324146;
  border-radius: 0;
  padding: 0.5rem 3rem 0.5rem 0;
  font-size: 1.75rem;
  color: #888;
  background: url('../../img/icons/select_arrow-down.png') no-repeat right;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

@media only screen and (max-width: 30em) {
  .ce_form form input[type="text"],
  .ce_form form input[type="email"],
  .ce_form form input[type="tel"],
  .ce_form form input[type="password"],
  .ce_form form textarea,
  .ce_form form select {
    font-size: 1.5rem;
  }
}

.ce_form input:focus,
.ce_form select:focus,
.ce_form textarea:focus,
.ce_form button:focus {
  outline: none;
  -webkit-outline-style: none;
  -moz-outline-style: none;
}

form select option {
  font-size: 1rem;
  color: #000;
}

form select:required:invalid, 
form select:focus, 
form select option:first-of-type {
  color: #ddd;
}

.ce_form form ::-webkit-input-placeholder {
  color: #ddd;
}

.ce_form form ::-moz-placeholder {
  color: #ddd;
  opacity: 1;
}

.ce_form form ::-ms-placeholder {
  color: #ddd;
}

.ce_form form ::placeholder {
  color: #ddd;
}

.widget>label,
.ce_form label {
  font-size: 1rem;
  text-transform: none;
  width: 100%;
}

.ce_form label a {
  /*font-size: 0.875rem;*/
  text-decoration: underline;
}

.ce_form .checkbox--privacy label {
  font-size: 0.875rem;
}

.ce_form button[type="submit"] {
  float: right;
  background: #000;
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 0;
  transition: all ease-in-out 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1.8rem;
}

@media only screen and (max-width: 55.9375em) {
  .ce_form button[type="submit"] {
    width: 100%;
  }
}

.ce_form input[type="file"].file--upload {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #888;
  background-color: transparent;
  background-clip: padding-box;
  border-bottom: 1px solid #000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

.ce_form input[type="file"].file--upload::file-selector-button {
  padding: 1rem;
  margin: 0 -.75rem;
  -webkit-margin-end: 2rem;
  margin-inline-end: 2rem;
  color: #000;
  background-color: #ddd;
  pointer-events: none;
  border: none;
  font-size: 1rem;
  text-transform: uppercase;
}



/* ///////////////////////////////////////////////////
/                   NEXT STEP
/////////////////////////////////////////////////// */
.footer--nextstep {
  position: relative;
  width: auto;
  top: -10rem;
  margin: 12rem 0 -10rem 8%;
  overflow: hidden;
  padding-left: 2rem;
  padding-right: 8%;
  background-color: #e4e4e4;
  color: #777;
}

@media only screen and (max-width: 105em) {
  .footer--nextstep {
    padding-left: 3rem;
  }
}

@media only screen and (max-width: 55.9375em) {
  .footer--nextstep {
    width: auto;
    top: -30rem;
    margin: 32rem 2rem -30rem 2rem;
    padding: 3rem 2rem 2rem 2rem;
  }
}

@media only screen and (min-width: 48em) and (max-width: 55.9375em) {
  .footer--nextstep {
    width: auto;
    top: -8rem;
    margin: 10rem 2rem -8rem 2rem;
    padding: 3rem 2rem 2rem 2rem;
  }
}

.footer--nextstep .wrapper--inner {
  margin: 4rem auto 3rem auto;
}

@media only screen and (max-width: 55.9375em) {
  .footer--nextstep .wrapper--inner {
    margin: 0 auto;
  }
}

.footer--nextstep h1 {
  font-size: 3rem;
  color: #555;
  margin-bottom: 4rem;
}

@media only screen and (max-width: 80em) {
  .footer--nextstep h1 {
    font-size: 2.5rem;
  }
}

@media only screen and (max-width: 64em) {
  .footer--nextstep h1 {
    font-size: 2.25rem;
  }
}

@media only screen and (min-width: 48em) and (max-width: 55.9375em) {
  .footer--nextstep h1 {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 30em) {
  .footer--nextstep h1 {
    font-size: 1.875rem;
  }
}

.footer--nextstep h4 {
  font-size: 1.625rem;
  color: #555;
}

@media only screen and (max-width: 64em) {
  .footer--nextstep h4 {
    font-size: 1.375rem;
  }
}

@media only screen and (max-width: 55.9375em) {
  .footer--nextstep h4,
  .footer--nextstep .ce_text p {
    display: none;
  }
}

.footer--nextstep .ce_hyperlink a {
  font-size: 1.125rem;
}

@media only screen and (max-width: 64em) {
  .footer--nextstep .ce_hyperlink a {
    font-size: 1rem;
  }
}

.footer--nextstep .column--with-icon img {
  width: 70px;
  height: auto;
}

@media only screen and (max-width: 64em) {
  .footer--nextstep .column--with-icon img {
    width: 55px;
    height: auto;
  }
}

@media only screen and (max-width: 30em) {
  .footer--nextstep .column--with-icon img {
    width: 50px;
    height: auto;
  }
}




/* ///////////////////////////////////////////////////
/                   FOOTER
/////////////////////////////////////////////////// */
footer {
  background-color: #fff;
}

footer .footer__contact,
footer .footer__bottom {
  width: 100% !important;
  max-width: 100%;
  clear: both;
  margin: 0;
  overflow: hidden;
  padding: 0;
}

footer .footer__contact .wrapper--inner,
footer .footer__bottom .wrapper--inner {
  max-width: 1400px;
  width: auto;
  margin: 4rem auto;
  overflow: hidden;
}

@media only screen and (max-width: 105em) {
  footer .footer__contact .wrapper--inner {
    max-width: none;
    margin: 4rem 4% 4rem 8%;
  }
}

@media only screen and (max-width: 55.9375em) {
  footer .footer__contact .wrapper--inner {
    max-width: none;
    margin: 3rem 2rem;
  }
}

@media only screen and (max-width: 48em) {
  footer .footer__contact .wrapper--inner,
  footer .footer__bottom .wrapper--inner {
    width: auto;
  }

  footer .footer__contact .wrapper--inner {
    margin: 2rem 1rem;
    display: flex;
    flex-flow: column;
  }

  footer .footer__bottom .wrapper--inner {
    margin: 2rem 1rem;
  }
}

.footer__logos {
  float: left;
  display: inline-block;
  width: 42%;
  padding: 0;
}

.footer__logos .container__logos {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
}

@media only screen and (max-width: 85.375em) {
  .footer__logos .container__logos {
    width: 66%;
  }
}

@media only screen and (max-width: 72em) {
  .footer__logos .container__logos {
    width: 75%;
  }
}

@media only screen and (max-width: 48em) {
  .footer__logos {
    float: none;
    display: block;
    width: 100%;
    order: 2;
  }

  .footer__logos .container__logos {
    justify-content: center;
    width: 80%;
    max-width: 13.25rem !important;
    margin: 0 auto;
  }
}

.footer__logos .container__logos .ce_image,
.footer__logos .container__logos .ce_hyperlink {
  float: left;
  margin-right: 1rem;
  margin-bottom: 0;
}

.footer__logos .container__logos .ce_image:first-child {
  margin-right: 2rem;
}

@media only screen and (max-width: 48em) {
  .footer__logos .container__logos .ce_image:first-child {
    margin-right: 2rem;
  }
}

.footer__logos .container__logos .ce_image:last-child,
.footer__logos .container__logos .ce_hyperlink:last-child {
  margin-right: 0;
}

.footer__logos .container__logos .ce_image .image_container img,
.footer__logos .container__logos .ce_hyperlink .image_container img {
  max-height: 40px;
  width: auto;
}

.footer__logos .container__logos .ce_hyperlink .image_container img:hover {
  -webkit-filter: brightness(75%);
  filter: brightness(75%);
}

.footer__bringmeup {
  float: left;
  display: inline-block;
  width: 16%;
}

.footer__bringmeup.ce_hyperlink .image_container {
  max-width: 4rem;
  margin: 0 auto;
}

@media only screen and (max-width: 64em) {
  .footer__bringmeup.ce_hyperlink .image_container {
    max-width: 3rem;
  }
}

@media only screen and (max-width: 48em) {
  .footer__bringmeup {
    float: none;
    display: block;
    width: 100%;
    margin: 3rem 0 0 0;
    order: 3;
  }
}

.footer__bringmeup.ce_hyperlink .image_container img {
  padding-top: 1rem;
  padding-bottom: 0;
  transition: all 0.3s ease-in-out;
}

.footer__bringmeup.ce_hyperlink .image_container img:hover {
  -webkit-filter: brightness(75%);
  filter: brightness(75%);
  padding-top: 0;
  padding-bottom: 1rem;
}

@media only screen and (max-width: 48em) {
  .footer__bringmeup.ce_hyperlink .image_container img,
  .footer__bringmeup.ce_hyperlink .image_container img:hover {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.footer__contact nav.footer__menu {
  width: 42%;
  float: left;
  display: inline-block;
  text-align: right;
}

@media only screen and (max-width: 48em) {
  .footer__contact nav.footer__menu {
    float: none;
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
    text-align: center;
    order: 1;
  }
}

.footer__address {
  float: left;
  display: inline-block;
  width: 42%;
  padding: 0;
  text-align: right;
}

@media only screen and (max-width: 55.9375em) {
  .footer__address {
    float: none;
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
    text-align: center;
    order: 1;
  }
}

.footer__address * {
  font-family: 'Nunito Sans', sans-serif;
  color: #999 !important;
  text-transform: none;
  letter-spacing: 0px;
}

.footer__address p {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 1.2;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 64em) {
  .footer__address p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

.footer__address p:last-child {
  margin-bottom: 0;
}

.footer__address p a[href^="tel:"] {
  margin-bottom: 0;
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0px;
}

@media only screen and (max-width: 64em) {
  .footer__address p a[href^="tel:"] {
    font-size: 1.625rem;
  }
}

.footer__address a[href^="tel:"]::before {
  font-family: "IcoFont";
  font-weight: 500;
  content: "\efba";
  margin-right: 0.5rem;
}

.footer__bottom .ce_headline.footer__slogan {
  width: 50%;
  float: left;
  display: block;
}

@media only screen and (max-width: 55.9375em) {
  .footer__bottom .ce_headline.footer__slogan {
    width: 100%;
    float: none;
    display: block;
    text-align: center;
  }
}

.footer__bottom h4.ce_headline.footer__slogan {
  font-size: 1.25rem;
  font-weight: 500;
}

nav.footer__menu {
  width: 50%;
  float: left;
  display: block;
  text-align: right;
}

@media only screen and (max-width: 55.9375em) {
  .footer__bottom h4.ce_headline.footer__slogan {
    font-size: 1.125rem;
    font-weight: 500;
  }

  nav.footer__menu {
    width: 100%;
    float: none;
    display: block;
    text-align: center;
  }
}

nav.footer__menu ul {
  display: flex;
  justify-content: flex-end;
}

@media only screen and (max-width: 48em) {
  nav.footer__menu ul {
    justify-content: center;
    margin-bottom: 0;
  }
}

nav.footer__menu ul li {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s ease-in-out;
  margin-left: 0.75rem;
  padding-bottom: .25rem;
}

nav.footer__menu ul li::after {
  content: "|";
  color: #ccc;
  margin-left: 0.75rem;
}

@media only screen and (max-width: 48em) {
  nav.footer__menu ul li,
  nav.footer__menu ul li::after {
    text-transform: none;
    margin-left: 0.5rem;
  }
}

nav.footer__menu ul li:last-child::after {
  content: "";
  margin-left: 0;
}

nav.footer__menu ul li:first-child {
  margin-left: 0rem;
}

nav.footer__menu ul li a,
nav.footer__menu ul li span,
nav.footer__menu ul li strong {
  text-decoration: none;
  white-space: nowrap;
  padding: 0 0 .5rem 0;
  font-size: 1.0rem;
  color: #777;
}

@media only screen and (max-width: 48em) {
  nav.footer__menu ul li a,
  nav.footer__menu ul li span,
  nav.footer__menu ul li strong {
    font-size: .875rem;
  }
}

nav.footer__menu ul li span {
  padding: 0;
}

nav.footer__menu ul li .active,
nav.footer__menu ul li .trail,
nav.footer__menu ul li a:hover {
  border-bottom: 2px solid #f1f1f1;
  transition: none;
}

nav.footer__menu ul li a:hover {
  border-bottom: 2px solid #3f3f3f;
}




/* ///////////////////////////////////////////////////
/                   HELPER
/////////////////////////////////////////////////// */
.m0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mt1 {
  margin-top: 1rem !important;
}

.mb1 {
  margin-bottom: 1rem !important;
}

.mt2 {
  margin-top: 2rem !important;
}

.mb2 {
  margin-bottom: 2rem !important;
}

.mb3,
.mb3--desktop {
  margin-bottom: 3rem !important;
}

.mt5,
.mt5--desktop {
  margin-top: 5rem !important;
}

@media only screen and (max-width: 79.9375em) {
  .mt5--dektop {
    margin-top: 1rem !important;
  }
}

.mb5,
.mb5--desktop {
  margin-bottom: 5rem !important;
}


.mt8 {
  margin-top: 8rem !important;
}

.mb10,
.mb10--desktop {
  margin-bottom: 10rem !important;
}

@media only screen and (max-width: 79.9375em) {
  .mb5--desktop,
  .mb10--desktop {
    margin-bottom: 0 !important;
  }
}

.p0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

@media only screen and (max-width: 55.9375em) {
  .p0--mobile {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

.pt0 {
  padding-top: 0 !important;
}

@media only screen and (max-width: 55.9375em) {
  .pt0--mobile {
    padding-top: 0 !important;
  }
}

.pb0 {
  padding-bottom: 0 !important;
}

@media only screen and (max-width: 55.9375em) {
  .pb0--mobile {
    padding-bottom: 0 !important;
  }
}

.p3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt3 {
  padding-top: 3rem !important;
}

@media only screen and (max-width: 55.9375em) {
  .pt3--mobile {
    padding-top: 3rem !important;
  }
}

.pb3 {
  padding-bottom: 3rem !important;
}

.p5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.pt5 {
  padding-top: 5rem !important;
}

.pb5 {
  padding-bottom: 5rem !important;
}

.pt8 {
  padding-top: 8rem;
}

.pb8 {
  padding-bottom: 8rem;
}

.pt16 {
  padding-top: 16rem !important;
}

.overflow--visible {
  overflow: visible !important;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

@media only screen and (max-width: 55.9375em) {
  .mobile--hidden {
    display: none;
  }
}




/* ///////////////////////////////////////////////////
/                   MMENU
/////////////////////////////////////////////////// */
.mm-listitem strong {
  padding: calc((var(--mm-listitem-size) - var(--mm-line-height))/ 2);
  padding-left: 20px;
}
