:root {
    --color-1: #ff6600;
    --color-1-light: #ffefe4;
    --color-2: #282728;
    --color-3: #585858;
    --color-4: #707070;
    --color-5: #f2f2f2;
    --color-6: #0675c3;
    --color-7: #ffffff;
    --color-8: #16c306;
    --color-9: #999999;
    --border-radius: 15px;
}

@font-face {
    font-family: 'EuclidCircularA-Regular';
    src: url(../fonts/EuclidCircularA-Regular.woff2) format('woff2');
    font-family: 'EuclidCircularA-Medium';
    src: url(../fonts/EuclidCircularA-Medium.woff2) format('woff2');
    font-display: swap;
}

html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
}

body {
    background-color: white;
    color: black;
    font-size: 17px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'EuclidCircularA-Regular', sans-serif;
}

p,
li {
    font-family: 'EuclidCircularA-Regular', sans-serif;
    font-size: 1.20rem;
    line-height: 2rem;
    color: var(--color-2);
}

a {
    color: var(--color-1);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'EuclidCircularA-Medium', sans-serif;
}

h1 {
    font-size: 2.8rem;
    line-height: 3.5rem;
}

h2 {
    font-size: 2.2rem;
    line-height: 2.75rem;
    margin: 0;
}

h3 {
    font-size: 1.6rem;
    line-height: 2rem;
}

h4 {
    font-size: 1.4rem;
    line-height: 1.75rem;
}

h5 {
    font-size: 1.2rem;
    line-height: 1.5rem;
}

@media (min-width:320px) and (max-width:767px) {
    h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
        line-height: 2.25rem;
        margin: 0;
    }

    h3 {
        font-size: 1.6rem;
        line-height: 2rem;
    }

    h4 {
        font-size: 1.4rem;
        line-height: 1.75rem;
    }

    h5 {
        font-size: 1.1rem;
        line-height: 1.375rem;
    }

    p,
    li {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    iframe {
        width: 100% !important;
        height: auto;
        display: block;
    }

}

img {
    border-radius: var(--border-radius);
    width: 100%;
    height: auto;
}

blockquote {
    font-style: italic;
}

.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 102, 0, 0) 50%, rgba(255, 102, 0, 1) 100%);
    z-index: 1;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: orange !important;
}

.hero-text h2 {
    margin-bottom: -20px;
    color: var(--color-1) !important;
}

.hero-text p {
    color: var(--color-1) !important;
}

.hero-text a {
    background: white;
    padding: 15px;
    border-radius: 100px;
    display: block;
    border: 2px solid white;
    font-size: 1.2rem;
    color: var(--color-1);
    width: 50%;
    margin: 20px auto 0 auto;
}

.hero-text a:hover {
    background: white;
    padding: 15px;
    border-radius: 100px;
    display: block;
    border: 2px solid var(--color-1);
    font-size: 1.2rem;
    color: var(--color-1);
    width: 50%;
    margin: 0 auto 0 auto;
}

@media (min-width:320px) and (max-width:767px) {

    .hero-text {
        width: 90%;
    }

    .hero-text a {
        width: 80%;
    }

}

.slide_button_container button {
    border-radius: 50%;
    background: var(--color-1);
    aspect-ratio: 1;
}

.slide_button_container {
    padding-bottom: 50px;
}

.blue_link {
    width: auto;
    height: auto;
    padding: 9px 20px 10px 20px;
    color: var(--color-5);
    border: 1px solid var(--color-6);
    border-radius: 25px;
    display: inline-block;
    margin-top: 50px;
    margin-top: 15px;
    background-color: var(--color-6);
    transition: background-color 1s;
    transition: color 1s;
    line-height: 1.7;
    cursor: pointer;
}

.blue_link:hover {
    background-color: var(--color-7);
    color: var(--color-6);
}

.white_link {
    width: auto;
    height: auto;
    padding: 9px 20px 10px 20px;
    color: var(--color-6);
    border: 1px solid var(--color-6);
    border-radius: 25px;
    display: inline-block;
    margin-top: 50px;
    margin-top: 15px;
    background-color: var(--color-7);
    transition: background-color 1s;
    transition: color 1s;
    line-height: 1.7;
    cursor: pointer;
}

.white_link:hover {
    background-color: var(--color-6);
    color: var(--color-7);
}

.background_color_1 {
    background: var(--color-1);
}

.background_color_1 a {
    color: var(--color-5);
}

.background_color_2 {
    background: var(--color-2);
}

.background_color_3 {
    background: var(--color-3);
}

.background_color_4 {
    background: var(--color-4);
}

.background_color_5 {
    background: var(--color-5);
}

.background_color_6 {
    background: var(--color-1-light);
}

.background_color_white {
    background: white;
}

.color_white {
    color: white !important;
}

.color_orange {
    color: var(--color-1) !important;
}

.text_left {
    text-align: left;
}

.text_center {
    text-align: center;
}

.text_right {
    text-align: right;
}

.font_size_small {
    font-size: 0.7rem;
}

.normal_banner {
    display: flex;
    gap: 9rem;
    padding: 5rem 0;
}

.normal_banner h1,
.normal_banner h2 {
    margin-top: 0;
}

.normal_banner_low {
    display: flex;
    gap: 9rem;
    padding: 2rem 0;
}

.normal_banner_2 {
    display: flex;
    gap: 9rem;
    padding: 5rem 0;
}

.normal_banner_2 h1,
.normal_banner_2 h2 {
    margin-top: 0;
}

.breadcrumb_container {
    width: 100%;
    height: auto;
    margin: 140px auto 0 auto;
    position: absolute;
    z-index: 100;
    padding-left: 70px;
    box-sizing: border-box;
}

.breadcrumb1 {
    padding-left: 0;
    list-style-type: none;
    margin: 0 0 15px 0;
}

.breadcrumb1 li {
    display: inline-block;
    font-size: 0.9rem;
}

#credits_bar {
    width: 100%;
    height: auto;
    padding: 20px 0 30px 0;
    color: #d0d1d3;
    text-align: right;
    font-size: 0.8em;
    font-weight: 300;
    border-top: 1px solid #d77f49;
}

.bottom_left {
    width: 30%;
    height: auto;
    float: left;
    text-align: left;
    font-weight: 300;
    font-size: 0.9em;
    color: #c97745;
}

.bottom_right {
    width: 70%;
    height: auto;
    float: left;
    text-align: right;
    font-weight: 300;
    font-size: 0.9em;
    color: #c97745;
}

.bottom_right a {
    color: #c97745;
}

.footer_grid_top {
    display: grid;
    grid-template-columns: repeat(2, 2.5fr) 1.25fr;
    grid-template-rows: 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 0px;
}

.div10 {
    width: 584px;
    grid-area: 1 / 1 / 2 / 2;
}

.div11 {
    width: 584px;
    grid-area: 1 / 2 / 2 / 3;
}

.div12 {
    width: 270px;
    grid-area: 1 / 3 / 2 / 4;
}

.footer_grid_bottom {
    display: grid;
    grid-template-columns: 1fr repeat(4, 1.3fr);
    grid-template-rows: 1fr;
    grid-column-gap: 25px;
    grid-row-gap: 0px;
    margin-top: 0;
}

.footer_grid_bottom div h3 {
    margin-top: 0;
}

.form_required {
    display: none;
}

.div1 {
    width: 217px;
    grid-area: 1 / 1 / 2 / 2;
}

.div2 {
    width: 270px;
    grid-area: 1 / 2 / 2 / 3;
}

.div3 {
    width: 270px;
    grid-area: 1 / 3 / 2 / 4;
}

.div4 {
    width: 270px;
    grid-area: 1 / 4 / 2 / 5;
}

.div5 {
    width: 270px;
    grid-area: 1 / 5 / 2 / 6;
}

@media (min-width:320px) and (max-width:767px) {
    .normal_banner {
        gap: 2rem;
        flex-wrap: wrap;
        padding: 2rem 0;
    }
}

.header_page {
    width: 100vw;
    height: auto;
    background: var(--color-1);
    color: white;
    box-sizing: border-box;
    text-align: center;
}

.header_page img {
    height: 100px;
}

.header_page a {
    color: var(--color-1);
    padding: 0 20px;
}

.header {
    width: 100vw;
    background: url('../layout/Geheugenvenster_reactie_muziek.webp');
    background-repeat: none;
    background-size: cover;
    color: white;
    box-sizing: border-box;
    text-align: center;
}

.header img {
    height: 100px;
}

.header a {
    color: white;
    padding: 0 20px;
}

.header_empty {
    width: 100vw;
    height: 100vh;
    color: white;
    box-sizing: border-box;
    text-align: center;
}

.header_menu_page {
    position: absolute;
    width: 100vw;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.5);
    color: black;
    padding: 11px 110px 11px 30px;
    backdrop-filter: blur(10px);
    font-size: 1.25rem;
    top: 0;
}

.header_menu_page a:hover {
    text-decoration: underline;
}

.header_menu {
    padding: 30px;
    position: fixed;
    width: 100vw;
    z-index: 2;
    padding: 11px 30px;
    transition: background 0.8s, padding 0.8s;
}

.header_menu a {
    color: var(--color-1);
}

.header_menu_scroll {
    background-color: rgba(255, 255, 255, 0.7);
    color: black;
    padding: 11px 30px;
    backdrop-filter: blur(10px);
}

.header_side_nav {
    display: none;
    background-color: black;
    height: 100vh;
    width: 30vw;
    position: fixed !important;
    right: 0;
    top: 0;
    z-index: 3;
}

.header_side_nav_overlay {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    opacity: 0.6;
    z-index: 1;
}

.header_side_nav>div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.header_side_nav a {
    width: 100%;
    display: block;
    font-size: 1.5rem;
    padding: 0.5rem 1.5rem;
    transition: 0.8s;
}

.header_side_nav a:hover {
    text-decoration: underline;
}

.header_side_nav {
    position: absolute;
    top: 0;
    right: 0;
}

.toggle_side_nav {
    background: var(--color-1);
    border: none;
    border-radius: 100%;
    color: white;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    cursor: pointer;
    margin-left: 30px;
    position: fixed;
    right: 36px;
    z-index: 3;
    top: 38px;
    padding: 0;
    -webkit-transform: none !important;
    transform: none !important;
}

.header_spacer {
    width: 100vw;
    height: 126px;
    display: block;
    clear: both;
}

@media (min-width:320px) and (max-width:767px) {
    .header_side_nav {
        width: 100vw;
        right: initial;
        overflow-y: scroll;
    }

    .header_side_nav a {
        padding: 5px;
    }

    .header_page img {
        height: 50px;
    }

    .header_slides {
        margin-top: 80px;
        height: 350px;
        overflow: hidden;
        clear: both;
    }

    .top_slide_news {
        margin-top: 80px;
        height: auto;
        overflow: hidden;
        clear: both;
    }

    .header_spacer {
        height: auto;

    }


    .toggle_side_nav {
        width: 45px;
        height: 45px;
        right: 16px;
        top: 15px;
    }

}

.top_slide {
    aspect-ratio: 16 / 7;
    width: 100% !important;
    position: relative;
    clear: both;
    padding: 0;
    top: 0;
    left: 0;
}

.top_slide img {
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
}

@media (max-width:800px) {
    .top_slide {
        background-color: var(--color-1);
        margin: 90px 0 0 0;
    }
}

.top_slide_news {
    aspect-ratio: 16 / 7;
    width: 100% !important;
    position: relative;
    clear: both;
    padding: 0;
    top: 0;
    left: 0;
}

.call_to_action_container {
    aspect-ratio: 16 / 7;
    width: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.call_to_action_2 {
    aspect-ratio: 110 / 49;
    width: 70%;
    color: var(--color-1);
    border-radius: var(--border-radius);
    box-sizing: border-box;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 5.25vh auto 0 auto;
}

.call_to_action_2 h1 {
    color: var(--color-1);
    font-size: 2.3rem;
    line-height: 2.9rem;
    margin: 0;
}

.call_to_action_2 h2 {
    color: var(--color-1);
    margin: 0;
}

.call_to_action_2 p {
    color: var(--color-1);
    margin-top: 0;
}

.call_to_action_2 ul {
    display: inline-block;
    text-align: left;
}

.call_to_action_2 li {
    list-style-image: url('DagTV-wolkje-wit-30px.png');
    color: white;
}

.call_to_action_2 a {
    background: white;
    padding: 15px;
    border-radius: 100px;
    display: block;
    border: 2px solid white;
    font-size: 1.2rem;
    color: var(--color-1);
    width: 50%;
    margin: 0 auto 0 auto;
}

.call_to_action_2 a:hover {
    background: white;
    color: var(--color-1);
    border: 2px solid var(--color-1);
}

.call_to_action_2 img {
    width: 100%;
    height: auto;
}

@media (max-width:1200px) {
    .call_to_action_2 {
        width: 70%;
    }

    .call_to_action_2 h1 {
        font-size: 1.75rem;
        line-height: 2.1875rem;
    }

    .call_to_action_2 p {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .call_to_action_2 a {
        font-size: 0.9rem;
    }
}

@media (max-width:1000px) {

    .call_to_action_2 {
        width: 80%;
    }

    .call_to_action_2 h1 {
        font-size: 1.5rem;
        line-height: 1.875rem;
    }

    .call_to_action_2 p {
        font-size: 0.8rem;
        line-height: 1rem;
    }

}

@media (max-width:800px) {

    .call_to_action_2 {
        width: 100%;
    }

    .call_to_action_2 h1 {
        font-size: 1.5rem;
        line-height: 1.875rem;
    }

    .call_to_action_2 p {
        font-size: 0.8rem;
        line-height: 1.5rem;
    }

    .call_to_action_2 a {
        width: 80%;
    }

    .breadcrumb_container {
        display: none;
    }
}

.call_to_action {
    width: 630px;
    color: var(--color-1);
    border-radius: var(--border-radius);
    padding: 10px 30px 100px 30px;
    box-sizing: border-box;
    background: url('../layout/cloud-bottom.svg');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.call_to_action h2 {
    color: white;
}

.call_to_action p {
    color: white;
    margin-top: 0;
}

.call_to_action a {
    background: transparent;
    padding: 20px;
    border-radius: 100px;
    display: block;
    border: 2px solid white;
}

.call_to_action a:hover {
    background: white;
    color: var(--color-1);
}

.call_to_action img {
    width: 100%;
    height: auto;
}

.call_to_action_text {
    width: 830px;
    height: 100%;
    color: var(--color-7);
    border-radius: var(--border-radius);
    box-sizing: border-box;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    margin: 0 auto 0 auto;
    display: flex;
    align-items: center;
}

@media (min-width:320px) and (max-width:767px) {

    .call_to_action_text {
        width: 96%;
    }

    .call_to_action {
        margin: 0;
    }

    .top_slide {
        aspect-ratio: 16 / 10;
    }

    .top_slide img {
        object-fit: cover;
        min-width: 110%;
        min-height: 110%;
    }

    .call_to_action_container {
        height: auto;
        aspect-ratio: 16 / 10;
        top: 100px;
    }

    .call_to_action_2 {
        background: transparent;
        padding: 10px 0 30px 0;
        border-radius: 0;
        margin: 0;
    }
}

.top_logo_bar {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    margin-top: 0;
    padding: 5px 0 5px 0;
    text-align: center;
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    font-size: 1.5em;
    font-weight: 400;
    color: #f28943;
}

.logo_bar {
    width: 100%;
    height: 140px;
    margin: 0;
}

.logo_bar li>img {
    width: auto;
    height: 60px;
}

.logo_box {
    display: none;
}

.inputLine {
    background-color: white;
}

textarea, select {
    background-color: white;
}

.footer {
    color: white;
    clear: both;
}

.footer .screen_width {
    padding: 2.5rem 0;
    color: white;
}

.footer .screen_width:last-child {
    align-items: start;
    display: grid;
    grid-template-columns: 1fr 0.1fr repeat(4, 1fr);
    gap: 3rem;
}

.credits {
    width: 1400px;
    height: auto;
    padding: 50px 0 25px 0;
    border-bottom: 1px solid #ffffff;
    margin: 0 auto 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.1fr repeat(4, 1fr);
    gap: 3rem;
    padding: 5rem 0;
}

.footer p {
    color: white !important;
}

@media (min-width:320px) and (max-width:767px) {
    .footer .screen_width:last-child {
        grid-template-columns: 1fr;
    }
}

.simply-scroll .simply-scroll-clip {
    width: 100vw !important;
}

.simply-scroll img {
    border-radius: 0px;
    height: auto;
}

.simply-scroll .simply-scroll-list li {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.teaser_box_home {
    width: 100%;
    height: auto;
    border-radius: 5px;
    background-color: #ffffff;
    margin: 40px 0 40px 0;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    border-radius: var(--border-radius);
}

.teaser_box_home_top {
    aspect-ratio: 16 / 7;
    width: 100% !important;
    margin-bottom: 0;
}

.teaser_box_home_top img {
    aspect-ratio: 16 / 7;
    width: 100% !important;
    height: 100%;
    object-position: center;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius) var(--border-radius) 0px 0px;
}

.teaser_box_home_top iframe {
    aspect-ratio: 16 / 7;
    width: 100% !important;
}

.teaser_box_home_middle {
    width: 100%;
    min-height: 300px;
    padding: 0 25px 10px 30px;
    box-sizing: border-box;
    overflow: hidden;
}

.teaser_box_home_middle h4 {
    font-size: 1.1rem;
    line-height: 1.4rem;
}

.teaser_box_home_body {
    width: 100%;
    height: 170px;
    padding: 0 25px 25px 30px;
    box-sizing: border-box;
}

.teaser_box_home_bottom {
    width: 100%;
    height: auto;
    padding: 10px 25px 10px 30px;
    box-sizing: border-box;
    display: block;
    color: var(--color-1);
}

@media (max-width:1200px) {

    .teaser_box_home_middle {
        height: 150px;
        padding: 0 15px 10px 15px;
    }

    .teaser_box_home_middle h4 {
        line-height: 1.25rem;
    }

    .teaser_box_home_body {
        height: 220px;
        padding: 0 15px 10px 15px;
    }

    .teaser_box_home_bottom {
        padding: 10px 15px 10px 15px;
    }

}

.teaser_box_home_citation {
    width: 100%;
    height: auto;
    border-radius: 5px;
    background: rgb(255, 102, 0);
    background: linear-gradient(0deg, rgba(255, 102, 0, 0) 10%, rgba(255, 102, 0, 1) 90%);
    margin: 40px 0 40px 0;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    border-radius: var(--border-radius);
    box-sizing: border-box;
    padding: 25px;
    text-align: center;
}

.teaser_box_home_citation_top {
    width: 100%;
    height: 442px;
    margin: 0;
}

.teaser_box {
    width: 100%;
    height: auto;
    border-radius: 5px;
    background-color: #ffffff;
    margin: 40px 0 40px 0;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    border-radius: var(--border-radius);
}

.teaser_box_top {
    aspect-ratio: 16 / 7;
    width: 100% !important;
    height: auto;
    object-position: center;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius) var(--border-radius) 0px 0px;
}

.teaser_box_top img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius) var(--border-radius) 0px 0px;
}

.teaser_box_top iframe {
    aspect-ratio: 16 / 7;
    width: 100% !important;
}

.teaser_box_middle {
    width: 100%;
    height: 250px;
    padding: 0 25px 25px 30px;
    box-sizing: border-box;
}

.teaser_box_middle h4 {
    font-size: 1.1rem;
    line-height: 1.35rem;
}

.teaser_box_bottom {
    width: 100%;
    height: 60px;
    padding: 10px 25px 10px 30px;
    box-sizing: border-box;
}

@media (max-width:1200px) {
    .teaser_box_middle {
        height: 250px;
        padding: 0 15px 25px 15px;
        font-size: 0.8rem;
        line-height: 1rem;
    }

    .teaser_box_middle h3 {
        font-size: 1.1rem;
        line-height: 1.375rem;
    }
}

.person_box {
    width: 100%;
    height: auto;
    border-radius: 5px;
    background-color: #ffffff;
    margin: 20px 0 10px 0;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    border-radius: var(--border-radius);
}

.person_box_top {
    width: 100%;
    height: 250px;
    margin: 0;
}

.person_box_top img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius) var(--border-radius) 0px 0px;
}

.person_box_title {
    width: 100%;
    height: 75px;
    padding: 0 25px 25px 30px;
    box-sizing: border-box;
}

.person_box_function {
    width: 100%;
    height: 75px;
    padding: 0 25px 25px 30px;
    box-sizing: border-box;
}

.person_box_function h4 {
    font-size: 1.1rem;
    line-height: 1.35rem;
}

.person_box_bottom {
    width: 100%;
    height: 60px;
    padding: 10px 25px 10px 30px;
    box-sizing: border-box;
    text-align: right;
    font-size: 1.5rem;
}

@media (max-width:1200px) {

    .person_box_title h3 {
        font-size: 1.5rem;
        line-height: 1.875rem;
    }

    .person_box_function {
        font-size: 1rem;
        line-height: 1.25rem;
    }
}

.experience_box {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    margin: 40px 0 40px 0;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.experience_box_top {
    width: 100%;
    margin: 0;
}

.experience_box_top iframe {
    aspect-ratio: 16 / 7;
    width: 100% !important;
}

.experience_box_top img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius) var(--border-radius) 0px 0px;
}

.experience_box_middle {
    width: 100%;
    height: 200px;
    padding: 0 25px 25px 30px;
    box-sizing: border-box;
}

.experience_box_middle h4 {
    font-size: 1.25rem;
}

.experience_box_bottom {
    width: 100%;
    height: 60px;
    padding: 10px 25px 10px 30px;
    box-sizing: border-box;
}

@media (max-width:1200px) {
    .experience_box_middle {
        padding: 0 15px 25px 15px;
        font-size: 0.8rem;
        line-height: 1rem;
    }

    .experience_box_middle h4 {
        font-size: 1.1rem;
        line-height: 1.375rem;
    }

    .experience_box_bottom {
        padding: 0 15px 25px 15px;
        font-size: 1rem;
        line-height: 1.25rem;
    }

}

.news_box {
    width: 100%;
    height: auto;
    border-radius: 5px;
    background-color: #ffffff;
    margin: 15px 0 15px 0;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    border-radius: var(--border-radius);
    padding-bottom: 15px;
}

.news_box_top {
    width: 100%;
    height: 200px;
    margin: 0;
}

.news_box_top img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius) var(--border-radius) 0px 0px;
}

.news_box_middle {
    width: 100%;
    height: 160px;
    padding: 0 25px 25px 30px;
    box-sizing: border-box;
}

.news_box_title {
    width: 100%;
    height: 80px;
    padding: 0 25px 25px 30px;
    box-sizing: border-box;
}

.news_box_title h4 {
    font-size: 1.1rem;
    line-height: 1.4rem;
}

@media (max-width:1200px) {

    .news_box_title {
        width: 100%;
        height: 90px;
        padding: 0 25px 25px 30px;
        box-sizing: border-box;
    }

    .news_box_title h4 {
        font-size: 1.1rem;
        line-height: 1.4rem;
    }

}

.news_box_body {
    width: 100%;
    height: 80px;
    padding: 0 25px 25px 30px;
    box-sizing: border-box;
    font-size: 1rem;
}

.news_box_date {
    font-size: 0.85rem;
    color: var(--color-3);
    width: 100%;
    height: 40px;
    padding: 10px 25px 10px 30px;
    box-sizing: border-box;
}

.news_box_bottom {
    width: 100%;
    height: 40px;
    padding: 10px 25px 10px 30px;
    box-sizing: border-box;
}

.page_block_chevron {
    position: absolute;
    right: 0;
    font-size: 7rem;
    top: calc(50% - 7rem / 2);
}

.block {
    height: 300px;
    width: 300px;
    background-color: orange;
    margin-top: 50px;
}

.accordion {
    background-color: var(--color-7);
    color: var(--color-1);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.2rem;
    transition: 0.4s;
    display: block;
    margin-top: 7px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.active,
.accordion:hover {
    background-color: var(--color-1);
    color: var(--color-7);
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.accordion:after {
    content: '\02795';
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.citation_block {
    width: 31%;
    height: auto;
    display: block;
    background-image: url('../layout/SVG/citaat-background-plain-2.svg');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 55px 50px 0 50px;
    text-align: center;
    float: left;
    margin-right: 2%;
    font-style: italic;
    margin-bottom: 50px;
}

.citation_block_100 {
    width: 100%;
    height: auto;
    border-radius: 5px;
    background-color: transparent;
    background-image: url('../layout/SVG/citaat-background-plain-3.svg');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 15px 0 15px 0;
    border-radius: var(--border-radius);
    padding-bottom: 15px;
    text-align: center;
}

.citation_block p {
    font-size: 1.1rem;
    font-size: 1.375rem;
}

.citation_block_top {
    width: 100%;
    height: 330px;
    overflow: visible;
    padding: 55px 50px 0 50px;
    box-sizing: border-box;
}

.citation_block_bottom {
    width: 100%;
    height: 30px;
    overflow: visible;
    font-size: 0.85rem;
    color: var(--color-3) !important;
}

.quoter {
    font-size: 1rem;
    line-height: 1.5rem;
}

.quoter::before {
    content: open-quote;
    font-size: 1.5rem;
    color: var(--color-2);
    margin-right: 5px;
    font-style: normal;
}

.quoter::after {
    content: close-quote;
    font-size: 1.5rem;
    color: var(--color-2);
    margin-left: 5px;
    font-style: normal;
}

.quoter {
    quotes: "“""”""‘""’";
}

@media (max-width:1200px) {
    .citation_block_top {
        height: 350px;
        padding: 35px 10% 0 10%;
    }

    .quoter {
        font-size: 1rem;
        line-height: 1.25rem;
    }
}

.footer_width {
    width: 1400px;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    margin: 20px auto 0 auto;
    padding: 30px 0 20px 0;
}

@media (max-width:1400px) {
    .footer_width {
        width: 100%;
    }
}

.footer_block_1 {
    width: 31%;
    height: auto;
    float: left;
    box-sizing: border-box;
    margin: 0 1% 0 0;
}

.footer_block_2 {
    width: 19%;
    height: auto;
    float: left;
    box-sizing: border-box;
    margin: 0 1% 0 0;
}

.footer_block_2 h3 {
    margin-top: 0;
}

@media (max-width:1200px) {
    .footer_block_2 h3 {
        font-size: 1.5rem;
        line-height: 1.875rem;
    }
}

@media (max-width:1000px) {
    .footer_block_2 h3 {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }
}

@media (max-width:800px) {
    .footer_block_1 {
        width: 100%;
        margin: 0 0 30px 0;
    }

    .footer_block_2 {
        width: 100%;
        margin: 0 0 30px 0;
        text-align: center;
    }
}

.footer_line {
    width: 100%;
    height: 20px;
    margin: 0;
}

.mobile_hide {
    display: block;
}

@media (min-width:100px) and (max-width:800px) {
    .mobile_hide {
        display: none;
    }
}

ul#newsmessages {
    margin-left: -40px;
}

ul#newsmessages li {
    display: inline;
    margin: 0 20px 0 0;
}

.cookie_banner_overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.62);
    z-index: 10000000000000002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    backdrop-filter: blur(2px);
}

.cookie_banner {
    width: 100%;
    max-width: 760px;
    background: #ffffff;
    color: #1f2937;
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.cookie_banner_header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.cookie_banner_header h4 {
    margin: 0 0 0.75rem 0;
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 700;
}

.cookie_banner_header p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4b5563;
}

.cookie_banner_header a {
    color: var(--color-6);
    text-decoration: underline;
}

.cookie_banner_form {
    padding: 1.25rem 1.5rem 1.5rem 1.5rem;
}

.cookie_options {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
}

.cookie_option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1rem;
    border: 1px solid #dbe2ea;
    border-radius: 14px;
    background: #f9fafb;
}

.cookie_option_locked {
    background: #f3f4f6;
}

.cookie_option_text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cookie_option_text strong {
    font-size: 1rem;
    color: #111827;
}

.cookie_option_text span {
    font-size: 0.93rem;
    line-height: 1.5;
    color: #6b7280;
}

.cookie_option_toggle input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    cursor: pointer;
}

.cookie_banner_footer {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.cookie_banner_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie_btn {
    appearance: none;
    border: none;
    border-radius: 10px;
    padding: 0.8rem 1.1rem;
    font-size: 0.96rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s ease;
    border-radius: 30px;
}

.cookie_btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie_btn_primary {
    color: white;
    background-color: var(--color-6);

}

.cookie_btn_primary:hover {
    background-color: var(--color-5);
    color: var(--white);
}

.cookie_btn_secondary {
    background: #374151;
    color: #ffffff;
}

.cookie_btn_secondary:hover {
    background: #1f2937;
}

.cookie_btn_outline {
    background: #ffffff;
    color: #111827;
    border: 1px solid #cbd5e1;
}

.cookie_btn_outline:hover {
    background: #f8fafc;
}

.cookie_banner_note {
    margin: 0;
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .cookie_banner {
        border-radius: 14px;
    }

    .cookie_banner_header,
    .cookie_banner_form {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .cookie_option {
        align-items: flex-start;
    }

    .cookie_banner_buttons {
        flex-direction: column;
    }

    .cookie_btn {
        width: 100%;
    }
}