@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@100;300;400;500;600;700;900&display=swap');

:root {
    /* --main-blauw: rgba(51,102,153,1);  */
    --main-blauw: #335e99;
    --main-blauw-donker: rgb(33, 61, 99);
    --main-groen: #2b7c33;
    --main-grijs: #cccccc;
    --main-maroon: rgb(128, 0, 0);

    --nav-bar: rgba(25, 37, 48, 1);
    --nav-bar-active: rgba(33, 48, 63, 1);
    --nav-bar-hover: rgb(118, 118, 118);

    /* lettertypes */
    --font-heading: 'Archivo', sans-serif;
    --font: "Open Sans", "Arial", sans-serif;

    /* stijl */
    --thin: 100;
    --light: 300;
    --regular: 400;
    --medium: 500;
    --bold: 700;
    --black: 900;
}

* {
    padding: 0;
    margin: 0;
    font-family: var(--font);
}

h1 {
    font-family: var(--font-heading);
    color: white;
    font-size: 65px;
    font-weight: var(--bold);
}

h2 {
    font-family: var(--font-heading);
    padding-bottom: 20px;
    font-size: 35px;
    font-weight: var(--black);
    color: var(--nav-bar);
    position: relative;
    /* text-align: left; */
    margin-bottom: 20px;
}

h2::after {
    position: absolute;
    content: "";
    bottom: 10px;
    left: 10%;
    width: 80%;
    height: 2px;
    border-radius: 5px;
    background-color: var(--main-groen);
}

h3 {
    font-family: var(--font-heading);
    font-weight: var(--medium);
    position: relative;
    padding-top: 20px;
}

h4 {
    font-family: var(--font-heading);
    color: white;
    text-transform: uppercase;
    font-weight: var(--regular);
    font-size: 18px;
    letter-spacing: 1px;
}

h5 {
    font-family: var(--font-heading);
    font-weight: var(--black);
    color: var(--nav-bar);
    font-size: 60px;
    margin: 20px 0 10px;
}

b.blauw {
    color: var(--main-blauw);
}

b.grijs {
    color: var(--main-grijs);
}

b.groen {
    color: var(--main-groen);
}

/* BUTTONS START */

input[type='button'] {
    margin: 20px auto;
    border-radius: 25px;
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    background: none;
    border: 2px var(--main-groen) solid;
    background-color: var(--main-groen);
    color: white;
    text-transform: uppercase;
    transition: 0.08s ease-in;
    -o-transition: 0.08s ease-in;
    -ms-transition: 0.08s ease-in;
    -moz-transition: 0.08s ease-in;
    -webkit-transition: 0.08s ease-in;
    position: relative;
    overflow: hidden;
    margin: 50px 0px;
    -webkit-appearance: none;
    max-width: fit-content;
}

input[type='button']:hover {
    cursor: pointer;
    border: 2px #23662a solid;
    background-color: #23662a;
    color: white;
    transform: scale(1.03, 1.03);
    -webkit-transform: scale(1.03, 1.03);
    transition: border 0.3s ease-out;
    -webkit-transition: border 0.3s ease-out;
    transition: transform 250ms cubic-bezier(0.680, -0.550, 0.265, 1.550);
    -webkit-transition: transform 250ms cubic-bezier(0.680, -0.550, 0.265, 1.550);
}

a.link {

    color: black;
    border-bottom: 1px solid rgba(52, 73, 94, 0.4);
    font-weight: 500;
    -webkit-transition: background-color 0.3s, border-color 0.3s;
    transition: background-color 0.3s, border-color 0.3s;
    position: relative;
    display: inline-block;
    outline: none;
    vertical-align: bottom;
    text-decoration: none;
    white-space: nowrap;
}



a.link:hover {
    border-color: rgba(52, 73, 94, 0);
    background-color: rgba(52, 73, 94, 0.1);
}

a.link:hover i {
    display: inline-block;
}

/* BUTTONS EIND */


/* HEADER/NAV START */

header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-blauw-donker);
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

header span {
    display: none;
}

header ul {
    display: flex;
    width: 100%;
    justify-content: space-between;
    list-style: none;
    /* border: 1px solid red; */
}

header ul li {
    list-style: none;
    width: 20%;
    height: 100%;
    /* background-color: var(--nav-bar); */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
}

header ul li a {
    color: #dadada;
    text-align: center;
    text-decoration: none;
    font-size: 8px;
    text-transform: uppercase;
    font-weight: var(--light);

    display: flex;
    flex-direction: column;
}

header ul li a i {
    color: #dadada;
    font-size: 16px;
    padding-bottom: 5px;
}

/* HEADER/NAV EIND */

/*  ACTIVE START */
header ul li.active a {
    font-weight: var(--bold);
    color: #fff;

}

header ul li.active a i {
    color: #fff;
}


/*  ACTIVE EIND */



/* HOME START */
.page-section#home {
    display: flex;
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("/images/craterlake.jpg");
    background-size: cover;
}

.page-section#home .home-tekst {
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    justify-content: center;
    margin: auto 0px;
    position: relative;
}

.page-section#home .home-tekst img {
    display: none;
}

.home-tekst p {
    color: white;
    text-align: center;
    margin: 5vw;
}


.page-section#home .arrow-con {
    position: absolute;
    bottom: 15vh;
    left: 49%;
}

.page-section#home .arrow-con i {
    /* padding: 10px; */
    /* margin: 5px; */
    color: white;
    font-size: 25px;
}

.page-section#home div.home-contact {
    display: none;
    /* display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    font-size: 12px;
    padding: 50px 0px; */

}

.page-section#home div.home-contact a i {
    color: white;
    padding: 10px;
    margin: 5px;
    border: 1px solid white;
    border-radius: 50%;
    transition: background-color ease-in-out 0.2s;
}

.page-section#home div.home-contact a#locatie i {
    padding: 10px 11px;
}

.page-section#home div.home-contact a:hover i {
    background: white;
    color: var(--main-blauw-donker);
    border: 1px solid var(--main-blauw-donker);
    border-radius: 50%;
}

/* HOME END */


/* ONTDEK START*/

.page-section#ontdek {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    width: 100%;
}


.page-section#ontdek .tekst {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*flex-start voor H2 links*/
    width: 85%;
    margin: 40px auto;
    /* text-align: center; */
}

.page-section#ontdek .tekst h2 {
    font-size: 30px;
}



.page-section#ontdek .tekst input[type='button'] {
    margin: 20px 0px;
    width: 100%;
}

.page-section#ontdek .tekst img {
    margin: 20px auto;
}


.page-section#ontdek .img {
    display: none;
    width: 100%;
    /* justify-self: flex-end; */
}

.page-section#ontdek .img img {
    /* height: 90vh; */
    width: 100%;
}

/* ONTDEK EIND*/

/* BLOK START */

#blok {
    height: 150px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/images/bomen.jpg");
    background-size: cover;
    /* clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0 100%); */
}

/* BLOK EIND*/


/* OPLOSSINGEN START */
.page-section#oplossingen {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.page-section#oplossingen .tekst {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    /*flex-start voor H2 links*/
    width: 85%;
    margin: 40px auto;
}

.page-section#oplossingen .img {
    width: 35%;
    align-self: center;
    justify-self: flex-end;
    display: flex;
    justify-content: flex-end;
    align-items: center;

    display: none;
}

.page-section#oplossingen .img img {
    width: 90%;
}


.page-section#oplossingen div.blok-oplossing {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 40px auto;
}

.page-section#oplossingen div.blok-oplossing div.blok {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 90%;
    /* height: 200px; */
    align-items: center;
    -webkit-box-shadow: 0px 6px 10px 0px rgba(194, 194, 194, 1);
    -moz-box-shadow: 0px 6px 10px 0px rgba(194, 194, 194, 1);
    box-shadow: 0px 6px 10px 0px rgba(194, 194, 194, 1);
    border-radius: 10px;
    margin-bottom: 50px;
}

.page-section#oplossingen div.blok-oplossing div.blok img {
    align-self: center;
    margin: 20px;
    width: 40%;
}

.bl-tkst {
    width: 100%;
}

div.blok-oplossing div.blok .bl-tkst h3 {
    padding: 20px 20px 0px 20px;
    text-align: left;
}

div.blok-oplossing div.blok .bl-tkst p {
    padding: 20px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

div.extra-blok {
    background-color: #e2e2e248;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

div.extra-blok div.xtr-tkst {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin: 50px 5vw;
}

div.extra-blok h3 {
    margin: 0 10vw;
}

div.xtr-tkst img {
    width: 80%;
    margin: 5vw;
}

div.xtr-tkst p {
    /* width: 90%; */
    margin: 0 5vw;
}

div.xtr-tkst input[type="button"] {
    margin: 40px 5vw;
}


/* OPLOSSINGEN EIND */


/* ERVARING START */
.page-section#ervaring {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.ervaring-tekst-con {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    /*flex-start voor H2 links*/
    margin: 5vh 5vw 10vh 5vw;
    max-width: 85%;
}

.ervaring-tekst-con input[type='button'] {
    margin: 20px 0px 10px 0px;
    width: 100%;
}

.ervaring-con {
    width: 90%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 10vh 10px 0px 10px;
    flex: 2;

}

.ervaring-con .el {
    flex: 1 0 25%;
    margin: 20px;
    height: 100px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}
.ervaring-con .el1 {
    background-image: url("/images/klanten/logogriend3.jpg")
}

.ervaring-con .el2 {
    background-image: url("/images/klanten/logoXonar.png")
}

.ervaring-con .el3 {
    background-image: url("/images/klanten/liof-logo.png")
}

.ervaring-con .el4 {
    background-image: url("/images/klanten/logoradar.png")
}

.ervaring-con .el5 {
    background-image: url("/images/klanten/zrti-logo-555px.jpg")
}

.ervaring-con .el6 {
    background-image: url("/images/klanten/Maastro-nieuw-logo-groot.png")
}

.ervaring-con .el7 {
    background-image: url("/images//klanten/Logo-NVRO.jpg")
}

.ervaring-con .el8 {
    background-image: url("/images/klanten/wonenplus-logo-blauw-standard.png");
}

.ervaring-con .el9 {
    background-image: url("/images/klanten/logo%20orbis%20hh.jpg")
}

.ervaring-con .el10 {
    background-image: url("/images/klanten/logo_orbis.jpg")
}

.ervaring-con .el11 {
    background-image: url("/images/klanten/meandergroep.png")
}

.ervaring-con .el12 {
    background-image: url("/images/klanten/AZM_logo.jpg")
}

.ervaring-con .el13 {
    background-image: url("/images/klanten/logogkd.jpg")
}

.ervaring-con .el14 {
    background-image: url("/images/klanten/logodomicura.jpg")
}

.ervaring-con .el15 {
    background-image: url("/images/klanten/logopc2.jpg")
}

.ervaring-con .el16 {
    background-image: url("/images/klanten/logoozrc.png")
}


.ervaring-con .el17 {
    background-image: url("/images/klanten/logoverbeeten.png")
}

/* ERVARING EIND */

/* BLOKSCH */


#quote-blok {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("/images/opera.jpeg");
    background-size: cover;
    /* height: 400px; */
    display: flex;
    justify-content: center;
    align-content: center;
    /* clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0 100%); */
}


#img-caption {
    /* font-weight: 500; */
    text-align: center;
    font-size: 15px;
    margin-top: 15px;
    max-width: 80%;
    margin: 5vh auto;
    align-self: center;
}

blockquote {
    position: relative;
    font-style: italic;
    font-size: 30px;
    font-weight: var(--medium);
    color: white;
    font-family: var(--font-heading);
}


/* BLOKSCH */



/* NIEUWS START */

.page-section#nieuws {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0px;

}

.page-section#nieuws .tekst {
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    margin: 10vh 5vw 2vh 5vw;
    max-width: 90%;
}

.page-section#nieuws .laatste-nieuws {
    display: flex;
    width: 90%;
    margin: auto 5vw;
    flex-direction: column;
    align-items: center;
}

.page-section#nieuws .laatste-nieuws .nieuws-artikel {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 90%;
    flex: 1 0 90%;
    flex-wrap: wrap;
    background-color: #fff;
    /* height: 200px; */
    align-items: center;
    -webkit-box-shadow: 0px 6px 10px 0px rgba(194, 194, 194, 1);
    -moz-box-shadow: 0px 6px 10px 0px rgba(194, 194, 194, 1);
    box-shadow: 0px 6px 10px 0px rgba(194, 194, 194, 1);
    border-radius: 10px;
    margin: 25px;
    position: relative;

}

.page-section#nieuws .laatste-nieuws .nieuws-artikel::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    content: "\f10e";
    position: absolute;
    height: 50px;
    width: 50px;
    background: var(--main-groen);
    border-radius: 50%;
    top: -20px;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.page-section#nieuws .laatste-nieuws .nieuws-artikel span {
    margin: 10px 20px 0px 20px;
    align-self: start;
    font: var(--font-heading);
    font-weight: var(--black);
    font-size: 15px;
    color: darkgray;
}

.page-section#nieuws .laatste-nieuws .nieuws-artikel h3 {
    margin: 0px 20px;
    align-self: start;
    padding-top: 10px;
    max-height: 3.8em;
}

.page-section#nieuws .laatste-nieuws .nieuws-artikel p {
    margin: 10px 20px;
    align-self: start;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;

}

.page-section#nieuws .laatste-nieuws .nieuws-artikel img {
    width: 100%;
    /* max-height: 150px; */
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.page-section#nieuws .laatste-nieuws .nieuws-artikel a {
    align-self: flex-start;
    justify-self: flex-end;
    margin: 20px 20px;
    position: relative;
    padding-right: 20px;
    text-decoration: none;
    color: var(--main-blauw);
    font-weight: 600;
    max-width: 80%;
}

.page-section#nieuws .laatste-nieuws .nieuws-artikel a::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    content: "\f105";
    position: absolute;
    opacity: 0;
    top: 5px;
    right: 0px;
    transition: 0.5s;
}

.page-section#nieuws .laatste-nieuws .nieuws-artikel a:hover::after {
    opacity: 1;
    right: 5px;
}

/* NIEUWS EIND */

/* CONTACT START */

.page-section#contact {
    display: flex;
    width: 100%;
    flex-flow: column-reverse wrap;
    justify-content: center;
    align-items: center;
    margin: 10vh 0px 0vh 0px;
    background-color: rgba(33, 60, 99, 0.055);
    padding: 0px 0px 20vh 0px;
}


.contact-sub-con-info {
    width: 90%;
    display: flex;
    flex-flow: column wrap;
}

.contact-sub-con-img {
    width: 90%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    padding: 25px 0 0 0;
    height: 50vh;
}

.page-section#contact .contact-sub-con-info .contact-con {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    text-align: center;
}

.contact-sub-con-img img {
    border-radius: 50%;
    /* justify-self: flex-end; */
    width: 250px;
    height: 250px;
    transform: rotateZ(8deg);
}

.page-section#contact .contact-sub-con-info .contact-con .contact-tekst-con {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: white;
}

.page-section#contact .contact-sub-con-info .contact-info-con {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    flex: 1 0 20%;
    align-items: flex-start;
    width: 100%;
}

.contact-info-con a {
    text-decoration: none;
    color: var(--nav-bar);
    width: 90%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 10px auto;
}


.contact-info-con i:not(.fa-download) {
    color: rgb(235, 235, 235);
    padding: 10px;
    margin: 5px 10px 5px 0px;
    background: var(--nav-bar);
    border: 1px solid var(--nav-bar);
    border-radius: 50%;
    width: 1.1em;
    transition: background-color ease-in-out 0.2s;
    text-align: center;
}


.contact-info-con a:hover i {
    background: rgba(33, 60, 99, 0.055);
    color: var(--main-blauw-donker);
    border: 1px solid var(--main-blauw-donker);
    border-radius: 50%;
}

.page-section#contact .contact-sub-con-info .overig {
    display: flex;
    flex-direction: column;
    margin: 5vw 5vw auto 5vw;
    width: fit-content;
}

.page-section#contact .contact-sub-con-info .overig a {
    margin: 10px 0px;
    text-decoration: none;
    color: var(--nav-bar);
    color: #000;
    padding-left: 10px;
    position: relative;
    width: fit-content;
}

.page-section#contact .contact-sub-con-info .overig a.kvk {
    text-decoration: underline;
    transition: text-decoration 0.5s;
}

.page-section#contact .contact-sub-con-info .overig a.kvk:hover {
    text-decoration: none;
}

.page-section#contact .contact-sub-con-info .overig a.kvk::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    content: "\f105";
    position: absolute;
    opacity: 0;
    top: 3px;
    right: -30px;
    transition: 0.5s;
    color: var(--nav-bar);

}

.page-section#contact .contact-sub-con-info .overig a.kvk:hover::after {
    opacity: 1;
    right: -15px;
}

.page-section#contact .contact-sub-con-info .overig a i {
    color: var(--nav-bar);
    padding-right: 10px;
}



/* CONTACT EIND */

/* ERVARING HOME START */

.page-section#ervaring-home {
    display: flex;
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("/images/bomen.jpg");
    background-size: cover;
}

.page-section#ervaring-home .ervaring-home-tekst {
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: relative;
}

.page-section#ervaring-home .arrow-con {
    display: none;
}

.page-section#ervaring-home .ervaring-home-tekst img {
    display: none;
}

.ervaring-home-tekst p {
    color: white;
    margin: 5vw;
    text-align: center;
    /* width: 65%; */
}

.page-section#ervaring-home .ervaring-home-tekst a {
    color: white;
    padding: 10px;
    margin: 5px;
    border: 1px solid white;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color ease-in-out 0.2s;
}

.page-section#ervaring-home .ervaring-home-tekst a:hover {
    background: white;
    color: var(--main-blauw-donker);
    border: 1px solid var(--main-blauw-donker);
    border-radius: 25px;
}

/* ERVARING HOME EIND */

/* ERVARING PROJECTEN START */

.page-section#projecten {
    display: flex;
    flex-flow: column-reverse wrap;
    width: 100%;
}

div.ervaring-con.klanten {
    width: 90%;
    height: 50vh;
    align-self: center;
    margin: 0px 10px 10vh 10px;
    padding-bottom: 10vh;
}

div.ervaring-con.klanten .el {
    flex: 1 0 27%;
    margin: 10px;
    height: 80px;
}

.page-section#projecten div.blok {
    width: 100%;
    margin: auto auto 5vh auto;
}

div.projecten-tekst-con {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 90%;
    margin: 10vh 5vw 0 5vw;
}

div.projecten-con {
    width: 85%;
    padding: 0 0 0 5vw;
    margin: 2.5vh 5vw;
}

div.projecten-con ul li {
    list-style-type: circle;
    padding: 15px 0;
}

div.projecten-con div.project-categorie {
    flex: 1 0 30%;
    margin: 20px 0px;
    border-radius: 10px;
}

div.projecten-con div.project-categorie h3 {
    margin: 0px 10px;
    font-size: 25px;
}

div.projecten-con div.project-categorie div.project-cat-overzicht p {
    margin: 10px;
    padding: 10px 0px 5px 0px;
}

/* ERVARING PROJECTEN EIND */


/* NIEUWS BERICHTEN START */

.page-section#nieuws-home {
    display: flex;
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("/images/opera.jpeg");
    background-size: cover;

}

.page-section#nieuws-home .arrow-con {
    display: none;
}


.page-section#nieuws-home .nieuws-home-tekst {
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin-left: 5vw;
    text-align: center;
}

.page-section#nieuws-home .nieuws-home-tekst img {
    display: none;
}

.nieuws-home-tekst p {
    color: white;
    /* width: 65%; */
}


.page-section#nieuws-home .nieuws-home-tekst a {
    color: white;
    padding: 10px;
    margin: 20px 0px;
    border: 1px solid white;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color ease-in-out 0.2s;
}

.page-section#nieuws-home .nieuws-home-tekst a:hover {
    background: white;
    color: #6d99be;
    border: 1px solid #bdc8d1;
    border-radius: 25px;
}



.page-section#berichten {
    margin: 10vh 5vw;
}


.page-section#berichten .nieuws-con {
    display: flex;
    width: 95%;
    margin: auto;
    flex-flow: row wrap;
    justify-content: center;
}

.page-section#berichten .nieuws-con .nieuws-artikel {
    display: flex;
    flex-flow: column wrap;
    background-color: #fff;
    align-items: center;
    width: 90%;
    padding: 25px 0px;
    position: relative;
    border-bottom: 1px solid #e9e9e9;
    margin-top: 20px;
}

.page-section#berichten .nieuws-con .nieuws-artikel:last-of-type {

    border-bottom: none;
}

.page-section#berichten .nieuws-con .nieuws-artikel .nws-rtkl-tkst {
    display: flex;
    flex-flow: column wrap;
    /* flex: 2; */
    max-width: 95%;
}


.page-section#berichten .nieuws-con .nieuws-artikel .nws-rtkl-tkst span {
    /* margin: 10px 20px 0px 20px; */
    align-self: start;
    font: var(--font-heading);
    font-weight: var(--black);
    font-size: 15px;
    color: darkgray;
}

.page-section#berichten .nieuws-con .nieuws-artikel .nws-rtkl-tkst h3 {
    /* margin: 0px 20px; */
    align-self: start;
    padding: 10px 0px;
    overflow-wrap: break-word;
}

.page-section#berichten .nieuws-con .nieuws-artikel .nws-rtkl-tkst p {
    /* margin: 10px 20px; */
    align-self: start;
    overflow: hidden;
    display: block;
    /* width: 90%; */
    overflow-wrap: break-word;
}

.page-section#berichten .nieuws-con .nieuws-artikel .nws-rtkl-img {
    width: 70%;
    /* align-self: flex-start; */
}

.page-section#berichten .nieuws-con .nieuws-artikel img {
    max-width: 100%;
    max-height: 100%;
    align-self: flex-start;
    /* max-height: 150px; */
    /* border-top-right-radius: 10px;
    border-top-left-radius: 10px; */
}

.page-section#berichten .nieuws-con .nieuws-artikel a {
    align-self: flex-start;
    justify-self: flex-end;
    margin: 20px 0px;
    position: relative;
    padding-right: 20px;
    text-decoration: none;
    color: var(--main-blauw);
    font-weight: 600;
    max-width: 80%;
    overflow-wrap: break-word;
}

.page-section#berichten .nieuws-con .nieuws-artikel a::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    content: "\f105";
    position: absolute;
    opacity: 0;
    top: 5px;
    right: 0px;
    transition: 0.5s;
}

.page-section#berichten .nieuws-con .nieuws-artikel a:hover::after {
    opacity: 1;
    right: 5px;
}


/* NIEUWS BERICHCTEN EIND */




footer {
    width: 100%;
    background-color: var(--main-blauw);
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    color: white;
    font-size: 15px;
    height: 100px;

    display: none;
}

footer a {
    text-decoration: none;
    color: white;
    position: relative;
}

footer a:hover::after {
    content: "";
    position: absolute;
    background-color: white;
    top: 120%;
    border-radius: 5px;
    /* horizontaal */
    right: 12.5%;
    width: 75%;
    height: 1px !important;
}





/* MEDIA QUERIES */


/* als mobiel scherm maximaal 440px breed (verticaal) is laat dan alleen eerste 6 items zien */

@media screen and (max-width:440px) {
    .ervaring-con .el:nth-last-of-type(-n+13) {
        display: none;
    }

    div.ervaring-con.klanten .el {
        display: block;
    }
}

/* als scherm minimaal 441px breed (horizontaal) is laat dan alleen eerste 8 items zien */

@media screen and (max-height: 380px) {
    .page-section#home .home-tekst img {
        display: none;
    }

    .page-section#home .home-tekst p {
        margin-bottom: 10px;
    }

    .page-section#home div.home-contact {
        padding: 0px 0px;
    }

}

@media screen and (max-width:400px) {
    div.ervaring-con.klanten .el {
        flex: 1 0 30%;
        margin: 25px;
        height: 80px;
    }
}

@media screen and (min-width: 441px) {


    .ervaring-con .el:nth-last-of-type(-n+11) {
        display: none;
    }

    div.ervaring-con.klanten .el {
        display: block;
    }

    div.contact-con img {
        border-radius: 50%;
        width: 30%;
        align-self: center;
    }
}