/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 10px 10px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #008bd2;
  box-shadow: none;
}
.hamburger:focus {
  outline: 0;
}

.hamburger-box {
  width: 30px;
  height: 20px;
  display: inline-block;
  position: relative;
  vertical-align: bottom;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 4px;
  background-color: #008bd2;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Magnific Popup CSS */
.white-popup {
  position: relative;
  background: #FFF;
  padding: 25px;
  width: auto;
  max-width: 400px;
  margin: 0 auto;
}

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC;
}
.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before, .mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  background-color: white;
  width: 100%;
}
header nav.navbar {
  height: 90px;
  justify-content: space-between;
  position: relative;
}
@media (min-width: 992px) {
  header nav.navbar {
    padding-left: 0;
    padding-right: 0;
  }
}
header nav.navbar.nav-shrinked {
  height: 48px;
}
header nav.navbar.nav-shrinked .navbar-brand img {
  width: 120px;
  height: auto;
}
header nav.navbar.nav-shrinked .navbar-brand.brand-ot img {
  width: 30px;
  height: auto;
}
header nav.navbar.nav-shrinked img.brand-ot {
  width: 30px;
  height: auto;
}
@media (min-width: 992px) {
  header nav.navbar.nav-shrinked .navbar-brand img {
    width: 105px;
  }
  header nav.navbar.nav-shrinked .navbar-brand.brand-ot img {
    width: 30px;
  }
  header nav.navbar.nav-shrinked img.brand-ot {
    width: 30px;
  }
  header nav.navbar.nav-shrinked .navbar-right .nav-utils, header nav.navbar.nav-shrinked .navbar-right .navbar-request-button, header nav.navbar.nav-shrinked .navbar-right .socials, header nav.navbar.nav-shrinked .navbar-right .language-switcher, header nav.navbar.nav-shrinked .navbar-right .mode-switcher {
    display: none;
  }
}
@media (min-width: 1920px) {
  header nav.navbar.nav-shrinked .navbar-right .nav-utils, header nav.navbar.nav-shrinked .navbar-right .socials, header nav.navbar.nav-shrinked .navbar-right .language-switcher {
    display: flex;
  }
  header nav.navbar.nav-shrinked .navbar-right .navbar-request-button {
    display: block;
  }
}
header nav.navbar .navbar-brand img {
  width: 160px;
  height: auto;
}
@media (min-width: 576px) {
  header nav.navbar .navbar-brand img {
    width: 200px;
  }
}
@media (min-width: 992px) {
  header nav.navbar .navbar-brand img {
    width: 220px;
  }
}
header nav.navbar .navbar-brand.brand-ot img {
  width: 70px;
  height: auto;
}
header nav.navbar img.brand-ot {
  width: 70px;
  height: auto;
}
header nav.navbar button {
  position: absolute;
  right: 0;
  z-index: 999;
}
header nav.navbar button > * {
  pointer-events: none;
}
header nav.navbar button.is-active {
  top: 12px;
  right: 20px;
  position: fixed;
}
@media (min-width: 768px) {
  header nav.navbar button.is-active {
    top: 20px;
  }
}
header nav.navbar .navbar-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  header nav.navbar .navbar-right .navbar-collapse {
    order: 5;
  }
  header nav.navbar .navbar-right .nav-utils {
    order: 1;
    margin-bottom: 5px;
  }
  header nav.navbar .navbar-right a.navbar-request-button {
    order: 2;
    margin-bottom: 5px;
  }
}
@media (min-width: 1400px) {
  header nav.navbar .navbar-right .navbar-collapse {
    order: 0;
  }
  header nav.navbar .navbar-right .nav-utils {
    order: 0;
    margin-bottom: 0;
  }
  header nav.navbar .navbar-right a.navbar-request-button {
    order: 0;
    margin-bottom: 0;
  }
}
header nav.navbar .navbar-right .navbar-collapse {
  justify-content: flex-end;
}
@media (min-width: 992px) {
  header nav.navbar .navbar-right .navbar-collapse {
    width: 100%;
  }
}
@media (min-width: 1400px) {
  header nav.navbar .navbar-right .navbar-collapse {
    margin-right: 40px;
    width: auto;
  }
}
header nav.navbar .navbar-right .navbar-collapse ul li {
  position: relative;
}
header nav.navbar .navbar-right .navbar-collapse ul li a {
  color: #2D2E2F;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.07em;
  padding: 5px 12px;
  transition: all 100ms;
}
header nav.navbar .navbar-right .navbar-collapse ul li a:hover {
  color: white;
  background-color: #008bd2;
}
header nav.navbar .navbar-right .navbar-collapse ul li.active > a {
  color: white;
  background-color: #008bd2;
}
header nav.navbar .navbar-right .navbar-collapse ul li.language-item .language-flag {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-bottom: -5px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
header nav.navbar .navbar-right .navbar-collapse ul li.language-item .language-flag.de {
  background-image: url("../images/language_icons/icon_germany.svg");
}
header nav.navbar .navbar-right .navbar-collapse ul li.language-item .language-flag.en {
  background-image: url("../images/language_icons/icon_england.svg");
}
header nav.navbar .navbar-right .navbar-collapse ul li.language-item > a:after {
  content: none;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 10px;
  margin-bottom: -3px;
  background-image: url("../images/img/arrow_down_black.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
header nav.navbar .navbar-right .navbar-collapse ul li.language-item > a:hover:after {
  background-image: url("../images/img/arrow_down_white.svg");
}
@media (min-width: 992px) {
  header nav.navbar .navbar-right .navbar-collapse ul li.language-item > a:after {
    content: "";
  }
}
header nav.navbar .navbar-right .navbar-collapse ul li.login-mobile {
  display: block;
}
@media (min-width: 992px) {
  header nav.navbar .navbar-right .navbar-collapse ul li.login-mobile {
    display: none;
  }
}
header nav.navbar .navbar-right .navbar-collapse ul li.login-mobile .subnavC {
  position: relative;
  background-color: transparent;
  border-radius: 0 0 0 30px;
  padding-top: 10px;
  z-index: 99;
}
header nav.navbar .navbar-right .navbar-collapse ul li.login-mobile .subnavC .subnav-inner {
  width: 100%;
  height: 100%;
  background-color: #efefef;
  border-top: 2px solid #008bd2;
  border-radius: 0 0 0 30px;
}
@media (min-width: 992px) {
  header nav.navbar .navbar-right .navbar-collapse ul li.login-mobile .subnavC .subnav-inner {
    box-shadow: -0.5rem 0 1rem rgba(0, 0, 0, 0.075), 0.5rem 0 1rem rgba(0, 0, 0, 0.075) !important;
  }
}
header nav.navbar .navbar-right .navbar-collapse ul li.login-mobile .subnavC .form-container {
  background-color: #008bd2;
  border-radius: 0 0 0 30px;
  margin-bottom: 0;
  width: 100%;
}
header nav.navbar .navbar-right .navbar-collapse ul li.login-mobile .subnavC .form-container .form-inner {
  padding: 2rem;
}
header nav.navbar .navbar-right .navbar-collapse ul li.login-mobile .subnavC .form-container .form-inner form .form-title {
  white-space: normal;
}
header nav.navbar .navbar-right .navbar-collapse ul li.login-mobile .subnavC .form-container .form-inner form .form-content .form-group {
  margin-bottom: 2rem;
}
header nav.navbar .navbar-right .navbar-collapse ul li.login-mobile .subnavC .form-container .form-inner form .form-content .form-group input {
  border: 1px solid #008bd2;
  border-radius: 0;
  color: #535457;
  font-size: 16px;
  font-weight: 300;
  height: 60px;
  line-height: 60px;
  padding: 0 40px 0 20px;
  width: 100%;
}
header nav.navbar .navbar-right .navbar-collapse ul li.login-mobile .subnavC .form-container .form-inner form .form-content .form-group input:focus {
  outline: 0;
  box-shadow: none;
}
header nav.navbar .navbar-right .navbar-collapse ul li.login-mobile .subnavC .form-container .form-inner form .form-content .form-group.has-error span.help-block.form-error {
  display: block;
  color: white;
  margin-top: 5px;
  font-size: 1.3rem;
}
header nav.navbar .navbar-right .navbar-collapse ul li.login-mobile .subnavC .form-container .form-inner form .form-content .form-action {
  text-align: right;
  margin-top: 2rem;
}
header nav.navbar .navbar-right .navbar-collapse ul li.login-mobile .subnavC .form-container .form-inner form .form-content .form-action button {
  position: relative;
  border-color: white;
}
@media (min-width: 992px) {
  header nav.navbar .navbar-right .navbar-collapse > ul.navbar-nav li:last-child .subnavC .subnav-inner {
    text-align: right;
  }
}
@media (min-width: 1920px) {
  header nav.navbar .navbar-right .navbar-collapse > ul.navbar-nav li:last-child .subnavC .subnav-inner {
    text-align: left;
  }
}
header nav.navbar .navbar-right .navbar-collapse .subnavC {
  position: absolute;
  top: 100%;
  background-color: transparent;
  border-radius: 0 0 0 30px;
  padding-top: 10px;
  z-index: 99;
}
header nav.navbar .navbar-right .navbar-collapse .subnavC .subnav-inner {
  width: 100%;
  height: 100%;
  background-color: #efefef;
  border-top: 2px solid #008bd2;
  border-radius: 0 0 0 30px;
}
@media (min-width: 992px) {
  header nav.navbar .navbar-right .navbar-collapse .subnavC .subnav-inner {
    box-shadow: -0.5rem 0 1rem rgba(0, 0, 0, 0.075), 0.5rem 0 1rem rgba(0, 0, 0, 0.075) !important;
  }
}
header nav.navbar .navbar-right .navbar-collapse .subnavC .subnav {
  display: inline-block;
  list-style: none;
  padding: 0;
}
header nav.navbar .navbar-right .navbar-collapse .subnavC .subnav li {
  font-size: 1.6rem;
  padding: 0;
  margin-left: 0;
  white-space: nowrap;
}
header nav.navbar .navbar-right .navbar-collapse .subnavC .subnav li a {
  padding: 5px 25px;
}
@media (min-width: 992px) {
  header nav.navbar .navbar-right .navbar-collapse .subnavC .subnav li a {
    padding: 12.5px 25px;
  }
}
header nav.navbar .navbar-right .navbar-collapse .subnavC .subnav li:last-child a {
  border-radius: 0 0 0 30px;
}
header nav.navbar .navbar-right .navbar-collapse.mobile-nav {
  pointer-events: all;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 98;
  width: 330px;
  height: 100%;
  background-color: white;
  box-shadow: -15px 0px 16.4px 1.6px rgba(0, 0, 0, 0.17);
  overflow-x: hidden;
  overflow-y: scroll;
  white-space: nowrap;
}
header nav.navbar .navbar-right .navbar-collapse.mobile-nav ul.navbar-nav {
  padding: 5rem 5rem 3rem 5rem;
}
header nav.navbar .navbar-right .navbar-collapse.mobile-nav ul.navbar-nav li {
  padding-bottom: 2.5rem;
}
header nav.navbar .navbar-right .navbar-collapse.mobile-nav ul.navbar-nav li a {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  letter-spacing: 0.07em;
}
header nav.navbar .navbar-right .navbar-collapse.mobile-nav ul.navbar-nav li.has-subnav .subnav-toggler-mobile {
  display: block;
  position: absolute;
  right: -17px;
  top: 8px;
  width: 6px;
  height: 15px;
  background-image: url("../images/img/pfeil_rechts_dunkelgrau.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(90deg);
}
@media (min-width: 768px) {
  header nav.navbar .navbar-right .navbar-collapse.mobile-nav ul.navbar-nav li.has-subnav .subnav-toggler-mobile {
    top: 12px;
  }
}
header nav.navbar .navbar-right .navbar-collapse.mobile-nav ul.navbar-nav li.has-subnav .subnav-toggler-mobile.toggled {
  background-image: url("../images/img/icon_minus_grau.svg");
  transform: rotate(0deg);
  width: 10px;
}
header nav.navbar .navbar-right .navbar-collapse.mobile-nav ul.navbar-nav li.has-subnav .subnav {
  padding: 2.5rem 0 0;
}
header nav.navbar .navbar-right .navbar-collapse.mobile-nav ul.navbar-nav li.has-subnav .subnav li a:last-child {
  border-radius: 0;
}
header nav.navbar .navbar-right .navbar-collapse.mobile-nav ul.navbar-nav li .subnav-toggler-mobile {
  display: none;
}
header nav.navbar .navbar-right .navbar-collapse.mobile-nav .subnavC {
  position: relative;
  padding-top: 0;
}
header nav.navbar .navbar-right .navbar-collapse.mobile-nav .subnavC .subnav-inner {
  border: none;
}
header nav.navbar .navbar-right .navbar-collapse.mobile-nav .subnavC .subnav-inner ul {
  margin-left: 2rem;
}
header nav.navbar .navbar-right .navbar-collapse.mobile-nav .subnavC .subnav-inner ul li a {
  font-size: 1.8rem;
}
header nav.navbar .navbar-right .navbar-collapse .mobile-div {
  display: block;
}
header nav.navbar .navbar-right .navbar-collapse .mobile-div > div {
  display: block;
}
header nav.navbar .navbar-right .navbar-collapse .mobile-div .navbar-request-button {
  display: inline-block;
  margin: 1rem 0 1rem 5rem;
}
@media (min-width: 992px) {
  header nav.navbar .navbar-right .navbar-collapse .mobile-div {
    display: none;
  }
}
header nav.navbar .navbar-right .navbar-collapse .mobile-div .nav-utils {
  border-bottom: 2px solid #008bd2;
}
header nav.navbar .navbar-right .navbar-collapse .mobile-div .nav-utils ul.utils-list {
  padding: 2rem 4.5rem;
}
header nav.navbar .navbar-right .navbar-collapse .mobile-div .nav-utils ul.utils-list li {
  padding-bottom: 0;
}
header nav.navbar .navbar-right .navbar-collapse .mobile-div .mode-and-language {
  padding: 0 5rem 3rem;
  display: flex;
  align-items: center;
}
header nav.navbar .navbar-right .navbar-collapse .mobile-div .mode-and-language > div {
  display: block;
  position: relative;
  top: 0;
}
header nav.navbar .navbar-right .navbar-collapse .mobile-div .mode-and-language .mode-switcher {
  border-right: 2px solid #ccc;
  padding-right: 15px;
}
header nav.navbar .navbar-right .nav-utils {
  display: none;
}
@media (min-width: 992px) {
  header nav.navbar .navbar-right .nav-utils {
    display: flex;
    align-items: center;
  }
}
header nav.navbar .navbar-right .nav-utils ul.utils-list {
  position: relative;
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 0;
}
header nav.navbar .navbar-right .nav-utils ul.utils-list li a {
  display: block;
  padding: 5px;
}
header nav.navbar .navbar-right .nav-utils ul.utils-list li a.login-link {
  padding-left: 30px;
}
header nav.navbar .navbar-right .nav-utils ul.utils-list li a span {
  display: inline-block;
  width: 20px;
  height: 18px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  vertical-align: middle;
}
header nav.navbar .navbar-right .nav-utils ul.utils-list li a span.utils-search {
  background-image: url("../images/img/icon_suche_1.svg");
}
header nav.navbar .navbar-right .nav-utils ul.utils-list li a span.utils-profile {
  background-image: url("../images/img/icon_login_1.svg");
}
header nav.navbar .navbar-right .nav-utils ul.utils-list li a span.utils-profile.logged-in {
  background-image: url("../images/img/icon_logged_in_1.svg");
}
header nav.navbar .navbar-right .nav-utils ul.utils-list li a:hover span.utils-search {
  background-image: url("../images/img/icon_suche_2.svg");
}
header nav.navbar .navbar-right .nav-utils ul.utils-list li a:hover span.utils-profile {
  background-image: url("../images/img/icon_login_2.svg");
}
header nav.navbar .navbar-right .nav-utils ul.utils-list li a:hover span.utils-profile.logged-in {
  background-image: url("../images/img/icon_logged_in_2.svg");
}
header nav.navbar .navbar-right .nav-utils .subnavC {
  position: absolute;
  top: 100%;
  right: -60px;
  background-color: transparent;
  border-radius: 0 0 0 30px;
  padding-top: 10px;
  z-index: 99;
}
header nav.navbar .navbar-right .nav-utils .subnavC .subnav-inner {
  width: 100%;
  height: 100%;
  background-color: #efefef;
  border-top: 2px solid #008bd2;
  border-radius: 0 0 0 30px;
}
@media (min-width: 992px) {
  header nav.navbar .navbar-right .nav-utils .subnavC .subnav-inner {
    box-shadow: -0.5rem 0 1rem rgba(0, 0, 0, 0.075), 0.5rem 0 1rem rgba(0, 0, 0, 0.075) !important;
  }
}
header nav.navbar .navbar-right .nav-utils .subnavC .form-container {
  background-color: #008bd2;
  border-radius: 0 0 0 30px;
  margin-bottom: 0;
  width: 400px;
}
header nav.navbar .navbar-right .nav-utils .subnavC .form-container .form-inner {
  padding: 2rem;
}
header nav.navbar .navbar-right .nav-utils .subnavC .form-container .form-inner form .form-content .form-group {
  margin-bottom: 2rem;
}
header nav.navbar .navbar-right .nav-utils .subnavC .form-container .form-inner form .form-content .form-group input {
  border: 1px solid #008bd2;
  border-radius: 0;
  color: #535457;
  font-size: 16px;
  font-weight: 300;
  height: 60px;
  line-height: 60px;
  padding: 0 40px 0 20px;
  width: 100%;
}
header nav.navbar .navbar-right .nav-utils .subnavC .form-container .form-inner form .form-content .form-group input:focus {
  outline: 0;
  box-shadow: none;
}
header nav.navbar .navbar-right .nav-utils .subnavC .form-container .form-inner form .form-content .form-group.has-error span.help-block.form-error {
  display: block;
  color: white;
  margin-top: 5px;
  font-size: 1.3rem;
}
header nav.navbar .navbar-right .nav-utils .subnavC .form-container .form-inner form .form-content .form-action {
  text-align: right;
  margin-top: 2rem;
}
header nav.navbar .navbar-right .nav-utils .subnavC .form-container .form-inner form .form-content .form-action button {
  position: relative;
  border-color: white;
}
header nav.navbar .navbar-right .navbar-request-button {
  margin: 5px 0 5px 60px;
  line-height: 17px;
  display: none;
  font-size: 14px;
  letter-spacing: 0.96px;
}
@media (min-width: 992px) {
  header nav.navbar .navbar-right .navbar-request-button {
    display: inline-block;
    z-index: 99;
  }
}
header hr {
  width: 100%;
  height: 2px;
  background-color: #008bd2;
  border-radius: 0;
  margin: 0;
}
header .search-bar {
  position: relative;
  background-color: #e7e7e7;
  height: 80px;
}
header .search-bar .main-container {
  height: 100%;
}
header .search-bar .search-inner {
  display: flex;
  align-items: center;
  height: 100%;
}
header .search-bar .search-inner .search-icon {
  width: 36px;
  height: 36px;
  margin-right: 2rem;
  background-image: url("../images/img/icon_suche_1.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
header .search-bar .search-inner input {
  background-color: transparent;
  border: none;
  height: 40px;
  font-size: 2.2rem;
  font-weight: 300;
  width: 90%;
}
header .search-bar .search-inner input::placeholder {
  color: #2d2e2f;
}
header .search-bar .search-inner input:focus {
  outline: 0;
  box-shadow: none;
}
header .search-bar .search-close {
  position: absolute;
  cursor: pointer;
  right: 0;
  top: 0;
  height: 80px;
  width: 80px;
  background-color: #c2c2c2;
}
header .search-bar .search-close .search-close-icon {
  position: absolute;
  width: 100%;
  height: 20px;
  top: 50%;
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background-image: url("../images/img/abbrechen_popup.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
header .overlay {
  background: rgba(51, 51, 51, 0.8);
  position: fixed;
  top: 0;
  display: block;
  left: 0;
  z-index: 98;
  width: 100%;
  height: 100%;
}

aside.sidebarC {
  background-color: #008bd2;
  border-radius: 30px 0 0 30px;
  position: fixed;
  top: 30%;
  right: -202px;
  transition: right 0.4s, opacity 0.2s;
  z-index: 500;
  opacity: 0;
}
aside.sidebarC.open {
  right: 0 !important;
}
aside.sidebarC .sidebar {
  display: flex;
  align-items: center;
}
aside.sidebarC .sidebar button {
  border: 0;
  background: transparent;
  width: 60px;
  height: 60px;
  border-right: 1px solid white;
  padding: 15px;
}
aside.sidebarC .sidebar button span.sidebar-icon {
  display: block;
  width: 28px;
  height: 28px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/img/social_media/icon_share.svg");
}
aside.sidebarC .sidebar button:focus {
  outline: 0;
  box-shadow: none;
}
aside.sidebarC .sidebar .sidebar-nav {
  padding: 5px;
}
aside.sidebarC .sidebar .sidebar-nav ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
aside.sidebarC .sidebar .sidebar-nav ul li a {
  display: block;
  padding: 10px;
}
aside.sidebarC .sidebar .sidebar-nav ul li a img {
  display: block;
  width: 28px;
  height: 28px;
}

footer {
  background-color: #efefef;
}
footer .top-footer {
  padding: 6rem 0;
}
footer .top-footer .top-footer-collumn {
  flex-basis: 100%;
  text-align: center;
}
@media (min-width: 992px) {
  footer .top-footer .top-footer-collumn {
    flex-basis: auto;
    text-align: left;
  }
}
footer .top-footer .top-footer-collumn span {
  display: block;
  color: #2d2e2f;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  margin-bottom: 3rem;
}
footer .top-footer .top-footer-collumn ul.footer-nav {
  display: flex;
  justify-content: center;
  flex-basis: 100%;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 auto 20px;
  padding: 0;
  width: 340px;
}
@media (min-width: 768px) {
  footer .top-footer .top-footer-collumn ul.footer-nav {
    margin: 0 0 20px;
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  footer .top-footer .top-footer-collumn ul.footer-nav {
    margin: 0;
    flex-basis: auto;
    justify-content: flex-start;
  }
}
footer .top-footer .top-footer-collumn ul.footer-nav li {
  margin-right: 30px;
  margin-left: -10px;
  margin-bottom: 10px;
  padding: 0;
}
footer .top-footer .top-footer-collumn ul.footer-nav li:last-child {
  margin-right: 0;
}
footer .top-footer .top-footer-collumn ul.footer-nav li a {
  color: #2d2e2f;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}
footer .top-footer .top-footer-collumn ul.footer-nav li a:hover {
  color: #008bd2;
}
footer .top-footer .top-footer-collumn.footer-map img {
  width: 600px;
  height: auto;
}
@media (min-width: 768px) {
  footer .top-footer .top-footer-collumn.footer-map img {
    margin: -4rem 0;
  }
}
footer .bottom-footer {
  position: relative;
  border-top: 5px solid #008bd2;
}
footer .footer-outer-container {
  background-color: #2d2e2f;
}
footer .footer-outer-container .footer-inner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}
@media (min-width: 992px) {
  footer .footer-outer-container .footer-inner-container {
    justify-content: space-between;
    height: 68px;
    padding: 0;
  }
}
footer .footer-outer-container .footer-inner-container .sitemap-button {
  border: 0;
  color: white;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-transform: none;
}
@media (min-width: 992px) {
  footer .footer-outer-container .footer-inner-container .sitemap-button {
    margin-bottom: 0;
  }
}
footer .footer-outer-container .footer-inner-container .sitemap-button span {
  display: inline-block;
  margin-left: 10px;
  height: 16px;
  width: 16px;
  background-image: url("../images/img/pfeil_unten_weiss.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: -5px;
}
footer .footer-outer-container .footer-inner-container .sitemap-button.open span {
  background-image: url("../images/img/pfeil_oben_weiss.svg");
}
footer .footer-outer-container .footer-inner-container .sitemap-button:hover {
  border-color: #575859;
  color: white;
}
footer .footer-outer-container .footer-inner-container span.company-description {
  color: white;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2em;
  letter-spacing: 0.02em;
  flex-basis: 100%;
  text-align: center;
}
@media (min-width: 992px) {
  footer .footer-outer-container .footer-inner-container span.company-description {
    flex-basis: auto;
    text-align: left;
  }
}
footer .sitemap-outer-container {
  background-color: #2d2e2f;
  border-top: 1px solid grey;
  padding: 40px 0;
}
footer .sitemap-outer-container .sitemap-inner-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 1200px) {
  footer .sitemap-outer-container .sitemap-inner-container {
    flex-wrap: nowrap;
  }
}
footer .sitemap-outer-container .sitemap-inner-container .sitemap-collumn {
  flex: 0 0 50%;
  margin-bottom: 5rem;
}
@media (min-width: 576px) {
  footer .sitemap-outer-container .sitemap-inner-container .sitemap-collumn {
    flex: 0 0 33.33333333%;
  }
}
@media (min-width: 1200px) {
  footer .sitemap-outer-container .sitemap-inner-container .sitemap-collumn {
    flex: 0 0 16.6667%;
    margin-bottom: 0;
  }
}
footer .sitemap-outer-container .sitemap-inner-container .sitemap-collumn h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
footer .sitemap-outer-container .sitemap-inner-container .sitemap-collumn a {
  color: white;
  font-size: 1.3rem;
  line-height: 1.846em;
  letter-spacing: 0.07em;
}
footer .sitemap-outer-container .sitemap-inner-container .sitemap-collumn a.top-level {
  position: relative;
  font-weight: bold;
  line-height: 2.769em;
}
footer .sitemap-outer-container .sitemap-inner-container .sitemap-collumn a .sitemap-dropdown-arrow {
  cursor: pointer;
  position: absolute;
  width: 12px;
  height: 10px;
  top: 0;
  left: calc(100% + 10px);
  background-image: url("../images/img/sitemap_klein_pfeil_oben.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  footer .sitemap-outer-container .sitemap-inner-container .sitemap-collumn a .sitemap-dropdown-arrow {
    top: 3px;
  }
}
footer .sitemap-outer-container .sitemap-inner-container .sitemap-collumn a.hide-ul .sitemap-dropdown-arrow {
  background-image: url("../images/img/sitemap_klein_pfeil_unten.svg");
}
footer .sitemap-outer-container .sitemap-inner-container .sitemap-collumn a:hover {
  color: #008bd2;
}
footer .sitemap-outer-container .sitemap-inner-container .sitemap-collumn ul {
  list-style: none;
  padding: 0;
}
footer .sitemap-outer-container .sitemap-inner-container .sitemap-collumn ul ul {
  padding-left: 1.5rem;
}
footer .sitemap-outer-container .sitemap-inner-container .sitemap-collumn ul ul li {
  list-style: none;
  padding: 0.4rem 0;
  position: relative;
}
footer .sitemap-outer-container .sitemap-inner-container .sitemap-collumn ul ul li:before {
  content: "";
  position: absolute;
  top: 8px;
  right: calc(100% + 3px);
  width: 6px;
  height: 8px;
  background-image: url("../images/img/pfeil_rechts_weiss.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  footer .sitemap-outer-container .sitemap-inner-container .sitemap-collumn ul ul li:before {
    top: 11px;
  }
}

.contact-container {
  position: relative;
  padding: 2rem 0.5rem;
  width: 100%;
}
@media (min-width: 992px) {
  .contact-container {
    padding: 0 13rem 4rem 13rem;
  }
}

.header-slider-block {
  position: relative;
}
@media (min-width: 992px) {
  .header-slider-block.contact .header-single {
    padding-top: 7rem;
    padding-bottom: 190px;
  }
}
.header-slider-block.contact .header-single .text .slider-title {
  margin-bottom: 16px;
}
.header-slider-block.contact .header-single .text .slider-subtitle {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .header-slider-block.contact + div {
    margin-top: -150px;
  }
}
.header-slider-block.pdf-gen .header-single {
  padding: 4rem 0;
}
.header-slider-block .header-single, .header-slider-block .header-slider {
  background-color: #efefef;
  padding: 2.4rem 2rem;
  border-radius: 0 0 0 70px;
}
@media (min-width: 768px) {
  .header-slider-block .header-single, .header-slider-block .header-slider {
    border-radius: 0 0 0 140px;
  }
}
.header-slider-block .header-single .text, .header-slider-block .header-slider .text {
  width: 80%;
  hyphens: auto;
  -webkit-hyphens: auto;
}
@media (min-width: 992px) {
  .header-slider-block .header-single .text, .header-slider-block .header-slider .text {
    width: 50%;
    padding-left: 110px;
  }
}
.header-slider-block .header-single .text .slider-title, .header-slider-block .header-slider .text .slider-title {
  display: block;
  color: #2D2E2F;
  font-size: 4.5rem;
  font-weight: 850;
  line-height: 1em;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.header-slider-block .header-single .text .slider-title.white, .header-slider-block .header-slider .text .slider-title.white {
  color: white;
}
.header-slider-block .header-single .text .slider-subtitle, .header-slider-block .header-slider .text .slider-subtitle {
  display: block;
  color: #2D2E2F;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: normal;
}
.header-slider-block .header-single .text .slider-subtitle.white, .header-slider-block .header-slider .text .slider-subtitle.white {
  color: white;
}
.header-slider-block .header-single .image, .header-slider-block .header-slider .image {
  width: 80%;
}
@media (min-width: 992px) {
  .header-slider-block .header-single .image, .header-slider-block .header-slider .image {
    width: 50%;
    padding-left: 10px;
  }
}
.header-slider-block .header-single .image img, .header-slider-block .header-slider .image img {
  width: 100%;
  height: auto;
}
.header-slider-block .header-single {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}
@media (min-width: 992px) {
  .header-slider-block .header-single {
    flex-direction: row;
  }
}
.header-slider-block .header-slider {
  position: relative;
  padding: 2.4rem 2rem 4rem 2.4rem;
}
@media (min-width: 992px) {
  .header-slider-block .header-slider {
    padding: 2.4rem 2rem;
  }
}
.header-slider-block .header-slider .slide-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 992px) {
  .header-slider-block .header-slider .slide-inner {
    flex-direction: row;
  }
}
.header-slider-block .header-slider .text {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .header-slider-block .header-slider .text {
    margin-bottom: 0;
  }
}
.header-slider-block .header-slider .carousel-indicators {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -5px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .header-slider-block .header-slider .carousel-indicators {
    right: calc(50% + 10px);
    left: auto;
    bottom: 10px;
    margin: 0;
  }
}
.header-slider-block .header-slider .carousel-indicators li {
  background-color: #535457;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin: 4px;
}
.header-slider-block .header-slider .carousel-indicators li.active {
  background-color: #008BD2;
}
.header-slider-block .header-slider .carousel-indicators li:hover {
  background-color: #008BD2;
}
.header-slider-block.blue-overlay .header-slider:after, .header-slider-block.blue-overlay .header-single:after, .header-slider-block.white-overlay .header-slider:after, .header-slider-block.white-overlay .header-single:after {
  content: none;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: bottom right;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media (min-width: 992px) {
  .header-slider-block.blue-overlay .header-slider:after, .header-slider-block.blue-overlay .header-single:after, .header-slider-block.white-overlay .header-slider:after, .header-slider-block.white-overlay .header-single:after {
    content: "";
  }
}
.header-slider-block.blue-overlay .header-slider:after, .header-slider-block.blue-overlay .header-single:after {
  background-image: url("../images/img/wave-blue.png");
}
.header-slider-block.white-overlay .header-slider:after, .header-slider-block.white-overlay .header-single:after {
  background-image: url("../images/img/wave-white.png");
}

.picture-nav-block {
  display: flex;
  flex-wrap: wrap;
  padding: 4rem 0;
  gap: 20px;
}
.picture-nav-block .picture-item {
  flex: 1 0 20%;
  min-width: 250px;
  min-height: 250px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.picture-nav-block .picture-item.first-item {
  background-color: #008bd2;
}
.picture-nav-block .picture-item.first-item .picture-container h2 {
  width: 250px;
  margin: 0 auto;
}
.picture-nav-block .picture-item .picture-container {
  display: block;
  height: 100%;
}
.picture-nav-block .picture-item .picture-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease-out;
}
.picture-nav-block .picture-item .picture-container .picture-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  hyphens: auto;
  padding: 0 1rem;
}
.picture-nav-block .picture-item .picture-container .picture-text h2 {
  color: white;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  text-transform: uppercase;
}
.picture-nav-block .picture-item .picture-container .picture-text h3 {
  color: white;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.667em;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
.picture-nav-block .picture-item .picture-container:hover .picture-text h2, .picture-nav-block .picture-item .picture-container:hover .picture-text h3 {
  color: white;
}
.picture-nav-block .picture-item .picture-container:hover img {
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.picture-link-row {
  margin: 0 -10px;
}
.picture-link-row .col-xs-12 {
  padding: 10px;
}
.picture-link-row .collumn-item {
  position: relative;
  overflow: hidden;
  min-height: 250px;
}
.picture-link-row .collumn-item .single-picture {
  transition: transform 800ms;
}
.picture-link-row .collumn-item .single-picture:hover {
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.picture-link-row .collumn-item a img, .picture-link-row .collumn-item .no-news-image-link img {
  width: 100%;
  height: auto;
  min-height: 250px;
  object-fit: cover;
}
.picture-link-row .collumn-item a .text-container, .picture-link-row .collumn-item .no-news-image-link .text-container {
  display: flex;
  align-items: flex-end;
  height: 72px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 1.6rem 1.3rem;
  background-color: rgba(0, 139, 210, 0.8);
}
.picture-link-row .collumn-item a .text-container div.title, .picture-link-row .collumn-item .no-news-image-link .text-container div.title {
  color: white;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  text-align: left;
  position: relative;
  width: 100%;
}
.picture-link-row .collumn-item a .text-container div.title:after, .picture-link-row .collumn-item .no-news-image-link .text-container div.title:after {
  content: "";
  display: inline-block;
  background-image: url("../images/img/pfeil_rechts_kacheln.svg");
  background-size: 8px;
  background-repeat: no-repeat;
  background-position: center right 5px;
  border: 2px solid #fff;
  border-radius: 50%;
  height: 24px;
  width: 24px;
  position: absolute;
  bottom: 2px;
  right: 0;
}
.picture-link-row .collumn-item .no-news-image-link .text-container div.title:after {
  content: none;
}

.news-block {
  padding: 6rem 0;
}
.news-block .news-content .news-item .news-image-link .text-container div.title, .news-block .news-content .news-item .no-news-image-link .text-container div.title {
  font-size: 1.4rem;
  padding-right: 30px;
}
@media (min-width: 1200px) {
  .news-block .news-content .news-item .news-image-link .text-container div.title, .news-block .news-content .news-item .no-news-image-link .text-container div.title {
    font-size: 1.6rem;
  }
}
@media (min-width: 1600px) {
  .news-block .news-content .news-item .news-image-link .text-container div.title, .news-block .news-content .news-item .no-news-image-link .text-container div.title {
    font-size: 1.8rem;
  }
}
.news-block .news-content .news-item.first-item {
  height: 100%;
  background-color: #008bd2;
}
.news-block .news-content .news-item.first-item .news-image-link, .news-block .news-content .news-item.first-item .no-news-image-link {
  height: 100%;
}
.news-block .news-content .news-item.first-item .text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.news-block .news-content .news-item.first-item .text-container .title {
  padding-right: 0 !important;
}
.news-block .news-content .news-item.first-item .text-container .title h2 {
  color: #FFF;
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.375em;
  letter-spacing: 0.6px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.news-block .news-content .reference-color-agruline .news-item .news-image-link .text-container, .news-block .news-content .reference-color-agruline .news-item .no-news-image-link .text-container {
  background-color: rgba(246, 201, 0, 0.8);
}
.news-block .news-content .reference-color-agruchem .news-item .news-image-link .text-container, .news-block .news-content .reference-color-agruchem .news-item .no-news-image-link .text-container {
  background-color: rgba(0, 80, 145, 0.8);
}
.news-block .news-content .reference-color-purad .news-item .news-image-link .text-container, .news-block .news-content .reference-color-purad .news-item .no-news-image-link .text-container {
  background-color: rgba(78, 54, 132, 0.8);
}
.news-block .news-content .reference-color-halbzeuge .news-item .news-image-link .text-container, .news-block .news-content .reference-color-semi-finished-products .news-item .news-image-link .text-container, .news-block .news-content .reference-color-halbzeuge .news-item .no-news-image-link .text-container, .news-block .news-content .reference-color-semi-finished-products .news-item .no-news-image-link .text-container {
  background-color: rgba(0, 146, 174, 0.8);
}
.news-block .news-content .reference-color-betonschutz .news-item .news-image-link .text-container, .news-block .news-content .reference-color-concrete-protection .news-item .news-image-link .text-container, .news-block .news-content .reference-color-betonschutz .news-item .no-news-image-link .text-container, .news-block .news-content .reference-color-concrete-protection .news-item .no-news-image-link .text-container {
  background-color: rgba(206, 16, 57, 0.8);
}
.news-block .news-content .reference-color-lining-systems .news-item .news-image-link .text-container, .news-block .news-content .reference-color-lining-systems .news-item .news-image-link .text-container, .news-block .news-content .reference-color-lining-systems .news-item .no-news-image-link .text-container, .news-block .news-content .reference-color-lining-systems .news-item .no-news-image-link .text-container {
  background-color: rgba(0, 132, 88, 0.8);
}
.news-block .news-content .reference-color-schweisstechnik .news-item .news-image-link .text-container, .news-block .news-content .reference-color-welding-technology .news-item .news-image-link .text-container, .news-block .news-content .reference-color-schweisstechnik .news-item .no-news-image-link .text-container, .news-block .news-content .reference-color-welding-technology .news-item .no-news-image-link .text-container {
  background-color: rgba(128, 128, 133, 0.8);
}
.news-block .news-content .reference-color-solutions .news-item .news-image-link .text-container, .news-block .news-content .reference-color-solutions .news-item .news-image-link .text-container, .news-block .news-content .reference-color-solutions .news-item .no-news-image-link .text-container, .news-block .news-content .reference-color-solutions .news-item .no-news-image-link .text-container {
  background-color: rgba(137, 207, 188, 0.8);
}
.news-block .news-content .reference-color-customized-parts .news-item .news-image-link .text-container, .news-block .news-content .reference-color-customized-parts .news-item .news-image-link .text-container, .news-block .news-content .reference-color-customized-parts .news-item .no-news-image-link .text-container, .news-block .news-content .reference-color-customized-parts .news-item .no-news-image-link .text-container {
  background-color: rgba(137, 207, 188, 0.8);
}

.einsatzgebiete-block {
  padding: 6rem 0 4rem;
}

.subpage {
  min-height: calc(100vh - 513px);
}
.subpage h2.subnav-title {
  color: #008bd2;
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  margin-bottom: 5rem;
  text-align: center;
  text-transform: uppercase;
}
.subpage h2.subpage-title {
  letter-spacing: 0.06em;
  margin-bottom: 4rem;
  text-align: center;
  text-transform: uppercase;
}

.half-block {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 4rem;
  padding-top: 4rem;
}
.half-block figure {
  margin-bottom: 0;
}
.half-block .video iframe {
  max-width: 100%;
}
.half-block.small-spacing > .textC .text {
  padding: 0 0.5rem 0 0;
  height: 100%;
}
.half-block.small-spacing .no-spacing-left {
  padding: 0 0 0 0.5rem;
  height: 100%;
}
@media (min-width: 1200px) {
  .half-block.small-spacing .no-spacing-left {
    height: auto;
  }
}
.half-block.small-spacing .no-spacing-left .text {
  height: 100%;
}
.half-block.small-spacing .no-spacing-left .text .job-description-block {
  margin: 6rem 0.5rem 0 -0.5rem;
}
@media (min-width: 1200px) {
  .half-block.small-spacing .no-spacing-left .text .job-description-block {
    margin: 0;
  }
}
.half-block.small-spacing .iframeC {
  position: relative;
  padding-top: 56.25%;
  margin-bottom: 2rem;
}
.half-block.small-spacing .iframeC iframe {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}
.half-block.gray .textC {
  background-color: #efefef;
}
.half-block.gray .textC .text {
  padding: 2.4rem;
}
.half-block.gray .textC .text p {
  font-weight: 300;
  font-size: 1.6rem;
}
@media (min-width: 992px) {
  .half-block.gray .textC .text p {
    font-size: 1.4rem;
  }
}
@media (min-width: 1600px) {
  .half-block.gray .textC .text p {
    font-size: 1.8rem;
  }
}
.half-block.gray .textC .text h2 {
  font-size: 2.4rem;
}
@media (min-width: 1600px) {
  .half-block.gray .textC .text h2 {
    font-size: 2.6rem;
  }
}
.half-block .no-spacing-left {
  flex: 0 0 100%;
  position: relative;
  padding: 0 0 6rem 0;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .half-block .no-spacing-left {
    flex: 0 0 50%;
    padding: 0 8rem 6rem 0;
  }
}
.half-block .no-spacing-left img {
  margin-bottom: 3rem;
  width: 100%;
  height: auto;
}
@media (min-width: 1200px) {
  .half-block .no-spacing-left .text > div.frame {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
.half-block .no-spacing-left .ce-gallery .ce-row .image {
  margin-bottom: 0;
}
.half-block .no-spacing-left .ce-gallery .ce-row .image figcaption {
  color: #666;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.06em;
}
.half-block .no-spacing-left .ce-gallery .ce-row .image img {
  margin-top: 5rem;
}
.half-block .no-spacing-left .ce-gallery .ce-row:first-child .image img {
  margin-top: 0;
}
.half-block .no-spacing-left .frame-type-text {
  margin-top: 3rem;
}
.half-block .no-spacing-left .frame-type-text img {
  width: auto;
}
.half-block .no-spacing-left .frame-type-text p {
  font-weight: 300;
}
@media (min-width: 1200px) {
  .half-block.vertical-center .textC .text {
    position: absolute;
    top: 50%;
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    height: auto;
    padding: 6rem 8rem;
  }
}
.half-block.vertical-center .image:empty {
  width: 100%;
}
@media (min-width: 1200px) {
  .half-block.vertical-center .image:empty {
    height: 50vw;
  }
}
.half-block .image {
  flex: 0 0 100%;
  position: relative;
}
@media (min-width: 1200px) {
  .half-block .image {
    flex: 0 0 50%;
  }
}
.half-block .image > div {
  padding: 0;
}
.half-block .image img {
  width: 100%;
  height: auto;
}
.half-block .image .frame-type-text {
  margin-top: 3rem;
}
.half-block .image .frame-type-text img {
  width: auto;
}
.half-block .image p {
  font-weight: 300;
}
.half-block .image .image-desc {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 3rem 2rem;
  background-color: rgba(0, 139, 210, 0.8);
  width: 100%;
}
.half-block .image .image-desc p {
  color: white;
  text-transform: uppercase;
}
.half-block .inset-text-row .inset-textC .textC {
  max-width: 100%;
}
.half-block .textC {
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 1200px) {
  .half-block .textC {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.half-block .textC .text {
  padding: 4rem 0rem 6rem;
  height: 100%;
}
@media (min-width: 1200px) {
  .half-block .textC .text {
    padding: 0 6rem 6rem;
  }
}
@media (min-width: 1200px) {
  .half-block .textC .text > div.frame {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
.half-block .textC .text p {
  font-weight: 300;
}
@media (min-width: 992px) {
  .half-block .textC .text p {
    font-size: 1.5rem;
  }
}
@media (min-width: 1400px) {
  .half-block .textC .text p {
    font-size: 1.6rem;
  }
}
@media (min-width: 1600px) {
  .half-block .textC .text p {
    font-size: 1.8rem;
  }
}
.half-block .textC .text p.image-description {
  color: #666;
  font-size: 1.4rem;
  line-height: 1.57em;
  letter-spacing: 0.04em;
}
.half-block .textC .text p.colored-subline {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  margin-top: -1rem;
  padding-top: 4px;
  text-transform: uppercase;
}
.half-block .textC .text p.colored-subline span {
  background-color: white;
  padding-right: 10px;
}
.half-block .textC .text p.colored-subline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.9em;
  border-top: 3px solid;
  z-index: -1;
}
.half-block .textC .text p.colored-subline.yellow {
  color: #f6c900;
}
.half-block .textC .text p.colored-subline.yellow:after {
  border-color: #f6c900;
}
.half-block .textC .text p.colored-subline.blue {
  color: rgb(0, 80, 145);
}
.half-block .textC .text p.colored-subline.blue:after {
  border-color: rgb(0, 80, 145);
}
.half-block .textC .text p.colored-subline.purple {
  color: rgb(78, 54, 132);
}
.half-block .textC .text p.colored-subline.purple:after {
  border-color: rgb(78, 54, 132);
}
.half-block .textC .text p.colored-subline.cyan {
  color: rgb(0, 146, 174);
}
.half-block .textC .text p.colored-subline.cyan:after {
  border-color: rgb(0, 146, 174);
}
.half-block .textC .text p.colored-subline.green {
  color: rgb(0, 132, 88);
}
.half-block .textC .text p.colored-subline.green:after {
  border-color: rgb(0, 132, 88);
}
.half-block .textC .text p.colored-subline.red {
  color: rgb(206, 16, 57);
}
.half-block .textC .text p.colored-subline.red:after {
  border-color: rgb(206, 16, 57);
}
.half-block .textC .text p.colored-subline.gray {
  color: rgb(128, 128, 133);
}
.half-block .textC .text p.colored-subline.gray:after {
  border-color: rgb(128, 128, 133);
}
.half-block .textC .text p.colored-subline.aqua {
  color: rgb(137, 207, 188);
}
.half-block .textC .text p.colored-subline.aqua:after {
  border-color: rgb(137, 207, 188);
}
.half-block .textC .bottom-button {
  display: flex;
  width: 100%;
  padding: 0 15px 2rem;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .half-block .textC .bottom-button {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .half-block .textC .bottom-button {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .half-block .textC .bottom-button {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .half-block .textC .bottom-button {
    position: absolute;
    bottom: 0;
    max-width: 100%;
    padding: 2rem 6rem;
  }
}
@media (min-width: 1600px) {
  .half-block .textC .bottom-button {
    padding: 4rem 8rem;
  }
}
@media (min-width: 1920px) {
  .half-block .textC .bottom-button {
    padding: 5rem 8rem;
  }
}
.half-block .textC .bottom-button.button-right {
  justify-content: flex-end;
}
.half-block .news-block {
  max-width: 80%;
  margin: 0 auto;
  padding: 5rem 0;
}
.half-block .news-block h2.block-heading-h2 {
  color: #2D2E2F;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.375em;
  letter-spacing: 0.6px;
  margin-bottom: 3.2rem;
  text-transform: uppercase;
  text-align: left;
}

/* Kachelblock richtige Reihenfolge */
.frame-type-gridelements_pi1 .full-width-container .half-block .image {
  order: 1;
}
@media (min-width: 1200px) {
  .frame-type-gridelements_pi1 .full-width-container .half-block .image {
    order: 0;
  }
}
.frame-type-gridelements_pi1 .full-width-container .half-block .textC {
  order: 2;
}
@media (min-width: 1200px) {
  .frame-type-gridelements_pi1 .full-width-container .half-block .textC {
    order: 0;
  }
}

.history-block {
  padding: 4rem 0;
}
.history-block .row {
  margin-left: -5px;
  margin-right: -5px;
}
.history-block .row .col-12 {
  padding-left: 5px;
  padding-right: 5px;
}
@media (max-width: 991.98px) {
  .history-block .row > div:first-child .image {
    order: 1;
  }
  .history-block .row > div:first-child .text {
    order: 2;
  }
  .history-block .row > div:last-child .image {
    order: 2;
  }
  .history-block .row > div:last-child .text {
    order: 1;
  }
}
@media (max-width: 575.98px) {
  .history-block .row > div:last-child .image {
    order: 1;
  }
  .history-block .row > div:last-child .text {
    order: 2;
  }
}
.history-block .history-itemC {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.history-block .history-itemC .history-item {
  flex: 0 0 100%;
  margin-bottom: 1rem;
}
.history-block .history-itemC .history-item.image {
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .history-block .history-itemC .history-item {
    flex: 0 0 50%;
  }
  .history-block .history-itemC .history-item.image {
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .history-block .history-itemC .history-item:first-child:not(.image) .inner {
    text-align: right;
  }
}
.history-block .history-itemC .image {
  background-size: cover;
  background-position: center;
}
.history-block .history-itemC .image img {
  width: 100%;
  height: auto;
}
.history-block .history-itemC .text {
  background-color: #efefef;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.history-block .history-itemC .text .inner {
  padding: 3.5rem 3rem;
}
@media (min-width: 992px) {
  .history-block .history-itemC .text .inner {
    padding: 1rem;
  }
}
@media (min-width: 1400px) {
  .history-block .history-itemC .text .inner {
    padding: 3.5rem 3rem;
  }
}
@media (min-width: 1920px) {
  .history-block .history-itemC .text .inner {
    padding: 4.5rem 4rem 3.5rem;
  }
}
.history-block .history-itemC .text h2, .history-block .history-itemC .text h3 {
  color: #2d2e2f;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.history-block .history-itemC .text p {
  color: #2d2e2f;
  font-size: 1.4rem;
  font-weight: 300;
}
@media (min-width: 992px) {
  .history-block .history-itemC .text h2, .history-block .history-itemC .text h3 {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
  .history-block .history-itemC .text p {
    font-size: 1.2rem;
  }
}
@media (min-width: 1200px) {
  .history-block .history-itemC .text h2, .history-block .history-itemC .text h3 {
    font-size: 2rem;
  }
  .history-block .history-itemC .text p {
    font-size: 1.4rem;
  }
}
@media (min-width: 1400px) {
  .history-block .history-itemC .text h2, .history-block .history-itemC .text h3 {
    margin-bottom: 0.5rem;
  }
  .history-block .history-itemC .text p {
    font-size: 1.4rem;
  }
}
@media (min-width: 1600px) {
  .history-block .history-itemC .text h2, .history-block .history-itemC .text h3 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    line-height: 1.3em;
  }
  .history-block .history-itemC .text p {
    font-size: 1.5rem;
  }
}
@media (min-width: 1920px) {
  .history-block .history-itemC .text h2, .history-block .history-itemC .text h3 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    line-height: 1.538em;
  }
  .history-block .history-itemC .text p {
    font-size: 1.6rem;
  }
}
.history-block .history-itemC .text p.button-bottom {
  margin-top: auto;
  display: inline-block;
}
.history-block .history-itemC .text p.button-bottom a {
  margin-right: 10px;
}
.history-block .history-itemC .text p.button-bottom a:last-child, .history-block .history-itemC .text p.button-bottom a:only-child {
  margin-right: 0;
}
.history-block .history-itemC.image-right .text {
  text-align: right;
}
.history-block .history-itemC.messen .history-item {
  margin-bottom: 0 !important;
}
.history-block .history-itemC.messen .history-item.text {
  text-align: center;
}
.history-block .history-itemC.messen .history-item.text .inner {
  text-align: center;
}
.history-block .history-itemC.messen .history-item.image {
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 300px;
  order: -1 !important;
}
@media (min-width: 576px) {
  .history-block .history-itemC.messen .history-item.image {
    order: 0 !important;
  }
}

.produkt-block .produkt-row {
  padding-bottom: 4rem;
}
.produkt-block .produkt-row.agruline h2 {
  color: #f6c900;
}
.produkt-block .produkt-row.agruline h2:after {
  border-color: #f6c900;
}
.produkt-block .produkt-row.agruline .produkt-itemC .produkt-item .image-overlay, .produkt-block .produkt-row.agruline produkt-itemC .produkt-item .image-teaser {
  background-color: rgba(246, 201, 0, 0.8);
}
.produkt-block .produkt-row.agruchem h2 {
  color: rgb(0, 80, 145);
}
.produkt-block .produkt-row.agruchem h2:after {
  border-color: rgb(0, 80, 145);
}
.produkt-block .produkt-row.agruchem .produkt-itemC .produkt-item .image-overlay, .produkt-block .produkt-row.agruchem produkt-itemC .produkt-item .image-teaser {
  background-color: rgba(0, 80, 145, 0.8);
}
.produkt-block .produkt-row.purad h2 {
  color: rgb(78, 54, 132);
}
.produkt-block .produkt-row.purad h2:after {
  border-color: rgb(78, 54, 132);
}
.produkt-block .produkt-row.purad .produkt-itemC .produkt-item .image-overlay, .produkt-block .produkt-row.purad produkt-itemC .produkt-item .image-teaser {
  background-color: rgba(78, 54, 132, 0.8);
}
.produkt-block .produkt-row.halbzeuge h2 {
  color: rgb(0, 146, 174);
}
.produkt-block .produkt-row.halbzeuge h2:after {
  border-color: rgb(0, 146, 174);
}
.produkt-block .produkt-row.halbzeuge .produkt-itemC .produkt-item .image-overlay, .produkt-block .produkt-row.halbzeuge produkt-itemC .produkt-item .image-teaser {
  background-color: rgba(0, 146, 174, 0.8);
}
.produkt-block .produkt-row.lining-systems h2 {
  color: rgb(0, 132, 88);
}
.produkt-block .produkt-row.lining-systems h2:after {
  border-color: rgb(0, 132, 88);
}
.produkt-block .produkt-row.lining-systems .produkt-itemC .produkt-item .image-overlay, .produkt-block .produkt-row.lining-systems produkt-itemC .produkt-item .image-teaser {
  background-color: rgba(0, 132, 88, 0.8);
}
.produkt-block .produkt-row.betonschutz h2 {
  color: rgb(206, 16, 57);
}
.produkt-block .produkt-row.betonschutz h2:after {
  border-color: rgb(206, 16, 57);
}
.produkt-block .produkt-row.betonschutz .produkt-itemC .produkt-item .image-overlay, .produkt-block .produkt-row.betonschutz produkt-itemC .produkt-item .image-teaser {
  background-color: rgba(206, 16, 57, 0.8);
}
.produkt-block .produkt-row.schweisstechnik h2 {
  color: rgb(128, 128, 133);
}
.produkt-block .produkt-row.schweisstechnik h2:after {
  border-color: rgb(128, 128, 133);
}
.produkt-block .produkt-row.schweisstechnik .produkt-itemC .produkt-item .image-overlay, .produkt-block .produkt-row.schweisstechnik produkt-itemC .produkt-item .image-teaser {
  background-color: rgba(128, 128, 133, 0.8);
}
.produkt-block .produkt-row.solutions h2 {
  color: rgb(137, 207, 188);
}
.produkt-block .produkt-row.solutions h2:after {
  border-color: rgb(137, 207, 188);
}
.produkt-block .produkt-row.solutions .produkt-itemC .produkt-item .image-overlay, .produkt-block .produkt-row.solutions produkt-itemC .produkt-item .image-teaser {
  background-color: rgba(137, 207, 188, 0.8);
}
.produkt-block .produkt-row h2 {
  position: relative;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.produkt-block .produkt-row h2 span {
  background-color: white;
  padding-right: 10px;
}
.produkt-block .produkt-row h2:after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 0.65em;
  border-top: 5px solid;
  z-index: -1;
}
.produkt-block .produkt-row .produkt-itemC {
  display: flex;
  flex-wrap: wrap;
}
.produkt-block .produkt-row .produkt-itemC .produkt-item {
  flex: 0 0 100%;
  margin-right: 0;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}
.produkt-block .produkt-row .produkt-itemC .produkt-item:nth-child(2) {
  margin-right: 0;
}
@media (min-width: 576px) {
  .produkt-block .produkt-row .produkt-itemC .produkt-item {
    flex: 1 1 45%;
    margin-right: 20px;
  }
}
@media (min-width: 992px) {
  .produkt-block .produkt-row .produkt-itemC .produkt-item {
    flex: 1 1 20%;
    margin-bottom: 0;
  }
  .produkt-block .produkt-row .produkt-itemC .produkt-item:nth-child(2) {
    margin-right: 20px;
  }
}
.produkt-block .produkt-row .produkt-itemC .produkt-item:last-child {
  margin-right: 0;
}
.produkt-block .produkt-row .produkt-itemC .produkt-item:hover img {
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.produkt-block .produkt-row .produkt-itemC .produkt-item img {
  width: 100%;
  height: auto;
  transition: transform 800ms;
}
.produkt-block .produkt-row .produkt-itemC .produkt-item .image-teaser {
  position: absolute;
  top: 0;
  left: 20px;
  width: 40%;
  padding: 40px 10px 10px;
}
.produkt-block .produkt-row .produkt-itemC .produkt-item .image-teaser h2 {
  color: white;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.07em;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.produkt-block .produkt-row .produkt-itemC .produkt-item .image-teaser p {
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 15px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.produkt-block .produkt-row .produkt-itemC .produkt-item .image-overlay {
  display: flex;
  align-items: flex-end;
  height: 72px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 1.6rem 1.3rem;
}
.produkt-block .produkt-row .produkt-itemC .produkt-item .image-overlay p {
  color: white;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  margin-bottom: 0;
  padding-right: 30px;
  text-align: left;
  text-transform: uppercase;
  position: relative;
  width: 100%;
}
@media (min-width: 1200px) {
  .produkt-block .produkt-row .produkt-itemC .produkt-item .image-overlay p {
    font-size: 1.6rem;
  }
}
@media (min-width: 1400px) {
  .produkt-block .produkt-row .produkt-itemC .produkt-item .image-overlay p {
    font-size: 1.8rem;
  }
}
.produkt-block .produkt-row .produkt-itemC .produkt-item .image-overlay p:after {
  content: "";
  display: inline-block;
  background-image: url("../images/img/pfeil_rechts_kacheln.svg");
  background-size: 8px;
  background-repeat: no-repeat;
  background-position: center right 5px;
  border: 2px solid #fff;
  border-radius: 50%;
  height: 24px;
  width: 24px;
  position: absolute;
  bottom: 2px;
  right: 0;
}

.reference-block {
  padding-bottom: 4rem;
}
.reference-block .container h2 {
  color: #008bd2;
  font-size: 4.6rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
  margin-top: 6rem;
}
@media (min-width: 1600px) {
  .reference-block .container h2 {
    font-size: 5rem;
  }
}
@media (min-width: 1900px) {
  .reference-block .container h2 {
    font-size: 6rem;
  }
}
.reference-block a.reference-itemC {
  transition: box-shadow 300ms;
}
.reference-block a.reference-itemC:hover {
  text-decoration: none;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
}
.reference-block .reference-itemC {
  display: block;
  border: 1px solid #efefef;
  margin-bottom: 7px;
  padding: 0;
  text-align: center;
  min-height: 186px;
}
@media (min-width: 576px) {
  .reference-block .reference-itemC {
    min-height: 205px;
  }
}
@media (min-width: 768px) {
  .reference-block .reference-itemC {
    min-height: 275px;
  }
}
@media (min-width: 992px) {
  .reference-block .reference-itemC {
    min-height: 220px;
  }
}
@media (min-width: 1200px) {
  .reference-block .reference-itemC {
    min-height: 230px;
  }
}
@media (min-width: 1400px) {
  .reference-block .reference-itemC {
    min-height: 290px;
  }
}
@media (min-width: 1800px) {
  .reference-block .reference-itemC {
    min-height: 330px;
  }
}
.reference-block .reference-itemC p {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.22em;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .reference-block .reference-itemC p {
    font-size: 1.6rem;
  }
}
@media (min-width: 1600px) {
  .reference-block .reference-itemC p {
    font-size: 1.8rem;
  }
}
.reference-block .reference-itemC .description {
  margin-top: 0.3rem;
}
.reference-block .reference-itemC .description p {
  font-size: 1.2rem;
}
.reference-block .reference-itemC .description p a {
  color: #008bd2;
}
.reference-block .row {
  margin-left: -3.5px;
  margin-right: -3.5px;
}
.reference-block .row .col-6 {
  padding-left: 3.5px;
  padding-right: 3.5px;
}

.form-container {
  background-color: #efefef;
  margin-bottom: 6rem;
}
.form-container .form-inner {
  padding: 4rem;
}
.form-container .form-inner form .form-title {
  margin-bottom: 3rem;
}
.form-container .form-inner form .form-title h2 {
  color: white;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.333em;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
.form-container .form-inner form .form-title span {
  color: #868686;
  font-size: 1.4rem;
}
.form-container .form-inner form .form-title p {
  color: white;
}
.form-container .form-inner form .form-content .form-group {
  margin-bottom: 2rem;
}
.form-container .form-inner form .form-content .form-group:last-child {
  margin-bottom: 0;
}
.form-container .form-inner form .form-content .form-group label {
  color: #2d2e2f;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.form-container .form-inner form .form-content .form-group input[type=text], .form-container .form-inner form .form-content .form-group select {
  border: 2px solid #d6d6d6;
  font-size: 1.4rem;
  font-weight: 300;
  height: 32px;
}
.form-container .form-inner form .form-content .form-group input[type=text]:focus, .form-container .form-inner form .form-content .form-group select:focus {
  outline: 0;
  box-shadow: none;
}
.form-container .form-inner form .form-content .form-group select {
  padding-left: 4px;
}
.form-container .form-inner form .form-content .form-group .has-error span.help-block.form-error {
  display: block;
  margin-top: 5px;
  color: #b94a48;
  font-size: 1.2rem;
}
.form-container .form-inner form .form-content .form-group .custom-file-top-label {
  display: block;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  padding-top: calc(0.375rem + 1px);
}
.form-container .form-inner form .form-content .form-group .custom-file {
  height: 32px;
}
.form-container .form-inner form .form-content .form-group .custom-file.has-error label {
  border-color: rgb(185, 74, 72);
}
.form-container .form-inner form .form-content .form-group .custom-file input {
  cursor: pointer;
  height: 32px;
}
.form-container .form-inner form .form-content .form-group .custom-file input:focus {
  outline: 0;
  box-shadow: none;
}
.form-container .form-inner form .form-content .form-group .custom-file input:focus ~ .custom-file-label {
  box-shadow: none;
}
.form-container .form-inner form .form-content .form-group .custom-file label {
  color: #008bd2;
  padding-left: 40px;
  border: 2px solid #008bd2;
  border-radius: 0;
  height: 32px;
  font-weight: 300;
}
.form-container .form-inner form .form-content .form-group .custom-file label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: 28px;
  width: 40px;
  padding: 0;
  line-height: normal;
  background-image: url("../images/karriere/lehre bei agru/bewerben/online bewerben/icon-datei.svg");
  background-size: 18px 18px;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
}
.form-container .form-inner form .form-content .form-group .custom-file label:after {
  content: none;
}
.form-container .form-inner form .form-content .form-group.checkbox-entry-row {
  margin-top: -1rem;
}
.form-container .form-inner form .form-content .form-group .checkboxList {
  padding-top: calc(0.375rem + 1px);
}
.form-container .form-inner form .form-content .form-group .checkboxList .checkbox-list-title {
  display: block;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  padding-top: calc(0.375rem + 1px);
}
.form-container .form-inner form .form-content .form-group .checkboxList label {
  margin-left: 5px;
  margin-bottom: 5px;
}
.form-container .form-inner form .form-content .form-group.extra-form-margin-top {
  margin-top: 20px;
}
.form-container .form-inner form .form-content .form-group .col-sm-8 button[type=submit] {
  margin-top: 2rem;
}
.form-container .form-inner form .form-content .form-group .file-wrapper {
  margin-top: 0.5rem;
  font-size: 1.4rem;
}
.form-container .form-inner form .form-content .form-group .file-wrapper .file-name {
  margin-right: 1rem;
}
.form-container .form-inner form .form-content .form-check {
  padding-left: 2.25rem;
}
.form-container .form-inner form .form-content .form-check .form-check-label {
  padding-left: 10px;
}
@media (min-width: 992px) {
  .form-container .form-inner form .form-content .form-check .form-check-label {
    padding-left: 5px;
  }
}

.cite-container .cite p.cite-line {
  position: relative;
  font-size: 5rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #008bd2;
}
.cite-container .cite p.cite-line span {
  background-image: url("../images/img/quote_background.svg");
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-position: left center;
  padding-right: 45px;
}
.cite-container .cite p.cite-line:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.9em;
  border-top: 6px solid #008bd2;
  z-index: -1;
}
.cite-container .cite .cite-inner {
  display: flex;
  flex-wrap: wrap;
}
.cite-container .cite .cite-inner .image {
  flex: 0 0 30%;
}
.cite-container .cite .cite-inner .image img {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}
.cite-container .cite .cite-inner .image p {
  font-weight: bold;
}
.cite-container .cite .cite-inner .text {
  flex: 0 0 70%;
  padding: 0 0 0 3rem;
}
.cite-container .cite .cite-inner p {
  font-weight: 400;
}
.cite-container.new-design {
  background-color: #efefef;
  border-radius: 0 0 0 70px;
  padding: 2rem 2rem 5rem;
}
@media (min-width: 768px) {
  .cite-container.new-design {
    border-radius: 0 0 0 140px;
  }
}
.cite-container.new-design .cite {
  padding: 0 15px !important;
}
.cite-container.new-design .cite-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}
.cite-container.new-design .cite-inner .text {
  flex: 1 0 70%;
  padding: 0;
}
.cite-container.new-design .cite-inner .text .cite-line:after {
  content: none;
}
.cite-container.new-design .cite-inner .image {
  flex: 1 0 20%;
}

.karriere-aufklapper {
  margin: 3rem 0;
}
.karriere-aufklapper ~ a {
  margin-right: 15px;
}
.karriere-aufklapper hr {
  height: 3px;
}
.karriere-aufklapper .aufklapperC {
  border-top: 3px solid #008bd2;
  padding: 3rem 0;
}
.karriere-aufklapper .aufklapperC:last-child {
  border-bottom: 3px solid #008bd2;
}
.karriere-aufklapper .aufklapperC .title a {
  display: inline-block;
  position: relative;
  color: #008bd2;
  font-size: 1.8rem;
  font-weight: bold;
  padding-left: 30px;
}
.karriere-aufklapper .aufklapperC .title a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 10px;
  background-image: url("../images/img/icon_plus.svg");
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
}
.karriere-aufklapper .aufklapperC .title a.toggled:before {
  background-image: url("../images/img/icon_minus.svg");
}
.karriere-aufklapper .aufklapperC .title a:hover {
  text-decoration: none;
}
.karriere-aufklapper .aufklapperC .collapse-inner {
  margin-left: 4.7rem;
  padding-top: 0.5rem;
}
.karriere-aufklapper .aufklapperC .collapse-inner ul {
  margin: 0;
  padding: 0;
}
.karriere-aufklapper .aufklapperC .collapse-inner ul li {
  font-size: 1.6rem;
  font-weight: 300;
}

.job-description-block {
  border: 2px solid #efefef;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.job-description-block .job-description-text {
  padding: 5rem;
}
.job-description-block .job-description-text h3 {
  hyphens: auto;
  -webkit-hyphens: auto;
}
.job-description-block .job-description-text p {
  font-weight: 300;
  font-size: 1.6rem;
}
@media (min-width: 1600px) {
  .job-description-block .job-description-text p {
    font-size: 1.8rem;
  }
}
.job-description-block .job-description-detail {
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
}
.job-description-block .job-description-detail .job-image {
  flex: 0 0 100%;
}
@media (min-width: 576px) {
  .job-description-block .job-description-detail .job-image {
    flex: 0 0 50%;
  }
}
.job-description-block .job-description-detail .job-image img {
  width: 100%;
  height: auto;
  margin-bottom: 0;
}
.job-description-block .job-description-detail .job-text {
  flex: 0 0 100%;
  background-color: #efefef;
  padding: 2rem 4rem;
}
@media (min-width: 576px) {
  .job-description-block .job-description-detail .job-text {
    flex: 0 0 50%;
  }
}
.job-description-block .job-description-detail .job-text .icon {
  display: none;
  width: 40px;
  height: 35px;
  margin-bottom: 1rem;
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
  background-image: url("../images/img/icon-geldscheine.svg");
}
.job-description-block .job-description-detail .job-text table {
  padding: 2rem 0;
  margin-bottom: 2.5rem;
}
.job-description-block .job-description-detail .job-text table tr td {
  font-size: 1.6rem;
  font-weight: 300;
  width: 30%;
}
.job-description-block .job-description-detail .job-text table tr td:first-child {
  font-weight: bold;
}
.job-description-block .job-description-detail .small-button {
  padding: 0.6rem 3rem;
}

.icon-list-block .icon-list-item {
  display: inline-block;
  margin-bottom: 4.5rem;
  width: 100%;
}
.icon-list-block .icon-list-item:last-child {
  margin-bottom: 0;
}
.icon-list-block .icon-list-item .icon {
  display: inline-block;
  vertical-align: top;
  margin: 1px 20px 0 0;
  width: 40px;
  max-height: 45px;
}
.icon-list-block .icon-list-item .icon img {
  height: 100%;
  margin: 0 auto;
  display: block;
}
.icon-list-block .icon-list-item .icon-text {
  display: inline-block;
  vertical-align: top;
  width: 85%;
}
.icon-list-block .icon-list-item .icon-text p {
  font-size: 1.4rem;
  margin-bottom: 0;
  line-height: 1.4em;
}
.icon-list-block .icon-list-item .icon-text p.title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.contact-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.contact-filters .contact-filter-item {
  flex: 0 0 100%;
  margin: 0 5px;
}
@media (min-width: 768px) {
  .contact-filters .contact-filter-item {
    flex: 0 0 50%;
  }
}
@media (min-width: 992px) {
  .contact-filters .contact-filter-item {
    flex: 0 0 22%;
  }
}
.contact-filters .contact-filter-item .form-group select {
  border-color: #008bd2;
  border-radius: 25px;
  border-width: 2px;
  font-size: 1.4rem;
}

.tx-indexedsearch-searchbox {
  padding-bottom: 4rem;
  margin-bottom: 3rem;
}
.tx-indexedsearch-searchbox .tx-indexedsearch-form {
  display: inline-block;
}
.tx-indexedsearch-searchbox .tx-indexedsearch-form label {
  display: block;
  color: #008bd2;
  font-size: 24px;
  margin-bottom: 0;
}
.tx-indexedsearch-searchbox .tx-indexedsearch-form input {
  border: 2px solid #d6d6d6;
  font-size: 1.4rem;
  font-weight: 300;
  height: 32px;
  line-height: 2em;
  padding: 0 1rem;
  width: 200px;
}
.tx-indexedsearch-searchbox .tx-indexedsearch-form input:focus {
  outline: 0;
  box-shadow: none;
}
.tx-indexedsearch-searchbox .tx-indexedsearch-search-submit {
  display: inline-block;
}
.tx-indexedsearch-searchbox .tx-indexedsearch-search-submit input {
  position: relative;
  height: 32px;
  background-color: #008bd2;
  border: 1px solid #008bd2;
  border-radius: 30px;
  color: white;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-left: 5px;
  padding: 0.6rem 2rem;
  text-transform: uppercase;
  transition: background-color 300ms, border-color 300ms;
}
.tx-indexedsearch-searchbox .tx-indexedsearch-search-submit input:hover {
  background-color: white;
  color: #008bd2;
}
.tx-indexedsearch-searchbox .tx-indexedsearch-search-submit input:focus {
  outline: none;
}

.agru-product-search h2 {
  border-bottom: 2px solid;
}

.tx-indexedsearch-res {
  margin-bottom: 4rem;
}
.tx-indexedsearch-res h3 {
  font-size: 1.8rem !important;
  margin-bottom: 0.5rem !important;
}

.tx-indexedsearch-info-noresult {
  font-size: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 1200px) {
  .tx-agru-contact .history-block {
    padding: 4rem 6rem;
  }
}
@media (min-width: 1400px) {
  .tx-agru-contact .history-block {
    padding: 4rem 16rem;
  }
}
.tx-agru-contact .history-block #country-result .history-itemC .history-item.text {
  background-color: #3CA0D9;
}
.tx-agru-contact .history-block #country-result .history-itemC .history-item.text .inner h2, .tx-agru-contact .history-block #country-result .history-itemC .history-item.text .inner h3, .tx-agru-contact .history-block #country-result .history-itemC .history-item.text .inner p, .tx-agru-contact .history-block #country-result .history-itemC .history-item.text .inner a {
  color: white;
}
.tx-agru-contact .history-block #group-result .history-itemC .history-item.text {
  background-color: #eaedf0;
}
.tx-agru-contact .history-block .history-itemC {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
@media (min-width: 576px) {
  .tx-agru-contact .history-block .history-itemC .history-item {
    flex: 0 0 58%;
  }
  .tx-agru-contact .history-block .history-itemC .history-item.image {
    flex: 0 0 42%;
  }
}
.tx-agru-contact .history-block .history-itemC .history-item.text .inner {
  padding-left: 5rem;
  padding-right: 5rem;
}
.tx-agru-contact .history-block .history-itemC .history-item.text .inner h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 2px;
}
.tx-agru-contact .history-block .history-itemC .history-item.text .inner h2 {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .tx-agru-contact .history-block .history-itemC .history-item:first-child:not(.image) .inner {
    text-align: left;
  }
}
.tx-agru-contact .anfrage-form {
  margin-top: 4rem;
}
.tx-agru-contact .anfrage-form textarea {
  border: 2px solid #d6d6d6;
  font-size: 1.4rem;
  font-weight: 300;
  height: 128px;
}
.tx-agru-contact .anfrage-form textarea:focus {
  outline: 0;
  box-shadow: none;
}
.tx-agru-contact .home .form-container {
  background-color: #2d2e2f;
  border-top: 5px solid #008bd2;
  border-radius: 0 0 0 70px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .tx-agru-contact .home .form-container {
    border-radius: 0 0 0 140px;
  }
}
.tx-agru-contact .home .form-container .form-inner form .form-title {
  margin-bottom: 2.5rem;
  width: 100%;
  text-align: center;
}
.tx-agru-contact .home .form-container .form-inner form .form-title h2 {
  color: white;
  text-transform: uppercase;
}
.tx-agru-contact .home .form-container .form-inner form .form-content .form-group {
  margin-bottom: 2.4rem;
}
.tx-agru-contact .home .form-container .form-inner form .form-content select, .tx-agru-contact .home .form-container .form-inner form .form-content input {
  border: 0;
  border-radius: 0;
  height: 40px;
  line-height: 40px;
  padding: 0 25px 0 16px;
}
.tx-agru-contact .home .form-container .form-inner form .form-content input[type=checkbox] {
  top: 2px;
}
.tx-agru-contact .home .form-container .form-inner form .form-content input[type=checkbox] + label {
  color: white;
}
.tx-agru-contact .home .form-container .form-inner form .form-content input[type=checkbox] + label a {
  color: #008bd2;
  text-decoration: underline;
}
.tx-agru-contact .form-container {
  background-color: #008bd2;
}
.tx-agru-contact .form-container .form-inner form .form-content .form-group {
  margin-bottom: 2rem;
}
.tx-agru-contact .form-container .form-inner form .form-content .form-group select, .tx-agru-contact .form-container .form-inner form .form-content .form-group input {
  border: 1px solid #008bd2;
  border-radius: 0;
  color: #535457;
  font-size: 16px;
  height: 60px;
  line-height: 60px;
  padding: 0 40px 0 20px;
}
.tx-agru-contact .form-container .form-inner form .form-content .form-group select {
  position: relative;
  appearance: none;
  background-image: url("../images/img/arrow_down_black.svg");
  background-position: center right 20px;
  background-size: 15px;
  background-repeat: no-repeat;
}
.tx-agru-contact .form-container .form-inner form .form-content .form-group textarea {
  border: 1px solid #008bd2;
  border-radius: 0;
  color: #535457;
  font-size: 16px;
  height: 140px;
  padding: 14px 20px;
}
.tx-agru-contact .form-container .form-inner form .form-content .form-group.has-error span.help-block.form-error {
  display: block;
  color: white;
  margin-top: 5px;
  font-size: 1.3rem;
}
.tx-agru-contact .form-container .form-inner form .form-content .form-group.form-check > div {
  position: relative;
}
.tx-agru-contact .form-container .form-inner form .form-content .form-group.form-check > div input[type=checkbox] {
  top: 0;
  height: auto;
}
.tx-agru-contact .form-container .form-inner form .form-content .form-group.form-check > div input[type=checkbox] + label {
  color: white;
}
.tx-agru-contact .form-container .form-inner form .form-content .form-group.form-check > div input[type=checkbox] + label a {
  color: white;
  text-decoration: underline;
}
.tx-agru-contact .form-container .form-inner form .form-content .form-action {
  text-align: right;
  margin-top: 2rem;
}
.tx-agru-contact .form-container .form-inner form .form-content .form-action button {
  border-color: white;
}
.tx-agru-contact .form-container .form-inner form .form-content .form-action .form-check input[type=radio] {
  top: 0;
  height: auto;
}
.tx-agru-contact .form-container .form-inner form .form-content .form-action .form-check input[type=radio] + label {
  color: white;
}
.tx-agru-contact .form-container .form-inner form .form-content .form-action .form-check input[type=radio] + label a {
  color: white;
  text-decoration: underline;
}

.slick-image-slider {
  width: 100%;
}
.slick-image-slider .slick-track {
  padding-bottom: 10rem;
}
.slick-image-slider .slick-track .image-slider-item {
  position: relative;
}
.slick-image-slider .slick-track .image-slider-item img {
  margin-bottom: 0;
}
.slick-image-slider .slick-track .image-slider-item .image-description {
  position: absolute;
  top: calc(100% + 3rem);
  display: block;
  color: #666;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.slick-image-slider .slick-dots {
  position: absolute;
  bottom: 8rem;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.slick-image-slider .slick-dots li {
  font-size: 0;
  padding-left: 5px;
}
.slick-image-slider .slick-dots li:first-child {
  padding-left: 0;
}
.slick-image-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  padding: 0;
  border: 0;
  width: 24px;
  height: 10px;
  border-radius: 30px;
  background-color: #d6d6d6;
}
@media (min-width: 576px) {
  .slick-image-slider .slick-dots li button {
    width: 37px;
  }
}
@media (min-width: 768px) {
  .slick-image-slider .slick-dots li button {
    width: 53px;
  }
}
@media (min-width: 992px) {
  .slick-image-slider .slick-dots li button {
    width: 73px;
  }
}
@media (min-width: 1200px) {
  .slick-image-slider .slick-dots li button {
    width: 35px;
  }
}
@media (min-width: 1400px) {
  .slick-image-slider .slick-dots li button {
    width: 43px;
  }
}
@media (min-width: 1920px) {
  .slick-image-slider .slick-dots li button {
    width: 63px;
  }
}
.slick-image-slider .slick-dots li button:focus {
  border: 0;
  box-shadow: none;
  outline: 0;
}
.slick-image-slider .slick-dots li.slick-active button {
  background-color: #008bd2;
}
.slick-image-slider .slick-arrow {
  position: absolute;
  top: calc((100% - 10rem) / 2);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 1;
  font-size: 0;
  line-height: 0;
  padding: 0;
  border: 0;
  width: 70px;
  height: 70px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(0, 139, 210, 0.8);
}
.slick-image-slider .slick-arrow:focus {
  border: 0;
  box-shadow: none;
  outline: 0;
}
.slick-image-slider .slick-arrow.slick-next {
  right: 0;
  background-image: url("../images/slick_arrow_right.svg");
}
.slick-image-slider .slick-arrow.slick-next:hover {
  background-image: url("../images/slick_arrow_right_active.svg");
}
.slick-image-slider .slick-arrow.slick-prev {
  background-image: url("../images/slick_arrow_left.svg");
}
.slick-image-slider .slick-arrow.slick-prev:hover {
  background-image: url("../images/slick_arrow_left_active.svg");
}

.import-directories-container {
  padding: 4rem 0;
}
.import-directories-container .import-directory {
  border-bottom: 1px solid #008bd2;
}
.import-directories-container .import-directory:first-child {
  border-top: 1px solid #008bd2;
}
.import-directories-container .import-directory .import-directory-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
}
.import-directories-container .import-directory .import-directory-info .import-directory-text {
  padding: 1rem 0;
}
.import-directories-container .import-directory .import-directory-info .import-directory-text h3 {
  color: #000;
  font-size: 2rem;
  margin-bottom: 5px;
}
.import-directories-container .import-directory .import-directory-info .import-directory-text span {
  font-size: 1.6rem;
}
.import-directories-container .import-directory .import-directory-files {
  padding: 2rem 0;
}
.import-directories-container .import-directory .import-directory-files h3 {
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.import-directories-container .import-directory .import-directory-files .files-collapse a.directory-collapse {
  position: relative;
  display: block;
  font-size: 1.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #ccc;
}
.import-directories-container .import-directory .import-directory-files .files-collapse a.directory-collapse:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  transition: transform 300ms;
  width: 16px;
  height: 16px;
  background-image: url("../images/img/arrow_down_black.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.import-directories-container .import-directory .import-directory-files .files-collapse a.directory-collapse.collapsed:after {
  transform: translateY(-50%) rotate(0deg);
}
.import-directories-container .import-directory .import-directory-files .files-collapse:last-child a.directory-collapse {
  border-bottom: 0;
}
.import-directories-container .import-directory .import-directory-files .files-collapse table tr td {
  font-size: 1.6rem;
  vertical-align: middle;
}
.import-directories-container .import-directory .import-directory-files .files-collapse table tr td:first-child {
  border-right: 0;
}
.import-directories-container .import-directory .import-directory-files .files-collapse table tr td:last-child {
  border-left: 0;
  text-align: right;
}
.import-directories-container .import-directory .import-directory-files .files-collapse table tr td a.button {
  min-width: 80px;
  text-align: center;
}

.tx-agru-products .categories {
  padding: 4rem 0;
}
.tx-agru-products .categories .category-breadcrumbs {
  margin-bottom: 4rem;
}
.tx-agru-products .categories .category-breadcrumbs ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .tx-agru-products .categories .category-breadcrumbs ul {
    flex-direction: row;
  }
}
.tx-agru-products .categories .category-breadcrumbs ul li {
  position: relative;
  margin-right: 25px;
  margin-bottom: 5px;
  padding: 0.8rem 1rem;
  height: 32px;
}
@media (min-width: 768px) {
  .tx-agru-products .categories .category-breadcrumbs ul li {
    margin-bottom: 0;
    height: 40px;
  }
  .tx-agru-products .categories .category-breadcrumbs ul li:before {
    content: "" !important;
  }
}
@media (min-width: 1600px) {
  .tx-agru-products .categories .category-breadcrumbs ul li {
    height: 44px;
  }
}
.tx-agru-products .categories .category-breadcrumbs ul li:before {
  content: none;
  position: absolute;
  right: 100%;
  top: 0;
  width: 0;
  height: 0;
  background-color: #f6c900;
  border-right: 0;
  border-left: 16px solid white;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  z-index: -1;
}
.tx-agru-products .categories .category-breadcrumbs ul li:after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 0;
  height: 0;
  border-right: 0;
  border-left: 16px solid #f6c900;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}
.tx-agru-products .categories .category-breadcrumbs ul li:first-child:before {
  content: none !important;
}
.tx-agru-products .categories .category-breadcrumbs ul li a {
  color: white;
}
@media (min-width: 768px) {
  .tx-agru-products .categories .category-breadcrumbs ul li:before {
    border-left: 20px solid white;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
  }
  .tx-agru-products .categories .category-breadcrumbs ul li:after {
    border-left: 20px solid #f6c900;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
  }
}
@media (min-width: 1600px) {
  .tx-agru-products .categories .category-breadcrumbs ul li:before {
    border-left: 22px solid white;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
  }
  .tx-agru-products .categories .category-breadcrumbs ul li:after {
    border-left: 22px solid #f6c900;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
  }
}
.tx-agru-products .categories .text-with-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
}
.tx-agru-products .categories .text-with-button .dropdown .dropdown-toggle:focus {
  outline: 0;
}
.tx-agru-products .categories .text-with-button .dropdown .dropdown-menu {
  padding: 0;
  width: 100%;
}
.tx-agru-products .categories .text-with-button .dropdown .dropdown-menu .dropdown-item {
  border-bottom: 1px solid #ccc;
  font-size: 16px;
  padding: 0.5rem 1rem;
}
.tx-agru-products .categories .text-with-button .dropdown .dropdown-menu .dropdown-item:last-child {
  border-bottom: 0;
}
.tx-agru-products .categories .text-with-button .dropdown .dropdown-menu .dropdown-item:hover {
  color: #008bd2;
  text-decoration: none;
}
.tx-agru-products .categories .text-with-button .dropdown .dropdown-menu .dropdown-item:focus, .tx-agru-products .categories .text-with-button .dropdown .dropdown-menu .dropdown-item:active {
  background-color: #008bd2;
}
.tx-agru-products .categories .text-with-button .text-right a {
  display: block;
  margin: 5px 0;
  text-align: center;
}
.tx-agru-products .categories .back-link {
  display: inline-block;
  color: #2d2e2f;
  font-size: 1.4rem;
  position: relative;
  padding-left: 30px;
  margin-top: -10px;
  margin-bottom: 2rem;
  white-space: nowrap;
}
.tx-agru-products .categories .back-link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 14px;
  height: 12px;
  background-image: url("../images/img/pfeil_rechts_dunkelgrau.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .tx-agru-products .categories .back-link:before {
    top: 3px;
  }
}
.tx-agru-products .categories h2 {
  font-size: 4rem;
}
.tx-agru-products .categories > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tx-agru-products .categories > ul li {
  position: relative;
  padding-left: 30px;
  margin: 5px 0;
}
.tx-agru-products .categories > ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 12px;
  background-image: url("../images/img/pfeil_rechts_dunkelgrau.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .tx-agru-products .categories > ul li:before {
    top: 5px;
  }
}
@media (min-width: 1400px) {
  .tx-agru-products .categories > ul li:before {
    top: 7px;
  }
}
.tx-agru-products .categories .category-code {
  display: block;
  font-size: 18px;
  margin: -5px 0 20px;
}
.tx-agru-products .categories .long-text {
  font-size: 16px;
  padding: 5px 0;
}
.tx-agru-products .categories .product-container {
  width: 100%;
  max-width: 1400px;
}
.tx-agru-products .categories .product-container .product-item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .tx-agru-products .categories .product-container .product-item {
    flex-direction: row;
    align-items: center;
  }
}
.tx-agru-products .categories .product-container .product-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.tx-agru-products .categories .product-container .product-item .product-col.image {
  min-width: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .tx-agru-products .categories .product-container .product-item .product-col.image {
    min-width: 150px;
    margin-right: 30px;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .tx-agru-products .categories .product-container .product-item .product-col.image.measures {
    min-width: 280px;
  }
}
.tx-agru-products .categories .product-container .product-item .product-col.code {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .tx-agru-products .categories .product-container .product-item .product-col.code {
    margin-right: 30px;
    min-width: 120px;
    flex-grow: 1;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .tx-agru-products .categories .product-container .product-item .product-col.code {
    min-width: 150px;
  }
}
.tx-agru-products .categories .product-container .product-item .product-col.text {
  width: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .tx-agru-products .categories .product-container .product-item .product-col.text {
    min-width: 30%;
    margin-bottom: 0;
  }
}
.tx-agru-products .categories .product-container .product-item .product-col.text ul {
  margin: 0;
}
.tx-agru-products .categories .product-container .product-item .product-col.text ul li {
  font-size: 1.6rem;
  padding-left: 0;
}
.tx-agru-products .categories .table-striped {
  font-size: 1.4rem;
  width: 100%;
  max-width: 1400px;
}
.tx-agru-products .categories .sticky-table-head thead {
  position: sticky;
  top: 50px;
  background: white;
  box-shadow: 0 2px 5px -5px #000;
}
.tx-agru-products td.hiddenRow {
  padding: 0;
}
.tx-agru-products td.hiddenRow .collapsed-table {
  margin: 0;
}
.tx-agru-products td.hiddenRow .collapsed-table thead {
  position: relative;
  top: auto;
}

.table-striped.collapsable-rows tbody tr {
  background-color: white;
}
.table-striped.collapsable-rows tbody tr:nth-child(4n+1) {
  background-color: rgba(0, 0, 0, 0.05);
}
.table-striped.collapsable-rows tbody tr.accordion-toggle.collapsed .open-row {
  transform: rotate(0);
}
.table-striped.collapsable-rows tbody tr.accordion-toggle .open-row {
  border: 0;
  width: 18px;
  height: 18px;
  background-color: transparent;
  background-image: url("../images/img/pfeil_rechts_dunkelgrau.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(90deg);
  transition: all 200ms;
}
.table-striped.collapsable-rows tbody tr.accordion-toggle .open-row:focus {
  outline: 0;
  border: 0;
}

.bfpdf .back-link {
  display: inline-block;
  color: #2d2e2f;
  font-size: 1.4rem;
  position: relative;
  padding-left: 30px;
  margin-top: -10px;
  margin-bottom: 2rem;
}
.bfpdf .back-link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 12px;
  background-image: url("../images/img/pfeil_rechts_dunkelgrau.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}
.bfpdf .form-container {
  background-color: #008bd2;
}
.bfpdf .form-container .form-inner form .form-title {
  margin-bottom: 3rem;
}
.bfpdf .form-container .form-inner form .form-title h1 {
  color: white;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.333em;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
.bfpdf .form-container .form-inner form .form-content .form-group {
  margin-bottom: 2rem;
}
.bfpdf .form-container .form-inner form .form-content .form-group label {
  display: block;
  color: white;
}
.bfpdf .form-container .form-inner form .form-content .form-group select, .bfpdf .form-container .form-inner form .form-content .form-group input {
  border: 1px solid #008bd2;
  border-radius: 0;
  color: #535457;
  font-size: 16px;
  height: 60px;
  line-height: 60px;
  padding: 0 40px 0 20px;
  width: 100%;
}
.bfpdf .form-container .form-inner form .form-content .form-group select {
  position: relative;
  appearance: none;
  background-image: url("../images/img/arrow_down_black.svg");
  background-position: center right 20px;
  background-size: 15px;
  background-repeat: no-repeat;
}
.bfpdf .form-container .form-inner form .form-content .form-group textarea {
  border: 1px solid #008bd2;
  border-radius: 0;
  color: #535457;
  font-size: 16px;
  height: 140px;
  padding: 14px 20px;
}
.bfpdf .form-container .form-inner form .form-content .form-group.has-error span.help-block.form-error {
  display: block;
  color: white;
  margin-top: 5px;
  font-size: 1.3rem;
}
.bfpdf .form-container .form-inner form .form-content .form-group.form-check > div {
  position: relative;
}
.bfpdf .form-container .form-inner form .form-content .form-group.form-check > div input[type=checkbox] {
  top: 0;
  height: auto;
}
.bfpdf .form-container .form-inner form .form-content .form-group.form-check > div input[type=checkbox] + label {
  color: white;
}
.bfpdf .form-container .form-inner form .form-content .form-group.form-check > div input[type=checkbox] + label a {
  color: white;
  text-decoration: underline;
}
.bfpdf .form-container .form-inner form .form-content .form-action {
  text-align: right;
  margin-top: 2rem;
}
.bfpdf .form-container .form-inner form .form-content .form-action button, .bfpdf .form-container .form-inner form .form-content .form-action input {
  border-color: white;
}

.excel-download a {
  font-size: 15px;
}

.chemical-resistance-list {
  padding-top: 3rem;
}
.chemical-resistance-list .chemical-resistance-info-text {
  border: 1px solid #f3f3f3;
  padding: 2rem;
  margin: 2rem 0;
}
.chemical-resistance-list .chemical-resistance-info-text .accept-button {
  display: inline-block;
  color: white;
  background-color: #008bd2;
  padding: 10px 20px;
  text-decoration: none;
}
.chemical-resistance-list .chemical-resistance {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 3rem;
}
@media (min-width: 1200px) {
  .chemical-resistance-list .chemical-resistance {
    flex-direction: row;
  }
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table {
  width: 100%;
}
@media (min-width: 1200px) {
  .chemical-resistance-list .chemical-resistance .chemical-resistance-table {
    width: 70%;
  }
}
@media (min-width: 1400px) {
  .chemical-resistance-list .chemical-resistance .chemical-resistance-table {
    width: 65%;
  }
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .buttons {
  display: flex;
  gap: 20px;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .print-button, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .contact-button {
  margin-bottom: 0;
}
@media print {
  .chemical-resistance-list .chemical-resistance .chemical-resistance-table .print-button, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .contact-button {
    display: none;
  }
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .print-button button, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .print-button a, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .contact-button button, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .contact-button a {
  display: flex;
  align-items: center;
  color: #008bd2;
  background-color: transparent;
  border: none;
  font-size: 1.6rem;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .print-button button:focus, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .print-button a:focus, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .contact-button button:focus, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .contact-button a:focus {
  outline: 0;
  box-shadow: none;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .print-button button:hover, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .print-button a:hover, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .contact-button button:hover, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .contact-button a:hover {
  text-decoration: underline;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .print-button button .print-icon, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .print-button button .contact-icon, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .print-button a .print-icon, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .print-button a .contact-icon, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .contact-button button .print-icon, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .contact-button button .contact-icon, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .contact-button a .print-icon, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .contact-button a .contact-icon {
  display: block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 10px;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .print-button button .print-icon, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .print-button a .print-icon, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .contact-button button .print-icon, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .contact-button a .print-icon {
  background-image: url("../images/img/icon_print.svg");
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .print-button button .contact-icon, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .print-button a .contact-icon, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .contact-button button .contact-icon, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .contact-button a .contact-icon {
  background-image: url("../images/img/icon_contact.svg");
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 3rem;
}
@media print {
  .chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter {
    display: none;
  }
}
@media (min-width: 768px) {
  .chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter {
    gap: 20px;
  }
}
@media (min-width: 1400px) {
  .chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter {
    gap: 50px;
  }
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter .filter {
  position: relative;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter .filter label {
  display: block;
  font-size: 16px;
  font-weight: bold;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter .filter .item-count {
  position: absolute;
  bottom: 4px;
  left: 10px;
  font-size: 15px;
  pointer-events: none;
  width: calc(100% - 10px);
  background-image: url("../images/img/sitemap_klein_pfeil_unten.svg");
  background-size: 12px;
  background-position: right 10px center;
  background-repeat: no-repeat;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter .filter .reset-filter {
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  font-size: 12px;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter .filter select, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter .filter .select2 {
  min-width: 100%;
}
@media (min-width: 768px) {
  .chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter .filter select, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter .filter .select2 {
    min-width: 250px;
  }
}
@media (min-width: 1200px) {
  .chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter .filter select, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter .filter .select2 {
    min-width: 300px;
  }
}
@media (min-width: 1500px) {
  .chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter .filter select, .chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter .filter .select2 {
    min-width: 350px;
  }
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter .filter .select2 .selection .select2-selection {
  border: 1px solid #f3f3f3;
  background-color: #f3f3f3;
  background-image: url("../images/img/sitemap_klein_pfeil_unten.svg");
  background-size: 12px;
  background-position: right 10px center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter .filter .select2 .selection .select2-selection ul {
  display: none;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter .filter .select2 .selection .select2-selection .select2-search {
  display: block;
  background-color: #f3f3f3;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter .filter .select2 .selection .select2-selection .select2-search textarea {
  font-family: FrutigerLTStd;
  font-size: 16px;
  padding-left: 4px;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter .filter .select2.select2-container--open + .item-count {
  display: none;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table-filter input[type=submit] {
  align-self: flex-end;
  margin-left: auto;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table {
  overflow-x: auto;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table table {
  font-size: 15px;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table table thead tr th {
  background-color: #f3f3f3;
  border: 0;
  vertical-align: top;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table table tbody tr td {
  background-color: white;
  border-bottom: 3px solid #f3f3f3;
  padding: 8px 0;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table table tbody tr td:nth-child(1), .chemical-resistance-list .chemical-resistance .chemical-resistance-table .table table tbody tr td:nth-child(2) {
  padding: 8px 10px;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table table tbody tr td .entry-container {
  padding: 3px;
  min-width: 70px;
}
@media (min-width: 1200px) {
  .chemical-resistance-list .chemical-resistance .chemical-resistance-table .table table tbody tr td .entry-container {
    min-width: 65px;
  }
}
@media (min-width: 1400px) {
  .chemical-resistance-list .chemical-resistance .chemical-resistance-table .table table tbody tr td .entry-container {
    min-width: 70px;
  }
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table table tbody tr td span {
  display: inline-block;
  border-radius: 20px;
  text-align: center;
  width: 100%;
  max-width: 150px;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table table tbody tr td span.reduction-plus {
  background-color: #3fb698;
  color: white;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table table tbody tr td span.plus {
  background-color: #4dca87;
  color: white;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table table tbody tr td span.minus {
  background-color: #f36688;
  color: white;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table table tbody tr td span.limited-resistance {
  background-color: #fedb4b;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table table tbody tr td .additional-resistance-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 1rem;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table table tbody tr td .additional-resistance-info .entry span {
  display: block;
  max-width: 100%;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table table tbody tr td .additional-resistance-info .entry span.info-title {
  font-weight: bold;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table table tbody tr td.dt-control:before {
  width: 18px;
  height: 18px;
  border: none;
  background-color: transparent;
  background-image: url("../images/img/pfeil_rechts_dunkelgrau.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  transition: all 200ms;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table table tbody tr[data-dt-row] td {
  border-top: 0;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table table tbody tr.dt-hasChild td {
  border-bottom: 0;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-table .table table tbody tr.dt-hasChild td.dt-control:before {
  transform: rotate(90deg);
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-infos {
  width: 100%;
  position: relative;
  background: white;
}
@media (min-width: 1200px) {
  .chemical-resistance-list .chemical-resistance .chemical-resistance-infos {
    width: 30%;
  }
}
@media (min-width: 1400px) {
  .chemical-resistance-list .chemical-resistance .chemical-resistance-infos {
    width: 35%;
  }
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-infos .collapse-button {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 1rem;
  text-decoration: none;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-infos .collapse-button:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 5px;
  background-image: url("../images/img/sitemap_klein_pfeil_unten.svg");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  transition: all 200ms;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-infos .collapse-button.collapsed:after {
  transform: rotate(0);
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-infos hr {
  margin-bottom: 2rem;
}
@media print {
  .chemical-resistance-list .chemical-resistance .chemical-resistance-infos .collapse {
    display: block !important;
  }
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-infos .legend-container .legend-entry {
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  width: 100%;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-infos .legend-container .legend-entry .dot {
  min-width: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #008bd2;
  margin-top: 4px;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-infos .legend-container .legend-entry .dot.red {
  background-color: #f36688;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-infos .legend-container .legend-entry .dot.green {
  background-color: #3fb698;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-infos .legend-container .legend-entry .dot.light-green {
  background-color: #4dca87;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-infos .legend-container .legend-entry .dot.yellow {
  background-color: #fedb4b;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-infos .legend-container .legend-entry .dot.hidden {
  visibility: hidden;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-infos .legend-container .legend-entry .abbr {
  line-height: 1.5em;
  min-width: 50px;
}
.chemical-resistance-list .chemical-resistance .chemical-resistance-infos .legend-container .legend-entry .text {
  line-height: 1.5em;
}

.select2-container .select2-dropdown {
  border-color: #f3f3f3;
}
.select2-container .select2-dropdown .select2-results ul li {
  gap: 10px;
  font-size: 15px;
  padding: 0;
}
.select2-container .select2-dropdown .select2-results ul li .checkbox {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid #aaa;
  margin-right: 10px;
}
.select2-container .select2-dropdown .select2-results ul li .elem-parent {
  padding: 6px 10px;
}
.select2-container .select2-dropdown .select2-results ul li .single-elem {
  padding: 6px 10px 6px 20px;
}
.select2-container .select2-dropdown .select2-results ul li.select2-results__option--highlighted {
  background: rgba(0, 0, 0, 0.01);
  color: #000;
}
.select2-container .select2-dropdown .select2-results ul li.select2-results__option--selected .checkbox {
  background-color: #008bd2;
}
.select2-container .select2-dropdown .select2-results ul li.select2-results__message {
  padding: 10px;
}

/* BEGIN Bold */
@font-face {
  font-family: FrutigerLTStd;
  src: url("../Fonts/FrutigerLTStd-Bold.woff2?v=1.101") format("woff2"), url("../Fonts/FrutigerLTStd-Bold.woff?v=1.101") format("woff");
  font-weight: bold;
  font-style: normal;
}
/* END Bold */
/* BEGIN Regular */
@font-face {
  font-family: FrutigerLTStd;
  src: url("../Fonts/FrutigerLTStd-Roman.woff2?v=1.101") format("woff2"), url("../Fonts/FrutigerLTStd-Roman.woff?v=1.101") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* END Regular */
/* BEGIN Light */
@font-face {
  font-family: FrutigerLTStd;
  src: url("../Fonts/FrutigerLTStd-Light.woff2?v=1.101") format("woff2"), url("../Fonts/FrutigerLTStd-Light.woff?v=1.101") format("woff");
  font-weight: 300;
  font-style: normal;
}
/* END Light */
html {
  font-size: 8px;
}
@media (min-width: 768px) {
  html {
    font-size: 10px;
  }
}

body {
  font-family: FrutigerLTStd;
  background-color: #fff;
}

body .loading-gif {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-color: #008bd2;
  background-image: url("../images/loading_gif.gif");
  background-size: cover;
  background-position: center center;
  z-index: 99999;
}

.bold {
  font-weight: bold;
}

.light {
  font-weight: 300;
}

p.small-content-text {
  font-size: 1.3rem !important;
}

p.no-margin-bottom {
  margin-bottom: 0 !important;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 2.4rem;
}

ol {
  font-weight: 300;
  padding-left: 2rem;
}
ol li {
  letter-spacing: 0.02em;
  font-size: 1.5rem;
}
@media (min-width: 1400px) {
  ol li {
    font-size: 1.6rem;
  }
}
@media (min-width: 1600px) {
  ol li {
    font-size: 1.8rem;
  }
}

.bottom-head {
  margin-top: 152px;
}
.bottom-head.no-breadcrumbs {
  margin-top: 125px;
}

#container.home .bottom-head.no-breadcrumbs {
  margin-top: 153px;
}
#container.home .bottom-head.no-breadcrumbs .page-subnavC {
  margin-bottom: 0;
}

.breadcrumbC {
  position: relative;
}

.breadcrumbs {
  padding: 2rem 0;
}
.breadcrumbs a.breadcrumb-item {
  color: #2d2e2f;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.06em;
}
.breadcrumbs a.breadcrumb-item:hover {
  color: #008bd2;
  text-decoration: none;
}
.breadcrumbs span.breadcrumb-text {
  color: #2d2e2f;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.06em;
}
.breadcrumbs span.delimiter {
  display: inline-block;
  color: #b3b3b3;
  width: 16px;
  height: 12px;
  background-image: url("../images/img/pfeil_rechts_grau.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 0 3px -1px;
}

.page-title {
  color: #008bd2;
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  margin-bottom: 5rem;
  text-align: center;
  text-transform: uppercase;
}

h1 {
  color: #2D2E2F;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
}

h1.ce-headline-center {
  color: #008bd2;
  margin-bottom: 4rem !important;
  text-align: center;
  font-size: 4.6rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}
@media (min-width: 1600px) {
  h1.ce-headline-center {
    font-size: 5rem;
  }
}
@media (min-width: 1900px) {
  h1.ce-headline-center {
    font-size: 6rem;
  }
}

.page-subnavC {
  margin: 0 auto 4rem;
  max-width: 100%;
}
@media (min-width: 768px) {
  .page-subnavC {
    max-width: 60%;
  }
}
@media (min-width: 992px) {
  .page-subnavC {
    max-width: 40%;
  }
}
@media (min-width: 768px) {
  .page-subnavC.big-subnav {
    max-width: 80%;
  }
}
@media (min-width: 992px) {
  .page-subnavC.big-subnav {
    max-width: 60%;
  }
}
.page-subnavC.big-subnav .subnav ul li {
  border-bottom: 3px solid transparent;
  margin: 5px 20px;
}
.page-subnavC.big-subnav .subnav ul li a {
  font-size: 2.2rem;
  line-height: 1.314em;
  letter-spacing: 0.04em;
}
.page-subnavC.big-subnav .subnav ul li:hover {
  border-bottom: 3px solid #008bd2;
}
.page-subnavC.big-subnav .subnav ul li.active {
  border-bottom: 3px solid #008bd2;
}
.page-subnavC.big-subnav .subnav ul li:only-child {
  margin-left: 0;
  margin-right: 0;
}
.page-subnavC .subnav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-subnavC .subnav ul li {
  border-bottom: 2px solid transparent;
  color: #008bd2;
  margin: 5px 10px;
  padding: 0;
}
.page-subnavC .subnav ul li:only-child {
  margin-left: 0;
  margin-right: 0;
}
.page-subnavC .subnav ul li a {
  display: block;
  color: #b3b3b3;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.page-subnavC .subnav ul li a:hover {
  color: #008bd2;
  text-decoration: none;
}
.page-subnavC .subnav ul li:hover {
  border-color: #008bd2;
}
.page-subnavC .subnav ul li.active {
  border-color: #008bd2;
}
.page-subnavC .subnav ul li.active a {
  color: #008bd2;
}

.subpage h1 {
  color: #2D2E2F;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
}
.subpage h2, .subpage h3 {
  color: #008bd2;
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.538em;
  margin-bottom: 2rem;
}
.subpage h2.big-blue-headline, .subpage h3.big-blue-headline {
  color: #008bd2;
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.538em;
  margin-bottom: 2rem;
  hyphens: auto;
}
@media (min-width: 576px) {
  .subpage h2.big-blue-headline, .subpage h3.big-blue-headline {
    hyphens: none;
  }
}
.subpage h2.small-h3, .subpage h3.small-h3 {
  font-size: 1.5rem !important;
  margin-bottom: 0;
}
@media (min-width: 1400px) {
  .subpage h2.small-h3, .subpage h3.small-h3 {
    font-size: 1.6rem !important;
  }
}
@media (min-width: 1600px) {
  .subpage h2.small-h3, .subpage h3.small-h3 {
    font-size: 1.8rem !important;
  }
}
.subpage h2 h3, .subpage h3 h3 {
  color: #2D2E2F;
  font-size: 2.2rem;
}
.subpage p {
  color: #2d2e2f;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.6667em;
  margin-bottom: 2rem;
}
.subpage p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1400px) {
  .subpage p {
    font-size: 1.6rem;
  }
}
@media (min-width: 1600px) {
  .subpage p {
    font-size: 1.8rem;
  }
}
.subpage a {
  color: #008bd2;
}
.subpage a:hover {
  text-decoration: underline;
}
.subpage ul {
  padding: 0 1.8rem;
  margin-bottom: 2rem;
  font-weight: 300;
}
.subpage ul li {
  color: #2d2e2f;
  padding-left: 1.5rem;
  letter-spacing: 0.02em;
  font-size: 1.5rem;
}
@media (min-width: 1400px) {
  .subpage ul li {
    font-size: 1.6rem;
  }
}
@media (min-width: 1600px) {
  .subpage ul li {
    font-size: 1.8rem;
  }
}
.subpage ul.icon-list {
  list-style: none;
}
.subpage .header-single .text h1, .subpage .header-single .text h2, .subpage .header-single .text h3 {
  color: #008bd2;
}

.big-blue-headline {
  color: #008bd2;
  font-size: 4.6rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
}
@media (min-width: 1600px) {
  .big-blue-headline {
    font-size: 5rem;
  }
}
@media (min-width: 1900px) {
  .big-blue-headline {
    font-size: 6rem;
  }
}

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

p {
  color: #008bd2;
  font-size: 1.5rem;
  line-height: 26px;
  letter-spacing: 0.15px;
}

ul.link-list {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}
ul.link-list li {
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  line-height: 1.667em;
  padding-left: 0;
}
ul.link-list li a {
  display: inline-block;
  color: #2d2e2f;
  transition: transform 300ms;
}
ul.link-list li a:before {
  content: "";
  width: 10px;
  height: 12px;
  margin-right: 8px;
  display: inline-block;
  background-image: url("../images/img/pfeil_rechts_blau.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
ul.link-list li a:hover {
  text-decoration: none;
  -moz-transform: translate(10px, 0);
  -o-transform: translate(10px, 0);
  -ms-transform: translate(10px, 0);
  -webkit-transform: translate(10px, 0);
  transform: translate(10px, 0);
}
ul.link-list.blue-links li a {
  color: #008bd2;
}

strong {
  font-weight: bold;
}

hr {
  width: 100%;
  height: 6px;
  background-color: #008bd2;
  border-radius: 5px;
  margin: 0;
}

a, button {
  color: white;
}
a:hover, button:hover {
  color: #008bd2;
  text-decoration: none;
}
a.button, button.button {
  display: inline-block;
  border: 1px solid;
  border-radius: 30px;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  padding: 0.6rem 2rem;
  transition: background-color 300ms, border-color 300ms;
}
a.button:hover, button.button:hover {
  text-decoration: none;
}
a.button.button-blue-white, button.button.button-blue-white {
  color: white;
  background-color: #008bd2;
  border-color: #008bd2;
}
a.button.button-blue-white:hover, button.button.button-blue-white:hover {
  background-color: #00689e;
  border-color: #00689e;
  color: white;
}
a.button.button-white-blue, button.button.button-white-blue {
  background-color: white;
  border-color: #008bd2;
  color: #008bd2;
}
a.button.button-white-blue:hover, button.button.button-white-blue:hover {
  background-color: #00689e;
  border-color: #00689e;
  color: white;
}
a.button.button-gray-white, button.button.button-gray-white {
  background-color: #8c8c8c;
  border-color: #8c8c8c;
  color: white;
}
a.button.button-gray-white:hover, button.button.button-gray-white:hover {
  background-color: white;
  border-color: #8c8c8c;
  color: #8c8c8c;
}
a.button.small-button, button.button.small-button {
  line-height: 1.1em;
  font-weight: 300;
  padding: 0.6rem 4rem;
}
a.arrow-link, button.arrow-link {
  display: inline-block;
  color: #008bd2;
  transition: transform 300ms;
}
a.arrow-link:before, button.arrow-link:before {
  content: "";
  width: 10px;
  height: 12px;
  margin-right: 8px;
  display: inline-block;
  background-image: url("../images/img/pfeil_rechts_blau.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
a.arrow-link:hover, button.arrow-link:hover {
  text-decoration: none;
  -moz-transform: translate(10px, 0);
  -o-transform: translate(10px, 0);
  -ms-transform: translate(10px, 0);
  -webkit-transform: translate(10px, 0);
  transform: translate(10px, 0);
}

button[type=submit], input[type=submit] {
  display: inline-block;
  background-color: #008bd2;
  border: 1px solid #008bd2;
  border-radius: 30px;
  color: white;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  padding: 0.6rem 2rem;
  transition: background-color 300ms, border-color 300ms;
}
button[type=submit]:hover, input[type=submit]:hover {
  background-color: #00689e;
  border-color: #00689e;
  color: white;
}
button[type=submit]:focus, input[type=submit]:focus {
  outline: 0;
  box-shadow: none;
}
button[type=submit].small-button, input[type=submit].small-button {
  line-height: 1.1em;
  font-weight: normal;
  padding: 0.6rem 4rem;
}

@media (min-width: 1200px) {
  .container.main-container {
    max-width: 95%;
  }
}
@media (min-width: 1920px) {
  .container.main-container {
    max-width: 1824px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1340px;
  }
}

.block-heading-h2 {
  color: #008bd2;
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  margin-bottom: 4rem;
  text-align: center;
  text-transform: uppercase;
}

.title-with-right-subtitle {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.title-with-right-subtitle h2 {
  margin-right: 4rem;
  color: #008bd2;
  font-size: 4.6rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
@media (min-width: 1600px) {
  .title-with-right-subtitle h2 {
    font-size: 5rem;
  }
}
@media (min-width: 1900px) {
  .title-with-right-subtitle h2 {
    font-size: 6rem;
  }
}
.title-with-right-subtitle p {
  font-weight: bold;
  margin-bottom: 2rem !important;
}

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

.flex-break {
  flex-basis: 100%;
  height: 0px;
}

.main-container .half-block {
  padding-top: 0;
  margin-bottom: 0;
}
.main-container.container-bg-grey > * {
  background-color: #efefef;
}

.container .half-block .textC .text {
  padding: 4rem 1.2rem 2rem;
}
@media (min-width: 1200px) {
  .container .half-block .textC .text {
    padding: 6rem 1.2rem 6rem 4rem;
  }
}
.container .half-block .textC .text .container {
  padding: 0;
}
.container .half-block .textC:first-child .text {
  padding: 4rem 1.2rem 2rem;
}
@media (min-width: 1200px) {
  .container .half-block .textC:first-child .text {
    padding: 6rem 4rem 6rem 1.2rem;
  }
}
.container .half-block.vertical-center .textC {
  order: 1;
}
.container .half-block.vertical-center .image {
  order: 0;
}
@media (min-width: 1200px) {
  .container .half-block > div:first-child {
    order: 0 !important;
    padding-right: 10px;
  }
  .container .half-block > div:last-child {
    order: 0 !important;
    padding-left: 10px;
  }
}
@media (max-width: 1198.99px) {
  .container .half-block .ce-gallery * {
    width: 100%;
  }
}
.container .frame-type-text.container {
  padding: 0;
}
.container .detail-operations-container .half-block {
  margin-bottom: 4rem;
  padding-top: 4rem;
}
@media (max-width: 1199.98px) {
  .container .detail-operations-container .half-block .textC .text {
    padding: 4rem 0 1rem;
  }
  .container .detail-operations-container .half-block .textC .text .einsatzgebietC {
    padding: 0;
  }
}

.frame-type-text figure.table {
  overflow-x: auto;
}
.frame-type-text figure.table table {
  width: 100%;
}
.frame-type-text figure.table table.table-fixed {
  table-layout: auto;
}
@media (min-width: 1200px) {
  .frame-type-text figure.table table.table-fixed {
    table-layout: fixed;
  }
}

.full-width-container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .full-width-container {
    padding: 0;
  }
}
.full-width-container .half-block {
  padding-top: 0;
  margin-bottom: 0;
}
.full-width-container .half-block .textC {
  order: 1;
}
@media (min-width: 1600px) {
  .full-width-container .half-block .textC .text {
    padding: 6rem 12rem;
  }
}
.full-width-container .half-block div.image {
  order: 0;
}
.full-width-container .half-block div.image figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 4rem;
  background-color: rgba(0, 139, 210, 0.8);
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
}
@media (min-width: 992px) {
  .full-width-container .half-block .textC {
    order: 0;
  }
  .full-width-container .half-block .image {
    order: 0;
  }
}

.one-col {
  padding: 2.5rem 0;
}
.one-col .half-block {
  padding-left: 10px;
  padding-right: 10px;
}
.one-col .half-block .textC {
  position: relative;
  top: 0;
  transform: none;
}
.one-col .half-block .textC .text {
  position: relative;
  top: 0;
  transform: none;
  padding: 0;
}
.one-col .half-block .textC .text .container {
  padding: 0;
}
.one-col .half-block .textC .text h2 {
  color: #2D2E2F;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.375em;
  letter-spacing: 0.6px;
  margin-top: 1rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.one-col .half-block .textC .text h3 {
  color: #2D2E2F;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2rem;
}
.one-col .half-block .textC .text p {
  color: #2d2e2f;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.3em;
  margin-bottom: 2rem;
}
.one-col .half-block .textC .text p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1400px) {
  .one-col .half-block .textC .text p {
    font-size: 1.6rem;
  }
}
@media (min-width: 1600px) {
  .one-col .half-block .textC .text p {
    font-size: 1.8rem;
  }
}
.one-col .half-block > div:first-child {
  order: 1;
}
.one-col .half-block > div:last-child {
  order: 0;
}
@media (min-width: 992px) {
  .one-col .half-block > div:first-child {
    order: 0;
    padding-right: 20px;
  }
  .one-col .half-block > div:last-child.textC {
    order: 0;
    padding-left: 20px;
    padding-right: 25px;
  }
}

.tiles-full-width .half-block {
  gap: 20px;
  justify-content: space-between;
  padding-top: 0;
}
.tiles-full-width .half-block .textC {
  flex: none;
  width: 100%;
}
@media (min-width: 992px) {
  .tiles-full-width .half-block .textC {
    width: calc(50% - 10px);
  }
}
.tiles-full-width .half-block .textC .text {
  padding: 0 !important;
}
.tiles-full-width .half-block .no-spacing-left {
  flex: none;
  width: 100%;
  padding: 0;
}
@media (min-width: 992px) {
  .tiles-full-width .half-block .no-spacing-left {
    width: calc(50% - 10px);
  }
}
.tiles-full-width .half-block .no-spacing-left .frame-type-text {
  margin-top: 0;
}

#back-to-top {
  position: absolute;
  z-index: 1;
  bottom: 10px;
  right: 25px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid white;
  background-image: url("../images/img/pfeil_oben_weiss.svg");
  background-size: 25px 25px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: bottom 300ms;
}
#back-to-top span {
  display: block;
  color: #008bd2;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding-top: 38px;
  text-align: center;
}

.info-popup .white-popup {
  max-width: 800px;
  width: 90%;
  padding: 0;
}
.info-popup .white-popup .popupC {
  display: flex;
  flex-wrap: wrap;
}
.info-popup .white-popup .popupC .left-side {
  flex: 0 0 100%;
  background-color: #008bd2;
  position: relative;
  padding: 6rem 4rem;
}
@media (min-width: 768px) {
  .info-popup .white-popup .popupC .left-side {
    flex: 0 0 33%;
  }
}
@media (min-width: 768px) {
  .info-popup .white-popup .popupC .left-side .text {
    width: calc(100% - 8rem);
    position: absolute;
    top: 50%;
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}
.info-popup .white-popup .popupC .left-side .text h2 {
  color: white;
  font-size: 3.8rem;
  font-weight: 300;
}
.info-popup .white-popup .popupC .left-side .text h3 {
  color: white;
  font-weight: bold;
  margin-bottom: 2rem;
}
.info-popup .white-popup .popupC .left-side .text a {
  color: black;
  background-color: goldenrod;
  font-size: 1.4rem;
  padding: 0.4rem 2.6rem;
}
.info-popup .white-popup .popupC .right-side {
  flex: 1 0 100%;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) {
  .info-popup .white-popup .popupC .right-side {
    flex: 1 0 66%;
  }
}
.info-popup .white-popup .popupC .right-side img {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .inset-text-row {
    width: calc(100% + 70px);
    margin-left: -70px;
    padding: 3rem 0 2rem;
  }
}
.inset-text-row .inset-textC {
  padding: 2.4rem;
}
@media (min-width: 768px) {
  .inset-text-row .inset-textC {
    padding: 1rem 20px 0 0;
  }
}
.inset-text-row .inset-textC .textC {
  padding: 3rem;
}
@media (min-width: 768px) {
  .inset-text-row .inset-textC .textC {
    padding: 3rem 0 3rem 3rem;
  }
}
.inset-text-row .inset-textC .textC p {
  color: #2d2e2f;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.33em;
  margin-bottom: 0rem;
  text-transform: uppercase;
  hyphens: auto;
}
@media (min-width: 992px) {
  .inset-text-row .inset-textC .textC p {
    font-size: 1.8rem;
  }
}
@media (min-width: 1400px) {
  .inset-text-row .inset-textC .textC p {
    font-size: 2.2rem;
  }
}
@media (min-width: 1500px) {
  .inset-text-row .inset-textC .textC p {
    font-size: 2.4rem;
  }
}

.highlighted-textC {
  height: 100%;
}
.highlighted-textC.bg-blue {
  background-color: #008bd2;
}
.highlighted-textC.bg-yellow {
  background-color: #f6c900;
}
.highlighted-textC.bg-purple {
  background-color: rgb(78, 54, 132);
}
.highlighted-textC.bg-green {
  background-color: rgb(0, 132, 88);
}
.highlighted-textC.bg-red {
  background-color: rgb(206, 16, 57);
}
.highlighted-textC.bg-grey {
  background-color: rgb(128, 128, 133);
}
.highlighted-textC.bg-darkblue {
  background-color: rgb(0, 80, 145);
}
.highlighted-textC.bg-turqoise {
  background-color: rgb(0, 146, 174);
}
.highlighted-textC.bg-aqua {
  background-color: rgb(137, 207, 188);
}
.highlighted-textC .highlighted-text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 3rem;
}
.highlighted-textC .highlighted-text p {
  color: white;
  font-size: 2.2rem;
  font-weight: 400;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .inset-text-row {
    width: calc(100% + 70px);
    margin-left: -70px;
    padding: 3rem 0 2rem;
  }
}
.inset-text-row .inset-textC {
  padding: 2.4rem;
}
@media (min-width: 768px) {
  .inset-text-row .inset-textC {
    padding: 1rem 20px 0 0;
  }
}
.inset-text-row .inset-textC .textC {
  padding: 3rem;
}
@media (min-width: 768px) {
  .inset-text-row .inset-textC .textC {
    padding: 3rem 0 3rem 3rem;
  }
}
.inset-text-row .inset-textC .textC p {
  color: #2d2e2f;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.33em;
  margin-bottom: 0rem;
  text-transform: uppercase;
  hyphens: auto;
}
@media (min-width: 992px) {
  .inset-text-row .inset-textC .textC p {
    font-size: 1.8rem;
  }
}
@media (min-width: 1400px) {
  .inset-text-row .inset-textC .textC p {
    font-size: 2.2rem;
  }
}
@media (min-width: 1500px) {
  .inset-text-row .inset-textC .textC p {
    font-size: 2.4rem;
  }
}

.spacer {
  height: 20px;
}
@media (min-width: 992px) {
  .spacer {
    height: 60px;
  }
}

.tx-agru-contact .row {
  margin-left: -5px;
  margin-right: -5px;
}
.tx-agru-contact .row .col-12, .tx-agru-contact .row .col-3, .tx-agru-contact .row .col-6, .tx-agru-contact .row .col-4, .tx-agru-contact .row .col-8 {
  padding-left: 5px;
  padding-right: 5px;
}

.einsatzgebietC {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .einsatzgebietC {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .einsatzgebietC {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .einsatzgebietC {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .einsatzgebietC {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}

.news .no-news-found {
  color: #2d2e2f;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.purad .header-slider-block .header-slider, .purad .header-slider-block .header-single {
  background-color: rgb(78, 54, 132);
}
.purad .half-block .text h2 {
  color: rgb(78, 54, 132);
}
.purad .news-block .news-content .picture-link-row .news-item.first-item {
  background-color: rgb(78, 54, 132);
}
.purad .news-block .news-content .picture-link-row .news-item .text-container {
  background-color: rgba(78, 54, 132, 0.8);
}
.purad .frame-type-text h2 {
  color: rgb(78, 54, 132);
}
.purad .frame-type-text .button {
  background-color: rgb(78, 54, 132);
  border-color: rgb(78, 54, 132);
}
.purad .frame-type-text .button:hover {
  color: rgb(78, 54, 132);
  background-color: transparent;
  border-color: rgb(78, 54, 132);
}
.purad .inset-text-row .inset-textC hr {
  background-color: rgb(78, 54, 132);
}
.purad .tx-agru-products .categories .category-breadcrumbs ul li {
  background-color: rgb(78, 54, 132);
}
.purad .tx-agru-products .categories .category-breadcrumbs ul li:before {
  background-color: rgb(78, 54, 132);
}
.purad .tx-agru-products .categories .category-breadcrumbs ul li:after {
  border-left-color: rgb(78, 54, 132);
}
.purad .tx-agru-products .categories h2, .purad .tx-agru-products .categories h3 {
  color: rgb(78, 54, 132);
}

.purad-sub h1.ce-headline-center {
  color: rgb(78, 54, 132);
}

.agruline .header-slider-block .header-slider, .agruline .header-slider-block .header-single {
  background-color: #f6c900;
}
.agruline .half-block .text h2 {
  color: #f6c900;
}
.agruline .news-block .news-content .picture-link-row .news-item.first-item {
  background-color: #f6c900;
}
.agruline .news-block .news-content .picture-link-row .news-item .text-container {
  background-color: rgba(246, 201, 0, 0.8);
}
.agruline .frame-type-text h2 {
  color: #f6c900;
}
.agruline .frame-type-text .button {
  background-color: #f6c900;
  border-color: #f6c900;
}
.agruline .frame-type-text .button:hover {
  color: #f6c900;
  background-color: transparent;
  border-color: #f6c900;
}
.agruline .inset-text-row .inset-textC hr {
  background-color: #f6c900;
}
.agruline .tx-agru-products .categories .category-breadcrumbs ul li {
  background-color: #f6c900;
}
.agruline .tx-agru-products .categories .category-breadcrumbs ul li:before {
  background-color: #f6c900;
}
.agruline .tx-agru-products .categories .category-breadcrumbs ul li:after {
  border-left-color: #f6c900;
}
.agruline .tx-agru-products .categories h2, .agruline .tx-agru-products .categories h3 {
  color: #f6c900;
}

.agruline-sub h1.ce-headline-center {
  color: #f6c900;
}

.agruchem .header-slider-block .header-slider, .agruchem .header-slider-block .header-single {
  background-color: rgb(0, 80, 145);
}
.agruchem .half-block .text h2 {
  color: rgb(0, 80, 145);
}
.agruchem .news-block .news-content .picture-link-row .news-item.first-item {
  background-color: rgb(0, 80, 145);
}
.agruchem .news-block .news-content .picture-link-row .news-item .text-container {
  background-color: rgba(0, 80, 145, 0.8);
}
.agruchem .frame-type-text h2 {
  color: rgb(0, 80, 145);
}
.agruchem .frame-type-text .button {
  background-color: rgb(0, 80, 145);
  border-color: rgb(0, 80, 145);
}
.agruchem .frame-type-text .button:hover {
  color: rgb(0, 80, 145);
  background-color: transparent;
  border-color: rgb(0, 80, 145);
}
.agruchem .inset-text-row .inset-textC hr {
  background-color: rgb(0, 80, 145);
}
.agruchem .tx-agru-products .categories .category-breadcrumbs ul li {
  background-color: rgb(0, 80, 145);
}
.agruchem .tx-agru-products .categories .category-breadcrumbs ul li:before {
  background-color: rgb(0, 80, 145);
}
.agruchem .tx-agru-products .categories .category-breadcrumbs ul li:after {
  border-left-color: rgb(0, 80, 145);
}
.agruchem .tx-agru-products .categories h2, .agruchem .tx-agru-products .categories h3 {
  color: rgb(0, 80, 145);
}

.agruchem-sub h1.ce-headline-center {
  color: rgb(0, 80, 145);
}

.halbzeuge .header-slider-block .header-slider, .halbzeuge .header-slider-block .header-single {
  background-color: rgb(0, 146, 174);
}
.halbzeuge .half-block .text h2 {
  color: rgb(0, 146, 174);
}
.halbzeuge .news-block .news-content .picture-link-row .news-item.first-item {
  background-color: rgb(0, 146, 174);
}
.halbzeuge .news-block .news-content .picture-link-row .news-item .text-container {
  background-color: rgba(0, 146, 174, 0.8);
}
.halbzeuge .frame-type-text h2 {
  color: rgb(0, 146, 174);
}
.halbzeuge .frame-type-text .button {
  background-color: rgb(0, 146, 174);
  border-color: rgb(0, 146, 174);
}
.halbzeuge .frame-type-text .button:hover {
  color: rgb(0, 146, 174);
  background-color: transparent;
  border-color: rgb(0, 146, 174);
}
.halbzeuge .inset-text-row .inset-textC hr {
  background-color: rgb(0, 146, 174);
}
.halbzeuge .tx-agru-products .categories .category-breadcrumbs ul li {
  background-color: rgb(0, 146, 174);
}
.halbzeuge .tx-agru-products .categories .category-breadcrumbs ul li:before {
  background-color: rgb(0, 146, 174);
}
.halbzeuge .tx-agru-products .categories .category-breadcrumbs ul li:after {
  border-left-color: rgb(0, 146, 174);
}
.halbzeuge .tx-agru-products .categories h2, .halbzeuge .tx-agru-products .categories h3 {
  color: rgb(0, 146, 174);
}

.halbzeuge-sub h1.ce-headline-center {
  color: rgb(0, 146, 174);
}

.betonschutz .header-slider-block .header-slider, .betonschutz .header-slider-block .header-single {
  background-color: rgb(206, 16, 57);
}
.betonschutz .half-block .text h2 {
  color: rgb(206, 16, 57);
}
.betonschutz .news-block .news-content .picture-link-row .news-item.first-item {
  background-color: rgb(206, 16, 57);
}
.betonschutz .news-block .news-content .picture-link-row .news-item .text-container {
  background-color: rgba(206, 16, 57, 0.8);
}
.betonschutz .frame-type-text h2 {
  color: rgb(206, 16, 57);
}
.betonschutz .frame-type-text .button {
  background-color: rgb(206, 16, 57);
  border-color: rgb(206, 16, 57);
}
.betonschutz .frame-type-text .button:hover {
  color: rgb(206, 16, 57);
  background-color: transparent;
  border-color: rgb(206, 16, 57);
}
.betonschutz .inset-text-row .inset-textC hr {
  background-color: rgb(206, 16, 57);
}
.betonschutz .tx-agru-products .categories .category-breadcrumbs ul li {
  background-color: rgb(206, 16, 57);
}
.betonschutz .tx-agru-products .categories .category-breadcrumbs ul li:before {
  background-color: rgb(206, 16, 57);
}
.betonschutz .tx-agru-products .categories .category-breadcrumbs ul li:after {
  border-left-color: rgb(206, 16, 57);
}
.betonschutz .tx-agru-products .categories h2, .betonschutz .tx-agru-products .categories h3 {
  color: rgb(206, 16, 57);
}

.betonschutz-sub h1.ce-headline-center {
  color: rgb(206, 16, 57);
}

.lining-systems .header-slider-block .header-slider, .lining-systems .header-slider-block .header-single {
  background-color: rgb(0, 132, 88);
}
.lining-systems .half-block .text h2 {
  color: rgb(0, 132, 88);
}
.lining-systems .news-block .news-content .picture-link-row .news-item.first-item {
  background-color: rgb(0, 132, 88);
}
.lining-systems .news-block .news-content .picture-link-row .news-item .text-container {
  background-color: rgba(0, 132, 88, 0.8);
}
.lining-systems .frame-type-text h2 {
  color: rgb(0, 132, 88);
}
.lining-systems .frame-type-text .button {
  background-color: rgb(0, 132, 88);
  border-color: rgb(0, 132, 88);
}
.lining-systems .frame-type-text .button:hover {
  color: rgb(0, 132, 88);
  background-color: transparent;
  border-color: rgb(0, 132, 88);
}
.lining-systems .inset-text-row .inset-textC hr {
  background-color: rgb(0, 132, 88);
}
.lining-systems .tx-agru-products .categories .category-breadcrumbs ul li {
  background-color: rgb(0, 132, 88);
}
.lining-systems .tx-agru-products .categories .category-breadcrumbs ul li:before {
  background-color: rgb(0, 132, 88);
}
.lining-systems .tx-agru-products .categories .category-breadcrumbs ul li:after {
  border-left-color: rgb(0, 132, 88);
}
.lining-systems .tx-agru-products .categories h2, .lining-systems .tx-agru-products .categories h3 {
  color: rgb(0, 132, 88);
}

.lining-systems-sub h1.ce-headline-center {
  color: rgb(0, 132, 88);
}

.schweisstechnik .header-slider-block .header-slider, .schweisstechnik .header-slider-block .header-single {
  background-color: rgb(128, 128, 133);
}
.schweisstechnik .half-block .text h2 {
  color: rgb(128, 128, 133);
}
.schweisstechnik .news-block .news-content .picture-link-row .news-item.first-item {
  background-color: rgb(128, 128, 133);
}
.schweisstechnik .news-block .news-content .picture-link-row .news-item .text-container {
  background-color: rgba(128, 128, 133, 0.8);
}
.schweisstechnik .frame-type-text h2 {
  color: rgb(128, 128, 133);
}
.schweisstechnik .frame-type-text .button {
  background-color: rgb(128, 128, 133);
  border-color: rgb(128, 128, 133);
}
.schweisstechnik .frame-type-text .button:hover {
  color: rgb(128, 128, 133);
  background-color: transparent;
  border-color: rgb(128, 128, 133);
}
.schweisstechnik .inset-text-row .inset-textC hr {
  background-color: rgb(128, 128, 133);
}
.schweisstechnik .tx-agru-products .categories .category-breadcrumbs ul li {
  background-color: rgb(128, 128, 133);
}
.schweisstechnik .tx-agru-products .categories .category-breadcrumbs ul li:before {
  background-color: rgb(128, 128, 133);
}
.schweisstechnik .tx-agru-products .categories .category-breadcrumbs ul li:after {
  border-left-color: rgb(128, 128, 133);
}
.schweisstechnik .tx-agru-products .categories h2, .schweisstechnik .tx-agru-products .categories h3 {
  color: rgb(128, 128, 133);
}

.schweisstechnik-sub h1.ce-headline-center {
  color: rgb(128, 128, 133);
}

.solutions .header-slider-block .header-slider, .solutions .header-slider-block .header-single {
  background-color: rgb(137, 207, 188);
}
.solutions .half-block .text h2 {
  color: rgb(137, 207, 188);
}
.solutions .news-block .news-content .picture-link-row .news-item.first-item {
  background-color: rgb(137, 207, 188);
}
.solutions .news-block .news-content .picture-link-row .news-item .text-container {
  background-color: rgba(137, 207, 188, 0.8);
}
.solutions .frame-type-text h2 {
  color: rgb(137, 207, 188);
}
.solutions .frame-type-text .button {
  background-color: rgb(137, 207, 188);
  border-color: rgb(137, 207, 188);
}
.solutions .frame-type-text .button:hover {
  color: rgb(137, 207, 188);
  background-color: transparent;
  border-color: rgb(137, 207, 188);
}
.solutions .inset-text-row .inset-textC hr {
  background-color: rgb(137, 207, 188);
}
.solutions .tx-agru-products .categories .category-breadcrumbs ul li {
  background-color: rgb(137, 207, 188);
}
.solutions .tx-agru-products .categories .category-breadcrumbs ul li:before {
  background-color: rgb(137, 207, 188);
}
.solutions .tx-agru-products .categories .category-breadcrumbs ul li:after {
  border-left-color: rgb(137, 207, 188);
}
.solutions .tx-agru-products .categories h2, .solutions .tx-agru-products .categories h3 {
  color: rgb(137, 207, 188);
}

.solutions-sub h1.ce-headline-center {
  color: rgb(137, 207, 188);
}

.frame-small-container {
  margin-top: 2rem;
}
@media (min-width: 1200px) {
  .frame-small-container {
    max-width: 80% !important;
  }
}

.container-thirds .col-12 {
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .container-thirds .col-12 {
    margin-bottom: 0;
  }
}

.frame-bg-blue, .frame-bg-grey {
  padding: 5rem 4rem !important;
  height: 100%;
}
.frame-bg-blue *, .frame-bg-grey * {
  padding: 0 !important;
  margin: 0;
}
.frame-bg-blue h2, .frame-bg-blue h3, .frame-bg-grey h2, .frame-bg-grey h3 {
  font-style: normal;
  font-weight: 700;
  line-height: 1.375em;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.frame-bg-blue h2, .frame-bg-grey h2 {
  font-size: 2rem;
}
.frame-bg-blue h3, .frame-bg-grey h3 {
  font-size: 1.8rem;
}
.frame-bg-blue p, .frame-bg-grey p {
  margin-bottom: 0;
}
.frame-bg-blue .one-col, .frame-bg-grey .one-col {
  max-width: 80%;
  margin: 0 auto;
}
.frame-bg-blue .one-col .ce-gallery *, .frame-bg-grey .one-col .ce-gallery * {
  width: 100%;
  height: auto;
}
.frame-bg-blue .one-col h3, .frame-bg-grey .one-col h3 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.6rem;
}

.frame-bg-blue {
  background-color: #008bd2;
}
.frame-bg-blue * {
  color: white !important;
}
.frame-bg-blue .button {
  color: white;
  background-color: transparent;
  border-color: white !important;
  padding: 0.6rem 4rem !important;
  margin-top: 3rem;
}

.frame-bg-grey {
  background-color: #efefef;
}
.frame-bg-grey * {
  color: #2d2e2f !important;
}

.frame-page-title-h1 h1 {
  color: #008bd2 !important;
  font-size: 4rem !important;
  font-weight: bold !important;
  letter-spacing: 0.06em !important;
  margin-bottom: 5rem !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

ul.tx-indexedsearch-browsebox {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0 0 3rem 0;
  padding: 0;
}

.white-text {
  color: white !important;
}

@media print {
  .cookieconsent-optout-marketing {
    display: none !important;
  }
}

@media print {
  #CookiebotWidget {
    display: none;
  }
  header nav.navbar {
    display: block !important;
  }
  header nav.navbar .navbar-right, header nav.navbar .navbar-toggler {
    display: none !important;
  }
  aside.sidebarC {
    display: none;
  }
  footer .bottom-footer .sitemap-button, footer .bottom-footer #back-to-top {
    display: none;
  }
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
#console {
  position: relative;
  border: 2px solid #008bd2;
  font-size: 1.6rem;
  padding: 2rem 2rem 2rem 6rem;
  margin-bottom: 2rem;
  background-image: url("../images/img/icon_info.svg");
  background-repeat: no-repeat;
  background-size: 26px;
  background-position: left 12px center;
}
@media (min-width: 768px) {
  #console {
    background-position: left 20px center;
  }
}
