* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, .button, button, input, select, textarea {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
}
html {
    scroll-behavior: smooth;
    font-size: 15px;
}
body {
    color: rgb(50, 50, 50);
    line-height: 1.5;
    background-color: #ffffff;
}
img {
    max-width: 100%;
    display: block;
    height: auto;
    width: 100%;
}
a {
    color: #f07f3c;
    text-underline-offset: 0.2em;
    text-decoration-color: rgba(240, 127, 60, 0.75);
    text-decoration-thickness: 1px;
    font-weight: bold;
}
.container {
    max-width: 80rem;
    margin: 0 auto;
    padding-inline: 2rem;
}
.button, button {
    background-color: #f07f3c;
    color: white;
    border: 0;
    padding: 0.65rem 2rem;
    font-weight: 600;
    border-radius: 2rem;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.15s ease-in-out;
    position: relative;
    bottom: 0;
}
.button + .button {
    margin-left: 0.5rem;
}
.button:hover, button:hover {
    transform: scale(1.1);
}
p a.button {
    margin-top: 0.5rem;
}
@media (max-width: 30rem) {
    .button, button {
        padding-inline: 1.5rem;
    }
}


.deelknoppen {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin: 0.35em 0;
}
.deelknoppen_title {
    margin: 3.5rem 0 0.75rem; 
    color: rgb(50,50,50);
}
.deelknoppen a {
    display: block;
    aspect-ratio: 1 / 1;
    width: 2rem;
    transition: transform 0.15s ease-in-out;
}
.deelknoppen a:hover {
    transform: scale(1.16);
}
.deelknoppen a img {
    display: block;
    opacity: 0.8;
}

.logo {flex-shrink: 0; margin-left: -2rem;}
.logo img {
    height: 7rem;
    width: auto;
} 
h1,h2 {
    color: rgb(4, 100, 144);
    font-family: 'Ubuntu', sans-serif;
    letter-spacing: -0.01em;
    margin-bottom: 0.25em;
}
h1 {font-size: 2.8rem; font-weight: 400; color: white; line-height: 1.1; margin-bottom: 0.4em;}
h2 {line-height: 1.2;}
h3 {font-size: 1.1rem; color: rgb(4, 100, 144); line-height: 1.2;}
h2:nth-of-type(even) {color: #f07f3c;}
h2:nth-of-type(even) + h3 {color: #f07f3c;}
body.title-color-blue h2,
body.title-color-blue h3 {
    color: rgb(4, 100, 144);
}
body.title-color-orange h2,
body.title-color-orange h3 {
    color: #f07f3c;
}
body.title-color-blue-orange h2:nth-of-type(odd),
body.title-color-blue-orange h2:nth-of-type(odd) + h3 {
    color: rgb(4, 100, 144);
}
body.title-color-blue-orange h2:nth-of-type(even),
body.title-color-blue-orange h2:nth-of-type(even) + h3 {
    color: #f07f3c;
}
body.title-color-orange-blue h2:nth-of-type(odd),
body.title-color-orange-blue h2:nth-of-type(odd) + h3 {
    color: #f07f3c;
}
body.title-color-orange-blue h2:nth-of-type(even),
body.title-color-orange-blue h2:nth-of-type(even) + h3 {
    color: rgb(4, 100, 144);
}
h2 + h3 {margin-top: -0.75em!important; margin-bottom: 1.5rem!important;}



/* FORMS */
form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 40rem;
}
form > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
form > div label {
    font-size: 0.9rem;
}
form > div > div {padding-top: 1rem;}
input, select, textarea {
    border-radius: 0.25rem;
    background: rgb(230, 236, 243);
    color: rgba(50, 50, 50, 1);
    border: 0;
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
    flex-grow: 1;
}
textarea {
    resize: vertical;
    height: 10rem;
}


/* BREADCRUMBS */

.breadcrumbs {
    list-style: none;
    display: flex;
    gap: 0.6rem;
    justify-content: center;
}
.breadcrumbs li::after {
    content: "/";
    margin-left: 0.5rem;
}
.breadcrumbs li:last-child::after {
    content: "";
}
.breadcrumbs li a {
    text-decoration: none;
    color: white;
    font-weight: normal;
}
.breadcrumbs li:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 10rem;
}


/* MAIN */

main p, main ol, main ul {
    margin-bottom: 1.5rem;
}
main ul {
    margin-left: 1rem;
}
main p:last-child, main ol:last-child, main ul:last-child {
    margin-bottom: 0;
}
main ol {
    margin-left: 1.5rem;
}
main strong {
    color: rgb(4, 100, 144);
}
main em {
    color: #f07f3c; 
    font-style: normal;
}
main em strong {
    color: #f07f3c; 
}
main h2 {
    margin-block: 3rem 0.75em;
}
main h3 {
    margin-block: 1.5rem 0.5rem;
}
main h2:first-child {margin-top: 0;}
main p:has(.inline-image) {
    padding-block: 2rem 1rem;
}
main p img.inline-image {
    border-radius: 1rem;
    overflow: hidden;
    margin-inline: -1rem;
    width: calc(100% + 2rem);
    max-width: calc(100% + 2rem);
    background: rgb(230, 236, 243);
    color: rgb(230, 236, 243);
}
body.review main h2,
body.post main h2 {
    color: rgb(4, 100, 144)!important;
}
h2:has(em) {
    color: rgb(4, 100, 144)!important;
}
body.title-color-blue p:first-child:not(:last-child) strong,
body.review main p:first-child:not(:last-child) strong,
body.post main p:first-child:not(:last-child) strong {
    color: #f07f3c; 
}
main ul.post-items {
    list-style: none;
    margin: 3rem 0 0;
}
main ul.post-items li {
    padding-block: 3rem;
    position: relative;
    display: flex;
    gap: 1.5rem 3rem;
    align-items: center;
}
main ul.post-items li:nth-child(odd)::before {
    content: "";
    display: block;
    height: 100%;
    background: rgba(230, 236, 243, 0.5);
    width: 100vw;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    top: 0;
    border-top: 1px solid rgb(230, 236, 243);
    border-bottom: 1px solid rgb(230, 236, 243);
}
main ul.post-items li > div {
    flex: 1;
}
main ul.post-items li > div img {
    border-radius: 1rem;
}

@media (max-width: 40rem) {
    main ul.post-items li {
        flex-direction: column;
    }
}



/* NAV */
nav {
    font-weight: 600;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
body.hasscrolled nav {
    transition: background-color 0.3s;
}
nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav .container > ul {display: flex;}
nav .container > ul li {list-style: none;}
nav .container > ul li ul {
    display: block;
    position: absolute;
    background-color: #f07f3c;
    padding-block: 1rem;
    margin-left: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(1.75rem);
    transition: opacity 0.3s, transform 0.3s;
    border-radius: 0.25rem;
}
nav .container > ul li:hover ul {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-0.25rem);
}
nav .container > ul li a {
    color: white;
    text-decoration: none;
    padding: 1rem;
    display: block;
    transition: color 0.3s;
    font-weight: 600;
}
nav .container > ul li:has(ul) > a::after {
    content: "›";
    font-size: 1.2rem;
    font-weight: bold;
    transform: rotate(90deg) translateX(0.15rem);
    display: inline-block;
    margin-left: 0.4rem;
    line-height: 0.8;
}
nav .container > ul li ul li a {
    padding: 0.25rem 1.5rem;
    color: white;
}
body.menuopen nav,
body.hasscrolled nav {
    background-color: #ffffff;
    box-shadow: 0rem 0rem 0.5rem rgba(0, 0, 0, 0.1);
}
body.menuopen nav ul li a,
body.hasscrolled nav ul li a {
    color: rgb(50, 50, 50);
}   
nav .container > div {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.menu-toggle {
    background: url(/img/menu-white.svg) center center / contain no-repeat;
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    cursor: pointer;
    display: none;
    padding: 0;
    margin-right: -0.25rem;
    margin-left: 0.25rem;
}
body.menuopen .menu-toggle {
    background: url(/img/close-white.svg) center center / contain no-repeat;
}
body button.menu-toggle:hover { 
    transform: none;
}
body.menuopen .menu-toggle,
body.hasscrolled .menu-toggle {
    filter: invert(1);
}
@media (max-width: 67rem) {
    .menu-toggle {display: block;}
    nav .container > ul {display: none;}
    body.menuopen nav .container > ul {
        display: flex;
        flex-direction: column;
        padding-block: 7.25rem 2rem;
        margin-inline: -2rem;
        width: calc(100% + 4rem);
        max-height: 100vh;
        overflow-y: auto;
    }
    body.menuopen nav .container > ul li ul {
        position: relative;
        opacity: 1;
        transform: none;
        background: none;
        padding: 0.25rem 0 0.75rem;
        width: calc(100% - 1rem);
    }
    body.menuopen nav .container > ul li ul li a {
        color:rgb(50, 50, 50);
        padding: 0.25rem 3rem;
    }
    body.menuopen nav .container > ul li a {
        padding: 0.45rem 3rem;
    }
    body.menuopen nav .container > div {
        position: absolute;
        right: 2rem;
        top: 2.11rem;
    }
    body.menuopen .logo {
        position: absolute;
        left: 2rem;
        top: 0;
    }

}


/* TRAINGINGS */

div.menukaart {
    padding-top: 2rem;
}
div.menukaart h2 {
    margin-block: 1em;
    color:rgb(4, 100, 144);
}
div.menukaart h3 {
    color:rgb(4, 100, 144);
    margin-bottom: 0.5em;
}
div.menukaart .columns {
    columns: 20rem;
    column-gap: 4rem;
}
div.menukaart .columns > div {
    break-inside: avoid-column;
    padding-bottom: 1rem;
}
div.menukaart .columns > div h3 {
    margin-top: 0;
}
div.menukaart ul {
    list-style: none;
    margin: 0;
    padding-bottom: 0.75rem;
}
div.menukaart ul li > * {
    display: flex;
    justify-content: space-between; 
    text-decoration: none;
    padding-block: 0.05rem;
}
div.menukaart ul a span:nth-child(1) {
    text-decoration: underline;
    text-decoration-color: rgba(240, 127, 60, 0.5);
    text-decoration-thickness: 1px;
    font-weight: 700;
}
div.menukaart ul a span:nth-child(2) {
    color: rgb(50, 50, 50);
    font-weight: normal;
}
@media (max-width: 40rem) {
    div.menukaart img {
        height: 0;
        border-top: 0.1rem solid rgba(4, 100, 144, 0.5);
    }
}



/* SECTIONS */
section {
    padding-block: 4rem;
}
section.page {
    padding-block: 4rem 5rem;
}
section.page .container {
    max-width: 62rem;
    font-size: 1.07rem;
}
section.features {
    background: rgb(230, 236, 243);
    text-align: center;
    font-size: 1.07rem;
}
section.features ul {
    max-width: 65rem;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 3rem;
    list-style: none;
}
section.features ul img {
    height: 3rem;
    display: inline-block;
    margin-bottom: 1rem;
    border-radius: 0;
}
section.features ul p {
    padding: 0!important;
}
section.features h2 {
    margin-block: -1.5rem 0.5rem;
    color: rgb(4, 100, 144);
}
section.centered {  
    background: #046490;
    color: white;
    text-align: center;
    font-size: 1.07rem;
}
section.centered h2 {color: white!important;}
section.centered + section.centered {
    background: white;
    color: inherit;
}
section.centered + section.centered h2 {
    color:rgb(4, 100, 144)!important;
}
section.centered .container {
    max-width: 62rem;
}
section.headerhome {
    background: url(/img/home-header-mobile.webp) center center / cover no-repeat;
    text-align: center;
    color: white;
    padding-top: 20rem;
    font-size: 1.7rem;
    position: relative;
}
@media (min-width: 40rem) {
    section.headerhome {
        background: url(/img/home-header.webp) center center / cover no-repeat;
    }
}
section.headerhome::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.2;
    z-index: 0;
}
section.headerhome .container {
    position: relative;
    z-index: 1;
}
section.headerhome .container img {
    max-width: 40rem;
    margin-top: 1rem;
    display: inline-block;
}
section.headerhome .container h1 {
    margin-bottom: 0.3em;
}
section.headerhome .container p {
    margin-bottom: 1rem;
}
section.footer {
    background-color: #046490;
    color: white;
}
section.footer .container {
    display: flex;
    gap: 6rem;
    justify-content: space-between;
}
section.footer .container > div p {
    margin-bottom: 1rem;
}
section.footer .container > div ul {
    list-style: none;
    padding: 0.15rem 0 0;
    margin: 0 0 1.25rem;
}
section.footer .container > div ul li {
    clear: both;
    position: relative;
}
section.footer .container > div ul li img {
    min-width: 6rem;
    width: 6rem;
    height: auto;
    border-radius: 0.35rem;
    object-fit: cover;
    aspect-ratio: 1.35;
}
section.footer .container > div ul li a {
    padding-block: 0.1rem;
    display: block;
}
section.footer .container > div:nth-child(2) ul {
    margin-left: 0.85rem;
}
section.footer .container > div:nth-child(2) ul li {
    list-style-type: '– ';
    padding-left: 0.2rem;
}
section.footer .container > div:nth-child(2) ul li a {
    text-decoration: none;
}
section.footer .container > div ul li a span {
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
}
section.footer .container > div a {
    color: white;
    font-weight: normal;
    text-decoration-color: rgba(255, 255, 255, 0.5);
}
section.footer .container > div h2,
section.footer .container > div h3 {
    color: white;
    margin: 0!important;
    padding: 0 0 0.2rem!important;
}
section.footer .container > div h2 {
    margin-bottom: 1rem!important;
}
section.footer .container > div > h3 {
    padding-top: 0.1rem!important;
}
@media (max-width: 60rem) {
    section.footer .container {
        flex-direction: column;
        gap: 4rem;
    }
    section.footer .container > div {
        width: 100%!important;
    }
}
section.afterfooter {
    background-color: #fff;
    padding-block: 2rem;
    text-align: center;
    font-size: 0.9rem;
}
section.afterfooter a {
    color:rgb(50, 50, 50);
    text-decoration: none;;
}
section.menukaart {
    background: url(/img/cta-mobile.webp) center center / cover no-repeat;
    font-size: 1.07rem;
    padding-inline: 1rem;
}
@media (min-width: 40rem) {
    section.menukaart {
        background: url(/img/cta.webp) center center / cover no-repeat;
    }
}
section.menukaart .container {
    max-width: 30rem;
    padding-block: 3.5rem;
    background: white;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3rem), calc(100% - 3rem) 100%, 0 100%);
    text-align: center;
    font-weight: bold;
}
section.menukaart .container h2 {
    color: rgb(4, 100, 144);
    margin-bottom: 1rem;
}
section.menukaart .container h2 em {
    font-style: normal;
    color: #f07f3c;
}
section.menukaart .container p {
    margin-bottom: 1.25rem;
}
section.menukaart .container .button {
    background: #046490;
}
section.posts {
    text-align: center;
    background: rgb(230, 236, 243);
    margin-top: 3rem;
}
section.reviews {
    font-size: 1.07rem;
    text-align: center;
    padding-block: 5rem;
}
section.reviews h2 {
    color: white!important;
}
section.add-review, section.reviews, section.header {
    position: relative;
    background: url(/img/header_image-mobile.webp) center center / cover no-repeat;
    color: white;
}
@media (min-width: 40rem) {
    section.add-review, section.reviews, section.header {
        background: url(/img/header_image.webp) center center / cover no-repeat;
    }
}
section.reviews::before, section.add-review::before, section.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #046490;
    opacity: 0.9;
    z-index: 0;
}
section.reviews .container, section.add-review .container, section.header .container {
    position: relative;
    z-index: 1;
}   
section.add-review {padding-block: 5rem;}
section.contactform .container,
section.add-review .container {background: none; max-width: 40rem; margin-inline: auto;}
section.add-review .container h2 {color: white!important;}
section.add-review input:not([type="submit"]), section.add-review select, section.add-review textarea {background: white;}
section.header {
    padding-top: 10rem;
    text-align: center;
    font-size: 0.9rem;
    background-position: center top;
}
section.header h1 {
    max-width: 45rem;
    margin-inline: auto;
}
body.review section.header,
body.post section.header {
    padding-top: 11rem;
}
body.review section.header h1,
body.post section.header h1 {
    padding-bottom: 0.35rem;
}

#whatsappme {
  display: block;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9;
}
#whatsappme img {
  height: 4rem;
  width: 4rem;
}

@media (max-width: 60rem) {
    section.afterfooter .container {
        text-align: left;
        padding-right: 6rem;
    }
}