@charset "utf-8";

/*großes Hintergrundbild*/
.background-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -17;
    filter: brightness(0.7); 
}

/* Formatierung Überschrift */
h2 {
    width: 80%;
    max-width: 31.25rem;
    margin: 0 auto var(--fs-600) auto;
    text-align: center;
    font-weight: 300;
    line-height: 1.5;
    text-transform: uppercase;
    font-size: var(--fs-600);
    color: var(--background-header);
    letter-spacing: 1px;
}



/* ab Bildschirmen über 430 Pixel Breite Doppelstriche */
@media only screen and (min-width: 430px) {
    h2 {
        /* Striche vor und nach Überschrift */
        display: grid;
        grid-template-columns: 1fr max-content 1fr;
        grid-template-rows: 27px 0;
        grid-gap: 20px;
        align-items: center;
    }    
    /*Striche vor und nach Überschrift*/
    h2:after, 
    h2:before {
        content: "";
        display: block;
        border-bottom: 1px solid var(--light-white);
        border-top: 1px solid var(--light-white);
        height: 5px;
    }
}

/* große Box mit Förderungen */
.foerderungen-box {
    background-color: var(--light-white);
    width: 90%;
    max-width: 70rem;
    padding: 2rem;
    margin: 0 auto;
    border: 2px solid var(--light-grey);
}

/*Überschriften formatieren*/
.foerderung h3 {
    color: black;
    font-size: var(--fs-500);
    font-weight: 600;
    margin-bottom: var(--fs-500);
}

/*Text formatieren*/
.foerderung p {
    font-size: var(--fs-450);
    line-height: 1.5;
}


/*Abstände zwischen Förderungen*/
.foerderung:first-of-type {
    padding-bottom: 2rem;
    border-bottom: dashed 1px var(--grey);
}

.foerderung:last-of-type {
    padding-top: 2rem;
}

/*Design kleine Zwischenüberschrift*/
.possible_for ul {
    list-style-type: "-";
    padding-left: 1rem;
    font-size: var(--fs-450);
    padding-top: var(--fs-400);
    line-height: 2;
}

.possible_for ul li {
    padding-left: 1rem;
}