/*
Theme Name: Chiel Zwarts
Theme URI: https://chielzwartsv2.test
Author: Hong Zhou
Description: Starter theme for chielzwarts
Version: 0.0.1
*/
:root {
    /* fonts families */
    --fm-gotham-bold: 'Gotham-Bold';
    --fm-gotham-book: 'Gotham-book';
    --fm-gotham-book-italic: 'Gotham-book-italic';
    --fm-gotham-med: 'Gotham-medium';
    --fm-gotham-med-italic: 'Gotham-medium-italic';
    --fm-mirage-black: 'Made-mirage-black';
    --fm-mirage-bold: 'Made-mirage-bold';

    /* White space */
    --padding-header: 2.2rem;
    --padding-container-text: 3.75rem;

    /* Colors */
    --primary-black: #000;
    --primary-white: #fff;
    --primary-green: #424d43;
    --primary-brown: #847b6d;

    /* Font sizes */
    --fs-logo: 2.5rem;
    --fs-nav-link: 1rem;
}

/* Universal declaration */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f5f5f5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fonts declaration */
.h2__title {
    font-family: var(--fm-mirage-bold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.h2__title--afspraak {
    font-size: 2rem;
    margin-bottom: 0;
}

.p__text {
    font-family: var(--fm-gotham-book);
    font-size: 1rem;
    line-height: 150%;
}

.p__italic {
    font-family: var(--fm-gotham-book-italic);
}

.p__text--smaller {
    font-size: 0.875rem;
}

.p__text--smaller strong {
    font-family: var(--fm-mirage-bold);
    font-size: 18px;
    margin-bottom: 7px;
    display: inline-block;
}

.p__text--bold {
    font-family: var(--fm-gotham-med);
}

.p__text--margin-top {
    margin-top: 1rem;
}

.h3__title {
    font-family: var(--fm-gotham-med);
    font-size: 1.5rem;
    line-height: 125%;
    margin-bottom: 2rem;
}

.h3__title--mirage {
    font-family: var(--fm-mirage-bold);
    margin-bottom: 1rem;
}

/*************************/
/******  NAVIGATION  *****/
/*************************/

.nav__container {
    position: fixed;
    width: 100vw;
    top: 0;
    left: 0;
    padding: 1em var(--padding-normal);
    z-index: 30;
    transition: 0.3s ease;

    display: grid;
    grid: auto-flow/ 1fr 1fr;

    justify-content: space-between;
    padding: 2.2rem 4rem;
    grid-gap: 1rem;
    background-color: var(--primary-white);
}

.nav__link-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: end;
    gap: 4.5rem;
}

.nav__logo {
    color: var(--primary-black);
    text-decoration: none;

    font-family: var(--fm-mirage-black);
    font-size: var(--fs-logo);
}

.nav__link {
    list-style-type: none;
    justify-self: end;

    font-family: var(--fm-gotham-book);
    font-size: var(--fs-nav-link);
}

.nav__link a {
    text-decoration: none;
    color: var(--primary-black);
    cursor: pointer;
    position: relative;
    z-index: 10;
    padding: 1rem 0.3rem;
    line-height: 237%;
    white-space: nowrap;
}

.nav__link--cta {
    padding: 9px 6px 0px 5px;
    border-radius: 3px;
    border: 3px solid #344184;
}

.toon-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 4rem;
}

#menu-afspraak {
    position: relative;
    top: -4px;
}
/*************************/
/******** HEADER *********/
/*************************/

.header__container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*min-height: 100vh;*/
    padding: 15vh var(--padding-header) 0;
}

.header__content-container {
    display: flex;
    flex-direction: row;

    width: 100%;
    max-width: 100%;
    min-height: 90vh;

    border-radius: 5px;
    background: #424d43;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);

    overflow: hidden;
}

.header__content-container--blog {
    min-height: auto;
    height: 500px;
}

.green__block {
    background: var(--primary-green);
    width: 100%;
}

.green__block--blog {
    width: 25%;
}

.header__image {
    text-align: right;
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
}

.header__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: calc(50% + 10vw);
}

.header__image--flip-horizontal img {
    transform: scaleX(-1);
    object-position: 0%;
}

.header__image--afspraak img {
    transform: scale(1.2);
    object-position: 40% 14%;
}

.header-dots__container {
    position: absolute;

    padding: var(--padding-container-text);

    height: 100%;
    width: 100%;

    background-image: url(./assets/img/dots.svg);
    background-repeat: no-repeat;
    background-position: calc(11% - 3vw) calc(19% + 37vh);
}

.header-dots__container--blog-middle {
    background-position: calc(17.5% + 1vw) 62%;
    background-size: calc(10% + 10vw);
}

.header-text__container {
    position: relative;
    top: 40%;
    left: 34%;
    transform: translate(-50%, -50%);

    min-width: fit-content;
    width: 100%;
    max-width: 53vw;
    max-height: 100%;
    height: auto;

    display: grid;
    grid: auto-flow/ 1fr;
    gap: 1.5rem;

    background-color: var(--primary-white);
    padding: var(--padding-container-text);
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
}

.header-text__container--blog {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: flex-start;
}

.header__h1 {
    text-align: center;
    justify-self: center;
    max-width: 50vw;

    font-family: var(--fm-mirage-black);
    font-size: 3.5rem;
    line-height: 100%;
    letter-spacing: -0.02rem;
}

.header__h1--blog {
    font-size: 2.5rem;
    font-family: var(--fm-mirage-bold);
    max-width: 55vw;
    text-align: left;
}

.header__p {
    text-align: center;
    font-family: var(--fm-gotham-book);
    max-width: 42vw;
    line-height: 1.75rem;
    font-size: 1.125rem;
    justify-self: center;
    margin-top: 0.5rem;
}

.header__p--blog {
    font-family: var(--fm-gotham-book-italic);
    font-size: 1.125rem;
    text-align: left;
    max-width: 50vw;
    justify-self: baseline;
}

.header__links-container {
    display: flex;
    flex-direction: row;

    margin-top: 2rem;

    justify-content: center;
    gap: 2rem;
}

.header__link-line {
    width: 100%;
    height: 3px;
    background-color: #344184;
    border-radius: 2px;

    margin-top: 0.5rem;
}

.header__link {
    list-style-type: none;
}

.header__link a {
    font-family: var(--fm-gotham-med);
    color: var(--primary-black);
    text-decoration: none;
    padding: 1rem 0.5rem;
}

/*************************/
/********  MAIN  *********/
/*************************/

/****** First Section ******/
/* Text and image Carousel */

.container__text-and-carousel {
    align-items: center;
    padding: 5.45rem 5vw;
    display: flex;
    width: 100%;
    justify-content: center;
}

.container__over-chiel {
    padding: var(--padding-container-text);
    display: grid;
    grid-template-rows: repeat(4, auto); /* 3 rows, each 100px tall */
    grid-template-columns: repeat(2, 1fr); /* 3 columns, equal width */
    gap: 10px; /* Gap between grid items */
    max-width: 1400px;
}

.container__over-chiel section:first-of-type {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: 3;
}

.container__mission {
    margin-top: 5rem;
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 3;
    grid-row-end: 5;
}

.mission__ul {
    display: flex;
    flex-direction: column;

    margin-top: 1rem;
}

.mission__li {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.mission__p {
    position: relative;
    font-family: var(--fm-gotham-med);
    font-size: 1.125rem;
    line-height: 110%;
    top: 6px;
}

/* Image Carousel */
.container__carousel {
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 5;
    position: relative;
    padding: 1rem;
    background-image: url(./assets/img/dots.svg);
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: 95% calc(5% + 2%);
}

.slider__img-carousel {
    position: relative;
    overflow: hidden;
    min-width: 100%;
    height: 100%;

    margin-top: 3rem;
    padding-right: 3rem;

    display: inline-block;
}

.slide {
    position: absolute;
    top: 0;
    width: 95%;
    height: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 1s;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dots {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
}

.dots__dot {
    border: none;
    background-color: #b9b9b9;
    opacity: 0.7;
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 50%;
    margin-right: 0.6rem;
    cursor: pointer;
    transition: all 0.5s;
}

.dots__dot--active {
    background-color: #141414;
    opacity: 1;
}

/****** Second Section ******/
.container__expertise-section {
    background-color: var(--primary-brown);
    padding: 6rem;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* expertise header */
.expertise-section__header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10vw;
    max-width: 1400px;
    place-self: center;
}

.expertise-section__header--img figure {
    min-width: 33vw;
    background-image: url(./assets/img/dots_reverse.svg);
    background-repeat: repeat-x;
    background-size: 43%;
    background-position: 50% 0%;
}

.expertise-section__header--img figure img {
    border-radius: 50%;
    max-width: 85%;
    height: auto;
    max-height: 328px;
    display: block;
    margin: 0 auto;
}

.expertise-section__header--text {
    color: var(--primary-white);
}

.subtitle__p {
    font-family: var(--fm-gotham-book);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.h2__expertise-section {
    font-size: 3rem;
    max-width: 29vw;
    font-family: var(--fm-mirage-black);
    line-height: 100%;
}

/* expertise section skills */
.expertise-section__skills {
    background-color: var(--primary-white);
    display: flex;
    flex-direction: row;
    margin: 5rem 2rem 0 2rem;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.15);
    max-width: 1500px;
    place-self: center;
}

.expertise-section__skills ul {
    padding-left: 1em;
    list-style: disc;
}

/* .expertise-section__skills li {
    list-style: disc;
} */

.container__skill {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.container__skill img {
    height: 30px;
    width: 30px;
}

.container__skill svg {
    margin-bottom: 0.3rem;
}

.a__lees-meer {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-black);
}

.a__lees-meer p {
    position: relative;
    top: 8.8px;
    font-family: var(--fm-gotham-med);
    font-size: 0.875rem;
}

/****** Third Section ******/
.container__news-carousel {
    position: relative;

    padding: 7.875rem 8.875rem 6rem;
}

.h2__title--news {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.slider__news-carousel {
    position: relative;
    height: 100%;
    min-height: 35rem;
    margin-right: 0.5rem;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.slider__news-carousel-item {
    position: absolute;
    padding: 0 0.5rem;
    top: 0;
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: ease-in 0.3s;
    width: 26vw;
}

.news-carousel-figure {
    min-width: 100%;
    height: calc(158px + 5vw);
    position: relative;
    display: inline-block;
}

.image-wrapper {
    width: 100%; /* Ensure the image takes up the full width of the container */
    height: 100%; /* Ensure the image takes up the full height of the container */
    display: flex; /* Use flexbox to center the image within the container */
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Hide any image overflow beyond the container */
}

.news-carousel-figure img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}

.green-beam {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px; /* Adjust the height of the green beam as needed */
    background-color: var(--primary-green);
}

.h3__news-carousel {
    margin: 1.5rem 0 0.8rem;
    line-height: 100%;
    font-family: var(--fm-gotham-med);
}

.a__lees-meer--top-margin {
    margin-top: 1rem;
}

.dots--news {
    margin-top: 1.8rem;
}

/*************************/
/********  Blog  *********/
/*************************/
.blog__container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
    padding: 7.5rem;
}

/*Blog devider */
.blog__devider {
    min-height: 100%;
    width: 1px;
    background-color: #424d43;
    border-radius: 50%;
}

/* blog information */

.blog__information ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.blog__information ul li {
    list-style-type: none;
    display: flex;
    flex-direction: row;
}

.blog__information ul li p:first-of-type {
    margin-right: 0.5rem;
}

.p__text--blog-bold {
    font-family: var(--fm-mirage-bold);
    line-height: 100%;
}

.p__text--blog {
    line-height: 170%;
}

.blog__line {
    width: 100%;
    height: 4px;
    background-color: #424d43;
    border-radius: 2px;
}

.blog__content {
    max-width: 40vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

/* blog First section */
.blog__first-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 85%;
}

.blog__first-section h2 {
    font-family: var(--fm-mirage-bold);
    font-size: 2rem;
}

.blog__first-section p {
    font-family: var(--fm-gotham-book);
    font-size: 1rem;
    line-height: 170%;
}

.blog__first-section p em {
    font-family: var(--fm-gotham-book-italic);
    font-size: 1rem;
    line-height: 170%;
}

.blog__first-section p.wp-caption-text {
    font-family: var(--fm-gotham-book-italic);
    font-size: 0.9rem;
    line-height: 170%;
    margin-top: 0.5rem;
}

.blog__first-section h3 {
    font-size: 1.5rem;
    font-family: var(--fm-gotham-book);
    line-height: 150%;
}

.blog__first-section div {
    max-width: fit-content;
    padding: 1.5rem;
    min-width: 100%;
    background-image: url(./assets/img/dots.svg);
    background-repeat: no-repeat;
}

.blog__first-section div img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}

.blog__first-section blockquote {
    border: 4px solid #847b6d;
    padding: 2rem 1.7rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: 0.5rem;
}

.blog__first-section blockquote > p {
    font-family: var(--fm-mirage-bold);
    font-size: 1.125rem;
    line-height: 140%;
}

.blog__first-section blockquote p:nth-of-type(2) {
    font-family: var(--fm-gotham-book);
    font-size: 1rem;
    font-style: normal;
}

.blog__first-section block .blog__h2 {
    font-family: var(--fm-mirage-bold);
    font-size: 2rem;
}

.blog__p--italic {
    font-family: var(--fm-gotham-book-italic);
    font-size: 1rem;
    line-height: 170%;
}

/* blog image wrapper */

.blog__container-dots {
    min-height: 100%;
    min-width: 100%;

    background-image: url(../img/dots.svg);
    background-repeat: no-repeat;
}

.blog__image-wrapper {
    margin: 0 auto;
    padding: 1.5rem;
}

.blog__image-wrapper img {
    object-fit: cover;

    width: 100%;
    height: 100%;
    display: block;
}

.blog__image-wrapper figcaption {
    font-family: var(--fm-gotham-book-italic);
    font-size: 0.9rem;
    line-height: 170%;
    margin-top: 0.5rem;
}

/* blog container text */
.blog__container-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 87%;
}

.blog__h3--subtitle {
    font-size: 1.5rem;
    font-family: var(--fm-gotham-book);
    line-height: 150%;
}

.blog__text {
    font-family: var(--fm-gotham-book);
    font-size: 1rem;
    line-height: 170%;
}

.blog__quote {
    border: 4px solid #847b6d;
    padding: 2rem 1.7rem;
}

.blog__quote blockquote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.blog__quote p {
    font-family: var(--fm-mirage-bold);
    font-size: 1.125rem;
    line-height: 140%;
}

.blog__quote footer {
    margin-top: 0.5rem;
}

.blog__quote footer cite {
    font-family: var(--fm-gotham-book);
    font-size: 1rem;
    font-style: normal;
}

/*************************/
/******* Afspraak ********/
/*************************/
.afspraak__container {
    padding: 8.75rem 0;
    max-width: 33.75rem;
    margin: 0 auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input__container {
    display: flex;
    flex-direction: column;
}

.form__container-1 {
    display: flex;
    flex-wrap: nowrap;
}

.form-container-1 input[type='text'] {
    flex: 1;
    box-sizing: border-box;
}

.form__group {
    margin: 1rem 0 auto;
    flex: 1;
}

.form-control {
    display: block;
    width: 100%;
    color: #495057;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    background: #fff;
    background-clip: padding-box;
}

.form__group:first-of-type {
    margin-right: 1rem;
}

label {
    align-items: center;
    font-family: var(--fm-gotham-med);
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

.afspraak__contact-information-container {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

textarea {
    height: 12vh;
}

input::placeholder,
textarea::placeholder {
    color: #141414;
    opacity: 0.5;
}

.form__submit {
    margin: 0 auto;
    margin-top: 1.5rem;
}

.submit {
    border-radius: 10px;
    border: 3px solid #344184;
    background-color: rgba(255, 255, 255);
    padding: 0.9rem 1rem 0.2rem;
    font-family: var(--fm-gotham-med-italic);
    line-height: 120%;
    cursor: pointer;
    font-size: 1.2rem;
}

/************************/
/******* SLIDER *********/
/************************/
.slider {
    max-width: 100rem;
    height: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.slide {
    position: absolute;
    top: 0;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.15);
    border-radius: 1%;

    /* THIS creates the animation! */
    transition: transform 1s;
}

.slide > img {
    /* Only for images that have different size than slide */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider__btn {
    position: absolute;
    top: 50%;
    z-index: 10;

    border: none;
    background: rgba(255, 255, 255, 0.7);
    font-family: inherit;
    color: #333;
    border-radius: 50%;
    height: 5.5rem;
    width: 5.5rem;
    font-size: 3.25rem;
    cursor: pointer;
}

.slider__btn--left {
    left: 6%;
    transform: translate(-50%, -50%);
}

.slider__btn--right {
    right: 6%;
    transform: translate(50%, -50%);
}

/* TESTIMONIALS */
.slider__content {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.dots--news {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
}

.dots__dot--news {
    border: none;
    background-color: #b9b9b9;
    opacity: 0.7;
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 50%;
    margin-right: 0.6rem;
    cursor: pointer;
    transition: all 0.5s;
}

.dots__dot--active--news {
    background-color: #141414;
    opacity: 1;
}

/*************************/
/******** Footer *********/
/*************************/
.footer__container {
    background-color: var(--primary-green);
    color: var(--primary-white);
    display: grid;
    grid: auto-flow/ 1fr 1fr;

    padding: 3.5rem 8.75rem 2rem;
}

#footer-headings {
    font-size: 0.5rem;
}

.contact__information ul {
    margin: 0.575rem 0 0;
}

.footer-contact a {
    color: var(--primary-white);
    text-decoration: none;
    display: inline-block;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.contact__information a svg {
    height: 1rem;
}

.social-media__icon--twitter {
    height: 0.8rem;
}

.social-media__container {
    display: flex;
    flex-direction: row;
    gap: 0.7rem;
}

.contact__information li {
    list-style-type: none;
    font-size: 0.875rem;
    font-family: var(--fm-gotham-book);
    line-height: 170%;
}

.h2__title--footer {
    font-size: 2.3rem;
    letter-spacing: 0.15rem;
}

.footer__container-blog {
    display: grid;
    grid: auto-flow/ 2fr 1fr;
    position: relative;
    /* top: 10%; */
}

.footer__container-blog--extra-wrapper {
    justify-self: start;
    position: relative;
}

.footer__title {
    font-size: 1.125rem;
    font-family: var(--fm-gotham-med);
    margin-bottom: 1.4375rem;
}

.link__wrapper {
    display: flex;
    flex-direction: row;
    gap: 5rem;
}

.site-footer .page_item:hover a {
    text-decoration: underline;
}

.footer__container-blog ul {
    columns: 2;
    gap: 0 20px;
}

#sub-footer-menu {
    /* display: flex; */
    /* flex-direction: column; */
    columns: 2;
}

.footer__container-blog ul li {
    list-style-type: none;
    font-family: var(--fm-gotham-book);
    font-size: 0.875rem;
    line-height: 171%;
}

.footer__container-blog ul li a {
    text-decoration: none;
    color: var(--primary-white);
    padding: 0.7rem 0;
}

/************* SOCIAL MEDIA ICONS ******************/
.blog__information ul ul {
    display: flex;
    flex-direction: row;
}

.fb-share__button--post,
.whatsapp-share__button--post {
    width: 21px;
    height: 21px;
}

.twitter-share__button--post {
    width: 25px;
    height: 25px;
}

.fb-share__button--post svg path,
.twitter-share__button--post svg path,
.whatsapp-share__button--post svg path {
    fill: var(--primary-brown);
}

.social_media__share-buttons {
    gap: 0.2rem;
}

/**************************************************************************/
/******** Schermen kleiner dan 62rem (op basis van 16px) **********/
/*************************************************************************/
@media (max-width: 62rem) {
    body {
        background-color: #f5f5f5;
        padding-top: 0;
    }

    main,
    footer {
        overflow: hidden;
    }

    /* FONTS */
    .h2__title {
        font-size: 1.5rem;
        font-family: var(--fm-mirage-black);
        margin: 0;
    }

    .h3__title {
        font-size: 1.225rem;
        margin-bottom: 1rem;
    }

    .p__text {
        font-size: 0.75rem;
    }

    .mission__p {
        font-size: 0.875rem;
    }

    .subtitle__p {
        font-size: 0.75rem;
    }

    /*********************/
    /**** NAVIGATION *****/
    /*********************/
    .nav__container {
        padding: 1.5rem;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        /* display: grid;
      grid: auto-flow/ 1fr 2fr; */
        box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.1);
    }

    .nav__link-container {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        /* grid-template-columns: repeat(2, auto); */
        justify-content: space-between;
    }

    /* .nav__link {
    font-size: 0.75rem;
  } */

    .nav__link--cta {
        padding: 12px 2px 4px;
    }

    .nav__logo span {
        display: none;
    }

    /** HAMBURGER MENU **/
    .toon-menu.show {
        transform: translateX(0%);
        max-height: 100vh;
        opacity: 1;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .toon-menu {
        background-color: var(--primary-white);
        position: fixed;
        height: 100vh;
        top: 0;
        right: 0;
        z-index: 40;
        transform: translateX(100%);
        transition: 0.2s ease;
        max-height: 100%;
        width: 100%;
        padding: 10vh 1.25em;
        opacity: 0;
        gap: 1rem;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 30px;
        width: 30px;
        cursor: pointer;
        z-index: 41;
    }

    .toon-menu .nav__link {
        font-family: var(--fm-mirage-bold);
        font-size: 2rem;
        padding: 2rem;
    }

    .line {
        height: 4px;
        width: 90%;
        background-color: var(--primary-black);
        margin: 2.5px 0;
        border-radius: 2px;
        transition: transform 0.2s ease-in-out;
    }

    .line:first-child {
        transform-origin: top left;
    }

    .line:nth-last-of-type(2) {
        opacity: 1;
        transition: ease-in 0.3s;
    }

    .line:last-child {
        transform-origin: bottom left;
    }

    .hamburger-menu.open .line:first-child {
        transform: rotate(45deg);
        background-color: var(--primary-black);
    }

    .hamburger-menu.open .line:nth-of-type(2) {
        opacity: 0;
        width: 0px;
        transition: ease-out 0.2s;
        background-color: var(--primary-black);
    }

    .hamburger-menu.open .line:last-child {
        transform: rotate(-45deg);
        background-color: var(--primary-black);
    }

    /***************************/
    /**** HEADER CONTAINER *****/
    /***************************/

    .header__container {
        padding: 10vh 1.2rem 1rem;
    }

    .header__content-container {
        min-height: 0;
    }

    .header__image {
        height: 47vh;
    }
    .header__image img {
        transform: scale(1.1);
    }

    .green__block {
        display: none;
    }

    .header__line {
        margin-top: 1rem;
        height: 1vh;
        width: 100%;
        border-radius: 4px;
        background-color: #847b6d;
    }

    .header-dots__container {
        margin-top: 1.75rem;
        padding: 0;
        position: relative;
        background: none;
    }

    .header-text__container {
        gap: 0.875rem;
        top: 0;
        left: 0;
        transform: none;

        max-width: none;

        background: none;
        box-shadow: none;
        padding: 0;
    }

    .header__links-container {
        margin-top: 0;
    }

    .header__h1,
    .header__p {
        max-width: none;
    }

    .header__h1 {
        font-size: 1.875rem;
    }

    .header__p,
    .header__link a {
        font-size: 0.875rem;
    }

    /***************************/
    /*****  FIRST SECTION  *****/
    /***************************/
    .container__text-and-carousel {
        display: grid;
        grid: auto-flow/ 1fr;
        align-items: center;
        padding: 3.5rem 1.2rem 6rem;
    }

    .container__over-chiel {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .container__over-chiel section {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .container__over-chiel section:first-of-type {
        order: 1;
    }

    .container__carousel {
        order: 2;
        background: none;
        padding: 0;
        margin: 1.5rem 0;
    }

    .slider__img-carousel {
        height: 33.7vh;
        margin-top: 0;
        padding-right: 0;
    }

    .container__mission {
        order: 3;
        margin: 0;
    }

    .mission__li {
        margin-top: 1rem;
    }

    /****************************/
    /*****  SECOND SECTION  *****/
    /****************************/
    .container__expertise-section {
        padding: 2rem 0.6rem;
    }
    .expertise-section__header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10vw;
    }

    .h2__expertise-section {
        font-size: 2rem;
        max-width: 100%;
        line-height: 120%;
        letter-spacing: 0.4px;
        font-family: var(--fm-mirage-bold);
    }

    .expertise-section__header--img figure {
        min-width: 33vw;
        background-image: url(./assets/img/dots_reverse.svg);
        background-repeat: repeat-x;
        background-size: 43%;
        background-position: 50% 20%;
    }

    .expertise-section__skills {
        background-color: var(--primary-white);
        margin: 4rem 0 2.5rem;
        display: grid;
        grid: auto-flow/ 1fr 1fr;
        box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.15);
    }

    .container__skill {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .expertise-section__header--text {
        max-width: 96%;
    }

    .a__lees-meer p {
        font-size: 0.75rem;
    }

    .expertise-section__header--img figure img {
        max-width: 63%;
    }
    /****************************/
    /*****  THIRD SECTION  ******/
    /****************************/
    .slider__news-carousel {
        position: relative;
        display: flex;
        gap: 0;
    }
    .container__news-carousel {
        padding: 4rem 1.2rem;
    }

    .h2__title--news {
        margin-bottom: 1.5rem;
    }

    .h3__news-carousel {
        font-size: 0.875rem;
    }

    .p__text--carousel {
        max-width: 70%;
    }

    .a__lees-meer--top-margin {
        margin-top: 0.3rem;
    }

    /***************************/
    /*****  BLOG SECTION   *****/
    /***************************/

    .blog__container {
        flex-direction: column;
        padding: 0 1.2rem 3rem;
        gap: 1rem;
    }

    .blog__content {
        max-width: 100%;
    }

    .blog__information ul {
        gap: 0.3rem;
    }

    .header__p {
        line-height: 130%;
    }

    /**************************************/
    /*****  AFSPRAAK MAKEN  SECTION   *****/
    /**************************************/
    .afspraak__container {
        padding: 1.2rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .afspraak__contact-information-container {
        margin-top: 2rem;
    }

    /****************************/
    /*****  FOOTER SECTION  *****/
    /****************************/
    .footer__container {
        padding: 2rem 1.2rem;
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
    .footer__container-blog {
        display: flex;
        flex-direction: column;
        position: relative;
        gap: 3rem;
    }

    .h2__title--footer {
        font-family: var(--fm-mirage-bold);
        letter-spacing: 0.15rem;
    }

    .footer__title {
        margin-bottom: 1.5rem;
    }
}

/* Content Columns Component */
.content-columns {
    padding: 7.875rem 8.875rem 6rem;
}

.content-columns__title {
    font-family: var(--fm-mirage-bold);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.content-columns__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 60px 40px;
    gap: 60px 40px;
    align-items: flex-start;
}

.content-columns__column-title {
    margin-bottom: 0.8rem;
    line-height: 100%;
    font-family: var(--fm-gotham-med);
    font-weight: 500;
}

.content-columns__column-text {
    font-family: var(--fm-gotham-book);
    font-size: 1rem;
    line-height: 150%;
}

.content-columns__column-text p {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.content-columns__column-text p:first-child {
    margin-top: 0;
}

.content-columns__column-text p:last-child {
    margin-bottom: 0;
}

.content-columns__column-link {
    display: inline-flex;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-black);
    align-items: center;
    margin-top: 20px;
}

.content-columns__column-link span {
    position: relative;
    font-family: var(--fm-gotham-med);
    font-size: 0.875rem;
    display: inline-block;
    top: 4px;
}

@media (max-width: 1200px) {
    .content-columns__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 62rem) {
    .content-columns {
        padding: 4rem 1.2rem;
    }

    .content-columns__grid {
        grid-gap: 40px 20px;
        gap: 40px 20px;
    }

    .content-columns__title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .content-columns__column-title {
        font-size: 0.875rem;
    }

    .content-columns__column-text,
    .content-columns__column-link,
    .content-columns__column-link span {
        font-size: 0.75rem;
    }

    .content-columns__column-link {
        margin-top: 10px;
    }
}

@media (max-width: 580px) {
    .content-columns__grid {
        grid-template-columns: 1fr;
    }
}

.single-page-content {
    font-family: var(--fm-gotham-book);
    font-size: 1rem;
    line-height: 150%;
}

.single-page-content p {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.single-page-content p:first-child {
    margin-top: 0;
}

.single-page-content p:last-child {
    margin-bottom: 0;
}

.wp-block-heading {
    font-family: var(--fm-gotham-med);
    margin-bottom: 1.4375rem;
}
