html {
    position: relative;
    min-height: 100%;
}
body {
    margin-bottom: 258px; /* Margin bottom by footer height */
    overflow-x: hidden;
}

.navbar-brand {
    transition: all 0.3s;
}

#navbar-container {
    z-index: 1000;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--primary);!important;
    font-size: 16px;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--secondary);
}

.navbar-light .navbar-nav .nav-link.active {
    background-color: var(--primary);
    color: #fff;
    border-radius: 20px;
    padding-left: 15px;
    padding-right: 15px;
}

.navbar-light .navbar-nav .nav-link-inloggen {
    color: #676767;!important;
}

.sticky {
    position: fixed;
    top: 0px!important;
    left:0px;
    width: 100%;
    z-index:4000;
    margin-top:0px !important;
    box-shadow:0px 0px 10px rgba(0, 0, 0, 0.53);
    transition: 0s;
    /*padding:15px !important;*/
}


/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .contentpadding {
    padding-top: 111px !important;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
}

.bg-footer {
    background-color: #E5E9ED;
    border-radius: 25px;
    padding-left: 50px;
}

.footer-blauw {
    border-radius: 20px 20px 0px 0px;
    padding-top: 10px;
    text-align: center;
}


.footer ul {
    list-style-type: none;
    padding-left: 10px;
}

.footer .nav-link {
    padding-bottom: 0px;
}

.carousel-slide {
    padding: 20px; /* Voeg padding toe aan de binnenkant van het carousel-item */
}

.carousel-inner.carousel-home {
    position: relative;
    overflow: hidden;
}

.carousel-item {
}

.carousel-content {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: relative;
    width: 100%;
    height: 400px;
}

.container-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 0px; /* Adjust as needed */
    height: 400px;
    padding-left: 0px;
    background-color: #ffffff; /* Background color */
    border-top-left-radius: 15px; /* Only rounded on the top-left corner */
    border-bottom-left-radius: 15px; /* Only rounded on the bottom-left corner */
    z-index: 2; /* Ensure it's above the image */
}

.container-right {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    /*opacity: 0.4;*/
    top: 0;
    right: 0;
    width: 1400px;
    height: 400px;
    z-index: 1; /* Behind the content */
    border-top-left-radius: 250px;
    border-bottom-left-radius: 250px;
    transition: transform 2s ease;
}

.text-slideshow {
    color: var(--primary);
    position: relative;
    z-index: 100;
}

.carousel-slide {
    /*overflow:hidden;*/
    /*border-top-left-radius: 100px;*/
    /*border-bottom-left-radius: 100px;*/
}

.streepjes {
    position: absolute;
    z-index: 100;
}

.bg-lightgrey {
    background-color: rgba(242, 242, 242, 0.5); /* RGBA-kleurdefinitie */
    margin-top: -100px;
    position: relative;
    z-index: 5;
}

.bg-lightgrey-default {
    background-color: rgba(242, 242, 242, 0.5); /* RGBA-kleurdefinitie */
    margin-top: -105px;
    position: relative;
    z-index: 5;
}

.pagetitle {
    color: var(--primary);
    position: relative;
    z-index: 100;
}

.card-row {
    position: relative;
    z-index: 101;
}

.bg-card {
    background-color: #E5E9ED;
    border: none;
    border-radius: 15px;
    position: relative;
    z-index: 100;
}

.card-home:hover {
    background-color: #EAEDF0;
}

.card-footer-home {
    background-color: inherit;
    border: none;
}

.card-footer-home .btn-primary {
    width: 290px;
}

.card-link {
    font-size: 16px;
}

.oranje-blok {
    border-radius: 25px;
    background-color: var(--secondary);
    color: #fff;
}

.bestanden {
    border-radius: 25px;
    border-color: var(--primary);
}

@media (max-width: 576px) {

    body {
        margin-bottom: 500px;
    }

    .bg-footer {
        border-radius: 0px;
    }

    .container-left {
        width: 0px;
        padding: 0px;
    }

    .container-right {
        width: 520px;
        padding-left: 0px;
    }

    .text-slideshow {
        margin-right: 20px;
    }

}

@media (min-width: 576px) and (max-width: 768px) {

    .container-left {
        width: 0px;
        padding: 0px;
    }

    .container-right {
        width: 600px;
    }

}


@media (min-width: 576px) and (max-width: 992px) {

    body {
        margin-bottom: 500px;
    }

}

@media (min-width: 768px) and (max-width: 992px) {

    .container-left {
        width: 0px;
        padding: 0px;
    }

    .container-right {
        width: 820px;
    }

}

@media (min-width: 992px) and (max-width: 1200px) {

    .container-left {
        width: 0px;
        padding: 0px;
    }

    .container-right {
        width: 1050px;
    }

}


