.fullscreen-header {
    position: relative !important;
}

.header-title {
    margin: 15% 0 0 0;
}

.fullscreen-height {
    position: absolute;
    width: 100%;
    min-height: 100%;
    /* Mindesthöhe für moderne Browser */
    height: auto !important;
    /* Important Regel für moderne Browser */
    height: 100%;
    /* Mindesthöhe für den IE */
    overflow: hidden !important;
    /* FF Scroll-leiste */

    background: url(../../images/header.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

@media screen and (max-width:1200px) {

    .header-title {
        right: 10%;
        margin: 20% 0 0 0;
        padding: 0;
        width: 80%;
        text-align: center;
    }
}

@media screen and (max-width:1000px) and (orientation:portrait) {

    .header-title {
        position: relative;
        right: 0%;
        margin: 50% 3% 0 3%;
        padding: 0;
        width: 94%;
        z-index: 10000;
    }

    .header-title h1 {
        color: white;
    }

    .fullscreen-height {
        min-height: auto !important;
        padding: 4% 0 150px 0;
        height: auto !important;
        height: 100%;

        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }
}