/************************************************/
/* Header                                       */
/************************************************/

html,
body{
    font-family:"futura-pt", Arial, Helvetica, sans-serif;
    color:#4c575f;
}

/************************************************/
/* Sticky Header                                */
/************************************************/

/* #container > header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:#071E3D;
    box-shadow:0 2px 10px rgba(0,0,0,0.12);
}
var(--theta-dashboard-bg) 0%,
var(--theta-dashboard-bg-2) 100%*/

#container > header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
	background:var(--theta-dashboard-bg);

    /*background:linear-gradient(
        135deg,
        var(--theta-dashboard-bg) 0%,
        var(--theta-dashboard-bg) 100%*/
    );

    box-shadow:0 22px 46px rgba(0,0,0,.32);
}



/* Platz für festen Header */
body{
    padding-top:95px;
}

/************************************************/
/* Header Inhalt                                */
/************************************************/

.header-inner{
    max-width:1920px;
    width:100%;
    margin:0 auto;

    display:flex;
    align-items:center;
    justify-content:flex-start;

    min-height:95px;

    padding:12px 40px;
    box-sizing:border-box;
    position:relative;
}

.header-inner::after{
    content:"";
    position:absolute;
    left:50px;
    right:40px;
    bottom:0;
    height:1px;
    background:#DF991E;
}

/************************************************/
/* THETA Brand Header                           */
/************************************************/

.theta-header{
    display:flex;
    align-items:center;
    gap:32px;
}

.theta-symbol{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.theta-symbol img{
    width:55px;
    height:auto;
    display:block;
}

.theta-divider{
    width:2px;
    height:55px;
    background:#DF991E;
    flex-shrink:0;
}

.theta-brand{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.theta-brand-title{
    font-size:18px;
    line-height:1;
    font-weight:300;
    letter-spacing:5px;
    text-transform:uppercase;
    color:#ffffff;
}

.theta-brand-title span{
    color:#4A8FE3;
    font-weight:400;
}

.theta-brand-subtitle{
    margin-top:12px;
    font-size:22px;
    font-weight:400;
    line-height:1.15;
    color:#ffffff;
}

.theta-brand-subtitle span{
    color:#DF991E;
}

/************************************************/
/* Rechter Bereich                              */
/************************************************/

.header-right{
    display:flex;
    align-items:center;
    gap:20px;
}

/************************************************/
/* Kontakt                                      */
/************************************************/

.headercontact a{
    color:#ffffff;
    text-decoration:none;
    font-size:14px;
}

.headercontact img{
    width:20px;
    height:auto;
    margin-right:5px;
}

/************************************************/
/* Responsive                                   */
/************************************************/

@media(max-width:1024px){

    body{
        padding-top:125px;
    }

    .header-inner{
        padding:12px 30px;
    }

    .theta-symbol img{
        width:65px;
    }

    .theta-divider{
        height:65px;
    }

    .theta-brand-title{
        font-size:18px;
        letter-spacing:4px;
    }

    .theta-brand-subtitle{
        font-size:28px;
    }
}

@media(max-width:768px){

    body{
        padding-top:120px;
    }

    .header-inner{
        min-height:90px;
        padding:14px 20px;
    }

    .header-inner::after{
        left:20px;
        right:20px;
    }

    .theta-header{
        gap:16px;
    }

    .theta-symbol img{
        width:62px;
    }

    .theta-divider{
        height:62px;
    }

    .theta-brand-title{
        font-size:14px;
        letter-spacing:2px;
    }

    .theta-brand-subtitle{
        margin-top:7px;
        font-size:18px;
        line-height:1.25;
    }
}