html, body, div, span, applet, object, iframe, input, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cit, code, del, dfn, em, img, ins, kbd, q, s,
samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article,
aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    color: #333333;
    background-color: #F6F6F6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    font-size: 1em;
    font-weight: 300;
    line-height: 1.75;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

a, a:visited {
    color: #386FA4;
    text-decoration: none;
    outline: 0;
    border-bottom: solid 0.0625rem #386FA4;
    -webkit-transition: color 0.6s ease-out, border-color 0.6s ease-out;
    -moz-transition: color 0.6s ease-out, border-color 0.6s ease-out;
    -ms-transition: color 0.6s ease-out, border-color 0.6s ease-out;
    -o-transition: color 0.6s ease-out, border-color 0.6s ease-out;
    transition: color 0.6s ease-out, border-color 0.6s ease-out;
}

a:hover,
a:active {
    color: #002E55;
    border-bottom: solid 0.0625rem #002E55;
}

b, strong {
    font-weight: 700
}

.banner {
    overflow: hidden;
    text-align: center;
    width: auto;
    height: auto;
}

.banner-image img {
    display: block;
    width: 100vw; /* 100vw werkt niet altijd! */
    height: 100vh;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    z-index: 2;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .15);
}

.banner-title {
    z-index: 3;
    width: 100%;
    margin: 0 auto;
    display: block;
    position: absolute;
    top: calc(50% - 4rem);

    -webkit-animation: fadein 1.5s;
    -moz-animation: fadein 1.5s;
    -ms-animation: fadein 1.5s;
    -o-animation: fadein 1.5s;
    animation: fadein 1.5s;
}

.banner-title h1 {
    color: #FFFFFF;
    font-weight: 600;
}

.banner-title p {
    max-width: 30rem;
    margin: auto;
    color: #FFFFFF;
}

.banner-wrapper {
    height: 100vh;
    width: auto;
    margin: 0 auto;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.body-wrapper {
    flex: 1;
}

.box {
    background-color: #FFFFFF;
    border-radius: 5px;
    margin-bottom: 0.75rem;
}

.box > .box-body {
    padding: 0.75rem;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: #FFFFFF;
}

.box > .box-header {
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: bold;
    padding: 0.25rem .6875rem 0.25rem 0.6875rem;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.box.box-danger {
    background-color: rgb(221, 75, 57);
    border: 0.125rem solid rgb(221, 75, 57);
}

.box.box-info {
    background-color: rgb(0, 192, 239);
    border: 0.125rem solid rgb(0, 192, 239);
}

.box.box-success {
    background-color: rgb(0, 166, 90);
    border: 0.125rem solid rgb(0, 166, 90);
}

.box.box-warning {
    background-color: rgb(243, 156, 18);
    border: 0.125rem solid rgb(243, 156, 18);
}

code, pre {
    border: 0.0625rem solid #DCDCDC;
    padding: 0.625rem;
    margin: 0.75rem 0 0.75rem;
    font-family: "Courier New", monospace, sans-serif;
    overflow: auto;
    background: #ECECEC;
    border-radius: 3px;
    line-height: 1.4rem;
    word-wrap: break-word;
    display: block;
    font-size: 1rem;
}

pre > code {
    font-size: inherit;
    background: 0 0;
    border: none;
    padding: 0;
    margin: 0;
}

code, pre, pre > code {
    white-space: pre-wrap;
}

.container {
    min-height: 100%;
    margin: 0 auto 0;
    margin-top: 4.5rem;
}

del, s {
    text-decoration: line-through;
}

em, i {
    font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: inherit;
}

h1 {
  font-size: 2.25em;
}

h2 {
  font-size: 1.875em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.125em;
}

h5 {
  font-size: 0.875em;
}

h6 {
  font-size: 0.75em;
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
    font-weight: normal;
    color: #777777;
    font-size: 65%;
}

header {
    background-color: #FFFFFF;
    /* min-height: 4rem; */
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1000;
}

header .navigation-container {
    padding-top: 0;
    /* min-height: 4rem; */
    /* height: 4rem; */
}

header .navigation-container .navigation-row {
    /* height: 4rem; */
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding-left: 1rem;
    padding-right: 1rem;
}

header .navigation-container .navigation-logo {
    display: inline-block;
    height: 4rem;
    width: 2rem;
    float: left;
    line-height: 2;
}

header .navigation-container .navigation-logo a,
header .navigation-container .navigation-logo a:hover {
    display: block;
    height: 4rem;
    color: rgb(34, 116, 165);
    font-size: 2rem;
    line-height: 3.9375rem;
    font-weight: 700;
    text-decoration: none;
    border: 0;
}

header .navigation-container .navigation-logo a span:not(.navigation-logo-full) {
    font-weight: 400;
}

header .navigation-container .navigation-logo a span.navigation-logo-full {
    display: none;
}

header .navigation-container .navigation-links {
    display: inline-block;
    max-height: 4rem;
    transition: max-height 0.3s ease-out;
    position: relative;
    float: right;
}

header .navigation-container .navigation-links ul {
    font-size: 0;
    list-style: none;
    line-height: 2rem;
}

header .navigation-container .navigation-links > ul > li {
    display: inline-block;
    font-weight: 500;
}

header .navigation-container .navigation-links ul li a {
    display: block;
    padding: 0 0.75rem 0 0.75rem;
    line-height: 3.8125rem;
    color: #555555;
    border-bottom: solid 0.1875rem transparent;
}

header .navigation-container .navigation-links ul li.active > a,
header .navigation-container .navigation-links ul li:hover > a {
    color: rgb(34, 116, 165);
    text-decoration: none;
    border-bottom: solid 0.1875rem;
}

header .navigation-container .navigation-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 1.875rem 1.125rem;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

header .navigation-container .navigation-icon .navicon {
    background: #333333;
    display: block;
    height: 0.1875rem;
    position: relative;
    width: 1.75rem;
}

header .navigation-container .navigation-icon .navicon:before,
header .navigation-container .navigation-icon .navicon:after {
    background: #333333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all 0.2s ease-out;
    width: 100%;
}

header .navigation-container .navigation-icon .navicon:before {
    top: 0.4375rem;
}

header .navigation-container .navigation-icon .navicon:after {
    top: -0.4375rem;
}

header .navigation-container .navigation-button {
    display: none;
}

header .navigation-container .navigation-button:checked ~ .navigation-links {
    max-height: calc(100vh - 4.0625rem);
    transition: max-height 1s ease-out;
    overflow: scroll;
}

header .navigation-container .navigation-button:checked ~ .navigation-icon .navicon {
    background: transparent;
}

header .navigation-container .navigation-button:checked ~ .navigation-icon .navicon:before {
    transform: rotate(-45deg);
}

header .navigation-container .navigation-button:checked ~ .navigation-icon .navicon:after {
    transform: rotate(45deg);
}

header .navigation-container .navigation-button:checked ~ .navigation-icon .navicon:before,
header .navigation-container .navigation-button:checked ~ .navigation-icon .navicon:after {
    top: 0;
}

@media only screen and (max-width: 768px) {
    header .navigation-container .navigation-row {
        padding: 0;
    }

    header .navigation-container .navigation-logo a,
    header .navigation-container .navigation-logo a:hover {
        text-align: center;
    }

    header .navigation-container .navigation-links {
        float: left;
        width: 100%;
        max-height: 0;
    }

    header .navigation-container .navigation-links ul {
        height: 100%;
    }

    header .navigation-container .navigation-links ul li {
        font-size: 1rem;
        text-indent: 1rem;
        display: block;
    }

    header .navigation-container .navigation-links ul li a {
        padding: 0.5rem 0.25rem 0.5rem 0.25rem;
        line-height: 2rem;
    }

    header .navigation-container .navigation-links > ul > li:nth-of-type(odd) {
        background-color: #F8F8F8;
    }

    header .navigation-container .navigation-logo {
        width: calc(100% - 8rem);
        margin-left: 4rem;
    }

    header .navigation-container .navigation-logo a span.navigation-logo-full {
        display: inline-block;
    }
}

@media only screen and (min-width: 769px) {
    header .navigation-container .navigation-row {
        width: 720px;
    }

    header .navigation-container .navigation-icon {
        display: none;
    }

    header .navigation-container .navigation-links ul li {
        font-size: 0.8125rem;
    }
    
    header .navigation-container .navigation-links ul ul li a {
        line-height: 2.5rem;
    }
}

@media only screen and (min-width: 992px) {
    header .navigation-container .navigation-row {
        width: 960px;
        text-align: center;
    }

    header .navigation-container .navigation-links ul li {
        font-size: 0.875rem;
    }
}

@media only screen and (min-width: 1200px) {
    header .navigation-container .navigation-row {
        width: 1170px;
    }
}

hr {
    height: 0.0625rem;
    border: 0;
    border-top: 0.0625rem solid #C0C0C0;
}

input {
    background-color: rgb(242, 242, 242);
    height: 2.5rem;
    width: 100%;
    color: rgb(128, 128, 128);
    border-radius: 0.25rem;
    text-indent: 0.5rem;
    line-height: 1;
}

input[type="submit"] {
    background-color: rgb(57, 169, 219);
    color: #FFFFFF;
    cursor: pointer;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -ms-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
}

input[type="submit"]:hover,
input[type="submit"]:active {
    background-color: rgb(5, 102, 141);
}

.language-selector {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 1.75rem;
    height: 1.75rem;
    background-color: rgba(0, 0, 0, 0.1);
}

.language-selector a {
    position: relative;
    display: block;
    font-size: 1.5rem;
    padding: 0;
    margin-top: -0.375rem;
    text-align: center;
    border: 0;
}

p {
    line-height: 1.25;
}

.social-icons {
    text-align: center;
}

.social-icons a {
    display: inline-block;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0.5rem;
    text-indent: -9999px;
    background-color: #FFFFFF;
    border-bottom: 0;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -moz-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.social-icons a.social-facebook {
    background-color: #1778F2;
}

.social-icons a.social-linkedin {
    background-color: #0077B5;
}

.social-icons a.social-mastodon {
    background-color: #6364FF;
}

.social-icons a.social-twitter {
    background-color: #55ACEE;
}

.social-icons a:hover {
    opacity: 0.9;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-truncate {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}
