#contentbox-leistungen {
    display: grid;
    grid-template-columns: 0.4fr 1fr 0.4fr;
    grid-template-rows: auto;
    grid-template-areas:
            ". leistungen .";

    font-family: "PT Sans";
    font-weight: 400;
    color: black;       
    margin: 40px 0px 40px 0px;
    width: 100%;

}

#leistungen {
    grid-area: leistungen;
    font-style: italic;
}

.slidedown {
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 10px;
    padding: 20px;
    background-color: rgb(109, 177, 109);
    color: black;
    user-select: none;
    cursor: pointer;
}

.description {
    background-color: rgb(109, 177, 109);
    color: black;
    display: none;
    font-size: 2.1rem;
    font-weight: 400;
    font-style: normal;
    margin: 0px 0px 20px 0px;
    padding: 20px;
    text-align: justify;
    text-align-last: left;
}

.leistung-grid {
    display: grid;
    grid-template-columns: 0.01fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
            ". leistung";
}

.leistung-description {
    grid-area: leistung;
}

.leistung-description a {
    display: inline-block;
    color:black;
    background-color: white;
    text-decoration: none;
    margin-bottom: 15px;
    padding: 5px;
    border-radius: 11px;

}

.leistung-description a:hover{
    color:rgb(0, 3, 196)
}

/* ******************************************************************************* */
/* Responsive Regeln für den contentbox-leistungen
/* ******************************************************************************* */

/* bei Auflösung bis 625 Pixeln: */
@media screen and (max-width: 625px){
    #contentbox-leistungen {
        grid-template-columns: 0.1fr 3fr 0.1fr;
    }

    .description {
        font-size: 1.9rem;
    }
}

@media screen and (min-width: 626px) and (max-width: 1000px){
    #contentbox-leistungen {
        grid-template-columns: 0.3fr 3fr 0.3fr;
    }

    .description {
        font-size: 2.0rem;
    }

}

@media screen and (min-width: 1001px) and (max-width: 1300px){
    #contentbox-leistungen {
        grid-template-columns: 0.4fr 3fr 0.4fr;
    }
}