/** globale Definitionen **/
:root {
    --fontFamily: "Segoe UI", Arial, Verdana, Helvetica, sans-serif;

    --textColor: #000;
    --borderColor: #000;

    --bulletColor: #000;

    --aColor: #00f;
    --aHoverColor: #00f;

    --btnBackColor: #00f;
    --btnBackHoverColor: #00f;
    --btnTextColor: #fff;
    --btnTextHoverColor: #fff;

    --fontSize: 16px;

    --h1Size: 24px;
	--h1LineHeight: 30px;
    --h1Color: var(--textColor);
    --h1BackColor: transparent;

    --h2Size: 20px;
	--h2LineHeight: 40px;
    --h2Color: var(--textColor);
    --h2BackColor: transparent;

    --h3Size: 16px;
	--h3LineHeight: 40px;
    --h3Color: var(--textColor);
    --h3BackColor: transparent;


    --cBlue: #023d6b;
}

/** Schriften **/
/* @font-face {
    font-family: "DGUVMetaWeb";
    src: url("../fonts/DGUVMetaWeb-Normal.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "DGUVMetaWeb";
    src: url("../fonts/DGUVMetaWeb-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap
} */

/** Reset **/
* {
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}

html,
body {
    background-color: #fff;
}

p {
    padding: 5px 0;
}

ul,
ol {
    padding: 5px 0 5px 18px;
}

sub {
    line-height: 0;
}

/** Standards **/
#wrapper {
    margin: auto;
    max-width: 900px;
    font-family: var(--fontFamily);
    font-size: var(--fontSize);
    border: 1px solid var(--borderColor);
    line-height: 28.5px;
}

h2:empty,
h3.empty,
h4.empty,
h5.empty,
h6.empty,
div:empty,
p:empty,
ul.empty,
ol.empty,
section:empty {
    display: none;
}

a[href^="tel:"] {
    white-space: nowrap;
}
a {
    color: var(--aColor);
    text-decoration: none;
}
a:hover {
    color: var(--aHoverColor);
}

ul li::marker {
    color: var(--bulletColor);
}

body {
    color: var(--textColor);
}

h1 {
    color: var(--cBlue);
    background-color: var(--h1BackColor);
    font-size: 28px;
	line-height: 32px;
    margin-bottom: 35px;
    margin-top: 10px;
}
h2 {
    color: var(--cBlue);
    background-color: var(--h2BackColor);
    font-size: var(--fontSize);
	line-height: var(25.5px);
}
h3 {
    color: var(--cBlue);
    background-color: var(--h3BackColor);
    font-size: var(--h3Size);
	line-height: var(--h3LineHeight);
}

.btn {
    background-color: var(--btnBackColor);
    color: var(--btnTextColor);
}

.btn:hover {
    background-color: var(--btnBackHoverColor);
    color: var(--btnTextHoverColor);
}

.noWrap {
    white-space: nowrap;
}

.noMg {
    margin-bottom: 0;
    padding-bottom: 0;
}

/*
Bsp. Wie man schnell ein Header für (mehrere) Logos erstellt.
Wenn das Hauptlogo rechts stehen soll dann muss align-items auf felx-end gesetzt werden.
*/

header {
    line-height: 0;
    font-size: 0;
}

header #logos {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row;
    padding: 18px;
    float: right;
    height: 148px;
}

header #logos #mainLogo {
    height: 55px;
    margin: 30px;
}

header #imgSection {
    clear: both;
}

header #imgSection #imgDiv {
    background-color: var(--cBlue);
}
/*
header #imgSection img {
    display: inline-block;
    width: 70%;
}

header #imgSection p {
    display: inline-block;
    width: 29.5%;
    padding: 12px;
    color: #fff;
    top: -48px;
    font-size: var(--fontSize);
    line-height: 20px;
}
*/

#intro {

}

section {}

header #imgSection #imgDiv {
    display: grid; 
    grid-template-columns: 2.5fr 1.035fr; 
    grid-template-rows: 1fr; 
    gap: 0px 0px; 
}

header #imgSection img {
    /*display: inline-block;*/
    width: 100%;
    aspect-ratio: inherit;
}

header #imgSection p {
    display: inline-block;
    /*width: 29.5%;*/
    padding: 24px;
    color: #fff;
    /*top: -48px;*/
    font-size: var(--fontSize);
    line-height: 23px;
}



main {
    padding: 55px;
}

main p, main li {
    line-height: 23px;
    padding-bottom: 16px;
}


main li {
    padding-bottom: 3px;
}

a {
    color: var(--cBlue);
    font-weight: bold;
}

a:hover {
    color: var(--cBlue);
    text-decoration: underline;
}

ul {
    padding-top: 0;
    margin-bottom: 22px;
}

#footer, #task, #profile, #offer, #application {
    margin-top: 16px;
}

#application {
    margin-top: 0;
}

.btn {
    display: block;
    background-color: #0067a6;
    color: #fff;
    padding: 12px;
    padding-left: 17px;;
    margin-bottom: 24px;;
    margin-top: 12px;
    width: 180px;
    font-weight: 100;
}

.btn:hover {
    background-color: #0067a6;
    color: #fff;
}

#eQuality {
    margin-top: 14px;
    width: 110px;
}


#footer {
    margin-bottom: -16px;
}

@media screen and (max-width: 890px) {
	header #imgSection #imgDiv {
        display: block;
    }

    header #imgSection p {
        display: block;
    }
/*
    header #imgSection p {
        padding: 24px 55px;
    }
    */

    header #imgSection p {
        padding: 55px;

        padding-top: 27px;
        padding-bottom: 27px;
    }

    header #imgSection img {
        overflow: hidden;
       /* height: 400px; */
        width: 100%;
    }
}

@media screen and (max-width: 520px) {
    #wrapper {
        border: none;
    }

    main,
    header #imgSection p {
        padding: 20px;
    }

    header #logos {
        height: 122px;
    }

    header #logos #mainLogo {
        height: 45px;
        margin: 20px
    }
}

@media screen and (max-width:480px) {
    
}
