@charset "UTF-8";
/*
Credit to Andy Bell's Modern CSS Reset
@link https://piccalil.li/blog/a-modern-css-reset/

🟣 = additions by Stephanie Eckles
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  font-family: system-ui, sans-serif;
  text-rendering: optimizeSpeed;
}

p,
ul:not([class]):not([role]) li,
ol:not([class]):not([role]) li {
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

/* Make images easier to work with */
img,
picture,
svg {
  display: block;
  max-width: 100%;
}

/* 🟣 Give SVGs common baseline */
svg {
  fill: currentColor;
  pointer-events: none;
}

/* 🟣 Scroll margin allowance above anchor links */
[id] {
  scroll-margin-top: 2rem;
}

/* 🟣 Scroll margin allowance below focused elements 
to ensure they are clearly in view */
*:focus {
  scroll-margin-bottom: 8vh;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
/* ubuntu-regular - latin */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../Fonts/ubuntu-v19-latin-regular.woff2") format("woff2"), url("../Fonts/ubuntu-v19-latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* ubuntu-500 - latin */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("../Fonts/ubuntu-v19-latin-500.woff2") format("woff2"), url("../Fonts/ubuntu-v19-latin-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* ubuntu-700 - latin */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../Fonts/ubuntu-v19-latin-700.woff2") format("woff2"), url("../Fonts/ubuntu-v19-latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* open-sans-regular - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../Fonts/open-sans-v28-latin-regular.woff2") format("woff2"), url("../Fonts/open-sans-v28-latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* open-sans-500 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("../Fonts/open-sans-v28-latin-500.woff2") format("woff2"), url("../Fonts/open-sans-v28-latin-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* open-sans-600 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("../Fonts/open-sans-v28-latin-600.woff2") format("woff2"), url("../Fonts/open-sans-v28-latin-600.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* open-sans-700 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../Fonts/open-sans-v28-latin-700.woff2") format("woff2"), url("../Fonts/open-sans-v28-latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
:root {
  --outline-size: max(2px, 0.08em);
  --outline-color: #f07c00;
  --outline-style: dotted;
  --outline-offset: 0.2em;
}

body {
  overflow-x: hidden;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
}

img {
  border-style: none;
}

h1 {
  color: #56524f;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 0.8em;
  line-height: 1.4;
}

h2 {
  color: #56524f;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 1.875rem;
  margin-bottom: 0.8em;
  line-height: 1.4;
}

h3 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  color: #f07c00;
  font-size: 1.25rem;
}

@media only screen and (max-width: 1000px) {
  h1 {
    font-size: 1.875rem;
  }
  h2 {
    font-size: 1.4375rem;
  }
  h3 {
    font-size: 1.125rem;
  }
}
h1 a,
h2 a,
h3 a {
  text-decoration: none;
  color: #56524f;
}

.bodytext h2 {
  margin-top: 1.8em;
}
.bodytext h3 {
  margin-top: 1.2em;
}

.product-samples h3 {
  color: #56524f;
  margin-bottom: 1.2em;
}

p {
  margin: 0 0 1em 0;
}
p:last-child {
  margin-bottom: 0;
}

img {
  transition: opacity 200ms;
}

a {
  color: #000000;
}
a:hover img {
  opacity: 0.8;
}

:is(a, button, input, textarea, summary) {
  --outline-size: max(2px, 0.08em);
  --outline-style: solid;
  --outline-color: currentColor;
}

:is(a, button, input, textarea, summary):focus-visible {
  outline: var(--outline-size) var(--outline-style) var(--outline-color);
  outline-offset: var(--outline-offset, var(--outline-size));
}

:is(a, button, input, textarea, summary):focus:not(:focus-visible) {
  outline: none;
}

img, object, embed, video {
  height: auto;
  max-width: 100%;
}

img:not([src]) {
  visibility: hidden;
}

img[data-src],
img[data-srcset] {
  display: block;
  min-height: 1px;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding-left: 40px;
  padding-right: 40px;
}
@media only screen and (max-width: 500px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.flex-row {
  display: flex;
}

.bodytext .highlight {
  color: #f07c00;
  font-weight: 500;
}
.bodytext .highlight a {
  color: #f07c00;
  font-weight: 500;
  text-decoration: none;
}

.header-content .highlight {
  font-size: 1.4375rem;
  color: #000000;
  margin-bottom: 1em;
}

.bg-grey {
  background: #EEEDED;
}

.more-link {
  position: relative;
  display: inline-block;
  color: #f07c00;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.more-link::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: "";
  background: #f07c00;
  height: 2px;
  width: 50%;
  transition: all 400ms;
}
.more-link:hover {
  opacity: 0.8;
}
.more-link:hover::after {
  width: 100%;
}
.more-link.center::after {
  left: 50%;
  transform: translateX(-50%);
}
.more-link.pdf {
  margin-top: 20px;
  background: url("../Images/icon_pdf.svg") no-repeat left center;
  padding-left: 50px;
  line-height: 40px;
}
.more-link.pdf::after {
  left: 50px;
  bottom: 1px;
  width: calc(50% - 25px);
}
.more-link.pdf:hover::after {
  width: calc(100% - 50px);
}

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

.link-centered {
  text-align: center;
  margin-top: 30px;
}

.lower-case {
  text-transform: none;
}

.registered-trademark {
  vertical-align: 5%;
}

.video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
@media (max-width: 979px) {
  .video {
    margin-bottom: 20px;
  }
}

.video iframe,
.video object,
.video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}
.clearfix:after {
  clear: both;
}

.hide-text {
  font-size: 0;
  line-height: 0;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.list-unstyled {
  padding: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
}

.invisible {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
.visually-hidden a:focus,
.visually-hidden input:focus,
.visually-hidden button:focus {
  position: static;
  width: auto;
  height: auto;
}

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

.right-float {
  float: right;
}

.vertical-align-sub {
  vertical-align: sub;
}

.vertical-align-top {
  vertical-align: top;
}

.vertical-align-middle {
  vertical-align: middle;
}

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

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

main [class*=ce-uid] {
  margin-top: 80px;
  margin-bottom: 80px;
}
main [class*=ce-uid].bg-grey, main [class*=ce-uid].ce-frame-bg-grey {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 80px;
  padding-bottom: 80px;
}

main .ce-space-before-none {
  margin-top: 0;
}
main .ce-space-before-extra-small {
  margin-top: 20px;
}
main .ce-space-before-small {
  margin-top: 40px;
}
main .ce-space-before-medium {
  margin-top: 80px;
}
main .ce-space-before-large {
  margin-top: 100px;
}
main .ce-space-before-extra-large {
  margin-top: 120px;
}
main .ce-space-after-none {
  margin-bottom: 0;
}
main .ce-space-after-extra-small {
  margin-bottom: 20px;
}
main .ce-space-after-small {
  margin-bottom: 40px;
}
main .ce-space-after-medium {
  margin-bottom: 80px;
}
main .ce-space-after-large {
  margin-bottom: 100px;
}
main .ce-space-after-extra-large {
  margin-bottom: 120px;
}
main .bg-grey.ce-space-before-extra-small,
main .ce-frame-bg-grey.ce-space-before-extra-small {
  padding-top: 20px;
}
main .bg-grey.ce-space-before-small,
main .ce-frame-bg-grey.ce-space-before-small {
  padding-top: 40px;
}
main .bg-grey.ce-space-before-medium,
main .ce-frame-bg-grey.ce-space-before-medium {
  padding-top: 80px;
}
main .bg-grey.ce-space-before-large,
main .ce-frame-bg-grey.ce-space-before-large {
  padding-top: 100px;
}
main .bg-grey.ce-space-before-extra-large,
main .ce-frame-bg-grey.ce-space-before-extra-large {
  padding-top: 120px;
}
main .bg-grey.ce-space-after-extra-small,
main .ce-frame-bg-grey.ce-space-after-extra-small {
  padding-bottom: 20px;
}
main .bg-grey.ce-space-after-small,
main .ce-frame-bg-grey.ce-space-after-small {
  padding-bottom: 40px;
}
main .bg-grey.ce-space-after-medium,
main .ce-frame-bg-grey.ce-space-after-medium {
  padding-bottom: 80px;
}
main .bg-grey.ce-space-after-large,
main .ce-frame-bg-grey.ce-space-after-large {
  padding-bottom: 100px;
}
main .bg-grey.ce-space-after-extra-large,
main .ce-frame-bg-grey.ce-space-after-extra-large {
  padding-bottom: 120px;
}

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 40%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 20px;
  background: url("../Images/arrow_right.svg") no-repeat #56524f center center;
  background-size: 32px;
  width: 50px;
  border: none;
  border-radius: 4px;
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  line-height: 1;
  overflow: hidden;
  text-indent: -9999px;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
  opacity: 1;
}
.glide__arrow--left {
  left: 2em;
  transform: scaleX(-1);
}
.glide__arrow--right {
  right: 2em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 0;
  right: 0;
  display: flex;
  list-style: none;
  justify-content: center;
}
.glide__bullet {
  background: none;
  width: 14px;
  height: 14px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid #f07c00;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  margin: 0 5px;
}
.glide__bullet::before {
  /*
  content: "12";
  @include font-size(10);
   */
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover {
  background-color: rgba(240, 124, 0, 0.6);
}
.glide__bullet--active {
  background-color: #f07c00;
}
.glide--swipeable {
  cursor: grab;
}
.glide--dragging {
  cursor: grabbing;
}

:root {
  --parvus-transition-duration: 300ms;
  --parvus-transition-timing-function: cubic-bezier(0.4, 0, 0.22, 1);
  --parvus-overlay-color: hsl(23, 40%, 96%);
  --parvus-overlay-text: #56524f;
  --parvus-button-color: #56524f;
  --parvus-button-text: #FFFFFF;
  --parvus-button-hover-color: #6a6664;
  --parvus-button-hover-text: #FFFFFF;
  --parvus-loader-background-color: hsl(23, 40%, 96%);
  --parvus-loader-color: #56524f;
}

/**
 * Parvus trigger
 *
 */
.parvus-zoom {
  display: block;
  position: relative;
}

.parvus-zoom__indicator {
  align-items: center;
  color: var(--parvus-button-text);
  display: flex;
  justify-content: center;
  line-height: 1;
  padding: 0.5rem;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}

.parvus-zoom__indicator svg {
  fill: none;
  height: 1.5rem;
  pointer-events: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  stroke: #FFFFFF;
  width: 1.5rem;
}

.parvus-zoom img {
  display: block;
}

/**
 * Parvus
 *
 */
.parvus {
  align-items: center;
  bottom: 0;
  box-sizing: border-box;
  contain: strict;
  display: flex;
  font: normal normal 400 1.125rem/1.7 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  justify-content: center;
  left: 0;
  line-height: 1.667;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1337;
}

.parvus *, .parvus *::before, .parvus *::after {
  box-sizing: border-box;
}

.parvus[aria-hidden=true] {
  display: none;
}

.parvus__overlay {
  background-color: var(--parvus-overlay-color);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.parvus__slider {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.parvus__slider[aria-hidden=true] {
  display: none;
}

@media screen and (prefers-reduced-motion: no-preference) {
  .parvus__slider--animate:not(.parvus__slider--is-dragging) {
    transition: transform var(--parvus-transition-duration) var(--parvus-transition-timing-function);
  }
}
.parvus__slider--is-draggable {
  cursor: grab;
}

.parvus__slider--is-dragging {
  cursor: grabbing;
}

.parvus__slide {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 3.75rem;
  width: 100%;
}

@media screen and (prefers-reduced-motion: no-preference) {
  .parvus__slide {
    transition: visibility var(--parvus-transition-duration) var(--parvus-transition-timing-function);
  }
}
.parvus__slide:not(.parvus__slide--is-active) {
  visibility: hidden;
}

.parvus__slide .parvus__caption {
  color: var(--parvus-overlay-text);
  padding-top: 0.5rem;
  text-align: left;
  will-change: transform, opacity;
}

@media screen and (prefers-reduced-motion: no-preference) {
  .parvus__slide .parvus__caption {
    transition: transform var(--parvus-transition-duration) var(--parvus-transition-timing-function), opacity var(--parvus-transition-duration) var(--parvus-transition-timing-function);
  }
}
.parvus__slide img {
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  transform-origin: left top;
  width: auto;
}

.parvus__loader {
  display: inline-block;
  height: 6.25rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6.25rem;
}

.parvus__loader::before {
  animation: spin 1s infinite;
  border-radius: 100%;
  border: 0.25rem solid var(--parvus-loader-background-color);
  border-top-color: var(--parvus-loader-color);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.parvus__toolbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 1rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.parvus__btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--parvus-button-color);
  background-image: none;
  border-radius: 0;
  border: 0.0625rem solid transparent;
  color: var(--parvus-button-text);
  cursor: pointer;
  display: flex;
  font: inherit;
  padding: 0.3125rem;
  position: relative;
  touch-action: manipulation;
  will-change: transform, opacity;
  z-index: 7;
}

@media screen and (prefers-reduced-motion: no-preference) {
  .parvus__btn {
    transition: transform var(--parvus-transition-duration) var(--parvus-transition-timing-function), opacity var(--parvus-transition-duration) var(--parvus-transition-timing-function);
  }
}
.parvus__btn:hover {
  background-color: var(--parvus-button-hover-color);
  color: var(--parvus-button-hover-text);
}

.parvus__btn--previous {
  left: 1rem;
  position: absolute;
  top: calc(50% + 1.375rem);
  transform: translateY(-50%);
}

.parvus__btn--next {
  position: absolute;
  right: 1rem;
  top: calc(50% + 1.375rem);
  transform: translateY(-50%);
}

.parvus__btn svg {
  fill: none;
  height: 2rem;
  pointer-events: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1;
  stroke: currentColor;
  width: 2rem;
}

.parvus__btn[disabled] {
  display: none;
}

.parvus__counter {
  position: relative;
  z-index: 7;
}

@media screen and (prefers-reduced-motion: no-preference) {
  .parvus__counter {
    transition: transform var(--parvus-transition-duration) var(--parvus-transition-timing-function), opacity var(--parvus-transition-duration) var(--parvus-transition-timing-function);
  }
}
.parvus__counter[aria-hidden=true] {
  display: none;
}

@media screen and (prefers-reduced-motion: no-preference) {
  .parvus--is-opening .parvus__counter, .parvus--is-opening .parvus__btn--close, .parvus--is-opening .parvus__btn--previous, .parvus--is-opening .parvus__btn--next, .parvus--is-opening .parvus__caption, .parvus--is-closing .parvus__counter, .parvus--is-closing .parvus__btn--close, .parvus--is-closing .parvus__btn--previous, .parvus--is-closing .parvus__btn--next, .parvus--is-closing .parvus__caption {
    opacity: 0;
  }
  .parvus--is-vertical-closing .parvus__counter, .parvus--is-vertical-closing .parvus__btn--close {
    transform: translateY(-100%);
    opacity: 0;
  }
  .parvus--is-vertical-closing .parvus__btn--previous {
    transform: translate(-100%, -50%);
    opacity: 0;
  }
  .parvus--is-vertical-closing .parvus__btn--next {
    transform: translate(100%, -50%);
    opacity: 0;
  }
  .parvus--is-vertical-closing .parvus__caption {
    transform: translateY(100%);
    opacity: 0;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/*** PV Cookie Consent ***/
/* colors */
.pv-cookie-consent {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-content: center;
  justify-content: center;
  color: #444444;
}
.pv-cookie-consent h3 {
  margin: 0 0 25px 0;
  font-size: 18px;
}
@media only screen and (min-width: 500px) {
  .pv-cookie-consent h3 {
    font-size: 24px;
  }
}
.pv-cookie-consent p {
  color: #666666;
}

.pv-cookie-consent-inner {
  position: relative;
  width: 90%;
  max-height: 80vh;
  margin: auto 0;
  max-width: 650px;
  background: white;
  padding: 40px 20px 10px 20px;
  overflow-y: auto;
}
@media only screen and (min-width: 500px) {
  .pv-cookie-consent-inner {
    padding: 40px 40px 10px 40px;
  }
}

.pv-cookie-settings {
  margin: 30px 0;
}

.pv-cookie-settings-options label {
  display: block;
  position: relative;
  margin: 15px 0;
  padding-left: 30px;
  cursor: pointer;
}
.pv-cookie-settings-options label span {
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #666666;
  width: 20px;
  height: 20px;
}
.pv-cookie-settings-options label input {
  visibility: hidden;
}
.pv-cookie-settings-options label input:checked + span::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  right: 3px;
  bottom: 3px;
  background-color: #999999;
}
.pv-cookie-settings-options label:first-child {
  cursor: default;
}
.pv-cookie-settings-options label input[disabled] + span {
  opacity: 0.6;
}
@media only screen and (min-width: 650px) {
  .pv-cookie-settings-options {
    display: flex;
  }
  .pv-cookie-settings-options label {
    margin: 0;
  }
  .pv-cookie-settings-options label:not(:first-child) {
    margin-left: 30px;
  }
}

.pv-cookie-settings-btn-group {
  margin-top: 30px;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.pv-cookie-settings-btn-group button {
  border: none;
  color: #FFFFFF;
  background: #808080;
  margin-bottom: 15px;
  padding: 10px 30px;
  border-radius: 4px;
  width: 230px;
  transition: background-color 400ms ease-in-out;
}
.pv-cookie-settings-btn-group button:hover {
  background: #676767;
}
.pv-cookie-settings-btn-group button.pv-cookie-consent-allow-all {
  background: #56524f;
}
.pv-cookie-settings-btn-group button.pv-cookie-consent-allow-all:hover {
  background: #3b3937;
}
@media only screen and (min-width: 650px) {
  .pv-cookie-settings-btn-group {
    flex-flow: row;
    justify-content: space-between;
  }
  .pv-cookie-settings-btn-group button {
    margin-bottom: 0;
  }
}

.pv-cookie-consent-details {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #999999;
}

.pv-cookie-consent-show-group-info {
  background: none;
  border: none;
}
.pv-cookie-consent-show-group-info.active span {
  display: inline-block;
  transform: rotate(90deg);
}

.pv-cookie-consent-legal-links {
  padding: 30px 0 30px 0;
  text-align: center;
}
.pv-cookie-consent-legal-links a {
  color: #444444;
}

.pv-cookie-consent-group-info-wrap {
  margin-top: 30px;
  display: none;
}
.pv-cookie-consent-group-info-wrap.pvcc-show-group-info {
  display: block;
}

.pv-cookie-consent-group-info {
  border: 1px solid grey;
  padding: 15px 20px;
  margin-top: 15px;
}

.pv-cookie-consent-group-info-title {
  font-weight: 700;
}

.pv-cookie-consent-group-info-details {
  max-height: 0;
  transition: max-height 400ms;
  overflow: hidden;
}
.pv-cookie-consent-group-info-details ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pv-cookie-consent-group-info-details > ul > li {
  border-top: 1px solid grey;
  margin-top: 15px;
  padding-top: 15px;
}
.pv-cookie-consent-group-info-details a {
  color: #444444;
}
.pv-cookie-consent-group-info-details.pvcc-show-cookie-details {
  max-height: 1000px;
}

.pv-cookie-consent-group-info-details-item {
  margin-top: 5px;
}
@media only screen and (min-width: 500px) {
  .pv-cookie-consent-group-info-details-item {
    display: flex;
  }
}

.pv-cookie-consent-cookie-detail-label {
  font-weight: 700;
}
@media only screen and (min-width: 500px) {
  .pv-cookie-consent-cookie-detail-label {
    width: 120px;
    flex-shrink: 0;
    font-weight: 400;
  }
}

.pv-cookie-consent-group-info-show-cookie-details {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  color: #444444;
}
.pv-cookie-consent-group-info-show-cookie-details.active span {
  display: inline-block;
  transform: rotate(90deg);
}

.page {
  overflow-x: hidden;
}

.page-header {
  position: relative;
  background: #FFFFFF;
  z-index: 12;
}
.page-header-top {
  padding: 15px 0;
  border-bottom: 1px solid #d7d7d7;
}
.page-header-top .container {
  display: flex;
  justify-content: right;
}
@media only screen and (max-width: 1000px) {
  .page-header-top {
    display: none;
  }
}
.page-header-bottom {
  padding-top: 25px;
}
.page-header-bottom .container {
  display: flex;
  justify-content: space-between;
}
.page-header .logo {
  display: flex;
  padding-bottom: 24px;
}
.page-header .logo img {
  width: 170px;
}
.page-header .header-contact {
  display: flex;
  margin-right: 100px;
}
.page-header .header-contact a {
  color: #f07c00;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  padding-left: 25px;
}
.page-header .header-contact a:first-child {
  margin-right: 20px;
}
.page-header .header-contact a:hover {
  text-decoration: underline;
}
.page-header .header-contact .email {
  background: url("../Images/envelope-solid_orange.svg") no-repeat left center;
  background-size: 18px;
}
.page-header .header-contact .phone {
  background: url("../Images/phone-solid_orange.svg") no-repeat left center;
  background-size: 18px;
}
.page-header .mobile-main-header {
  position: relative;
}
.page-header .mobile-toolbar {
  display: none;
  flex: 1;
  justify-content: right;
  margin-right: 60px;
  margin-top: 6px;
}
.page-header .mobile-toolbar .header-contact {
  margin-right: 20px;
}
.page-header .mobile-toolbar .header-contact a {
  padding-left: 0;
}
.page-header .mobile-toolbar .language-menu {
  position: relative;
  margin-left: 0;
}
.page-header .mobile-toolbar .language-menu button {
  background: none;
  border: none;
  cursor: pointer;
}
.page-header .mobile-toolbar .language-menu button svg {
  width: 26px;
}
.page-header .mobile-toolbar .language-menu ul {
  display: none;
  position: absolute;
  left: -9px;
  top: 30px;
}
.page-header .mobile-toolbar .language-menu ul li {
  width: 20px;
}
.page-header .mobile-toolbar .language-menu ul img {
  width: 20px;
}
.page-header .mobile-toolbar .language-menu ul.open {
  display: flex;
}
@media only screen and (max-width: 1000px) {
  .page-header .mobile-toolbar {
    display: flex;
  }
}
@media only screen and (max-width: 500px) {
  .page-header .logo img {
    width: 120px;
  }
  .page-header .mobile-toolbar {
    margin-right: 50px;
    margin-top: 0;
  }
}

main {
  position: relative;
}
.page-footer a:hover {
  color: #f07c00;
}
.page-footer h3 {
  color: #f07c00;
  margin-bottom: 10px;
}
.page-footer-top {
  background: #56524f;
  padding: 30px 0 40px 0;
  color: #FFFFFF;
}
.page-footer-top .container {
  display: flex;
}
.page-footer-top .footer-col {
  padding-right: 90px;
  line-height: 1.6;
}
.page-footer-top .footer-col:last-child {
  padding-right: 0;
}
.page-footer-top .footer-col a {
  color: #FFFFFF;
  text-decoration: none;
}
.page-footer-top .footer-col a:hover {
  color: #f07c00;
}
.page-footer-top .social-media ul {
  display: flex;
}
.page-footer-top .social-media li:first-child {
  margin-right: 15px;
}
.page-footer-top .social-media li:last-child {
  margin-left: 15px;
}
.page-footer-top .social-media img {
  width: 42px;
}
.page-footer-top .social-media a:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 1100px) {
  .page-footer-top {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 1000px) {
  .page-footer-top {
    font-size: 0.875rem;
  }
  .page-footer-top .container {
    flex-flow: row wrap;
  }
  .page-footer-top .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 700px) {
  .page-footer-top .footer-col {
    width: 100%;
  }
}
.page-footer-bottom {
  font-size: 0.875rem;
  padding: 15px 0;
}
.page-footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 800px) {
  .page-footer-bottom .container {
    flex-flow: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 800px) {
  .page-footer .copyright {
    order: 2;
    margin-top: 10px;
  }
}

.grid-2 {
  display: flex;
  flex-flow: row wrap;
  margin: -15px;
  overflow: hidden;
}
.grid-2 > * {
  padding: 15px;
  width: 50%;
}
@media only screen and (max-width: 700px) {
  .grid-2 > * {
    width: 100%;
  }
}

.grid-3 {
  display: flex;
  flex-flow: row wrap;
  margin: -15px;
  overflow: hidden;
}
.grid-3 > * {
  padding: 15px;
  width: 33.3333333333%;
}
@media only screen and (max-width: 700px) {
  .grid-3 > * {
    width: 100%;
  }
}
.grid-3.center {
  justify-content: center;
}

.grid-4 {
  display: flex;
  flex-flow: row wrap;
  margin: -15px;
  overflow: hidden;
}
.grid-4 > * {
  padding: 15px;
  width: 25%;
}
@media only screen and (max-width: 1000px) {
  .grid-4 > * {
    width: 50%;
  }
}
@media only screen and (max-width: 600px) {
  .grid-4 > * {
    width: 100%;
  }
}

.grid-5 {
  display: flex;
  flex-flow: row wrap;
  margin: -15px;
  overflow: hidden;
}
.grid-5 > * {
  padding: 15px;
  width: 20%;
}
@media only screen and (max-width: 1000px) {
  .grid-5 > * {
    width: 50%;
  }
}
@media only screen and (max-width: 600px) {
  .grid-5 > * {
    width: 100%;
  }
}

.language-menu {
  margin-left: 20px;
}
.language-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.language-menu li:first-child {
  margin-right: 10px;
}
.language-menu li a {
  text-decoration: none;
  color: #6a6664;
  font-size: 0.875rem;
}
.language-menu li img {
  width: 20px;
}

.nav-top ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.nav-top li {
  padding-left: 20px;
}
.nav-top li:first-child {
  padding-left: 0;
}
.nav-top li a {
  text-decoration: none;
  color: #6a6664;
  font-size: 0.875rem;
  font-weight: 500;
}
.nav-top li a:hover, .nav-top li a.active {
  color: #f07c00;
}

.nav-main ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-main a {
  text-decoration: none;
}
@media only screen and (max-width: 1000px) {
  .nav-main a {
    display: block;
    font-size: 0.875rem;
  }
  .nav-main > ul {
    position: absolute;
    top: 89px;
    right: 0;
    z-index: 9;
    width: 320px;
    background: rgba(215, 215, 215, 0.9);
    transform: translateX(100%);
    transition: all 500ms;
  }
  .nav-main > ul > li {
    border-top: 1px solid #FFFFFF;
    position: relative;
  }
  .nav-main > ul > li .open-sub {
    position: absolute;
    right: 37px;
    top: 0;
    background-size: 24px;
    width: 40px;
    height: 40px;
    transition: all 200ms;
    cursor: pointer;
    overflow: hidden;
    border: none;
    padding: 0;
  }
  .nav-main > ul > li .open-sub::after {
    content: "";
    display: block;
    position: absolute;
    height: 0;
    width: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #56524f;
    left: 54%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .nav-main > ul > li.open > a {
    background: rgba(0, 0, 0, 0.6);
  }
  .nav-main > ul > li.open .open-sub {
    transform: rotate(90deg);
  }
  .nav-main > ul > li ul {
    padding: 5px 0 20px 0;
  }
  .nav-main > ul > li ul li a {
    padding: 10px 20px;
  }
  .nav-main > ul > li > a {
    display: block;
    padding: 10px 20px;
    white-space: nowrap;
    font-weight: 700;
  }
  .nav-main > ul > li > a:hover, .nav-main > ul > li > a.active {
    background: rgba(0, 0, 0, 0.6);
  }
  .nav-main > ul > li:first-child {
    border: none;
  }
  .nav-main > ul > li ul ul {
    display: none;
  }
  .nav-main > ul > li .nav-sub-layer {
    overflow: hidden;
    display: grid;
    grid-template-rows: 0fr;
    transition: all 1s;
    min-height: 0;
  }
  .nav-main > ul > li .nav-sub-layer > ul {
    min-height: 0;
    visibility: hidden;
    padding: 0;
    transition: all 1s;
  }
  .nav-main > ul > li.open .nav-sub-layer {
    grid-template-rows: 1fr;
  }
  .nav-main > ul > li.open .nav-sub-layer > ul {
    visibility: visible;
    padding: 5px 0 20px 0;
  }
  .nav-main.active > ul {
    transform: translateX(0);
  }
  .nav-main a {
    color: #f07c00;
  }
}
@media only screen and (max-width: 500px) {
  .nav-main > ul {
    top: 78px;
  }
  .nav-main > ul > li .open-sub {
    right: 20px;
  }
}
@media only screen and (min-width: 1000px) {
  .nav-main {
    display: flex;
  }
  .nav-main .mobile-only {
    display: none;
  }
  .nav-main ul {
    display: flex;
  }
  .nav-main ul .nav-sub-layer {
    display: none;
  }
  .nav-main ul .nav-sub-layer.show {
    display: block;
  }
  .nav-main a {
    text-decoration: none;
    font-weight: 500;
    color: #6a6664;
  }
  .nav-main li {
    position: relative;
  }
  .nav-main li .open-sub {
    display: none;
  }
  .nav-main li:hover .nav-sub-layer {
    display: block;
  }
  .nav-main > ul {
    display: flex;
  }
  .nav-main > ul > li {
    display: flex;
  }
  .nav-main > ul > li:not(:first-child) {
    margin-left: 30px;
  }
  .nav-main > ul > li > a {
    display: flex;
    align-items: flex-end;
    padding-bottom: 20px;
  }
  .nav-main > ul > li > a:hover, .nav-main > ul > li > a.active {
    color: #f07c00;
  }
  .nav-main > ul > li:hover > a {
    color: #f07c00;
  }
  .nav-main > ul > li .nav-sub-layer {
    display: none;
    position: absolute;
    top: 64px;
    left: -40px;
    background: #d7d7d7;
    padding: 20px 40px;
  }
  .nav-main > ul > li .nav-sub-layer::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 10px;
    background: linear-gradient(0deg, #d7d7d7 0%, rgba(0, 0, 0, 0.3) 80%);
  }
  .nav-main > ul > li ul {
    display: block;
  }
  .nav-main > ul > li ul li:not(:first-child) {
    margin-top: 10px;
  }
  .nav-main > ul > li ul li a {
    display: block;
    padding: 8px 0 0;
    white-space: nowrap;
    color: #f07c00;
  }
  .nav-main > ul > li ul li a span {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
  }
  .nav-main > ul > li ul li a span::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    background: #f07c00;
    height: 2px;
    width: 50%;
  }
}
@media only screen and (min-width: 1000px) and (max-width: 1650px) {
  .nav-main > ul > li.product-menu ul ul {
    display: none;
  }
}
@media only screen and (min-width: 1000px) and (min-width: 1650px) {
  .nav-main > ul > li.product-menu {
    position: initial;
  }
  .nav-main > ul > li.product-menu .nav-sub-layer {
    top: 89px;
    left: 0;
    right: 0;
    padding-bottom: 40px;
    justify-content: center;
  }
  .nav-main > ul > li.product-menu .nav-sub-layer ul {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
  }
  .nav-main > ul > li.product-menu .nav-sub-layer ul li {
    margin-top: 0;
  }
  .nav-main > ul > li.product-menu ul ul {
    flex-flow: column;
    padding-left: 0 !important;
    padding-top: 10px !important;
  }
  .nav-main > ul > li.product-menu ul ul a {
    color: #56524f;
    font-size: 0.9375rem;
  }
  .nav-main > ul > li.product-menu ul ul a:hover, .nav-main > ul > li.product-menu ul ul a.active {
    color: #f07c00;
  }
}

.nav-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.nav-footer li {
  padding-left: 30px;
}
.nav-footer li:first-child {
  padding-left: 0;
}
.nav-footer li a {
  text-decoration: none;
  color: #6a6664;
  font-weight: 500;
}

.breadcrumb ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  font-size: 0.875rem;
}
.breadcrumb li {
  padding-left: 10px;
}
.breadcrumb li:first-child {
  padding-left: 0;
}
.breadcrumb li a {
  text-decoration: none;
}
.breadcrumb li:not(:last-child) a::after {
  content: ">";
  padding-left: 10px;
}
.breadcrumb li:not(:last-child) a:hover {
  color: #f07c00;
}
@media only screen and (max-width: 760px) {
  .breadcrumb {
    display: none;
  }
}

.menu-products ul {
  margin: 0;
  padding: 0;
  list-style: none;
  -moz-column-count: 3;
       column-count: 3;
  margin-left: 80px;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
.menu-products a {
  text-decoration: none;
}
.menu-products a.active, .menu-products a:hover {
  color: #f07c00;
}
.menu-products a::after {
  content: ">";
  padding-left: 10px;
}
.menu-products .product-category {
  position: relative;
  display: inline-block;
  color: #f07c00;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-top: 1px;
}
.menu-products .product-category::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: "";
  background: #f07c00;
  height: 2px;
  width: 50%;
}
@media only screen and (max-width: 1100px) {
  .menu-products ul {
    -moz-column-count: 3;
         column-count: 3;
    margin-left: 30px;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media only screen and (max-width: 800px) {
  .menu-products ul {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media only screen and (max-width: 600px) {
  .menu-products {
    display: none;
  }
}

.menu-product-group {
  padding: 25px 30px;
  background: #EEEDED;
  display: flex;
  align-items: flex-start;
}

.green-building-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.green-building-menu a {
  text-decoration: none;
}
.green-building-menu a.active, .green-building-menu a:hover {
  color: #f07c00;
}
.green-building-menu .green-building-menu-list {
  display: flex;
  flex-flow: row wrap;
}
.green-building-menu .green-building-menu-list > li > a {
  position: relative;
  display: inline-block;
  color: #f07c00;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-top: 1px;
}
.green-building-menu .green-building-menu-list > li > a::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: "";
  background: #f07c00;
  height: 2px;
  width: 50%;
}
.green-building-menu .green-building-menu-list > li {
  width: 25%;
}
@media only screen and (max-width: 1100px) {
  .green-building-menu .green-building-menu-list > li {
    width: 50%;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 600px) {
  .green-building-menu .green-building-menu-list > li {
    width: 100%;
  }
}

.burger-icon {
  position: absolute;
  top: 13px;
  right: 40px;
  cursor: pointer;
  z-index: 99;
  background: none;
  border: none;
  padding: 10px 0;
}
.burger-icon span.icon {
  display: block;
  position: relative;
  height: 0;
  background-color: #56524f;
  width: 34px;
  margin-top: 14px;
  transition-delay: 0.4s, 0.5s;
}
.burger-icon span.icon::before, .burger-icon span.icon::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #56524f;
  content: "";
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}
.burger-icon span.icon::before {
  top: -7px;
  transition-property: top, transform;
}
.burger-icon span.icon::after {
  bottom: -7px;
  transition-property: bottom, transform;
}
.burger-icon span.text {
  display: block;
  text-transform: uppercase;
  color: #56524f;
  font-size: 0.6875rem;
  line-height: 1;
  padding: 14px 0 0 0;
  font-weight: 600;
}
@media only screen and (min-width: 1000px) {
  .burger-icon {
    display: none;
  }
}
@media only screen and (max-width: 500px) {
  .burger-icon {
    top: 8px;
    right: 20px;
  }
}

.nav-main.active .burger-icon span.icon {
  background: none !important;
  transition-delay: 0ms;
}
.nav-main.active .burger-icon span.icon::before {
  top: -3px;
  transform: rotate(45deg);
  transition-delay: 0s, 0.3s;
}
.nav-main.active .burger-icon span.icon::after {
  bottom: -1px;
  transform: rotate(-45deg);
  transition-delay: 0s, 0.3s;
}

.info-box {
  position: absolute;
  z-index: 9;
  right: 0;
  top: 210px;
  width: 240px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}
.info-box-header {
  font-family: "Ubuntu", sans-serif;
  color: #56524f;
  font-weight: 500;
  font-size: 1.125rem;
}
.info-box-call-us {
  margin-top: 10px;
  font-family: "Ubuntu", sans-serif;
  color: #56524f;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 1.125rem;
}
.info-box p {
  margin: 5px 0 0 0;
}
.info-box a {
  display: inline-block;
  text-decoration: none;
}
.info-box-body {
  line-height: 1.5;
}
.info-box-phone {
  font-size: 1.125rem;
  padding-left: 25px;
  background: url("../Images/phone-solid_orange.svg") no-repeat left center;
  background-size: 18px;
  color: #f07c00;
  font-weight: 700;
}
.info-box-phone:hover {
  opacity: 0.7;
}
.info-box-email {
  padding-left: 25px;
  background: url("../Images/envelope-solid_grau.svg") no-repeat left center;
  background-size: 16px;
}
.info-box-email:hover {
  color: #f07c00;
}
.info-box-contact-form {
  padding-left: 25px;
  background: url("../Images/sticky-note-solid_grau.svg") no-repeat left center;
  background-size: 16px;
}
.info-box-contact-form:hover {
  color: #f07c00;
}
@media only screen and (max-width: 1280px) {
  .info-box {
    top: 80px;
  }
}
@media only screen and (max-width: 900px) {
  .info-box {
    display: none;
  }
}

.card {
  display: flex;
  flex-flow: column;
}
.card figure {
  position: relative;
}
.card img {
  display: block;
}
.card figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  background: linear-gradient(90deg, white 20%, rgba(255, 255, 255, 0) 100%);
  padding-top: 10px;
}
.card figcaption h3 {
  line-height: 0.8;
  text-transform: uppercase;
}
.card .card-body {
  flex: 1;
  display: flex;
  flex-flow: column;
}
.card h4 {
  font-weight: 400;
  color: #56524f;
  text-transform: uppercase;
  margin: 10px 0 15px 0;
  min-height: 43.2px;
  letter-spacing: 0.03em;
}
.card p {
  flex: 1;
  font-size: 0.875rem;
}

.cta {
  min-height: 300px;
  background: url("../Images/call-to-action_hintergrund.jpg") no-repeat;
  background-size: cover;
  padding: 50px 0;
}
.cta h3 {
  margin-bottom: 20px;
  font-size: 1.875rem;
  line-height: 1.4;
}
.cta p {
  color: #FFFFFF;
  line-height: 1.7;
}
.cta .contact-info a {
  display: block;
  color: #f07c00;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  padding-left: 25px;
}
.cta .contact-info a:first-child {
  margin-right: 20px;
}
.cta .contact-info a:hover {
  text-decoration: underline;
}
.cta .contact-info .email {
  background: url("../Images/envelope-solid_orange.svg") no-repeat left center;
  background-size: 18px;
}
.cta .contact-info .phone {
  background: url("../Images/phone-solid_orange.svg") no-repeat left center;
  background-size: 18px;
  margin-bottom: 10px;
}
.cta .contact-form-info {
  margin-top: 30px;
  padding-left: 80px;
  background: url("../Images/icon_kontakt-formular.svg") no-repeat left 5px;
  background-size: 70px;
}
@media only screen and (min-width: 760px) {
  .cta .row {
    display: flex;
    justify-content: space-between;
  }
  .cta .contact-form-info {
    max-width: 40%;
    margin-top: 80px;
  }
}

.quick-info,
.ce-quick_info {
  position: relative;
}
.quick-info.bg-grey,
.ce-quick_info.bg-grey {
  padding: 0 !important;
}
.quick-info .row,
.ce-quick_info .row {
  display: flex;
  justify-content: right;
}
.quick-info .quick-info-image,
.quick-info .quick-info-facts,
.quick-info .quick-info-links,
.ce-quick_info .quick-info-image,
.ce-quick_info .quick-info-facts,
.ce-quick_info .quick-info-links {
  width: 33.3333333333%;
}
.quick-info h2,
.ce-quick_info h2 {
  text-transform: none;
  margin-bottom: 20px;
  color: #56524f;
}

.quick-info-image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
  width: 100%;
  height: 100%;
}

.quick-info-facts {
  padding: 30px 0 25px 20px;
}
.quick-info-facts ul {
  padding-left: 1em;
}
.quick-info-facts li::marker {
  color: #f07c00;
  content: "• ";
}
.quick-info-facts li:not(:first-child) {
  margin-top: 3px;
}

.quick-info-links {
  padding: 30px 0 20px 30px;
}
.quick-info-links ul {
  background: #FFFFFF;
  border-bottom: 2px solid #f07c00;
  padding: 15px;
}
.quick-info-links a {
  text-decoration: none;
}
.quick-info-links li {
  background: url("../Images/icon_pdf.svg") no-repeat left center;
  padding: 4px 0 4px 40px;
  white-space: nowrap;
}
.quick-info-links li:not(:first-child) {
  margin-top: 5px;
}
.quick-info-links li.icon-video {
  background-image: url("../Images/icon_online-video.svg");
}
.quick-info-links li.icon-video.disabled {
  background-image: url("../Images/icon_online-video-disabled.svg");
}
.quick-info-links li.icon-video.disabled a {
  color: #999999;
  pointer-events: none;
}
.quick-info-links li.icon-eye {
  background-image: url("../Images/icon_anwendungsbeispiel.svg");
}
.quick-info-links li.icon-contact-form {
  background-image: url("../Images/icon_kontakt-formular.svg");
}
.quick-info-links li.icon-green-building {
  background-image: url("../Images/icon_greenbuilding.svg");
  background-size: 24px;
}
.quick-info-links li.icon-phone {
  background-image: url("../Images/icon_telephone.svg");
  background-size: 24px;
}
.quick-info-links li.icon-email {
  background-image: url("../Images/icon_mail.svg");
  background-size: 24px;
}
.quick-info-links li a:hover {
  opacity: 0.6;
}

@media only screen and (min-width: 1200px) {
  .quick-info .quick-info-image,
  .ce-quick_info .quick-info-image {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: calc(((100% - 1200px) / 2) + 1200px / 3);
  }
}
@media only screen and (max-width: 1200px) {
  .quick-info-image img {
    max-width: none;
    width: calc(100% + 40px);
    margin-left: -40px;
  }
}
@media only screen and (max-width: 1100px) {
  .quick-info .row,
  .ce-quick_info .row {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
  }
  .quick-info .quick-info-image,
  .ce-quick_info .quick-info-image {
    width: 100%;
    height: 350px;
  }
  .quick-info .quick-info-image img,
  .ce-quick_info .quick-info-image img {
    width: calc(100% + 80px);
    margin-right: -40px;
    margin-left: -40px;
  }
  .quick-info .quick-info-facts,
  .ce-quick_info .quick-info-facts {
    padding-left: 0;
  }
  .quick-info .quick-info-facts,
  .quick-info .quick-info-links,
  .ce-quick_info .quick-info-facts,
  .ce-quick_info .quick-info-links {
    width: 50%;
  }
}
@media only screen and (max-width: 1100px) and (max-width: 1100px) {
  .quick-info-image {
    width: 100%;
    height: 350px;
  }
  .quick-info-image img {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media only screen and (max-width: 1100px) and (max-width: 760px) {
  .quick-info .quick-info-facts,
  .quick-info .quick-info-links,
  .ce-quick_info .quick-info-facts,
  .ce-quick_info .quick-info-links {
    width: 100%;
  }
  .quick-info .quick-info-links,
  .ce-quick_info .quick-info-links {
    padding: 0 0 30px 0;
  }
}
.product-data {
  padding: 25px 0;
}
.product-data .container {
  overflow-x: auto;
}

.product-data-table {
  width: 100%;
  min-width: 560px;
}
.product-data-table ul {
  list-style: none;
  margin: 0;
  padding-left: 25px;
}
.product-data-table td {
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  padding: 4px 40px;
}
.product-data-table td:first-child {
  border-left: none;
  width: 340px;
  padding-left: 0;
}
.product-data-table tr:first-child td {
  border-top: none;
}
@media only screen and (max-width: 700px) {
  .product-data-table td:first-child {
    width: 260px;
  }
}

.ce-form_formframework {
  margin: 60px auto 60px auto;
  padding-left: 40px;
  padding-right: 40px;
}
.ce-form_formframework form {
  max-width: 800px;
}
.ce-form_formframework legend {
  font-size: 1.4375rem;
  color: #56524f;
  padding: 0 17px;
  text-transform: lowercase;
}
.ce-form_formframework .form-group {
  margin-bottom: 20px;
}
.ce-form_formframework input[type=text],
.ce-form_formframework input[type=number],
.ce-form_formframework input[type=email] {
  border: 1px solid #56524f;
  padding: 5px 10px;
  width: 100%;
}
.ce-form_formframework select {
  border: 1px solid #56524f;
  padding: 5px 10px;
}
.ce-form_formframework textarea {
  border: 1px solid #56524f;
  padding: 5px 10px;
  width: 100%;
  min-height: 140px;
}
.ce-form_formframework .form-check label {
  position: relative;
  padding-left: 30px;
  display: block;
}
.ce-form_formframework .form-check label input {
  position: absolute;
  left: 0;
  top: 3px;
}
.ce-form_formframework .form-navigation {
  margin-top: 30px;
}
.ce-form_formframework .btn-primary {
  border: 0;
  padding: 8px 25px;
  background: #f07c00;
  color: #FFFFFF;
  font-weight: 500;
}
.ce-form_formframework .btn-primary:hover {
  background: #ff9524;
}

.product-list .ce-teaser-items {
  margin-top: 0;
}
.product-list .card .card-body {
  display: block;
}
.product-list .card figcaption {
  background: none;
  position: relative;
}
.product-list .card h3 {
  color: #56524f;
  margin-bottom: 15px;
  line-height: 1.3;
  text-transform: none;
}

.product-detail .product-description h2 {
  margin-top: 0;
  font-size: 1.4375rem;
  color: #000000;
  margin-bottom: 1em;
  font-weight: 400;
}
.product-detail .property-footer {
  margin-top: 20px;
  padding-bottom: 10px;
}
.product-detail .product-additional-properties {
  margin-top: 30px;
}
.product-detail .product-additional-properties th {
  text-align: left;
}

.reference-list .card.hidden {
  display: none;
}
.reference-list .card .card-body {
  display: block;
}
.reference-list .card figcaption {
  background: none;
  position: relative;
}
.reference-list .card h3 {
  color: #56524f;
  margin-bottom: 15px;
  line-height: 1.3;
  text-transform: none;
}

.reference-detail h1 {
  margin-top: 40px;
}
.reference-detail .product-data-table td {
  border-left: none;
}
.reference-detail .product-data-table td:first-child {
  width: 150px;
}
.reference-detail .reference-links {
  display: flex;
}
.reference-detail .reference-links a {
  display: block;
  margin-left: 50px;
}
.reference-detail .reference-links a:first-child {
  margin-left: 0;
}

.reference-detail-slider img {
  max-width: none;
  width: 100%;
}

.reference-filter .row {
  display: flex;
  flex-flow: row wrap;
}
.reference-filter .filter-group {
  margin-bottom: 30px;
}
.reference-filter .reference-filter-category {
  width: 25%;
}
.reference-filter .reference-filter-products {
  width: 75%;
}
.reference-filter .filter-product {
  width: 33.3333333333%;
}
@media only screen and (max-width: 900px) {
  .reference-filter .reference-filter-category {
    width: 33.3333333333%;
  }
  .reference-filter .reference-filter-products {
    width: 66.6666666667%;
  }
  .reference-filter .filter-product {
    width: 50%;
  }
}
@media only screen and (max-width: 700px) {
  .reference-filter .reference-filter-category {
    width: 210px;
  }
  .reference-filter .reference-filter-products {
    width: calc(100% - 210px);
  }
  .reference-filter .filter-product {
    width: 100%;
  }
}
@media only screen and (max-width: 420px) {
  .reference-filter .row {
    flex-flow: column;
  }
  .reference-filter .reference-filter-category {
    width: 100%;
  }
  .reference-filter .reference-filter-products {
    width: 100%;
  }
  .reference-filter .filter-product {
    width: 100%;
  }
  .reference-filter .reference-filter-category {
    margin-bottom: 20px;
  }
}
.reference-filter button {
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}
.reference-filter .filter-header {
  margin-bottom: 50px;
  justify-content: space-between;
}
@media only screen and (max-width: 420px) {
  .reference-filter .filter-header {
    display: block;
  }
  .reference-filter .filter-header .reference-filter-item:last-child {
    margin-top: 20px;
    padding-left: 32px;
  }
}
.reference-filter .btn-filter-prime,
.reference-filter .btn-filter-toggle {
  color: #f07c00;
  font-weight: 700;
  position: relative;
}
.reference-filter .btn-filter-prime::after,
.reference-filter .btn-filter-toggle::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: "";
  background: #f07c00;
  height: 2px;
  width: 50%;
  transition: all 400ms;
}
.reference-filter .btn-filter-prime:hover,
.reference-filter .btn-filter-toggle:hover {
  opacity: 0.8;
}
.reference-filter .btn-filter-prime:hover::after,
.reference-filter .btn-filter-toggle:hover::after {
  width: 100%;
}
.reference-filter .btn-filter-toggle {
  padding-left: 32px;
  background: url("../Images/icon_eye.svg") no-repeat;
}
.reference-filter .btn-filter-toggle::after {
  left: 32px;
  width: calc(50% - 32px);
}
.reference-filter .btn-filter-toggle:hover::after {
  width: calc(100% - 32px);
}
.reference-filter .btn-filter-toggle[aria-expanded=false] span:last-child {
  display: none;
}
.reference-filter .btn-filter-toggle[aria-expanded=true] span:first-child {
  display: none;
}
.reference-filter .filter-area {
  transition: all 800ms;
}
.reference-filter .btn-filter-category {
  color: #f07c00;
  font-weight: 500;
  position: relative;
  padding-left: 26px;
}
.reference-filter .btn-filter-category::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  border: 1px solid orange;
  width: 16px;
  height: 16px;
}
.reference-filter .btn-filter-category.active::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 7px;
  width: 10px;
  height: 10px;
  background: orange;
}
.reference-filter .btn-filter-category span {
  position: relative;
  pointer-events: none;
}
.reference-filter .btn-filter-category span::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: "";
  background: #f07c00;
  height: 2px;
  width: 50%;
  transition: all 400ms;
}
.reference-filter .btn-filter-category span:hover {
  opacity: 0.8;
}
.reference-filter .btn-filter-category span:hover::after {
  width: 100%;
}
.reference-filter .btn-filter-product {
  font-size: 0.875rem;
  position: relative;
  padding-left: 26px;
}
.reference-filter .btn-filter-product:hover {
  color: #6a6664;
}
.reference-filter .btn-filter-product::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  border: 1px solid #56524f;
  width: 16px;
  height: 16px;
}
.reference-filter .btn-filter-product.active::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: #56524f;
}

.to-top-btn {
  position: fixed;
  z-index: 999;
  right: 40px;
  bottom: 70px;
  height: 46px;
  width: 46px;
  background: #c9c8c8;
  border-radius: 3px;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 500ms ease-in-out;
  pointer-events: none;
}
.to-top-btn.show {
  opacity: 1;
  pointer-events: all;
}
.to-top-btn::after {
  content: "";
  display: block;
  position: absolute;
  height: 0;
  width: 0;
  border-bottom: 16px solid #56524f;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.ce-text .header-content-claim {
  font-size: 1.25rem;
}
.ce-text h1 {
  margin-bottom: 0.3em;
}
.ce-text header {
  margin-bottom: 1.6em;
}
.ce-text .ce-text-center .header-content-claim {
  color: #56524f;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 0.03em;
  font-size: 1rem;
}
.ce-text.ce-text-center,
.ce-text .ce-text-center {
  text-align: center;
}
.ce-text.ce-text-center .container,
.ce-text .ce-text-center .container {
  max-width: 1100px;
}
.ce-text .container.ce-text-center {
  max-width: 1100px;
}

.ce-text_image .ce-text-image-image {
  position: relative;
  margin-bottom: 30px;
}
@media only screen and (min-width: 700px) {
  .ce-text_image .ce-text-image-image {
    margin-bottom: 0;
  }
}
.ce-text_image img {
  display: block;
}
.ce-text_image figure {
  position: relative;
}
.ce-text_image figure figcaption {
  padding: 5px;
}
.ce-text_image .icon-overlay {
  position: absolute;
  left: 0;
  top: 10%;
  width: 28%;
}
.ce-text_image .bodytext .more-link {
  margin-top: 20px;
}
@media only screen and (max-width: 700px) {
  .ce-text_image.ce-image-position-25 .flex-row,
  .ce-text_image .ce-image-position-25 .flex-row, .ce-text_image.ce-image-position-26 .flex-row,
  .ce-text_image .ce-image-position-26 .flex-row {
    display: block;
  }
  .ce-text_image.ce-image-position-25 .flex-row .ce-text-image-text,
  .ce-text_image .ce-image-position-25 .flex-row .ce-text-image-text, .ce-text_image.ce-image-position-26 .flex-row .ce-text-image-text,
  .ce-text_image .ce-image-position-26 .flex-row .ce-text-image-text {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 700px) {
  .ce-text_image .ce-text-image-image {
    width: 50%;
  }
  .ce-text_image .ce-text-image-text {
    width: 50%;
  }
  .ce-text_image .image-size-small .ce-text-image-image {
    width: 20%;
    flex-shrink: 0;
  }
  .ce-text_image .image-size-small .ce-text-image-text {
    width: auto;
  }
}
.ce-text_image.ce-image-position-42 .ce-text-image-text,
.ce-text_image .ce-image-position-42 .ce-text-image-text {
  width: auto;
}
@media only screen and (min-width: 700px) {
  .ce-text_image.ce-image-position-42 .ce-text-image-image,
  .ce-text_image .ce-image-position-42 .ce-text-image-image {
    float: right;
    padding-left: 80px;
  }
}
@media only screen and (min-width: 700px) {
  .ce-text_image.ce-image-position-26 .ce-text-image-image,
  .ce-text_image .ce-image-position-26 .ce-text-image-image {
    padding-right: 80px;
  }
  .ce-text_image.ce-image-position-26 .ce-text-image-text,
  .ce-text_image .ce-image-position-26 .ce-text-image-text {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 700px) {
  .ce-text_image.ce-image-position-25 .ce-text-image-image,
  .ce-text_image .ce-image-position-25 .ce-text-image-image {
    order: 2;
    padding-left: 80px;
  }
  .ce-text_image.ce-image-position-25 .ce-text-image-text,
  .ce-text_image .ce-image-position-25 .ce-text-image-text {
    padding-right: 30px;
  }
}
.ce-text_image .image-size-small .ce-image-position-26 .ce-text-image-image {
  padding-right: 15px;
}
.ce-text_image .image-size-small .ce-image-position-26 .ce-text-image-text {
  padding-left: 30px;
}
.ce-text_image.ce-uid-26 h2, .ce-text_image.ce-uid-27 h2, .ce-text_image.ce-uid-28 h2 {
  color: #f07c00;
}
.ce-text_image.ce-uid-26 .ce-text-image-image, .ce-text_image.ce-uid-27 .ce-text-image-image, .ce-text_image.ce-uid-28 .ce-text-image-image {
  position: initial;
}
.ce-text_image.ce-uid-26 .ce-image-position-25, .ce-text_image.ce-uid-27 .ce-image-position-25, .ce-text_image.ce-uid-28 .ce-image-position-25 {
  position: relative;
}
.ce-text_image.ce-uid-26 .icon-overlay, .ce-text_image.ce-uid-27 .icon-overlay, .ce-text_image.ce-uid-28 .icon-overlay {
  width: 60px;
  top: -60px;
}
.ce-text_image.ce-uid-27 {
  background-color: #E4E2E3;
}
.ce-text_image.ce-uid-28 {
  background-color: #DAD9D7;
}

.page-id-14 .ce-text_image img {
  border: 1px solid #d7d7d7;
}

.ce-text_on_image {
  position: relative;
}
.ce-text_on_image.transparent-layer,
.ce-text_on_image .transparent-layer {
  height: 550px;
}
.ce-text_on_image.transparent-layer h2,
.ce-text_on_image .transparent-layer h2 {
  color: #f07c00;
}
.ce-text_on_image.transparent-layer p,
.ce-text_on_image .transparent-layer p {
  color: #FFFFFF;
}
.ce-text_on_image.transparent-layer::after,
.ce-text_on_image .transparent-layer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.ce-text_on_image .text-layer {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 5;
}
.ce-text_on_image .ce-text-on-image-text {
  padding: 50px 0 0 50px;
}
.ce-text_on_image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.ce-text_on_image h2 {
  color: #56524f;
  text-transform: none;
}
.ce-text_on_image .icon {
  font-weight: 500;
  font-size: 1.25rem;
  padding-left: 40px;
  background: url("../Images/icon_beratung.svg") no-repeat;
  background-size: 30px;
}
.ce-text_on_image .icon-gutting {
  background-image: url("../Images/icon_entkernung.svg");
}
.ce-text_on_image .icon-service {
  background-image: url("../Images/icon_service.svg");
}
.ce-text_on_image .more-link {
  margin-top: 30px;
}
@media only screen and (max-width: 700px) {
  .ce-text_on_image .ce-text-on-image-text {
    padding: 30px 0 0 0;
  }
}
@media only screen and (max-width: 500px) {
  .ce-text_on_image .ce-text-on-image-text .icon {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 760px) {
  .ce-text_on_image.transparent-layer::after,
  .ce-text_on_image .transparent-layer::after {
    width: 70%;
  }
  .ce-text_on_image .ce-text-on-image-text {
    margin-left: 30%;
  }
}
@media only screen and (min-width: 1200px) {
  .ce-text_on_image.transparent-layer::after,
  .ce-text_on_image .transparent-layer::after {
    width: 50%;
  }
  .ce-text_on_image .ce-text-on-image-text {
    margin-left: 50%;
  }
}
.ce-text_on_image.ce-image-position-25:not(.transparent-layer),
.ce-text_on_image .text-position-left:not(.transparent-layer) {
  display: flex;
  width: 100%;
  justify-content: right;
  height: 400px;
}
.ce-text_on_image.ce-image-position-25:not(.transparent-layer) img,
.ce-text_on_image .text-position-left:not(.transparent-layer) img {
  width: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}
.ce-text_on_image.ce-image-position-25:not(.transparent-layer) .ce-text-on-image-text,
.ce-text_on_image .text-position-left:not(.transparent-layer) .ce-text-on-image-text {
  margin-left: 0;
  padding-left: 0;
  max-width: calc(100% - 300px);
}
@media only screen and (min-width: 700px) {
  .ce-text_on_image.ce-image-position-25:not(.transparent-layer) .ce-text-image-image,
  .ce-text_on_image .text-position-left:not(.transparent-layer) .ce-text-image-image {
    padding-right: 80px;
  }
  .ce-text_on_image.ce-image-position-25:not(.transparent-layer) .ce-text-image-text,
  .ce-text_on_image .text-position-left:not(.transparent-layer) .ce-text-image-text {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 800px) {
  .ce-text_on_image.ce-image-position-25:not(.transparent-layer),
  .ce-text_on_image .text-position-left:not(.transparent-layer) {
    display: block;
    height: auto;
    margin-bottom: 40px;
  }
  .ce-text_on_image.ce-image-position-25:not(.transparent-layer) img,
  .ce-text_on_image .text-position-left:not(.transparent-layer) img {
    width: 100%;
  }
  .ce-text_on_image.ce-image-position-25:not(.transparent-layer) .text-layer,
  .ce-text_on_image .text-position-left:not(.transparent-layer) .text-layer {
    position: relative;
  }
  .ce-text_on_image.ce-image-position-25:not(.transparent-layer) .ce-text-on-image-text,
  .ce-text_on_image .text-position-left:not(.transparent-layer) .ce-text-on-image-text {
    max-width: none;
  }
  .ce-text_on_image.ce-image-position-25:not(.transparent-layer) p,
  .ce-text_on_image .text-position-left:not(.transparent-layer) p {
    margin-bottom: 0;
  }
}
.ce-text_on_image.ce-image-position-26,
.ce-text_on_image .text-position-right {
  height: 550px;
}
.ce-text_on_image.ce-image-position-26:not(.transparent-layer) .ce-text-on-image-text,
.ce-text_on_image .text-position-right:not(.transparent-layer) .ce-text-on-image-text {
  margin-top: 50px;
  margin-left: 35%;
}
@media only screen and (min-width: 700px) {
  .ce-text_on_image.ce-image-position-26:not(.transparent-layer) .ce-text-image-image,
  .ce-text_on_image .text-position-right:not(.transparent-layer) .ce-text-image-image {
    order: 2;
    padding-left: 80px;
  }
  .ce-text_on_image.ce-image-position-26:not(.transparent-layer) .ce-text-image-text,
  .ce-text_on_image .text-position-right:not(.transparent-layer) .ce-text-image-text {
    padding-right: 30px;
  }
}
@media only screen and (max-width: 500px) {
  .ce-text_on_image.ce-image-position-26:not(.transparent-layer) .ce-text-on-image-text,
  .ce-text_on_image .text-position-right:not(.transparent-layer) .ce-text-on-image-text {
    margin-left: 0;
  }
}

.ce-hero_image figure {
  position: relative;
}
.ce-hero_image figure::after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.3);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.ce-hero_image figure img {
  display: block;
  position: relative;
  width: 100%;
  max-width: none;
}
.ce-hero_image figcaption {
  position: absolute;
  left: 0;
  right: 0;
  top: 25%;
  z-index: 6;
}
.ce-hero_image-text {
  color: #FFFFFF;
  max-width: 540px;
}
.ce-hero_image-text h3 {
  font-size: 2.125rem;
  margin-bottom: 15px;
  font-weight: 500;
}
@media only screen and (max-width: 1000px) {
  .ce-hero_image-text h3 {
    font-size: 1.875rem;
  }
}
.ce-hero_image-text p {
  margin-bottom: 20px;
}
.ce-hero_image-text .more-link {
  display: inline-block;
  position: relative;
  font-weight: 500;
  text-transform: uppercase;
  color: #f07c00;
  text-decoration: none;
}
.ce-hero_image-text .more-link::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: "";
  background: #f07c00;
  height: 2px;
  width: 50%;
}
@media only screen and (max-width: 1000px) {
  .ce-hero_image-text {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 760px) {
  .ce-hero_image figure img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .ce-hero_image figcaption {
    top: 10%;
  }
}

.ce-hero_slider figure {
  position: relative;
}
.ce-hero_slider figure::after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.3);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.ce-hero_slider figure img {
  display: block;
  position: relative;
  width: 100%;
  max-width: none;
}
.ce-hero_slider figcaption {
  position: absolute;
  left: 0;
  right: 0;
  top: 25%;
  z-index: 6;
}
.ce-hero_slider-text {
  color: #FFFFFF;
  max-width: 540px;
}
.ce-hero_slider-text h3 {
  font-size: 2.125rem;
  margin-bottom: 15px;
  font-weight: 500;
}
@media only screen and (max-width: 1000px) {
  .ce-hero_slider-text h3 {
    font-size: 1.875rem;
  }
}
.ce-hero_slider-text p {
  margin-bottom: 20px;
}
.ce-hero_slider-text .more-link {
  display: inline-block;
  position: relative;
  font-weight: 500;
  text-transform: uppercase;
  color: #f07c00;
  text-decoration: none;
}
.ce-hero_slider-text .more-link::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: "";
  background: #f07c00;
  height: 2px;
  width: 50%;
}
@media only screen and (max-width: 1000px) {
  .ce-hero_slider-text {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 760px) {
  .ce-hero_slider figure img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .ce-hero_slider figcaption {
    top: 10%;
  }
}

.reference-detail-slider.ce-hero_slider figure::after {
  display: none !important;
}

.ce-images .ce-image-position-0.grid-1 img {
  margin: auto;
  max-width: 400px;
}

.ce-images-images figcaption {
  margin-top: 15px;
}

.ce-icon_grid h2 {
  text-transform: none;
  font-size: 1.4375rem;
  margin-bottom: 1.5em;
}
.ce-icon_grid article {
  position: relative;
  padding-bottom: 20px;
}
.ce-icon_grid article img {
  display: block;
  max-width: 100px;
  width: 100%;
}
.ce-icon_grid article h3 {
  margin: 10px 0 5px 0;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
.ce-icon_grid article p {
  font-size: 0.875rem;
}
.ce-icon_grid article::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background: #f07c00;
  height: 2px;
  width: 50%;
}

.ce-logos .logos {
  display: flex;
  gap: 80px;
}
.ce-logos .logos img {
  display: block;
  flex-shrink: 1;
}
@media only screen and (max-width: 800px) {
  .ce-logos .logos {
    gap: 40px;
  }
}
@media only screen and (max-width: 500px) {
  .ce-logos .logos {
    gap: 20px;
  }
}

.ce-news_teaser h2 {
  text-align: center;
}
.ce-news_teaser-list {
  margin-top: 30px;
}
.ce-news_teaser article {
  display: flex;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
.ce-news_teaser article h3 {
  margin-bottom: 0.8em;
}
.ce-news_teaser article h3 a {
  color: #f07c00;
}
.ce-news_teaser article h3 a:hover {
  opacity: 0.8;
}
.ce-news_teaser .news-teaser-compact .news-date {
  padding-right: 20px;
  padding-top: 5px;
}
.ce-news_teaser .news-teaser-compact .news-date-box {
  border: 1px solid #56524f;
  padding: 0 5px 5px 5px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  color: #56524f;
  text-align: center;
}
.ce-news_teaser .news-teaser-compact .news-date-day {
  font-size: 2.125rem;
}
.ce-news_teaser .news-teaser-extended {
  flex-flow: column;
}
.ce-news_teaser .news-teaser-extended .teaser-image-link {
  aspect-ratio: 4/3;
}
.ce-news_teaser .news-teaser-extended .teaser-image-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ce-news_teaser .news-teaser-extended h3 {
  margin-top: 15px;
}
.ce-news_teaser .news-teaser-extended .news-date {
  color: #56524f;
  margin-bottom: 5px;
}
.ce-news_teaser .news-teaser-extended p {
  font-size: 0.875rem;
}
@media only screen and (max-width: 800px) {
  .ce-news_teaser .grid-3.compact-list > * {
    width: 100%;
  }
}

.ce-product_teaser h2 {
  text-transform: none;
  text-align: center;
  margin-bottom: 1.8em;
  color: #56524f;
}
.ce-product_teaser .card h3 {
  color: #56524f;
  margin-bottom: 15px;
  line-height: 1.3;
  text-transform: none;
}
.ce-product_teaser .card figcaption {
  position: relative;
  background: none;
}
.ce-product_teaser .card-body {
  display: block;
}

.ce-teaser h2 {
  text-transform: none;
  text-align: center;
  margin-bottom: 1.8em;
}
.ce-teaser a {
  color: #f07c00;
}
.ce-teaser a:hover {
  opacity: 0.8;
}
.ce-teaser figure:hover img,
.ce-teaser figure:hover h3 a {
  opacity: 0.8;
}

.ce-video {
  text-align: center;
}
.ce-video.bg-grey {
  background: #6a6664;
  background: linear-gradient(to bottom, #6a6664 0%, #6a6664 65%, #FFFFFF 65%, #FFFFFF 100%);
}
.ce-video h2 {
  color: #f07c00;
  text-transform: none;
}
.ce-video h2 a {
  color: #f07c00;
}
.ce-video .header-content-claim {
  display: none;
}
.ce-video p {
  color: #FFFFFF;
}
.ce-video .video-container {
  position: relative;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  max-width: 800px;
}
.ce-video .video-container img {
  cursor: pointer;
  width: 100%;
}
.ce-video .video-container a::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  background: url("../Images/youtube_play_btn.png") no-repeat;
  width: 90px;
  height: 62px;
  z-index: 5;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.ce-video .video-description {
  margin-bottom: 30px;
}

.ce-uploads ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ce-uploads a {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.ce-uploads a[href$=pdf]::before {
  display: inline-block;
  content: "";
  width: 32px;
  height: 32px;
  background: url("../Images/icon_pdf.svg") no-repeat;
  margin-right: 10px;
}
.ce-uploads a:hover {
  color: #f07c00;
}
.ce-uploads li:not(:first-child) {
  margin-top: 10px;
}
.ce-uploads li:first-child a {
  font-weight: 700;
}

@media print {
  .page-header,
  .page-footer {
    display: none !important;
  }
}
/*# sourceMappingURL=main.css.map */
