.bhv-aanbieder-wrapper {
    display: grid;
    grid-template-areas:
        "intro intro"
        "sidebar providers"
        "faq faq";
    grid-template-columns: 1fr 5fr;
    /* background-color: #1F3A5F; */
    gap: 20px;
    padding: 0 20px;
}

.bhv-aanbieder-introductie {
    grid-area: intro;
    text-align: center;
}

/* Alles in de sidebar */
.sidebar {
    grid-area: sidebar;
    background-color: #1F3A5F;
    color: white;
    border-radius: 20px;
    padding: 20px;
    height: fit-content;
}
.bhv-aanbieder-filter {
    /* grid-area: filter; */
}
.bhv-aanbieder-filter form {
    display: flex;
    align-items: end;
    margin-top: 20px;
    margin-bottom: 30px;
}
.bhv-aanbieder-filter form button {
    height: 80%;
    margin-left: 10px;
}
/* .bhv-aanbieder-filter form label p {
    margin-bottom: 5px;
} */
.bhv-aanbieder-overige-locaties ul {
    /* grid-area: overige; */
    max-height: 400px;
    overflow: auto;
    list-style-type: none;
    padding: 0;
}
.bhv-aanbieder-overige-locaties ul li a:hover {
    color: #fa3650;
    font-size: 110%;
}
/* scrollbar breedte */
.bhv-aanbieder-overige-locaties ul::-webkit-scrollbar {
    width: 8px;
}
/* achtergrond */
.bhv-aanbieder-overige-locaties ul::-webkit-scrollbar-track {
    /* background: red;border-radius: 10px; */
    background: transparent;
}
/* scroll blokje */
.bhv-aanbieder-overige-locaties ul::-webkit-scrollbar-thumb {
    /* background: blue;
    border-radius: 10px; */
    background: #8B1E2D;
    border-radius: 10px;
}


/* Provider container en cards */
.bhv-aanbieder-providers {
    grid-area: providers;
    background-color: #1F3A5F;
    color: white;
    border-radius: 20px;
    padding: 20px;
    height: fit-content;
}
.bhv-aanbieder-providers ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
}
.bekijk-aanbieder-link {
    font-size: 120%;
}
.bekijk-aanbieder-link:hover {
    color: #fa3650;
}
.bhv-aanbieder-provider-card {
    border: 2px solid #2A4B7C;
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-sizing: border-box;
    width: calc(33% - 5px);
}
.bhv-aanbieder-provider-card p {
    color: black;
}
.bhv-aanbieder-provider-card img {
    /* transform: scale(50%); */
    min-width: 40px;
    max-width: 60px;
    height: auto;
}

/* Faq */
.bhv-aanbieder-faq {
    grid-area: faq;
    text-align: center;
}

#hero_h1 {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 2;
    font-size: 47px;
    font-family:'Roboto', Sans-serif;
    text-align: center;
    margin: 0;
    width:100%;
}

#hero_h3 {
    position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 2;
    font-family:'Roboto', Sans-serif;
    font-size:1.25rem;
    text-align: center;
    margin: 0;
    width:100%;
}

.paginatie {
    margin:10px;
    text-align: center;
}

a.next.page-numbers:hover{
    color:#FA3650;
    font-size: 101%;
}
a.prev.page-numbers:hover{
    color:#FA3650;
    font-size: 101%;
}
a.page-numbers:hover{
    color:#FA3650;
    font-size: 101%;
}

@media (max-width: 700px) {

    #hero_h1 {
        top: 35%;
    }

    #hero_h3{
        top: 44%;
    }

    .bhv-aanbieder-wrapper {
        grid-template-areas:
            "intro"
            "sidebar"
            "providers"
            "faq";
        grid-template-columns: 1fr;
    }
    
    .bhv-aanbieder-provider-card {
        width: 100%;
    }

    .bhv-aanbieder-filter form {
        flex-direction: column;
        align-items: stretch;
    }

    .bhv-aanbieder-filter form button {
        margin-left: 0;
        margin-top: 10px;
    }

    .bhv-aanbieder-overige-locaties ul {
        /* grid-area: overige; */
        max-height: 250px;
        overflow: auto;
        list-style-type: none;
        padding: 0;
    }

    .overlay-hero-section, .hero-section img {
        height: 80% !important;
    }

    h3#hero_h3 {
        width: 90%;
    }
}