
#usp-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
}



.praktische-card{
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    color: var(--wtl-t);
    text-align: center;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.praktische-card h6{
    margin-bottom: 0;

}



@media screen and (max-width: 768px){
    .section{
        height: auto;
    }
    .small-section{
        height: auto;
    }
    #usp-grid{
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 1rem;
    }
}



.praktische-card:nth-child(1){
    background: var(--wtl-lb);
    color: #fff;
}

.praktische-card:nth-child(2){
    background: var(--wtl-b1);
    color: #fff;
}

.praktische-card:nth-child(3){
    background: var(--wtl-o);
    color: #fff;
}
