        @media print {
            body {
                background-color: #FFFFFF;
                color: #000000;
            }
        }
        /* Better Font Rendering 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

=========== */
        
        .desktop-only {
            display: block;
        }
        
        .mobile-only {
            display: none;
        }
        
        .clearfix:after {
            visibility: hidden;
            display: block;
            content: "";
            clear: both;
            height: 0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            height: 100%;
        }
        
        body {
            font-family: 'Asap', sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 18px;
            line-height: 23px;
            background: #fff;
            color: rgb(129, 150, 190);
            box-sizing: border-box;
        }
        
        .content_wrapper {
            max-width: 1200px;
            margin: 100px 20px 20px 150px;
            display: flex;
            flex-direction: row;
        }
        
        .kmc_logo {
            width: 200px;
        }
        
        .content_left {
            width: 370px;
            flex-shrink: 0;
        }
        
        .content_right {
            max-width: 65%;
            margin-top: 200px;
        }
        
        h1 {
            font-size: 30px;
            line-height: 38px;
            font-style: normal;
            font-weight: 400;
            text-align: left;
        }
        
        h2 {
            font-style: normal;
            font-weight: 400;
            font-size: 30px;
            line-height: 40px;
            text-align: left;
            color: rgb(84, 77, 72);
        }
        
        h3 {
            font-style: normal;
            font-weight: 600;
            font-size: 18px;
            line-height: 23px;
            text-align: left;
        }
        /* links */
        
        a:link {
            text-decoration: underline;
            color: rgb(129, 150, 190);
        }
        
        a:visited {
            text-decoration: underline;
            color: rgb(129, 150, 190);
        }
        
        a:hover {
            text-decoration: none;
            color: rgb(129, 150, 190);
        }
        
        a:active {
            text-decoration: underline;
            color: rgb(129, 150, 190);
        }
        
        a.grau:link {
            text-decoration: underline;
            color: rgb(84, 77, 72);
        }
        
        a.grau:visited {
            text-decoration: underline;
            color: rgb(84, 77, 72);
        }
        
        a.grau:hover {
            text-decoration: none;
            color: rgb(84, 77, 72);
        }
        
        a.grau:active {
            text-decoration: underline;
            color: rgb(84, 77, 72);
        }
        /* Bilder */
        
        img {
            border: none;
            margin: 0;
            padding: 0;
        }
        
        .pixscal {
            max-width: 100%;
            height: auto;
        }
        
        .spacer_30 {
            clear: both;
            padding-top: 30px;
        }
        
        .impress_color {
            color: rgb(84, 77, 72);
        }
        
        .accordion {
            color: rgb(84, 77, 72);
            cursor: pointer;
            border: none;
            text-align: left;
            outline: none;
            transition: 0.4s;
            background-color: #fff;
        }
        
        .active,
        .accordion:hover {
            background-color: #fff;
        }
        
        .accordion:after {
            content: '\02C3';
            color: rgb(84, 77, 72);
            font-weight: normal;
            font-size: 20px;
            float: right;
            margin-left: 15px;
            transition: all 0.2s ease-out;
        }
        
        .active:after {
            content: "\02C3";
            transform: rotate(90deg);
            transition: all 0.2s ease-out;
        }
        
        .panel {
            background-color: white;
            color: rgb(84, 77, 72);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
        }
        
        @media only screen and (max-width:1000px) {
            .content_wrapper {
                max-width: 1200px;
                margin: 100px 20px 20px 100px;
            }
            .kmc_logo {
                width: 170px;
            }
            .content_left {
                width: 300px;
                flex-shrink: 0;
            }
            .content_right {
                max-width: 65%;
                margin-top: 180px;
            }
            h1 {
                font-size: 25px;
                line-height: 32px;
                font-style: normal;
                font-weight: 400;
                text-align: left;
            }
            h2 {
                font-style: normal;
                font-weight: 400;
                font-size: 25px;
                line-height: 32px;
                text-align: left;
                color: rgb(84, 77, 72);
            }
        }
        
        @media only screen and (max-width:700px) {
            .content_wrapper {
                max-width: 1200px;
                margin: 50px 20px 20px 20px;
                display: flex;
                flex-direction: column;
            }
            .content_left {
                width: 100%;
                flex-shrink: 0;
            }
            .content_right {
                max-width: 100%;
                margin-top: 20px;
            }
            .spacer_30 {
                clear: both;
                padding-top: 20px;
            }
        }
