main{
    min-height: 100vh;
    margin-top: 9.4rem;
}
.hero {
    width: 100%;
    align-items: bottom;
    justify-items: left;
    display: grid;
    position: relative;
}
.hero > .box {
    position: absolute;
    background-color: white;
    padding: 1.35rem;
    border-radius: 1rem;
    right: 55%;
    top:75%;
    
}
.hero > .box > h1 {
    color: var(--orange);
    font-weight: 900;
    font-size: var(--xxx-large);
}
.hero > .box > h3{
    color: var(--grey);
    font-weight: 500;
    font-size: var(--x-large);
}

.hero > img {
    width: 100%;
    max-height: 90vh;
    object-fit: cover;
    object-position: center;
}

.vorstellung {
    width: 80rem;
    margin: 3.5rem auto 0;
    display: grid;
    grid-template-columns: 3fr 2fr;
    box-shadow: -5px 6px 30px 5px rgba(0,0,0,0.15);
}

.vorstellung.rechts {
    grid-template-columns: 2fr 3fr;
}

.vorstellung > .bild {
    background: var(--bg);
}

.vorstellung > img {
    width: 100%;
    height: auto;
    display: block;
}

.vorstellung > .text {
    padding: 1.35rem;
    width: calc(100% - 2.7rem);
    margin: auto;
    hyphens: auto;
}

.vorstellung > .text h3 {
    font-size: var(--x-large);
    color: var(--orange);
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
}


.vorstellung > .text p {
    font-size: var(--text-size);
    text-align: justify;
    hyphens: auto;
    padding-bottom: 1rem;
}


.vorstellung-hero{
    width: 100%;
    padding-top: 5rem;
}

.vorstellung-hero > h1{
    font-size: var(--xxx-large);
    font-weight: 900;
    color: var(--orange);
    text-align: center;
    padding-bottom: 2rem;
}

.vorstellung-hero > h2{
    font-size: var(--xx-large);
    font-weight: 900;
    color: var(--grey);
    text-align: center;
}

.vorstellung-hero > h2 > orange{
    color: var(--orange);
    font-size: var(--xx-large);
}


 

@media(max-width:1200px) {
    .vorstellung,
    .vorstellung.rechts {
        width: 60rem;
        grid-template-columns: 1fr 1fr;
    }
    
}
@media(max-width:900px) {
    .vorstellung,
    .vorstellung.rechts {
        width: 60vw;
        grid-template-columns: 1fr;
    }
    
}
@media(max-width:700px) {
    .vorstellung,
    .vorstellung.rechts {
        width: 80vw;
    }
}