@charset "utf-8";

/*HAUPTBEREICH & SLIDESHOW FORMATIERUNGEN*/
main {
    background-color: var(--background);
    padding: 2rem;
    z-index: -1;
}

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

/*INTRO 1 COACHING & INTRO 2 BERATUNG GRUNDEINSTELLUNGEN*/
.intro {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--background-header);
    line-height: 2;
    padding: 1rem;
    border-radius: 5px 5px 5px 5px;
    margin-bottom: 2rem;
    position: relative;
}

.intro > h1 {
    font-size: var(--fs-600);
    font-weight: 500;
    color: var(--grey);
    text-align: center;
    padding-top: 1rem;
}

.line-large {
    height: 1px;
    width: 100%;
    background-color: var(--grey);
    margin: 1rem 0 1rem 0;
    display: block;
    z-index: 1;
}

.intro > p {
    font-size: var(--fs-450);
    text-align: left;
}

/*INTRO 1 DETAILS*/
.intro > ul > li {
    list-style-type: '-';
    position: relative;
    left: 2rem;
    padding-left: 0.4375rem;
    margin-right: 2rem;
    font-size: var(--fs-450);
}

.intro > ul li ul li {
    list-style-type: '--';
    position: relative;
    left: 2rem;
    padding-left: 0.4375rem;
    margin-right: 2rem;
}

.intro > ul > li::marker {
    width: 10px;
}

@media only screen and (min-width: 50rem) {
    .intro {
        width: 80%;
        max-width: 87.5rem;
        margin: 0 auto 2rem auto;
    }

    .line-large {
        width: 50%;
        max-width: calc( 87.5rem * 1/2);
        margin: 1.5rem auto 1.5rem auto;
    }
}

h2 {
    font-size: 1.7rem;
}

/*Training Grundeinstellung*/
.intro h3 {
    font-size: var(--fs-500);
}

h3::before {
    content: "";
    border-top: 1px dashed black; /* Gestrichelte Linie */
    height: 0; /* Keine Höhe nötig, Linie wird durch border erzeugt */
    position: relative;
    width: 70%;
    max-width: 30rem;
    display: block;
    margin: 1rem 0;
}
