/* Header / Hero */

.headerwrap {
    margin-top: -170px;
    margin-bottom: -100px;
    z-index: 1;
    height: 65vh;
    min-height: 570px;
    max-height: 750px;
    overflow: hidden;
}


.headerwrap div {
	height: 100%;
}

.headerwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.headerwrap + .innerwrap {
    position: relative;
    z-index: 2;
}

/* Intro */

.intro {
    background: white;
    padding: 100px 100px 55px 100px;
    box-shadow: 0 0 60px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
    width: calc(100% - 200px);
}

.intro:before {
    content: "";
    position: absolute;
    top: 100px;
    left: calc(50% - 50vw);
    width: 100vw;
    height: calc(100% - 40px);
    background: var(--grau);
    z-index: -2;
}

.intro:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: -1;
}

.intro-flex {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}

.intro-flex > div {
	flex: auto;
}

.intro-flex > div:nth-child(1) {
	width: calc(70% - 40px);
	margin-right: 40px;
}

.intro-flex > div:nth-child(2) {
	width: 30%;
}

@media (max-width: 1024px) {
    .intro {
        width: 100%;
        margin-left: -5vw;
        padding: 5vw 5vw 5vw 5vw;
    }

    /* body.path-frontpage .intro {
        padding-top: 100px;
    } */

    .intro:before {
        height: calc(100% - 60px);
    }
    
    .intro-flex {
        flex-direction: column;
    }
    
    .intro-flex > div:nth-child(1),
    .intro-flex > div:nth-child(2){
        width: 100%;
        margin-right: 0;
    }
    
}

/* Kontaktblock */
 
.block-kontaktbox {
	width: 90%;
    max-width: 1111px;
    margin: 0 auto;
    position: relative;
	top: 0px;
	left: 0;
    z-index: 3;
    height: 0;
    overflow: visible;
}

.block-kontaktbox .block-content {
	position: absolute;
    z-index: 2;
    background: var(--gelb);
    padding: 22px 24px 0px 28px;
    border: 3px dashed black;
    right: 60px;
    bottom: -60px;
    width: calc(30% - 21px);
    box-sizing: border-box;
}

.block-kontaktbox .block-content p {
	margin-bottom: 15px;
}

.block-kontaktbox p.telefon {
	font-size: 1.5em;
	padding-left: 50px;
}

.block-kontaktbox p.telefon:before {
	height: 40px;
	width: 40px;
	top: -7px;
}

@media (max-width: 1024px) {

    header {
        top: 0;
        z-index: 99;
        height: calc(70px + 5vw);
        position: fixed;
        left: 0;
        width: 100%;
    }

    .block-kontaktbox {
        margin: -40px auto 20px auto;
        height: auto;
    }

    .block-kontaktbox .block-content {
        position: relative;
        bottom: 0px;
        width: 100%;
        right: 0;
    }

    .headerwrap {
        margin-top: 0px;
        margin-bottom: 0px;
        z-index: 1;
        height: 45vh;
        min-height: 45vh;
    }

    header .innerwidth > div.logo {
        text-indent: 0;
        background: var(--blau) url('../images/signet.svg') no-repeat left center;
        background-size: contain;
        font-weight: 700;
        width: 250px;
        height: 70px;
        top: 5vw;
    }

    header .innerwidth > div.logo a {
        text-decoration: none;
        color: white;
        padding-left: 84px;
        font-size: 0.9em;
        line-height: 1.5em;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: calc(100% - 84px);
    }
}
