.einstieg img{
    display: none;
}
.cta-button{
    display: flex;
    
    background-color: var(--akzent-farbe);
    color: #ffffff;
    border-radius: 0.5rem;
    
    font-size: 1rem;
    text-align: center;
    
    padding: 0.9rem 2rem;
    width: fit-content;
    margin: 2rem auto 2rem auto;

    transition: 0.3s;
}
.cta-button:hover{
    transform: scale(0.97);
    background-color: var(--hover-farbe-buttons);
}
.vorteil-box{
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
}
.vorteil{
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 0 ;
    border-bottom: 1px solid var(--schlichte-linie);
}
.vorteil img{
    width: 35%;
    max-width: 9.375rem;
    margin: 0 auto;
}
.vorteil h2{
    margin: 0.5rem 0 1rem 0;
    font-size: 1.4rem;
    font-weight: 600;
}
.vorteil p{
    margin: 0 0 1rem 0;
}
.vorteil:last-child{
    border-bottom: 0;
}
.bedeutung-seo h3{
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--blickfang-blau);
}
.bedeutung-seo p{
    margin-top: 0;
}
.vergleichsbox-container{
    margin-bottom: 5rem;
}
.vergleichsbox-container h3{
    font-size: 1.3rem;
    font-weight: 700;
}
.vergleichsbox-container li{
    margin-bottom: 1rem;
}
.vergleichsbox-container b{
    font-weight: 700;
}
.vergleichsbox-contra{
    border: 1px solid #f44336;
    border-radius: 0.5rem;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    margin-top: 3rem;

    scale: 0.75;
    opacity: 0;
    position: relative;
    right: 100px;
    transition: 0.75s;

    &.eingeblendet{
        scale: 1;
        opacity: 1;
        right: 0;
    }
}
.vergleichsbox-contra h3{
    color: #f44336;
}
.vergleichsbox-contra ul{
    margin-top: 0;
}
.vergleichsbox-contra div{
    display: flex;
}
.vergleichsbox-contra img{
    width: 10%;
    margin: 0 1rem;
}
.vergleichsbox-pro{
    border: 1px solid #1dbb4d;
    border-radius: 0.5rem;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    margin-top: 3rem;

    scale: 0.75;
    opacity: 0;
    position: relative;
    left: 100px;
    transition: 0.75s;

    &.eingeblendet{
        scale: 1;
        opacity: 1;
        left: 0;
    }
}
.vergleichsbox-pro h3{
    color: #1dbb4d;
}
.vergleichsbox-pro ul{
    margin-top: 0;
}
.vergleichsbox-pro div{
    display: flex;
}
.vergleichsbox-pro img{
    width: 10%;
    margin: 0 1rem;
}
.arbeitsablauf ul{
    padding-left: 0;
    list-style: none;
}
.arbeitsablauf li{
    margin-top: 2rem;
    border: 1px solid var(--schlichte-umrandung);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 3px 1px -2px rgba(29,37,46,.2), 0 2px 2px 0 rgba(29,37,46,.14), 0 1px 5px 0 rgba(29,37,46,.12);

    &.einblendung-von-unten{
        opacity: 0;
        scale: 0.75;
        transition: all 0.75s;
        position: relative;
        top: 100px;
    }
    
    &.eingeblendet{
        opacity: 1;
        top: 0;
        scale: 1;
    }
}
.arbeitsablauf h4{
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--blickfang-blau);
    font-size: 1.4rem;
    font-weight: 500;
}
.cta-abschnitt{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 3rem;
}
.cta-abschnitt a{
    margin: 1rem auto;
}
.faq{
    margin: 6rem auto;
}
.faq h3{
    font-size: 1.8rem;
    text-align: center;
    font-weight: 500;
}
.faq details{
    margin-top: 0.8rem;
    padding: 0.5rem 0.5rem 0.5rem 1.7rem;
    border: 1px solid var(--schlichte-linie);
    border-radius: 0.5rem;
}
.faq summary{
    cursor: pointer;
    font-size: 1rem;
    list-style-position: outside;
    margin: 0.2rem auto;
}
.faq summary::-webkit-detail-marker{
    display: none
}
.faq h4{
    font-size: 1.125rem;
    margin: 0;
    font-weight: 400;
}

@media screen and (min-width:46.875rem){
/*für Bildschirme ab 750px Breite*/    
    .einstieg img{
        width: 40%;
        max-width: 18.75rem;
        margin: 2rem 0;
        display: block;

        &.einblendung-von-rechts{
            opacity: 0;
            position: relative;
            left: 200px;
            scale: 0.75;
            transition: all 1.5s;
        }

        &.eingeblendet{
            opacity: 1;
            left: 0;
            scale: 1;
        }
    }
    .einstieg h1{
        text-align: left;
    }
    .flexbox{
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .flexbox div{
        width: 55%;
    }
    .cta-button{
        margin: 2rem 0;
    }
    .vorteil-box{
        margin: 4rem auto;
        flex-direction: row;
        justify-content: space-evenly;
    }
    .vorteil{
        width: 20%;
        margin: 0;
        border-bottom: 0;
    }
    .vorteil img {
        width: 55%;
        max-width: 9.375rem;
    }
    .vorteil h2{
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    .vorteil p{
        font-size: 0.9rem;
        margin: 0;
    }
    .vergleichsbox-container img{
        max-width: 3.75rem;
    }
    .vergleichsbox-contra ul {
        margin-top: 0.5rem;
    }
    .arbeitsablauf ul{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .arbeitsablauf li{
        width: 47.5%;
    }
}

@media screen and (min-width:84.375rem) {
/* für Bildschirme ab 1350px Breite*/
    article{
        width: 70%;
    }
    .einstieg img{
        max-width: 26rem;
        margin: 0;
    }
    .vergleichsbox-container{
        display: flex;
        justify-content: space-between;
    }
    .vergleichsbox-contra{
        width: 47.5%;
    }
    .vergleichsbox-pro{
        width: 47.5%;
    }
    .arbeitsablauf li{
        width: 30%;
    }
    .cta-abschnitt{
        width: 60%;
        margin: 3rem auto;
    }    
}

