:root {

    /* COLOURS  */
    --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-face {
    font-family: "supply-mono";
    src: url("/fonts/PPSupplyMono-Regular.woff") format("woff");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "aeonik";
    src: url("/fonts/Aeonik-Regular.woff") format("woff");
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "aeonik";
    src: url("/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;
}


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);
    }


.uppercase {
    text-transform: uppercase;
}

body {
    background-color: #F6F9F9;
}

p {
    font-size: 17px;
}

@media (max-width: 768px) {
    p {
        font-size: 16px;
    }
}

.max-width-1200 {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-section {
    margin-top: 2rem;
    display: flex;
    align-items: center;
}

.hero-section > div {
    width: 50%;
}

@media (min-width: 769px) {
    .hero-section > div:first-child {
        padding-right: 3rem;
    }
}


@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        gap: 2rem;
    }
    .hero-section > div {
        width: 100%;
    }
}


.hero-section-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.hero-section-img-grid > img {
    aspect-ratio: 1 /1;
    object-fit: cover;
    border-radius: 12px;
}

.hero-section h1 {
    font-size: 3rem;
    line-height: 1;
    color: #222222;
    margin-bottom: 1.5rem;
}



@media (min-width: 768px) {
    .hero-section h1 {
        font-size: max(4.5vw, 3.5rem);
    }
}

@media (min-width: 1500px) {
    .hero-section h1 {
        font-size: 64px;
    }
}


h1, h2, h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.15;
}

@media (max-width: 768px) {
    h1, h2, h3 {
        font-size: 26px;
    }
    
}

h2 {
    margin-bottom: 2rem;
}

.hero-section-p {
    margin-bottom: 4rem;
    font-size: 18px;
    max-width: 560px
}

@media (max-width: 1000px) {
.hero-section-p {
    font-size: 16px;
}
}

.supply-mono {
    font-family: "supply-mono", monospace;
    color: #46535abd;
}

.supply-mono-17px {
    font-size: 17px;
}

.section-spacing {
    margin-top: 8rem;
    margin-bottom: 8rem;
}

.hero-section a {
    background-color: #222222;
    color: white;
    border-radius: 8px;
    padding: 1rem 1rem;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.hero-section .review-container {
    margin-top: 4rem;
    display: flex;
    align-items: center;
}

.serif {
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.review-img-container {
    display: flex;
}

.review-img-container > div {
    border-radius: 50%;
}

.review-img-container > div:nth-of-type(2) {
    transform: translateX(-24px);
}
.review-img-container > div:nth-of-type(3) {
    transform: translateX(-48px);
}

.review-img-container img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #f5f5f5;
}

.review-text-container {
    transform: translateX(-42px);
    color: #46535abd;
    font-size: 16px;
}

.review-text-container p {
    font-size: 15px;
}

.name-reviewer {
    font-weight: 400;
}
@media (max-width: 768px) {
    .review-text-container p {
        font-size: 12px;
    }
}


.review-text-container p:first-of-type {
    font-style: italic;
    font-weight: 600;
}

.section-pakket {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
.section-pakket {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0rem;
}

.section-pakket > div:last-child {
    margin-top: 2rem;
}
}

.section-pakket h2, 
.section-pakket h3 {
    color: #222222;
    font-size: 32px;
}

@media (max-width: 768px) {
    .section-pakket h2, 
    .section-pakket h3 {
        font-size: 26px;
    }
}



@media (min-width: 769px) {
    .section-pakket h2 {
        max-width: 300px;
    }
}

.section-pakket h3 {
    margin-bottom: 1rem;
}

.client-result-img-grid img {
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.client-result-img-grid div {
    overflow: hidden;
}

/* .client-result-img-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    height: 600px;
} */

/* 
.client-result-img-grid div:first-of-type {
    grid-area: 1 / 1 / 3 / 5;
}
.client-result-img-grid div:nth-of-type(2) {
    grid-area: 2 / 5 / 3 / 9;
}
.client-result-img-grid div:nth-of-type(3) {
    grid-area: 1 / 5 / 2 / 7;
}
.client-result-img-grid div:nth-of-type(4) {
    grid-area: 1 / 7 / 2 / 9;
} */

.client-result-img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 1rem;
    grid-row-gap: 4rem;
} 

@media (max-width: 768px) {
    .client-result-img-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
    grid-row-gap: 2rem;
} 
}

.section-designer {
    display: flex;
    gap: 4rem;
}

.section-designer div:first-of-type {
    width: 50%;
}

.section-designer div:first-of-type img {
    border-radius: 12px;
}
.section-designer div:nth-of-type(2) {
    width: 50%;
}

.section-designer h2 {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .section-designer {
        flex-direction: column;
        gap: 4rem;
    }

    .section-designer div:first-of-type {
        width: 100%;
        max-width: 300px;
    }

    .section-designer div:nth-of-type(2) {
        width: 100%;
    }
}

.pricing-flex {
    display: flex;
    background-color: #02363A;
    color: white;
}


.pricing-flex > div {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.pricing-flex > div:first-of-type {
    border-right: 1px solid #eef0ff;
}

.pricing-flex span {
    display: block;
}

.pricing-flex > div {
    padding: 3rem;
}

@media (max-width: 768px) {
    .pricing-flex > div {
        padding: 2rem;
    }

    .pricing-flex > div {
        width: 100%;
    }
}

.pricing-pc {
    font-size: 17px;
    font-weight: 500;
}

.pricing-price-c {
    font-size: 32px;
}

.pricing-eenmalig {
    font-size: 13px;
    color: #31e97b;
    margin-bottom: 2rem;

}

.pricing-flex p {
    font-family: "supply-mono", monospace;
    color: #ffffffbd;
    margin-bottom: 2rem;
}

.pricing-flex a {
    border: 1px solid #eef0ff;
    text-transform: uppercase;
    min-width: 100%;
    display: inline-block;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    color: white;
    margin-top: auto;
}

/* .pricing-flex a:visited,
.pricing-flex a:focus,
.pricing-flex a:active
 {
    color: white;
} */

@media (max-width: 768px) {
    .pricing-flex {
        flex-direction: column;
    }

    .pricing-flex > div:first-of-type {
        border-right: none;
        border-bottom: 1px solid #eef0ff;
    }
}

.workflow-section-grid span {
    color: #daf0ee;
    font-size: 88px;
    font-weight: 500;
    line-height: 1;
}


.workflow-section-grid h3 {
    font-size: 18px;
    margin-bottom: 0.5rem;
    margin-top: 1rem;

}

.workflow-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
}


@media (max-width: 768px) {
    .workflow-section-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 450px;
    }
}


footer {
    background-color: #02363A;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer a {
    border: 1px solid #eef0ff;
    text-transform: uppercase;
    margin-top: 3rem;
    min-width: 50%;
    display: block;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
    color: #222222;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    max-width: 620px;
    text-align: center;
}

.footer-header {
    font-size: 64px;
    font-weight: 500;
    color: white;
    line-height: 1.0;
    max-width: 500px;
    margin: 1.5rem 0;
}



.footer-p {
    font-size: 18px;
    color: #ffffffa6;
}

@media (max-width: 768px) {
    .footer-header {
        font-size: 32px;
        max-width: 300px;
    }

    .footer-p {
        font-size: 16px;
    }

    footer a {
        font-size: 14px;
    }
}

.footer-container img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
}

.huisstijl-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.header-logo {
    color: #222222;
    font-size: 1.5rem;
}


.huisstijl-nav {
    display: flex;
    list-style: none;
    gap: 1.4rem;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    color: #222222;
}

.huisstijl-nav a {
    color: #222222;
}

.huisstijl-nav a:hover,
.huisstijl-nav a:active,
.huisstijl-nav a:focus
 {
    text-decoration: underline;
    color: #222222;
}

.huisstijl-nav a:visited {
    color: #222222;
}

@media (min-width: 1000px) {
    .huisstijl-nav {
        font-size: 14px;
    }

    .header-logo {
        font-size: 2rem;
    }
}


.faq-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
    row-gap: 2rem;
}

.faq-section h2 {
    font-size: 18px;
    margin-bottom: 16px;
}

.faq-section p {
    font-size: 14px;
}


.divider {
    border: 1px solid #DEE2E4;
}

@media (max-width: 768px) {
    .faq-section-grid {
        grid-template-columns: 1fr;
    }
}
