/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/

:root {
  --primary-color: #CFC488;
  --grey: #FAFAFA;
  --text-color: #1D1D1B;
  --white: #ffffff;
  --variable-width-1: calc(100% - 960px);
  --variable-width-2: calc(var(--variable-width-1) / 2);
}

/*--------------------------------------------------------------
# Body
--------------------------------------------------------------*/

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  position: relative;
  width: 100%;
  height: 100%;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/

@media (min-width: 1600px) {
.container {
    max-width: 1420px!important;
}
}

.abstand {
    margin-top: 120px;
    margin-bottom: 120px;
}

.abstandbottom {
    margin-bottom: 120px;
}

.abstandpadding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.abstandpadding-p5 {
    padding-top: calc(120px - 3rem);
    padding-bottom: calc(120px - 3rem);
}

.abstandcol {
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
.abstandxl {
    margin-bottom: 3rem;
}
.abstandxl4 {
    margin-bottom: 2rem;
}
.abstand-xl-bottom-0 {
  padding-bottom: 0!important;
}
}

@media (max-width: 991px) {
.abstandlg {
    margin-bottom: 3rem;
}
.abstand {
    margin-top: 80px;
    margin-bottom: 80px;
}
.abstandbottom {
    margin-bottom: 80px;
}
.abstandpadding {
    padding-top: 80px;
    padding-bottom: 80px;
}
.abstandpaddingheader {
  padding-top: calc(98px + 3rem);
}
.abstandpadding-p5 {
    padding-top: 80px;
    padding-bottom: calc(80px - 3rem);
}
}

@media (max-width: 767px) {
.abstandmd {
    margin-bottom: 3rem;
}
}

@media (max-width: 575px) {
.abstandsm {
    margin-bottom: 3rem;
}
}

.slidescroller {
    margin-top: -118.5px;
    padding-top: 118.5px;
}

.abstandtoppage {
    margin-top: 118.5px;
}

@media (max-width: 320px) {
.slidescroller {
    margin-top: -96px;
    padding-top: 96px;
}
.abstandtoppage {
    margin-top: 96px;
}
}

ul.auflistung {
  list-style: none;
  padding-left: 1.3em;
}
ul.auflistung li {
  margin-bottom: 7px;
}
ul.auflistung li::before {
  content: "\2013";
  color: var(--text-color);
  display: inline-block;
  width: 1.2em;
  margin-left: -1.2em;
}

/*--------------------------------------------------------------
# Backgrounds
--------------------------------------------------------------*/

.hero {
    width: 100%;
    height: 100vh;
    background-size: cover;
    padding-top: 118px;
    background-repeat: no-repeat;
}

.hero-half {
    width: 100%;
    height: 100vh;
    padding-top: 118px;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 50%, auto, cover;
}

@media (max-width: 991px) {
.hero {
    padding-top: 198px;
    padding-bottom: 80px;
    height: 100%;
}
.hero-half {
    padding-top: 198px;
    padding-bottom: 80px;
    height: 100%;
}
}

@media (max-height: 660px) {
.hero {
    padding-top: 198px;
    padding-bottom: 80px;
    height: 100%;
}
.hero-half {
    padding-top: 198px;
    padding-bottom: 80px;
    height: 100%;
}
}


@media (max-width: 991px) {
.hero-half {
    background-image: none!important;
    background-color: var(--white);
    padding-top: 80px;
}
}

@media (max-width: 767px) {
.hero {
    background-image: none!important;
    background-color: var(--text-color);
    padding-top: 80px;
}
}

.bg-primary {
    background-color: var(--primary-color)!important;
}

.bg-dark {
    background-color: var(--text-color)!important;
}

.bg-light {
    background-color: var(--grey)!important;
}

.bg-black {
    background-color: #000000!important;
}

/*--------------------------------------------------------------
# Typografie
--------------------------------------------------------------*/

a {
  color: var(--primary-color);
}

a:focus, a:hover {
  color: var(--text-color);
  text-decoration: none;
}

a.link-reversed {
  color: var(--text-color);
}

a.link-reversed:focus, a:hover {
  color: var(--primary-color);
}

h1 {
  font-size: 46px;
  font-weight: 300;
}

h2.fakeh1 {
  font-size: 46px;
  font-weight: 300;
}

h2 {
  font-size: 36px;
  font-weight: 300;
}

h3 {
  font-size: 24px;
  font-weight: 300;
}

h4 {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: .5px;
}

p.lead {
  font-size: 30px;
}

p.quote {
  font-size: 24px;
  font-weight: 300;
}

span.number {
  font-size: 60px;
  font-weight: 300;
}

strong {
  font-weight: 600;
}

.strong {
  font-weight: 600;
}

.marked {
  color: var(--primary-color);  
}

@media (max-width: 1199px) {
span.number {
  font-size: 50px;
}
}

@media (max-width: 767px) {
h1 {
  font-size: 32px;
}
h2.fakeh1 {
  font-size: 32px;
}
h2 {
  font-size: 26px;
}
h3 {
  font-size: 18px;
}
.lead {
    font-size: 18px!important;
  font-weight: 400;
}
p.quote {
  font-size: 20px;
}
span.number {
  font-size: 40px;
}
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn {
    padding: 0.5rem 1.25rem;
    border-radius: 0;
}

.btn-primary {
  color: var(--white);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  color: var(--white);
  background-color: var(--text-color);
  border-color: var(--text-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  color: var(--white);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-dark {
  color: var(--text-color);
  border-color: var(--text-color);
}

.btn-outline-dark:hover {
  color: var(--white);
  background-color: var(--text-color);
  border-color: var(--text-color);
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

.icons-services {
  height: 100px;
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
.icons-services {
  height: 80px;
}
}

.form-control {
  border: none;
  border-radius: 0;
  background-color: var(--grey)!important;
  padding: 1.25rem 1.25rem;
  -webkit-box-shadow: none!important;
          box-shadow: none!important;
}

textarea.form-control {
  padding: 0.75rem 1.25rem;
}

.invalid-feedback {
  display: none!important;
}

.card {
  border: none;
  border-radius: 0;
}

.card-img-top {
  border-radius: 0;
}

.card-footer {
  border: none;
  background: none!important;
}


hr {
  border-top: 1px solid var(--primary-color);
}

#faq .card .card-header {
  border: 0;
  padding: 0;
  background: #fff;
}

#faq .card .card-header .btn-header-link {
  color: var(--primary-color);
  display: block;
  text-align: left;
  background: #fff;
  padding: 0;
}

#faq .card .card-header .btn-header-link:after {
  content: "\f106";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  float: right;
}

#faq .card .card-header .btn-header-link.collapsed:after {
  content: "\f107";
}

#faq .card .card-body {
  padding: 0;
  padding-top: 20px;
  font-size: 14px;
}

#faq .card .collapsing {
  background: #fff;
}

#faq .card .collapse {
  border: 0;
}

#faq .card .collapse.show {
  background: #fff;
}

.overflow {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.overflow:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.overflow img {
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
    width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

.navigation {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 997;
  padding-top: 16px;
  padding-bottom: 16px;
}

.navigation.header-scrolled {
  padding-top: 16px;
  padding-bottom: 16px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-background-1 {
  background-color: #ffffff00!important;
  -webkit-box-shadow: none!important;
          box-shadow: none!important;
}

.nav-background-1.header-scrolled {
  background-color: var(--white)!important;
  -webkit-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.05)!important;
          box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.05)!important;
}

.nav-background-2 {
  background-color: var(--white);
  -webkit-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-background-3 {
  background-color: var(--text-color);
}

.navbar {
  padding: 0;
}

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

.navigation-list .nav-item {
  padding: 0;
}

.navigation-list .nav-item .nav-link {
  font-size: 24px;
  padding: 0;
  color: var(--text-color);
  font-weight: 300;
  margin-bottom: 14px;
}

.navigation-list .nav-item.nav-item-sm .nav-link {
  font-size: 18px;
  margin-bottom: 14px;
}

@media (max-width: 991px) {
.navigation-list .nav-item .nav-link {
  font-size: 20px;
  padding: 0;
  color: var(--text-color);
  font-weight: 300;
  margin-bottom: 8px;
}
.navigation-list .nav-item.nav-item-sm .nav-link {
  font-size: 16px;
  margin-bottom: 8px;
}
}

.geschaeftskunden .navigation-list .nav-item .nav-link {
  color: var(--white);
}

.navigation-list .nav-item .nav-link:hover {
  color: var(--primary-color);
}

.overlay {
  height: 0vh;
  width: 100%;
  position: sticky;
  z-index: 1000;
  top: 0;
  left: 0;
  overflow-y: hidden;
  background: linear-gradient(
    to right,
    white 0%,
    white calc(var(--variable-width-2) + 662px),
    var(--text-color) calc(var(--variable-width-2) + 662px),
    var(--text-color) 100%
  );
}

.navbar-open.overlay {
  height: 100vh;
}

.navbar-open.overlay .navigation-burger-open {
  position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.navigation-burger-open {
  background: linear-gradient(
    to right,
    white 0%,
    white calc(var(--variable-width-2) + 662px),
    var(--text-color) calc(var(--variable-width-2) + 662px),
    var(--text-color) 100%
  );
}

@media (min-width: 1200px) {
.overlay {
  background: linear-gradient(
    to right,
    white 0%,
    white calc(var(--variable-width-2) + 695px),
    var(--text-color) calc(var(--variable-width-2) + 695px),
    var(--text-color) 100%
  );
}
.navigation-burger-open {
  background: linear-gradient(
    to right,
    white 0%,
    white calc(var(--variable-width-2) + 695px),
    var(--text-color) calc(var(--variable-width-2) + 695px),
    var(--text-color) 100%
  );
}
}

@media (min-width: 1600px) {
.overlay {
  background: linear-gradient(
    to right,
    white 0%,
    white calc(var(--variable-width-2) + 747px),
    var(--text-color) calc(var(--variable-width-2) + 747px),
    var(--text-color) 100%
  );
}
.navigation-burger-open {
  background: linear-gradient(
    to right,
    white 0%,
    white calc(var(--variable-width-2) + 747px),
    var(--text-color) calc(var(--variable-width-2) + 747px),
    var(--text-color) 100%
  );
}
}

@media (max-width: 991px) {
.overlay {
  background: white;
}
.navigation-burger-open {
  background: white;
}
}

@media (max-height: 725px) and (min-width: 992px) {
  .overlay {
    overflow-y: auto;
  }
}

@media (max-width: 991px) {
  .overlay {
    overflow-y: auto;
  }
}

.navscroll {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

/*--------------------------------------------------------------
# Logo & Burgermenü
--------------------------------------------------------------*/

.navbar-logo {
  width: 140px;
}

@media (max-width: 320px) {
.navbar-logo {
  width: 100px;
}
}

.st0-logo {
  fill: #CFC488;
}

.nav-background-1 .st1-logo {
  fill: #ffffff!important;
}

.nav-background-1.header-scrolled .st1-logo {
  fill: var(--text-color)!important;
}

.nav-background-3 .st1-logo {
  fill: #ffffff;
}

.nav-background-2 .st1-logo {
  fill: var(--text-color);
}

.nav-background-1 .st0-burger {
  fill: #ffffff!important;
}

.nav-background-1.header-scrolled .st0-burger {
  fill: var(--text-color)!important;
}

.nav-background-3 .st0-burger {
  fill: #ffffff;
}

.nav-background-2 .st0-burger {
  fill: var(--text-color);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
  background-color: var(--text-color);
  color: var(--white);
}

.footer a {
  color: var(--white);
}

.footer a:hover {
  color: var(--primary-color);
}

.footer .navigation-list .nav-item .nav-link {
  font-size: 22px;
  padding: 0;
  color: var(--white);
  font-weight: 300;
  margin-bottom: 10px;
}

.footer .navigation-list .nav-item.nav-item-sm .nav-link {
  font-size: 16px;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
.footer .navigation-list .nav-item .nav-link {
  font-size: 20px;
  margin-bottom: 8px;
}
.footer .navigation-list .nav-item.nav-item-sm .nav-link {
  font-size: 16px;
  margin-bottom: 8px;
}
}

.footer .navigation-list .nav-item .nav-link:hover {
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/

.carousel-inner > .carousel-item {
    height: 500px;
    position: relative;
}

@media (max-width: 1599px) {
.carousel-inner > .carousel-item {
    height: 400px;
}
}

@media (max-width: 768px) {
.carousel-inner > .carousel-item {
    height: 250px;
}
}

@media (max-width: 370px) {
.carousel-inner > .carousel-item {
    height: 200px;
}
}

.carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}


.carousel-inner img {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

/*--------------------------------------------------------------
# Cookies
--------------------------------------------------------------*/

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.85);
}

@media (max-width: 768px) {
.cookiealert {
  font-size: 15px;
}
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transition-delay: 1000ms;
            transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert .acceptcookies {
    margin-top: 10px;
    vertical-align: baseline;
}

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

@media (max-width: 768px) {
.disclaimer-footer {
  text-align: left;
}
}

.toast-header {
  color: var(--text-color);
}

.toast {
  background-color: #ffffff;
  border: none;
}

.toast-header {
  border: none;
  padding: 20px 20px 0 20px;
}

.toast-body {
  border: none;
  padding: 10px 20px 20px 20px;
}


    /*--------------------------------------------------------------
    # Fundamentals
    --------------------------------------------------------------*/

    .section-left {
        height: 100%;
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 50%, auto, cover;
    }

    .section-right {
        height: 100%;
        background-position: right center;
        background-repeat: no-repeat;
        background-size: 50%, auto, cover;
    }

    /*--------------------------------------------------------------
    # Pages-Sections
    --------------------------------------------------------------*/

    .section-home-kuechen {
        background-image: url(../dmxDaten/sections/section-home-kuechen-lg.jpg);
    }

    .section-home-innenausbau {
        background-image: url(../dmxDaten/sections/section-home-innenausbau-lg.jpg);
    }

    .section-home-tueren {
        background-image: url(../dmxDaten/sections/section-home-tueren-lg.jpg);
    }

    .section-services-beratung {
        background-image: url(../dmxDaten/sections/section-services-beratung-new-lg.jpg);
    }

    .section-services-planung {
        background-image: url(../dmxDaten/sections/section-services-planung-lg.jpg);
    }

    .section-services-montage {
        background-image: url(../dmxDaten/sections/section-services-montage-new-lg.jpg);
    }

    .section-services-geraetewechsel {
        background-image: url(../dmxDaten/sections/section-services-geraetewechsel-new-lg.jpg);
    }

    .section-unternehmen-zusammenarbeit {
        background-image: url(../dmxDaten/sections/section-unternehmen-zusammenarbeit-lg.jpg);
    }

    .section-unternehmen-umwelt {
        background-image: url(../dmxDaten/sections/section-unternehmen-umwelt-lg.jpg);
    }

    .section-jobs-arbeitgeber {
        background-image: url(../dmxDaten/sections/section-jobs-arbeitgeber-lg.jpg);
        background-position: right bottom;
    }

    .section-jobs-schnupperlehre {
        background-image: url(../dmxDaten/sections/section-jobs-schnupperlehre-lg.jpg);
    }

    .section-kuechen-wuensche {
        background-image: url(../dmxDaten/sections/section-kuechen-wuensche-lg.jpg);
    }

    .section-kuechen-traumkueche {
        background-image: url(../dmxDaten/sections/section-kuechen-traumkueche-lg.jpg);
    }

    .section-kuechen-kuechenplaner {
        background-image: url(../dmxDaten/sections/section-kuechen-kuechenplaner-lg.jpg);
        background-position: right bottom;
    }

    .section-kuechenplaner-1 {
        background-image: url(../dmxDaten/sections/section-kuechen-kuechenplaner-lg.jpg);
        background-position: left bottom;
    }

    .section-kuechenplaner-2 {
        background-image: url(../dmxDaten/sections/section-kuechenplaner-2-lg.jpg);
    }

    .section-innenausbau-individuell {
        background-image: url(../dmxDaten/sections/section-innenausbau-individuell-lg.jpg);
    }

    .section-innenausbau-objektausbau {
        background-image: url(../dmxDaten/sections/section-innenausbau-objektausbau-lg.jpg);
    }

    .section-baeder-acrylstein {
        background-image: url(../dmxDaten/sections/section-baeder-acrylstein-lg.jpg);
    }

    .section-schlafsysteme-spezial {
        background-image: url(../dmxDaten/sections/section-schlafsysteme-spezial-lg.jpg);
    }

    .section-moebel-planung {
        background-image: url(../dmxDaten/sections/section-moebel-planung-lg.jpg);
    }

    .section-tueren-1 {
        background-image: url(../dmxDaten/sections/section-tueren-1-lg.jpg);
    }

    .section-tueren-2 {
        background-image: url(../dmxDaten/sections/section-tueren-2-lg.jpg);
    }

    .section-schreiner-1 {
        background-image: url(../dmxDaten/sections/section-schreiner-1-lg.jpg);
    }

    .section-privatkunden-1 {
        background-image: url(../dmxDaten/sections/section-privatkunden-1-lg.jpg);
    }

    .section-lohnarbeiten-1 {
        background-image: url(../dmxDaten/sections/section-lohnarbeiten-1-lg.jpg);
    }

    .section-outdoor-kuechen {
        background-image: url(../dmxDaten/kuechen/outdoor-kuechen/planung-und-umsetzung-outdoor-kueche-schweiz-lg.jpg);
    }

    @media (min-width: 1600px) {
        .section-home-kuechen {
            background-image: url(../dmxDaten/sections/section-home-kuechen-xl.jpg);
        }

        .section-home-innenausbau {
            background-image: url(../dmxDaten/sections/section-home-innenausbau-xl.jpg);
        }

        .section-home-tueren {
            background-image: url(../dmxDaten/sections/section-home-tueren-xl.jpg);
        }

        .section-services-beratung {
            background-image: url(../dmxDaten/sections/section-services-beratung-new-xl.jpg);
        }

        .section-services-planung {
            background-image: url(../dmxDaten/sections/section-services-planung-xl.jpg);
        }

        .section-services-montage {
            background-image: url(../dmxDaten/sections/section-services-montage-new-xl.jpg);
        }

        .section-services-geraetewechsel {
            background-image: url(../dmxDaten/sections/section-services-geraetewechsel-new-xl.jpg);
        }

        .section-unternehmen-zusammenarbeit {
            background-image: url(../dmxDaten/sections/section-unternehmen-zusammenarbeit-xl.jpg);
        }

        .section-unternehmen-umwelt {
            background-image: url(../dmxDaten/sections/section-unternehmen-umwelt-xl.jpg);
        }

        .section-jobs-arbeitgeber {
            background-image: url(../dmxDaten/sections/section-jobs-arbeitgeber-xl.jpg);
        }

        .section-jobs-schnupperlehre {
            background-image: url(../dmxDaten/sections/section-jobs-schnupperlehre-xl.jpg);
        }

        .section-kuechen-wuensche {
            background-image: url(../dmxDaten/sections/section-kuechen-wuensche-xl.jpg);
        }

        .section-kuechen-traumkueche {
            background-image: url(../dmxDaten/sections/section-kuechen-traumkueche-xl.jpg);
        }

        .section-kuechen-kuechenplaner {
            background-image: url(../dmxDaten/sections/section-kuechen-kuechenplaner-xl.jpg);
            background-position: right center;
        }

        .section-kuechenplaner-1 {
            background-image: url(../dmxDaten/sections/section-kuechen-kuechenplaner-xl.jpg);
            background-position: left center;
        }

        .section-kuechenplaner-2 {
            background-image: url(../dmxDaten/sections/section-kuechenplaner-2-xl.jpg);
        }

        .section-innenausbau-individuell {
            background-image: url(../dmxDaten/sections/section-innenausbau-individuell-xl.jpg);
        }

        .section-innenausbau-objektausbau {
            background-image: url(../dmxDaten/sections/section-innenausbau-objektausbau-xl.jpg);
        }

        .section-baeder-acrylstein {
            background-image: url(../dmxDaten/sections/section-baeder-acrylstein-xl.jpg);
        }

        .section-schlafsysteme-spezial {
            background-image: url(../dmxDaten/sections/section-schlafsysteme-spezial-xl.jpg);
        }

        .section-moebel-planung {
            background-image: url(../dmxDaten/sections/section-moebel-planung-xl.jpg);
        }

        .section-tueren-1 {
            background-image: url(../dmxDaten/sections/section-tueren-1-xl.jpg);
        }

        .section-tueren-2 {
            background-image: url(../dmxDaten/sections/section-tueren-2-xl.jpg);
        }

        .section-schreiner-1 {
            background-image: url(../dmxDaten/sections/section-schreiner-1-xl.jpg);
        }

        .section-privatkunden-1 {
            background-image: url(../dmxDaten/sections/section-privatkunden-1-xl.jpg);
        }

        .section-lohnarbeiten-1 {
            background-image: url(../dmxDaten/sections/section-lohnarbeiten-1-xl.jpg);
        }
    }

    @media (min-width: 1824px) {
        .section-outdoor-kuechen {
            background-image: url(../dmxDaten/kuechen/outdoor-kuechen/planung-und-umsetzung-outdoor-kueche-schweiz-xl.jpg);
        }
    }

    /*--------------------------------------------------------------
    # Fundamentials 2
    --------------------------------------------------------------*/

    @media (max-width: 1199px) {
        .section-xl {
            background: none;
        }

        .abstandpadding-xl-top-0 {
            padding-top: 0 !important;
        }
    }

    @media (max-width: 991px) {
        .section-left {
            background: none;
        }

        .section-right {
            background: none;
        }
    }


    .hero-services {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0))),
            url(../dmxDaten/hero/hero-services.jpg);
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)),
            url(../dmxDaten/hero/hero-services.jpg);
        ;
        background-position: bottom right;
    }
    .hero-unternehmen {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0))),
            url(../dmxDaten/hero/hero-unternehmen.jpg);
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)),
            url(../dmxDaten/hero/hero-unternehmen.jpg);
        ;
        background-position: center right;
    }
    .hero-team {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0))),
            url(../dmxDaten/hero/hero-team.jpg);
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)),
            url(../dmxDaten/hero/hero-team.jpg);
        ;
        background-position: center right;
    }
    .hero-jobs {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0))),
            url(../dmxDaten/hero/hero-jobs.jpg);
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)),
            url(../dmxDaten/hero/hero-jobs.jpg);
        ;
        background-position: center right;
    }
    .hero-kuechen {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0)));
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    }
    .hero-kuecheninspiration {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0))),
            url(../dmxDaten/hero/hero-kuecheninspiration.jpg);
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)),
            url(../dmxDaten/hero/hero-kuecheninspiration.jpg);
        ;
        background-position: top right;
    }
    .hero-ausstellungen {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0))),
            url(../dmxDaten/hero/hero-ausstellungen.jpg);
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)),
            url(../dmxDaten/hero/hero-ausstellungen.jpg);
        ;
        background-position: center right;
    }
    .hero-innenausbau {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0))),
            url(../dmxDaten/hero/hero-innenausbau.jpg);
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)),
            url(../dmxDaten/hero/hero-innenausbau.jpg);
        ;
        background-position: center right;
    }
    .hero-tueren {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0))),
            url(../dmxDaten/hero/hero-tueren.jpg);
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)),
            url(../dmxDaten/hero/hero-tueren.jpg);
        ;
        background-position: bottom center;
    }

    /*--------------------------------------------------------------
    # Half-Size Hero
    --------------------------------------------------------------*/

    .hero-kuechenplaner {
        background-image: url(../dmxDaten/hero/hero-kuechenplaner-lg.jpg);
        background-position: bottom right;
    }

    .hero-objektausbau {
        background-image: url(../dmxDaten/hero/hero-objektausbau-lg.jpg);
        background-position: center right;
    }

    .hero-baeder {
        background-image: url(../dmxDaten/hero/hero-baeder-lg.jpg);
        background-position: center right;
    }

    .hero-schlafsysteme-new {
        background-image: url(../dmxDaten/hero/hero-schlafsysteme-new-lg.jpg);
        background-position: center right;
    }

    .hero-moebel {
        background-image: url(../dmxDaten/hero/hero-moebel-lg.jpg);
        background-position: center right;
    }

    .hero-boeden {
        background-image: url(../dmxDaten/hero/hero-boeden-lg.jpg);
        background-position: center right;
    }

    .hero-weinkeller {
        background-image: url(../dmxDaten/hero/hero-weinkeller-lg.jpg);
        background-position: center right;
    }

    .hero-schreiner {
        background-image: url(../dmxDaten/hero/hero-schreiner-lg.jpg);
        background-position: center right;
    }

    .hero-architekten {
        background-image: url(../dmxDaten/hero/hero-architekten-lg.jpg);
        background-position: center right;
    }

    .hero-privatkunden {
        background-image: url(../dmxDaten/hero/hero-privatkunden-lg.jpg);
        background-position: center right;
    }

    .hero-lohnarbeiten {
        background-image: url(../dmxDaten/hero/hero-lohnarbeiten-lg.jpg);
        background-position: center right;
    }

    .hero-acrylsteinprodukte {
        background-image: url(../dmxDaten/hero/hero-acrylsteinprodukte-lg.jpg);
        background-position: center right;
    }

    /*--------------------------------------------------------------
    # Schlafsysteme
    --------------------------------------------------------------*/

    @media (max-height: 750px) and (min-width: 992px) {
        .hero-schlafsysteme-new {
            padding-top: 198px;
            padding-bottom: 80px;
            height: 100%;
        }
    }

    .icon-wrap {
        display: block;
        max-height: 50px;
        max-width: 50px;
        margin-left: 0;
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
    }

    .bg-trinatura {
        width: 100%;
        height: 50vh;
        background-size: cover;
        background-repeat: no-repeat;
        background-image: url(../dmxDaten/innenausbau/schlafsysteme/background-trinatura.jpg);
        background-position: center center;
    }

    .bg-lohnarbeiten {
        width: 100%;
        height: 50vh;
        background-size: cover;
        background-repeat: no-repeat;
        background-image: url(../dmxDaten/tueren/lohnarbeiten/background-lohnarbeiten.jpg);
        background-position: center top;
    }

    @media (min-width: 1600px) {
    .bg-trinatura {
        height: 70vh;
    }
    .bg-lohnarbeiten {
        height: 70vh;
    }
    }

    @media (max-width: 767px) {
    .icon-wrap {
        margin-bottom: 20px;
    }
    .bg-trinatura {
        height: 30vh;
    }
    .bg-lohnarbeiten {
        height: 30vh;
    }
    }

.background-bereiche {
    height: 600px;
    position: relative;
}

@media (max-width: 1199px) {
.background-bereiche {
    height: 500px;
}
}

@media (max-width: 991px) {
.background-bereiche {
    height: 400px;
}
}

@media (max-width: 767px) {
.background-bereiche {
    height: 200px;
}
}

.background-bereiche-1 {
    padding-left: 0;
    padding-right: 4px;
}

.background-bereiche-2 {
    padding-left: 2px;
    padding-right: 2px;
}

.background-bereiche-3 {
    padding-left: 4px;
    padding-right: 0;
}

@media (max-width: 767px) {
.background-bereiche-1 {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 4px;
}

.background-bereiche-2 {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 4px;
}

.background-bereiche-3 {
    padding-left: 0;
    padding-right: 0;
}
}

.bereich-1 {
    position: relative;
    height: 100%;
    background-image: url("../dmxDaten/home/background-bereich-2025-1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
}

.bereich-2 {
    position: relative;
    height: 100%;
    background-image: url("../dmxDaten/home/background-bereich-2025-2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
}

.bereich-3 {
    position: relative;
    height: 100%;
    background-image: url("../dmxDaten/home/background-bereich-2025-3.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
}

.background-bereiche-1 .bereich-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 29, 28, 0.7);
    z-index: 1;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}


.background-bereiche-1:hover .bereich-1::before {
    opacity: 1;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

.background-bereiche-2 .bereich-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 29, 28, 0.7);
    z-index: 1;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}


.background-bereiche-2:hover .bereich-2::before {
    opacity: 1;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

.background-bereiche-3 .bereich-3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 29, 28, 0.7);
    z-index: 1;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}


.background-bereiche-3:hover .bereich-3::before {
    opacity: 1;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

.background-bereiche .container {
    position: relative;
    z-index: 2;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

.background-bereiche:hover .container {
    opacity: 1;
}

/*--------------------------------------------------------------
# Header HOme
--------------------------------------------------------------*/

    .video-container {
        height: 100vh;
        width: 100%;
        position: relative;
    }

    .video-container video {
        width: 100%;
        height: 100%;
        position: absolute;
        -o-object-fit: cover;
           object-fit: cover;
        z-index: 0;
    }

    /* Just styling the content of the div, the *magic* in the previous rules */
    .video-container .caption {
        z-index: 3;
        position: absolute;
        text-align: left;
        color: #ffffff;
        bottom: 0;
        max-width: 840px;
    }


    @media (max-width: 991px) {
    .video-container .caption {
        max-width: 640px;
    }
    }

    .caption h1 {
        color: #ffffff;
    }

    .video-container .overlay {
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 2;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, #1D1D1B), color-stop(30%, #1D1D1B00), color-stop(80%, #1D1D1B00), color-stop(90%, #1D1D1B)) no-repeat;
    background: linear-gradient(0deg, #1D1D1B 20%, #1D1D1B00 30%, #1D1D1B00 80%, #1D1D1B 90%) no-repeat;
        opacity: 0.2;
    }

    .videosm {
        width: 100%;
        height: auto;
    }

    @media (max-height: 450px) and (min-width: 768px) {
        .video-container {
            height: 450px;
        }
    }

    a.header-link:hover {
        color: #ffffff;
    }

/*--------------------------------------------------------------
# Outdoor-Küchen
--------------------------------------------------------------*/


    .header-normal {
        min-height: 100svh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        position: relative;
        padding-top: calc(120px + 100px);
        padding-bottom: 120px;
    }

    .slideshow-controlls {
        position: absolute;
        width: 100%;
        bottom: 0;
        padding-bottom: 40px;
        z-index: 3;
    }

    .header-bg-half {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        z-index: 1;
        width: 50%;
        right: 0;
        left: auto;
        overflow: hidden;
    }

    #carouselHeaderHalf .carousel-inner,
    #carouselHeaderHalf .carousel-item {
        height: 100%;
    }

    #carouselHeaderHalf .carousel-item img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
    }

    /* Chevron Buttons via CSS Mask */
    .header-arrow {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1.5px solid rgba(255, 255, 255, 0.5);
        background: transparent;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        cursor: pointer;
        -webkit-transition: background 0.2s;
        transition: background 0.2s;
    }

    .header-arrow:hover {
        background: rgba(255, 255, 255, 0.15);
    }

    .header-arrow.arrow-prev::before,
    .header-arrow.arrow-next::before {
        content: '';
        display: block;
        width: 18px;
        height: 18px;
        background-color: white;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
        -webkit-mask-size: 18px;
        mask-size: 18px;
    }

    .header-arrow.arrow-prev::before {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E");
    }

    .header-arrow.arrow-next::before {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
    }

    .card-outdoor-kuechen {
        border: 1px solid var(--grey);
    }

    .card-outdoor-kuechen h3 {
        font-size: 22px;
        font-weight: 300;
    }

    .card-outdoor-kuechen img {
        width: 32px;
        height: 32px;
        margin-bottom: 1rem;
    }

    @media (max-width: 1199px) {
        .header-normal {
            min-height: 100%;
            display: block;
            padding-top: 120px;
            padding-bottom: 120px;
        }

        .position-relative-mobile {
            position: relative;
            width: 100%;
            aspect-ratio: 3 / 2;
            overflow: hidden;
            margin-bottom: 120px;
        }

        .header-bg-half {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            margin-top: 0;
            border-radius: 0;
            left: 0;
            right: 0;
        }
    }

    @media (max-width: 991px) {
        .header-normal {
            padding-bottom: 80px;
        }

        .position-relative-mobile {
            margin-bottom: 80px;
        }

        .card-outdoor-kuechen h3 {
            font-size: 18px;
        }
    }

    @media (min-width: 1200px) {

        .header-bg,
        .header-bg-half {
            background-size: cover;
            background-position: center;
            will-change: transform;
            -webkit-transform: translateY(0);
                    transform: translateY(0);
        }

        .pt-lg {
            padding-top: 120px;
        }
    }

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/

    .faq-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .faq-item:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
    .faq-toggle {
        width: 100%;
        background: none;
        border: none;
        padding: 20px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 24px;
        cursor: pointer;
        text-align: left;
    }
    .faq-toggle h3 {
        margin: 0;
        color: white;
        font-size: 22px;
    }
    .faq-icon {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        width: 20px;
        height: 20px;
        position: relative;
    }
    .faq-icon::before,
    .faq-icon::after {
        content: '';
        position: absolute;
        background-color: var(--primary-color);
        border-radius: 2px;
        -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
        transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
        transition: transform 0.25s ease, opacity 0.25s ease;
        transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
    }
    .faq-icon::before {
        width: 20px;
        height: 2px;
        top: 9px;
        left: 0;
    }
    .faq-icon::after {
        width: 2px;
        height: 20px;
        top: 0;
        left: 9px;
    }
    .faq-toggle[aria-expanded="true"] .faq-icon::after {
        -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
        opacity: 0;
    }
    .faq-body {
        padding-bottom: 20px;
        line-height: 1.7;
    }

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

    .sidebar {
        position: fixed;
        z-index: 999;
        top: 50vh;
        right: 0;
        overflow-x: hidden;
        margin-top: -24px;
    }

    .sidebar-link {
        background-color: var(--primary-color) !important;
        padding: 12px;
    }

    .sidebar-link:hover {
        background-color: var(--text-color) !important;
    }

    .sideboard-icon {
        width: 28px;
    }

    .toast-position {
        bottom: 0;
    }


    @media (max-width: 767px) {
        .sidebar {
            bottom: 0;
            top: auto;
            margin-top: 0;
            width: 100%;
            background-color: var(--primary-color) !important;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -webkit-box-pack: center !important;
                -ms-flex-pack: center !important;
                    justify-content: center !important;
        }

        .sidebar a {
            height: 45px;
            display: inline-block;
            padding-top: 10px;
            padding-bottom: 10px;
        }

        .sidebar-link {
            display: inline;
        }

        .sideboard-icon {
            width: 22px;
            margin-top: -2px;
        }

    .toast-position {
        bottom: 50px;
    }
    }

/*--------------------------------------------------------------
# Tiny MCE
--------------------------------------------------------------*/

.tox-tinymce {
  top: auto!important;
  bottom: 0!important;
  position: fixed!important;
}