body {
    margin: 0px;
}
* {
    color: #003232;
    box-sizing: border-box;
}
#logo {
    display: block;
    height: 50px;
    transition: height 0.5s ease-in-out;
}
header {
    width: 100%;
    border-bottom: 1px solid rgb(236, 233, 223);
    position: fixed;
    z-index: 1000;
}
.logo-hamburger-div {
    padding: 0px 35px 0px 35px;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    height: 100px;
    align-items: center;
    transition: height 0.5s ease-in-out;
}
.logo-hamburger-div.shrink {
    height: 65px;
}
.logo-hamburger-div.shrink #logo {
    height: 34px;
}
#header-nav ul {
    list-style-type: none;
    padding: 0;
    font-family: 'Satoshi', sans-serif;
}
#header-contact-button {
    text-decoration: none;
    border-radius: 10px;
    height: 34px;
    width: 223px;
    border: 2.5px solid #00E267;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    background-color: #00E267;
    padding: 0px;
    margin: auto;
    transition: border-color 0.2s, background-color 0.2s;
}
#header-contact-button:hover {
    background-color: #ffffff;
    border: 2.5px solid #003232;
}
#header-contact-button p {
    display: block;
    font-family: 'Satoshi', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin: 0px;
    margin-right: 8px;
}
#header-contact-button img {
    display: block;
    margin-left: 8px;
    width: 15px;
}
@media screen and (max-width: 1100px) {
    #header-nav {
        overflow-y: hidden;
        transition: max-height 0.8s;
    }
    #header-nav.inactive {
        max-height: 0px;
    }
    #header-nav.active {
        max-height: 100vh;
    }
    header {
        display: block;
        background-color: white;
    }
    .header-spacer {
        height: 100px;
    }
    #hamburger-menu {
        display: block;
        height: 21px;
        transform: rotate(180deg);
    }
    #header-nav ul {
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }
    #header-nav ul li {
        display: block;
        width: fit-content;
        padding: 10px 0px 10px 0px;
        font-size: 18px;
    }
    #header-nav ul li:hover {
        cursor: pointer;
    }
    li .nav-dropdown-menu {
        display: block;
        transition: padding-bottom 0.5s, color 0.4s;
    }
    li .nav-dropdown-box {
        overflow-y: hidden;
        transition: max-height 0.5s, padding-bottom 0.5s;
    }
    li.inactive .nav-dropdown-box {
        padding-bottom: 0px;
        max-height: 0px;
    }
    li.active .nav-dropdown-box {
        padding-bottom: 5px;
        max-height: 70px;
    }
    li.active .nav-dropdown-menu {
        padding-bottom: 20px;
    }
    li.inactive .nav-dropdown-menu {
        padding-bottom: 0px;
    }
    .nav-dropdown-box {
        display: flex;
        flex-flow: row wrap;
        margin: 0px 35px;
        justify-content: center;
        gap: 20px 20px;
    }
    .nav-dropdown-menu::before {
        content: url(../images/Caret.svg);
        display: inline-block;
        margin-right: 30px;
        width: 12px;
        font-size: 4px;
        vertical-align: middle;
        transform: rotate(0deg);
        transition: transform 0.5s;
    }
    .nav-dropdown-menu::after {
        content: url(../images/Caret.svg);
        display: inline-block;
        margin-left: 30px;
        width: 12px;
        font-size: 4px;
        vertical-align: middle;
        transform: rotate(0deg);
        transition: transform 0.5s;
    }
    nav li.active .nav-dropdown-menu::before {
        transform: rotate(180deg);
    }
    nav li.active .nav-dropdown-menu::after {
        transform: rotate(-180deg);
    }
    #hamburger-menu:hover {
        cursor: pointer;
    }
    .hamburger-line-top, .hamburger-line-middle, .hamburger-line-bottom {
        transition: width 0.5s;
    }
    #hamburger-menu.closed .hamburger-line-top, #hamburger-menu.closed .hamburger-line-bottom {
        width: 25px;
    }
    #hamburger-menu.open .hamburger-line-top, #hamburger-menu.open .hamburger-line-bottom {
        width: 12px;
    }
    #hamburger-menu.open:hover .hamburger-line-top, #hamburger-menu.open:hover .hamburger-line-bottom {
        width: 25px;
    }
    #hamburger-menu.open:hover .hamburger-line-middle {
        width: 12px;
    }
    #hamburger-menu.closed:hover .hamburger-line-top {
        width: 8px;
    }
    #hamburger-menu.closed:hover .hamburger-line-middle {
        width: 17px;
    }
    #hamburger-menu.closed:hover .hamburger-line-bottom {
        width: 25px;
    }
    .clickable-hover-nav {
        text-decoration: none;
        transition: color 0.3s;
    }
    .clickable-hover-nav:hover {
        color: #00E267;
    }
}
@media screen and (min-width: 1100px) and (max-width: 1300px) {
    header {
        background-color: #ffffff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-flow: row;
    }
    .header-spacer {
        height: 100px;
    }
    #header-nav {
        padding-right: 35px;
    }
    #header-nav ul {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        gap: 20px 20px;
    }
    #header-nav ul li {
        font-size: 18px;
    }
    .nav-dropdown-box {
        display: none;
    }
    #hamburger-menu {
        display: none;
    }
    #header-contact-button img {
        display: none;
    }
    .nav-dropdown-menu::after {
        content: url(../images/Caret.svg);
        display: inline-block;
        margin-left: 6px;
        width: 12px;
        font-size: 4px;
        vertical-align: middle;
        transform: rotate(0deg);
        transition: transform 0.5s;
    }
    #header-nav li.nav-menu-desktop-active .nav-dropdown-menu::after {
        transform: rotate(-180deg);
    }
}
@media screen and (min-width: 1300px) {
    header {
        background-color: #ffffff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-flow: row;
    }
    .header-spacer {
        height: 100px;
    }
    #header-nav {
        padding-right: 35px;
    }
    #header-nav ul {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        gap: 20px 40px;
    }
    #header-nav ul li {
        font-size: 18px;
    }
    .nav-dropdown-box {
        display: none;
    }
    #hamburger-menu {
        display: none;
    }
    #header-contact-button img {
        display: none;
    }
    .nav-dropdown-menu::after {
        content: url(../images/Caret.svg);
        display: inline-block;
        margin-left: 10px;
        width: 12px;
        font-size: 4px;
        vertical-align: middle;
        transform: rotate(0deg);
        transition: transform 0.5s;
    }
    #header-nav li.nav-menu-desktop-active .nav-dropdown-menu::after {
        transform: rotate(-180deg);
    }
}
@media screen and (min-width: 1100px) {
    .nav-menu-desktop-active .nav-dropdown-menu {
        color: #00E267;
    }
    #header-contact-button {
        width: 134px;
    }
    .clickable-hover-nav {
        text-decoration: none;
        transition: color 0.3s;
    }
    .clickable-hover-nav:hover {
        color: #00E267;
        cursor: pointer;
    }
    .nav-menu-desktop-active .nav-dropdown-box {
        display: flex;
        flex-flow: column;
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.15);
        position: absolute;
        top: 120px;
        padding: 20px 30px;
        width: 250px;
    }
    .nav-menu-desktop-active .nav-dropdown-box a {
        padding: 8px;
        margin: 0px;
    }
    .nav-menu-desktop-active .nav-dropdown-box a::before {
        content: url(../images/Caret_Green.svg);
        display: inline-block;
        margin-right: 0px;
        width: 0px;
        font-size: 4px;
        vertical-align: middle;
        transform: translateY(-2px) rotate(-90deg);
        transition: width 0.3s, margin-right 0.3s;
    }
    .nav-menu-desktop-active .nav-dropdown-box a:hover::before {
        margin-right: 10px;
        width: 12px;
        transition: width 0.3s, margin-right 0.3s;
    }
}

/* ------------------------------- */
/*          Title Styling          */
/* ------------------------------- */
.large-title, .medium-title, .small-title, .xsmall-title {
    font-family: 'cabinet grotesk', sans-serif;
    line-height: 1.1em;
}
.text-shadow {
    box-shadow: inset 0px -0.15em white, inset 0px -0.35em #00E267;
}
@media screen and (max-width: 850px) {
    .medium-title {
        font-size: 40px;
    }
}
@media screen and (max-width: 400px) {
    .large-title {
        font-size: 45px;
        text-align: center;
    }
    .small-title {
        font-size: 24px;
    }
    .xsmall-title {
        font-size: 24px;
    }
}
@media screen and (min-width: 400px) and (max-width: 600px) {
    .large-title {
        font-size: 50px;
        text-align: center;
    }
    .small-title {
        font-size: 30px;
    }
    .xsmall-title {
        font-size: 26px;
    }
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
    .large-title {
        font-size: 70px;
        text-align: center;
    }
    .small-title {
        font-size: 30px;
    }
    .xsmall-title {
        font-size: 26px;
    }
}
@media screen and (min-width: 1100px) and (max-width: 1500px) {
    .large-title {
        font-size: 76px;
        text-align: left;
    }
}
@media screen and (min-width: 850px) and (max-width: 1100px) {
    .medium-title {
        font-size: 50px;
    }
}
@media screen and (min-width: 1100px) and (max-width: 1200px) {
    .small-title {
        font-size: 28px;
    }
    .xsmall-title {
        font-size: 30px;
    }
    .medium-title {
        font-size: 50px;
    }
}
@media screen and (min-width: 1200px) and (max-width: 1500px) {
    .small-title {
        font-size: 30px;
    }
    .xsmall-title {
        font-size: 30px;
    }
    .medium-title {
        font-size: 66px;
    }
}
@media screen and (min-width: 1500px) {
    .large-title {
        font-size: 96px;
        text-align: left;
    }
    .small-title {
        font-size: 36px;
    }
    .medium-title {
        font-size: 66px;
    }
    .xsmall-title {
        font-size: 32px;
    }
}

/* ------------------------------------------- */
/*          Doorlopende Tekst Styling          */
/* ------------------------------------------- */
main li {
    font-family: 'satoshi', sans-serif;
    line-height: 1.5em;
    list-style-type: disc;
    list-style-position: outside;
    margin-left: 3em;
}
main p + ul {
    margin-top: 0.5em;
}
main ul + p {
    margin-top: 0.5em;
}
main li + li {
    margin-top: 0.5em;
}
p {
    font-family: 'satoshi', sans-serif;
    line-height: 1.5em;
}
p + p {
    margin-top: 0.5em;
}
.thick {
    font-weight: 600;
}
@media screen and (max-width: 850px) {
    p, main li {
        font-size: 16px;
    }
}
@media screen and (min-width: 850px) and (max-width: 1100px) {
    p, main li {
        font-size: 18px;
    }
}
@media screen and (min-width: 1100px) and (max-width: 1500px) {
    p, main li {
        font-size: 18px;
    }
}
@media screen and (min-width: 1500px) {
    p, main li {
        font-size: 18px;
    }
}

/* -------------------------------- */
/*          Button Styling          */
/* -------------------------------- */
.green-button {
    text-decoration: none;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    background-color: #00E267;
    border: 2.5px solid #00E267;
    border-radius: 10px;
    transition: background-color 0.3s, border-color 0.3s;
}
 
.green-button p {
    font-weight: 500;
}
.secundary-button {
    text-decoration: none;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    border: 2.5px solid #d0d0d0;
    border-radius: 10px;
    transition: background-color 0.3s, border-color 0.3s;
}
.secundary-button p {
    font-weight: 500;
}
.green-button img, .secundary-button img {
    display: block;
    margin-left: 8px;
}
@media screen and (max-width: 600px) {
    .green-button {
        width: fit-content;
        padding: 4px 20px;
    }
    .green-button img {
        width: 13px;
    }
    .green-button:hover {
        background-color: #00e26600;
        border: 2.5px solid #003232;
    }
    .secundary-button {
        width: fit-content;
        padding: 4px 20px;
    }
    .secundary-button img {
        width: 13px;
    }
    .secundary-button:hover {
        border: 2.5px solid #003232;
    }
}
@media screen and (min-width: 600px) {
    .green-button {
        width: fit-content;
        padding: 5px 25px;
    }
    .green-button img {
        width: 15px;
    }
    .green-button:hover {
        background-color: #00e26600;
        border: 2.5px solid #003232;
    }
    .secundary-button {
        width: fit-content;
        padding: 5px 25px;
    }
    .secundary-button img {
        width: 15px;
    }
    .secundary-button:hover {
        border: 2.5px solid #003232;
    }
}
#header-contact-button:hover {
    background-color: #ffffff;
}
#header-contact-button p {
    display: block;
    font-family: 'Satoshi', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin: 0px;
    margin-right: 8px;
}
@media screen and (min-width: 1100px) {
    #header-contact-button p {
        margin-right: 0px;
    }
}
.inline-link {
    text-decoration: none;
    color: #00E267;
    transition: color 0.4s;
}
.inline-link:hover {
    color: #003232;
}

/* --------------------------------- */
/*          Section Styling          */
/* --------------------------------- */
@media screen and (max-width: 400px) {
    section {
        margin: 150px 20px;
    }
}
@media screen and (min-width: 400px) and (max-width: 600px) {
    section {
        margin: 150px 30px;
    }
}
@media screen and (min-width: 600px) and (max-width: 850px) {
    section {
        max-width: 490px;
        margin: 150px auto;
    }
}
@media screen and (min-width: 850px) and (max-width: 1100px) {
    section {
        max-width: 710px;
        margin: 150px auto;
    }
}
@media screen and (min-width: 1100px) and (max-width: 1300px) {
    section {
        max-width: 1300px;
        margin: 150px 50px;
    }
}
@media screen and (min-width: 1300px) and (max-width: 1500px) {
    section {
        max-width: 1200px;
        margin: 150px auto;
    }
}
@media screen and (min-width: 1500px) {
    section {
        max-width: 1300px;
        margin: 200px auto;
    }
}

/* ------------------------ */
/*          Footer          */
/* ------------------------ */
footer {
    background-color: #003232;
}
footer .contactinformatie, footer .voorwaarden-kolom {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
footer nav {
    color: #ffffff;
    display: flex;
    flex-flow: row;
    gap: 50px;
}
footer p, footer li {
    color: #ffffff;
}
footer .green-button p {
    color: #003232;
}
footer .green-button:hover p {
    color: #ffffff;
}
footer .green-button:hover {
    border-color: #ffffff;
}
footer nav li {
    font-family: 'satoshi', sans-serif;
}
footer .clickable-item {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}
footer .clickable-item:hover {
    color: #00E267;
    text-decoration: none;
}
footer .footer-logo {
    width: 120px;
}
footer .footer-logo img {
    width: 100%
}
footer .contactinformatie p + p, footer nav p + p, footer nav li + li, footer nav p + ul, footer .voorwaarden p + p {
    margin-top: 10px;
}
@media screen and (min-width: 850px) and (max-width: 1100px) {
    footer > div {
        max-width: 710px;
        padding: 100px 0px;
        margin: auto;
    }
    footer nav {
        display: none;
    }
    footer .footer-logo {
        margin-bottom: 20px;
    }
}
@media screen and (min-width: 1100px) and (max-width: 1300px) {
    footer > div {
        padding: 100px 0px;
        margin: 0px 50px;
    }
}
@media screen and (min-width: 1300px) and (max-width: 1500px) {
    footer > div {
        max-width: 1200px;
        padding: 100px 0px;
        margin: auto;
    }
}
@media screen and (min-width: 1500px) {
    footer > div {
        max-width: 1300px;
        padding: 100px 0px;
        margin: auto;
    }
}
@media screen and (max-width: 850px) {
    footer > div {
        color: #ffffff;
        display: flex;
        flex-flow: column;
        align-items: center;
        gap: 50px;
        padding: 50px;
    }
    footer nav li, footer nav p, footer .voorwaarden p, footer .contactinformatie p {
        font-size: 16px;
        margin: 0px;
        line-height: 1em;
    }
    footer nav {
        display: none;
    }
    footer .contact-onderdeel > p {
        display: none;
    }
    footer .contactinformatie p, footer .contactinformatie {
        text-align: center;
    }
    footer .contactinformatie {
        gap: 10px;
    }
    footer .voorwaarden-kolom {
        text-align: center;
        gap: 15px;
    }
    footer .footer-logo {
        margin: auto;
    }
}
@media screen and (min-width: 850px) {
    footer > div {
        color: #ffffff;
        display: flex;
        flex-flow: row;
        justify-content: space-between;
    }
    footer nav li, footer nav p, footer .voorwaarden p, footer .contactinformatie p {
        font-size: 18px;
        line-height: 1em;
        margin: 0px;
    }
    footer nav p {
        font-weight: 700;
    }
    footer nav li {
        margin: 0px 0px 0px 0px;
    }
    footer .contact-onderdeel > p {
        font-weight: 700;
        margin-bottom: 10px;
    }
}

::selection {
    background: #7DF1B2 !important;
    color: #003232 !important; 
}

header li:nth-child(4) {
    display: none !important;
}
footer .footer-nav-column:nth-child(3) {
    display: none !important;
}