/* --------------------- Kleuren --------------------- */
:root {
    --groen: #3A7FF8;
    --paars: #D34DF4;
    --blauw: #5D1EF1;
    --oranje: #F47F4D;
    --zwart: #000000;
    --wit: #FFFFFF;
    --zwart-tint1: #131313;
    --zwart-tint2: #1C1C1C;
    --zwart-tint3: #262626;
    --zwart-tint4: #2F2F2F;
    --zwart-tint5: #393939;
    --zwart-tint6: #464646;
    --zwart-tint7: #808080;
    --zwart-tint8: #B3B3B3;
    --zwart-tint9: #e6e6e6;
    --bg: #f6f5f0;
    --bg2: #F6F5F5;

    --gradient1: linear-gradient(270deg, rgb(93, 30, 241) 0%, rgb(30, 241, 198) 75%);
    --gradient2: linear-gradient(270deg, #F47F4D 0%, #D34DF4 90%);

    --margin-sections: 0px auto;
    --padding-sections: 80px 0px 80px 0px;
}

/* --------------------- Fonts --------------------- */
@font-face {
    font-family: 'Geely-bold';
    /* Naam die je zelf kiest voor het font */
    src: url('/assets/fonts/Geely-Bold.woff2') format('woff2'),
        url('/assets/fonts/Geely-Bold.woff') format('woff');
    font-style: normal;
}

body {
    font-optical-sizing: auto;
    font-style: normal;

    background-color: white;
    color: black;
}


h1 {
    font-family: "Geely-bold", Arial, Helvetica, sans-serif;
    text-transform: uppercase;

    font-size: 72px;
    margin-bottom: 24px;
}

h2 {
    font-family: "Geely-bold", Arial, Helvetica, sans-serif;
    text-transform: uppercase;

    font-size: 2rem;
    line-height: 3rem;

    font-weight: 400;
    letter-spacing: 3.2px;

    margin-bottom: 24px;
    text-transform: uppercase;
}

h3 {
    font-family: "Geely-bold", Arial, Helvetica, sans-serif;
    text-transform: uppercase;

    font-size: 28px;
    margin-bottom: 24px;

    font-weight: 400;


    
}

h4 {
    font-family: "Geely-bold", sans-serif;

    font-size: 24px;
    margin-bottom: 24px;
}

p {
    font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;

    font-size: 18px;
    line-height: 1.4em;
}

a {
    font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;

    font-size: 18px;
    line-height: 1.4em;
}

ul{
    list-style-type: none;
    padding-inline-start: 0px;
    margin-block-start: 0px;
}

li {
    font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;

    font-size: 18px;
    line-height: 1.6em;
}

.bold {
    font-size: 1.2em;
    font-weight: 600;
}

/* --------------------- Algemeen --------------------- */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* marges  */
.container {
    max-width: 1280px;
    width: 80vw;
    margin: 0 auto;
}

/* btn  */
.btn {
    padding: 7px 20px;
    border: 1px solid black;
    width: fit-content;
    text-decoration: none;
    color: black;
}

.btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.btn:hover {
    background-color: #3A7FF8;
    color: white;
    border: 1px solid #3A7FF8;
}

.btn-line {
    align-items: center;
    background: none;
    border: 1px solid white;
    border-radius: 300px;
    box-sizing: border-box;
    color: white;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    font-family: "Lynkco-Med", sans-serif;
    font-size: 1rem;
    gap: 8px;
    height: 52px;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1.188rem;
    outline: none;
    padding: 0 24px;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    margin-top: 15px;
    width: fit-content;
}

.btn-clean {
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    border-radius: 300px;
    box-sizing: border-box;
    color: var(--groen);
    cursor: pointer;
    display: flex;
    flex-direction: row;
    font-family: "Lynkco-Med", sans-serif;
    font-size: 1rem;
    justify-content: flex-start;
    letter-spacing: 0;
    line-height: 1.188rem;
    outline: none;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    margin-top: 32px;
    width: fit-content;
}

.btn-clean .button_buttonText__Lm0f5{
    margin-bottom: 4px;
}

.btn-line .icon{
    color: white !important;
}

.btn .icon{
    color: black;
}


.rounded{
    border-radius: 8px;
}

.gradient{
    background: var(--gradient1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient2{
    background: var(--gradient2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* split  */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.full {
    grid-column: span 2;
}


/* --------------------- Navigatie --------------------- */
.navbar {
    position: fixed;
    top: 30px;
}

.navbar .btn{
    margin-top: 0px;
}

.navbar .logo{
    width: 280px;
}

.navbar .container{
    position: relative;
    max-width: unset;
    width: 90vw;
    margin-left: 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.link{
    color: white;
    text-decoration: none;
    margin: 0px 10px;
}

.active{
    color: var(--groen);
}


/* --------------------- footer --------------------- */
footer{
    width: 100vw;
    background-color: var(--bg2);
}

footer .container{
    width: 90vw;
    margin-left: 5vw;
    max-width: unset;
    padding: 25px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

footer .container{
    width: 90vw;
    margin-left: 5vw;
    max-width: unset;
    padding: 25px;
}

footer .container a{
   color: white;
   text-decoration: none;
}

footer .container a:first-child{
    margin-right: 20px;
 }

/* --------------------- Policies --------------------- */
.container.policy {
    margin-top: 80px;
}

.container.policy h3 {
    margin-top: 30px;
}

.container.policy h2 {
    margin-bottom: 10px;
}

.sectie1.policy{
    margin-top: 150px;
}

.sectie1.policy ul{
    list-style-type: unset;
    padding-inline-start: 20px;
    margin-block-start: 0px;
}

/* --------------------- footer--------------------- */


/* --------------------- Laad scherm --------------------- */


/* --------------------- Fontchange scherm --------------------- */

/* --------------------- Mediaquerries --------------------- */


/* Tablet */
@media screen and (max-width: 1023px) {
    :root {
        --margin-sections: 56px auto;
        --padding-sections: 56px 0px 56px 0px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 20px;
    }


    p {
        font-size: 16px;
    }

    li {
        font-size: 16px;
    }

    .split {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .full {
        grid-column: 1;
    }
}

/* Mobile */
@media screen and (max-width: 767px) {
    :root {
        --margin-sections: 48px auto;
    }

    .hidden-mobile{
        display: none;
    }

    h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    h4 {
        font-size: 18px;
        margin-bottom: 16px;
    }


    p {
        font-size: 16px;
    }

    li {
        font-size: 16px;
    }

    .btn {
        margin-top: 24px;
    }
}