@charset "utf-8";
html main {
    padding-bottom: 0rem;
}

h2 {
    color: var(--grey);
    font-size: calc( var(--fs-500) * 1.15);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    margin: auto;
    padding-bottom: 13px;
    position: relative;
    padding: 0 1.5rem 0.5rem 1.5rem;
}

.intro-text {
    background-color: var(--light-grey);
    text-align: center;
    padding-top: 1rem;
    background-color: transparent;
    font-size: var(--fs-450);
    font-weight: 600;
    padding: 0 3rem;
    line-height: 2;
}

.text {
    background-color: var(--light-grey);
    padding: 3rem;
    font-size: var(--fs-450);
    text-align: center;
    line-height: 2;
}

.text:first-of-type {
    margin-top: 2rem;
}

.goals {
    background-color: transparent;
    padding: 3rem;
}

.goals h3 {
    color: var(--dark-grey);   
    font-size: var(--fs-500);
}

.goals ul {
    list-style-type: "-";
    line-height: 2;
    padding-top: 1rem;  
    font-size: var(--fs-450);
    padding-left: 1rem;
}

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

/*Bild formatieren*/
.img_container {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

img {
    width: 100%;
    max-width: 400px;
    max-height: 100%;
    padding: 0 3rem;
}

/*ab 1000px Bild und Text nebeneinander*/
@media only screen and (min-width: 1000px) {
    .goals_img {
        display: flex;
        flex-direction: row;
    }

    .img_container {
        padding: 3rem;
        flex: 1 1 50%;
        align-self: center;
        justify-content: center;
        margin-bottom: 0;
    }

    .goals {
        flex: 1 1 50%;
    }
}


/*Overview Block Styling*/
.overview {
    background-color: transparent;
    position: relative;
    padding: 1rem 3rem 0;
    margin-bottom: 2rem;
}

/*Linie zu Beginn als Abtrennung*/
.overview::before {
    content: "";
    position: absolute;
    display: block;
    height: 2px;
    width: 70%;
    top: 0;
    left: 15%;
    background-color: var(--light-grey);
}

.overview h3 {
    color: var(--dark-grey);
    line-height: 2;
    font-size: var(--fs-500);
    padding-bottom: 1rem;
}

.overview > p {
    line-height: 1.5;
    font-size: var(--fs-400);
}

.info-block-text-fat {
    font-weight: 600;
}

.overview > p > i {
    padding-right: 1rem;
}