* {
  outline: none;
}
body {
  font-family: 'Open Sans', 'sans-serif';
  font-weight: 300;
  font-size: 1rem;
  color: #000000;
  background-color: #ffffff;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}
a {
  color: #7caece;
}
a:hover {
  color: #2b205a;
}
header {
  position: fixed;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #d9dadc;
  z-index: 15;
}
.textDarkblueLarge {
  color: #2b205a;
  font-size: 1.2em;
}
.textLightBlue {
  color: #7caece;
}
.headerContainer.container {
  position: relative;
  z-index: 18;
  font-family: 'Barlow Condensed', 'sans-serif';
  font-size: 1.1rem;
  height: 104px;
  background-color: #ffffff;
}
.sliderContainerText {
  position: absolute;
  left: 0;
  bottom: 0;
  font-family: 'Barlow Condensed', 'sans-serif';
  font-size: 3.7rem;
  line-height: 1;
  font-weight: 200;
  text-align: center;
  letter-spacing: 3px;
  color: #ffffff;
  width: 100%;
  padding-bottom: 80px;
  margin-bottom: 28px;
  background-image: url("/media/icon-down-arrow.svg");
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 54px;
}
main {
  position: relative;
  padding-top: 104px;
  padding-bottom: 58px;
  min-height: 81.1vh;
}
.container_container {
  margin: auto;
  width: 100%;
  max-width: 1140px;
  background-color: #ffffff;
  min-height: 74vh;
}
.container {
  width: 100%;
  max-width: 1140px;
  background-color: #ffffff;
}
.container .container {
  margin-left: -15px;
  margin-right: -15px;
}
.navbarWrapperContainer {
  height: 95px;
}
.navbar {
  padding-bottom: 0;
  z-index: 2;
}
.navbar-theme-app .navbar-brand {
  color: #000000;
}
.navbar-theme-app .navbar-brand:hover,
.navbar-theme-app .navbar-brand:focus {
  color: #000000;
}
.navbar-theme-app .navbar-nav .nav-item {
  position: relative;
}
.navbar-theme-app .navbar-nav .nav-item:hover .dropdown-menu {
  display: block;
}
.navbar-theme-app .navbar-nav .nav-item ul.ternav {
  padding-left: 0;
}
.navbar-theme-app .navbar-nav .nav-item + .nav-item .nav-link::before {
  content: '|';
  padding-right: 15px;
  vertical-align: text-top;
}
.navbar-theme-app .navbar-nav .nav-link {
  color: #554d7b;
}
.navbar-theme-app .navbar-nav .nav-link:hover,
.navbar-theme-app .navbar-nav .nav-link:focus {
  color: #000000;
}
.navbar-theme-app .navbar-nav .nav-link.disabled {
  color: #ababab;
}
.navbar-theme-app .navbar-nav .show > .nav-link,
.navbar-theme-app .navbar-nav .active > .nav-link,
.navbar-theme-app .navbar-nav .nav-link.show,
.navbar-theme-app .navbar-nav .nav-link.active {
  font-weight: 500;
  color: #554d7b;
}
.navbar-theme-app .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-theme-app .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-theme-app .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-theme-app .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-theme-app .navbar-text a:hover,
.navbar-theme-app .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}
.dropdown-menu {
  -webkit-border-radius: 0 0 0.25rem 0.25rem;
  -moz-border-radius: 0 0 0.25rem 0.25rem;
  border-radius: 0 0 0.25rem 0.25rem;
  border-top: none;
  margin-top: 0;
}
.dropdown-menu .dropdown-item:active {
  background-color: transparent !important;
}
.dropdown-menu .dropdown-item a {
  color: #554d7b;
}
.dropdown-menu .dropdown-item a:hover,
.dropdown-menu .dropdown-item a:focus {
  color: #000000;
  background-color: transparent !important;
}
/*
* =============================================================================================
* === Navigation =======================================================================
* =============================================================================================
*/
#e3logo {
  position: relative;
}
#mobileNavigation {
  z-index: 99;
  position: fixed;
  display: block;
  width: 100vw;
  top: 0;
  left: 0;
  opacity: 0;
  height: 100vh;
  background-color: #2b205a;
  color: #ffffff;
  overflow: hidden;
  transform: scale(0);
  transition: transform .3s;
  transition-delay: 2s;
}
#mobileNavigation.open {
  animation-name: NaviAniIn;
  animation-duration: .3s;
  animation-timing-function: ease-in;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  opacity: 0.95;
  transform: scale(1);
  overflow-y: auto;
}
#mobileNavigation.closed {
  animation-name: NaviAniOut;
  animation-duration: .3s;
  animation-timing-function: ease-in;
  animation-delay: .2s;
  animation-iteration-count: 1;
  animation-fill-mode: backwards;
  transform: scale(0);
}
#mobileNavigation a {
  text-decoration: none;
}
#mobileNavigation ul {
  max-width: 90%;
  margin: auto;
  margin-top: 50px;
  padding: 0;
  list-style-type: none;
  font-size: 35px;
}
#mobileNavigation ul li {
  text-align: center;
  padding: 0;
  margin: 0;
  margin-bottom: 0.5em;
  height: auto;
}
#mobileNavigation ul li a {
  font-family: 'Barlow Condensed', 'sans-serif';
  color: white;
  line-height: 1em;
}
#mobileNavigation ul li a .navText {
  display: block;
}
#mobileNavigation ul li a .navDescription {
  font-family: 'Barlow Condensed', 'sans-serif';
  font-size: 1.25rem;
  line-height: 28px;
  letter-spacing: 0.04em;
  display: block;
  text-decoration-skip: box-decoration;
  text-transform: none;
}
#mobileNavigation ul li a:hover .navDescription {
  text-decoration: underline;
}
#mobileNavigation ul ul {
  margin: 0;
  padding: 0;
  max-width: 100%;
  height: auto;
  margin-top: 0;
  line-height: 1.5rem;
}
#mobileNavigation ul ul li {
  display: block;
  font-size: 18px;
  margin-bottom: 0;
  margin-top: 10px;
}
#mobileNavigation ul ul li a {
  font-family: 'Barlow Condensed', 'sans-serif';
  letter-spacing: 0.07em;
  color: #ffffff;
  padding-left: 10px;
  border-bottom: 0px solid white;
}
#mobileNavigation ul ul li a:before {
  content: '|';
  padding-right: 10px;
  vertical-align: text-top;
}
@media (max-width: 575px) {
  #mobileNavigation ul ul li a:before {
    content: '';
  }
}
@media (max-width: 575px) {
  #mobileNavigation ul ul li a {
    padding: 0 5px;
    display: block;
  }
}
#mobileNavigation ul ul li:first-child a {
  padding-left: 0 !important;
}
#mobileNavigation ul ul li:first-child a:before {
  content: '';
  padding-right: 0 !important;
}
#mobileNavigation ul ul ul.ternav {
  margin-bottom: 0.5em;
}
#mobileNavigation ul ul ul.ternav li {
  font-size: 13px;
  margin-top: 5px;
}
#mobileNavigation li.main {
  transform: scale(0);
  transition: transform .1s;
  transition-delay: 2s;
}
#mobileNavigation li.main:nth-of-type(1) {
  animation-delay: .1s;
}
#mobileNavigation li.main:nth-of-type(2) {
  animation-delay: .2s;
}
#mobileNavigation li.main:nth-of-type(3) {
  animation-delay: .3s;
}
#mobileNavigation li.main:nth-of-type(4) {
  animation-delay: .4s;
}
#mobileNavigation li.main:nth-of-type(5) {
  animation-delay: .5s;
}
#mobileNavigation li.main:nth-of-type(6) {
  animation-delay: .6s;
}
#mobileNavigation li.main:nth-of-type(7) {
  animation-delay: .7s;
}
#mobileNavigation.open li.main {
  animation-name: FontAni;
  animation-duration: .7s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  transform: scale(1);
}
@-webkit-keyframes NaviAniIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
}
@-webkit-keyframes NaviAniOut {
  0% {
    transform: scale(1);
    opacity: 0.95;
  }
  100% {
    transform: scale(0);
  }
}
@-webkit-keyframes FontAni {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes NaviAniIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
}
@keyframes NaviAniOut {
  0% {
    transform: scale(1);
    opacity: 0.95;
  }
  100% {
    transform: scale(0);
  }
}
@keyframes FontAni {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
header nav {
  display: block;
}
/** Burger Menue*******************/
#mobile_navigation {
  position: absolute;
  top: 5px;
  right: 5px;
  color: #000000;
  z-index: 1201;
}
#mobile_navigation.open {
  z-index: 1201;
  position: fixed;
}
#mobile_navigation .hamburger-inner:after,
#mobile_navigation .hamburger-inner:before,
#mobile_navigation .hamburger-inner {
  background-color: #000000 !important;
}
#mobile_navigation .hamburger:focus {
  outline: 0 !important;
}
#mobile_navigation .hamburger.is-active .hamburger-inner:after,
#mobile_navigation .hamburger.is-active .hamburger-inner:before,
#mobile_navigation .hamburger.is-active .hamburger-inner {
  background-color: #ffffff !important;
}
/***Hamburger *******************************************************/
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  z-index: 888;
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0 0 0 17px;
  padding: 15px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: .15s;
  transition-property: scale, opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
}
.hamburger-box {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 24px;
}
.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  position: absolute;
  width: 30px;
  height: 3px;
  transition-timing-function: ease;
  transition-duration: .15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #000;
}
.hamburger-inner:after,
.hamburger-inner:before {
  display: block;
  content: "";
}
.hamburger-inner:before {
  top: -9px;
}
.hamburger-inner:after {
  bottom: -9px;
}
.hamburger--spin .hamburger-inner {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: .22s;
}
.hamburger--spin .hamburger-inner:before {
  transition: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner:after {
  transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(225deg);
}
.hamburger--spin.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
  opacity: 0;
}
.hamburger--spin.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(-90deg);
}
.hamburger--spin-r .hamburger-inner {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: .22s;
}
.hamburger--spin-r .hamburger-inner:before {
  transition: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner:after {
  transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(-225deg);
}
.hamburger--spin-r.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
  opacity: 0;
}
.hamburger--spin-r.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(90deg);
}
#logoContainer {
  position: absolute;
  bottom: 20px;
  left: 25px;
  background-color: rgba(255, 255, 255, 0.5);
  width: 276px;
  padding: 0px;
  z-index: 20;
}
#logoContainer img {
  width: 100%;
  display: block;
}
.container.slickContainer {
  padding-right: 0;
  padding-left: 0;
}
.slick-slide > div {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.sliderContainer {
  position: relative;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center top;
  height: 80vh;
}
.slick-prev {
  left: 25px;
  z-index: 700;
}
.slick-next {
  right: 25px;
  z-index: 700;
}
.coverflowContainer {
  padding-top: 40px;
  padding-bottom: 15px;
  overflow: hidden;
}
.coverflow {
  min-height: 550px !important;
}
.coverflow .cover {
  cursor: pointer;
  width: 380px;
  height: 550px;
  background-color: white;
  list-style: none;
}
.coverflow .cover .imgCoverflow {
  width: 100%;
  height: 380px;
}
.coverflow .cover h3 {
  font-family: 'Oswald', 'sans-serif';
  font-weight: 300;
  color: #2b205a;
  padding: 0 20px;
}
.coverflow .cover p {
  padding: 0 20px;
}
@media (max-width: 400px) {
  .coverflow .cover {
    padding: 0 30px;
  }
}
.cfNavContainer {
  position: relative;
  width: 130px;
  margin-top: -15px;
  z-index: 999;
}
.cfNavContainer:before,
.cfNavContainer:after {
  content: " ";
  display: table;
}
.cfNavContainer:after {
  clear: both;
}
@media (max-width: 767px) {
  .cfNavContainer {
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .cfNavContainer {
    margin-right: 318px;
    float: right;
  }
}
.cfNavBt {
  background-color: transparent;
  border: none;
  float: left;
  cursor: pointer;
  outline: none;
}
.cfNavBt i {
  width: 40px;
  height: 40px;
  background-color: transparent;
  background-repeat: no-repeat;
  border: none;
  display: block;
  outline: none;
}
.cfBtnLeft i {
  background-image: url(/media/icon-left-arrow.svg);
  background-position-x: 100%;
}
.cfBtnRight i {
  background-image: url(/media/icon-right-arrow.svg);
  background-position-x: 0;
}
.cfNavStatus {
  font-family: 'Oswald', 'sans-serif';
  font-weight: 300;
  line-height: 40px;
  color: #2b205a;
  float: left;
}
.textContent {
  padding: 45px 0 0 55px;
}
.textContent h1.h3,
.textContent h3 {
  font-family: 'Oswald', 'sans-serif';
  font-size: 1rem;
  font-weight: 600;
  color: #2b205a;
  margin-bottom: 0;
}
.textContent h1.h4,
.textContent h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.textContent h1.h5,
.textContent h5 {
  font-family: 'Oswald', 'sans-serif';
  font-size: 0.9rem;
  font-weight: 600;
  color: #2b205a;
  margin-bottom: 0.5rem;
}
.textContent .moreLink,
.textContent .moreLink a {
  font-family: 'Barlow Condensed', 'sans-serif';
  font-weight: 200;
  color: #7caece;
  text-transform: uppercase;
}
.textContent a {
  color: #7caece;
}
h1,
.h1 {
  font-family: 'Oswald', 'sans-serif';
  font-weight: 200;
  font-size: 3.7rem;
  line-height: 1;
  color: #a0a3a8;
  margin-bottom: 0.5em;
}
h2,
.h2 {
  font-family: 'Oswald', 'sans-serif';
  font-weight: 200;
  font-size: 2.9rem;
  line-height: 1;
  color: #a0a3a8;
  margin-bottom: 0.5em;
}
h1.introTextContent.h3,
h3.introTextContent {
  line-height: 1;
  margin-bottom: 1.5rem;
}
h1.introTextContent.h4,
h4.introTextContent {
  font-family: 'Oswald', 'sans-serif';
  font-weight: 200;
  font-size: 2.9rem;
  line-height: 1;
  color: #a0a3a8;
}
.headlineContent {
  background: #d9dadc;
  padding: 2.5rem 0;
}
.headlineContent h2 {
  font-family: 'Oswald', 'sans-serif';
  font-size: 3.7rem;
  line-height: 1;
  font-weight: 300;
  text-align: center;
  color: #ffffff;
  margin: 0;
}
.bildZitatContainer .zitatContent {
  font-family: 'Barlow Condensed', 'sans-serif';
  font-size: 1.75rem;
  font-weight: 200;
  line-height: 1.25;
  color: #7caece;
  padding-right: 55px;
}
.bildZitatContainer .imgBlock + .zitatContent {
  margin-top: 1em;
}
.imgContentFullsize {
  padding: 0;
}
.imgContentFullsize .imgBlock,
.imgContent .imgBlock {
  width: 100%;
}
.imgBlock {
  display: block;
}
.illuContainer {
  padding: 0 62px 35px 62px;
}
.illuContainer .illupic {
  text-align: center;
}
.illuContainer .illupic img {
  width: auto;
  max-width: 1005;
  max-height: 280px;
  margin-bottom: 20px;
}
.illuContainer .illutext {
  padding: 25px;
  background-color: #f6f6f5;
  border: 5px solid #ababab;
  border-radius: 18px;
}
.illuContainer .illutext * {
  font-family: 'Oswald', 'sans-serif';
  line-height: 1.2rem;
  font-size: 0.9rem;
  font-weight: bold;
  color: #ababab !important;
}
.illuContainer .illutext *:last-child {
  margin-bottom: 0;
}
.image_arrow_container {
  position: relative;
}
.image_arrow_container .teaserbildTextContainer {
  position: absolute;
  bottom: 15px;
  width: 100%;
}
.image_arrow_container .teaserbildTextContainer h1 {
  font-family: 'Oswald', 'sans-serif';
  font-size: 3.7rem;
  line-height: 1;
  font-weight: 200;
  letter-spacing: 3px;
  text-align: center;
  color: #ffffff;
  padding-bottom: 80px;
  background-image: url(/media/icon-down-arrow.svg);
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 54px;
}
.padBot45 {
  padding-bottom: 45px !important;
}
.noPadTop {
  padding-top: 0 !important;
}
.footerContainer {
  position: relative;
  z-index: 1;
  font-family: 'Barlow Condensed', 'sans-serif';
  color: #ffffff;
  background: #000000;
  border-bottom: 1px solid #ffffff;
}
.footerContainer .container.footerContent {
  position: relative;
  background: transparent;
  padding: 15px 70px 10px 60px;
}
.navFooter {
  text-transform: uppercase;
  margin-right: 45px;
  margin-bottom: 1rem;
}
.navFooter ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.navFooter ul li {
  float: left;
}
.navFooter ul li a {
  color: #ffffff;
  padding-right: 20px;
}
.addressFooter {
  line-height: 1.1;
}
.addressFooter a {
  color: #ffffff;
}
.imgSocialMedia {
  width: 35px;
  height: 35px;
  margin-right: 6px;
  display: inline-block;
}
.btnScrollTop {
  position: absolute;
  right: 0;
  top: -56px;
  outline: none;
  z-index: 999;
}
.btnScrollTop i {
  width: 65px;
  height: 56px;
  background-color: #7caece;
  background-image: url(/media/icon-top-arrow.svg);
  background-size: 40px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}
.container.nopadding {
  padding: 0;
}
.infobox_container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 20px 0 60px 0;
}
.infobox_container .infobox {
  transition: all .7s;
  width: 50%;
  position: relative;
  right: -100%;
  padding: 50px;
  background-color: #7caece;
  color: #ffffff;
}
.infobox_container .infobox .infobox_faehnchen {
  cursor: pointer;
  position: absolute;
  width: 65px;
  height: 56px;
  top: 0;
  left: -65px;
  background: url(/media/contact_icon.svg) center center no-repeat #7caece;
  background-size: 70%;
}
.infobox_container .infobox.open {
  right: -50%;
}
.produktlisteContainer {
  padding-top: 0;
  vertical-align: top;
}
.produktlisteContainer .produktheadline {
  vertical-align: top;
  display: inline-block;
  padding: 0px 40px 0px 10px;
  background-color: #7caece;
  margin-right: 10px;
  margin-bottom: 20px;
}
.produktlisteContainer .produktheadline h3 {
  font-weight: 100;
  font-size: 2.2rem;
  color: #ffffff;
}
.produktlisteContainer .produkliste {
  display: inline-block;
  padding: 0;
}
.produktlisteContainer .produkliste ul.pList {
  padding: 0;
}
.produktlisteContainer .produkliste ul.pList li {
  list-style-type: none;
  line-height: 1em;
  margin-bottom: 1em;
}
.produktlisteContainer .produkliste ul.pList li a {
  text-decoration: underline;
  color: #000000;
}
.productColumn {
  padding-top: 110px;
  padding-bottom: 65px;
}
.productColumn .productdetail {
  border-bottom: 1px solid #000000;
  line-height: 1.6em;
  font-size: 0.9em;
}
.productColumn .productdetail:first-child {
  border-top: 1px solid #000000;
}
.productColumn .productdetail.withoutbottomborder {
  border-bottom: none;
}
.productColumn .productdetail .left {
  vertical-align: top;
  display: inline-block;
  width: 40%;
}
.productColumn .productdetail .right {
  vertical-align: top;
  display: inline-block;
  width: 50%;
}
.productColumn .productdetail h1.h3,
.productColumn .productdetail h3 {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid #000000;
  margin-bottom: 0;
}
.productColumn .productdetail ul.downloads {
  padding: 0;
}
.productColumn .productdetail ul.downloads li {
  border-bottom: 1px solid #000000;
  list-style-type: none;
  padding: 5px 0;
}
.productColumn .productdetail ul.downloads li a {
  background: url(/media/pdf_icon.svg) left top no-repeat;
  padding-left: 30px;
  color: #000000;
}
.productColumn .productdetail ul.downloads li a:hover {
  text-decoration: none;
}
.productColumn .productdetail div.downloads {
  padding: 0;
}
.productColumn .productdetail div.downloads p {
  border-bottom: 1px solid #000000;
  list-style-type: none;
  padding: 5px 0;
  margin-bottom: 0;
}
.productColumn .productdetail div.downloads p a {
  background: url(/media/pdf_icon.svg) left top no-repeat;
  padding-left: 30px;
  color: #000000;
}
.productColumn .productdetail div.downloads p a:hover {
  text-decoration: none;
}
.presseContainerContainer {
  padding-left: 55px;
  padding-bottom: 65px;
}
.presseContainerContainer .presseboxContainer {
  margin-bottom: 2rem;
}
.presseContainerContainer .presseboxContainer .pressebox {
  background-color: #f6f6f5;
  padding: 20px;
}
.disclaimer {
  padding: 50px;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  overflow-y: auto;
  background-color: #7caece;
  opacity: .9;
}
.disclaimer.OK {
  display: none;
}
.disclaimer .container {
  background-color: transparent;
  color: white;
}
.disclaimer .container h1,
.disclaimer .container h2,
.disclaimer .container h3,
.disclaimer .container h4,
.disclaimer .container h5,
.disclaimer .container h6 {
  color: white;
}
.marginBottom {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  #mobile_navigation {
    display: none;
  }
  .imgContent {
    padding: 0;
  }
  .bildZitatContainer {
    padding: 45px 0 0 0;
  }
  .bildZitatContainer .imgBlock {
    padding-right: 55px;
  }
}
@media (max-width: 767px) {
  main {
    padding-top: 58px;
  }
  .headerContainer.container {
    height: 58px;
  }
  .headlineContent h2 {
    font-size: 2rem;
  }
  .sliderContainerText {
    font-size: 2rem;
    padding-bottom: 30px;
  }
  .sliderContainer {
    min-height: 300px;
  }
  #logoContainer {
    top: 10px;
    bottom: auto;
    left: 15px;
    width: 232px;
  }
  .textContent {
    padding: 20px 0 0 0;
  }
  .footerContainer .container.footerContent {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 575px) {
  .teaserbildTextContainer h1 {
    font-size: 2rem;
    padding-bottom: 45px;
  }
}
@media (min-width: 992px) {
  .navFooter {
    float: left;
  }
  .addressFooter {
    float: right;
  }
  .socialMediaLink {
    float: left;
  }
}
#cookiereinit {
  background-color: #7caece !important;
  border-color: #7caece !important;
  color: white;
}
