/*! HTML5 Boilerplate v7.2.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html, body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #222;
    font-size: 18px;
    line-height: 1.4;
    scroll-behavior: smooth;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/*
 * Used for positioning the footer relative to the content of the page
 */
*{
    --footer-top: 0;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

h1.h,
h2.h {
    font-family: 'Rubik', sans-serif;
    font-size: 52px;
    font-weight: 500;
    color: #009FE3;
    text-align: center;
    margin-bottom: 2.5rem;
}

h3.h {
    font-family: 'Rubik', sans-serif;
    font-size: 45px;
    font-weight: 500;
    color: #009FE3;
    margin-bottom: 2rem;
}

h4.h {
    font-family: 'Rubik', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #312783;
}

h5.h {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.gray {
    color: #5a5a5a;
}

.bg-gray {
    background-color: #F7F7F7
}

a.btn-pink {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    background-color: #E6007E;
    border-color: #E6007E;
    display: block;
    margin: 0 auto;
    width: 15rem;
}

a.btn-pink:hover {
    color: #fff;
    background-color: #F52A99;
    border-color: #F52A99;
}

a.btn-pink:active {
    position: relative;
    top: 1px;
}

a.btn-white {
    font-family: 'Rubik', sans-serif;
    font-weight: normal;
    font-size: 18px;
    color: #009fe3;
    background-color: #fff;
    border-color: #fff;
    display: block;
    margin: 0 auto;
    width: 15rem;
}

.slick-slide {
    height: auto;

}

.slick-slide .card-body {
    position: relative;
    padding-bottom: 60px;
}

.slick-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
}

.slick-slide .card {
    height: 100%;
}
.slick-slide .card a.btn {
    width: calc(100% - 30px);
    margin-bottom: 15px;
    height: 43px;
    margin-left: 15px;
    margin-right: 15px;

}

.slick-prev::before,
.slick-next::before {
    content: none;
}

.slick-prev {
    left: -10rem;
    top: 12rem;
    width: 3rem;
    height: 3rem;
}

.slick-next {
    right: -10rem;
    top: 12rem;
    width: 3rem;
    height: 3rem;
}

.slick-dots {
    bottom: -60px;
}

.slick-dots li {
    margin: 0 1px;
}

.slick-dots li button:before {
    opacity: 1;
    color: #FFFFFF;
    font-size: 14px;
}

.slick-dots li.slick-active button:before {
    color: #009FE3;
}

.customform_submit {
    left: 89%;
    position: absolute;
    z-index: 12;
}


/* ======================================================================
       Header stuff
======================================================================= */
.burger {
    display: none;
}

header {
    position: fixed;
    z-index: 101;
    width: 100%;
}

.header-menu {
    position: absolute;
    background-image: url("../img/header-top2.svg");
    background-repeat: no-repeat;
    background-position: bottom;
    z-index: 1;
    width: 100%;
    height: 117px;
    background-size: 100% 100%;
}

li.dep-nav {
    display: none;
}

.main-menu {
    padding-top: 0.5rem;
    padding-left: 16rem;
}

.main-menu a {
    color: #312783;
    padding: 0.5rem 2rem;
}

.main-menu a.active,
.main-menu a:active {
    color: #E6007E;
}

.main-menu a:hover {
    color: #009FE3;
}

.search {
    padding: 1rem 3rem 1rem 1rem;
}

.search path {
    stroke: #312783;
}

.search a:hover path {
    stroke: #009FE3;
}

header .social a {
    font-size: 1.8rem;
    color: #C9C9C9;
    padding: 0.5rem 0.7rem;
}

header .social a:hover {
    color: #979797;
}

.search-form {
    position: absolute;
    padding: 9rem 0 3rem 0;
    background-color: #009FE3;
    width: 100%;
    top: -15rem;
    z-index: 1;
    -webkit-transition: transform 0.4s ease-in; /* For Safari 3.1 to 6.0 */
    transition: transform 0.4s ease-in;
}

.search-form.active {
    transform: translateY(15rem);
    -webkit-transition: transform 0.4s ease-out; /* For Safari 3.1 to 6.0 */
    transition: transform 0.4s ease-out;
}

.search-form input {
    color: #868686;
    border-radius: 0;
    height: calc(1.5em + .75rem + 4px);
    border: 0;
    width: 36rem !important;
    margin-left: 10rem;
}

.search-form button {
    background-color: #E6007E;
    border-radius: 0;
    padding: .375rem .575rem;
}

.search-form button path {
    stroke: #FFFFFF;
}

header .nav-container {
    position: relative;
}

header .nav-container nav {
    font-family: 'Raleway', sans-serif;
    padding-top: 0.8rem;
}

.header-logo {
    position: absolute;
    top: -15px;
    left: -10px;
}

.header-logo.scrolled {
    /*left: 70px;*/
    transition: left .45s ease-out;
}

.header-logo.scrolled svg {
    width: 150px;
    transition: width .45s ease-out;
}

@media (min-width: 1400px) {
    .header-logo {
        top: -20px;
        left: -10px;
    }
}

.header-logo svg {
    width: 140px;
    transition: width .45s ease-out;
}

@media (min-width: 1400px) {
    .header-logo svg {
        width: 300px;
        transition: width .45s ease-out;
    }
}

main {
    z-index: 5;
    min-height: 140vh;
}

.topImage {
    background-position: 50% 0;
    position: relative;
}

.start-menu {
    position: absolute;
    background-image: url("../img/header-bottom2.svg");
    background-repeat: no-repeat;
    background-position: bottom;
    width: 100%;
    height: 106px;
    bottom: -2px;
    z-index: 0;
    background-size: 100% 100%;
}

.start-menu .container {
    position: relative;
}

@media (max-width: 992px) {
    .startingblock .container {
        width: 100% !important;
        max-width: 100% !important;
    }
}

.startingblock .start-panel {
    position: relative;
    z-index: 100;
    background-image: linear-gradient(#009FE3, #1f64b1);
    border-radius: 0 12px 0 12px;
    max-width: 1000px;
    margin-top: -80px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 767px) {
    .startingblock .start-panel {
        margin-top: -200px;
    }
}

@media (min-width: 1200px) {
    .startingblock .start-panel {
        margin-top: -300px;
    }
}

.startingblock .start-panel h2 {
    font-size: 2.4rem;
}

.startingblock .info-button {
    position: absolute;
    top: 20px;
    right: 20px;
}

.startingblock .start-panel a.btn-white {
    font-family: 'Rubik', sans-serif;
    background-color: #fff;
    margin-right: 12px;
    color: #312783;
    font-size: 1.4rem;
}

@media (min-width: 544px) {
    .startingblock .start-panel a.btn-white {
        font-weight: 500;
        margin-right: 14px;
        font-size: 1.4rem;
    }
}

@media (min-width: 1200px) {
    .startingblock .start-panel a.btn-white {
        font-weight: 500;
        margin-right: 22px;
        font-size: 2.2rem;
    }
}

.startingblock .start-panel a.btn-white:hover {
    background-color: #312783;
    color: #fff;
}

.startingblock .start-panel a.btn-white svg {
    width: 18px;
}

@media (min-width: 1200px) {
    .startingblock .start-panel a.btn-white svg {
        width: 30px;
    }
}

.for-who-flyout {
    font-family: 'Roboto', sans-serif;
    position: absolute;
    right: -200px;
    top: -210px;
    width: 18rem;
    border-radius: 5px 5px 5px 12px;
    padding: 2rem 2rem 2rem 4rem;
    z-index: -1;
    transform-origin: 1.5rem calc(100% - 1.5rem);
    transform: rotate(180deg);
}

.for-who-flyout.pivot {
    transition: transform 0.4s ease-in;
}

.for-who-flyout.active {
    transform: rotate(0);
    transition: transform 0.4s ease-out;
    z-index: 95;
    background-color: #FFFFFF;
}

.for-who-title {
    font-weight: 700;
    font-size: 22px;
    -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 1s; /* Firefox < 16 */
    -ms-animation: fadein 1s; /* Internet Explorer */
    -o-animation: fadein 1s; /* Opera < 12.1 */
    animation: fadein 1s;
}

.for-who-text {
    font-weight: 400;
    font-size: 18px;
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s; /* Firefox < 16 */
    -ms-animation: fadein 2s; /* Internet Explorer */
    -o-animation: fadein 2s; /* Opera < 12.1 */
    animation: fadein 2s;
}

.for-who-flyout .for-who-title,
.for-who-flyout .for-who-text {
    display: none;
}

.for-who-flyout.active .for-who-title,
.for-who-flyout.active .for-who-text {
    display: block;
}

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

/* Firefox < 16 */
@-moz-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ======================================================================
   Main stuff
  ======================================================================= */

/* main {
  position relative;
} */
.overlay {
    width: 100%;
    text-align: center;

    position: absolute;
    top: 0;
    left: -25%;
}

.overlay svg {
    width: 1000px;
    opacity: .7;
}

.overlay span {
    position: absolute;
    left: 45%;
    top: 30%;
    color: #fff;
    font-weight: 500;
    font-size: 50px;
    text-align: left;
    line-height: 1;
    width: 400px;
}

.crumbs {
    margin: 0 auto
}

.crumbs p {
    color: #5a5a5a;
    font-size: 12px;
    margin-left: 2.8rem;
}

.crumbs .active {
    color: #7f7f7f;
    font-weight: 500;
}

.crumbs a,
.crumbs a:hover {
    color: #7f7f7f !important;
    text-decoration: none !important;
}

.crumbs.normal {
    margin: unset !important;
    margin-bottom: 20px !important
}

.crumbs.normal p {
    margin-left: 0
}

section {
    padding: 3rem;
}

section .container {
    position: relative;
}

.intro {
    position: relative;
}

.intro p {
    font-family: 'Rubik', sans-serif;
    font-weight: 300;
    font-size: 32px;
    text-align: center;
    padding: 0 5rem;
}

.intro-menu {
    background-image: linear-gradient(#009FE3, #312783);
    border-radius: 0 1rem 0 1rem;;
}

.intro-menu p {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 3rem;
    color: #fff;
    padding: 2rem;
}

.nieuws-agenda {
    background-color: #F8F8F8;
}

.card-container {
    padding: 1rem;
}

.card-container a.btn-pink {
    width: auto;
}

.card {
    margin: 0 auto;
    box-shadow: 2px 6px 9px -4px rgba(0, 0, 0, 0.2);
}

.sticker {
    font-family: 'Rubik', sans-serif;
    width: 15rem;
    height: 15rem;
    background-color: #009FE3;
    color: #FFFFFF;
    border-radius: 50%;
    text-align: center;
    padding: 3.5rem 0;
    position: absolute;
    right: -3rem;
    bottom: -12rem;
    transform: rotate(10deg);
    box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.2)
}

.sticker a:hover,
.sticker a {
    color: #fff;
    text-decoration: none;
}

.sticker .sticker-title {
    display: block;
    font-weight: 700;
    font-size: 37px;
    line-height: 2rem;

    width: 100%;
    text-align: center;
    padding: 0 5%;
}

.sticker .sticker-title.white {
    color: #fff;
}

.sticker .sticker-text {
    display: block;
    font-weight: 400;
    font-size: 25px;
    line-height: 1.8rem;

    width: 100%;
    text-align: center;
    padding: 0 10%;
}

.more-links {
    position: relative;
}

.more-links ul {
    list-style: none;
    padding-left: 1.5rem;
}

.more-links li:before {
    content: '';
    display: inline-block;
    height: 1.2rem;
    width: 1.2rem;
    background-image: url("../img/arrow-circle.svg");
    background-size: contain;
    background-repeat: no-repeat;
    padding-left: 1.5rem;
    vertical-align: text-bottom
}

.more-links a {
    font-family: 'Rubik', sans-serif;
    color: #838383;
}

.column-2 {
    column-count: 2;
    column-gap: 2.5rem;
    font-family: 'Roboto', sans-serif;
}

.info-panel {
    margin-top: 150px;
    border-top: 1px solid #312783;
    margin-bottom: 4rem;
}

.info-panel.panel-0 {
    border-top: unset;
    margin-top: 0
}

.info-panel .panel-tab {
    position: relative;
    top: -102px;
    color: #FFFFFF;
    background-color: #312783;
    font-family: 'Rubik', sans-serif;
    font-size: 22px;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border-radius: 12px 12px 0 0;
}

.info-panel a.btn-pink {
    display: inline-block;
}

.info-panel ul {
    padding-left: 0;
    /*list-style-type: none;*/
}

.info-panel ul li span {
    padding-right: 15px
}

.info-panel img {
    max-width: 100%;
    height: auto;
}

.sidebar-title {
    font-family: 'Rubik', sans-serif;
    font-size: 22px;
    font-weight: 500;
    padding-bottom: 1rem;
    /*background-color: #E7E7E7;*/
    border-bottom: 2px solid #009FE3;
}

.sidebar-title.downloads-title:before {
    background-image: url("../img/download-black.svg");
    content: '';
    display: inline-block;
    height: 1.5rem;
    width: 3rem;
    padding: 1rem;
    background-size: 1.5rem;
    background-repeat: no-repeat;
    background-position: 0.5rem 0.5rem;
    vertical-align: text-bottom;
}

.sidebar ul {
    list-style: none;
    padding-left: 0;
    list-style-position: inside;
}

.sidebar li {
    position: relative;
    background-color: #F7F7F7;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 1rem;
}

.sidebar li:hover {
    background-color: #E7E7E7;
}

.sidebar li a {
    color: #000000;
    display: block;
    text-decoration: none;
}

.sidebar li a:before {
    position: absolute;
    background-image: url("../img/open-document-gray.svg");
    content: '';
    display: inline-block;
    height: 4rem;
    width: 3rem;
    padding: 1rem;
    background-size: 1.5rem;
    background-repeat: no-repeat;
    background-position: 1rem 1.5rem;
    vertical-align: text-bottom;
}

.sidebar li div {
    padding: 1rem 2rem 0.5rem 4rem;
}

.sidebar span {
    font-weight: 700;
    font-size: 18px;
}

.sidebar p {
    font-weight: 400;
    font-size: 16px;
}


/* ======================================================================
   Footer stuff
  ======================================================================= */
footer {
    z-index: 1;
    margin-top: 0;
}

.footer-showcase {
    position: absolute;
    right: 8rem;
}

.footer-showcase.image {
    top: -4rem;
}

@media (min-width: 1800px) {
    .footer-showcase.image {
        display: block !important;
    }
}

.footer-showcase.text {
    top: 24rem;
    width: 23rem;
    text-align: center;
    font-family: 'Rubik', sans-serif;
    font-weight: 300;
    font-size: 2rem;
    color: #FFFFFF;
}

@media (min-width: 1800px) {
    .footer-showcase.text {
        display: block !important;
    }
}

.footer-showcase blockquote:before {
    content: open-quote;
    margin-bottom: 2rem;
}

.footer-showcase blockquote:after {
    content: close-quote;
}

.footer-showcase .showcase-name,
.footer-showcase .showcase-text {
    display: block;
    font-size: 1.12rem;
    line-height: 0;
    position: relative;
    top: 0.6rem;
    text-transform: uppercase;
}

.footer-showcase .showcase-name {
    font-weight: 700;
}

.footer-background {
    position: absolute;
    width: 100%;
    background-image: url("../img/Path 35.svg");
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-top: 30rem;
    background-size: 100% 100%;
    pointer-events: none;
}

.footer-background .row:first-of-type {
    pointer-events: auto;
}


@media (max-width: 1600px) {
    .footer-background {
        background-size: 120% 100% !important;
    }
}

@media only screen and (max-width: 1366px) {

    .footer-background {
        background-size: 150% 100% !important;
    }

}

footer {
    position: relative;
    margin-top: 0;
}

footer p,
footer span,
footer a {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #FFFFFF;
}

footer .footer-column {
    padding: 1rem 5rem 3rem 1rem;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer .column-title {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 5rem;
}

footer .social a {
    font-size: 2rem;
    padding: 0.5rem 0;
}

footer .social li + li a {
    padding-left: 1.2rem;
}

footer .social a:hover {
    color: #312783;
}

footer a:hover {
    color: #312783;
    text-decoration: none;
}

.bottomline {
    padding: 1rem 0;
}

.bottomline span + span {
    padding-left: 4rem
}


/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    /* 1 */
}

/*
* Extends the .sr-only class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/

.sr-only.focusable:active,
.sr-only.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    white-space: inherit;
    width: auto;
}

/*
* Hide visually and from screen readers, but maintain layout
*/

.invisible {
    visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/

.clearfix:before,
.clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 2000px) {
    .overlay {
        left: -37%;
    }

}

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        /* Black prints faster */
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
       * Don't show links that are fragment identifiers,
       * or use the `javascript:` pseudo protocol
       */
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
       * Printing Tables:
       * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
       */
    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* ==========================================================================
   Youtube embed
   ========================================================================== */

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
