.faq_items_lijst{
    display: grid;
    list-style: none;
    padding: 0;
    margin: 0;
    grid-template-columns: repeat(auto-fill, minmax(304px, 1fr));
    column-gap: 3rem;
    row-gap: 3rem;
}

.faq_items_lijst .faq_items_lijst_item{
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    border: 0.1rem solid #ccc;
    background-color: #ffffff;
    padding: 2rem;
    color: var(--paars);
    font-size: 2.8rem;
    font-weight: 500;
    text-decoration: none !important;
    line-height: 3.6rem;
    transition: 0.3s border;
    height: 100%;
}

.faq_items_lijst_item_img{
    height: 4.8rem;
    margin-bottom: 1.5rem;
}

.faq_items_lijst_item_img svg{
    width: auto;
    height: 100%;
}

.faq_items_lijst_meer{
    font-size: 1.5rem;
    line-height: 2.2rem;
    transition: 0.3s color;
}

.faq_items_lijst_meer:hover{
    color: var(--rood);
}

.jumbotron ul.snelle_vragen{
    display: block;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    padding: 0;
    list-style: none;
}

.snelle_vragen a{
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 3rem;
    transition: 0.3s color;
}

.faq_items_lijst_item > a:not(.faq_items_lijst_meer){
    text-decoration: none !important;
    transition: 0.3s color;
}

.snelle_vragen a:hover,
.faq_items_lijst_item > a:not(.faq_items_lijst_meer):hover{
    color: var(--rood);
}