:root {

    /* COLOURS  */
    --white: #ffffff;
    --bodytext9AA0A6: #9AA0A6;
    --lightdarktext3B454F: #3B454F;
    --lightgreyborder: #DEE2E5;
    --darktext1C232B: #1C232B;
    --green55AA88: #55AA88;
    --linkblue: #f2f2f2;

    --white: #ffffff;
    --black: hsl(0, 0%, 0%);
    --lightgrey: #F2F2F2;
    --neonyellow: #EAFE03;
    --blue: #1501FC;
    --blacktext: #222222;


    /* FONT WEIGHTS */
    --light: 300; 
    --regular: 400;
    --medium500: 500;
    --medium: 600;


    /* FONT WEIGHTS */
    --regular: 400;

}

@font-face {
    font-family: "supply-mono";
    src: url("/assets/fonts/PPSupplyMono-Regular.woff") format("woff");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "aeonik";
    src: url("/assets/fonts/Aeonik-Regular.woff") format("woff");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "aeonik";
    src: url("/assets/fonts/Aeonik-Medium.woff") format("woff");
    font-weight: 500;
    font-display: swap;
}


/* RESET  */

*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}
  
html, body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "aeonik", Helvetica, sans-serif;
    font-weight: 400;
    color: var(--blacktext);
    background-color: #f2f2f2;
}



.body-home {
    background-color: var(--black);
}


img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

#root, #__next {
    isolation: isolate;
}

a {
    text-decoration: none;
}


ul {
    list-style-type: none;
}

::selection {
        background: var(--neonyellow);
        color: var(--blue);
    }





/* BLOG  */

h1, h2, h3, h4 {
    font-family: "aeonik", Helvetica, sans-serif;
    font-style: normal;
}

.blog-top-c {
    background-color: #f2f2f2;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 1.5rem;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 2rem;
}

.blog-top-c > div {
    max-width: 660px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-header a {
    color: #222;
}

.meta-wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
}
 
.entry-title {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
}

@media (min-width: 600px) {
    .entry-title {
        font-weight: 700;
        font-size: 50px;
        line-height: 54px;
    }

    .blog-top-c {
        padding-bottom: 3rem;
    }
}


.blog-post-container {
    color: #1C232B; 
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}
.blog-post-container p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
}

.blog-post-container a {
    color: #222;
    text-decoration: underline;
}

.blog-post-container h2 {
    font-size: 32px;
    line-height: 36px;
    font-weight: 700;
    margin: 50px 0 25px;
}

.blog-post-container h3 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    margin: 30px 0 14px;

}

.blog-post-container h4 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    margin: 30px 0 14px;
}

.blog-post-container img {
    margin: 10px 0;
}

.related-post-header {
    font-size: 32px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #1C232B;
}

.meta-wrap a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.icon-blog-img {
    width: 72px;
    margin-bottom: 16px;
}

.post-category {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
}

.meta-wrap-first {
    margin-bottom: 16px;
}

.main-container-blog {
    padding: 0 15px;
}


.post-navigation {
    color: #1C232B;
    font-size: 15px;
}

@media (max-width: 999px) {
    .post-navigation {
        border-top: 1px solid var(--lightgreyborder);
        border-bottom: 1px solid var(--lightgreyborder);
        max-width: 660px;
        margin: 32px auto;
        padding: 22px 15px 16px;
    }
}

.post-navigation > div div {
    font-weight: 700;
}

.post-navigation ul {
    padding-left: 0;
    margin-top: 6px;
}

.post-navigation li {
    margin-top: 0px;
    cursor: pointer;
}

@media (max-width: 999px) {
    .post-navigation li {
        color: #222;
    }

    .post-navigation li:hover,
    .post-navigation li:focus {
        color: black;
    }

    .post-navigation {
        font-size: 18px;
    }
    
}


.max-width-content-blog {
    max-width: 1160px;
    margin: 0 auto;
}

@media (min-width: 1000px) {
    
    .grid-blog {
        display: grid;
        grid-template-columns: 1fr 660px 1fr;
    }

    .post-navigation {
        padding-left: 1.5rem;
        top: 0;
        font-size: 17px;
    }

    .post-navigation li {
        padding: 4px 6px 4px 0px;
    }

    .post-navigation li:hover,
    .post-navigation li:focus {
        color: #f2f2f2;
        background-color: #222;
        padding: 0.5rem;
    }

    .post-navigation > div {
        border-right: 1px solid var(--lightgreyborder);
        width: 90%;
        padding: 1rem 0;
    }

}

@media (min-width: 1200px) {
    .post-navigation {
        padding-left: 0rem;
    }
}

@media (min-width: 1000px) {
    .post-navigation {
        position: sticky;
        top: 3rem;
        height: fit-content;
    }
}

.container-related-posts {
    max-width: 660px;
    margin: 3rem auto 6rem;
    padding: 0 15px;
}

.related-post-c > div {
    border-bottom: 1px solid var(--lightgreyborder);
    padding-bottom: 32px;
    margin-bottom: 32px;
}

.related-post-c a {
    font-size: 24px;
    line-height: 28px;
    color: #222;
    font-weight: bold;
}


.related-post-c a:hover, 
.related-post-c a:focus {
    color: black;
}
.related-post-c p {
    margin-top: 8px;
    font-size: 18px;
    line-height: 28px;
    color: var(--darktext1C232B);
}

@media (min-width: 768px) {
    .related-post-c {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 2rem;
    }

    .related-post-c a:hover {
        text-decoration: underline;
    }

}


@media (max-width: 1200px) {
    .author-meta {
        display: none;
    }
}

.author-meta {
    padding-left: 1rem;
}


.author-avatar {
    width: 85px;
    height: 85;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.author-avatar > img {
    border-radius: 50%;
}

.author-name {
    font-size: 16px;
    font-weight: bold;
    color: var(--darktext1C232B);
    margin-bottom: 4px;
}

.author-desc {
    font-size: 14px;
    color: var(--darktext1C232B);
    max-width: 192px;
}


.blog-post-container ul {
    list-style-type: disc!important; 
    font-size: 18px!important;
    padding-left: 20px;
    margin-bottom: 15px;
}

.blog-post-container li {
    margin-bottom: 3px;
}

.blog-post-container h2,
.blog-post-container h3,
.blog-post-container h4,
.blog-post-container h5 {
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: none;
}









/* EXTRA BLOG CSS */

.grid-container-blog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.main-container-blog img {
    border-radius: 6px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1), 0 0 6px 0 rgba(0, 0, 0, .1), 0 2px 2px -2px rgba(0, 0, 0, .15);
}



/* BLOG CATEGORY PAGE  */

.all-blogs-category {
    text-transform: uppercase;
    font-weight: 500;
    color: #1c232b;
    letter-spacing: 0.05em;
    font-size: 14px;
}

.all-blogs-container-header p {
    font-weight: 500;
    max-width: 400px;
}

.all-blogs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto 8rem;
    padding: 0 1rem;
    row-gap: 4rem;
}

.all-blogs-container > div:nth-child(odd) {
    border-right: 1px solid var(--lightgreyborder);
}

.all-blogs-container > div img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.all-blogs-container > div {
    padding: 2rem 4rem;
}

.all-blogs-container h2 {
    font-size: 38px;
    line-height: 42px;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.all-blogs-container h2 a {
    color: #054ada;
}
.all-blogs-container h2 a:hover {
    color: #1c232b;
}

.all-blogs-container p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #1c232b;
}

.all-blogs-info,
.all-blogs-auteur {
    display: flex;
    align-items: center;
}

.all-blogs-auteur {
    gap: 4px;
    color: #1c232b;
}

.all-blogs-info {
    gap: 14px;
}



@media (max-width: 1000px) {
    .all-blogs-container {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto 8rem;
        padding: 0 1rem;
        row-gap: 0rem;
    }

    .all-blogs-container > div:nth-child(odd) {
        border-right: none;
    }
    .all-blogs-container > div {
        border-bottom: 1px solid var(--lightgreyborder);
    }
}

@media (max-width: 768px) {
    .all-blogs-container {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 600px;
        padding: 0 1rem;
        row-gap: 0rem;
    }

    .all-blogs-container > div {
        padding: 2rem 0rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .all-blogs-container h2 {
        font-size: 32px;
        line-height: 36px;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
}











    /* HEADER  */

.logo-home {
    font-weight: var(--medium);
    letter-spacing: -0.07em;
    color: var(--lightgrey);
}

.logo {
    font-weight: var(--medium);
    letter-spacing: -0.07em;
    color: var(--blacktext);
}


.header-flex-container-home {
    display: flex;
    color: var(--lightgrey);
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
}
.header-flex-container {
    display: flex;
    color: var(--blacktext);
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;


}





.menu-header {
    font-size: 14px;

}

.nav-toggle-home {
    border: 1px solid var(--lightgrey);
}

.nav-toggle-home > div > div {
    background-color: var(--lightgrey);
}

.nav-toggle-home-square-inverse {
    background-color: var(--blacktext)!important;
}
.nav-toggle-home-square-inverse-white {
    background-color: var(--lightgrey)!important;
}

.nav-toggle-home-inverse {
    border: 1px solid var(--blacktext);
}

.nav-toggle-home-inverse-white {
    border: 1px solid var(--lightgrey);
}




.nav-toggle-black {
    border: 1px solid var(--blacktext);
}

.nav-toggle-black > div > div {
    background-color: var(--blacktext);
}




.nav-toggle {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-toggle > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4px;
}

.nav-toggle > div > div {
    width: 3px;
    height: 3px;
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 14px;
    position: absolute;
    right: 0rem;
    z-index: 500;

}

.nav-toggle {
    box-shadow: 0 0px 1 rgba(242, 242, 242, 1)
}

@media (max-width: 999px) {
    .toggle-container {
        right: 1rem;
    }
}

@media (min-width: 1000px) {
    .toggle-container {
        right: 100px;
    }
}

.header-home {
    position: relative;
}

.nav-container {
    position: fixed;
    top: 16px;
    right: 1rem;
    z-index: 1000;
    background-color: var(--lightgrey);
    padding: 1rem;
    border-radius: 10px;
    min-height: 450px;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}


.display-none {
    display: none;
}


.flex-container-time-close-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.close-toggle {
    border: 1px solid var(--blacktext);
    width: 30px;
    height: 30px;
    border-radius: 30px;
    padding-top: 1px;
    cursor: pointer;
}

.border-top-toggle, 
.border-bottom-toggle {
    width: 14px;
    height: 1px;
    background-color: var(--black);
}



.border-top-toggle {
    transform: rotate(45deg) translate(14px, 4px);
}

.border-bottom-toggle {
    transform: rotate(-45deg) translate(-3px, 13px);
}
.nav-container ul {
    padding: 0;
    margin-top: 3rem;
}


.nav-container a {
    color: var(--black);
}
.nav-container a:hover {
    opacity: 0.5;
}


.flex-container-social-link-nav {
    display: flex;
    gap: 0.5rem;
}

.flex-container-social-links-nav {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
}

@media (max-width: 350px) {
    .flex-container-social-links-nav {
        flex-direction: column;
    }
}

.arrow-icon-nav {
    transform: rotate(-45deg);
}


.nav-link {
    font-size: 2rem;
    line-height: 1.4;
}

@media (min-width: 1000px) {
    .nav-container {
        right: 100px;
        min-width: 30%;
        aspect-ratio:  1 / 1.28;
    }

    .nav-link {
        font-size: clamp(2rem, 40px, 50px);
    }
}

.header-blog {
    position: absolute;
    width: 100%;
}


.even-columns {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 1000px) {
    .even-columns {
        padding-left: 100px;
        padding-right: 100px;
    }
}





/* FOOTER  */

.relative {
    position: relative;
    height: 50px;
    overflow: hidden;
}



footer {
    background-color: var(--neonyellow);
}

.footer-cta {
    background-color: var(--black);
    color: var(--white);
    padding: 0rem 1rem 0rem 1rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    overflow-x: hidden;
    white-space: nowrap;
    position: absolute;
    top: 2px;
    left: 0;
    font-family: "supply-mono", monospace;
    font-weight: var(--regular);
    font-size: 15px;
    animation: footer-animation 30s linear infinite;
    &:hover {
        animation-play-state: paused;
      }
}


.div-footer-cta {
    font-size: 2rem;

}

@media (max-width: 650px) {
    .footer-cta {
        font-size: 12px;
        padding: 0.5rem 1rem;
    }
    .div-footer-cta {
        font-size: 1.5rem;
    }
}



.footer-cta a {
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;

}

@keyframes footer-animation {
    from {left: 0px}
    to {left: -2000px}
}

.footer-container-text {
    padding: 78px 1rem;
}

@media (min-width: 1000px) {
    .footer-container-text {
        padding: 78px 100px;
    }
    
}

.footer-diensten-container {
    font-size: 46px;
    line-height: 1.17;
    font-weight: var(--regular);
    margin-bottom: 4rem;
    min-height: 200px;
}

@media (min-width: 650px) {
    .footer-diensten-container {
        font-size: 4rem;

    }
}

.footer-contact-container {
    display: flex;
    flex-direction: column;
    font-family: "supply-mono", monospace;
    font-weight: var(--regular);
    font-size: 13px;
    margin-bottom: 100px;
}

.footer-contact-container > p {
    margin-bottom: 18px;
}

.footer-contact-container a {
    color: var(--blacktext);
}
.footer-contact-container a:hover {
    opacity: 0.6;
}

.logo-footer-container p {
    font-size: 4rem;
    font-weight: var(--medium);
    letter-spacing: -0.07em;
    text-align: center;
}

@media (max-width: 650px) {
    .logo-icon-footer {
        display: none;
    }
}

@media (min-width: 650px) {
    .logo-footer-container p {
        font-size: clamp(5vw, 115px, 10vw);
    }
    .logo-footer-container {
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 2rem;
    }
}


@media (min-width: 650px) {
    .contact-logo-flex-container {
        display: flex;
        justify-content: space-between;
        height: fit-content;
        align-items: center;
        max-height: 335px;
    }

    .footer-contact-container {
        margin-bottom: 0px;
    }
}

.dienst-desc a {
    color: var(--blue);
}

.dienst-desc {
    font-size: 16px;
}



.cta-card {
    max-width: 660px;
    margin: 3rem auto 6rem;
    text-align: center;
    background-color: var(--blue);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1), 0 0 6px 0 rgba(0, 0, 0, .1), 0 2px 2px -2px rgba(0, 0, 0, .15);
}

.cta-card a {
    color: white;
}

.cta-card img {
    margin: 0 auto;
    border-radius: 50%;
    width: 100px;
}

.cta-card span {
    display: block;
}

.cta-card-title {
    font-weight: bold;
    font-family: "aeonik", Helvetica, sans-serif;
    font-size: 32px;
    line-height: 1;
    margin-top: 1rem;

}

.cta-card-btn {
    background-color: white;
    width: 50%;
    margin: 0 auto;
    padding: 1rem 2rem;
    border-radius: 6px;
    color: var(--blacktext);
    text-transform: uppercase;
    font-family: "aeonik", Helvetica, sans-serif;
    font-weight: 400;
    margin-top: 2rem;
}

.cta-card-btn:hover {
    background-color: var(--neonyellow);
}

@media (max-width: 660px) {
    .cta-card {
        margin: 3rem 15px 6rem;
    }

    .cta-card-title {
        margin-top: 1rem;
    }


    .cta-card-btn {
        width: 100%;
    }
}