@charset "utf-8";

/*
COLOR SETTING
#334D5C DARKBLUE
#45B29B TURQUISE
#EFC94C YELLOW
#E27A3F ORANGE
#DF5A49 RED


 */

/* CSS Document */
html, body {
    padding: 0;
    margin: 0;
    height: 100%;
    background-color: #eeeeee;
}

div, a, h1, h2, h3, a {
    z-index: 3;
}

img {
    width: 100%;
}

.header {
    position: fixed;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #eeeeee;
    z-index: 999;
    color: #333;
    box-sizing: border-box;
    padding: 0px;
    transform: translateY(-70px);
    -webkit-transform: translateY(-70px);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -webkit-box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.75);
}

.header .inhalt {
    padding: 0px 10px;
}

.header .logo {
    width: 175px;
    height: 64px;
    background-image: url(img/logo.svg);
    background-repeat: no-repeat;
    background-size: contain;
    overflow: hidden;
    position: relative;
    left: 15px;
}

.header a {
    text-decoration: none;
    color: white;
}

.header .mp {
    width: 20%;
    float: left;
    height: 70px;
    padding-top: 25px;
    box-sizing: border-box;
    transition: all 0.2s ease-out;
    cursor: pointer;
    overflow: hidden;
}

.header .mpFX:hover {
    background-color: #18181f;
    color: #eee;
}

.header .mpl {
    padding-top: 2px;
}

.fixedBG {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    overflow: hidden;
    margin: 0;
    visibility: hidden; /*for the new FIX*/
}

.head {
    height: 100%;
    min-height: 720px;
    background-color: #fff;
    background-image: url(imgF/bg.jpg);
    visibility: visible;
}


.head .logo, .rotLogo {
    position: absolute;
    width: 300px;
    height: 150px;
    background-image: url(icon/logoOhneO.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 100;
}

.head .logo{
    margin: 30px;
}

@keyframes rotator {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.head .logo div, .rotLogo div {
    position: absolute;
    top: 38px;
    left: 82px;
    width: 72px;
    height: 72px;
    background-image: url(icon/logoNurO.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 101;
    /* animation: rotator 2s ease-in-out;*/
    animation: rotator 8s linear;
    animation-iteration-count: infinite;
}

.header .logo div{
    left: 47px;
    top: 22px;
    width: 42px;
    height: 42px;
}

/*Menu in Head*/

.menu {
    height: 150px;
    width: 400px;
    float: right;
    margin-top: 30px;
    padding-top: 40px;
    box-sizing: border-box;
}

.head .menu .mp {
    box-sizing: border-box;
    height: 100%;
    width: 33.333%;
    float: left;
    text-align: center;
    padding-top: 10px;
    cursor: pointer;
    transition: all 0.2s ease-out;
    border-bottom: solid rgba(200, 200, 200, 0) 2px;
}

.head .menu .mp:hover {
    padding-top: 15px;
}

.head .menu a {
    color: #333;
    text-decoration: none;
    font-size: 20px;
}

.head .bigTitle {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    position: absolute;
    top: calc(100% - 550px);
    height: 90px;
    width: 100%;
    text-align: center;
    font-size: 60px;
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/*STARTVIEW*/
.leistungen {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    position: absolute;
    top: calc(100% - 430px);
    height: 400px;
    width: 100%;
    padding: 0 30px;
}

.leistung {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    border: solid 1px rgba(0, 0, 0, 0.2);
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.2s ease-out;
}

.leistung:hover {
    transform: scale(1.1);
}

.leistung div {
    box-sizing: border-box;
    float: left;
}

.leistung .icon {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.leistung .title {
    text-align: center;
    font-size: 26px;
    padding-top: 12px;
    color: #fff;
    /* hyphens */
    overflow: hidden;
    word-wrap: break-word;
}

.leistungen .prim .title {
    width: 100%;
}

.leistungen .sek .title,
.leistungen .spezial .title {
    width: calc(100% - 110px);
    height: 50px; /* prevent breaking text o next line / hides it */
}

.leistungen .prim {
    width: calc(25% - 9px);
    margin-left: 12px;
    height: 60%;
}

.leistungen .prim:first-child {
    margin-left: 0;
}

.leistungen .sek {
    width: calc(50% - 6px);
    margin-left: 12px;
    margin-top: 12px;
    height: calc(20% - 12px);
}

.leistungen .sek:nth-child(5) {
    margin-left: 0;
}

.leistungen .spezial {
    width: 100%;
    margin-top: 12px;
    height: calc(20% - 12px);
}

.leistungen .prim .icon {
    width: 80%;
    margin: 10%;
    height: 40%;
}

.leistungen .sek .icon,
.leistungen .spezial .icon {
    margin: 15px;
    height: calc(100% - 30px);
    width: 80px;
}

.leistungen .warme .icon {
    background-image: url("icon/thermometer.white.svg");
}

.leistungen .kalte .icon {
    background-image: url("icon/snowflake.white.svg");
}

.leistungen .schall .icon {
    background-image: url("icon/headphones.white.svg");
}

.leistungen .brand .icon {
    background-image: url("icon/fire.white.svg");
}

.leistungen .fassade .icon {
    background-image: url("icon/brickwall.white.svg");
}

.leistungen .aspest .icon {
    background-image: url("icon/danger.white.svg");
}

.leistungen .spezial .icon {
    background-image: url("icon/engineering.white.svg");
}

/* DROPDOWN */
.mpArena {
    position: absolute;
    left: 0;
    margin-top: 22px;
    width: 100%;
    overflow: hidden;
}

.dropDown:hover {
    height: 140px;
}

.menpu {
    width: 14.285%;
    height: 70px;
    box-sizing: border-box;
    float: left;
    text-align: center;
    padding-top: 25px;
    cursor: pointer;
    transition: all 0.2s ease-out;
    border-bottom: solid rgba(200, 200, 200, 0) 2px;
}

.content {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #FFFFFF;
}

.inhalt {
    position: relative;
    width: 1200px;
    height: 100%;
    left: 50%;
    margin-left: -600px;
}

.black300 {
    color: white;
    background-color: #151515;
}

.white {
    color: #454545;
    min-height: 100px;
    background-color: #f9f9f9;
}

.quaterpart {
    width: 25%;
    float: left;
    box-sizing: border-box;
    padding: 20px;
}

.halfpart {
    width: 50%;
    float: left;
    box-sizing: border-box;
    padding: 20px;
    height: 100%;
}

.fullpart {
    float: left;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
}

.withImage {
    background-size: cover;
    height: 350px;
}

.smartinfo div {
    transform: translateX(20px) scale(1);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.smartinfo div.show {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.smartinfo div:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.lastABS {
    margin-bottom: 300px;
}

.foter {
    color: white;
    height: 300px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 2;
}

.fotMen{
    width: 100%;
    height: 70px;
}

.fotMen div{
    width: 25%;
    height: 100%;
    box-sizing: border-box;
    text-align: center;
    padding-top: 25px;
    float: left;
    color: #222;
}

.actionBut{
    width: calc(50% - 15px);
    box-sizing: border-box;
    height: 30px;
    padding: 4px;
    color: #fff;
    text-align: center;
    float: left;
    border-radius: 3px;
    margin-right: 15px;
    margin-top: 12px;
    overflow: hidden;
    background-color: #595959;
}

.karriereAct{
    border: 1px #eee solid;
    color: #eee;
    width: 100%;
}


.justLogo{
    width: 140px;
    height: 65px;
    margin: 0px;
    float: right;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("img/logo.svg");
}

.dasHand{
    width: 255px;
}

/*Logo and menue changes on head*/
@media (max-width: 740px) {
    .head .logo {
        left: calc(50% - 180px);
    }

    .head .menu {
        position: absolute;
        top: 210px;
        left: 5%;
        width: 90%;
        margin-top: 0;
        padding: 0;
        height: 45px;
    }

}

/*Little setting + to fit text in buttons*/
@media (max-width: 1200px ) {
    .inhalt {
        position: relative;
        width: 100%;
        height: 100%;
        left: 0;
        margin-left: 0;
    }

    .leistung .title {
        font-size: 22px;
    }

}

/*Tablet*/
@media (max-width: 1000px ) {

    .quaterpart {
        width: 50%;
        float: left;
        box-sizing: border-box;
        padding: 10px;
    }

    h1 {
        font-size: 4rem;
    }

    .header {
        transform: translateY(-110px);
        -webkit-transform: translateY(-110px);
    }

    .header .mp {
        width: 33%;
        height: 40px;
        padding-top: 10px;
    }

    .header .mpl {
        width: 34%;
        height: 100%;
    }


    /*DROPDOWN UPDATE*/
    .mpArena {
        margin-top: 0;
        top: 80px;
    }

    .dropDown:hover {
        height: 80px;
    }

    .menpu {
        height: 40px;
        padding-top: 10px;
    }


    .head .bigTitle {
        top: calc(100% - 423px);
        height: 70px;
        font-size: 47px;
    }

    .leistungen {
        top: calc(100% - 330px);
        height: 300px;
    }

    .leistungen .title {
        padding-top: 6px;
    }

    .leistungen .sek .icon,
    .leistungen .spezial .icon {
        margin: 5px;
        height: calc(100% - 10px);
    }


}

/*Mobile*/
@media (max-width: 596px ) {
    .quaterpart {
        width: 100%;
        float: left;
        box-sizing: border-box;
        padding: 20px;
    }

    .addme {
        display: none;
    }

    .halfpart {
        width: 100%;
        float: none;
        box-sizing: border-box;
        padding: 20px;
    }

    .halfheight {
        height: 50%;
    }

    .header {
        height: 70px;
        transform: translateY(-70px);
        -webkit-transform: translateY(-70px);
    }

    .header .mp {
        width: 50%;
        height: 50%;
        padding-top: 5px;
    }

    .header .mpl {
        width: 0;
        height: 100%;
        visibility: hidden;
    }

    .head .bigTitle {
        top: calc(100% - 520px);
        height: 50px;
        display: none;
    }

    .leistungen {
        height: 430px;
        top: calc(100% - 460px);
    }

    .leistungen .prim,
    .leistungen .sek,
    .leistungen .spezial {
        width: 100%;
        margin-top: 5px;
        margin-left: 0;
        height: calc(14.285% - 5px);
    }

    .leistungen .prim .title,
    .leistungen .sek .title,
    .leistungen .spezial .title {
        width: calc(100% - 110px);
        height: 40px; /* prevent breaking text o next line / hides it */
        padding-top: 10px;
    }

    .leistungen .prim .icon,
    .leistungen .sek .icon,
    .leistungen .spezial .icon {
        margin: 5px;
        height: calc(100% - 10px);
        width: 80px;
    }

    .lastABS {
        margin-bottom: 200%;
    }

    .foter {
        height: calc(100% - 70px);
    }

    .foter p {
        font-size: 12px;
    }

    .foter h1 {
        font-size: 20px;
    }

    .justshow {
        height: 349px;
    }

    .fotMen{
        width: 100%;
        height: 140px;
    }

    .fotMen div{
        width: 50%;
        height: 50%;
        box-sizing: border-box;
        text-align: center;
        padding-top: 25px;
        float: left;
        color: #222;
    }


    .header .mp, .header{
        background-color: #222;
        color: #fff;
    }

    .header .mpl{
        background-color: #eee;
    }

    .fixedBG{
        display: none;
    }
    .head{
        display: block;
    }
    .justLogo{
        width: 100%;
        height: 100px;
        margin-bottom: 25px;
    }
    .dasHand{
        width: 100%;
    }
}

.showHeader {
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

/*Some fixes*/

.applefix {
    background-attachment: scroll;
}

p {
    margin-bottom: 5px;
}

.noPad {
    padding: 0;
}

.content .inhalt {
    overflow: hidden;
}

.adressbox {
    margin-top: 10px;
    margin-left: 10px;
    top: 30px;
    left: 35px;
}

.fixBot {
    height: 0.6px;
    width: 1px;
    overflow: hidden;
}

.map {
    height: 40%;
}

@media (max-height: 567px) and (max-width: 596px) {
    .dontshow {
        display: none;
    }

    .justshow {
        height: auto;
    }
}

.fb {
    height: 50px;
    width: 57px;
    background-image: url(fb.png);
    background-repeat: no-repeat;
    position: fixed;
    right: -57px;
    top: 30%;
    z-index: 999;
    transition: 0.5s;
}

.showFB {
    right: 0;
}

/*Fixes for table in contact*/
tr, td{
    margin: 0;
    padding: 0;
    height: auto;
    width: auto;
    border: none;
}

table{
    margin-bottom: 0px;
}

input{
    width: 100%;
}

.chk{
    width: 20px;
}

.popup{
    position: fixed;
    top: calc(50% - 250px);
    left: calc(50% - 200px);
    height: 540px;
    width: 400px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px;
    background-color: rgba(10,10,10,0.9);
    border-radius: 5px;
    color: #eeeeee;
    z-index: 10000;
    overflow: hidden;
}
.popup h1{
    text-align: center;
}
.middlebox{
    position: absolute;
    top: calc(50% - 250px);
    left: calc(50% - 200px);
    height: 540px;
    width: 400px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px;
    background-color: rgba(10,10,10,0.9);
    border-radius: 5px;
    color: #eeeeee;
    z-index: 10000;
    overflow: hidden;
}
.middlebox h1{
    text-align: center;
}

/*
Formula:
n = anzObjekte
wiederhole ersten 5 Referenzen am ende noch mal!
width = (n+5)*220px

*/

@keyframes slider {
    0% {
        left: 0;
    }
    100% {
        left: -2200px; /* half of width from formula */
    }
}

.scheibe{
    position: relative;
    width: 4180px; /*Use Formula*/
    height: 220px;
    overflow: hidden;
    animation: slider 25s linear;
    animation-iteration-count: infinite;
}

.scheibe .referenz{
    float: left;
    box-sizing: border-box;
    width: 200px;

    height: 220px;
    margin-right: 20px;
    padding: 10px;
}

.referenz div{
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    float: left;
    width: 180px;
    height: 120px;
    margin-bottom: 10px;

    /*For the text Case*/
    box-sizing: border-box;
    font-size: 20px;
    padding-top: 43px;
    text-align: center;
    font-weight: bold;
}

.newFixBG{
    background-image: url("imgF/fabrik.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 1;
    top: 0;
    left: 0;
}

.page{
    position: absolute;
    z-index: 100;
    width: 100%;
}