/* ==========================================================================
   FH-Software – Stylesheet
   Nachbau des bisherigen MVC-Layouts (YAML-Grid + Site.css + Bootstrap-Carousel)
   als eine Datei, ergänzt um Media-Queries für Tablet und Smartphone.
   Farben: #0062B1 (Blau), #009FE3 (Hellblau), #706F6F (Grau), #F49919 (Orange)
   ========================================================================== */

@font-face {
    font-family: 'eras_medium_itcregular';
    src: url('../fonts/eras_medium_itc_webfont.eot');
    src: url('../fonts/eras_medium_itc_webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/eras_medium_itc_webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    background-color: #fcfcfc;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: eras_medium_itcregular, Arial, sans-serif;
    font-size: 13px;
    line-height: 20px;
    color: #4d4d4d;
    text-align: justify;
}

h1, .h1 { font-size: 20px; line-height: 22px; margin-bottom: 10px; color: #0062b1; font-weight: bold; }
h2, .h2 { font-size: 18px; margin-bottom: 10px; color: #0062b1; font-weight: bold; }
h3, .h3 { font-size: 14px; margin-bottom: 5px; color: #0062b1; font-weight: bold; }
h4, .h4 { font-size: 14px; margin-bottom: 5px; color: #0062b1; font-weight: bold; }
h5, .h5 { font-size: 13px; margin-bottom: -6px; color: #0062b1; font-weight: bold; }

p { margin: 10px 0; }
p:first-child { margin-top: 0; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 10px 0 10px 20px; }

a, a:link, a:visited, a:focus, a:active { color: #0062b1; text-decoration: none; }
a:hover { color: #0062b1; text-decoration: underline; }

strong, b { font-weight: bold; }
img { display: block; max-width: 100%; height: auto; border: 0; }
iframe { display: block; max-width: 100%; }
textarea { resize: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

:focus { outline: none; }
:focus-visible { outline: 2px solid #009fe3; outline-offset: 2px; }

/* Farbige Wortmarke "FH-Software" bzw. "Felix Heege" */
.wm { font-weight: bold; }
.b1 { color: #0062b1; }
.b2 { color: #009fe3; }
.b3 { color: #706f6f; }

/* ---------- YAML-Grid (nur die verwendeten Klassen) ---------- */
.ym-grid { display: table; width: 100%; table-layout: fixed; }
.ym-gl { float: left; margin: 0; }
.ym-gr { float: right; margin: 0 0 0 -5px; }
.ym-g20 { width: 20%; }
.ym-g30 { width: 30%; }
.ym-g33 { width: 33.333%; }
.ym-g50 { width: 50%; }
.ym-g70 { width: 70%; }
.ym-g80 { width: 80%; }
.ym-equalize { overflow: hidden; }
.ym-equalize > [class*="ym-g"] { display: table-cell; float: none; margin: 0; vertical-align: top; }

/* ---------- Seitenrahmen ---------- */
.toparea .header,
.bottomarea .footer,
#pagewrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.toparea {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background-color: #fff;
    box-shadow: 0 0 20px 0 #000;
    border-bottom: solid 4px #0062b1;
}

.header .logo { display: block; padding: 13px 0 13px 10px; }
.header .logo img { width: 262px; height: 57px; }

#pagewrapper { padding-top: 110px; padding-bottom: 68px; }

.bottomarea {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45px;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 0 20px 0 #000;
    border-top: solid 4px #0062b1;
}

/* ---------- Hauptmenü ---------- */
.nav-toggle { display: none; }

nav.topmenu ul {
    display: flex;
    list-style: none;
    margin: 53px 0 0 0;
    float: right;
}
nav.topmenu ul li {
    width: 112px;
    border-left: solid 1px #fff;
    position: relative;
}
nav.topmenu ul li:first-child { border-left: 0; }
nav.topmenu ul li.extra { display: none; }
nav.topmenu ul li a,
nav.topmenu ul li a:link,
nav.topmenu ul li a:visited {
    display: block;
    text-align: center;
    color: #fff;
    padding: 5px;
    background-color: #706f6f;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    cursor: pointer;
}
nav.topmenu ul li.selected a { background-color: #0062b1; }
nav.topmenu ul li a:hover,
nav.topmenu ul li.selected a:hover { color: #fff; text-decoration: none; background-color: #009fe3; }

/* ---------- Inhalt ---------- */
.right-pane { padding-left: 20px; }

.borderbox { background-color: #fff; border: 1px solid #0062b1; display: block; }
.right-pane > .borderbox { margin-top: 20px; }
.right-pane > .borderbox:first-child { margin-top: 0; }

/* Mehrere Boxen in der rechten Spalte: Farben rotieren (Blau, Hellblau, Grau, Orange) wie die Slider-Folien */
.right-pane > .borderbox:nth-child(4n+2) { border-color: #009fe3; }
.right-pane > .borderbox:nth-child(4n+2) > .boxtitle { background-color: #009fe3; }
.right-pane > .borderbox:nth-child(4n+3) { border-color: #706f6f; }
.right-pane > .borderbox:nth-child(4n+3) > .boxtitle { background-color: #706f6f; }
.right-pane > .borderbox:nth-child(4n+4) { border-color: #f49919; }
.right-pane > .borderbox:nth-child(4n+4) > .boxtitle { background-color: #f49919; }

.boxtitle {
    background-color: #0062b1;
    color: #fff;
    line-height: 30px;
    padding: 0 10px;
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 0;
}
.boxcontent { display: block; padding: 15px; }
.boxcontent p { margin: 10px 0; }
.boxcontent p:first-child { margin-top: 0; }
.boxcontent p:last-child { margin-bottom: 0; }
.boxcontent a.borderbox img { width: 100%; }
.boxcontent .portrait { border: 1px solid #0062b1; width: 100%; }
.projects .borderbox img { width: 100%; }

/* Partner-Logos (Über uns) */
.quadarea { margin-top: 20px; margin-bottom: 15px; }
.quadarea .container { width: 153px; display: inline-block; }
.quadarea .quad3 { text-align: center; }
.quadarea .quad4 { text-align: right; }

/* Geschichtliches (Über uns) */
.history-title { margin-bottom: 15px; }
.history .date { text-align: right; padding-right: 10px; margin-bottom: 10px; }

/* Kundenliste: Logo-Spalte 186 px, Abstand zum Text = Abstand zwischen den Einträgen (16 px).
   overflow: visible, weil die Logos beim Hover 2 px nach oben rutschen und sonst am Rand abgeschnitten würden. */
.kunden { margin-top: 9px; }
.kunden .kunde { display: grid; grid-template-columns: 186px minmax(0, 1fr); column-gap: 16px; align-items: start; margin-bottom: 16px; overflow: visible; }
.kunden .kunde:last-child { margin-bottom: 0; }
.kunden .kunde > [class*="ym-g"] { display: block; float: none; width: auto; margin: 0; }
.kunden a img { border: 1px solid #0062b1; }
.kunden a:hover img { border: 1px solid #f49919; }
.kunden a:hover { text-decoration: none; }
.kunden p { margin: 5px 0 0 0; }

/* Kontakt */
.hours .ym-gr { text-align: right; }
.map { width: 100%; border: 1px solid #0062b1; }
.map-consent-inner { text-align: center; }

/* Datenschutz (einspaltig) */
.datenschutz { width: 100%; }
.datenschutz ul li { margin: 10px 0; }

/* ---------- Karussell (Startseite) ---------- */
.carousel { position: relative; line-height: 1; margin-bottom: 20px; }
.carousel-inner { overflow: hidden; width: 100%; position: relative; box-shadow: 0 0 8px 0 #000; }
.carousel-inner > .item { display: none; position: relative; transition: .6s ease-in-out left; }
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev { display: block; }
.carousel-inner > .active { left: 0; }
.carousel-inner > .next,
.carousel-inner > .prev { position: absolute; top: 0; width: 100%; }
.carousel-inner > .next { left: 100%; }
.carousel-inner > .prev { left: -100%; }
.carousel-inner > .next.left,
.carousel-inner > .prev.right { left: 0; }
.carousel-inner > .active.left { left: -100%; }
.carousel-inner > .active.right { left: 100%; }
.carousel .ym-g70 img { width: 100%; }

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 5;
    margin: 0;
    list-style: none;
    display: flex;
}
.carousel-indicators li { margin-left: 5px; }
.carousel-indicators button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 5px;
    background-color: #706f6f;
    cursor: pointer;
}
.carousel-indicators button.active { background-color: #0062b1; }

.sliderinfo { position: relative; height: 300px; padding: 30px; cursor: default; }
.sliderinfo.bg-blue { background-color: #0062b1; }
.sliderinfo.bg-lightblue { background-color: #009fe3; }
.sliderinfo.bg-grey { background-color: #706f6f; }
.sliderinfo.bg-orange { background-color: #f49919; }
.sliderinfo .h2 {
    color: #fff;
    font-size: 24px;
    line-height: 24px;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.sliderinfo .subinfo { position: absolute; bottom: 0; padding-bottom: 25px; }
.sliderinfo .h3 {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    font-weight: normal;
    font-style: normal;
    margin-bottom: 0;
}

/* ---------- Fußzeile ---------- */
.footer .ym-grid { padding: 10px 0; }
.footer .ym-gr .right-pane { text-align: right; }
nav.bottommenu { display: inline-block; }
nav.bottommenu ul { display: flex; justify-content: flex-end; list-style: none; margin: 0; }
nav.bottommenu ul li { padding: 0 0 0 10px; }
nav.bottommenu ul li a {
    display: block;
    text-align: right;
    color: #0062b1;
    padding: 1px;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    cursor: pointer;
}
nav.bottommenu ul li a:hover { text-decoration: underline; }

/* Ausgeblendete Elemente */
[hidden] { display: none !important; }

/* ---------- Übergänge (Menü, Buttons, Logos) ---------- */
nav.topmenu ul li a,
nav.bottommenu ul li a,
.carousel-indicators button,
.map-consent-load {
    transition: background-color .15s ease, color .15s ease;
}
/* Angehoben wird immer das gerahmte Element (Bild mit eigenem Rahmen bzw. der Rahmen-Link),
   nie ein Bild innerhalb eines Rahmens – sonst rutscht das Bild über die Rahmenlinie. */
.kunden a img,
.quadarea a.borderbox,
.boxcontent a.borderbox {
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.kunden a:hover img,
.quadarea a.borderbox:hover,
.boxcontent a.borderbox:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px -4px rgba(0, 0, 0, .4);
}
.quadarea a.borderbox:hover,
.boxcontent a.borderbox:hover { border-color: #f49919; }

/* Slider-Text blendet nach dem Folienwechsel ein */
.carousel-inner > .item .sliderinfo .h2,
.carousel-inner > .item .sliderinfo .subinfo {
    opacity: 0;
    transition: opacity .5s ease .35s;
}
.carousel-inner > .item.active .sliderinfo .h2,
.carousel-inner > .item.active .sliderinfo .subinfo { opacity: 1; }

/* Einblenden beim Scrollen (nur mit JavaScript aktiv) */
.js .reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .5s ease, transform .5s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Kundenmeinungen als Zitate ---------- */
.testimonial { position: relative; margin: 10px 0; }
.testimonial h5 { margin-bottom: 4px; }
.testimonial blockquote {
    position: relative;
    margin: 0;
    padding: 6px 0 4px 26px;
    font-style: italic;
    text-align: left;
}
.testimonial blockquote::before {
    content: "\201E";
    position: absolute;
    left: -2px;
    top: -14px;
    font-size: 52px;
    line-height: 1;
    font-style: normal;
    color: #009fe3;
}
.testimonial .who { margin: 4px 0 0 26px; line-height: 18px; }
.testimonial .rating { margin: 6px 0 0 26px; }
.testimonial .grade {
    display: inline-block;
    min-width: 34px;
    padding: 0 6px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    background-color: #0062b1;
    margin-right: 4px;
}
.testimonial + .testimonial { margin-top: 14px; padding-top: 12px; border-top: 1px solid #e3e3e3; }

/* ---------- Leistungs-Kacheln (Startseite, rechte Spalte) ---------- */
.tiles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.tile {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #0062b1;
}
.tile-title {
    display: block;
    background-color: #0062b1;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    line-height: 30px;
    padding: 0 10px;
}
.tile-text { display: block; padding: 15px 15px 6px; text-align: justify; flex: 1; }
.tile-more { align-self: flex-start; margin: 0 15px 12px; color: #0062b1; font-weight: bold; }
.tile-more::after { content: "\00a0\203A"; }
.tile-more:hover { text-decoration: underline; }
.tile-blue { border-color: #0062b1; }      .tile-blue .tile-title { background-color: #0062b1; }
.tile-lightblue { border-color: #009fe3; } .tile-lightblue .tile-title { background-color: #009fe3; }
.tile-grey { border-color: #706f6f; }      .tile-grey .tile-title { background-color: #706f6f; }
.tile-orange { border-color: #f49919; }    .tile-orange .tile-title { background-color: #f49919; }

/* ---------- Startseite: Projektablauf unter dem Text ---------- */
.steps-title { margin-top: 24px; margin-bottom: 8px; }
.steps-more { margin: 10px 0 0; text-align: right; }
.more-link { color: #0062b1; font-weight: bold; white-space: nowrap; }
.more-link::after { content: "\00a0\203A"; }
.more-link:hover { text-decoration: underline; }

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    list-style: none;
    margin: 0;
    counter-reset: none;
}
.steps li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 10px 12px;
    background-color: #fff;
    border: 1px solid #0062b1;
}
.steps .step-no {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: #0062b1;
    color: #fff;
    font-weight: bold;
    margin-bottom: 8px;
}
.steps li:nth-child(4n+2) { border-color: #009fe3; }  .steps li:nth-child(4n+2) .step-no { background-color: #009fe3; }
.steps li:nth-child(4n+3) { border-color: #706f6f; }  .steps li:nth-child(4n+3) .step-no { background-color: #706f6f; }
.steps li:nth-child(4n+4) { border-color: #f49919; }  .steps li:nth-child(4n+4) .step-no { background-color: #f49919; }
.steps strong { color: #0062b1; margin-bottom: 2px; }
.steps span:not(.step-no) { font-size: 12px; line-height: 16px; }

/* ---------- Logo-Wand (Kunden) ---------- */
.wall-title { margin-top: 20px; }
.logo-wall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    list-style: none;
    margin: 0;
}
.logo-wall a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 86px;
    padding: 8px;
    background-color: #fff;
    border: 1px solid #0062b1;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.logo-wall a:hover { border-color: #f49919; transform: translateY(-2px); box-shadow: 0 4px 10px -4px rgba(0, 0, 0, .4); }
.logo-wall img { max-width: 100%; max-height: 68px; width: auto; height: auto; }
.kunde { scroll-margin-top: 110px; }

/* ---------- Google Maps: Zwei-Klick-Lösung ---------- */
.map-consent {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background-color: #f2f6fa;
    background-image: linear-gradient(0deg, rgba(0, 98, 177, .06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 98, 177, .06) 1px, transparent 1px);
    background-size: 24px 24px;
    text-align: center;
}
.map-consent-inner { max-width: 420px; padding: 24px; }
.map-consent-title { font-size: 16px; font-weight: bold; color: #0062b1; margin-bottom: 8px; }
.map-consent-inner p { text-align: center; }
.map-consent-actions { margin: 14px 0 10px; }
.map-consent-load {
    display: inline-block;
    padding: 6px 18px;
    margin-right: 10px;
    border: 0;
    color: #fff;
    background-color: #0062b1;
    cursor: pointer;
}
.map-consent-load:hover { background-color: #009fe3; }
.map-consent-link { white-space: nowrap; }
.map-consent-address { color: #706f6f; font-size: 12px; }
iframe.map { height: 484px; }

/* ---------- Zurück nach oben ---------- */
.to-top {
    position: fixed;
    right: 20px;
    bottom: 60px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background-color: #0062b1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .35);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease, background-color .15s ease, visibility 0s linear .25s;
    z-index: 1500;
}
.to-top::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 55%;
    width: 12px;
    height: 12px;
    border-left: 3px solid #fff;
    border-top: 3px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}
.to-top:hover { background-color: #009fe3; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.to-top span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ==========================================================================
   Responsive: Tablet und Smartphone
   Ab 1017px Breite entspricht das Layout exakt der bisherigen Desktop-Seite.
   ========================================================================== */
@media (max-width: 1016px) {
    .to-top { bottom: 20px; right: 15px; }
    .toparea { position: relative; }
    .bottomarea { position: static; height: auto; }
    #pagewrapper { padding: 20px 15px 20px 15px; }
    .toparea .header, .bottomarea .footer { padding-left: 15px; padding-right: 15px; }
    .header .logo { padding: 13px 0; }

    /* Mobilmenü mit dem bisherigen Menü-Icon */
    .nav-toggle {
        display: block;
        float: right;
        width: 57px;
        height: 57px;
        margin: 13px 0 13px 13px;
        border: 0;
        background: url(../images/menuicon.png) no-repeat center center;
        text-indent: -9999px;
        overflow: hidden;
        cursor: pointer;
    }
    .nav-toggle:hover { background-image: url(../images/menuicon_hover.png); }
    .nav-toggle[aria-expanded="true"] { background-image: url(../images/menuicon_active.png); }
    nav.topmenu ul {
        display: none;
        float: none;
        flex-direction: column;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        margin: 0;
        background-color: #fff;
        border-top: solid 4px #0062b1;
        box-shadow: 0 12px 20px -6px rgba(0, 0, 0, .45);
        z-index: 1002;
    }
    nav.topmenu ul.is-open { display: flex; }
    nav.topmenu ul li { width: 100%; border-left: 0; border-top: solid 2px #fff; }
    nav.topmenu ul li:first-child { border-top: 0; }
    nav.topmenu ul li.extra { display: block; }
    nav.topmenu ul li a { text-align: left; font-size: 18px; line-height: 30px; padding: 6px 15px; }

    /* Einspaltig */
    .maincon, .rightcon { float: none; width: 100%; margin: 0; }
    .rightcon { margin-top: 20px; }
    .right-pane { padding-left: 0; }
    .rightcon .borderbox { max-width: 600px; margin-left: auto; margin-right: auto; }
    .rightcon .tiles { grid-template-columns: repeat(2, 1fr); max-width: 600px; margin-left: auto; margin-right: auto; }

    /* Karussell: Bild oben, Textleiste darunter */
    .carousel .item .ym-grid { display: flex; flex-direction: column-reverse; }
    .carousel .item .ym-g30, .carousel .item .ym-g70 { float: none; width: 100%; margin: 0; }
    .sliderinfo { height: auto; padding: 12px 15px 14px 15px; }
    .sliderinfo .h2 { font-size: 20px; line-height: 24px; margin-bottom: 4px; }
    .sliderinfo .subinfo { position: static; padding: 0; display: flex; flex-wrap: wrap; }
    .sliderinfo .h3 { font-size: 14px; line-height: 20px; margin-right: 14px; }
    .carousel-indicators { bottom: auto; top: 10px; }

    /* Fußzeile untereinander, zentriert */
    .footer .ym-grid { display: flex; flex-direction: column-reverse; align-items: center; padding: 10px 0; }
    .footer .ym-gl, .footer .ym-gr { float: none; margin: 0; }
    .footer .ym-gr .right-pane { text-align: center; }
    nav.bottommenu ul { flex-wrap: wrap; justify-content: center; }
    nav.bottommenu ul li { padding: 0 8px; }
    nav.bottommenu ul li a { text-align: center; }
    .footer .copyright { margin-top: 6px; }
}

@media (max-width: 767px) {
    /* Blocksatz reißt auf schmalen Bildschirmen große Lücken – linksbündig */
    body { font-size: 14px; line-height: 21px; text-align: left; }
    .boxtitle { font-size: 14px; }
    h5, .h5 { font-size: 14px; }

    .contact-grid .ym-g50 { float: none; width: 100%; margin: 0; }
    .contact-grid .ym-g50 + .ym-g50 { margin-top: 15px; }
    iframe.map { height: 320px; }
    .map-consent { min-height: 240px; }

    .quadarea { text-align: center; }
    .quadarea .ym-g33 { float: none; width: auto; display: inline-block; text-align: center; margin: 0 4px; }
    .quadarea .container { margin-bottom: 8px; }

    .logo-wall { grid-template-columns: repeat(3, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .header .logo img { width: 200px; height: auto; }
    .nav-toggle { width: 48px; height: 48px; background-size: 48px 48px; margin: 9px 0 9px 10px; }

    .kunden .kunde { grid-template-columns: 1fr; row-gap: 8px; margin-bottom: 22px; }

    .history .ym-g20, .history .ym-g80 { float: none; width: 100%; margin: 0; }
    .history .date { text-align: left; padding: 0; margin-bottom: 0; }
    .history { margin-bottom: 10px; }
    .rightcon .tiles { grid-template-columns: 1fr; gap: 14px; }

    .logo-wall { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .steps { grid-template-columns: 1fr; }
    .logo-wall a { height: 76px; }
}

@media (prefers-reduced-motion: reduce) {
    .carousel-inner > .item { transition: none; }
    .js .reveal { opacity: 1; transform: none; transition: none; }
    .carousel-inner > .item .sliderinfo .h2, .carousel-inner > .item .sliderinfo .subinfo { opacity: 1; transition: none; }
    .to-top, .kunden a img, .quadarea a.borderbox, .boxcontent a.borderbox { transition: none; }
}

@media print {
    html { background: #fff; }
    .toparea, .bottomarea { position: static; box-shadow: none; }
    #pagewrapper { padding: 10px 0; }
    .nav-toggle, nav.topmenu, .carousel-indicators, .to-top, .map-consent { display: none !important; }
    .js .reveal { opacity: 1; transform: none; }
    .maincon, .rightcon { float: none; width: 100%; margin: 0; }
    .right-pane { padding-left: 0; }
}
