body,
html {
  margin: 0;
  padding: 0;
  background-color: #333;
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  scroll-behavior: smooth;
}

@media (max-width: 750px) {
  body,
  html {
    font-size: 100%;
  }
}

#clear-both {
  clear: both;
}

#container-all {
  width: 100%;
  left: 0;
  min-height: 100%;
  position: relative;
  display: none;
}

#loader {
  width: 10%;
  height: 200px;
  position: absolute;
  background: url(../images/loader.svg) no-repeat;
  z-index: 100;
  left: 45%;
  top: 50%;
}

#info-top {
  width: 100%;
  background: #222;
  height: 45px;
}

#info-top-wrap {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

#info-top .moduletable {
  padding: 5px 2%;
  margin: 0 auto;
}

#info-top-wrap .custom {
  margin-right: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
#fb-logo {
  display: none;
}

#info-top i.fab {
  margin-left: 20px;
}

#info-top,
#info-top a,
#info-top strong,
#fb-logo,
#fb-logo a,
#fb-logo strong {
  font-size: 36px;
  color: #fff;
}

#design-1,
#design-2,
#design-3,
#design-3b,
#design-4 {
  float: left;
  width: 100%;
  height: auto;
}

#design-1 {
  background-color: #333;
  position: relative;
  z-index: 20;
  box-shadow: 0 0 18px #000;
}

#container-1 {
  width: 100%;
  height: 95px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
}

@media (min-width: 750px) and (max-width: 960px) {
  #container-1 {
    height: 190px;
  }
}

#logo {
  width: 250px;
  height: 95px;
  float: left;
  background: url(../images/logo.png) 50% no-repeat;
  background-size: 100%;
  margin-left: 3%;
}

@media all and (max-width: 960px) {
  #logo {
    background-image: url(../images/logo.png);
    float: none;
    position: relative;
    margin: 0 auto;
  }

  #info-top {
    display: none;
  }
  #fb-logo {
    display: block;
    position: absolute;
    right: 20px;
    top: 30px;
  }
}

@media (max-width: 750px) {
  #logo {
    width: 50%;
    max-width: 220px;
  }
}

#navigation {
  margin-right: 2%;
  height: 95px;
  width: auto;
  float: right;
  padding: 0;
}

#navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: inline-table;
}

#navigation ul:after {
  content: "";
  clear: both;
  display: block;
}

#navigation ul li {
  float: left;
  padding: 0 10px;
}

#navigation ul li a {
  font-style: normal;
  text-decoration: none;
  text-align: center;
  display: block;
  height: 61px;
  color: #e8e8e8;
  font-size: 16px;
  line-height: 95px;
  position: relative;
}

#navigation ul li a:after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #cdddfe;
  content: "";
  opacity: 0;
  -webkit-transition-property: opacity, transform;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  -moz-transition-property: opacity, transform;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease;
  -ms-transition-property: opacity, transform;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease;
  -o-transition-property: opacity, transform;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

@media (min-width: 750px) and (max-width: 960px) {
  #navigation {
    margin-right: 0;
    max-width: 960px;
    width: 100%;
    padding: 0;
  }
  #navigation ul li a {
    font-size: 14px;
  }
  li.default {
    display: none;
  }
}

#navigation ul li a:hover {
  color: #cdddfe;
}

#navigation ul li a:focus:after,
#navigation ul li a:hover:after {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#navigation ul li.current.active a {
  color: #cdddfe;
  font-weight: 700;
  border-bottom: 4px solid #cdddfe;
}

#navigation ul li.active.deeper.parent a {
  color: #cdddfe;
  border-bottom: 0;
}

#navigation ul li.current.active a:after,
#navigation ul li.deeper.parent a:after,
#navigation ul li ul li a:after {
  height: 0;
}

#navigation ul li.current.active ul li a {
  background-color: #cdddfe;
  color: #333;
  border-left: none;
  font-weight: 400;
  border-bottom: 0;
}

#navigation ul ul {
  border-radius: 0;
  padding: 0;
  position: absolute;
  opacity: 0;
  z-index: 50;
  display: block;
  margin-left: 0;
  -webkit-transition-property: opacity, transform;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  -moz-transition-property: opacity, transform;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease;
  -ms-transition-property: opacity, transform;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease;
  -o-transition-property: opacity, transform;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

#navigation ul ul li {
  display: none;
  float: none;
  background-color: #cdddfe;
  padding: 0;
  min-width: 100px;
}

#navigation ul li.deeper.parent:hover ul li {
  display: block;
}

#navigation ul li.deeper.parent:hover ul {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#navigation ul li.active.deeper.parent ul li a,
#navigation ul ul li a {
  color: #333;
  font-size: 14px;
  line-height: 40px;
  height: auto;
  padding: 0 15px;
  text-align: left;
}

#navigation ul li.current.active ul li a:hover,
#navigation ul ul li.current.active a,
#navigation ul ul li a:hover {
  background-color: #b9d0fe;
  color: #333;
  border: 0;
}

#mobile-navigation-button-open {
  height: 80px;
  width: 50px;
  background: url(../images/mobile-nav-b.png) 50% no-repeat;
  background-size: 100%;
  margin-top: -85px;
  margin-left: 3%;
  cursor: pointer;
}

@media (min-width: 750px) and (max-width: 960px), all and (min-width: 960px) {
  #mobile-navigation-button-open {
    display: none !important;
  }
}

#mobile-navigation-button-close {
  height: 80px;
  width: 50px;
  background: url(../images/mobile-nav-b.png) 50% no-repeat;
  background-size: 100%;
  margin-top: -85px;
  margin-left: 3%;
  cursor: pointer;
}

@media (min-width: 750px) and (max-width: 960px), all and (min-width: 960px) {
  #mobile-navigation-button-close {
    display: none !important;
  }
}

#mobile-navigation {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
  float: left;
  text-align: left;
  text-align: center;
  z-index: 50;
  display: none;
}

@media (min-width: 750px) and (max-width: 960px), all and (min-width: 960px) {
  #mobile-navigation {
    display: none !important;
  }
}

#mobile-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#mobile-navigation ul li {
  width: 100%;
  float: left;
}

#mobile-navigation li a {
  font-style: normal;
  line-height: 45px;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  background-color: #003399;
  width: 100%;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  display: block;
}

#mobile-navigation li a:hover {
  background-color: #cdddfe;
  -webkit-transition-property: background-color;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -moz-transition-property: background-color;
  -moz-transition-duration: 0.5s;
  -moz-transition-timing-function: ease;
  -ms-transition-property: background-color;
  -ms-transition-duration: 0.5s;
  -ms-transition-timing-function: ease;
  -o-transition-property: background-color;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease;
  transition-property: background-color;
  transition-duration: 0.5s;
  transition-timing-function: ease;
}

#mobile-navigation li.deeper.parent a,
#mobile-navigation li.deeper.parent a:hover {
  background: 95% no-repeat #003399;
  background-size: 15px;
}

#mobile-navigation li.deeper.parent a:hover {
  -webkit-transition-property: background-color;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  -moz-transition-property: background-color;
  -moz-transition-duration: 0.5s;
  -moz-transition-timing-function: ease;
  -ms-transition-property: background-color;
  -ms-transition-duration: 0.5s;
  -ms-transition-timing-function: ease;
  -o-transition-property: background-color;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease;
  transition-property: background-color;
  transition-duration: 0.5s;
  transition-timing-function: ease;
}

#mobile-navigation .nav-child li a {
  color: #333;
}

#mobile-navigation li.current.active a {
  background-color: #b9d0fe;
}

#mobile-navigation li.current.active.deeper.parent a {
  background: 95% no-repeat #cdddfe;
  background-size: 15px;
}

#mobile-navigation ul li ul {
  display: none;
}

#mobile-navigation ul li.current.active.deeper.parent ul li a,
#mobile-navigation ul li.deeper.parent ul li a,
#mobile-navigation ul li ul li a {
  background-color: #cdddfe;
  line-height: 35px;
}

#mobile-navigation ul li ul li a {
  font-size: 13px;
}

#mobile-navigation ul li.deeper.parent ul li a:hover,
#mobile-navigation ul li ul li.current.active a,
#mobile-navigation ul li ul li a:hover,
mobile-navigation ul li.current.active.deeper.parent ul li a:hover {
  background-color: #b9d0fe;
}

#mobile-navigation .dropdown-open {
  background: url(../images/mobile-nav-plus-open.png) 55% no-repeat;
  background-size: 15px;
}

#mobile-navigation .dropdown-close,
#mobile-navigation .dropdown-open {
  height: 44px;
  width: 45px;
  position: absolute;
  margin-top: -45px;
  right: 0;
  cursor: pointer;
}

#mobile-navigation .dropdown-close {
  background: url(../images/mobile-nav-plus-close.png) 55% no-repeat;
  background-size: 15px;
}

#design-2 {
  background: none;
  position: relative;
  z-index: 10;
  float: left;
  overflow: hidden;
}

#container-2 {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

#slider-fullsize {
  width: 100%;
  height: 100vh;
  margin-top: -95px;
}

#slider-normal {
  width: 100%;
  height: auto;
}

.tp-caption.Titel {
  font-weight: 700;
  font-size: 500%;
}

#banner-text h2,
.tp-caption.Titel {
  font-family: Arial-Black, Arial, Helvetica, sans-serif;
  color: #fff;
  text-shadow: 3px 4px 4px rgba(0, 0, 0, 0.5);
}

#banner-text h2 {
  font-size: 250%;
}

#banner-fullsize {
  width: 100%;
  height: 92vh;
  margin-top: -95px;
  display: table;
  position: relative;
  overflow: hidden;
}

#banner-fullsize img {
  height: auto;
  min-width: 120%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#banner-normal {
  min-width: 100%;
  height: 650px;
  display: table;
  position: relative;
  overflow: hidden;
  margin-top: -95px;
}

#banner-normal img {
  width: 120%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#banner-small {
  min-width: 100%;
  height: 350px;
  display: table;
  position: relative;
  overflow: hidden;
  margin-top: -95px;
}

#banner-small img {
  width: 120%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#banner-small-text,
#banner-text {
  max-width: 1080px;
  position: relative;
  margin: auto;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  font-size: 2vw;
  color: #e8e8e8;
  line-height: 115%;
}

#banner-small-text {
  top: 10%;
}

#banner-text .moduletable {
  display: block;
}

#scrolldown {
  width: 120px;
  height: 120px;
  background-image: url(../images/scrolldown.png);
  background-size: 100%;
  position: relative;
  z-index: 80;
  margin: -120px auto 0;
  cursor: pointer;
}

#trigger-scrolldown {
  width: 100%;
  height: 1px;
  position: absolute;
  margin-top: 200px;
}

div.bullet {
  background: url(../html/slider/bullets.png) no-repeat 0 0 !important;
}

div.bullet.selected {
  background: url(../html/slider/bullets.png) no-repeat 0 100% !important;
}

#design-3 {
  background-color: #003399;
  position: relative;
  z-index: 10;
  float: left;
  background-size: 800px auto;
}

#container-3 {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
}

#container-incontent {
  width: 96%;
  float: left;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  margin: 5% 2%;
  box-sizing: border-box;
}

#incontent {
  width: 92%;
  padding: 4%;
  min-height: 500px;
}

.kontaktseite {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.kontaktseite__col1,
.kontaktseite__col2,
.kontaktseite__col3 {
  box-sizing: border-box;
  padding: 1%;
}

.kontaktseite__col1 {
  width: 50%;
}

.kontaktseite__col2 {
  width: 25%;
}

.kontaktseite__col3 {
  width: 25%;
}

@media (min-width: 750px) and (max-width: 960px) {
  .kontaktseite__col1 {
    width: 100%;
  }
  .kontaktseite__col2 {
    width: 50%;
  }
  .kontaktseite__col3 {
    width: 50%;
  }
}

@media (max-width: 750px) {
  .kontaktseite__col1 {
    width: 100%;
  }
  .kontaktseite__col2 {
    width: 100%;
  }
  .kontaktseite__col3 {
    width: 100%;
  }
}

#incontent-70 {
  width: 63%;
  padding: 10% 2%;
  float: left;
  min-height: 500px;
}

.referenzen {
  display: block;
  box-sizing: border-box;
}

.referenzen__titel {
  margin-top: 2em;
  margin-bottom: 1em;
  width: 100%;
}

.referenzen__titel:first-of-type {
  margin-top: 0;
}

.referenzen__raster {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

.referenzen__elem {
  padding: 1%;
  width: 25%;
}

@media (min-width: 750px) and (max-width: 960px) {
  .referenzen__elem {
    width: 50%;
  }
}

@media (max-width: 750px) {
  .referenzen__elem {
    width: 100%;
  }
}

.referenzen__elem__link {
  height: 250px;
  width: 100%;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}

.referenzen__elem__titel {
  margin: 0 auto;
  padding: 10px 0;
  width: 100%;
  text-align: center;
  background-color: rgba(51, 51, 51, 0.9);
  color: #e8e8e8;
  font-size: 90%;
  font-style: normal;
  font-weight: 400;
}

.team {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

.team__wrap--full-width {
  width: 100%;
}

.team__titel {
  margin-top: 2em;
  margin-bottom: 1em;
  width: 100%;
}

.team__raster {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

.team__elem {
  box-sizing: border-box;
  padding: 1%;
  width: 20%;
  display: flex;
  flex-direction: column;
}

.item-page--kontakt .team__elem {
  width: 40%;M
}

.item-page--orga .team__elem {
  width: 20%;
}

.item-page--orga .team__elem__titel {
  position: relative;
  height: 100px;
}

.item-page--orga .team__elem__titel p:last-of-type {
  /* position: absolute;
  bottom: 0;
  width: 100%; */
}

.team__elem__image {
  width: 100%;
  height: auto;
  background-size: contain;
  display: flex;
  align-items: flex-end;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .team__elem__image {
    height: 250px;
  }
}

.team__elem__titel {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  background-color: #333;
  color: #f2f2f2;
  font-size: 90%;
  font-style: normal;
  font-weight: 400;
  box-shadow: inset 0 0 10px 0 #000;
}

.team__elem__titel p {
  margin: 0.5em 0;
  font-size: 90%;
}

@media (max-width: 960px) {
  .team__elem {
    width: 50%;
  }
  .item-page--orga .team__elem {
    width: 50%;
  }
  .item-page--orga .team__elem__titel {
    height: 140px;
  }
}

.button--back,
.team__elem__titel a,
.team__elem__titel strong {
  color: #f2f2f2;
  font-weight: 700;
  cursor: pointer;
}

.button--back {
  margin-top: 50px;
  padding: 10px;
  width: 100px;
  text-align: center;
  background-color: #333;
}

.button--back:hover {
  background-color: #000;
}

.leading-0 .pull-left img,
.leading-0 .pull-none img,
.leading-1 .pull-left img,
.leading-1 .pull-none img,
.leading-2 .pull-left img,
.leading-2 .pull-none img,
.leading-3 .pull-left img,
.leading-3 .pull-none img,
.leading-4 .pull-left img,
.leading-4 .pull-none img,
.leading-5 .pull-left img,
.leading-5 .pull-none img {
  width: 30%;
  float: left;
  margin-right: 4%;
  border: 5px #e8e8e8;
}

.leading-0 .pull-right img,
.leading-1 .pull-right img,
.leading-2 .pull-right img,
.leading-3 .pull-right img,
.leading-4 .pull-right img,
.leading-5 .pull-right img {
  width: 30%;
  float: right;
  margin-left: 4%;
  border: 5px solid #e8e8e8;
}

.pull-none img,
div.blog-featured .pull-none img,
div.blog .pull-none img {
  width: 100%;
}

.pull-left img,
div.blog-featured .pull-left img,
div.blog .item-image img {
  width: 40%;
  float: left;
  margin-right: 4%;
  margin-bottom: 20px;
}

.pull-right img,
div.blog-featured .pull-right img,
div.blog .pull-right img {
  width: 40%;
  float: right;
  margin-left: 4%;
  margin-bottom: 20px;
}

.pull-none img {
  width: 100%;
  float: none;
  margin-left: 0;
  margin-bottom: 20px;
}

.leading-0,
.leading-1,
.leading-2,
.leading-3,
.leading-4,
.leading-5 {
  display: inline-block;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  width: 100%;
}

.leading-0.clearfix {
  display: inline-block;
}

.cols-1 {
  display: block;
  text-align: left;
  width: 100%;
}

.cols-1 .column-1 {
  width: 100%;
  float: left;
  margin-bottom: 4%;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  padding-bottom: 2%;
}

.cols-2 {
  display: inline-block;
  text-align: left;
  width: 100%;
}

.cols-2 .column-1,
.cols-2 .column-2 {
  width: 46%;
  float: left;
  padding: 0 2%;
  margin-bottom: 4%;
}

.cols-3 {
  display: inline-block;
  width: 100%;
  text-align: left;
}

.cols-3 .column-1,
.cols-3 .column-2,
.cols-3 .column-3 {
  width: 29.3%;
  float: left;
  padding: 0 2%;
  margin-bottom: 4%;
}

.cols-4 {
  display: inline-block;
  width: 100%;
  text-align: left;
}

.cols-4 .column-1,
.cols-4 .column-2,
.cols-4 .column-3,
.cols-4 .column-4 {
  width: 21%;
  float: left;
  padding: 0 2%;
  margin-bottom: 4%;
}

.cols-5 {
  display: inline-block;
  width: 100%;
  text-align: left;
}

.cols-5 .column-1,
.cols-5 .column-2,
.cols-5 .column-3,
.cols-5 .column-4,
.cols-5 .column-5 {
  width: 16%;
  float: left;
  padding: 0 2%;
  margin-bottom: 4%;
}

.image-hover {
  width: 31%;
  float: left;
  margin-right: 3.5%;
  margin-bottom: 3.5%;
}

.image-hover:nth-child(3),
.image-hover:nth-child(6) {
  width: 31%;
  float: left;
  margin-right: 0;
}

.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.hovereffect .overlay {
  position: absolute;
  overflow: hidden;
  width: 80%;
  height: 90%;
  left: 10%;
  top: 6%;
  border-bottom: 0 dotted #e8e8e8;
  border-top: 0 dotted #e8e8e8;
  -webkit-transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  -moz-transition-property: opacity, transform, -webkit-transform;
  -moz-transition-duration: 0.35s;
  -moz-transition-timing-function: ease;
  -ms-transition-property: opacity, transform, -webkit-transform;
  -ms-transition-duration: 0.35s;
  -ms-transition-timing-function: ease;
  -o-transition-property: opacity, transform, -webkit-transform;
  -o-transition-duration: 0.35s;
  -o-transition-timing-function: ease;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.35s;
  transition-timing-function: ease;
  cursor: pointer;
}

.hovereffect:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.hovereffect img {
  display: block;
  position: relative;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  -moz-transition-property: all;
  -moz-transition-duration: 0.35s;
  -moz-transition-timing-function: ease;
  -ms-transition-property: all;
  -ms-transition-duration: 0.35s;
  -ms-transition-timing-function: ease;
  -o-transition-property: all;
  -o-transition-duration: 0.35s;
  -o-transition-timing-function: ease;
  transition-property: all;
  transition-duration: 0.35s;
  transition-timing-function: ease;
  width: 100%;
  border-radius: 0;
}

.hovereffect:hover img {
  -webkit-filter: #000;
  filter: #000000;
  filter: brightness(0.2);
  -webkit-filter: brightness(0.2);
  border-radius: 0;
}

.hovereffect h2,
.hovereffect h2 a {
  font-size: 38px;
  color: #e8e8e8;
  opacity: 1 !important;
  line-height: 42px;
  text-shadow: 2px 2px 10px #333;
}

.hovereffect h2,
.hovereffect h2 a,
.hovereffect img.down {
  text-transform: uppercase;
  text-align: center;
  position: relative;
  padding: 0;
}

.hovereffect img.down {
  width: 60px;
  z-index: 10;
  height: auto;
  margin: 0 auto 5px;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  -moz-transition-property: opacity, transform, -webkit-transform;
  -moz-transition-duration: 0.35s;
  -moz-transition-timing-function: ease;
  -ms-transition-property: opacity, transform, -webkit-transform;
  -ms-transition-duration: 0.35s;
  -ms-transition-timing-function: ease;
  -o-transition-property: opacity, transform, -webkit-transform;
  -o-transition-duration: 0.35s;
  -o-transition-timing-function: ease;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}

.hovereffect:hover img.down {
  opacity: 1;
  -webkit-filter: none !important;
  filter: none !important;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.hovereffect a,
.hovereffect p {
  color: #e8e8e8;
  padding: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  -moz-transition-property: opacity, transform, -webkit-transform;
  -moz-transition-duration: 0.35s;
  -moz-transition-timing-function: ease;
  -ms-transition-property: opacity, transform, -webkit-transform;
  -ms-transition-duration: 0.35s;
  -ms-transition-timing-function: ease;
  -o-transition-property: opacity, transform, -webkit-transform;
  -o-transition-duration: 0.35s;
  -o-transition-timing-function: ease;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.35s;
  transition-timing-function: ease;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  margin: 2px 0;
  font-size: 110%;
}

.hovereffect:hover a,
.hovereffect:hover h2,
.hovereffect:hover p {
  color: #e8e8e8;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.overlay a:hover {
  font-weight: 700;
}

dd.create {
  width: auto;
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 400;
  float: none;
  line-height: 24px;
  text-align: left;
  position: relative;
  margin-left: 0;
}

dl.article-info.muted {
  margin: 0;
}

div.page-header h2 a {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 3px;
}

div.blog #inhalt-blog {
  display: table;
  margin: 0;
}

div.blog #inhalt-blog h2 {
  margin-top: 0;
}

#news {
  width: 25%;
  float: right;
  padding: 10% 4% 10% 0;
}

#news h3 {
  font-size: 120%;
  margin-top: 0;
  margin-bottom: -15px;
  color: #333;
  font-weight: 400;
  text-transform: none;
}

#news ul {
  list-style: none;
  padding-left: 0;
}

#news li {
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  padding: 9px 0;
  min-height: 55px;
}

.mod-articles-category-title {
  font-size: 85%;
  color: #333;
  font-weight: 700;
  float: left;
  width: 100%;
  line-height: 120%;
}

.mod-articles-category-introtext {
  font-size: 75%;
  color: #595959;
  font-weight: 400;
  margin-top: 2px;
  margin-bottom: 2px;
  line-height: 120%;
}

.mod-articles-category-introtext a,
.mod-articles-category-introtext strong {
  color: #595959;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 2px;
  line-height: 110%;
}

.mod-articles-category-date {
  font-size: 16px;
  font-weight: 700;
  width: 30px;
  text-align: center;
  text-transform: uppercase;
  line-height: 17px;
  color: #fff;
  display: block;
  margin: 0;
  background-color: grey;
  float: left;
  padding: 6px;
}

#news-intro {
  display: table;
}

#news-date {
  float: left;
  padding: 5px 15px 0 0;
}

#design-3b {
  width: 100%;
  background-color: #222;
  position: relative;
  z-index: 10;
  float: left;
  padding: 3% 0;
}

#container-3b {
  width: 92%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4%;
}

/* Zusatz */

#zusatz .custom {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 90%;
  box-sizing: border-box;
}

.zusatz__elem {
  box-sizing: border-box;
  padding: 1%;
  width: 33.33333%;
}

.zusatz__elem1 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.zusatz__elem2 {
  width: 60%;
}

.partner-link {
  display: inline-block;
  margin: 6px 2px;
  padding: 10px;
  background-color: #fff;
  color: #333 !important;
  font-style: normal !important;
  transition: background-color 0.2s linear;
}

.partner-link:hover,
.partner-link:focus,
.partner-link:active {
  background-color: #cdddfe;
}

#zusatz .custom h2 {
  width: 100%;
  color: #fff;
}

.logo1 {
  box-sizing: border-box;
  padding: 1%;
  width: 33.33333%;
}

.logo2 {
  box-sizing: border-box;
  padding: 1%;
  width: 33.33333%;
}

.logo3 {
  box-sizing: border-box;
  padding: 1%;
  width: 33.33333%;
}

#zusatz,
#zusatz strong,
#zusatz a {
  color: #fff;
}

#zusatz a {
  font-style: normal;
}

#zusatz hr {
  margin: 2em 0;
  border-bottom: 1px solid #444;
  width: 100%;
}

#zusatz p {
  margin: 0.5rem 0;
}

#address-wrap .fas,
#zusatz .fas {
  width: 20px;
  color: #fff;
}

.address-wrap {
  display: flex;
}

.address-wrap .fas {
  margin-right: 5px;
  transform: translateY(5px);
}

@media all and (min-width: 750px) and (max-width: 960px) {
  .zusatz__elem--logos {
    width: 100%;
    order: 1;
  }
  .zusatz__elem:nth-of-type(2) {
    width: 50%;
    order: 4;
  }
  .zusatz__elem:nth-of-type(3) {
    width: 50%;
    order: 5;
  }
  .zusatz__elem:nth-of-type(4) {
    width: 100%;
    order: 2;
  }
  .zusatz__elem:nth-of-type(5) {
    width: 50%;
    order: 6;
  }
  .zusatz__elem:nth-of-type(6) {
    width: 50%;
    order: 7;
  }
}

@media all and (max-width: 750px) {
  .zusatz__elem--logos {
    margin-top: 2em;
    width: 100%;
    order: 1;
  }
  .zusatz__elem:nth-of-type(2) {
    width: 100%;
    order: 4;
  }
  .zusatz__elem:nth-of-type(3) {
    margin-top: 2em;
    width: 100%;
    order: 6;
  }
  .zusatz__elem:nth-of-type(4) {
    margin-top: 2em;
    width: 100%;
    order: 2;
  }
  .zusatz__elem:nth-of-type(5) {
    width: 100%;
    order: 5;
  }
  .zusatz__elem:nth-of-type(6) {
    width: 100%;
    order: 7;
  }
}

#navigation-left {
  float: left;
  width: 18%;
  margin: 10% 3% 10% 4%;
}

#navigation-left .moduletable {
  width: 84%;
  background-color: #fff;
  padding: 8%;
  margin-bottom: 20px;
}

#navigation-left h3 {
  font-size: 85%;
  font-weight: 700;
  color: #333;
  margin: 0;
}

#navigation-left ul {
  list-style: none;
  padding-left: 0;
  margin: 4px 0;
}

#navigation-left ul li {
  font-size: 75%;
}

#navigation-left ul li.current,
#navigation-left ul li:hover {
  color: #e8e8e8;
  font-weight: 700;
}

#design-4 {
  padding-bottom: 1.5em;
  background-color: #333;
  position: relative;
  z-index: 10;
  float: left;
}

#container-4 {
  width: 92%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4%;
}

#footer {
  float: left;
}

#footer a,
#footer p,
#footer strong {
  font-size: 13px;
  text-decoration: none;
  color: #e8e8e8;
  margin: 23px 0;
}

#sitemap ul {
  list-style: none;
}

#sitemap ul li {
  float: left;
  margin-right: 10px;
}

#sitemap a {
  font-style: normal;
  font-size: 18px;
  font-weight: bold;
  color: #e8e8e8;
}

#impressum {
  float: right;
}

#impressum a {
  padding-left: 10px;
  font-size: 16px;
  font-style: normal;
  color: #e8e8e8;
}

#scrolltop {
  width: 50px;
  height: 50px;
  background-image: url(../images/scrolltop.png);
  background-size: cover;
  position: relative;
  z-index: 55;
  cursor: pointer;
  margin: -25px auto -10px;
}

.formContainer {
  border: 0;
}

.formRow {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 960px) {
  .formRow {
    flex-wrap: wrap;
  }
  .formSpan6 {
    width: 100%;
  }
}
div.formBody {
  float: none;
}

.formBody input,
.formBody textarea {
  outline: 0;
  border-radius: 0;
  border: 4px solid #003399;
  padding: 10px;
  width: 75%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: bold;
  appearance: none;
  box-shadow: none;
}

.rsform-block {
  position: relative;
}

.formControlLabel {
  font-weight: bold;
}

.formControlLabel.animatable {
  position: absolute;
  top: 0.7rem;
  padding: 0 1rem;
  font-weight: bold;
  transition: all 0.2s ease-out;
}

.formControlLabel.animatable.input-active {
  top: -0.35rem;
  left: 0.5rem;
  padding: 0 0.75rem;
  background-color: #003399;
  font-size: 80%;
  color: #fff;
  text-transform: uppercase;
}

.formBody input:active .fancybox-caption-wrap {
  display: none;
}

#mapFooterArn,
#mapFooterBuerkiL,
#mapFooterBuerkiN {
  height: 200px;
}

#mapBody {
  height: 500px;
}

path {
  cursor: pointer;
}

h1 {
  font-size: 250%;
  margin-bottom: 1em;
}

h1,
h2 {
  font-weight: 700;
  color: #222;
  line-height: 125%;
}

h2 {
  font-size: 150%;
  margin: 0 0 3px;
}

h3 {
  font-size: 120%;
  color: #666;
  line-height: 125%;
}

#incontent-70 li,
#incontent li,
p,
span,
span ul,
table {
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  font-size: 100%;
  font-weight: 400;
  line-height: 150%;
}

address {
  font-size: 87%;
  font-weight: 400;
}

address,
address strong {
  line-height: 23px;
  font-style: normal;
}

address strong {
  color: #333;
  font-weight: 700;
}

address a {
  color: #333;
  font-weight: 400;
  line-height: 23px;
  font-style: normal;
}

a {
  text-decoration: none;
  font-style: italic;
}

a,
strong {
  color: #1a1a1a;
}

strong {
  font-weight: 700;
}

hr {
  border: none;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  margin: 2em 0;
}

iframe {
  margin-top: 50px;
}

.grecaptcha-logo iframe {
  margin-top: 0;
}

p.readmore {
  margin: 10px 0;
  display: inline-flex;
}

a.btn,
.rsform-submit-button {
  border: 0 !important;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  font-weight: 700;
  font-style: normal;
  width: auto !important;
}

img.rahmen {
  width: 100%;
}

table,
table td {
  border-spacing: 0;
}

table td {
  padding: 4px;
}

table.alternierend {
  border-top: 10px solid #333;
  width: 50%;
}

table.alternierend a {
  color: #000;
  font-style: normal;
}

table.alternierend tr:hover a {
  color: #e8e8e8;
}

table.alternierend tr:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.2);
  color: #000;
}

table.alternierend tr:nth-child(2n) {
  background-color: rgba(0, 0, 0, 0.1);
  color: #000;
}

table.alternierend tr:hover {
  background-color: #333;
  color: #e8e8e8;
  -webkit-transition-property: background-color, color;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  -moz-transition-property: background-color, color;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease;
  -ms-transition-property: background-color, color;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease;
  -o-transition-property: background-color, color;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease;
  transition-property: background-color, color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

p.counter,
span.pagenav {
  font-size: 13px;
  text-align: center;
}

div.pagination ul {
  list-style: none;
  padding: 0;
  margin-top: -10px;
  text-align: center;
}

div.pagination li {
  display: inline;
  margin-right: 10px;
  font-size: 13px !important;
}

div.pagination li a {
  font-size: 13px;
  color: #1a1a1a;
  line-height: 19px;
  text-decoration: none;
}

div.pagination li a:hover {
  color: #1a1a1a;
}

#breadcrumbs ul {
  list-style: none;
  padding: 0;
}

#breadcrumbs ul li {
  display: inline-flex;
}

#breadcrumbs ul li img {
  padding: 2px 3px 0;
}

#breadcrumbs ul li.active,
#breadcrumbs ul li span {
  font-size: 11px;
  color: #e8e8e8;
}

#breadcrumbs ul li a {
  font-size: 11px;
  color: #333;
  text-decoration: none;
}

@media (min-width: 750px) and (max-width: 960px) {
  #navigation ul ul {
    list-style: none;
    position: absolute;
    display: block;
  }
  #navigation .moduletable_menu {
    text-align: center;
  }
  #banner-normal {
    height: 550px;
  }
  #banner-text h2 {
    font-size: 350%;
  }
  #incontent-70 {
    width: 92%;
    padding: 5% 4%;
  }
  .cols-1,
  .cols-2,
  .cols-3,
  .cols-4,
  .cols-5 {
    display: block;
  }
  .cols-3 .column-1,
  .cols-3 .column-2,
  .cols-3 .column-3,
  .cols-4 .column-1,
  .cols-4 .column-2,
  .cols-4 .column-3,
  .cols-4 .column-4,
  .cols-5 .column-1,
  .cols-5 .column-2,
  .cols-5 .column-3,
  .cols-5 .column-4,
  .cols-5 .column-5 {
    width: 46% !important;
    float: left;
    padding: 2% !important;
    margin-bottom: 4%;
  }
  .pull-left img,
  .pull-none img,
  .pull-right img,
  div.blog .pull-left img,
  div.blog .pull-none img,
  div.blog .pull-right img {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  #news {
    width: 92%;
    float: right;
    padding: 10% 4% 10% 2%;
  }
  #navigation-left .moduletable,
  #navigation-left .moduletable:first-child {
    width: 96%;
    padding: 2%;
    margin-bottom: 20px;
    float: left;
  }
  #navigation-left .moduletable:first-child {
    margin-right: 2%;
  }
  #navigation-left {
    float: left;
    width: 92%;
    padding: 4%;
    margin: 0;
  }
  #footer {
    float: none;
    text-align: center;
  }
  #sitemap {
    width: 100%;
    margin-bottom: 4%;
  }
  #sitemap ul {
    padding-left: 0;
  }
  #sitemap li {
    width: 100%;
    text-align: center;
  }
  #scrolltop {
    width: 40px;
    height: 40px;
    margin-top: -22px;
    margin-bottom: -10px;
  }
  table {
    width: 100% !important;
  }
}

@media (max-width: 750px) {
  #navigation {
    display: none;
  }
  #banner-normal {
    height: 400px;
  }
  #banner-text h2 {
    font-size: 400%;
  }
  #incontent-70 {
    width: 92%;
    padding: 5% 4%;
  }
  .leading-0 .pull-left img,
  .leading-0 .pull-none img,
  .leading-1 .pull-left img,
  .leading-1 .pull-none img,
  .leading-2 .pull-left img,
  .leading-2 .pull-none img,
  .leading-3 .pull-left img,
  .leading-3 .pull-none img,
  .leading-4 .pull-left img,
  .leading-4 .pull-none img,
  .leading-5 .pull-left img,
  .leading-5 .pull-none img {
    width: 100%;
    float: none;
    margin-right: 0;
  }
  .leading-0 .pull-right img,
  .leading-1 .pull-right img,
  .leading-2 .pull-right img,
  .leading-3 .pull-right img,
  .leading-4 .pull-right img,
  .leading-5 .pull-right img {
    width: 30%;
    float: none;
    margin-left: 0;
  }
  .leading-0,
  .leading-1,
  .leading-2,
  .leading-3,
  .leading-4,
  .leading-5 {
    text-align: center;
  }
  .cols-2 .column-1,
  .cols-2 .column-2,
  .cols-3 .column-1,
  .cols-3 .column-2,
  .cols-3 .column-3,
  .cols-4 .column-1,
  .cols-4 .column-2,
  .cols-4 .column-3,
  .cols-4 .column-4,
  .cols-5 .column-1,
  .cols-5 .column-2,
  .cols-5 .column-3,
  .cols-5 .column-4,
  .cols-5 .column-5 {
    width: 100% !important;
    float: left;
    padding: 0 !important;
    margin-bottom: 4%;
  }
  .pull-left img,
  .pull-none img,
  .pull-right img,
  div.blog .pull-left img,
  div.blog .pull-none img,
  div.blog .pull-right img {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  div.blog-referenzen .pull-left img,
  div.blog-referenzen .pull-none img,
  div.blog-referenzen .pull-right img,
  div.item-page-referenzen .pull-left img,
  div.item-page-referenzen .pull-none img,
  div.item-page-referenzen .pull-right img {
    width: 100%;
    float: left;
    margin-right: 0;
    margin-bottom: 2%;
  }
  #news {
    width: 92%;
    float: right;
    padding: 10% 4% 10% 2%;
  }
  #navigation-left .moduletable,
  #navigation-left .moduletable:first-child {
    width: 96%;
    padding: 2%;
    margin-bottom: 20px;
    float: left;
  }
  #navigation-left .moduletable:first-child {
    margin-right: 2%;
  }
  #navigation-left {
    float: left;
    width: 92%;
    padding: 4%;
    margin: 0;
  }
  #navigation-left ul li {
    float: left;
    margin-right: 15px;
  }
  #footer {
    float: none;
    text-align: center;
  }
  #sitemap {
    width: 100%;
    margin-bottom: 4%;
  }
  #sitemap ul {
    padding-left: 0;
  }
  #sitemap ul li {
    margin-right: 0;
    width: 100%;
    text-align: center;
  }
  #scrolltop {
    width: 40px;
    height: 40px;
    margin-top: -22px;
    margin-bottom: -10px;
  }
  table {
    width: 100% !important;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.row > * {
  box-sizing: border-box;
  padding: 0 0.75rem;
}

.col-12 {
  width: 100%;
}

@media all and (min-width: 992px) {
  .col-lg-6 {
    width: 50%;
  }
}

.team .fas {
  margin: 0;
  font-size: 200%;
}
