@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "Noto sans";
}

body {
    background-color: #fee6d2;
}

h1,
h2 {
    font-family: Poppins;
}

body>section,
body>*>section {
    max-width: 1400px;
    margin: auto;
}

.socials {
    z-index: 100;
    position: relative;
    display: flex;
    padding: 10px;
    justify-content: space-between;
}

.socials>ul {
    display: flex;
    list-style-type: none;
    gap: 1rem;
    align-items: center;
}

.socials>ul>li>a {
    gap: 5px;
    font-size: 13px;
    display: flex;
    color: #051014;
    transition: 300ms;
    align-items: center;
}

.socials>ul>li>a:hover {
    transform: scale(1.05);
    color: #DE1a1a;
}

body>header>section {
    align-items: center;
    text-align: right;
    display: grid;
    grid-template-columns: 60% 40%;
}

header .topLevel {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    justify-self: center;
}

header .topLevel img {
    max-width: 250px;
}

header h1 {
    text-align: right;
}

body>header ul {
    float: right;
    list-style-type: none;
}

body>header ul>li>a {
    color: #051014;
    border: 1px solid #051014;
    margin-bottom: 1rem;
    border-radius: 10px;
    padding: 12px 24px;
    transition: 300ms ease-in-out background-color;
    text-align: right;
}

body>header ul>li>a:hover {
    background-color: #051014;
    color: #ebfdff;
}

body>header ul>li {
    margin: 3rem 0;
    width: 300px;
}

nav {
    background-color: rgb(254, 135, 31);
    padding: 0.6rem;
    z-index: 100;
    width: 100%;
}

nav b {
    font-size: 20px;
}

nav>section {
    padding: 1rem 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav img {
    max-width: 100px;
}

.navLogo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: black;
}

.navLogo header {
    font-size: 28px;
    font-family: Poppins;
    font-weight: 800;
}

.navLogo p {
    font-family: "Noto sans";
    font-size: 15px;
    margin-top: -5px;
    letter-spacing: 2px;
}

.navList>li {
    display: inline-flex;
    padding-left: 1rem;
}

.navList a {
    color: black;
    font-weight: 500;
    position: relative;
    transition: 300ms;
}

.navList {
    display: flex;
    align-items: center;
}

.navList a::after {
    content: "";
    opacity: 0;
    position: absolute;
    width: 30px;
    height: 5px;
    bottom: -12px;
    transition: 500ms;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    background-color: white;
}

.navList a:hover::after,
.navList a:hover {
    opacity: 1;
}

.planEenGesprek {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    padding: 12px 18px;
    border-radius: 15px;
    border: 2px solid #006e7a;
    background-color: #006e7a;
    transition: 500ms;
    color: white;
}

.planEenGesprek:hover {
    border: 2px solid #006e7a;
    color: #006e7a;
    background-color: transparent;
}

header>img {
    width: 100%;
    position: relative;
    display: block;
}

body>header {
    position: relative;
    background-color: rgb(252, 132, 28, 20%);
    overflow: hidden;
}

.centralHeaderText {
    position: absolute;
    height: 100vh;
    width: 100%;
    font-size: 3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
}

.centralHeaderText p {
    padding: 5rem;
    position: relative;
    border: 5px solid white;
    border-radius: 0 15px;
    background-color: rgb(255, 255, 255, 40%);
}

.centralHeaderText p::after {
    content: "";
    width: 5px;
    position: absolute;
    bottom: 100%;
    left: -5px;
    background-color: white;
    height: 200%;
}

.centralHeaderText p::before {
    content: "";
    width: 5px;
    position: absolute;
    top: 100%;
    right: -5px;
    background-color: white;
    height: 200%;
}

.centralHeaderText ul {
    position: absolute;
    display: flex;
    list-style-type: none;
    align-items: center;
    height: 100vh;
    bottom: -8.3rem;
    font-size: 1rem;
}

.centralHeaderText ul>li {
    padding-left: 1rem;
}

.centralHeaderText ul>li>a {
    font-weight: normal;
    color: #051014;
    padding: 8px 20px;
    border: white solid 1px;
    border-radius: 0 0 10px 10px;
    background-color: white;
    transition: 500ms;
}

.centralHeaderText ul>li>a:hover {
    background-color: rgb(255, 255, 255, 80%);
    color: black;
    border: 1px solid white;
}

main {
    max-width: 1400px;
    padding: 2rem 0;
    margin: auto;
}

.page {
    padding: 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    line-height: 1.5;
}

main>.page:nth-child(2n) {
    display: flex;
    flex-flow: row-reverse;
}

.page img {
    max-width: 500px;
    border-radius: 10px;
}

article>header,
article>h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #081435;
}

article a,
.callToAction {
    color: white;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background-color: #DE1a1a;
    width: max-content;
    border-radius: 15px;
    margin-top: 1rem;
    transition: 300ms;
}

section>p {
    padding-bottom: 1rem;
}

.privacyClass {
    max-width: 80%;
    left: 10%;
}

article.contact {
    padding-left: 2rem;
}

.stappenPlan {
    list-style-type: none;
    counter-reset: list-counter;
    margin-top: 1rem;
}

.stappenPlan li {
    position: relative;
    padding-bottom: 1rem;
}

.privacyClass ul {
    list-style-type: lower-roman;
}

.privacyClass li {
    padding-bottom: 0.5rem;
    font-weight: 300;
}

.stappenPlan li::before {
    content: counter(list-counter);
    counter-increment: list-counter;
    height: 25px;
    min-width: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    border: 1px solid;
    border-radius: 50%;
    aspect-ratio: 1;
    position: absolute;
    left: -2.5rem;
}

.stappenPlan li header {
    font-weight: 600;
    font-size: 18px;
}

.privacyClass p {
    font-weight: 300;
    line-height: 1.5;
    max-width: 600px;
}

.privacyClass header {
    font-size: 18px;
    font-weight: bold;
    font-family: Poppins;
}

article a:hover,
.callToAction:hover {
    background-color: #006e7a;
}

.About {
    margin: 0;
    color: white;
    padding: 5rem 0;
    background-color: #081435;
}

.About p {
    padding-bottom: 1rem;
    line-height: 1.5;
    letter-spacing: 0.2px;
    font-weight: 400;
}

.About p:last-child {
    padding-bottom: 0;
}

.About>section {
    display: grid;
    align-items: center;
    max-width: 1200px;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
}

.About article {
    padding: 2rem 3rem;
    height: max-content;
    border-radius: 15px;
    color: #051014;
    background-color: white;
}

form {
    max-width: 500px;
    display: flex;
    justify-content: space-between;
    flex-flow: column;
}

form>* {
    display: block;
}

.solutions {
    font-weight: 300;
    list-style-type: none;
}

.solutions li {
    position: relative;
    padding-bottom: 5px;
    max-width: 90%;
}

.solutions li::before {
    content: "";
    width: 7px;
    left: -1rem;
    height: 7px;
    top: 9px;
    background-color: #006e7a;
    position: absolute;
}

.noFlex {
    align-items: start;
}

form .flexBox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

form .flexBox:nth-child(3) {
    margin-bottom: 1rem;
}

form input:not(input[type="checkbox"]) {
    width: 100%;
    margin-bottom: 10px;
    padding: 0.5rem 1rem;
    border: 1px solid #ebfdff;
    border-radius: 10px;
    outline: transparent;
}

sup.req {
    color: #ffbcbc;
}

form>textarea {
    width: 100%;
    padding: 10px 1rem;
    outline: transparent;
    border-radius: 10px;
    resize: none;
}

.contactFooter>li {
    padding: 0.3rem 0;
}

.contactFooter>li:nth-child(4) {
    margin-bottom: 0.4rem;
}

button[type=submit] {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    background-color: #DE1a1a;
    color: white;
    outline: transparent;
    border: none;
    width: max-content;
}

.privacy {
    display: flex;
    padding-bottom: 0rem;
    gap: 5px;
    align-items: center;
    justify-content: left;
    margin-top: 10px;
}

.privacy label {
    width: 100%;
}

.privacy a {
    color: #a5eaf1;
}

footer {
    color: white;
    background-color: #070d22;
    padding: 5rem 5rem 1rem 5rem;
}

footer>section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

footer p {
    padding-top: 1.5rem;
    line-height: 1.5;
    font-weight: 300;
}

footer ul {
    padding-top: 1rem;
    list-style-type: none;
}

footer ul a {
    color: #ebfdff;
    transition: 500ms;
}

footer ul a:hover {
    color: #fb7a1b;
}

footer ul li {
    padding: 0.5rem 0;
}

footer header {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
}

.copyright {
    max-width: 1400px;
    margin: auto;
}

.copyright p {
    color: #f7f7f7;
}

.copyright p:last-child {
    margin-top: 1rem;
}

.copyright a {
    color: #a5eaf1;
    transition: 500ms;
}

.copyright a:hover {
    color: #fb7a1b;
}

nav a.active {
    position: relative;
}

nav>section>ul>li>a.active::after {
    content: "";
    opacity: 1;
    position: absolute;
    width: 30px;
    height: 5px;
    bottom: -12px;
    transition: 500ms;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    background-color: white;
}

.relative {
    position: relative;
}

.tarieven p {
    max-width: 60%;
    line-height: 1.5;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 2rem;
    gap: 1rem;
    padding-bottom: 4rem;
    max-width: 60%;
    text-align: center;
}

.grid article {
    border-radius: 10px;
    width: 100%;
    width: 400px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 3rem;
    border: 2px solid #070d22;
}

.grid article p {
    max-width: 100%;
    font-weight: 300;
    padding-bottom: 5px;
}

.about h1 {
    font-weight: 600;
}

.about .subTitle {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.page article p:not(.subTitle) {
    max-width: 100%;
    font-weight: 300;
    line-height: 1.6;
    padding-bottom: 12px;
}

.mobileMenu {
    background: transparent;
    cursor: pointer;
    outline: transparent;
    border: none;
    display: none;
    align-items: center;
    margin-left: 2rem;
}

.grid article b {
    font-size: 18px;
    color: #006e7a;
    text-align: center;
}

#mobileMenuSelector:checked~.mobileList {
    display: block;
}

ul.mobileList>li>a::after {
    display: none;
}

#mobileMenuSelector {
    display: none;
}

.mobileList>.mobileMenu {
    clear: both;
    float: left;
}

.mobileList li {
    display: none;
    padding: 1rem;
    border-bottom: 1px solid #cecece;
}

.mobileList>li:not(:first-child):hover {
    border-left: 3px solid #fb7a1b;
}

.mobileList>li>label {
    margin: 0;
}

.mobileList>li.active {
    border-left: 3px solid #fb7a1b;
}

.mobileList {
    top: 0;
    right: 0;
    width: 250px;
    display: none;
    position: absolute;
    list-style-type: none;
    z-index: 100;
    height: 100%;
    background-color: rgb(233, 233, 233)
}

p.BerichtIsVerstuurd {
    margin-top: 1rem;
    border-left: 2px solid;
    display: flex;
    padding: 5px 10px;
    align-items: center;
}

p.BerichtIsVerstuurd.succes {
    color: #00ff37;
}

p.BerichtIsVerstuurd.error {
    color: #ff0000;
}

.mobileList li a {
    color: #051014;
}

@media screen and (max-width: 1400px) {
    .tarieven {
        max-width: 100%;
        padding: 1rem 3rem;
    }
    body>header>section {
        padding: 0 2rem;
    }
}

@media screen and (max-width: 1300px) {
    .About>section {
        max-width: 100%;
        padding: 1rem 3rem;
    }
}

@media screen and (max-width: 1100px) {
    body,
    footer,
    .About,
    .socials {
        max-width: 100%;
        overflow-x: hidden;
    }
    .page,
    body>header {
        max-width: 100%;
        padding: 1rem 3rem;
    }
    footer>section {
        grid-template-columns: repeat(4, calc((1100px - 20rem) / 4));
    }
    footer ul {
        max-width: 100%;
        overflow: hidden;
    }
    .mobileMenu {
        display: flex;
    }
    nav>section>ul>li:nth-child(-n+1) {
        display: none;
    }
    nav>section>ul>ul>li {
        display: block;
    }
    .mobileList li:nth-child(-n+2) {
        display: block;
    }
    .solutions {
        display: block;
    }
    .solutions>li:nth-child(2n) {
        text-align: left;
    }
    .solutions>li:nth-child(2n)::before {
        left: -1rem;
    }
}

@media screen and (max-width: 1000px) {
    .page img {
        max-width: 400px;
    }
    .About>section {
        max-width: 700px;
        display: flex;
        flex-flow: column-reverse;
    }
    footer>section {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    footer ul {
        max-width: 100%;
        overflow: hidden;
    }
    nav>section>ul>li:nth-child(-n+2) {
        display: none;
    }
    .mobileList li:nth-child(-n+3) {
        display: block;
    }
}

@media screen and (max-width: 900px) {
    .grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    nav>section>ul>li:nth-child(-n+3) {
        display: none;
    }
    nav>section>ul>ul>li:nth-last-child(-n+3) {
        display: none;
    }
    .mobileList li:nth-child(-n+4) {
        display: block;
    }
}

@media screen and (max-width: 800px) {
    .page img {
        max-width: 300px;
    }
    footer>section {
        grid-template-columns: repeat(2, 300px);
        gap: 2rem;
    }
    footer ul {
        max-width: 100%;
        overflow: hidden;
    }
    header .topLevel img {
        max-width: 200px;
    }
}

@media screen and (max-width: 700px) {
    .About>section {
        padding: 1rem 4rem;
        display: flex;
        flex-flow: column-reverse;
    }
    footer {
        padding: 3rem 1rem;
    }
    nav>section>ul>li:nth-child(-n+4) {
        display: none;
    }
    .mobileList li:nth-child(-n+5) {
        display: block;
    }
    .page,
    body>header {
        display: flex;
    }
}

@media screen and (max-width: 650px) {
    .page,
    main>.page:nth-child(2n) {
        display: block;
        max-width: 80%;
        position: relative;
    }
    .page img {
        max-width: 100%;
    }
    footer>section {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
    nav>section>ul>li:nth-child(-n+5) {
        display: none;
    }
    .mobileList li:nth-child(-n+6) {
        display: block;
    }
    body>header>section {
        display: block;
    }
    header .topLevel {
        padding: 0;
    }
    body>header ul {
        display: flex;
        margin-top: 1rem;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    header h1 {
        text-align: center;
    }
    body>header ul>li {
        margin: 0;
        margin-bottom: 1rem;
    }
    .page,
    body>header {
        padding: 1rem;
    }
    body>header ul>li {
        width: max-content;
    }
    body>header ul>li>a {
        font-size: 15px;
        padding: 7px;
    }
}

@media screen and (max-width: 500px) {
    .page,
    main>.page:nth-child(2n) {
        display: block;
        max-width: 100%;
        position: relative;
    }
    .page img {
        max-width: 100%;
    }
    .socials>ul {
        display: grid;
        gap: 5px;
    }
    .socials>ul:nth-child(2) {
        display: flex;
    }
    .About>section {
        padding: 1rem 2rem;
    }
    footer a {
        font-size: 15px;
    }
    .grid article {
        padding: 1rem 2rem;
        width: max-content;
    }
    .tarieven p {
        max-width: 90%;
    }
    nav b {
        font-size: 17px;
    }
}

@media screen and (max-width: 430px) {
    form .flexBox {
        grid-template-columns: 1fr;
    }
    .About>section {
        padding: 1rem;
    }
    .About article {
        padding: 1.5rem;
    }
    .grid article {
        padding: 1rem;
    }
    nav>section>ul>li:nth-child(-n+6) {
        display: none;
    }
    .mobileList li:nth-child(-n+7) {
        display: block;
    }
}

@media screen and (max-width: 350px) {
    .socials>ul:nth-child(2) {
        align-items: end;
    }
    .About p {
        gap: 10px;
    }
    .socials>ul>li>a {
        font-size: 10px;
    }
    .About>section {
        padding: 10px;
    }
    form {
        padding: 1rem;
    }
    .grid article header {
        font-size: 20px;
    }
    nav>section {
        padding: 0;
    }
}