* {
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    overflow-x: hidden; /* Voorkom horizontaal scrollen */
}

header {
    background-color: #B22222; /* Rood */
    color: white;
    padding: 20px 0;
    position: relative;
    text-align: center;
}

.header-title {
    text-align: center;
}

header h1 {
    margin: 0;
}

nav {
    margin-top: 10px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

.logo {
    position: absolute;
    right: 20px;
    top: 20px;
}

.logo img {
    height: 50px;
    width: auto; /* Zorg dat de afbeelding in verhouding blijft */
}

main {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .logo {
        position: static;
        margin-top: 10px;
    }

    section {
        padding: 10px; /* Minder padding voor kleinere schermen */
    }
}

/* Carousel Styles */
.carousel-index {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}
.carousel-index img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.carousel-index img.active {
    opacity: 1;
}

.carousel {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel img.active {
    opacity: 1;
}

/* Footer Styles */
footer {
    background-color: #B22222; /* Rood */
    color: white;
    text-align: center;
    padding: 10px 0;
}

.social-media {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.social-media a {
    margin: 0 10px;
}

.social-media img {
    width: 40px;
    height: auto;
}

/* Over Ons Page Styles */
#over-ons .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#over-ons .left, #over-ons .right {
    flex: 1;
    min-width: 300px;
    margin: 10px;
}

#over-ons h3 {
    color: #B22222;
}

#over-ons p {
    margin-bottom: 20px;
}

#over-ons img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Contactpagina stijlen */
.contact-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
}

.contact-info, .addresses, .api {
    margin-bottom: 20px;
}

.contact-info h2, .addresses h2, .api h2, .api h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.contact-info p, .addresses p, .api p {
    font-size: 1em;
    margin-left: 70px;
}

.api-person {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    margin-left: 20px;
}

.api-person img {
    height: 105px;
    width: 105px;
    border-radius: 50%;
    margin-left: 70px;
}

.api-info p {
    margin-left: 20px;
}

form {
    margin-top: 20px;
}

form label {
    display: block;
    margin-bottom: 5px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #B22222;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #8B0000;
}

/*.map-container {*/
/*    margin-top: 20px;*/
/*}*/


.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 20px; /* Ruimte tussen de kaart en volgende sectie */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsiveness */
@media (max-width: 768px) {
    .map-container {
        padding-bottom: 75%; /* Verhouding aanpassen voor mobiele weergave */
    }
}

form {
    max-width: 100%; /* Zorg ervoor dat de form de breedte van de container volgt */
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}






/* Tabel stijlen */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 18px;
    text-align: left;
}

.styled-table thead tr {
    background-color: #8B0000;
    color: #ffffff;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #8B0000;
}

.styled-table tbody tr:hover {
    background-color: #f1f1f1;
}

.content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Kleinere gap voor betere weergave op mobiele apparaten */
}

.content .left, .content .right {
    flex: 1;
    min-width: 300px;
}

.content img {
    max-width: 100%;
    height: auto;
}

/*.sponsor-item {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    margin-bottom: 20px;*/
/*    text-align: center; !* Zorg dat de tekst gecentreerd is onder de afbeelding *!*/
/*}*/

/*.sponsor-img {*/
/*    width: 100%;*/
/*    max-width: 250px;*/
/*    height: auto;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    overflow: hidden;*/
/*    margin-bottom: 10px;*/
/*    margin-right: 100px;*/
/*}*/

/*.sponsor-img img {*/
/*    width: 100%;*/
/*    height: auto;*/
/*}*/

#sponsors {
    text-align: center;
    padding: 20px;
}

#sponsors .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.sponsor-item {
    width: calc(33.333% - 40px);
    margin: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sponsor-item .sponsor-img {
    width: 100%;
    max-width: 200px; /* Maximale breedte van de afbeelding container */
    aspect-ratio: 1; /* Verhouding van de afbeelding container */
    overflow: hidden; /* Zorgt ervoor dat de afbeelding binnen de container blijft */
    margin-bottom: 10px;
}

.sponsor-item .sponsor-img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Zorgt ervoor dat de volledige afbeelding zichtbaar is */
}

.sponsor-info {
    margin-top: auto;
}
.sponsor-info h3 {
    margin: 0 0 10px 0;
}

/* Footer Styles */
footer {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-logo img {
    height: 50px;
    width: auto; /* Zorg dat de afbeelding in verhouding blijft */
}

.footer-text {
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-social div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social img {
    height: 24px;
}

.footer-social p {
    margin: 0;
    font-weight: bold;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-social {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .footer-text, .footer-social {
        text-align: center;
    }
    .footer-social {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin-bottom: 20px;
    }
}

/* Media Queries voor verschillende schermgroottes */
@media (max-width: 1024px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .content .left, .content .right {
        min-width: 100%;
        margin-bottom: 20px;
    }

    .carousel {
        height: 600px;
    }

    .carousel img {
        height: auto;
    }
}

@media (max-width: 768px) {
    .carousel {
        height: 400px;
    }

    .carousel img {
        height: auto;
    }

    .api-person {
        flex-direction: column;
        align-items: center;
    }

    .api-person img {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .api-info p {
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }

    .carousel {
        height: 300px;
    }

    .carousel img {
        height: auto;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 5px 0;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin-bottom: 10px;
    }
}

/* Specifieke stijlen voor tabel weergave op mobiele apparaten */
@media (max-width: 768px) {
    .styled-table {
        font-size: 16px;
    }

    .styled-table th, .styled-table td {
        padding: 10px;
    }

    .styled-table thead {
        display: none;
    }

    .styled-table, .styled-table tbody, .styled-table tr, .styled-table td {
        display: block;
        width: 100%;
    }

    .styled-table tr {
        margin-bottom: 15px;
    }

    .styled-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .styled-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-weight: bold;
        text-align: left;
    }
}

/* Formulier stijlen voor mobiele apparaten */
@media (max-width: 768px) {
    form label {
        margin-bottom: 3px;
    }

    form input, form textarea {
        padding: 8px;
        margin-bottom: 8px;
    }

    form button {
        padding: 8px 16px;
    }












}



























/*!** {*!*/
/*!*    box-sizing: border-box;*!*/
/*!*}*!*/

/*!*!* Universele stijlen *!*!*/
/*!*body {*!*/
/*!*    font-family: 'Helvetica Neue', Arial, sans-serif;*!*/
/*!*    margin: 0;*!*/
/*!*    padding: 0;*!*/
/*!*    background-color: #f4f4f4;*!*/
/*!*    color: #333;*!*/
/*!*}*!*/

/*!*header {*!*/
/*!*    background-color: #B22222; !* Rood *!*!*/
/*!*    color: white;*!*/
/*!*    padding: 20px 0;*!*/
/*!*    position: relative;*!*/
/*!*    text-align: center;*!*/
/*!*}*!*/

/*!*.header-title {*!*/
/*!*    text-align: center;*!*/
/*!*}*!*/

/*!*header h1 {*!*/
/*!*    margin: 0;*!*/
/*!*}*!*/

/*!*nav {*!*/
/*!*    margin-top: 10px;*!*/
/*!*}*!*/

/*!*nav ul {*!*/
/*!*    list-style-type: none;*!*/
/*!*    padding: 0;*!*/
/*!*    display: flex;*!*/
/*!*    justify-content: center;*!*/
/*!*    margin: 0;*!*/
/*!*}*!*/

/*!*nav ul li {*!*/
/*!*    margin: 0 15px;*!*/
/*!*}*!*/

/*!*nav ul li a {*!*/
/*!*    color: white;*!*/
/*!*    text-decoration: none;*!*/
/*!*    font-weight: bold;*!*/
/*!*}*!*/

/*!*nav ul li a:hover {*!*/
/*!*    text-decoration: underline;*!*/
/*!*}*!*/

/*!*.logo {*!*/
/*!*    position: absolute;*!*/
/*!*    right: 20px;*!*/
/*!*    top: 20px;*!*/
/*!*}*!*/

/*!*.logo img {*!*/
/*!*    height: 50px;*!*/
/*!*}*!*/

/*!*!*main {*!*!*/
/*!*!*    padding: 20px;*!*!*/
/*!*!*}*!*!*/

/*!*!*section {*!*!*/
/*!*!*    max-width: 1200px;*!*!*/
/*!*!*    margin: 20px auto;*!*!*/
/*!*!*    background: white;*!*!*/
/*!*!*    padding: 20px;*!*!*/
/*!*!*    border-radius: 8px;*!*!*/
/*!*!*    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*!*!*/
/*!*!*}*!*!*/

/*!*main {*!*/
/*!*    padding: 20px;*!*/
/*!*    display: flex;*!*/
/*!*    flex-direction: column;*!*/
/*!*    align-items: center;*!*/
/*!*}*!*/

/*!*section {*!*/
/*!*    width: 100%;*!*/
/*!*    max-width: 1200px;*!*/
/*!*    margin: 20px auto;*!*/
/*!*    background: white;*!*/
/*!*    padding: 20px;*!*/
/*!*    border-radius: 8px;*!*/
/*!*    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*!*/
/*!*}*!*/

/*!*@media (max-width: 768px) {*!*/
/*!*    nav ul {*!*/
/*!*        flex-direction: column;*!*/
/*!*        align-items: center;*!*/
/*!*    }*!*/

/*!*    nav ul li {*!*/
/*!*        margin: 10px 0;*!*/
/*!*    }*!*/

/*!*    .logo {*!*/
/*!*        position: static;*!*/
/*!*        margin-top: 10px;*!*/
/*!*    }*!*/
/*!*}*!*/

/*!*!* Carousel Styles *!*!*/
/*!*.carousel-index {*!*/
/*!*    position: relative;*!*/
/*!*    width: 100%;*!*/
/*!*    height: 500px;*!*/
/*!*    overflow: hidden;*!*/
/*!*}*!*/
/*!*.carousel-index img {*!*/
/*!*    position: absolute;*!*/
/*!*    top: 0;*!*/
/*!*    left: 0;*!*/
/*!*    width: 100%; !* Zorg ervoor dat elke afbeelding 100% van de carousel breedte inneemt *!*!*/
/*!*    height: 500px; !* Geef een vaste hoogte aan de afbeeldingen *!*!*/
/*!*    object-fit: cover;*!*/
/*!*    opacity: 0;*!*/
/*!*    transition: opacity 1s ease-in-out;*!*/
/*!*}*!*/
/*!*.carousel-index img.active {*!*/
/*!*    opacity: 1;*!*/
/*!*}*!*/

/*!*.carousel {*!*/
/*!*    position: relative;*!*/
/*!*    width: 100%;*!*/
/*!*    height: 800px;*!*/
/*!*    overflow: hidden;*!*/
/*!*}*!*/

/*!*.carousel img {*!*/
/*!*    position: absolute;*!*/
/*!*    top: 0;*!*/
/*!*    left: 0;*!*/
/*!*    width: 100%; !* Zorg ervoor dat elke afbeelding 100% van de carousel breedte inneemt *!*!*/
/*!*    height: 800px; !* Geef een vaste hoogte aan de afbeeldingen *!*!*/
/*!*    object-fit: cover;*!*/
/*!*    opacity: 0;*!*/
/*!*    transition: opacity 1s ease-in-out;*!*/
/*!*}*!*/

/*!*.carousel img.active {*!*/
/*!*    opacity: 1;*!*/
/*!*}*!*/

/*!*!* Footer Styles *!*!*/
/*!*footer {*!*/
/*!*    background-color: #B22222; !* Rood *!*!*/
/*!*    color: white;*!*/
/*!*    text-align: center;*!*/
/*!*    padding: 10px 0;*!*/
/*!*}*!*/

/*!*.social-media {*!*/
/*!*    display: flex;*!*/
/*!*    justify-content: center;*!*/
/*!*    margin-top: 10px; !* Ruimte boven de social media iconen *!*!*/
/*!*}*!*/

/*!*.social-media a {*!*/
/*!*    margin: 0 10px; !* Ruimte tussen de iconen *!*!*/
/*!*}*!*/

/*!*.social-media img {*!*/
/*!*    width: 40px; !* Pas de breedte van de afbeeldingen aan *!*!*/
/*!*    height: auto; !* Behoud de aspect ratio *!*!*/
/*!*}*!*/

/*!*!* Over Ons Page Styles *!*!*/
/*!*#over-ons .content {*!*/
/*!*    display: flex;*!*/
/*!*    flex-wrap: wrap;*!*/
/*!*    justify-content: space-between;*!*/
/*!*}*!*/

/*!*#over-ons .left, #over-ons .right {*!*/
/*!*    flex: 1;*!*/
/*!*    min-width: 300px;*!*/
/*!*    margin: 10px;*!*/
/*!*}*!*/

/*!*#over-ons h3 {*!*/
/*!*    color: #B22222;*!*/
/*!*}*!*/

/*!*#over-ons p {*!*/
/*!*    margin-bottom: 20px;*!*/
/*!*}*!*/

/*!*#over-ons img {*!*/
/*!*    width: 100%;*!*/
/*!*    max-width: 300px;*!*/
/*!*    height: auto;*!*/
/*!*    border-radius: 8px;*!*/
/*!*    margin-bottom: 20px;*!*/
/*!*}*!*/

/*!*!* Contactpagina stijlen *!*!*/
/*!*.contact-title {*!*/
/*!*    text-align: center;*!*/
/*!*    font-size: 2em;*!*/
/*!*    margin-bottom: 20px;*!*/
/*!*}*!*/

/*!*.contact-info, .addresses, .api {*!*/
/*!*    margin-bottom: 20px;*!*/
/*!*}*!*/

/*!*.contact-info h2, .addresses h2, .api h2, .api h3 {*!*/
/*!*    font-size: 1.5em;*!*/
/*!*    margin-bottom: 10px;*!*/
/*!*}*!*/

/*!*.contact-info p, .addresses p, .api p {*!*/
/*!*    font-size: 1em;*!*/
/*!*    margin-left: 70px;*!*/
/*!*}*!*/

/*!*.api-person {*!*/
/*!*    display: flex;*!*/
/*!*    align-items: center;*!*/
/*!*    margin-bottom: 20px;*!*/
/*!*    margin-left: 20px; !* Inspringen *!*!*/
/*!*}*!*/

/*!*.api-person img {*!*/
/*!*    height: 105px; !* Groter formaat *!*!*/
/*!*    width: 105px; !* Groter formaat *!*!*/
/*!*    border-radius: 50%; !* Cirkelvormig *!*!*/
/*!*    margin-left: 70px;*!*/
/*!*}*!*/

/*!*.api-info p {*!*/
/*!*    margin-left: 20px;*!*/
/*!*}*!*/

/*!*form {*!*/
/*!*    margin-top: 20px;*!*/
/*!*}*!*/

/*!*form label {*!*/
/*!*    display: block;*!*/
/*!*    margin-bottom: 5px;*!*/
/*!*}*!*/

/*!*form input, form textarea {*!*/
/*!*    width: 100%;*!*/
/*!*    padding: 10px;*!*/
/*!*    margin-bottom: 10px;*!*/
/*!*    border: 1px solid #ccc;*!*/
/*!*    border-radius: 5px;*!*/
/*!*}*!*/

/*!*form button {*!*/
/*!*    background-color: #B22222;*!*/
/*!*    color: white;*!*/
/*!*    border: none;*!*/
/*!*    padding: 10px 20px;*!*/
/*!*    border-radius: 5px;*!*/
/*!*    cursor: pointer;*!*/
/*!*}*!*/

/*!*form button:hover {*!*/
/*!*    background-color: #8B0000;*!*/
/*!*}*!*/

/*!*.map-container {*!*/
/*!*    margin-top: 20px;*!*/
/*!*}*!*/

/*!*!* Tabel stijlen *!*!*/
/*!*.styled-table {*!*/
/*!*    width: 100%;*!*/
/*!*    border-collapse: collapse;*!*/
/*!*    margin: 25px 0;*!*/
/*!*    font-size: 18px;*!*/
/*!*    text-align: left;*!*/
/*!*}*!*/

/*!*.styled-table thead tr {*!*/
/*!*    background-color: #8B0000;*!*/
/*!*    color: #ffffff;*!*/
/*!*}*!*/

/*!*.styled-table th,*!*/
/*!*.styled-table td {*!*/
/*!*    padding: 12px 15px;*!*/
/*!*}*!*/

/*!*.styled-table tbody tr {*!*/
/*!*    border-bottom: 1px solid #dddddd;*!*/
/*!*}*!*/

/*!*.styled-table tbody tr:nth-of-type(even) {*!*/
/*!*    background-color: #f3f3f3;*!*/
/*!*}*!*/

/*!*.styled-table tbody tr:last-of-type {*!*/
/*!*    border-bottom: 2px solid #8B0000;*!*/
/*!*}*!*/

/*!*.styled-table tbody tr:hover {*!*/
/*!*    background-color: #f1f1f1;*!*/
/*!*}*!*/

/*!*.content {*!*/
/*!*    display: flex;*!*/
/*!*    flex-wrap: wrap;*!*/
/*!*    gap: 100px;*!*/
/*!*}*!*/

/*!*.content .left, .content .right {*!*/
/*!*    flex: 1;*!*/
/*!*    min-width: 300px;*!*/
/*!*}*!*/

/*!*.content img {*!*/
/*!*    max-width: 100%;*!*/
/*!*    height: auto;*!*/
/*!*}*!*/

/*!*.sponsor-item {*!*/
/*!*    display: flex;*!*/
/*!*    align-items: center;*!*/
/*!*    margin-bottom: 20px;*!*/
/*!*}*!*/

/*!*.sponsor-img {*!*/
/*!*    width: 250px;*!*/
/*!*    height: 250px;*!*/
/*!*    display: flex;*!*/
/*!*    justify-content: center;*!*/
/*!*    align-items: center;*!*/
/*!*    overflow: hidden;*!*/
/*!*    margin-right: 20px;*!*/
/*!*}*!*/

/*!*.sponsor-img img {*!*/
/*!*    width: 100%;*!*/
/*!*    height: 100%;*!*/
/*!*    object-fit: cover;*!*/
/*!*}*!*/

/*!*.sponsor-info h3 {*!*/
/*!*    margin: 0 0 10px 0;*!*/
/*!*}*!*/

/*!*!* Footer Styles *!*!*/
/*!*footer {*!*/
/*!*    background-color: #f8f9fa;*!*/
/*!*    padding: 20px;*!*/
/*!*    text-align: center;*!*/
/*!*    font-size: 14px;*!*/
/*!*    color: #6c757d;*!*/
/*!*    border-top: 1px solid #e9ecef;*!*/
/*!*}*!*/

/*!*.footer-container {*!*/
/*!*    display: flex;*!*/
/*!*    flex-direction: column;*!*/
/*!*    align-items: center;*!*/
/*!*}*!*/

/*!*.footer-logo {*!*/
/*!*    margin-bottom: 10px;*!*/
/*!*}*!*/

/*!*.footer-logo img {*!*/
/*!*    height: 50px;*!*/
/*!*}*!*/

/*!*.footer-text {*!*/
/*!*    margin-bottom: 20px;*!*/
/*!*}*!*/

/*!*.footer-social {*!*/
/*!*    display: flex;*!*/
/*!*    flex-direction: column;*!*/
/*!*    align-items: center;*!*/
/*!*    gap: 20px;*!*/
/*!*}*!*/

/*!*.footer-social div {*!*/
/*!*    display: flex;*!*/
/*!*    align-items: center;*!*/
/*!*    gap: 10px;*!*/
/*!*}*!*/

/*!*.footer-social img {*!*/
/*!*    height: 24px;*!*/
/*!*}*!*/

/*!*.footer-social p {*!*/
/*!*    margin: 0;*!*/
/*!*    font-weight: bold;*!*/
/*!*}*!*/

/*!*@media (min-width: 768px) {*!*/
/*!*    .footer-container {*!*/
/*!*        flex-direction: row;*!*/
/*!*        justify-content: space-between;*!*/
/*!*        max-width: 1200px;*!*/
/*!*        margin: 0 auto;*!*/
/*!*    }*!*/

/*!*    .footer-logo {*!*/
/*!*        flex: 1;*!*/
/*!*        text-align: left;*!*/
/*!*    }*!*/

/*!*    .footer-text {*!*/
/*!*        flex: 1;*!*/
/*!*        text-align: center;*!*/
/*!*        margin: 0;*!*/
/*!*    }*!*/

/*!*    .footer-social {*!*/
/*!*        flex: 1;*!*/
/*!*        text-align: right;*!*/
/*!*        gap: 10px;*!*/
/*!*    }*!*/

/*!*    .footer-social div {*!*/
/*!*        justify-content: center;*!*/
/*!*    }*!*/
/*!*}*!*/

/*!*label {*!*/
/*!*    font-weight: bold;*!*/
/*!*}*!*/

/*!*.form-group {*!*/
/*!*    margin-bottom: 1rem;*!*/
/*!*}*!*/

/*!*.input-field {*!*/
/*!*    width: 50%;*!*/
/*!*}*!*/

/*!*.afdeling-container {*!*/
/*!*    display: flex;*!*/
/*!*    flex-wrap: wrap;*!*/
/*!*}*!*/

/*!*.afdeling-column {*!*/
/*!*    flex: 1;*!*/
/*!*    min-width: 200px;*!*/
/*!*}*!*/

/*!*.afdeling-item {*!*/
/*!*    display: flex;*!*/
/*!*    justify-content: space-between;*!*/
/*!*    align-items: center;*!*/
/*!*    !*margin-bottom: 0.5rem;*!*!*/
/*!*}*!*/

/*!*.afdeling-item label {*!*/
/*!*    font-weight: normal;*!*/
/*!*    margin-right: 0.5rem;*!*/
/*!*}*!*/

/*!*.afdeling-item input[type="checkbox"] {*!*/
/*!*    width: 16px;*!*/
/*!*    height: 16px;*!*/
/*!*}*!*/

/*!*.radio-group, .checkbox-group {*!*/
/*!*    display: flex;*!*/
/*!*    flex-direction: column;*!*/
/*!*}*!*/

/*!*.radio-group label, .checkbox-group label {*!*/
/*!*    font-weight: normal;*!*/
/*!*}*!*/

/*!*.radio-group input, .checkbox-group input {*!*/
/*!*    margin-left: auto;*!*/
/*!*}*!*/

/*!*!* Responsive adjustments for small screens *!*!*/
/*!*@media (max-width: 600px) {*!*/
/*!*    header {*!*/
/*!*        padding: 10px 0;*!*/
/*!*    }*!*/

/*!*    .header-title {*!*/
/*!*        font-size: 1.5em;*!*/
/*!*    }*!*/

/*!*    nav ul {*!*/
/*!*        flex-direction: column;*!*/
/*!*    }*!*/

/*!*    nav ul li {*!*/
/*!*        margin: 5px 0;*!*/
/*!*    }*!*/

/*!*    .carousel-index, .carousel {*!*/
/*!*        height: 300px;*!*/
/*!*    }*!*/

/*!*    .carousel-index img, .carousel img {*!*/
/*!*        height: 300px;*!*/
/*!*    }*!*/

/*!*    #over-ons .content {*!*/
/*!*        flex-direction: column;*!*/
/*!*    }*!*/

/*!*    .api-person img {*!*/
/*!*        height: 80px;*!*/
/*!*        width: 80px;*!*/
/*!*        margin-left: 0;*!*/
/*!*    }*!*/

/*!*    .api-info p {*!*/
/*!*        margin-left: 0;*!*/
/*!*    }*!*/

/*!*    .contact-info p, .addresses p, .api p {*!*/
/*!*        margin-left: 0;*!*/
/*!*    }*!*/

/*!*    form input, form textarea {*!*/
/*!*        padding: 8px;*!*/
/*!*    }*!*/

/*!*    form button {*!*/
/*!*        padding: 8px 16px;*!*/
/*!*    }*!*/

/*!*    .styled-table th, .styled-table td {*!*/
/*!*        padding: 8px;*!*/
/*!*    }*!*/

/*!*    .footer-container {*!*/
/*!*        flex-direction: column;*!*/
/*!*        align-items: center;*!*/
/*!*    }*!*/

/*!*    .footer-logo, .footer-text, .footer-social {*!*/
/*!*        text-align: center;*!*/
/*!*    }*!*/
/*!*}*!*/

/*!*!* Responsive table styles *!*!*/
/*!*@media (max-width: 768px) {*!*/
/*!*    .styled-table {*!*/
/*!*        display: block;*!*/
/*!*        overflow-x: auto;*!*/
/*!*        white-space: nowrap;*!*/
/*!*    }*!*/
/*!*    .styled-table thead {*!*/
/*!*        display: table;*!*/
/*!*        width: 100%;*!*/
/*!*    }*!*/
/*!*    .styled-table tbody {*!*/
/*!*        display: table;*!*/
/*!*        width: 100%;*!*/
/*!*    }*!*/
/*!*    .styled-table th, .styled-table td {*!*/
/*!*        padding: 12px 8px;*!*/
/*!*    }*!*/
/*!*    body, html {*!*/
/*!*        margin: 0;*!*/
/*!*        padding: 0;*!*/
/*!*        width: 100%;*!*/
/*!*        overflow-x: hidden;*!*/
/*!*    }*!*/
/*!*    @media (max-width: 768px) {*!*/
/*!*        nav ul {*!*/
/*!*            flex-direction: column;*!*/
/*!*            align-items: center;*!*/
/*!*            width: 100%;*!*/
/*!*        }*!*/

/*!*        nav ul li {*!*/
/*!*            margin: 10px 0;*!*/
/*!*            width: 100%;*!*/
/*!*            text-align: center;*!*/
/*!*        }*!*/

/*!*        .logo {*!*/
/*!*            position: static;*!*/
/*!*            margin-top: 10px;*!*/
/*!*        }*!*/

/*!*        #over-ons .content {*!*/
/*!*            flex-direction: column;*!*/
/*!*            align-items: center;*!*/
/*!*        }*!*/

/*!*        .content .left, .content .right {*!*/
/*!*            flex: 1;*!*/
/*!*            min-width: 100%;*!*/
/*!*            margin: 10px 0;*!*/
/*!*        }*!*/
/*!*    }*!*/

/*!*    @media (max-width: 600px) {*!*/
/*!*        header {*!*/
/*!*            padding: 10px 0;*!*/
/*!*        }*!*/

/*!*        .header-title {*!*/
/*!*            font-size: 1.5em;*!*/
/*!*        }*!*/

/*!*        nav ul {*!*/
/*!*            flex-direction: column;*!*/
/*!*            align-items: center;*!*/
/*!*        }*!*/

/*!*        nav ul li {*!*/
/*!*            margin: 5px 0;*!*/
/*!*        }*!*/

/*!*        .carousel-index, .carousel {*!*/
/*!*            height: 300px;*!*/
/*!*        }*!*/

/*!*        .carousel-index img, .carousel img {*!*/
/*!*            height: 300px;*!*/
/*!*        }*!*/

/*!*        #over-ons .content {*!*/
/*!*            flex-direction: column;*!*/
/*!*        }*!*/

/*!*        .api-person img {*!*/
/*!*            height: 80px;*!*/
/*!*            width: 80px;*!*/
/*!*            margin-left: 0;*!*/
/*!*        }*!*/

/*!*        .api-info p {*!*/
/*!*            margin-left: 0;*!*/
/*!*        }*!*/

/*!*        .contact-info p, .addresses p, .api p {*!*/
/*!*            margin-left: 0;*!*/
/*!*        }*!*/

/*!*        form input, form textarea {*!*/
/*!*            padding: 8px;*!*/
/*!*        }*!*/

/*!*        form button {*!*/
/*!*            padding: 8px 16px;*!*/
/*!*        }*!*/

/*!*        .styled-table th, .styled-table td {*!*/
/*!*            padding: 8px;*!*/
/*!*        }*!*/

/*!*        .footer-container {*!*/
/*!*            flex-direction: column;*!*/
/*!*            align-items: center;*!*/
/*!*        }*!*/

/*!*        .footer-logo, .footer-text, .footer-social {*!*/
/*!*            text-align: center;*!*/
/*!*        }*!*/
/*!*    }*!*/

/*!*    @media (max-width: 768px) {*!*/
/*!*        .styled-table {*!*/
/*!*            display: block;*!*/
/*!*            overflow-x: auto;*!*/
/*!*            white-space: nowrap;*!*/
/*!*        }*!*/
/*!*        .styled-table thead {*!*/
/*!*            display: table;*!*/
/*!*            width: 100%;*!*/
/*!*        }*!*/
/*!*        .styled-table tbody {*!*/
/*!*            display: table;*!*/
/*!*            width: 100%;*!*/
/*!*        }*!*/
/*!*        .styled-table th, .styled-table td {*!*/
/*!*            padding: 12px 8px;*!*/
/*!*        }*!*/
/*!*    }*!*/
/*!*    img {*!*/
/*!*        max-width: 100%;*!*/
/*!*        height: auto;*!*/
/*!*        display: block; !* Verwijder eventuele extra ruimte onder afbeeldingen *!*!*/
/*!*    }*!*/

/*!*    @media (max-width: 768px) {*!*/
/*!*        .sponsor-item {*!*/
/*!*            flex-direction: column;*!*/
/*!*            align-items: center;*!*/
/*!*            text-align: center;*!*/
/*!*        }*!*/

/*!*        .sponsor-img {*!*/
/*!*            margin: 0 0 20px 0;*!*/
/*!*            width: 100%; !* Zorg ervoor dat de afbeeldingen 100% breedte hebben op mobiele apparaten *!*!*/
/*!*        }*!*/

/*!*        .sponsor-info {*!*/
/*!*            margin: 0;*!*/
/*!*        }*!*/
/*!*    }*!*/
/*!*    @media (max-width: 768px) {*!*/
/*!*        .content {*!*/
/*!*            flex-direction: column;*!*/
/*!*            align-items: center;*!*/
/*!*        }*!*/

/*!*        .content .left, .content .right {*!*/
/*!*            min-width: 100%;*!*/
/*!*            margin: 10px 0;*!*/
/*!*        }*!*/

/*!*        section {*!*/
/*!*            width: 95%; !* Zorg ervoor dat secties bijna de volledige breedte van het scherm innemen *!*!*/
/*!*            margin: 10px auto; !* Houd de marges automatisch om de secties te centreren *!*!*/
/*!*        }*!*/
/*!*    }*!*/
/*!*    @media (max-width: 768px) {*!*/
/*!*        .missie-visie-item {*!*/
/*!*            flex-direction: column;*!*/
/*!*            align-items: center;*!*/
/*!*            text-align: center;*!*/
/*!*        }*!*/

/*!*        .missie-visie-img {*!*/
/*!*            margin: 0 0 20px 0;*!*/
/*!*            width: 100%; !* Zorg ervoor dat de afbeeldingen 100% breedte hebben op mobiele apparaten *!*!*/
/*!*        }*!*/

/*!*        .missie-visie-info {*!*/
/*!*            margin: 0;*!*/
/*!*        }*!*/
/*!*    }*!*/
/*!*    @media (max-width: 768px) {*!*/
/*!*        .content {*!*/
/*!*            flex-direction: column;*!*/
/*!*            align-items: center;*!*/
/*!*        }*!*/

/*!*        .content .left, .content .right {*!*/
/*!*            min-width: 100%;*!*/
/*!*            margin: 10px 0;*!*/
/*!*        }*!*/

/*!*        section {*!*/
/*!*            width: 95%;*!*/
/*!*            margin: 10px auto;*!*/
/*!*        }*!*/

/*!*        .missie-visie-section, .sponsor-section {*!*/
/*!*            display: flex;*!*/
/*!*            flex-direction: column;*!*/
/*!*            align-items: center;*!*/
/*!*            text-align: center;*!*/
/*!*        }*!*/
/*!*    }*!*/

/*!*    img {*!*/
/*!*        max-width: 100%;*!*/
/*!*        height: auto;*!*/
/*!*        display: block;*!*/
/*!*    }*!*/
/*!*    @media (max-width: 768px) {*!*/
/*!*        .missie-visie-section {*!*/
/*!*            display: flex;*!*/
/*!*            flex-direction: column;*!*/
/*!*            align-items: center;*!*/
/*!*            text-align: center;*!*/
/*!*            margin: 0 auto;*!*/
/*!*            padding: 20px;*!*/
/*!*        }*!*/

/*!*        .missie-visie-item {*!*/
/*!*            flex-direction: column;*!*/
/*!*            align-items: center;*!*/
/*!*            text-align: center;*!*/
/*!*            width: 100%;*!*/
/*!*            max-width: 500px;*!*/
/*!*            margin-bottom: 20px;*!*/
/*!*        }*!*/

/*!*        .missie-visie-img {*!*/
/*!*            width: 100%;*!*/
/*!*            margin-bottom: 10px;*!*/
/*!*        }*!*/

/*!*        .missie-visie-info {*!*/
/*!*            width: 100%;*!*/
/*!*        }*!*/

/*!*        .sponsor-section {*!*/
/*!*            margin-top: 40px;*!*/
/*!*        }*!*/

/*!*        .sponsor-item {*!*/
/*!*            flex-direction: column;*!*/
/*!*            align-items: center;*!*/
/*!*            text-align: center;*!*/
/*!*            width: 100%;*!*/
/*!*            max-width: 500px;*!*/
/*!*            margin-bottom: 20px;*!*/
/*!*        }*!*/

/*!*        .sponsor-img {*!*/
/*!*            width: 100%;*!*/
/*!*            margin-bottom: 10px;*!*/
/*!*        }*!*/

/*!*        .sponsor-info {*!*/
/*!*            width: 100%;*!*/
/*!*        }*!*/
/*!*    }*!*/



/*!*}*!*/


/**/

/** {*/
/*    box-sizing: border-box;*/
/*}*/

/*!* Universele stijlen *!*/
/*body {*/
/*    font-family: 'Helvetica Neue', Arial, sans-serif;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    background-color: #f4f4f4;*/
/*    color: #333;*/
/*}*/

/*header {*/
/*    background-color: #B22222; !* Rood *!*/
/*    color: white;*/
/*    padding: 20px 0;*/
/*    position: relative;*/
/*    text-align: center;*/
/*}*/

/*.header-title {*/
/*    text-align: center;*/
/*}*/

/*header h1 {*/
/*    margin: 0;*/
/*}*/

/*nav {*/
/*    margin-top: 10px;*/
/*}*/

/*nav ul {*/
/*    list-style-type: none;*/
/*    padding: 0;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    margin: 0;*/
/*}*/

/*nav ul li {*/
/*    margin: 0 15px;*/
/*}*/

/*nav ul li a {*/
/*    color: white;*/
/*    text-decoration: none;*/
/*    font-weight: bold;*/
/*}*/

/*nav ul li a:hover {*/
/*    text-decoration: underline;*/
/*}*/

/*.logo {*/
/*    position: absolute;*/
/*    right: 20px;*/
/*    top: 20px;*/
/*}*/

/*.logo img {*/
/*    height: 50px;*/
/*}*/

/*main {*/
/*    padding: 20px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*}*/

/*section {*/
/*    width: 100%;*/
/*    max-width: 1200px;*/
/*    margin: 20px auto;*/
/*    background: white;*/
/*    padding: 20px;*/
/*    border-radius: 8px;*/
/*    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
/*}*/

/*@media (max-width: 768px) {*/
/*    nav ul {*/
/*        flex-direction: column;*/
/*        align-items: center;*/
/*    }*/

/*    nav ul li {*/
/*        margin: 10px 0;*/
/*    }*/

/*    .logo {*/
/*        position: static;*/
/*        margin-top: 10px;*/
/*    }*/
/*}*/

/*!* Carousel Styles *!*/
/*.carousel-index {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    height: 500px;*/
/*    overflow: hidden;*/
/*}*/
/*.carousel-index img {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 500px;*/
/*    object-fit: cover;*/
/*    opacity: 0;*/
/*    transition: opacity 1s ease-in-out;*/
/*}*/
/*.carousel-index img.active {*/
/*    opacity: 1;*/
/*}*/

/*.carousel {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    height: 800px;*/
/*    overflow: hidden;*/
/*}*/

/*.carousel img {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 800px;*/
/*    object-fit: cover;*/
/*    opacity: 0;*/
/*    transition: opacity 1s ease-in-out;*/
/*}*/

/*.carousel img.active {*/
/*    opacity: 1;*/
/*}*/

/*!* Footer Styles *!*/
/*footer {*/
/*    background-color: #B22222; !* Rood *!*/
/*    color: white;*/
/*    text-align: center;*/
/*    padding: 10px 0;*/
/*}*/

/*.social-media {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    margin-top: 10px;*/
/*}*/

/*.social-media a {*/
/*    margin: 0 10px;*/
/*}*/

/*.social-media img {*/
/*    width: 40px;*/
/*    height: auto;*/
/*}*/

/*!* Over Ons Page Styles *!*/
/*#over-ons .content {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    justify-content: space-between;*/
/*}*/

/*#over-ons .left, #over-ons .right {*/
/*    flex: 1;*/
/*    min-width: 300px;*/
/*    margin: 10px;*/
/*}*/

/*#over-ons h3 {*/
/*    color: #B22222;*/
/*}*/

/*#over-ons p {*/
/*    margin-bottom: 20px;*/
/*}*/

/*#over-ons img {*/
/*    width: 100%;*/
/*    max-width: 300px;*/
/*    height: auto;*/
/*    border-radius: 8px;*/
/*    margin-bottom: 20px;*/
/*}*/

/*!* Contactpagina stijlen *!*/
/*.contact-title {*/
/*    text-align: center;*/
/*    font-size: 2em;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.contact-info, .addresses, .api {*/
/*    margin-bottom: 20px;*/
/*}*/

/*.contact-info h2, .addresses h2, .api h2, .api h3 {*/
/*    font-size: 1.5em;*/
/*    margin-bottom: 10px;*/
/*}*/

/*.contact-info p, .addresses p, .api p {*/
/*    font-size: 1em;*/
/*    margin-left: 70px;*/
/*}*/

/*.api-person {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    margin-bottom: 20px;*/
/*    margin-left: 20px;*/
/*}*/

/*.api-person img {*/
/*    height: 105px;*/
/*    width: 105px;*/
/*    border-radius: 50%;*/
/*    margin-left: 70px;*/
/*}*/

/*.api-info p {*/
/*    margin-left: 20px;*/
/*}*/

/*form {*/
/*    margin-top: 20px;*/
/*}*/

/*form label {*/
/*    display: block;*/
/*    margin-bottom: 5px;*/
/*}*/

/*form input, form textarea {*/
/*    width: 100%;*/
/*    padding: 10px;*/
/*    margin-bottom: 10px;*/
/*    border: 1px solid #ccc;*/
/*    border-radius: 5px;*/
/*}*/

/*form button {*/
/*    background-color: #B22222;*/
/*    color: white;*/
/*    border: none;*/
/*    padding: 10px 20px;*/
/*    border-radius: 5px;*/
/*    cursor: pointer;*/
/*}*/

/*form button:hover {*/
/*    background-color: #8B0000;*/
/*}*/

/*.map-container {*/
/*    margin-top: 20px;*/
/*}*/

/*!* Tabel stijlen *!*/
/*.styled-table {*/
/*    width: 100%;*/
/*    border-collapse: collapse;*/
/*    margin: 25px 0;*/
/*    font-size: 18px;*/
/*    text-align: left;*/
/*}*/

/*.styled-table thead tr {*/
/*    background-color: #8B0000;*/
/*    color: #ffffff;*/
/*}*/

/*.styled-table th,*/
/*.styled-table td {*/
/*    padding: 12px 15px;*/
/*}*/

/*.styled-table tbody tr {*/
/*    border-bottom: 1px solid #dddddd;*/
/*}*/

/*.styled-table tbody tr:nth-of-type(even) {*/
/*    background-color: #f3f3f3;*/
/*}*/

/*.styled-table tbody tr:last-of-type {*/
/*    border-bottom: 2px solid #8B0000;*/
/*}*/

/*.styled-table tbody tr:hover {*/
/*    background-color: #f1f1f1;*/
/*}*/

/*.content {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    gap: 100px;*/
/*}*/

/*.content .left, .content .right {*/
/*    flex: 1;*/
/*    min-width: 300px;*/
/*}*/

/*.content img {*/
/*    max-width: 100%;*/
/*    height: auto;*/
/*}*/

/*.sponsor-item {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.sponsor-img {*/
/*    width: 250px;*/
/*    height: 250px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    overflow: hidden;*/
/*    margin-right: 20px;*/
/*}*/

/*.sponsor-img img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

/*.sponsor-info h3 {*/
/*    margin: 0 0 10px 0;*/
/*}*/

/*!* Footer Styles *!*/
/*footer {*/
/*    background-color: #f8f9fa;*/
/*    padding: 20px;*/
/*    text-align: center;*/
/*    font-size: 14px;*/
/*    color: #6c757d;*/
/*    border-top: 1px solid #e9ecef;*/
/*}*/

/*.footer-container {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*}*/

/*.footer-logo {*/
/*    margin-bottom: 10px;*/
/*}*/

/*.footer-logo img {*/
/*    height: 50px;*/
/*}*/

/*.footer-text {*/
/*    margin-bottom: 20px;*/
/*}*/

/*.footer-social {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    gap: 20px;*/
/*}*/

/*.footer-social div {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*}*/

/*.footer-social img {*/
/*    height: 24px;*/
/*}*/

/*.footer-social p {*/
/*    margin: 0;*/
/*    font-weight: bold;*/
/*}*/

/*@media (min-width: 768px) {*/
/*    .footer-container {*/
/*        flex-direction: row;*/
/*        justify-content: space-between;*/
/*        max-width: 1200px;*/
/*        margin: 0 auto;*/
/*    }*/

/*    .footer-logo {*/
/*        flex: 1;*/
/*        text-align: left;*/
/*    }*/

/*    .footer-text {*/
/*        flex: 1;*/
/*        text-align: center;*/
/*        margin: 0;*/
/*    }*/

/*    .footer-social {*/
/*        flex: 1;*/
/*        text-align: right;*/
/*        gap: 10px;*/
/*    }*/

/*    .footer-social div {*/
/*        justify-content: center;*/
/*    }*/
/*}*/

/*label {*/
/*    font-weight: bold;*/
/*}*/

/*.form-group {*/
/*    margin-bottom: 1rem;*/
/*}*/

/*.input-field {*/
/*    width: 50%;*/
/*}*/

/*.afdeling-container {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*}*/

/*.afdeling-column {*/
/*    flex: 1;*/
/*    min-width: 200px;*/
/*}*/

/*.afdeling-item {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*}*/

/*.afdeling-item label {*/
/*    font-weight: normal;*/
/*}*/


