/* Variables */

.otgs-development-site-front-end{
    display: none;
}

/* body * {
    border: 1px solid red;
} */

:root{
    --klaeser-white: #FFFFFF;
    --klaeser-black: #000000;
    --klaeser-red: #ba2726;
    --klaeser-blue: #394854;
    --klaeser-gray: #9ca3aa;
    --klaeser-lightgray: #F4F6FB;
    --klaeser-darkmode-darkgray: #121212;
    --klaeser-darkmode-lightgray: #E6E6E6;
    --document-width: 1440px;
    margin: 0 auto;
}

/* Global Values */

.bbox-max{
    max-width: 1200px;
    margin: 0 auto;
}

.bbox-pad{
    padding: 0 120px;
}

.z-index-top{
    position: relative;
    z-index: 10;
}

@font-face {
    font-family: proxima-nova;
    src: url('../packages/proxima-nova/ProximaNova-Regular.woff2');
    font-weight: 400;
}

@font-face {
    font-family: proxima-nova;
    src: url('../packages/proxima-nova/ProximaNova-Extrabold.woff2');
    font-weight: 800;
}

body{
    font-family: 'proxima-nova', sans-serif;
    margin: 0;
    background-color: var(--klaeser-lightgray);
}

h1{
    color: var(--klaeser-white);
    margin: 0;
    font-size: 96px;
    font-weight: 800;
    line-height: 97.5px;
}

h2{
    font-size: 36px;
    line-height: 41.6px;
    font-weight: 800;
    color: var(--klaeser-white);
    margin: 0;
}

h3{
    color: var(--klaeser-red);
    font-size: 24px;
    font-weight: 650;
    line-height: 30px;
}

p{
    color: var(--klaeser-blue);
    line-height: 1.5;
    font-size: 18px;
    font-weight: 400;
}

main{
    margin: 0 auto;
}

a{
    font-size: 18px;
    color: var(--klaeser-blue);
    text-decoration: underline;
    text-decoration-color: currentColor;
}

a:hover{
    text-decoration: underline;
    text-decoration-color: currentColor;
}

textarea {
    font-family: 'proxima-nova', sans-serif;
    font-size: 16px;
}

/* Top Bar */

.top-bar a, .sec-bar a, .m10-button a {
    text-decoration: none;
}

.top-bar{
    height: 70px;
    background-color: var(--klaeser-red);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.top-bar-icon-container{
    width: 235px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.klaeser-logo-href{
    display: flex;
}

#klaeser-logo-img{
    width: 185px;
}

.top-bar-menu{
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#menu-top-bar{
    padding-left: 15px;
}

.top-bar-menu li{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
}

.top-bar-menu li + li::before{
    content: "";
    position: absolute;
    height: 20px;
    width: 1px;
    background: var(--klaeser-white);
}

.top-bar-menu li a, #lang-switch-icon{
    color: var(--klaeser-white);
    padding: 0 20px;
}

#top-bar-menu-lang-switch{
    position: relative;
}

#lang-selection-box{
    width: 100%;
    height: 100px;
    background-color: var(--klaeser-red);
    position: absolute;
    z-index: 6000;
    top: 25px;
    transition: max-height 0.5s;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

#lang-selection-container{
    display: flex;
    flex-direction: column;
}

#lang-selection-container p {
    color: var(--klaeser-white);
    margin: 0;
}

.top-bar-menu > .current-page-ancestor{
    text-shadow: 1px 0px 0px var(--klaeser-white);
}

.top-bar-menu > .current_page_item{
    text-shadow: 1px 0px 0px var(--klaeser-white);
}

/* Secondary Bar */

.sec-bar{
    height: 50px;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    background-color: var(--klaeser-lightgray);
    z-index: 5000;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.sec-bar-current-page{
    padding-left: 35px;
}

.sec-bar-menu {
    list-style-type: none;
    position: absolute;
    left: 275px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sec-bar-menu li{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
}

.sec-bar-menu li + li::before{
    content: "";
    position: absolute;
    height: 20px;
    width: 1px;
    background-color: var(--klaeser-blue);
}

.sec-bar-menu li a{
    padding: 0 20px;
    font-size: 14px;
}

.sec-bar-menu > .current_page_item a {
    text-shadow: 1px 0px 0px var(--klaeser-blue);
}

/* FLOATING LANGUAGE BUTTON */

.mobile-lang-switch-container{
    display: none;
}

.floating-lang-switch-container{
    display: block;
    position: fixed;
    bottom: 50px;
    right: 20px;
    background-color: var(--klaeser-red);
    z-index: 10000;
}

.floating-lang-switch-button{
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-lang-switch * {
    color: var(--klaeser-white);
}

.floating-lang-switch{
    max-width: 0px;
    max-height: 0px;
    transition: all 0.5s;
    display: flex;
    opacity: 0;
    overflow: hidden;
}

.floating-lang-switch:hover{
    max-width: 100px;
    max-height: 100px;
    opacity: 1;
}

.floating-lang-switch-icon{
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpml-ls ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* MOBILE MENU */

.mobile-menu-container{
    display: none;
}

/* Search Page */

#search-page-header{
    color: var(--klaeser-red);
}

/*Modules*/

/* Persistent CTA */

.persistent-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 80%;
    max-width: 400px;
}

.persistent-cta a {
    display: block;
    background: white;
    border: 1px solid hsla(0, 66%, 44%, 1);
    padding: 16px 40px 16px 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.persistent-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.persistent-cta a::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid hsla(0, 66%, 44%, 1);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.persistent-cta h3 {
    color: var(--klaeser-red) !important;
    margin: 0;
}

/* Module 01 */

.module-01{
    padding: 0 120px;
    display: flex;
    align-items: left;
    flex-direction: column;
}

.m01-header{
    margin: 400px 200px 0px 0px;
}

.m01-description{
    padding: 100px 200px 100px 0px;
}

/*Module 02*/

.module-02{
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.arrow-container{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 70px;
}

.m02-columns{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
    padding-bottom: 65px;
}

.m02-column-1{
    flex: 30%;
}

.m02-column-1 h2{
    color: var(--klaeser-red);
}

.m02-column-2{
    flex: 70%;
}

.m02-column-2 p{
    margin: 0;
}

/* MODULE 02 CAROUSEL */

.m02-carousel-wrapper{
    padding: 0px 120px 140px 120px;
}

.m02-carousel-bbox-max{
    max-width: 1200px;
    margin: 0 auto;
}

.m02-carousel{
    width: 100vw;
}

.m02-carousel-cell{
    min-height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-right: 35px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.m02-cell-text{
    width: 840px;
    height: 140px;
    background-color: rgba(186, 39, 38, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
}

.m02-cell-description{
    margin: 0;
    text-align: center;
    color: var(--klaeser-white);
}

.m02-carousel-cell::before{
    display: block;
    content: '';
}

.m02-carousel .flickity-page-dots{
    display: flex;
    padding-right: 50px;
    bottom: -45px;
}

.m02-carousel .flickity-page-dots .dot.is-selected{
    background-color: var(--klaeser-red);
}

.m02-carousel .flickity-page-dots .dot{
    background: var(--klaeser-red);
    height: 6px;
    width: 100px;
    margin: 0;
    border-radius: 0;
}

.m02-carousel .flickity-page-dots {
	counter-reset: a;
}

.m02-carousel .flickity-page-dots .dot::after {
	content: "0"counter(a);
	counter-increment: a;
    color: var(--klaeser-red);
    font-size: 18px;
    font-weight: 800;
    position: relative;
    top: 20px;
}

/*Module 03*/

.module-03{
    background-color: var(--klaeser-red);
}

.module-03 *{
    color: white;
}

.m03-flexbox{
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    padding: 0;
}

.m03-flex-item{
    flex: 33%;
}

hr.solid-divider-m03{
    margin: 0;
    height: 70px;
    width: 0px;
    color: var(--klaeser-white);
    border-left: 1px solid var(--klaeser-white);
}

.m03-header *{
    line-height: 20px;
    margin: 0;
    padding-top: 10px;
}

.m03-paragraph p{
    color: var(--klaeser-white);
    font-size: 36px;
    line-height: 0px;
}

/*Module 04*/

.module-04{
    overflow: hidden;

}

.m04-flexbox{
    display: flex;
}

.m04-left{
    background-color: var(--klaeser-blue);
    flex: 50%;
    padding: 70px;
    padding-left: 120px;
}

.m04-map-header{
    position: relative;
    z-index: 1;
}

#m04-map-header-1{
    color: var(--klaeser-gray);
}

#m04-map-header-2{
    color: var(--klaeser-white);
}

.m04-map-container{
    position: relative;
    padding-top: 40px;
    display: flex;
    justify-content: center;
}

.m04-map-img{
    width: 100%;
    object-fit: contain;
}

.m04-map-point{
    width: 12px;
    height: 12px;
    background-color: var(--klaeser-red);
    position: absolute;
    transition: all 0.2s;
}

#m04-map-point-01{
    left: 29%;
    top: 47%;
}

#m04-map-point-02{
    left: 64%;
    top: 69%;
}

#m04-map-point-03{
    left: 47%;
    top: 36%;
}

#m04-map-point-04{
    left: 35%;
    top: 61%;
}

#m04-map-point-05{
    left: 55%;
    top: 69%;
}

#m04-map-point-06{
    left: 69%;
    top: 47%;
}

.m04-right{
    background-color: var(--klaeser-lightgray);
    flex: 50%;
    padding: 50px 70px 70px 70px;
    z-index: 1;
}

/* M04 ACCORDION*/

.acc01{
    padding: 0;
}

.acc01-content{
    overflow: hidden;
}

.acc01-label{
    position: relative;
    cursor: pointer;
    min-height: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.acc01-label h3 {
    /* margin-bottom: 0; */
    max-width: 85%;
}

.acc01-label p {
    margin-top: 0;
}

.acc01-status-box{
    width: 35px;
    height: 35px;
    border: 1px solid var(--klaeser-blue);
    display: flex;
    justify-content: center;
    align-items: center;
}

.acc01-status-box::after{
    content: "+";
    color: var(--klaeser-blue);
    display: block;
    font-size: 45px;
    transition: transform 0.5s;
}

.acc01-label.active .acc01-status-box::after{
    transform: rotate(-45deg);
    transition: transform 0.5s;
}

.acc01-description{
    overflow: hidden;
    max-height: 0px;
    transition: max-height 0.5s, padding 0.5s;
}

/*Module 05*/

.module-05{
    height: 540px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 0 60px 0 0;
    padding: 0 120px;
}

.m05-banner-header{
    padding-bottom: 50px;
}

/*Module 06*/

.module-06{
    overflow: hidden;
    padding-top: 70px;
    padding-bottom: 70px;
}

#m06-header{
    color: var(--klaeser-red);
}

.m06-header * {
    color: var(--klaeser-red);
}

.m06-content{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
}

#m06-content-title * {
    color: var(--klaeser-red);
}

.m06-content-left{
    width: 50%;
}

.m06-content-right{
    width: 50%;
}

/*Module 07*/

.module-07{
    background-color: var(--klaeser-red);
    padding: 70px 0 120px 0;
    padding-left: 120px;
}

.m07-bbox-max{
    max-width: 1320px;
    margin: 0 auto;
}

.m07-flexbox{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
}

.m07-left{
    flex: 30%;
}

.m07-left * {
    color: var(--klaeser-white);
}

.m07-text{
    margin-bottom: 40px;
}

.m07-button{
    text-decoration: none;
    border: 1px solid var(--klaeser-white);
    background-color: var(--klaeser-red);
    transition: 0.3s;
    text-align: center;
    font-size: 18px;
    color: var(--klaeser-white);
    padding: 15px 28px;
}

.m07-button:hover{
    text-decoration: none;
    background-color: var(--klaeser-white);
    cursor: pointer;
    color: var(--klaeser-red) !important;
}

/*Module 07 Carousel*/

.m07-carousel{
    flex: 70%;
    width: 100vw;
}

.m07-carousel .flickity-viewport{
    height: 100%;
}

.m07-carousel-cell{
    width: 500px;
    min-height: 300px;
    background-color: var(--klaeser-white);
    border-radius: 0 50px 0 0;
    overflow: hidden;
    margin-right: 30px;
    text-decoration: none;
    padding: 0;
}

.m07-carousel-cell-logo{
    width: 100%;
    height: 100%;
    height: 300px;
}

.m07-carousel-cell-logo img {
    width: 100%;
    height: 100%;
    height: 300px;
    object-fit: cover;
}

.m07-cell-title{
    padding-left: 40px;
    text-decoration: underline;
    text-decoration-color: var(--klaeser-red);
}

.m07-cell-title * {
    color: var(--klaeser-red);
}

.m07-cell-text{
    padding: 0 40px 40px 40px;
}

.m07-cell-text * {
    margin: 0;
}

.m07-carousel-cell::before{
    display: block;
    content: '';
}

.m07-carousel .flickity-page-dots{
    display: flex;
}

.m07-carousel .flickity-page-dots{
    bottom: -20px;
}

.m07-carousel .flickity-page-dots .dot{
    background: var(--klaeser-white);
    height: 6px;
    width: 100px;
    margin: 0;
    border-radius: 0;
}

.m07-carousel .flickity-page-dots {
	counter-reset: a;
}

.m07-carousel .flickity-page-dots .dot::after {
	content: "0"counter(a);
	counter-increment: a;
    color: var(--klaeser-white);
    font-size: 18px;
    font-weight: 800;
    position: relative;
    top: 20px;
}

/*Module 08*/

.module-08{
    padding: 70px 0;
}

.m08-bbox-max{
    max-width: 1320px;
    margin: 0 auto;
    padding-right: 120px;
}

.m08-title * {
    color: var(--klaeser-red);
}

.m08-flexbox{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.m08-left{
    flex: 40%;
}

#m08-img{
    width: 100%;
    object-fit: cover;
    border-top-right-radius:100px;
}

.m08-right{
    padding-left: 70px;
    flex: 60%;
}

.m08-content-text p {
    margin: 0;
}

.m08-cta-button, .m08-cta-button:hover{
    text-decoration: none;
}

.m08-cta-button p {
    border: 1px solid var(--klaeser-red);
    background-color: var(--klaeser-lightgray);
    transition: 0.3s;
    text-align: center;
    font-size: 18px;
    color: var(--klaeser-red);
    padding: 15px 28px;
    margin-top: 30px;
}

.m08-cta-button:hover p {
    background-color: var(--klaeser-red);
    cursor: pointer;
    color: var(--klaeser-white);
}

/*Divider*/

.m08-m09-divider{
    border-top: 1px solid var(--klaeser-blue);
    width: 1200px;
}

/*Module 09*/

.module-09{
    padding: 70px 120px;
}

.m09-background-gray{
    background-color: var(--klaeser-lightgray);
}

.m09-background-red{
    background-color: var(--klaeser-red);
}

.m09-header-gray * {
    color: var(--klaeser-red);
}

.m09-header-gray a {
    font-size: inherit;
}

.m09-header-red * {
    color: var(--klaeser-white);
}

.m09-header-red a {
    font-size: inherit;
}

.m09-content-gray * {
    padding-right: 10px;
    color: var(--klaeser-blue);
}

.m09-content-red * {
    padding-right: 10px;
    color: var(--klaeser-white);
}

.m09-content{
    margin: 0;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}

.m09-content-list-item{
    width: 90%;
    padding-top: 30px;
    break-inside: avoid-column;
    list-style-type: none;
}

.m09-content-list-item * {
    margin: 0;
}

.m09-table-header{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: first baseline;
    justify-content: flex-start;
}

.m09-header-red::before{
    content: "\25A0";
    color: var(--klaeser-lightgray);
    position: absolute;
    left: -40px;
}

.m09-header-gray::before{
    content: "\25A0";
    color: var(--klaeser-red);
    position: absolute;
    left: -40px;
}

/*Module 10*/

.module-10{
    height: 364px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--klaeser-white);
}

.m10-text * {
    text-align: center;
}

.m10-button{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--klaeser-white);
    transition: 0.3s;
    margin-top: 50px;
}

.m10-button p {
    color: var(--klaeser-white);
    margin: 5px 80px;
}

.module-10 a{
    color: var(--klaeser-white);
    line-height: 41.6px;
}

.m10-button:hover{
    background-color: var(--klaeser-white);
    cursor: pointer;
}

.m10-button:hover * {
    color: var(--klaeser-blue);
}

/*Module 11*/

.module-11{
    padding: 70px 120px;
}

.m11-header * {
    color: var(--klaeser-red);
}

#m11-faq-question{
    color: var(--klaeser-blue);
    margin: 0;
    padding-right: 50px;
}

hr.solid-divider-faq{
    color: transparent;
    border-top: 1px solid var(--klaeser-blue);
}

/*Module 11 Accordion*/

.acc02{
    padding: 0px;
    margin: 0;
}

.acc02 li{
    list-style: none;
    width: 100%;
    border-radius: 8px;
    padding: 15px 0;
}

.acc02 input[type="checkbox"]{
    display: none;
}

.acc02 li label{
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.acc02-status-box{
    width: 35px;
    height: 35px;
    border: 1px solid var(--klaeser-blue);
    position: absolute;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.acc02-status-box::after{
    content: "+";
    color: var(--klaeser-blue);
    display: block;
    font-size: 45px;
    transition: transform 0.5s;
}

.acc02 .acc02-content{
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
}

.acc02-content p {
    margin-bottom: 0;
}

.acc02 input[type="checkbox"]:checked + label + .acc02-content{
    max-height: 100px;
}

.acc02 input[type="checkbox"]:checked + #acc02-label .acc02-status-box::after{
    transform: rotate(-45deg);
    transition: transform 0.5s;
}

/*Module 12*/

.module-12{
    background-color: var(--klaeser-blue);
    padding: 70px 120px;
}

.module-12 * {
    color: var(--klaeser-white);
}

.m12-header{
    padding: 0 0 70px 0;
}

.m12-title-left, .m12-title-right{
    margin-bottom: 30px;
}

.m12-content{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.m12-content-tabs{
    display: none;
}

#m12-content-left{
    width: 50%;
}

#m12-content-right{
    width: 50%;
}

hr.solid-divider-acc03{
    color: transparent;
    border-top: 1px solid var(--klaeser-white);
    margin: 0;
}

/*Module 12 Accordion*/

.acc03{
    padding: 0;
    margin: 0;
}

.acc03 li{
    list-style: none;
    width: 100%;
    border-radius: 8px;
    padding: 20px 0;
}

.acc03 li label{
    position: relative;
    display: flex;
    align-items: center;
}

.acc03-warning-icon{
    display: flex;
    align-items: center;
}

.acc03-warning-img{
    width: 50px;
    height: 50px;
    padding-right: 34px;
}

.acc03-header{
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.acc03-header-title h3{
    font-size: 24px;
    font-weight: 800;
    color: var(--klaeser-white);
    padding-top: 0px;
    margin: 0;
    margin-bottom: 10px;
}

.acc03-header-description p{
    margin-bottom: 0px;
    margin-top: 0px;
}

.acc03-status-box{
    width: 35px;
    height: 35px;
    border: 1px solid var(--klaeser-white);
    position: absolute;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.acc03-status-box::after{
    content: "+";
    color: var(--klaeser-white);
    display: block;
    font-size: 45px;
    transition: transform 0.5s;
}

.acc03 input[type="checkbox"]{
    display: none;
}

.acc03 .acc03-content{
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s;
}

.acc03-content * {
    margin: 20px 0 0 0;
}

.acc03 input[type="checkbox"]:checked + #acc03-label + .acc03-content{
    max-height: 300px;
}


.acc03 input[type="checkbox"]:checked + #acc03-label .acc03-warning-icon + .acc03-header + .acc03-status-box::after{
    transform: rotate(-45deg);
    transition: transform 0.5s;
}

/*Module 13*/

.module-13{
    padding: 0;
}

.m13-flexbox{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 70px 37px;
    max-width: 1200px;
    padding: 70px 20px;
}

.m13-tile{
    height: 307px;
    width: 375px;
    background-color: var(--klaeser-red);
    border-radius: 0 40px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.m13-tile h3{
    color: var(--klaeser-white);
    line-height: 30px;
    margin: 0;
}

.m13-tile-title{
    margin: 24px 34px 0;
}

.m13-tile-subtitle{
    margin: 0px 34px;
    flex-grow: 0.5;
}

.m13-tile-subtitle p{
    color: var(--klaeser-white);
    margin: 0;
}

.m13-tile-content{
    padding: 0 0 0 34px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.m13-tile-content p{
    color: var(--klaeser-white);
    margin: 0;
}

.m13-tile-content-row{
    position: relative;
    display: flex;
    align-items: center;
}

.m13-time-text, .m13-location-text{
    position: absolute;
    left: 40px;
}

.m13-tile-footer{
    background-color: var(--klaeser-blue);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 30px;
}

.m13-tile-footer-icon{
    display: flex;
    padding: 0 15px;
}

#m13-tile-footer-icon{
    max-width: 22px;
}

/*Module 14*/

.module-14{
    position: relative;
    background-color: var(--klaeser-red);
    padding: 5px 120px;
}

.m14-main{
    display: flex;
    flex-direction: column;
}

.module-14 *{
    color: var(--klaeser-white);
}

.m14-title-flexbox{
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

.m14-description p{
    margin-top: 26px;
}

.m14-job-description{
    padding-bottom: 20px;
}

.m14-infos{
    display: flex;
    flex-direction: row;
    column-gap: 60px;
    padding-bottom: 5px;
}

.m14-info-time, .m14-info-location{
    display: flex;
    align-items: center;
    gap: 10px;
}

.m14-bottom{
    padding: 0 120px;
    background-color: var(--klaeser-blue);
}

.m14-footer{
    height: 70px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.m14-footer-bg{
    background-color: var(--klaeser-blue);
}

.m14-footer-icon{
    display: flex;
}

#m14-footer-icon{
    transform: rotate(180deg);
    max-width: 22px;
}

#m14-footer-text{
    color: var(--klaeser-white);
}

/* Module 15 */

input[type="text"]{
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    -webkit-user-modify: read-write-plaintext-only;
}

.module-15{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 70px 120px;
}

#m15-kf-title{
    color: var(--klaeser-red);
    width: 100%;
}

#m15-kf-description{
    width: 100%;
}

.m15-fa-title-bar{
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 50px;
    cursor: pointer;
}

.m15-fa-status-box{
    height: 35px;
    width: 35px;
    border: 1px solid var(--klaeser-red);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.m15-fa-status-box::after{
    content: "+";
    color: var(--klaeser-red);
    font-size: 45px;
    transition: transform 0.5s;
}

.m15-fa-title-bar.active .m15-fa-status-box::after{
    transform: rotate(45deg);
    transition: transform 0.5s;
}

#m15-fa-title{
    color: var(--klaeser-red);
    width: 100%;
}

.m15-kf-item, .m15-fa-item{
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--klaeser-blue);
    background-color: var(--klaeser-lightgray);
    padding: 10px;
}

.m15-kf-item:focus, .m15-fa-item:focus{
    outline: none;
}

.wpcf7-form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.wpcf7-form p{
    width: 45%;
    overflow: hidden;
}

.wpcf7-form p label{
    color: var(--klaeser-red);
    font-size: 24px;
    font-weight: 650;
}

.m15-fa-content{
    max-height: 0px;
    transition: max-height 0.5s;
    overflow: hidden;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

p:has(.m15-label-nachricht) {
    width: 100%;
}

.m15-fa-content + p {
    width: 100%;
    padding-top: 30px;
}

.m15-fa-content + p * {
    font-size: 18px;
    font-weight: 400;
    color: var(--klaeser-blue);
}

.wpcf7-list-item{
    margin: 0 !important;
}

#m15-submit-btn{
    width: 100%;
    height: 50px;
    border-radius: 0px;
    border: none;
    background-color: var(--klaeser-red);
    color: white;
    cursor: pointer;
}

#m15-submit-btn:disabled{
    cursor: not-allowed;
    background-color: var(--klaeser-gray);
}

/* Friendly Captcha */

.frc-captcha{
    height: 50px;
    width: 312px;
    margin-top: 10px;
    background-color: var(--klaeser-lightgray) !important;
    border: none !important;
}

.frc-text{
    overflow: hidden;
}

/* Module 16 */

.module-16{
    height: 588px;
    padding: 0 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*Module 17*/

.module-17{
    background-color: var(--klaeser-blue);
    padding: 70px 120px;
}

.module-17 * {
    color: var(--klaeser-white);
}

.m17-header {
    padding: 0 0 70px 0;
}

.m17-title-left, .m17-title-right{
    padding-bottom: 30px;
}

.m17-content{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.m17-content-tabs{
    display: none;
}

#m17-content-left{
    width: 50%;
}

#m17-content-right{
    width: 50%;
}

hr.solid-divider-acc04{
    border-top: 1px solid var(--klaeser-white);
}

/*Module 17 Accordion*/

.acc04{
    padding: 0px;
    margin: 0px;
}

.acc04 li{
    list-style: none;
    width: 100%;
    border-radius: 8px;
    padding: 15px 0;
}

.acc04 li label{
    position: relative;
    display: flex;
    align-items: center;
}

.acc04-header{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: 40px;
}

.acc04-header-title h3{
    color: var(--klaeser-white);
    line-height: 25px;
    margin: 0;
    padding: 10px 0;
}

.acc04-status-box{
    width: 35px;
    height: 35px;
    border: 1px solid var(--klaeser-white);
    position: absolute;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.acc04-status-box::after{
    content: "+";
    color: var(--klaeser-white);
    display: block;
    font-size: 45px;
    transition: transform 0.5s;
}

.acc04 input[type="checkbox"]{
    display: none;
}

.acc04 .acc04-content{
    color: #555;
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s;
}

.acc04-content * {
    margin: 30px 0 0 0;
}

.acc04 input[type="checkbox"]:checked + #acc04-label + .acc04-content{
    max-height: 400px;
}

.acc04 input[type="checkbox"]:checked + #acc04-label .acc04-status-box::after{
    transform: rotate(-45deg);
    transition: transform 0.5s;
}

/*Module 18*/

.global-divider-item{
    color: transparent;
}

.global-divider-container-blue{
    width: 100%;
    height: 1px;
    background-color: var(--klaeser-lightgray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-divider-container-lightgray{
    width: 100%;
    height: 1px;
    background-color: var(--klaeser-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-divider-blue{
    border-top: 1px solid var(--klaeser-blue);
    margin: 0;
    width: 87vw;
    max-width: 1250px;
}

.global-divider-lightgray{
    border-top: 1px solid var(--klaeser-lightgray);
    margin: 0;
    width: 87vw;
    max-width: 1250px;
}

/* MODULE 19 */

.module-19{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 70px 120px;
}

#m19-bf-title{
    color: var(--klaeser-red);
    width: 100%;
}

#m19-bf-description{
    width: 100%;
}

.m19-bf-item{
    font-size: 16px;
    
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--klaeser-blue);
    background-color: var(--klaeser-lightgray);
    padding: 10px;
}

#m19-bf-anrede {
    border-radius: 0;
    -webkit-border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    color: black;
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 30px;
}

p:has(.m19-label-nachricht) {
    width: 100%;
}

p:has([data-name='acceptance-246']) {
    width: 100%;
    padding-top: 30px;
}

p:has([data-name='acceptance-246']) * {
    font-size: 18px;
    font-weight: 400;
    color: var(--klaeser-blue);
}

#m19-submit-btn{
    width: 100%;
    height: 50px;
    border-radius: 0px;
    border: none;
    background-color: var(--klaeser-red);
    color: white;
    cursor: pointer;
}

#m19-submit-btn:disabled{
    cursor: not-allowed;
    background-color: var(--klaeser-gray);
}

.wpcf7-not-valid-tip{
    padding: 10px;
    font-size: 16px !important;
}

/*Module 20*/

.module-20{
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.arrow-container{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 70px;
}

.m20-columns{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
    padding-bottom: 65px;
}

.m20-column-1{
    flex: 30%;
}

.m20-column-1 h2{
    color: var(--klaeser-red);
}

.m20-column-2{
    flex: 70%;
}

.m20-column-2 p{
    margin: 0;
}

/* MODULE 20 GALLERY */

.m20-gallery-wrapper{
    padding: 0px 120px 140px 120px;
}

.m20-gallery-flexbox{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    column-gap: 20px;
}

.m20-gallery-item{
    min-width: calc(20% - 20px);
    width: calc(20% - 20px);
    min-height: 191px;
    height: 191px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    text-decoration: none;
}

.m20-gallery-item-text{
    width: 100%;
    height: 70px;
    background-color: rgba(186, 39, 38, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
}

.m20-gallery-item-description{
    padding: 0 30px;
    color: var(--klaeser-white);
    font-size: 24px;
    transition: font-size 0.2s;
    text-align: center;
    line-height: 24px;
}

/* Module 21 */

.module-21{
    width: 100%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: black;

}

.module-21 video {
    max-width: 80%;
}

/* Module 22 */

.module-22 h1, .module-22 h2{
    color: var(--klaeser-red);
}

.module-22 li {
    color: var(--klaeser-blue);
}

.m22-bbox-max{
    max-width: 920px;
    margin: 0 auto;
}

/* Module 23 */

/* Hide History from Menu */

.sec-bar-menu .page-item-634{
    display: none;
}

.sec-bar-menu .page-item-302::before{
    content: none;
}

.module-23{
    padding: 0;
    background-color: var(--klaeser-blue);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.module-23 .arrow-container{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 70px;
}

.m23-columns{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
    padding-bottom: 65px;
}

.m23-columns * {
    color: var(--klaeser-lightgray);
}

.m23-column-1{
    flex: 30%;
}

.m23-column-2{
    flex: 70%;
}

.m23-column-2 p{
    margin: 0;
}

.m23-divider-container{
    background-color: transparent;
}

.m23-interactive{
    margin-bottom: -120px;
}

.m23-carousel-1{
    padding-top: 120px;
}

.m23-carousel-1-cell{
    margin-right: 100px;
    width: 700px;
    height: 350px;
    border-radius: 0 50px 0 0;
    overflow: hidden;

    display: flex;
}

.m23-carousel-1-cell::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(rgba(0,0,0,0) 75%, var(--klaeser-blue) 100%);
    pointer-events: none;
}

.m23-carousel-1-cell-left{
    width: 50%;
}

.m23-carousel-1-cell-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.m23-carousel-1-cell-right{
    width: 50%;
    background-color: var(--klaeser-lightgray);
}

.m23-carousel-1-cell-right-header{
    margin: 35px;
    color: var(--klaeser-red) !important;
}

.m23-carousel-1-cell-right-description * {
    margin: 0 35px;
    color: var(--klaeser-blue) !important;
}

.m23-carousel-1 .flickity-prev-next-button{
    top: 600px;
    z-index: 5;
}

.m23-carousel-2{
    z-index: 2;
}

.m23-carousel-2-cell{
    margin-right: -200px;
}

.m23-carousel-2-cell-content{
    width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;

    transform: scale(1);
    transition: transform 0.2s;
}

.m23-carousel-2-cell.is-selected .m23-carousel-2-cell-content{
    transform: scale(1.2);
    transition: transform 0.2s;
}

.m23-carousel-2-cell h3 {
    margin: 50px 0;
    font-size: 64px;
    color: var(--klaeser-lightgray);
}

.m23-animation-container{
    position: relative;
    top: -70px;
}

.m23-animation-container::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 70px;
    left: 0;

    background-image: linear-gradient(to right, var(--klaeser-blue) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0) 75%, var(--klaeser-blue) 100%);
    pointer-events: none;
    z-index: 1;
}

.m23-animation-scene-container{
    position: relative;
    top: -160px;
    overflow: hidden;
}

.m23-animation-truck-container{
    position: relative;
    top: 40px;
    z-index: 3;

    display: flex;
    justify-content: center;
}

#m23-animation-truck{
    max-width: 420px;
    z-index: 1;
}

#m23-animation-truck.active{
    animation: shake 0.3s ease-out infinite alternate;;
}

@keyframes shake {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(5px);
    }
}

.m23-animation-road{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

#m23-animation-road-top{
    border-top: 2px solid var(--klaeser-lightgray);
}

#m23-animation-road-middle{
    height: 4px;
    background-image: linear-gradient(to right, var(--klaeser-lightgray) 33%, rgba(0,0,0,0) 0%);
    background-size: 500px 4px;
    background-repeat: repeat-x;
}

#m23-animation-road-bottom{
    border-top: 8px solid var(--klaeser-lightgray);
}

.m23-decade-indicator{
    position: absolute;
    top: 130px;
    z-index: 5;
}

.m23-decade-indicator-text{
    color: var(--klaeser-lightgray);
    font-size: 21px;
    position: absolute;
    top: -18px;
    left: 12px;
}

/* Module 24 */

.module-24-background{
    max-width: 1920px;
    margin: 0 auto;
    background: url('https://www.klaeser.de/wp-content/uploads/2025/04/module_24_background_image_1x.png') no-repeat center;
    background-size: cover;
}

.module-24{
    padding: 140px;
    display: flex;
    flex-direction: column;
    gap: 260px;
}

#m24-top-img{
    max-width: 380px;
}

.m24-bottom{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
}

.m24-description{
    display: flex;
    gap: 25px;
}

.m24-description *{
    margin: 0;
    color: var(--klaeser-white);
}

.m24-description-item{
    display: flex;
    align-items: center;
    gap: 10px;
}

.m24-cta{
    text-decoration: none;
    padding: 20px 50px;
    background-color: var(--klaeser-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.m24-cta p{
    margin: 0;
    color: var(--klaeser-black) !important;
    font-weight: 700;
}

/* Module 25 */

.module-25{
    padding-top: 60px;
    padding-bottom: 60px;
}

.module-25 h2{
    color: var(--klaeser-red);
}

.m25-language-selection{
    margin-top: 24px;
    
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.m25-language-selection *{
    color: white;
    text-decoration: none;
}

.m25-language-box{
    background-color: var(--klaeser-red);
    padding: 24px 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.m25-language-box *{
    margin: 0;
    line-height: 0;
}

/* Footer */

.contact-info{
    margin-top: 60px;
    margin-bottom: 60px;
}

hr.solid-divider-footer{
    color: transparent;
    border-top: 1px solid var(--klaeser-white);
}

hr.solid-divider-full{
    color: transparent;
    border-top: 1px solid var(--klaeser-white);
}

.footer-divider{
    height: 0px;
}

.footer{
    padding: 70px 120px;
    background: var(--klaeser-blue);
    padding-bottom: 0;
}

.footer-flexbox{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}

.footer-klaeser-logo{
    height: 68px;
    display: flex;
    align-items: center;
}

.footer-left, .footer-center, .footer-right{
    width: 320px;
}

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

.footer h3{
    color: var(--klaeser-white);
    font-size: 18px;
}

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

.footer-copyright{
    background-color: var(--klaeser-blue);
    padding: 10px 120px;
}

.copyright-text{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text * {
    font-size: 14px;
    color: var(--klaeser-white);
}

/*Media Queries*/

/* Computer Mode */

@media only screen and (min-width: 812px){

    /* MODULE 04 */

    .m04-map-container{
        transform: scale(1.5);
    }

    .m04-map-point:hover{
        cursor: pointer;
        transform: scale(1.5);
        transition: all 0.2s;
    }

    /* MODULE 20 */
    
    .m20-gallery-item:hover{
        max-width: 530px;
        width: 530px;
        max-height: 325px;
        height: 325px;
        transition: all 0.2s;
        text-decoration: none;
    }

    .m20-gallery-item:hover .m20-gallery-item-text .m20-gallery-item-description{
        font-size: 38px;
        transition: font-size 0.2s;
    }

    .m20-gallery-item-empty{
        display: none;
    }

}


/*Tablet Mode*/

@media only screen and (max-width: 1080px){

    .logo-img{
        display: none;
    }

    nav ul{
        justify-content: center;
    }

}

/*Phone Mode*/

@media only screen and (max-width: 811px){

    .bbox-max{
        max-width: none;
    }

    .bbox-pad{
        padding: 0 30px;
    }

    h1{
        font-size: 40px;
        line-height: 40px;
    }

    h2{
        font-size: 32px;
        line-height: 38px;
    }

    h3{
        font-size: 20px;
        line-height: 24px;
    }

    p{
        font-size: 16px;
        line-height: 22px;
    }

    a{
        font-size: 16px;
        line-height: 22px;
    }

    /* MENUS */
    
    .top-bar-menu{
        display: none;
    }

    .sec-bar{
        display: none;
    }

    .top-bar{
        align-items: flex-start;
        justify-content: space-between;
    }

    .floating-lang-switch-container{
        display: none;
    }

    .mobile-lang-switch-container{
        background-color: var(--klaeser-red);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

    .mobile-lang-switch-button{
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-lang-switch-icon{
        display: flex;
    }

    .mobile-lang-switch-icon img {
        width: 25px;
    }

    .mobile-lang-switch{
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.5s;
    }

    .mobile-lang-switch.active{
        max-height: 100px;
    }

    .mobile-lang-switch .wpml-ls ul li {
        padding: 10px 0;
    }

    .mobile-lang-switch a {
        color: var(--klaeser-white);
    }

    .mobile-menu-container{
        position: fixed;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
        min-width: 272px;
        display: block;
    }

    .mobile-menu-container * {
        color: var(--klaeser-white);
    }

    .mobile-menu-container > * {
        box-shadow: 0px 0px 15px 10px rgba(0,0,0,0.1);
    }

    .mm-current-page{
        height: 60px;
        background-color: var(--klaeser-red);
        border-radius: 15px;
        display: flex;
        justify-content: center;
        overflow: hidden;
        z-index: 1;

        display: flex;
        align-items: center;
    }

    .mm-current-page-flex-item * {
        text-align: center;
        font-size: 18px;
        margin: 0;
        padding: 0 70px 0 10px;
    }

    .mm-current-page-flex-item h3{
        font-weight: 800;
    }

    .mm-hamburger{
        height: 60px;
        width: 60px;
        position: absolute;
        bottom: 0px;
        right: 0px;
        background-color: var(--klaeser-blue);
        border-radius: 0 15px 15px 0;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        cursor: pointer;

        transition: width 0.2s;
    }

    .mm-hamburger-icon{
        display: flex;
    }

    #mm-hamburger-icon{
        max-width: 30px;
    }

    .mm-cross-icon{
        display: none;
    }

    #mm-cross-icon{
        max-width: 30px;
    }

    .mm-content{
        display: flex;
        justify-content: center;
        position: absolute;
        bottom: 30px;
        width: 100%;
        background-color: var(--klaeser-red);
        border-radius: 15px 15px 0 0;
        overflow: hidden;
        z-index: -1;

        max-height: 0;
        transition: max-height 0.5s;
    }

    .acc-mm{
        padding: 0 0 30px 0;
    }

    .acc-mm li{
        list-style: none;
    }

    .acc-mm li input{
        display: none;
    }

    .acc-mm li label{
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    #acc-mm-main-page{
        margin: 15px 0;
    }

    .acc-mm-arrow-box{
        width: 12px;
        height: 5px;
        position: relative;
        left: 10px;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    .acc-mm-sub-pages{
        line-height: 26px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s;
    }

    .acc-mm-sub-pages ul{
        padding: 0;
        text-align: center;
    }

    .acc-mm-sub-pages ul li a {
        text-decoration: none;
    }

    .acc-mm input[type="radio"]:checked + label + .acc-mm-sub-pages{
        max-height: 160px;
    }

    .acc-mm input[type="radio"]:checked + label .acc-mm-arrow-box::after{
        transform: rotate(0deg);
        transition: transform 0.5s;
    }

    /* Module 01 */

    .module-01{
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0 30px;
        height: calc(100vh - 70px);
    }

    .m01-header{
        margin: 200px 0 0 0;
    }

    .m01-description{
        padding: 100px 0px;
    }

    .m01-description h2 {
        font-size: 22px;
        line-height: 28px;
    }

    /* Module 02 */

    .arrow-container{
        margin: 30px;
    }

    .m02-columns{
        flex-direction: column;
        padding-bottom: 60px;
        gap: 20px;
    }

    .m02-carousel-wrapper{
        padding: 0 30px 140px 30px;
    }

    .m02-carousel-cell{
        width: calc(100% - 50px);
    }

    .m02-cell-text h2 {
        font-size: 24px;
        line-height: 28px;
    }

    .m02-cell-description{
        padding: 0 10px;
    }

    /* Module 03 */

    .m03-flexbox{
        height: 180px;
    }

    hr.solid-divider-m03{
        height: 30px;
    }

    .m03-paragraph p{
        font-size: 18px;
    }

    /* Module 04 */

    .module-04{
        background: linear-gradient(180deg, var(--klaeser-blue) 50%, var(--klaeser-lightgray) 50%);
    }

    .m04-bbox-pad{
        padding: 0 30px;
    }

    .m04-flexbox{
        flex-direction: column;
    }

    .m04-left{
        padding: 60px 30px;
    }

    .acc01-status-box{
        top: 0px;
    }

    .m04-right{
        padding: 0 30px 44px 30px;
    }

    /* Module 05 */

    .module-05{
        position: relative;
        z-index: 500;
        height: 480px;
        padding: 0 30px;
    }

    /* Module 06 */

    .module-06{
        padding: 60px 30px;
    }

    .m06-content{
        flex-direction: column;
        gap: 0px;
    }

    .m06-content * p{
        margin: 0;
    }

    .m06-content-left{
        width: 100%;
    }

    .m06-content-right{
        width: 100%;
    }

    /* Module 07 */

    .module-07{
        padding: 50px 30px 100px 30px;
    }

    .m07-flexbox{
        flex-direction: column;
    }

    .m07-carousel{
        width: 100%;
    }

    .m07-carousel-cell{
        width: 100%;
    }

    /* Module 08 */

    .module-08{
        padding: 60px 0px;
    }

    .m08-bbox-max{
        padding: 0;
    }

    .m08-flexbox{
        flex-direction: column;
    }

    #m08-img{
        width: 100%;
        height: 100%;
    }

    .m08-right{
        padding: 50px 30px 0px 30px;
    }

    /* Module 09 */

    .module-09{
        padding: 60px 30px;
    }

    .m09-content{
        column-count: 1;
    }

    .m09-content-list-item{
        padding-top: 20px;
    }

    /* Module 10 */

    .module-10{
        height: 441px;
        padding: 0px 30px;
    }

    .m10-button{
        width: 100%;
    }

    .m10-button p {
        margin: 5px 20px;
    }

    /* Module 11 */

    .module-11{
        padding: 60px 30px;
    }

    /* Module 12 */

    .module-12{
        padding: 60px 30px;
    }

    .m12-content{
        flex-direction: column;
    }

    .m12-content-tabs{
        width: 100%;
        display: flex;
    }

    .m12-content-tab-links{
        background: transparent;
        flex: 50%;
        border: none;
    }

    .m12-content-tab-links{
        cursor: pointer;
    }

    .m12-content-tab-links h2 {
        font-size: 20px;
        font-weight: 200;
    }

    .m12-content-tabs .active h2{
        font-weight: 800;
    }

    .m12-tab-content{
        width: 100%;
    }
    
    #m12-content-left{
        width: 100%;
    }

    #m12-content-right{
        display: none;
        width: 100%;
    }

    .m12-title-left, .m12-title-right{
        display: none;
    }

    /* Module 13 */

    .m13-flexbox{
        padding: 60px 30px;
        gap: 30px 0px;
    }

    .m13-tile{
        width: 100%;
    }

    /* Module 14 */

    .module-14{
        padding: 30px;
    }

    .m14-infos{
        flex-direction: column;
    }

    .m14-bottom{
        padding: 0 30px;
    }

    /* Module 15 */

    .module-15{
        padding: 60px 30px;
    }

    .wpcf7-form p{
        width: 100%;
    }

    /* Module 16 */

    .module-16{
        height: 480px;
        padding: 0px 30px;
    }

    /* Module 17 */

    .module-17{
        padding: 60px 30px;
    }

    .m17-content{
        flex-direction: column;
    }

    .m17-content-tabs{
        width: 100%;
        display: flex;
    }

    .m17-content-tab-links{
        background: transparent;
        flex: 50%;
        border: none;
    }

    .m17-content-tab-links{
        cursor: pointer;
    }

    .m17-content-tab-links h2 {
        font-size: 20px;
        font-weight: 200;
    }

    .m17-content-tabs .active h2{
        font-weight: 800;
    }

    .m17-tab-content{
        width: 100%;
    }
    
    #m17-content-left{
        width: 100%;
    }

    #m17-content-right{
        display: none;
        width: 100%;
    }

    .m17-title-left, .m17-title-right{
        display: none;
    }

    /* Module 18 */

    .global-divider-blue{
        margin: 0 30px;
    }

    .global-divider-lightgray{
        margin: 0 30px;
    }

    .m18-hide-on-mobile{
        display: none;
    }

    /* Module 19 */

    .module-19{
        padding: 30px;
    }

    /* Module 20 */

    .arrow-container{
        margin: 30px;
    }

    .m20-columns{
        flex-direction: column;
        padding-bottom: 60px;
        gap: 20px;
    }

    .m20-gallery-wrapper{
        padding: 0 30px 140px 30px;
    }

    .m20-gallery-flexbox{
        flex-wrap: wrap;
        row-gap: 40px;
    }

    .m20-gallery-item{
        width: 100%;
    }

    .m20-gallery-item-empty{
        display: none;
    }

    .m20-gallery-item-description{
        font-size: 18px;
    }

    /* Module 23 */

    .m23-columns{
        flex-direction: column;
        padding-bottom: 60px;
        gap: 20px;
    }

    .m23-carousel-1{
        padding-top: 60px;
    }

    .m23-carousel-1-cell{
        width: 80vw;
        flex-direction: column-reverse;
    }

    .m23-carousel-1-cell-left, .m23-carousel-1-cell-right{
        width: 100%;
        height: 50%;
    }

    .m23-carousel-1-cell-right-header{
        margin: 20px 30px 10px;
    }

    .m23-carousel-1-cell-right-description * {
        margin: 0 30px;
    }

    .m23-carousel-1-cell-right-description p {
        font-size: 15px;
        line-height: 18px;
    }

    .m23-carousel-1 .flickity-prev-next-button{
        top: 490px;
    }

    #m23-animation-truck{
        max-width: 80vw;
    }

    /* Module 24 */

    .module-24{
        padding: 60px 30px;
        gap: 100px;
    }

    #m24-top-img{
        max-width: 200px;
    }

    .m24-description{
        flex-direction: column;
    }

    .m24-cta{
        padding: 10px 30px;
    }

    /* Footer */

    .footer{
        padding: 60px 30px;
    }

    .footer-flexbox{
        flex-direction: column;
    }

    .footer-left, .footer-center, .footer-right{
        width: 100%;
    }

    .footer-left{
        padding-bottom: 8px;
    }

    .footer-center{
        padding-bottom: 24px;
    }

    .footer-copyright{
        padding: 0px 30px 120px 30px;
    }
    
    hr.solid-divider-full{
        margin: 0;
    }
}

@media (prefers-color-scheme: dark){

    ::selection {
        color: var(--klaeser-darkmode-lightgray);
        background: var(--klaeser-red);
    }

    h1, h2, h3, p, a, span, label, input, textarea, .m15-kf-item::placeholder, .m15-fa-item::placeholder, .m19-bf-item::placeholder{
        color: var(--klaeser-darkmode-lightgray) !important; 
    }

    .global-divider-blue{
        border-top: 1px solid var(--klaeser-darkmode-lightgray);
    }

    body, .global-divider-container-blue, .top-bar, .sec-bar, .module-04, .m04-left, .m04-right, .m09-background-gray, .m09-background-red, .module-12, .m15-fa-item, .m15-kf-item, .frc-captcha, .m19-bf-item, .module-17, .module-23, .footer, .footer-copyright{
        background-color: var(--klaeser-darkmode-darkgray) !important;
        background: var(--klaeser-darkmode-darkgray) !important;
    }

    .sec-bar-menu > .current_page_item a{
        text-shadow: 1px 0px 0px var(--klaeser-darkmode-lightgray);
    }

    .sec-bar-menu li + li::before {
        background-color: var(--klaeser-darkmode-lightgray);
    }

    .acc01-status-box::after, .acc02-status-box::after, .acc03-status-box::after, .acc04-status-box::after, .m15-fa-status-box::after{
        color: var(--klaeser-darkmode-lightgray) !important;
    }

    .acc01-status-box, .acc02-status-box, .acc03-status-box, .acc04-status-box, .m15-fa-status-box{
        border: 1px solid var(--klaeser-darkmode-lightgray);
    }

    .m07-cell-title * {
        color: var(--klaeser-red) !important;
    }

    .m07-cell-text * {
        color: var(--klaeser-blue) !important;
    }

    .m08-cta-button p {
        border: 1px solid var(--klaeser-darkmode-lightgray);
        background-color: var(--klaeser-darkmode-darkgray);
    }

    .m09-header-red::before {
        color: var(--klaeser-red);
    }

    .m10-button:hover * {
        color: var(--klaeser-darkmode-darkgray) !important;
    }

    hr.solid-divider-faq{
        border-top: 1px solid var(--klaeser-darkmode-lightgray);
    }

    .m15-fa-item, .m15-kf-item, .m19-bf-item{
        border-bottom: 1px solid var(--klaeser-darkmode-lightgray);
    }

    #m19-bf-anrede {
        color: white;
    }

    #m19-bf-anrede option {
        color: white;
    }

    .frc-icon{
        fill: var(--klaeser-darkmode-lightgray) !important;
        stroke: var(--klaeser-darkmode-lightgray) !important;
    }
    
    .frc-banner a * {
        color: var(--klaeser-darkmode-lightgray) !important;
    }

    .module-22 li {
        color: var(--klaeser-darkmode-lightgray);
    }

    .m23-carousel-1-cell::before{
        background-image: linear-gradient(rgba(0,0,0,0) 75%, var(--klaeser-darkmode-darkgray) 100%);
    }

    .m23-animation-container::before{
        background-image: none !important;
    }

}
