:root {
    /* Colors */
    --color-primary: #d367a5;
    --color-primary-dark: #3d362d;
    --color-secondary: #1e9cb6;
    --color-accent: #d367a5;
    --color-highlight: #dcce53;
    --color-light-green: #e7e8c5;
    
    --color-white: #ffffff;
    --color-black: #000000;
    --color-text: #3d362d;
    --color-gray-light: #f2f2f2;
    --color-gray-medium: #f4f4f4;
    --color-gray-dark: #333333;
    --color-background: #e5e2e1;
    --color-background-overlay: rgba(255, 255, 255, 0.8);
    --color-background-blur: rgba(255, 255, 255, 0.6);
    
    /* Font Sizes met clamp (min, preferred, max) */
    --font-size-base: clamp(16px, 1.05vw + 0.5rem, 20px);       /* body tekst */
    --font-size-small: clamp(12px, 0.8vw + 0.4rem, 14px);
    --font-size-medium: clamp(14px, 0.9vw + 0.45rem, 16px);
    --font-size-large: clamp(18px, 1.2vw + 0.6rem, 22px);
    --font-size-xlarge: clamp(20px, 1.5vw + 0.8rem, 24px);
    --font-size-xxlarge: clamp(24px, 2vw + 1rem, 30px);
    
    --font-size-h1: clamp(36px, 5vw, 60px);
    --font-size-h2: clamp(25px, 4vw, 48px);
    --font-size-h3: clamp(24px, 3.5vw, 36px);
    --font-size-h4: clamp(20px, 3vw, 28px);
    
    /* Line Heights met clamp (min, preferred, max) */
    --line-height-base: clamp(24px, 1.5vw + 1rem, 32px);
    --line-height-small: clamp(18px, 1vw + 1rem, 22px);
    --line-height-medium: clamp(20px, 1.1vw + 1rem, 24px);
    --line-height-large: clamp(24px, 1.2vw + 1rem, 30px);
    --line-height-xlarge: clamp(28px, 1.5vw + 1rem, 34px);
    --line-height-xxlarge: clamp(32px, 1.8vw + 1rem, 40px);
    
    --line-height-h1: clamp(44px, 5.5vw, 68px);
    --line-height-h2: clamp(36px, 4.5vw, 56px);
    --line-height-h3: clamp(30px, 3.5vw, 44px);
    --line-height-h4: clamp(28px, 3vw, 36px);
    
    /* Font Weights */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 25px;
    --spacing-xxl: 30px;
    
    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-xl: 50px;
    --radius-round: 50%;
    --radius-full: 100%;
    
    /* Transitions */
    --transition-fast: 0.4s;
    --transition-medium: 0.5s;
    --transition-slow: 0.7s;
    --transition-xslow: 1.5s;
    --transition-xxslow: 3.5s;
    
    /* Shadows */
    --shadow-default: 2px 3px 2px rgb(0 0 0 / 0.4);
    
    /* Z-index */
    --z-background: -1;
    --z-content: 2;
    --z-logo: 2;
    --z-alert: 4;
    --z-nav: 10;
    --z-progress: 99999;
    --z-quicklinks: 999;
    --z-footer: 999;
    --z-afspraak: 999999;
}


/* ============================================
   CSS RESET
   ============================================ */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,section,summary,time,mark,audio,video{
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body{line-height:1}

article,aside,details,figcaption,figure,footer,header,hgroup,section{display:block}

blockquote,q{quotes:none}

blockquote:before,blockquote:after,q:before,q:after{content:none}

a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}

ins{background-color:#ff9;color:var(--color-black);text-decoration:none}

mark{background-color:#ff9;color:var(--color-black);font-style:italic;font-weight:var(--font-weight-bold)}

del{text-decoration:line-through}

abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}

table{border-collapse:collapse;border-spacing:0}

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

input[type=text],input[type=button],input[type=submit],input[type=password],select{vertical-align:middle}

strong {font-weight:var(--font-weight-medium);}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* ============================================
   BASE STYLES
   ============================================ */
html.mx_logged_in {
    margin-top: 0 !important;
}

.mx_logged_in #header {
    top: 52px;
}

html,
body {
    height: 100%;
    position: relative;
    z-index: var(--z-background);
}

body {
    margin: 0;
    padding: 0;
    color: var(--color-text);
    line-height: 1.45;
    overflow-x: hidden;
}

body,
p,
td,
td p {
    font-family: "Roboto", sans-serif;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: var(--font-weight-normal);
}

ul {
    padding-left: 35px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: var(--spacing-sm);
    font-weight: var(--font-weight-normal);
}

h1 {
    font-family: "Roboto", sans-serif;
    color: var(--color-primary);
    font-size: var(--font-size-h1);
    line-height: var(--line-height-h1);
    padding-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-medium);
}

h2 {
    font-family: "Roboto", sans-serif;
    color: var(--color-primary);
    font-size: var(--font-size-h2);
    line-height: var(--line-height-h2);
    font-weight: var(--font-weight-medium);
    margin-top: var(--spacing-lg);
}

h3 {
    font-family: "Roboto", sans-serif;
    color: var(--color-primary);
    font-size: var(--font-size-h3);
    line-height: var(--line-height-h3);
    font-weight: var(--font-weight-medium);
    margin-top: var(--spacing-lg);
}

h4 {color:#d367a5 !important; font-weight:bold !important;}

a {
    color: var(--color-secondary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

*:active,
*:focus {
    outline: 0;
}

blockquote {
    font-size: 1.4em;
    width: 100%;
    margin: 50px auto;
    font-style: italic;
    padding: 1.2em 2% 1.2em 2%;
    line-height: 1.6;
    position: relative;
    border-left: solid var(--color-primary-dark) 12px;
    border-radius: var(--radius-md);
    margin-bottom: 60px;
    background-color: #eee;
    margin-left: 0px;
}

/* ============================================
   FORMS
   ============================================ */
input[type="text"],
input[type="email"],
input[type="button"],
input[type="submit"],
input[type="password"],
textarea {
    -webkit-appearance: none;
    border-radius: 0;
    filter: none;
    font-family: "Roboto", sans-serif;
    font-size: var(--font-size-medium);
}

.zoekbox {
    margin-top: var(--spacing-sm);
}

.zoekbox input[type="text"] {
    padding: 0 12px;
    float: left;
    font-size: var(--font-size-medium);
    line-height: 31px;
    font-weight: normal;
    color: var(--color-gray-dark);
    border: 0;
    background-color: var(--color-gray-medium);
    width: 175px;
}

.zoekbox input[type="submit"] {
    margin-right: var(--spacing-lg);
    float: left;
    height: 31px;
    cursor: pointer;
    border: 0;
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    width: 40px;
    margin-left: 2px;
    border-left: 2px solid var(--color-primary-dark);
    background: var(--color-primary-dark) url(../images/search_icon.png) center center no-repeat;
}

/* ============================================
   LAYOUT COMPONENTS
   ============================================ */
#uitstroom {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: left;
    width: 100%;
}

#vakgebieden {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: left;
    width: 100%;
}

#uitstroom.mob {
    display: none;
}

#vakgebieden.mob {
    display: none;
}

.blok-uitstroom {
    position: relative;
    width: 50%;
    background-color: var(--color-white);
    border: solid 1px var(--color-gray-light);
    padding: var(--spacing-xs) var(--spacing-md);
}

.blok-uitstroom p {
    padding-bottom: 0;
}

.blok-vakgebied {
    position: relative;
    width: 15%;
    background-color: var(--color-white);
    border: solid 1px var(--color-gray-light);
    padding: var(--spacing-xs);
}

.blok-vakgebied.smal2:nth-child(-n + 3) {
    background-color: var(--color-accent) !important;
    color: var(--color-white);
}

.blok-vakgebied.smal:nth-child(-n + 7) {
    background-color: var(--color-accent) !important;
    color: var(--color-white);
}

.smal {
    width: 11% !important;
}

.blok-vakgebied p {
    padding-bottom: 0;
}


a.anchor {
    display: block;
    position: relative;
    top: -250px;
    visibility: hidden;
}

#logo {
      position: fixed;
    left: 0;
    top: 10vh;
}

#logo a {
    color: transparent;
}

#logo img {
    filter: drop-shadow(var(--shadow-default));
    width: 100%;
    max-width: 463px;
	height:auto
}

.home #logo {
    width: 100%;
    max-width: 500px;
    height: auto;
	    padding: 15px;
	    z-index: -1;
}


/* vliegende objecten */
.vliegend-object-rechts,
.vliegend-object-links {
    position: fixed;
   z-index: 2;
  
}

.vliegend-object-rechts {
	width:100%;
	max-width:300px;
	height:auto;
	 bottom: 20px;
    right: 0px;
    animation: invliegen-rechts 1s ease-out forwards;
}

.vliegend-object-links {
	width:100%;
	max-width:300px;
	height:auto;
	 bottom: 50px;
    left: 0px;
    animation: invliegen-links 1s ease-out forwards;
}

@keyframes invliegen-rechts {
    from {
        transform: translateX(150px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes invliegen-links {
    from {
        transform: translateX(-150px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@media screen and (max-width: 1050px) {
	
	.vliegend-object-rechts {
	max-width:137px;
	bottom: 67px;
    right: 0px;
   }

.vliegend-object-links {
		max-width:150px;
bottom: 80px;
    left: 0px;
}
	
	#logo {
    position: fixed;
    left: 0;
    top: 3vh;
}
 
}


/* ============================================
   BREADCRUMBS
   ============================================ */
#breadcrumbs {
    margin-top: 3px;
    min-height: 36px;
    float: left;
}

#breadcrumbs ul {
    float: left;
    list-style: none;
    padding-left: 0;
    padding-bottom: 0;
}

#breadcrumbs ul li {
    padding: 0 6px 0 var(--spacing-xxl);
    float: left;
    font-size: var(--font-size-medium);
    line-height: 36px;
    font-weight: normal;
    color: var(--color-white);
    background: url("../images/right-arrow.png") left center no-repeat;
    background-size: 26px;
}

#breadcrumbs ul li a {
    display: block;
    text-decoration: none;
    color: var(--color-white);
}

#breadcrumbs ul li a:hover {
    color: var(--color-white);
}

#breadcrumbs ul li:first-child {
    padding-left: 0;
    display: none;
}

#breadcrumbs ul li.active {
    color: var(--color-white);
}

/* ============================================
   CONTENT AREAS
   ============================================ */
#contentwrapper2 {
    min-height: 100vh;
}

#contentwrapper {
    float: right;
    width: calc(100% - 525px);
    max-width: 1100px;
    padding-right: 250px;
    padding-bottom: 100px;
    min-height: 100vh;
    position: relative;
    z-index: var(--z-content);
}

#quicklinks-wrapper {
    float: right;
    width: calc(100% - 525px);
    max-width: 1100px;
    padding-right: 250px;
    padding-bottom: 100px;
    position: relative;
    z-index: var(--z-content);
}

#content {
    background: rgb(255, 255, 255) transparent;
    background: var(--color-background-overlay);
    padding: var(--spacing-xxl);
      counter-reset: item;
}

.home #content {
      margin-top: 0;
    min-height: 45vh;
    background: #fff;
border: solid 0px #1e9cb6;
}

/*#content h2:before {
    content: "." counters(item, ".") " ";
    counter-increment: item;
}*/

#content h2 span {
    float: left;
}

#content img[style*="left"],
#content img[align="left"] {
    margin: 0 var(--spacing-lg) var(--spacing-sm) 0;
}

#content img[style*="right"],
#content img[align="right"] {
    margin: 0 0 var(--spacing-sm) var(--spacing-lg);
}

#content img {
    max-width: 100%;
    height: auto;
}

img:not([src]):not([srcset]) {
    visibility: hidden;
}

table,
tr,
td {
    height: auto !important;
}

/* ============================================
   QUICKLINKS
   ============================================ */
#quicklinks {
    float: left;
    width: 70%;
    max-width: 600px;
    background-color: var(--color-primary);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) 0 var(--spacing-sm) 0;
    color: var(--color-white);
    margin: 60px 0 var(--spacing-xxl) 0;
    position: relative;
    font-family: "Roboto", sans-serif;
    letter-spacing: 2px;
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-slow) ease;
}

#quicklinks::before {
    position: absolute;
    display: block;
    content: "";
    background-image: url("../images/temp/Bolletjes-boven-menu.svg");
    background-size: contain;
    background-repeat: no-repeat;
    height: 50px;
    width: 182px;
    top: -50px;
    left: var(--spacing-lg);
}

#quicklinks.stick {
    position: sticky;
    top: 0;
    width: 96%;
    max-width: 100%;
    margin: 0 2%;
    border-bottom-right-radius: var(--radius-md);
    border-bottom-left-radius: var(--radius-md);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    filter: drop-shadow(var(--shadow-default));
    z-index: var(--z-quicklinks);
}

#quicklinks ul {
    padding-top: var(--spacing-md);
}

#quicklinks h3 {
    padding-bottom: var(--spacing-sm);
    padding-left: var(--spacing-md);
    font-weight: var(--font-weight-medium);
    font-size: 46px;
    line-height: 56px;
    color: var(--color-white);
    padding-top: var(--spacing-sm);
}

#quicklinks.stick h3 {
    font-size: var(--font-size-base);
    line-height: var(--font-size-base);
}

#quicklinks.stick ol,
#quicklinks.stick ul {
    font-size: var(--font-size-small);
    line-height: var(--line-height-small);
}

#quicklinks h1 {
    color: var(--color-white);
    font-size: 44px;
    line-height: 48px;
    padding: var(--spacing-xxl);
}

#quicklinks ol {
    list-style-type: none;
    counter-reset: item;
    padding-left: 0;
    padding-bottom: var(--spacing-sm);
}

#quicklinks ol li:before {
    content: "." counters(item, ".") " ";
    counter-increment: item;
    color: var(--color-white);
    position: absolute;
    left: 22px;
    top: 0;
}

#quicklinks ol li .number {
    position: absolute;
    left: var(--spacing-md);
    top: 0;
}

#quicklinks a {
    color: var(--color-white);
    text-decoration: none;
    padding: 0 var(--spacing-sm) 0 var(--spacing-sm);
    display: block;
    text-align: left;
}

#quicklinks ol li {
    padding: 0px;
    position: relative;
}

#quicklinks ol li:hover {
    background-color: var(--color-primary);
}

.quote h1 {
    color: var(--color-white);
    width: 100%;
    max-width: 455px;
    padding-top: 27px;
    position: absolute;
}

#quicklinks ul li {
    padding: 0px;
    position: relative;
}

#quicklinks ul li:hover > a {
    color: var(--color-secondary);
}

/* ============================================
   INFORMATIE BLOCKS
   ============================================ */
#informatie {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: left;
    width: 100%;
    border-top: solid 4px var(--color-primary);
    border-radius: var(--radius-md);
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

#informatie.mob {
    display: none;
}

.blok-wrapper {
    width: 29%;
    margin: 2%;
    position: relative;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-xl);
}

.blok-informatie {
    border-radius: var(--radius-md);
    font-size: var(--font-size-medium);
    line-height: var(--line-height-small);
}

.blok-informatie:nth-child(even) {
    background-color: transparent;
}

.blok-informatie h3 {
    position: relative;
    width: 100%;
    padding: var(--spacing-xs);
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-md);
    text-align: left;
    font-size: var(--font-size-h4);
    line-height: var(--spacing-xxl);
}

.blok-informatie ul {
    padding-left: 24px;
}

.blok-informatie p {
    padding-bottom: var(--spacing-sm);
    font-size: var(--font-size-medium);
    line-height: var(--line-height-small);
}

/* ============================================
   TEAMS
   ============================================ */
#teams-wrapper {
    width: 100%;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: left;
}

.teams-blok {
    position: relative;
    padding: 8px;
    border-radius: var(--radius-md);
    width: 21%;
    margin: 2%;
    background-color: var(--color-white);
}

.teams-foto {
    width: 100%;
    padding: var(--spacing-xs) var(--spacing-sm);
    background-size: 85%;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: var(--spacing-sm);
    margin-bottom: 0;
    margin-top: var(--spacing-xs);
}

.teams-foto img {
    width: 100%;
    height: auto;
}

.teams-naam {
    width: 100%;
    color: var(--color-primary);
}

.teams-naam p {
    padding: var(--spacing-sm) var(--spacing-sm) 0;
    font-size: var(--font-size-xlarge);
    color: var(--color-primary);
    font-weight: var(--font-weight-medium);
    text-align: center;
}

.teams-functie {
    width: 100%;
    padding: 0 var(--spacing-sm);
}

.teams-functie p {
    padding-bottom: 0;
    font-size: var(--font-size-medium);
}

/* ============================================
   BUTTONS
   ============================================ */
.mx_custom_button {
    background: var(--color-primary);
    text-decoration: none !important;
    color: var(--color-white) !important;
    padding: var(--spacing-xs) var(--spacing-lg) var(--spacing-md) var(--spacing-lg);
    display: inline-block;
    text-align: center;
    margin-bottom: var(--spacing-md);
   }

.mx_custom_button:hover {
    background-color: var(--color-primary-dark);
}

.button {
    border: solid 2px var(--color-primary-dark);
    background-color: var(--color-primary-dark);
    color: var(--color-white) !important;
    cursor: pointer;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    border-radius: 0.3rem;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.5rem 1rem;
    display: block;
    width: 300px;
    text-decoration: none;
    z-index: var(--z-quicklinks);
    max-width: 80%;
}

.button:hover {
    background-color: var(--color-primary-dark);
    border: solid 2px var(--color-white);
}

/* ============================================
   BACKGROUND
   ============================================ */
#background-desktop,
#background-mobile {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: var(--z-background);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

#background-desktop.orange {
    background-color: var(--color-primary-dark);
}

#background-mobile {
    display: none;
}

/* ============================================
   BANNER & ALERTS
   ============================================ */

#banner {
position: fixed;
    bottom: 20px;
    right: -10px;
    width: 50vw;
    max-width: 1600px;
    padding: 40px 30px;
     color: #333;
    font-family: sans-serif;
    font-size: 1.2rem;
    line-height: 1.4;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 0;
    margin-bottom: 22vh;
    opacity: 1;
    transition: opacity 1s ease;
    background: #fff;
	
 
}

/* Sticky state - verdwijnt */
#banner.stick {
    opacity: 0; /* wordt smooth onzichtbaar */
	    z-index: -1;
}

#banner h1 {font-size:var(--font-size-h2); color: #d367a5;    text-align: left;}


/* keyframes voor slide-in */
@keyframes slideIn {
    from {
        right: -70%;
        opacity: 0;
    }
    to {
        right: 0;
        opacity: 1;
    }
}

/* mobiele versie */
@media (max-width: 768px) {
	
	
	.vliegend-object-rechts {
	width:100%;
	max-width:100px !important;
	height:auto;
	 bottom: 70px !important;
    right: 0px;
    animation: invliegen-rechts 1s ease-out forwards;
}

.vliegend-object-links {
	width:100%;
	max-width:100px !important;
	height:auto;
	 bottom: 77px !important;
    left: 0px;
    animation: invliegen-links 1s ease-out forwards;
}
	
	
    #banner {
             width: 90vw;
        font-size: 1rem;
        padding: 15px 20px;
        right: -10px;
    }
}

.home #alert {
    position: fixed;
    left: 88px;
    top: 382px;
}

#alert {
    position: fixed;
    left: var(--spacing-sm);
    top: 245px;
    max-width: 547px;
    width: 100%;
    background-image: url(../images/W_Attentie.svg);
    background-position: bottom left;
    background-size: cover;
    margin: var(--spacing-sm);
    padding: 9px 45px 9px var(--spacing-xl);
    z-index: var(--z-alert);
    border-radius: var(--radius-sm);
    opacity: 1;
    transition: all var(--transition-medium) ease;
}

#alert.stick {
    opacity: 0;
    transition: all var(--transition-xslow) ease;
}

#alert * {
    color: var(--color-white);
}

/* ============================================
   NUMBER & DECORATIVE ELEMENTS
   ============================================ */
#number {
    float: right;
    width: 25%;
    height: 250px;
    z-index: 99;
}

#number.stick {
    top: -15px;
    position: sticky;
    right: 0;
    z-index: var(--z-quicklinks);
}

#number span {
    font-family: "Roboto", sans-serif;
    font-size: 250px;
    color: var(--color-white);
    line-height: 1;
    font-weight: var(--font-weight-medium);
}

#number.stick span {
    font-size: 212px;
}




/* ============================================
   SLIDER BUTTON
   ============================================ */
#slider-button {
    background-image: url("../images/arrow-down.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50% 50%;
    bottom: 39px;
    z-index: 100;
    left: 50%;
    position: absolute;
    cursor: pointer;
    padding: var(--spacing-xxl);
    margin-left: -25px;
    animation-name: bounce;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(91deg) brightness(110%) contrast(101%);
    opacity: 1;
    transition: all var(--transition-medium) ease;
}

#slider-button.stick {
    opacity: 0;
    transition: all var(--transition-xslow) ease;
}

/* ============================================
   FOOTER
   ============================================ */

.footer-grid-wrapper {
   
    border-radius: 20px;
    background-color: #f6f6f690;
    padding: 40px 0 0 0;
    margin-bottom: -29px;
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
	margin-top:30px;
	font-size:var(--font-size-medium);
}


.footer-grid-wrapper p {
	font-size:var(--font-size-medium);
}

.footer-grid-wrapper a:hover {
    text-decoration: underline;
}

.footer-grid-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid-wrapper ul li {
    margin-bottom: 6px;
}

/* Grid: 3 kolommen op desktop */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
}

/* Tablet: 2 kolommen */
@media (max-width: 900px) {
		.footer-grid-wrapper
 {    padding: 25px;
	}
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobiel: 1 kolom */
@media (max-width: 600px) {

	
    .footer-grid {
        grid-template-columns: 1fr;
    }
}




#footer {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    padding-top: 8px;
    background-color: var(--color-secondary);
}

#social {
    float: left;
    padding-left: var(--spacing-md);
}

#social a {
    border: solid 2px var(--color-white);
    color: var(--color-white);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: var(--radius-lg);
    display: inline-block;
    font-size: 24px;
    line-height: 35px;
    margin-right: var(--spacing-sm);
}

#social a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

#copyright,
#copyright2 {
    float: right;
    padding-right: var(--spacing-md);
    padding-top: 7px;
    font-size: var(--font-size-medium);
}

#copyright a,
#copyright2 a {
    color: var(--color-white);
    text-decoration: none;
}

#footer-mobile {
    display: none;
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.progress-container {
    width: 42px;
    height: 42px;
 background: var(--color-secondary);
    border: solid 1px var(--color-white);
    position: fixed;
    bottom: 70px;
    right: var(--spacing-sm);
    z-index: 999;
    transform: rotate(-90deg);
    border-radius: var(--radius-full);
    overflow: hidden;
    opacity: 0;
    transition: all var(--transition-slow) ease;
}

.progress-container.stick {
    opacity: 1;
}

.progress-container span {
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../images/left-arrow.svg);
    background-size: auto 25px;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) saturate(100%) invert(97%) sepia(7%) saturate(1%) hue-rotate(82deg) brightness(106%) contrast(100%);
    position: absolute;
    top: 1px;
    left: 1px;
    color: var(--color-white);
    transform: rotate(-180deg);
}

.progress-bar {
    height: 44px;
    background: var(--color-primary);
    width: 0%;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    width: 100%;
}

.faqwrapper {
    margin-bottom: 40px;
}

.faqlist {
    float: left;
    width: 100%;
    margin-right: 0%;
}

.faqlist:nth-of-type(2n) {
    margin-right: 0;
}

.faqitem {
    width: 96%;
    padding: 7px;
    margin-bottom: var(--spacing-md);
    padding-top: var(--spacing-md);
    background-color: var(--color-light-green);
    border: solid 2px var(--color-primary-dark);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.faqitem:before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 0;
    height: 0;
    z-index: 9;
}

.faqcontent ul,
.faqcontent ol {
    margin: 0 45px var(--spacing-md);
}

.faqcontent ul li,
.faqcontent ol li {
    padding: 0 var(--spacing-md);
}

.faqheader p {
    margin-bottom: 0;
    font-size: var(--font-size-xlarge) !important;
    padding-right: 12px;
    font-weight: var(--font-weight-medium);
    padding-bottom: 0px;
}

a.faqheader {
    display: block;
    color: var(--color-black);
    margin-bottom: 0;
    text-decoration: none;
    position: relative;
    padding-right: var(--spacing-sm);
}

a.faqheader::after {
    content: "+";
    font-size: 34px;
    font-weight: var(--font-weight-medium);
    position: absolute;
    top: -3px;
    right: var(--spacing-xs);
    color: var(--color-primary-dark);
}

.faqcontent {
    width: 100% !important;
    display: block;
    margin-top: var(--spacing-md);
}

.faqcontent p {
    margin-bottom: 0;
    font-size: var(--font-size-base);
    padding: var(--spacing-xs) 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@-webkit-keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        transform: translate3d(0, -4px, 0);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

/* ============================================
   UTILITIES
   ============================================ */
.clear {
    clear: both;
}

/* ============================================
   MEDIA QUERIES
   Ordered from smallest to largest breakpoint
   ============================================ */


/* Small Devices - Height */
@media screen and (max-height: 450px) {
    #quicklinks.stick {
        display: none;
    }    

    .home #logo.stick {
        top: 6px !important;
        width: 150px !important;
        transition: all var(--transition-xslow) ease;
    }

       h1 {
        font-size: var(--font-size-xlarge);
        line-height: var(--line-height-large);
    }


    #alert {
        display: none !important;
    }
    
    #contentwrapper {
        margin-top: -38px !important;
    }
}


@media screen and (max-width: 375px) and (max-height: 1080px) {
    #alert {
        left: var(--spacing-sm);
        top: 190px !important;
        max-width: 499px;
        width: 90%;
    }
    
    .mx_news_block_image {
        display: none !important;
    }
}

@media screen and (min-width: 375px) and (max-width: 680px) and (max-height: 1080px) {
    .mx_news_block_image {
        float: inherit;
        margin-right: inherit;
        display: none;
    }
    
    .mx_news_block_image img {
        float: inherit;
        width: 100% !important;
    }
}

/* Small Devices */
@media screen and (max-width: 450px) {
    h1 {
        font-size: var(--font-size-xlarge);
        line-height: 32px;
    }   


}

/* Mobile Devices */
@media screen and (max-width: 560px) {
    #teams-wrapper {
        width: 100%;
        margin: 0 auto;
    }

    .teams-blok {
        width: 96%;
    }

    #alert {
        max-width: 341px;
        top: 157px !important;
        opacity: 0.9;
    }
     

   
}

/* FAQ List Adjustment */
@media screen and (max-width: 665px) {
    .faqlist {
        width: 100%;
        margin-right: 0;
    }
}

/* Medium-Small Tablets */
@media screen and (max-width: 680px) {
    .blok-vakgebied.smal {
        width: 11% !important;
    }
    
    .blok-vakgebied {
        position: relative;
        width: 30%;
    }

    .blok-informatie p,
    .blok-uitstroom p,
    .blok-vakgebied p {
        font-size: var(--spacing-md);
        line-height: var(--line-height-small);
    }

    .blok-wrapper {
        width: 100%;
    }

    body,
    p,
    td,
    td p {
        font-size: var(--font-size-large);
        line-height: var(--line-height-large);
    }

    .quote h1 {
        padding: var(--spacing-xxl) 50px;
        top: 120px;
        font-size: var(--font-size-large);
        line-height: 24px;
        max-width: 50%;
    }

    .homepage #content {
        padding: var(--spacing-lg) 100px var(--spacing-lg) var(--spacing-lg);
        border-radius: 0;
        min-height: 100vh;
        margin-bottom: 60px;
    }

    .home #contentwrapper {
        padding-top: 0;
        padding-right: 0;
    }
    
    #contentwrapper {
        padding-left: 0;
        padding-top: 45vh;
        margin-top: 0;
        width: 100% !important;
        padding-right: 0px;
        position: relative;
        z-index: var(--z-background);
    }

    #quicklinks {
        width: 90%;
        margin-left: 5%;
        margin-top: -60px;
    }

    #quicklinks h3 {
        font-size: var(--font-size-base);
        line-height: var(--line-height-small);
    }
    
    #quicklinks ol {
        font-size: var(--font-size-small);
        line-height: var(--line-height-small);
    }

   
    
    #social,
    #breadcrumbs {
        position: relative;
    }

    #background-desktop {
        display: none;
    }

    #background-mobile {
        display: block;
    }



    #number {
        top: 130px;
        right: 100px;
        position: absolute;
    }
    
    #number span {
        font-size: 125px;
    }



    #content {
        padding: var(--spacing-lg);
        border-radius: 0;
        min-height: 100vh;
        margin-bottom: 42px;
    }
    
    .home #content {
      
    }

    #footer {
        min-height: 120px;
        height: auto;
        border-bottom: 0px solid var(--color-secondary);
    }

    #social {
        width: 100%;
        text-align: center;
        padding-top: var(--spacing-xs);
    }

    #breadcrumbs {
        width: 100%;
    }
    
    #breadcrumbs ul {
        display: flex;
        align-items: stretch;
        flex-wrap: wrap;
        justify-content: center;
        float: none;
        margin-bottom: 40px;
    }

    #breadcrumbs ul li {
        position: relative;
    }
}

/* Medium Tablets */
@media screen and (max-width: 720px) {
 

    .blok-vakgebied.smal:nth-child(-n + 7) {
        text-transform: lowercase;
    }

  
}



/* Medium-Large Tablets */
@media screen and (max-width: 1023px) {
    .home #contentwrapper {
        width: calc(100% - 9px);
    }

    #slider-button {
        bottom: 109px;
    }      
    
    .home #logo.stick img{
        width: 100%;
        display: inherit;
        transition: all var(--transition-medium) ease;
      
    }

    #contentwrapper {
        width: calc(100% - 425px);
    }

    #quicklinks {
        float: left;
        width: 60%;
        font-size: var(--font-size-medium);
        line-height: var(--line-height-medium);
    }
    
    /*#logo.stick {
        position: fixed;
        bottom: inherit;
        left: 0;
        top: 0px;
        width: 100%;
        transition: all var(--transition-medium) ease;
        background: var(--color-background-blur);
        backdrop-filter: blur(5px);
        padding: 4px 0;
        z-index: 998;
        background-image: url("../images/Logo-groot.svg");
        background-repeat: no-repeat;
        background-position: 4px 6px;
        background-size: 100px;
        height: 39px;
    }*/

    #logo.stick img {
        width: 170px;
        display: none;
    }

    #quicklinks.stick {
        width: 100%;
        margin-left: 0;
        top: 39px;
    }
    
    #copyright {
        width: 100%;
        text-align: center;
        padding-bottom: 0px;
        padding-top: 0px;
        background-color: var(--color-primary);
    }
    
    #copyright2 {
        display: none;
    }

 

    #contentwrapper {
        width: 100%;
        padding-top: 0;
        padding-bottom: 160px;
        margin-top: 164px;
        padding-right: 50px;
    }


    
    .home #footer {
        display: none;
    }
    
    #footer {
        position: absolute;
        bottom: 94px;
        border-bottom: 70px solid var(--color-secondary);
    }

    #footer-mobile {
        display: block;
        position: fixed;
        bottom: 21px;
        left: 0;
        width: 100%;
        height: 73px;
        line-height: 35px;
        z-index: var(--z-footer);
        padding-top: 8px;
        background-color: var(--color-secondary);
    }

    .footerlink {
        float: left;
        width: 20%;
        text-align: center;
    }
    
    .footerlink a img:hover {
        filter: invert(74%) sepia(17%) saturate(1901%) hue-rotate(33deg) brightness(87%) contrast(88%);
    }

    .footerlink .btn {
        width: 77px;
        height: 77px;
        border: solid 1px var(--color-white);
        border-bottom: none;
        margin: -24px auto 0 auto;
        background-color: var(--color-highlight);
        position: relative;
        cursor: pointer;
        border-radius: var(--radius-sm) var(--radius-sm) 0 0;
        color: var(--color-white);
    }

    .footerlink .btn div {
        height: 2px;
        width: 49px;
        background-color: var(--color-white);
        margin: var(--spacing-sm) auto;
        transition: var(--transition-fast);
        border-radius: var(--spacing-xs);
    }

    .footerlink .btn span {
        position: absolute;
        bottom: 0px;
        left: 0;
        width: 100%;
        text-align: center;
    }

    .footerlink .btn.change .bar1 {
        transform: rotate(-45deg) translate(-13px, 14px);
        width: 59px;
        height: 3px;
    }

    .footerlink .btn.change .bar2,
    .change .bar3 {
        opacity: 0;
    }

    .footerlink .btn.change .bar4 {
        transform: rotate(45deg) translate(-13px, -11px);
        width: 59px;
        height: 3px;
    }
    
    .footerlink img {
        border: solid 1px var(--color-black);
        border-radius: var(--radius-round);
        padding: 7px;
        filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(110deg) brightness(108%) contrast(108%);
    }

    .progress-container {
        bottom: 44px;
        right: var(--spacing-md);
        opacity: 1;
    }
}

/* Large Tablets / Small Laptops */
@media screen and (max-width: 1214px) {

}

/* Desktop Small */
@media screen and (max-width: 1280px) {
  


.vliegend-object-rechts {
	width:100%;
	max-width:200px;
	height:auto;
	 bottom: 20px;
    right: 0px;
    animation: invliegen-rechts 1s ease-out forwards;
}

.vliegend-object-links {
	width:100%;
	max-width:200px;
	height:auto;
	 bottom: 50px;
    left: 0px;
    animation: invliegen-links 1s ease-out forwards;
}
    
    .teams-naam p {
        padding: var(--spacing-sm) var(--spacing-sm) 0;
        font-size: var(--font-size-xxlarge);
        font-size: var(--font-size-base);
    }
    
    .teams-functie p {
        padding-bottom: 0;
        font-size: var(--font-size-medium);
        line-height: var(--line-height-medium);
    }
    
    .teams-functie {
        width: 100%;
        padding: 0 var(--spacing-sm);
    }

    #quicklinks {
        width: 75%;
    }

    #alert {
        left: 16px !important;
        top: 168px !important;
        max-width: 490px;
    }

    .home #logo img {
        max-width: 445px;
        width: 100%;
        transition: all var(--transition-xslow) ease;
    }
    
    .home #logo.stick img {
        width: 100%;
        transition: all var(--transition-xslow) ease;
    
    }

    .home #contentwrapper {
                padding-right: 0px;
        width: 100%;
        max-width: fit-content;
        border-right: none;
        border-left: none;
    }


    #number {
        height: 225px;
        right: 150px;
    }

    #number span {
        font-size: 225px;
    }
}

/* Desktop Medium */
@media screen and (max-width: 1440px) {
    #uitstroom.mob,
    #vakgebieden.mob {
        display: flex;
    }
    
    #uitstroom.desk,
    #vakgebieden.desk {
        display: none;
    }

    h1 {
           line-height: 40px;
    }

    #contentwrapper {
        padding-right: 157px;
        width: calc(100% - 393px);
    }

    #number {
        right: 200px;
    }


}

/* Desktop Large */
@media screen and (max-width: 1500px) {

    .blok-wrapper {
        width: 46%;
    }
    
    .blok-wrapper:nth-child(3) {
        width: 92%;
    }
}

@media screen and (max-width: 1800px) {
    .teams-blok {
        width: 46%;
    }
}

/* Height-based Media Queries */
@media screen and (max-height: 647px) {
    .home #alert {
        top: 125px !important;
    }
    
    #logo img {
        width: 100%;
    }
    
    #logo {
       
        max-width: 247px;
    }
}

@media screen and (max-height: 870px) {
    
    #logo img {
        width: 100%;
    }
    
    #logo {
        max-width: 247px;
    }
}

/* Combined Width and Height Queries */
@media screen and (min-width: 1024px) and (max-height: 869px) {
    .home #alert {
        position: fixed;
        left: inherit !important;
        top: 9px !important;
        right: var(--spacing-md) !important;
        opacity: 0.9;
    }
}

@media screen and (max-width: 3500px) and (max-height: 800px) {
    #alert {
        left: inherit !important;
        right: var(--spacing-sm);
    }
}

@media screen and (max-width: 3500px) and (max-height: 1080px) {
    .home #logo img {
      /*  width: 556px;*/
        height: auto;
    }

    #alert {
        left: 16px !important;
        top: 200px !important;
        max-width: 490px;
    }
    
    .mx_news_block_image img {
        float: left;
        width: 146px !important;
    }
    
    .mx_news_block_image {
        float: left;
        margin-right: var(--spacing-sm);
    }
}

/* Large Desktop Screens */
@media screen and (min-width: 1279px) {
  
}

@media screen and (min-width: 1401px) {
   
    
    #contentwrapper {
        max-width: 1315px;
        padding-right: 178px;
    }
    
    #quicklinks {
        font-size: var(--font-size-large);
        line-height: var(--line-height-medium);
        width: 70%;
        max-width: 600px;
    }

    .home #logo {
        width: 100%;
    }
    
    .home #logo img {
        height: auto;
        max-width: 1630px !important;
    }



}

/* Ultra Wide Screens */
@media screen and (min-width: 2100px) {   

    #contentwrapper {
        max-width: 1630px;
    }


 
}