@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Secular+One:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black:wght@200;300;400;500&display=swap');

:root {

    /*==| KLEUREN PALETTE |==*/

    --main-kleur: #5865f2;
    --secundaire-kleur: #ffbb00;
    --main-donker-kleur: #5561e0;
    --secundaire-donker-kleur: #e9ab00;

    --box-shadow-kleur: #5865f259;
    --box-shadow-secundaire-kleur: #f2ce5833;

    --zwarte-kleur: rgb(0, 0, 0);
    --rood-kleur: rgb(255, 40, 40);
    --titel-kleur: #393939;
    --text-kleur: #3b3b3b;
    --text-kleur-licht: #A6A6A6;

    --section-kleur: #F2F8FE;
    --section-donker-kleur: #e8edf3;

    --body-kleur: #FBFEFD;
    --container-kleur: #FFFFFF;

    /*==| FONT STYLING |==*/

    --main-font: 'Secular One', sans-serif;
    --secundaire-font: 'Poppins', sans-serif;

    --xl-font-grootte: 2.25rem;
    --h1-font-grootte: 1.5rem;
    --h2-font-grootte: 1.25rem;
    --h3-font-grootte: 1rem;
    --normale-font-grootte: .938rem;
    --kleinere-font-grootte: .813rem;
    --kleinste-font-grootte: .75rem;

    --font-bold: 600;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-extra-bold: 800;

    /*==| HEADER |==*/

    --header-hoogte: 3.5rem;

    /*==| MARGINS |==*/

    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;
    --mb-7: 3.5rem;
    --mb-8: 4rem;
    --mb-9: 4.5rem;
    --mb-10: 5rem;
    --mb-11: 5.5rem;
    --mb-12: 6rem;

    /*==| Z-INDEXES |==*/

    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 768px) {
    :root {
        --xl-font-grootte: 4rem;
        --h1-font-grootte: 2.25rem;
        --h2-font-grootte: 1.5rem;
        --h3-font-grootte: 1.25rem;
        --normale-font-grootte: 1rem;
        --kleinere-font-grootte: .875rem;
        --kleinste-font-grootte: .813rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body,
button,
input,
textarea {
    font-family: var(--main-font);
    font-size: var(--normal-font-size);
}

body {
    margin: 0 0 0 0;
    background-color: var(--body-color);
    color: var(--text-color);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

span,
a,
p,
ul,
h1,
h2,
h3 {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a {

    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    height: auto;
}

underline {
    border-bottom: 4px solid #ffbb00;
}

.marker {
    background-color: #ffbb00;
}


bold {
    color: #ffbb00
}

header {
    margin-top: -10px;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-10px);
    }

    100% {
        transform: translatey(0px);
    }
}

@keyframes headerBackground {
    0% {
        background-image: url("../img/home/header/header.png");
    }

    20% {
        background-image: url("../img/home/header/header.png");
    }

    40% {
        background-image: url("../img/home/header/header1.png");
    }

    60% {
        background-image: url("../img/home/header/header1.png");
    }

    80% {
        background-image: url("../img/home/header/header2.png");
    }

    100% {
        background-image: url("../img/home/header/header2.png");
    }
}

.section {
    padding: 5.5rem 0 1rem;
}

.section__title,
.section__title-center {
    font-family: 'Secular One', sans-serif;
    text-transform: uppercase;
    color: var(--main-kleur);
    font-size: 2rem;
    margin-bottom: var(--mb-2);
    line-height: 140%;
}

.section__title-center {
    text-align: center;
}

.container {
    max-width: 968px;
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
}

.grid {
    display: grid;
}

.main {
    overflow: hidden;
}

.scrollUp {
    position: fixed;
    background-color: var(--main-kleur);
    right: 1rem;
    bottom: -30%;
    display: inline-flex;
    padding: .75rem;
    border-radius: 15px;
    z-index: var(--z-tooltip);
    opacity: .8;
    transition: .4s;
}

/*=============== SCROLL UP ===============*/

.scrollUp__icon {
    font-size: 1.5rem;
    color: var(--secundaire-kleur);
}

.scrollUp:hover {
    background-color: var(--main-donker-kleur);
    opacity: 1;
}

.weergeef-scroll {
    bottom: 3rem;
}

/*=============== SCROLL BAR ===============*/

body::-webkit-scrollbar{
    display: none;
  }

/*=============== BUTTONS ===============*/
.button,
.button__center {
    text-transform: uppercase;
    font-family: var(--secundaire-font);
    display: inline-block;
    background-color: var(--main-kleur);
    color: var(--container-kleur);
    padding: 1rem .75rem;
    border-radius: 35px;
    font-weight: 500;
    transition: .3s;
    box-shadow: 0 8px 24px var(--box-shadow-kleur);
    border: none;
    cursor: pointer;
}

.button,
.button__center:hover {
    transform: scale(1.050);
    background-color: var(--main-donker-kleur);
}

.button-center {
    margin: auto;
}

.button__header {
    text-transform: uppercase;
    font-family: var(--secundaire-font);
    display: inline-block;
    background-color: var(--secundaire-kleur);
    color: var(--container-kleur);
    padding: 1rem 1.25rem;
    border-radius: 35px;
    font-weight: 500;
    transition: .3s;
    box-shadow: 0 8px 24px var(--box-shadow-secundaire-kleur);
    border: none;
}

.button__header:hover {
    transform: scale(1.050);
    background-color: var(--secundaire-donker-kleur);
}

.button__404 {
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    background-color: var(--secundaire-kleur);
    color: var(--container-kleur);
    padding: .5rem .5rem;
    border-radius: 35px;
    font-weight: 500;
    transition: .3s;
    box-shadow: 0 8px 24px var(--box-shadow-secundaire-kleur);
    border: none;
}

.button__404:hover {
    transform: scale(1.050);
}

.button__icon {
    transition: .3s;
}

.button--flex {
    display: inline-flex;
    align-items: center;
    column-gap: .5rem;
}

/*==| NAVIGATIE STYLING |==*/


.nav {
    background-color: transparent;
    height: var(--header-hoogte);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__toggle,
.nav__close {
    transition: .3s;
    color: #fff;
}

.nav__close:hover {
    transition: .3s;
    color: var(--rood-kleur);
}

.nav__toggle:hover {
    color: #ffbb00;
}

.nav__toggle {
    font-size: 1.75rem;
    position: absolute;
    top: 1.5rem;
    right: 2.25rem;
    cursor: pointer;
    color: #fff;
    background-color: none;
    padding: 10px 15px 0px 15px;
    border-radius: 15px;
}

.nav__menu {
    position: fixed;
    backdrop-filter: blur(10px);
    background-color: #5865f2e0;
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    padding: 4rem 0 0 0rem;
    transition: .3s;
    z-index: var(--z-fixed);
}

.nav__close {
    font-size: 1.75rem;
    position: absolute;
    top: .75rem;
    right: 1rem;
    cursor: pointer;
}

.nav__list {
    flex-direction: row;
    font-family: var(--secundaire-font);
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;

    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 75vh;
}

.nav__link {
    color: #FFF;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 30px;
    transition: .3s;
    border-bottom: 5px solid transparent;
}

.nav__link:hover {
    color: #ffbb00;
    border-bottom: 5px solid #ffbb00;

}

.show-menu {
    right: 0;
}

body.disable-body {
    overflow-y: hidden;
}

/*==| SCROLL HEADER STYLING |==*/

.scroll-menu {
    color: #fff;
    background-color: #5865f2;
    padding: 10px 15px 0px 15px;
    border-radius: 15px;
}


/*==| FOOTER STYLING |==*/

.footer {
    padding-top: 2rem;
    height: auto;
}

.footer__bg {
    background-image: linear-gradient(#454fb383, #343a85), url("../img/home/header/header.png");
    padding: 2rem 0 3rem;
}

.footer__container {
    text-align: left;
    row-gap: 1.5rem;
}

.button__footer {
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    background-color: var(--main-kleur);
    color: var(--container-kleur);
    font-size: 12px;
    margin-top: 15px;
    padding: 0.75rem;
    border-radius: 15rem;
    font-weight: 500;
    transition: .3s;
    box-shadow: 0 8px 24px var(--box-shadow-kleur);
    border: none;
}

.button__footer:hover {
    background-color: var(--main-donker-kleur);
}

.footer__logo {
    font-weight: 600;
    font-family: 'Secular One', sans-serif;
    text-align: left;
    font-size: 30px;
    color: var(--secundaire-kleur);
    height: auto;
}

.footer__category {
    font-family: var(--secundaire-font);
    text-align: left;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: .25rem;
    color: var(--secundaire-kleur);
}

.footer__links {
    text-align: left;
    font-family: var(--secundaire-font);
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    transition: .4s;
}

.footer__link {
    margin-bottom: 10px;
    transition: .4s;
}

.footer__link:hover {
    transition: .4s;
    color: var(--secundaire-kleur);
}

.footer__social {
    font-size: 1.25rem;
    margin-right: 0.2rem;
    transition: .3s;
}

.footer__social:hover {
    transition: .3s;
    color: var(--main-kleur);
}

.footer__info {
    margin-top: 10px;
    font-family: var(--secundaire-font);
    font-size: .75rem;
    color: var(--container-kleur);
    transition: .3s;
}

.footer__info__title {
    margin-top: 10px;
    text-transform: uppercase;
    font-family: var(--main-font);
    font-size: 1.25rem;
    color: var(--container-kleur);
    margin-bottom: -15px;
    transition: .3s;
}

.footer__extra {
    font-size: .95rem;
    text-align: center;
    color: var(--container-kleur);
    font-family: var(--secundaire-font);
    transition: .4s;
    margin-top: 1.5rem;
}

.footer__hover {
    transition: .4s;
}

.footer__hover:hover {
    transition: .4s;
    color: var(--secundaire-kleur);
}

.footer__card {
    position: relative;
    background-color: #ffbb00;
    padding: 2rem .5rem 1.55rem 1.5rem;
    border-radius: 2rem;
    width: 220px;
    transition: .4s;
    overflow: hidden;
    height: 190px;
}

.footer__subtitle,
.footer__link,
.footer__social {
    color: #FFF;
}

/*==| ALERTS STYLING |==*/

.error {
    font-family: var(--secundaire-font);
    background-color: var(--rood-kleur);
    padding: 5px 10px;
    color: #FFFFFF;
    border-radius: 4px;
    margin-bottom: 20px;
    transition: .3s;
}

.error:hover {
    transform: scale(1.025);
    transition: .3s;
}

.success {
    font-family: var(--secundaire-font);
    background-color: var(--main-kleur);
    padding: 5px 10px;
    color: #FFFFFF;
    border-radius: 4px;
    margin-bottom: 20px;
    transition: .3s;
}

.success:hover {
    transform: scale(1.025);
    transition: .3s;
}


.alert {
    font-family: var(--secundaire-font);
    background-color: var(--rood-kleur);
    padding: 5px 10px;
    color: #FFFFFF;
    border-radius: 4px;
    margin-bottom: 20px;
    transition: .3s;
}

.alert:hover {
    transform: scale(1.025);
    transition: .3s;
}

.closebtn {
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
    color: var(--secundaire-kleur);
}

/*==| RESPONSIVE STYLING |==*/

@media screen and (max-width: 320px) {
    .container {
        margin-left: var(--mb-1);
        margin-right: var(--mb-1);
    }
}

@media screen and (max-width: 425px) {

    .section__title,
    .section__title-center {
        font-size: 1.50rem;
    }

}

@media screen and (min-width: 568px) {
    .footer__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__card {
        position: relative;
        background-color: #ffbb00;
        padding: 2rem .5rem 1.55rem 1.5rem;
        border-radius: 2rem;
        width: 220px;
        transition: .4s;
        overflow: hidden;
        height: 190px;
    }
}

@media screen and (min-width: 767px) {
    body {
        margin: 0;
    }

    .nav {
        height: calc(var(--header-hoogte) + 1.5rem);
        column-gap: 3rem;
    }

    .nav__list {
        flex-direction: column;
        column-gap: 3rem;
    }

    .footer__container {
        padding: 0 1rem;
    }

    .footer__container {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer__bg {
        padding: 3rem 0 3.5rem;
    }

    .footer__links {
        flex-direction: row;
        column-gap: 2rem;
    }

    .footer__socials {
        justify-self: flex-end;
    }

    .footer__copy {
        margin-top: 4.5rem;
    }

    .footer__card {
        position: relative;
        background-color: #ffbb00;
        padding: 2rem .5rem 1.55rem 1.5rem;
        border-radius: 2rem;
        width: 220px;
        transition: .4s;
        overflow: hidden;
        height: 190px;
    }
}

@media screen and (min-width: 992px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }

    .section {
        padding: 8rem 0 1rem;
    }

    .section__title,
    .section__title-center {
        font-size: 2rem;
    }

}


@media screen and (min-width: 1024px) {

    .footer__container {
        padding: 0;
    }

    .footer__card {
        left: 200px;
        position: relative;
        background-color: #ffbb00;
        padding: 2rem .5rem 1.55rem 1.5rem;
        border-radius: 2rem;
        width: 220px;
        transition: .4s;
        overflow: hidden;
        height: 190px;
    }
}

@media screen and (min-width: 1200px) {
    .scrollUp {
        right: 3rem;
    }
}