.text-small {
    font-size: 14px;
}

.w-90 {
    width: 90%;
}

.form-control-borderless {
    border: none;
}

    .form-control-borderless:hover, .form-control-borderless:active, .form-control-borderless:focus {
        border: none;
        outline: none;
        box-shadow: none;
    }

p, h4, ul, h6, h5, h1, h3 {
    color: #003883;
}

.card, .tickListWidget {
    color: #003883;
}
/*footer styles*/



.row {
    display: flex;
    flex-wrap: wrap;
}

.v-center {
    align-items: center;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

.row-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 0 40px 0;
}

footer {
    background-color: #003883;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 80px 0px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.column-footer {
    width: 20%;
    flex-grow: 1;
}

    .column-footer a, .address-text {
        color: white;
        font-size: 14px;
        font-weight: 400;
    }


    .column-footer ul {
        line-height: 200%;
        padding: 0px 20px 0px 0px;
    }

    .column-footer h3 {
        color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
        margin-bottom: 10px;
    }

    .column-footer a:hover, .second-bottom-row-footer a:hover {
        color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1)) !important;
    }


.top-row-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bottom-row-footer {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.first-bottom-row-footer {
    display: flex;
    justify-content: space-between;
    align-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.images-footer {
    display: flex;
    flex-grow: 1;
    align-self: center;
    justify-content: end;
}

    .images-footer img {
        object-fit: contain;
    }

.second-bottom-row-footer {
    display: flex;
    flex-direction: column;
    color: white;
}

    .second-bottom-row-footer a {
        color: white;
        font-size: 12px;
    }

        .second-bottom-row-footer a:hover {
            color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
            font-size: 12px;
        }

    .second-bottom-row-footer p {
        color: white;
        font-size: 12px;
    }

.policy-links {
    display: flex;
    flex-wrap: wrap;
}

    .policy-links a {
        margin-left: 20px;
    }

.social-row {
    display: flex;
    gap: 20px;
}

.c-box {
    display: flex;
    flex-direction: column;
}

/* Ultra wide */
@media (max-width: 3840px) {
    .c-box {
        width: 65%;
    }
}

/* Desktop */
@media (max-width: 1920px) {
    .c-box {
        width: 75%;
    }
}


/* Laptop big */
@media (max-width: 1600px) {
    .c-box {
        width: 84%;
    }
}

/* Laptop small */
@media (max-width: 1366px) {
    .c-box {
        width: 87%;
    }
}

/* Tablet portrait */
@media (max-width: 1200px) {
    .c-box {
        width: 90%;
    }
}

/* Smaller screen */
@media (max-width: 1160px) {
    .column-footer {
        min-width: 35%;
        flex-grow: 1;
        row-gap: 40px;
    }

    .top-row-footer {
        row-gap: 40px;
    }
}

/* Mobile landscape */
@media (max-width: 991px) {
    .column-content-1,
    .column-content-2 {
        min-width: 100%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .c-box {
        width: 85%;
    }

    .column-footer {
        min-width: 100%;
        flex-grow: 1;
    }

    .top-row-footer {
        column-gap: 40px;
    }

    .images-footer {
        width: 33%;
    }
}

/*New Header*/

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 80px;
    background-color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

    header .logo {
        font-weight: 700;
        font-size: 25px;
        color: black;
    }

    header .navbar ul {
        list-style: none;
    }

        header .navbar ul li {
            position: relative;
            float: left;
        }

            header .navbar ul li a {
                font-size: 16px;
                padding: 20px;
                display: block;
            }

                header .navbar ul li a:hover {
                    color: rgb(80, 80, 80);
                }

            header .navbar ul li ul {
                position: absolute;
                left: 0;
                width: 300px;
                background-color: white;
                border-radius: 8px;
                border: 1px solid grey;
                display: none;
            }

                header .navbar ul li ul li {
                    width: 100%;
                }

#menu-bar {
    display: none;
}

header label {
    font-size: 40px;
    color: black;
    cursor: pointer;
    display: none;
    margin-top: -6px;
}

@media (max-width: 991px) {
    header label {
        display: initial;
    }

    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        border-top: 1px solid grey;
        background-color: white;
        display: none;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

        header .navbar ul li {
            width: 100%;
        }

            header .navbar ul li ul {
                position: relative;
                width: 100%;
                border: none;
            }

                header .navbar ul li ul li {
                    background-color: white;
                    padding-left: 20px;
                }

    #menu-bar:checked ~ .navbar {
        display: initial;
    }
}

header .navbar ul li ul ul {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 250px;
    display: none;
    z-index: 1000;
    overflow-y: scroll;
    max-height: 20rem;
}

    header .navbar ul li ul ul li {
        width: 100%;
    }

        header .navbar ul li ul ul li a {
            padding: 15px 20px;
        }

header .navbar ul li a .arrow {
    float: right;
}

header .navbar ul li > a {
    display: inline-block;
    vertical-align: middle;
}

header .navbar ul li > .arrow {
    display: inline-block;
    vertical-align: middle;
}

header .navbar ul li ul {
    z-index: 9999;
}

@media (max-width: 1920px) {

    footer .container, header .container {
        max-width: 1200px;
        margin: auto;
    }
}

.childrenNav {
    z-index: 10;
    background-color: lightgray !important;
}

main {
    margin-top: 7rem;
}

.content ul, ol {
    list-style: inherit;
    margin-bottom: 1rem;
    padding-left: 2rem;
    color: #003883;
}

.bf_mb-2 img {
    margin-right: 0.5rem;
}



/*Download Document Styles*/

/* CSS for modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}

#downLoadDocumentForm {
    display: flex;
    flex-direction: column;
}

    #downLoadDocumentForm label {
        margin-top: 24px;
        margin-bottom: 5px;
    }

    #downLoadDocumentForm button {
        margin-top: 24px;
        padding: 12px 24px;
        background-color: #003883;
        color: white;
        font-size: 16px;
        outline: none;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

        #downLoadDocumentForm button:hover {
            background-color: #012970;
        }

    #downLoadDocumentForm input {
        padding: 8px;
        border: 1px solid grey;
        border-radius: 4px;
    }

.modal-content {
    display: flex;
    justify-content: center;
    background-color: #fefefe;
    margin: 10% auto;
    padding: 40px 20px;
    border: 1px solid #888;
    width: 300px;
    position: relative;
    border-radius: 10px;
    border: 1px solid black;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 5%;
    top: 2%;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }




/*Sliding banner Styles*/


.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
}

.slider-item {
    display: block;
    width: 100%;
    height: 455px;
    background-position: center center;
    background-size: cover;
}

    .slider-item h2 {
        color: #fff;
        font-size: 50px;
        font-weight: 700;
    }

    .slider-item p {
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 18px;
        font-weight: 400;
    }

    .slider-item a {
        margin-top: 30px;
        padding: 12px 45px 12px 45px;
    }




.swiper-button-prev {
    color: #fff;
    left: 40px;
}

    .swiper-button-prev:after {
        font-size: 20px;
        font-weight: bold;
    }

.swiper-button-next {
    color: #fff;
    right: 40px;
}

    .swiper-button-next:after {
        font-size: 20px;
        font-weight: bold;
    }

.swiper-body {
    display: flex;
    align-items: center;
    height: 455px;
}

.slider-item .text-item {
    z-index: 99;
}

.swiper-body .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.25);
}

.swiper-pagination-bullet {
    background: #fff;
}

    .swiper-pagination-bullet:hover {
        background: #fff !important;
        opacity: 1;
    }

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 6px;
}

@media (max-width: 768px) {
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }

    .timeline h2 {
        font-size: 40px;
    }
}



@media only screen and (min-width: 1200px) and (max-width: 1300px) {
    .text-item {
        padding-left: 40px;
    }

    .navbar-brand {
        padding-left: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1100px) {
    .text-item {
        padding-left: 40px;
    }

    .navbar-brand {
        padding-left: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width:900px) {
    .text-item {
        padding-left: 40px;
    }

    .navbar-brand {
        padding-left: 40px;
    }
}

/*Submenu Edit*/

.horizontal-section {
    align-self: center;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    gap: 1px;
    background-color: rgb(196, 196, 196);
    /*width: 1200px;*/
}

.container-item {
    min-width: 15%;
    flex-grow: 1;
    text-align: center;
    padding: 10px;
    background-color: white;
    padding: 20px;
    display: flex;
    position: relative;
    justify-content: center;
}

a {
    cursor: pointer;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border: 1px solid darkgrey;
    border-radius: 10px;
}

    .submenu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        text-align: left;
    }

        .submenu ul li {
            padding: 10px 5px;
        }

@media (max-width: 1000px) {
    .horizontal-section {
        flex-direction: column;
    }
}

/*Contact Button Styles*/

.contact-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    width: 60px;
    height: 60px;
    padding: 15px;
    border-radius: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.25);
    z-index: 9999;
}


/*Timeline Styles*/


.timeline {
    padding: 50px 0;
}

    .timeline h2 {
        font-size: 50px;
        font-weight: 700;
    }

        .timeline h2 span {
            color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
        }

    .timeline ul {
        display: flex;
        flex-basis: initial;
        flex-direction: row;
        flex-shrink: 0;
        justify-content: center;
        gap: 20px;
        overflow-x: scroll;
        flex-wrap: nowrap;
        scrollbar-width: none;
        scroll-behavior: smooth;
        margin-top: 30px;
        padding: 0;
    }

        .timeline ul li {
            list-style-type: none;
        }

            .timeline ul li button {
                color: #000;
                font-weight: 700;
                background-color: #fff;
                border: 0;
                font-size: 18px;
                text-align: center;
                padding: 10px 25px;
                border-radius: 10px;
                white-space: nowrap;
            }

                .timeline ul li button:hover {
                    color: #000;
                }

                .timeline ul li button.active {
                    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1)) !important;
                }

    .timeline .card {
        margin-top: 40px;
        border-color: #fff;
    }

    .timeline .tab-data h2 {
        color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 20px;
        margin-top: 10px;
    }


.timeline-col {
    background-color: #E5EBF2;
}

.timeline .nav-link {
    color: #003883;
}

@media only screen and (max-width: 1199px) {
    .timeline ul {
        justify-content: start;
    }
}

@media (max-width: 768px) {
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }

    .timeline h2 {
        font-size: 40px;
    }
}

@media (min-width:1025px) {
    .first-level-arrow {
        display: none !important;
    }
}


@media (max-width: 1024px) {
    #downLoadDocumentModal {
        text-align: center;
        margin-top: 5rem;
    }
}






body {
    font-family: "trade-gothic-next", Arial, Helvetica, sans-serif;
}

.page-menu {
    font-size: 11px;
    font-weight: 400;
    line-height: 14px;
    color: #003883;
}

.home-heading {
    color: white;
}

.body-text {
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    color: #003883;
}

.lees-meer {
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
}

h1 {
    font-size: 26px;
    font-weight: 300;
    line-height: 34px;
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
}

h2 {
    font-size: 18px;
    font-weight: bold !important;
    color: #003883;
}

.blueHomepageFeatureText {
    color: #003883;
}

.small-bold {
    font-size: 11px;
    font-weight: 700;
    line-height: 14px;
    color: #003883;
}

.small-regular {
    font-size: 11px;
    font-weight: 400;
    line-height: 14px;
    color: #003883;
}

.text-footer {
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    color: #ffff;
}

.copyright {
    font-size: 9px;
    font-weight: 300;
    line-height: 14px;
    color: #ffff;
}



.breadcrumb {
    --bs-breadcrumb-padding-x: 0;
    --bs-breadcrumb-padding-y: 0;
    --bs-breadcrumb-margin-bottom: 1rem;
    --bs-breadcrumb-divider-color: var(--bs-secondary-color);
    --bs-breadcrumb-item-padding-x: 0.5rem;
    --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
    display: flex;
    flex-wrap: wrap;
    padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
    margin-bottom: var(--bs-breadcrumb-margin-bottom);
    font-size: var(--bs-breadcrumb-font-size);
    list-style: none;
    background-color: var(--bs-breadcrumb-bg);
    border-radius: var(--bs-breadcrumb-border-radius)
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: var(--bs-breadcrumb-item-padding-x)
}

    .breadcrumb-item + .breadcrumb-item::before {
        float: left;
        padding-right: var(--bs-breadcrumb-item-padding-x);
        color: var(--bs-breadcrumb-divider-color);
        content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */
    }

.breadcrumb-item.active {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1))
}


.navbar a, .breadcrumb-item a {
    font-weight: 300;
    line-height: 16px;
    color: #003883;
}

    .navbar a:hover, .breadcrumb-item a:hover {
        color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1)) !important;
    }

.btn-primary, .btn-success, .btn-success:hover, .btn-primary:hover {
    color: white !important;
}

.newsitem-col {
    background-color: #E5EBF2;
}

.question {
    padding-top: 25px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
}

.answer {
    padding-left: 25px;
    font-weight: normal;
    width: 100%;
}

.icon-link > span:hover {
    color: #003883;
}

.bf_text-green, .bf_a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1)) !important;
}

a:hover {
    color: #003883 !important;
}

a.arrow-link {
    float: right;
}

.container img {
    max-width: 100%;
}
.RequestaQuote{
    color:white !important;
    padding:12px !important;
}


.navbar .RequestaQuote:hover, .breadcrumb-item .RequestaQuote:hover {
    color: white !important;
}