.hero{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: left;
    align-items: center;
    padding-top: 80px;
    margin-bottom: 3rem;
    background-position: 50% 50%;
    background-size:cover;    
}
.hero-cologne{
    background-image: url('/img/hero_back_small.avif');

}
.hero-stuttgart{
    background-image: url('/img/stuttgart1.avif');
    
}
.hero-text{
    display: flex;
    flex-direction: column;
    width: 60%;
    padding-block: 10rem;
    padding-inline: 5rem;

    justify-content: center;
    align-items: center;
    background-color: rgba(255,255,255,0.8);
    color: rgb(var(--clr-blue));
}

.hero-text-headline{
    display: flex;
    flex-direction: column;
}

.hero-text-headline > h1 {
    font-size: 5rem;
    font-weight:900;
    margin-bottom: 1rem;
}
.hero-text-subtitle > ul{
    list-style-image: url(/img/check_18.png);
}
.hero-text-subtitle{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-block:  1rem 3rem;
    font-size: 20px;
}
.hero-bild{
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-bild > img{
        width: 600px;

}
@media screen and (max-width: 1400px) {
    .hero-text-headline > h1 {
        font-size: 4.5rem;
        font-weight:800;
        margin-bottom: 2rem;
    }
    .hero-text-subtitle{
        margin-block: 2rem;
    }
    .hero-bild > img{
        width: 500px;
    }
}
@media screen and (max-width: 1300px) {
    
    .hero-text-headline > h1 {
        font-size: 4rem;
    }
    .hero-text-subtitle{
        font-size: 1rem;
    }
    .hero-bild > img{
        width: 400px;

    }
}
@media screen and (max-width: 1000px) {
    
    .hero-text{
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding-block: 5rem;
        padding-inline: 2rem;
        color: rgb(var(--clr-blue));
    }
    .hero-text-headline > h1 {
        font-size: 3rem;
    }
    .hero-text-subtitle{
        margin-block: 0 2rem;
        font-size: 1rem;
    }
    .hero-bild{
        display: none;

    }
}
@media screen and (max-width: 550px) {
    .hero{
        padding-inline: 0rem;
        margin-bottom: 0rem;
    }
    .hero-text{
        padding-inline: 1rem;
    }
    .hero-text-headline > h1 {
        font-size: 2.5rem;
    }
}