/*  =================================================================
    0.0 :ROOT ~ overwrites or extras (if needed)
    ================================================================== */
    :root {
        --row-width: 1280px; /* max-width */
        --row-half-width: -640px; /* half-width */
        --font-poppins: 'Poppins', sans-serif;
        --font-weight: 400;
        
        --gutter-mobile: 20px;
        --gutter-tablet: 20px;
        
        --clr-grey_13: #131313;
        --clr-grey_3b: #3b3b3b;
        --clr-grey_5d: #5d5d5d;
        --clr-grey_8a: #8a8a8a;
        --clr-grey_c6: #c6c6c6;
        --clr-grey_dd: #dddddd;
        --clr-grey_ef: #efefef;
        --clr-grey_eb: #ebebeb;
        --clr-grey_f6: #f6f6f6;
        --clr-sand_e0: #e0d7ce;        
        --clr-sandstone: #b4ac9f;
        
        --clr-green: #439e47;
        --clr-green_b8: #b8bc89;
        --color-grey-300: #e9ebec;
        --color-grey-600: #878a99;
        --color-green-rgba: rgba(10, 179, 156, 0.18);
        --color-green-rgb: #0ab39c;		
        --color-red-rgba: rgba(240,101,72, 0.18);
        --color-red-rgb: #F06548;
		
		--swiper-pagination-bullet-horizontal-gap: 6px;
    }


/*  =================================================================
1.0 STANDARDS
================================================================== */
    body, h1, h2, h3, h4, h5, h6, p, ul, ol, label, a, .button, button, input, select, textarea, address {
        font-family: var(--font-poppins);
		color: var(--clr-grey_5d);
    }

    main.row, .row.outer {
        padding-left: 20px;
        padding-right: 20px;
    }
    .row.outer.collapsed {
        padding-left: 0;
        padding-right: 0;
    }
	
	/*body:not(.home) #siteContainer {
		padding-top: 80px;
	}*/
	

/*  1.1 BASE - Golors
    -------------------------------------------------------------- */
    .bgGrey_f6 {
        background-color: var(--clr-grey_f6);
    }
    .bgGrey_5d {
        background-color: var(--clr-grey_5d);
    }
    .bgGrey_8a {
        background-color: var(--clr-grey_8a);
    }
	.bgGrey_ef {
		background-color: var(--clr-grey_ef);
	}
	.bgGrey_eb {
		background-color: var(--clr-grey_eb);
	}
	.bgGrey_dd {
		background-color: var(--clr-grey_dd);
	}
    .bgSandStone {
        background-color: var(--clr-sandstone);
    }

/*  1.2 BASE - Clearfix
    -------------------------------------------------------------- */
    .clear, .clearall, .clearfix {
        clear: both;
    }
	
/*  1.3 BASE - Panes
    -------------------------------------------------------------- */
	.panel {
		width: 100%;
		display: block;
		margin: 0 auto;
		background-color: var(--color-grey-300);
		border: 2px solid var(--color-grey-600);
		padding: 14px;
		padding-bottom: 13px;
		font-size: 16px;
		line-height: 23px;
		margin-bottom: 20px;
	}

	.panel a {
		text-decoration: underline;
	}
	.panel.alert, 
	.panel.notice, 
	.panel.success {
		text-align: center;
	}

	.panel.alert {
		border: 2px solid var(--color-red-rgb);
		background-color: var(--color-red-rgba);
		color: var(--color-red-rgb);
	}	
	.panel.notice {
		border: 2px solid #ff9966;
		background-color: #ffcc00;
		color: #ff9966;
	}	
	.panel.success {
		border: 2px solid var(--color-green-rgb);
		background-color: var(--color-green-rgba);
		color: var(--color-green-rgb);
	}
	.panel.success p {
		color: var(--color-green-rgb);
	}

/*  1.4 BASE - Text stylings
    -------------------------------------------------------------- */
    h1, h2, h3, h4, h5, h6, cite {
        color: var(--clr-grey_5d);
    }
    h1 {
        font-weight: 600;
		font-size: 45px;
		line-height: 38px;
		color: #588170;
    }
    h2, .about h3 {
		/*letter-spacing: -2px;*/
        padding: 0;
        text-transform: none;
        font-size: 24px;
        line-height: 34px;
        font-weight: 400;
    }
	.intro h2 {
		margin-bottom: 25px;
	}
    h2.floated {
        position: relative;		
        padding-right: 200px;
    }
    h3 {
        font-weight: 300;
        font-size: 40px;
        line-height: 50px;
        text-transform: none;
    }
    p, li {
        font-size: 16px;
        line-height: 24px;
    }
	h2.seo,
	.postText h2 {
		color: #588170; 
	}
	
	h2.seo {
		margin-bottom: 20px;
    font-weight: 600;
	}
	
	/*.postText p {
		font-size: 20px;
		line-height: 26px;
	}*/

	.intro p {
		font-size: 25px;
		line-height: 38px;
	}

    input[type="submit"],
    button,
    .button,
    .btn {
        background-color: var(--clr-black);
        color: var(--clr-white);
        font-family: var(--font-poppins);
        -webkit-transform: translateZ(0);
                transform: translateZ(0);
    }
	
	@keyframes zoomEffect {
		0% { transform: scale(1); }
		50% { transform: scale(1.2); }
		100% { transform: scale(1); }
	}
	
	
/*  =================================================================
    x.0 HEADER
    ================================================================== */
	nav {
		position: sticky;
		left: 0;
		top: 0;
		padding-left: 20px;
		padding-right: 20px;
		z-index: 999;
		background-color: var(--clr-white);
	}
	nav .logo-link {
		position: relative;
		font-size: 0;
		line-height: 0;
		display: inline-block;
		margin: 20px 0;
		z-index: 1;
	}
	nav .topRow + .logo-link {
		margin: /*44px 0 */20px 0;
	}
	nav .topRow + .logo-link + .mobileBTN {
		/*margin-top: 24px;*/
		margin-left: auto;
		order: 2;
	}
	nav .logo-link img {
		width: auto;
		height: 50px;
	}
	nav .row {
		display: flex;
		align-items: center;
		justify-content: space-around;
	}
	nav .row > .topRow {
		position: absolute;
		top: 0;
		right: -20px;
		text-align: right;
		width: calc(100% + 40px);
		padding: 0 20px;
		display: none;
	}
	
	nav a {
		color: #5d5d5d;
	}
	nav a.mobileBTN {
		width: 40px;
		line-height: 40px;
		border: 1px solid #5d5d5d;
		text-align: center;
		font-size: 20px;
		border-radius: 5px;
	}
	nav .active > a {
		font-weight: 550;
        color: #588170;
	}
	nav .topRow a {
		display: inline-block;
		line-height: 24px;
		font-size: 14px;
	}
	nav .topRow a.active {
		font-weight: 550;
		color: #588170;
	}
	nav .row ul {
		margin-left: auto;
		font-size: 0;
		line-height: 0;
		text-align: left;
		display: none;
	}
	nav.showed .row ul {
		display: block;
		position: absolute;
		left: 0;
		top: 90px;
		width: 100%;
		height: calc(100vh - 90px);
		background-color: var(--clr-grey_ef);
		border-top: 2px solid var(--clr-grey_5d);
	}
	nav.showed .row .topRow + .logo-link + .mobileBTN + ul {
		top: 90px;
		height: calc(100vh - 114px);
		left: -20px;
		width: calc(100% + 40px);
		padding-top: 10px;
	}
	nav .row ul li {
		display: inline-block;
	}
	nav .row ul li.topRow {
		text-align: left;
        display: block;
        width: 100%;
        /*border-bottom: 1px solid #588170;*/
        margin-bottom: 14px;
	}
	nav .row ul li:not(:nth-child(1)):not(:nth-child(2))/*,
	nav .topRow a:not(:first-of-type)*/ {
		margin-left: 20px;
	}
	nav.showed .row ul li:not(:first-of-type) {
		margin-left: 0;
	}
	nav.showed .row ul li {
		display: block;
		width: 100%;
		padding-left: 20px;
	}
	nav .row ul a {
		font-size: 18px;
		line-height: 40px;
	}
    nav .row ul li.topRow a {
		display: block;
		font-weight: 400;
		font-size: 18px;
	}
	nav .row ul a.cta {
		display: inline-block;
		background-color: #588170;
		color: var(--clr-white);
		font-size: 16px;
		line-height: 24px;
		padding: 8px 16px;
		border-radius: 40px;
		margin-top: 10px;
	}


    /*  =================================================================
    x.0 HEADER	
    ================================================================== */
    header,
    .etalage {
        width: 100%;
        /*height: 475px;*/
		overflow: hidden;
    }
	/*header {
		height: calc(100vh - 140px);
	}*/
	header.text {
		height: auto;
		font-size: 0;
		line-height: 0;
	}
	header.text,
	.etalage.project {
		margin-bottom: 40px;
	}
    header img,
    .etalage img {
		float:left;
        height: 100%;
        object-fit: cover;
    }
	header:not(.withImg) img {
		animation: zoomEffect 40s infinite ease-in-out;
	}
	header.withImg {
		padding-top: 0;
	}
	/*header.withImg img {
		height: 400px;
	}*/
    header hgroup,
    .etalage hgroup {
		position: absolute;
		left: /*50%*/ 20px;
		/*top: 50%;*/
		bottom: 20px;
		z-index: 1;
		/*-webkit-transform: translate(0, -50%);
				transform: translate(0, -50%);*/
		display: inline-block;
		width: var(--row-width);
		max-width: calc(100% - 40px);
    }
    header:not(.text) h1,
    header h2,
    .etalage h2,
    .etalage h3 {
        color: var(--clr-white);
        /*font-size: 65px;
        line-height: 70px;*/
		font-size: 26px;
		line-height: 26px;
    }
    header h1,
    header h2,
    .etalage h2 {
		/*font-size: 34px;
		line-height: 36px;*/
		font-size: 22px;
		line-height: 24px;
    }
    header h2 {
        font-weight: 400;
        /*margin-top: 30px;*/
		margin-top: 10px;
    }
    header h1,
    .etalage h2 {
        font-weight: 600;
        /*font-size: 65px;*/
		font-size: 26px;
        letter-spacing: -1px;
    }
	.etalage h1,
    .etalage h2 {
        font-weight: 400;
        /*font-size: 44px;
        line-height: 50px;*/
		font-size: 22px;
		line-height: 24px;
        color: #fff;
    }
    .etalage h2:after {
		content: '.';
        /*font-size: 60px;*/
		display: inline-block;
		font-size: 30px;
		line-height: 24px;
        font-weight: 700;
        color: #90AEA2;
    }
    .etalage h3 {
		letter-spacing: -1px;
        margin-top: 25px;
        padding: 0;
        text-transform: none;
        font-size: 26px;
        line-height: 36px;
        font-weight: 400;
    }
	.etalage.centered {
		text-align: center;
	}
	.etalage.centered h1,
	.etalage.centered h2 {
		font-size: 50px;
		line-height: 55px;
		font-weight: 600;
	}
	.etalage.centered h1 small,
	.etalage.centered h2 small {
		margin-top: 0;
		font-weight: 300;
	}
	.etalage.centered h2:after {
		display: none;
	}
	
	
/*  =================================================================
    x.0 BREADCRUMBS
    ================================================================== */
	.breadcrumb {
		font-size: 12px;
		padding: 0px 20px;
	}
	header.withImg .breadcrumb {
		padding-top: 5px;
	}

	.breadcrumb ol {
		list-style: none;
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		margin: 0;
		padding: 0;
	}
	.breadcrumb li {
		display: flex;
		align-items: center;
		color: #5d5d5d;
		text-transform: lowercase;
	}
	.breadcrumb li:not(:last-child)::after {
		content: "/";
		margin: 0 8px;
		color: #aaa;
	}
	.breadcrumb a {
		text-decoration: none;
		color: var(--clr-green);
		transition: color 0.2s;
	}
	
	
/*  =================================================================
    x.0 SIDEBAR
    ================================================================== */


/*  =================================================================
    x.0 CONTENT
    ================================================================== */
	section, footer {
		padding-left: 20px;
		padding-right: 20px;
	}
   
	.home header,
    /*.home section:not(.about):not(.timeline),*/
	.home section:not(.timeline):not(.title) {
        margin-bottom: /*100px*/50px;
    }
	.home section {
		padding: 0 20px;
	}
	
	/*section.WYSIWYG:not(.title) + section.WYSIWYG:not(.title) {
		margin-top: -60px;
	}*/

    section.etalage {
		padding-left: 0;
		padding-right: 0; 
	}
	
	.WYSIWYG h1, .WYSIWYG h3, .WYSIWYG h4, .WYSIWYG h5, .WYSIWYG h6,
    .WYSIWYG p:not(:last-of-type),
    .WYSIWYG ol,
    .WYSIWYG ul,
    .WYSIWYG figure {		
        margin-bottom: 20px;
    }
	.WYSIWYG h2 {
		font-size: 30px;
		line-height: 40px;
		font-weight: 600;
	}
	.WYSIWYG h3 {
		font-size: 18px;
		line-height: 24px;
		font-weight: 500;
		padding: 6px 0;
	}
    .WYSIWYG p strong {
        font-weight: 550;
    }
    .WYSIWYG p a {
        text-decoration: underline;
    }
	.WYSIWYG ul:not(.summary):not(.contactform) li,
	.WYSIWYG ol li	{
		position: relative;
		padding-left: 32px;
	}
	.WYSIWYG ul:not(.summary) li:before {
		content: '\f3c1';
		font-family: 'remixicon';
		left: 3px;
		top: 3px;
		position: absolute;
		width: 18px;
		line-height: 18px;
		text-align: center;
		border-radius: 50%;
		color: #588170;
		font-size: 6px;
		font-weight: 400;
	}
	.WYSIWYG li span {
		font-weight: 500;
	}
  .WYSIWYG li span strong{
    font-weight: 550;
  }

/*  x.x BUTTON
    -------------------------------------------------------------- */	
	.WYSIWYG a.button {
		display: inline-block;
		background-color: #588170;
		color: var(--clr-white);
		font-size: 16px;
		line-height: 24px;
		padding: 8px 26px;
		border-radius: 40px;
	}	
	.WYSIWYG .btnContainer {
		display: flex;
	}	
	.WYSIWYG .btnContainer._lft {
		justify-content: flex-start;
	}
	.WYSIWYG .btnContainer._cntr {
		justify-content: center;
	}
	.WYSIWYG .btnContainer._rght {
		justify-content: flex-end;
	}


/*  x.x IMAGE COMPARER
    -------------------------------------------------------------- */
	/* De hoofdcontainer: bepaalt de grootte en centreert de slider */
	.comparison-slider {
		position: relative;
		width: 100%;
		/*max-width: 800px;*/
		margin: 0 auto; 
		aspect-ratio: 16 / 9; /* Zorgt dat de verhouding mooi blijft */
		overflow: hidden;
		/*border-radius: 8px;*/ /* Optioneel: afgeronde hoeken */
		box-shadow: 0 4px 10px rgba(0,0,0,0.1);
		--position: 50%; /* De startpositie van de schuif (50% is precies in het midden) */
	}

	/* Zorgt dat beide afbeeldingen exact over elkaar heen liggen */
	.comparison-slider img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		pointer-events: none; /* Voorkomt dat je de afbeeldingen per ongeluk sleept */
	}

	/* Het 'toekomst' beeld ligt bovenop en wordt afgesneden met clip-path */
	.image-after {
		clip-path: polygon(0 0, var(--position) 0, var(--position) 100%, 0 100%);
	}

	/* De witte verticale schuiflijn */
	.slider-line {
		position: absolute;
		inset: 0;
		width: 4px;
		height: 100%;
		background: #ffffff;
		left: var(--position);
		-webkit-transform: translateX(-50%);
				transform: translateX(-50%);
		pointer-events: none;
	}

	/* De ronde knop in het midden van de lijn */
	.slider-button {
		position: absolute;
		top: 50%;
		left: var(--position);
		transform: translate(-50%, -50%);
		width: 40px;
		height: 40px;
		background: white;
		border-radius: 50%;
		box-shadow: 0 2px 6px rgba(0,0,0,0.3);
		pointer-events: none;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	/* De kleine pijltjes in de ronde knop */
	.slider-button::before,
	.slider-button::after {
		content: '';
		border: solid #333;
		border-width: 0 3px 3px 0;
		display: inline-block;
		padding: 3px;
	}
	.slider-button::before {
		transform: rotate(135deg);
		margin-right: 4px;
	}
	.slider-button::after {
		transform: rotate(-45deg);
		margin-left: 4px;
	}

	/* De onzichtbare input-slider die de muisklikken/touch opvangt */
	.slider-input {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		opacity: 0;
		cursor: ew-resize; /* Cursor verandert in een horizontaal pijltje */
		margin: 0;
	}

/*  x.x SLIDER
    -------------------------------------------------------------- */
	/*body.home section.title {
		margin-bottom: -75px;
	}*/
	body.home section.projects {
		/*padding-top: 75px;
		padding-bottom: 55px;*/
		padding-left: 20px;
		padding-right: 20px;
	}
	
	body.home section.projects .gridFrame {
		row-gap: 20px;
	}
	
	body.home section.WYSIWYG + body.home section.projects {
		padding-top: 0;
	}
    .projects .swiper-slide {
        background-color: #fff;
		font-size: 0;
		line-height: 0;
    }
	
	.projects .text-label,
	.packages.borders .grid-item label {
		opacity: 0;
		visibility: hidden;
		width: fit-content;
		height: 32px;
		background-color: #89857C;
		color: #fff;
		text-align: center;
		font-size: 16px;		
		line-height: 32px;
		position: absolute;
		top: 37px;
		left: -19px;
		border-radius: 4px;
		border-top-left-radius: 0;
		padding: 0 20px;
		box-shadow: 2px 2px 5px 0 rgba(0,0,0, 0.3);
		-webkit-transition: all 300ms ease-in;
				transition: all 300ms ease-in;
	}	
	.projects .text-label:before,
	.packages.borders .grid-item label:before {
		content: "";
		border-bottom: 16px solid #626360;
		border-left: 18px solid transparent;
		position: absolute;
		top: -16px;
		left: 1px;
	}

	.projects .text-label {
		height: 24px;
		font-size: 14px;
		line-height: 24px;
		top: 25px;
	}
	.projects .text-label:before {
		border-bottom: 12px solid #626360;
		border-left: 16px solid transparent;
		top: -16px;
		left: 2px;
	}
	
    .projects .swiper-slide.swiper-slide-active .text-label,
	.packages.borders .grid-item label {
		opacity: 1;
		visibility: visible;
    }
	
    .projects.single .swiper-slide {
		border: 1px solid #efefef;
    }
    .projects .swiper-slide img {
        opacity: .2;
    }
    .projects .swiper-slide.swiper-slide-active img {
        opacity: 1;
    }
    .swiper-3d .swiper-slide-shadow {
        background: transparent;
    }
	.projects .singleSwiper {
		margin-bottom: 10px;
		padding-left: 40px;
		margin-left: -40px;
	}
	.projects .singleSwiper .swiper-slide {
		-webkit-transition: all 300ms ease-in;
				transition: all 300ms ease-in;
	}
	.projects .singleSwiper .swiper-slide:not(.swiper-slide-active) {
		opacity: 0;
		visibility: hidden;
	}

    .projects .col.img {
		padding: 0;
    }
    .projects .col.txt {
        padding: 25px 0 0 0;
    }
    .projects .col.txt p {
		color: var(--clr-grey_5d);
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .projects .col.txt p b {
        text-transform: uppercase;
		font-size: 18px;
    }
	
    .projects .col.txt .more {
        border: 1px solid #d4d4d4;
		border-radius: 24px;
		display: inline-block;
		width: auto;
		line-height: 32px;
		padding: 7px 20px;
		color: #a2a2a2;
    }
	
    .projects .swiper-button-next {
        right: var(--swiper-navigation-sides-offset, 7%);
    }
    .projects .swiper-button-prev, .projects .swiper-button-next {
        border: 1px solid #d4d4d4;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        color: #a2a2a2;
		margin-top: -250px;
	}
    .projects .swiper-button-prev:after, .projects .swiper-button-next:after {
        font-size: 20px;
    }
	
	.summary {
		margin-bottom: 30px;
	}
    .summary li {
		color: rgb(88, 129, 112);
		font-size: 14px;
        line-height: 40px;
    }
    .summary i {
        font-size: 16px;
        width: 28px;
        height: 28px;
        line-height: 26px;
        text-align: center;
        border: 1px solid #d4d4d4;
        color: #a2a2a2;
        display: inline-block;
        border-radius: 50%;
        margin-right: 10px;
    }

    /* ABOUT */
	section.about {
		padding: 20px;
	}
	.about .img img {
        height: 100%;
        object-fit: cover;
    }
    /*.about .text {
        padding: 0 20px 20px;
    }*/
	.about .text.bgGrey_dd {
        background-color: var(--clr-grey_eb);
    }
    .about h2,
	.about h3 {
		color: #588170;
		font-weight: 400;
    }
	.about h2 {
		font-size: 40px;
    }
	.about h3 {
        margin-bottom: 50px;
    }
    .about p {
        margin-bottom: 24px;
    }
	.about a.button {
        margin-top: 24px;
		display: inline-block;
		background-color: #588170;
    	color: var(--clr-white);
		font-size: 16px;
		line-height: 24px;
		padding: 8px 16px;
		border-radius: 40px;
	}
  .about a.button:hover{
    text-decoration:underline;
  }
	.social-share {
		display: block;
		margin-top: 15px;
	}
	.social-share a {
		position: relative;
		display: block;
		float: left;
		text-align: center;
		border-radius: 5px;
		font-weight: 300;
		width: 24px;
		height: 24px;
		line-height: 24px;
		font-size: 24px;
	}
	
	.social-share a.in {
		color: #588170;
	}
	
	.social-share a.fb {
		color: #588170;
	}	
	.social-share a.li {
		color: #588170;
	}

/*  x.x TIMELINE
    -------------------------------------------------------------- */
	.timeline {
		position: relative;
        /*padding-top: 80px;*/
		padding-bottom: 75px;
        counter-reset: section;
    }
	
    .time-container {
		position: relative;
		padding: 100px 0 0 0;
	}
	.timeline-line:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 2px;
        height: 300px;
        background: #FFF;
		background: linear-gradient(rgba(255, 255, 255, 1) 10%, rgba(88, 129, 112, 1) 90%);
		z-index: 1;
    }
	.timeline-line:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 2px;
        height: 300px;
        background: #FFF;
		background: linear-gradient(rgba(88, 129, 112, 1) 10%, rgba(255, 255, 255, 1) 90%);
		z-index: 1;
    }
	.timeline-line {
        position: absolute;
        left: 100px;
        top: 0;
        width: 2px;
        height: 100%;
        background-color: rgba(88, 129, 112, 1);
    }
	.timeline-line .bar-fill {
		position: absolute;
		top: 0;
		left: 0;
		height: 0%;
		width: 5px; /* Startstand */
		background: linear-gradient(90deg, #4CAF50 0%, #2E7D32 100%); /* MoooiGroen verloop */
		transition: width 1.5s cubic-bezier(0.1, 0.5, 0.5, 1); /* Mooie vloeiende animatie */
	}

	/* Wanneer de balk in beeld komt, voegen we deze class toe via JS */
	.bar-gray.is-visible .bar-fill {
		height: 100%;
	}
	
	.timeline .card {
        position: relative;
        padding: 25px 0;
		display: flex;
		z-index: 2;
	}
	.timeline .card:first-of-type {
        padding-top: 0;
	}
	.timeline .card:last-of-type {
        padding-bottom: 0;
	}
	.timeline .card-body {
		position: relative;
		width: 100%;
		display: flex;
	}
	.timeline .card-body.left {
		position: relative;
		max-width: 80px;
		color: #588170;
        font-weight: 700;
        font-size: 26px;
        line-height: 33px;
        text-transform: uppercase;
		align-content: center;
		flex-wrap: wrap;
		text-align: center;
	}
	.timeline .card-body.left:after {
		content: '';
		position: absolute;
		top: calc(50% - 7px);
		right: -28px;
		width: 14px;
		height: 14px;
		border-radius: 50%;
		background-color: #588170;
	}
	.timeline .card-body.right {
		max-width: calc(100% - 120px);
		margin-left: 40px;
	}
    .timeline_circle {
        background-color: #588170;
        border-radius: 100%;
        width: 13px;
        min-width: 13px;
        max-width: 13px;
        height: 13px;
        min-height: 13px;
        max-height: 13px;
        position: sticky;
        top: 50vh;
    }
    .timeline .card-body.right .card-content {
		width: 100%;
		max-width: 740px;//max-width: 414px;
		padding: 16px;
		background-color: #FBFBFB;
		margin-bottom: 0;
    }
    .timeline .card h3 {
        color: #588170;
        font-weight: 700;
        font-size: 18px;
        line-height: 28px;
		    margin-bottom: 8px;
    } 
    .timeline .card p {
        color: #5d5d5d;
        font-size: 13px;
        font-weight: 400;
        line-height: 21px;
    }
    .timeline .card p a {
        color: #588170;
    }
    .timeline .card p a:hover {
		  text-decoration: underline;
    }
  .timeline .card p:not(:last-of-type) {
        margin-bottom: 35px;
    }
    .timeline .card img {
        margin-top: 30px;
    }
	
/*  x.x FAQ
    -------------------------------------------------------------- */
	.etalage {
		padding-top: 0;
		padding-bottom: 0;
	}

/*  x.x FAQ
    -------------------------------------------------------------- */
    /*.faq {
		background-color: var(--clr-grey_eb);
		padding-top: 55px;
        padding-bottom: 75px;
    }*/
    .faq h2 {
        margin-bottom: 30px;
    }
    details,
    details summary,
    details answer {
        position: relative;
        display: block;
        width: 100%;
    }

    details {
        border-top: 1px solid #dddddd;
    }
    .faq details:last-of-type {
        border-bottom: 1px solid #dddddd;
    }

    details summary,
    details p {
        color: var(--clr-grey_5d);
    }

    details summary {
        line-height: 34px;
        font-size: 16px;
        padding: 15px 38px;
		    font-weight: 500;
        color: #588170;
    }
    details answer {
        padding: 0 19px 19px 38px !important;
    }
    details p {
        line-height: 28px;
        font-size: 18px;
		font-weight: 300;
    }
    details summary:after {
        content: '\F4B2';
        position: absolute;
        right: 38px;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        font-family: 'remixicon';
        line-height: 40px;
        font-size: 12px;
    }
    details[open] summary:after {
        content: '\F1AF';
    }

/*  x.x REVIEWS
    -------------------------------------------------------------- */
    section.reviews h2 {
        margin-bottom: 30px;
}
    .swiper.reviews {
        padding-bottom: 70px;
    }
	.swiper.reviews .swiper-slide,
	.reviews article {
		position: relative;
		background-color: #fbfbfb;
		padding: 63px 34px 20px 34px;
		color: #588170;
    }
	.swiper.reviews .swiper-slide .icon,
	.reviews article .icon {
		position: absolute;
		top: 8px;
		left: 28px;
		display: block;
		line-height: 1em;
		font-size: 50px;
	}
	
	.reviews .opener {
		position: absolute;
		bottom: 10px;
		right: 10px;
		width: 40px;
		height: 40px;
		line-height: 40px;
		text-align: center;
		color: #588170;
		font-weight: 500;
		font-size: 24px;
		z-index: 2;
	}
	
	.review-text .rev-inner {
		position: relative;
		width: 100%;
		overflow: hidden;
		-webkit-transition: max-height ease 200ms;
				transition: max-height ease 200ms;
	}
	.review-text .rev-inner p {
		font-size: 15px;
		color: #588170;
		line-height: 26px;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.swiper-slide .review-text.showText .rev-inner p {		
		display: block;
	}
	
    .review-text {
        border-bottom: 1px solid #588170;
		font-size: 15px;
		line-height: 26px;
		padding-bottom: 25px;
		margin-bottom: 25px;
    }
    .review-author {
        font-weight: 550;
        font-size: 16px;
		line-height: 17px;
        margin-bottom: 0;
		color: #588170;
    }
	.review-author img {
   display:none;
        max-width: 34px;
		height: /*34px*/auto;
		/*padding: 6px;*/
		object-fit: contain;
		/*box-shadow: 0 0 0 2px #588170;
		border-radius: 50%;
		overflow: hidden;*/
		float: left;
		margin-right: 20px;
    }
	.review-author small {
		display: block;
		font-weight: 400;
        font-size: 14px;
		line-height: 17px;
    }
	
/*  x.x SWIPER
    -------------------------------------------------------------- */
    .swiper.reviews,
	.socialSlider {
        padding-bottom: 70px;
    }
    .swiper-pagination-bullet {
        opacity: 1;
        background-color: #fff;
        width: 12px;
        height: 12px;
		box-shadow: 0 0 0 2px #588170;
    }
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: #588170;
    }

    .gallery .grid-item,
	.gallery .swiper-slide {
		width: auto !important;
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
		margin: auto;
		pointer-events: none; /* ðŸ‘‰ blokkeer clicks op slide zelf */
	}
	.gallery figure a {
		display: inline-block;
		vertical-align: middle;
		pointer-events: auto; /* ðŸ‘‰ maar laat <a> klikbaar blijven */
	}
	.gallery .splide__slide img,
	.gallery .swiper-slide img {
		width: auto;
		height: 80px;
		filter: grayscale(100);
	}

	.masonGall video {
		width: 100%;
		object-fit: fill;
		aspect-ratio: 31 / 43;
	}

/*  x.x SOCIALS
    -------------------------------------------------------------- */
	.socials .gridFrame {
		row-gap: 40px;
	}
	.socials h2 {
		margin-bottom: 30px;
	}
	.socials h3 {
		font-size: 18px;
		text-align: left;
		line-height: 1.3em;
		color: #588170;
		font-weight: 500;
	}
	.socials h3:hover{
		text-decoration: underline;
	}
	.socials time,
	.socials a{
		font-size: 13px;
		text-align: left;
		line-height: 1.3em;
		color: #5d5d5d;
		font-weight: 400;
	}
	.news .timeText{
		padding-top: 4px;
		font-size: 14px;
		line-height: 28px;
		color: #5d5d5d;
		text-align: left;
	}

/*  x.x PACKAGES
    -------------------------------------------------------------- */
	section.borders .gridFrame {
		gap: 36px;
	}
	section.borders .grid-item {
		background-color: #f7f7f7;
		padding: 20px;
	}
	section.borders .grid-item.padded {
		padding-top: 80px;
	}

/*  x.x CTA
    -------------------------------------------------------------- */
	section.cta {
		padding-top: 75px;
		padding-bottom: 75px;
	}
	section.packages + section.cta {
		padding-top: 0;
	}
	
	.cta .row {
		text-align: center;
	}
	.cta a {
		display: inline-block;
		padding: 22px 50px;
		background-color: var(--clr-green);
		color: var(--clr-white);
		line-height: 26px;
		font-size: 20px;
	}
	.WYSIWYG p a.button,
	a.cta {
		display: inline-block;
		background-color: #89857C;
		color: var(--clr-white);
		font-size: 16px;
		line-height: 24px;
		padding: 8px 16px;
		border-radius: 40px;
		margin-top: 20px;
		text-decoration: none;
	}

/*  x.x PROJECTS
    -------------------------------------------------------------- */	
	.projects.grid .gridFrame {
		row-gap: 40px;
	}
	.projects article {
		font-size: 0;
		line-height: 0;
	}
	.projects .overview figure {
        position: relative;
        padding-bottom: 100%;
        margin-bottom: 15px;
    }
	.projects.grid .overview figure {
        margin-bottom: 0;
    }
	.projects.grid .overview figure:after {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		box-shadow: 240px 4px 46px 56px rgba(0,0,0,0.39) inset;
	}
    .projects .overview figure img {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
		object-fit: cover;
		/*margin-bottom: 15px;*/
		border: 1px solid #efefef;
	}
	.summary li img,
	.projects .overview li img {
		max-width: 26px;
		height: 26px;
		object-fit: contain;
		float: left;
		margin: 6px;
		margin-left: 0;
	}
	.projects h2 {
        font-weight: 700;
        font-size: 40px;
        line-height: 55px;
        color: #588170;
		margin-bottom: 40px;
	}
	.projects h3 {
        font-weight: 700;
        font-size: 25px;
        line-height: 1em;
        color: #588170;
		margin-bottom: 20px;
	}	
	.projects.grid h3 {
		position: absolute;
		left: 50%;
		top: 50%;
		-webkit-transform: translate(-50%, -50%);
				transform: translate(-50%, -50%);
        font-size: 28px;
        line-height: 1em;
        color: #fff;
		width: calc(100% - 40px);
		margin-bottom: 0px;
		text-align: center;
	}
	.projects h3 small {
        padding-top: 6px;
        font-weight: 500;
        font-size: 16px;
        line-height: 1em;
	}
	.projects.grid h3 small {
        font-size: 16px;
        font-weight: 400;
	}
	.projects.single h3 {
        font-weight: 600;
		margin-bottom: 10px;
	}
	.projects h3.marged {
		margin-top: 20px;
		margin-bottom: 10px;
	}
	.projects .WYSIWYG p {
		line-height: 26px;
		font-size: 15px;
		font-weight: 400;
		margin-bottom: 15px;
	}
	.projects .small p {
		line-height: 24px;
		font-size: 16px;
	}
	.projects .overview .summary {
		text-align: left;
		font-size: 0;
		line-height: 0;
		vertical-align: top;
		margin-bottom: 15px;
	}
    .projects .overview .summary li {
		display: block;
        color: #588170;
        font-size: 15px;
    }
    .projects .overview .summary li:not(:last-of-type) {
		margin-right: 23px;
    }
	.projects span.fakeBtn {
		display: inline-block;
		background-color: #588170;
		color: var(--clr-white);
		font-size: 16px;
		line-height: 24px;
		padding: 8px 26px;
		border-radius: 40px;
	}
	.projects.grid span.fakeBtn {
		position: absolute;
		left: 50%;
		bottom: 30px;
		z-index: 2;
		-webkit-transform: translateX(-50%);
				transform: translateX(-50%);
	}
	.projects span.fakeBtn:hover,
	.projects.grid span.fakeBtn:hover{
		text-decoration:underline;
	}
	.projects .thumbSwiper .swiper-slide img {
		opacity: .2;
    }
	.projects .thumbSwiper .swiper-slide.swiper-slide-thumb-active img {
		opacity: 1;
	}

/*  x.x CAROUSEL
    -------------------------------------------------------------- */
	.etalage + .carousel {
		margin-top: -50px;
	}
	section.carousel {
		background-color: #588170;
		padding: 20px;
	}	

/*  x.x DESIGNPHASE
    -------------------------------------------------------------- */
	section.designphase {
		padding-left: 20px;
		padding-right: 20px;
	}
	section.designphase .gridFrame {
		row-gap: 20px;
	}	
	.designphase figure {
		line-height: 0;
		font-size: 0;
	}
	.designphase figure img {
		height: 408px;
		object-fit: cover;
	}
	.designphase figure figcaption {
		padding: 23px;
		line-height: 34px;
		font-weight: 500;
		font-size: 19px;
		background-color: #588170;
		color: #fff;
		float: left;
		width: 100%;
	}
	.designphase figure figcaption span {
		/*line-height: 32px;
		font-weight: 300;
		display: inline-block;
		border-radius: 50%;
		width: 32px;
		border: 1px solid #fff;
		text-align: center;*/
		margin-right: 12px;
	}
	.designphase figure figcaption i {
	    display: inline-block;
    	vertical-align: top;
    	font-size: 17px;
	}
	
/*  x.x ADDRESS
    -------------------------------------------------------------- */
	.addresses p {
		Line-height: 22px;
		margin-bottom: 6px;
	}

/*  x.x CTA
    -------------------------------------------------------------- */
	form #andersInputContainer:not(.visible), form #yesInputContainer:not(.visible), form #personsInputContainer:not(.visible), form #importanceInputContainer:not(.visible), form #socInputContainer:not(.visible) {
		display: none;
	}
	form #andersInputContainer, form #yesInputContainer, form #personsInputContainer, form #importanceInputContainer, form #socInputContainer {
		position: absolute;
		left: 300px;
		bottom: 0;
		width: 300px;
	}
	form #yesInputContainer {
		left: 100px;
		bottom: 35px;
	}
	form #andersInputContainer input, form #yesInputContainer input, form #personsInputContainer input, form #importanceInputContainer input, form #socInputContainer input {
		width: 100%;
		max-width: none;
	}
	form .row {
		padding-bottom: 20px;
	}
	form h3 {
		line-height: 30px;
		font-size: 20px;
		font-weight: 500;
	}
	form h3 + p {
		font-size: 14px;
		margin-bottom: 15px;
	}
	form .floated {
		position: relative;
		padding-left: 200px;
		margin-bottom: 5px;
	}
	form .floated span {
		display: block;
		width: 100%;
		max-width: 200px;
		position: absolute;
		left: 0;
		top: 0;
		line-height: 32px;
		font-size: 14px;
	}
	
	form .floated.full {
		padding-left: 0;
	}
	form .floated.full span {
		position: relative;
		left: auto;
		top: auto;
		max-width: none;
	}
	form .floated.full {
		padding-left: 0;
	}
	.contactform {
		list-style: none !important;
	}
	.contactform li {
		padding: 0;
	}
	.contactform li:before {
		display: none;
	}
	.contactform li input,
	form input,
	.contactform li textarea,
	form textarea,
	.contactform li select,
	form select {
		display: block;
		width: 100%;
		background-color: transparent;
		line-height: 26px;
		padding: 4px 10px;
		margin-bottom: 10px;
		border: 1px solid #d7d7d7;
	}  
	.contactform li input::placeholder,
	form input::placeholder,
	.contactform li textarea::placeholder, 
	form textarea::placeholder{
		color: #cccccc;
		font-weight: 300;
	}
	select {
		background-position: center right 4px;
	}
	
	input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
        color: #5d5d5d;
    }
    input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
        color: #5d5d5d;
    }
    input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
        color: #5d5d5d;
    }
    input:-moz-placeholder, select:-moz-placeholder, textarea:-moz-placeholder {
        color: #5d5d5d;
    }
	
	form textarea {
		height: 96px;
	}
	form input.street, form input.nr, form input.zip, form input.place {
		float: left;
	}
	form input.street {
		max-width: calc(80% - 5px);
		margin-right: 5px;
		margin-bottom: 5px;
	}
	form input.nr {
		max-width: 20%;
		margin-bottom: 5px;
	}
	form input.zip {
		max-width: calc(40% - 5px);
		margin-right: 5px;
	}
	form input.place {
		max-width: 60%;
	}
	form .optGroup input {
		position: relative;
		float: left;
		max-width: 22px;
		margin: 5px 0;
		line-height: 22px;
		padding: 0px;
	}
	form .optGroup input:after {
		content: '';
		position: absolute;
		width: 12px;
		max-width: none;
		margin: 0;
		height: 12px;
		padding: 0px;
		left: 4px;
		top: 4px;
		background-color: transparent;
	}
	form .optGroup input:checked:after {
		background-color: var(--clr-grey_5d);
	}
	form .optGroup input[type="checkbox"],
	form .optGroup input[type="radio"] {
		padding: 0;
		height: 22px;
	}
	form .optGroup label {
		float: left;
		display: block;
		line-height: 20px;
		width: calc(100% - 32px);
		padding-left: 10px;
		margin: 0 0 5px 0;
		font-size: 13px;
	}
	form .optGroup label.before-next-input {
		width: calc(50% - 35px);
	}
	form .optGroup label.before-next-input + input {
		float: left;
		display: block;
		width: 50%;
		max-width: none;
		margin: 0 0 5px 0;
	}
	form .floated input[type="file"] {
		padding-left: 0;
	}
	form .floated ::file-selector-button {
		border: 2px solid transparent;
		padding: 0 10px;
		border-radius: 0;
		background-color: #d5d5d5;
		line-height: 28px;
		margin-right: 30px;
	}
	
	form button {
		display: inline-block;
		background-color: #588170;
		font-size: 16px;
		line-height: 24px;
		padding: 8px 16px;
		border-radius: 40px;
		margin-top: 10px;
	}
	form button:hover{
		text-decoration:underline;
	}
	
	.socials,
	.news {
		padding-top: 25px;
		padding-bottom: 75px;
	}
	
	.navi {
		margin-top: 40px;
	}
	.navi span {
		float: left;
		display: block;
		margin-top: 10px;
	}	
	
	.news .btn,
	.navi .btn {
		display: inline-block;
		background-color: #588170;
		color: var(--clr-white);
		font-size: 16px;
		line-height: 24px;
		padding: 8px 16px;
		border-radius: 40px;
	}

	.navi .btn:hover{
    text-decoration: underline;
  }
	.news .btn.next:not(.disabled),
	.news .btn.prev:not(.disabled),
	.navi .btn.next:not(.disabled),
	.navi .btn.prev:not(.disabled) {
		background-color: rgba(88, 129, 112, 0.2);
		box-shadow: 0px 0px 0px 1px rgb(88, 129, 112) inset;
		color: rgb(88, 129, 112);
	}
	.news .btn.disabled,
	.navi .btn.disabled	{
		background: #efefef;
		color: #d5d5d5;
	}
	.news .btn.overview i,
	.navi .btn.overview i	{
		display: inline-block;
		-webkit-transform: rotate(90deg);
				transform: rotate(90deg);
	}

	body.home .contact {
		padding-top: 75px;
		padding-bottom: 75px;
	}
	.contactform li {
		position: relative;
		line-height: 0;
		font-size: 0;
	}
	.contactform label,
	.contactform small,
	.contactform input,
	.contactform select,
	.contactform textarea {
		display: inline-block;
		vertical-align: top;
		font-size: 14px;
		line-height: 24px;
		padding: 4px 10px;
		margin-bottom: 10px;
	}
	.contactform .g-recaptcha {
		display: inline-block;
		vertical-align: top;
		margin-bottom: 10px;
	}
	.contactform label {
		padding: 4px 0;
		width: 100%;
	}
	.contactform small {
		width: calc(100% - 24px);
		font-size: 14px;
		line-height: 20px;
	}
	.contactform input,
	.contactform select,
	.contactform textarea {
		width: 100%;
		border: 1px solid var(--clr-grey-d5d);
		color: var(--clr-grey-585);
	}
	.contactform textarea {
		height: 120px;
	}
	.contactform input[type="checkbox"] {
		padding: 0;
		margin: 4px 0;
		width: 24px;
		height: 24px;
		position: relative;
	}
	.contactform input[type="checkbox"]:after {
		content: '';
		position: absolute;
		left: 3px;
		top: 3px;
		width: 16px;
		height: 16px;
		background-color: transparent;
	}
	.contactform input[type="checkbox"]:checked:after {
		background-color: var(--clr-orange);
	}

/*  =================================================================
    FOOTER
    ================================================================== */
	footer {
		margin-top: 30px;
		background-color: var(--clr-grey_dd);
		padding: 45px 20px 20px 20px;
	}
	body.home footer {
		margin-top: 0;
	}

	footer .logo-link img {
		width: auto;
		height: 95px;
	}
	footer .logo-link {
		display: block;
		margin-bottom: 20px;
	}	
	footer h2 {
		font-size: 16px;
		line-height: 38px;
		font-weight: 550;
		letter-spacing: 0;
	}
	footer p, footer li {
		text-align: left;
		font-size: 14px;
		line-height: 22px;
	}
	footer li:hover,
	address a:hover,
	footer .copy p a:hover{
		text-decoration:underline;
	}
	footer p:not(:last-of-type) {
		margin-bottom: 34px;
	}
	footer p span {
		font-size: 10px;
	}
	footer p span.soci {
		display: inline-block;
		margin-top: 34px;
		font-size: 24px;
	}
	footer a.button {
		display: inline-block;
		background-color: #89857C;
		color: var(--clr-white);
		font-size: 16px;
		line-height: 24px;
		padding: 8px 16px;
		border-radius: 40px;
	}
	footer .copy{
		margin-top: 25px;
	}
	footer .copy p {
		margin: 0;
		text-align: left;
		font-size: 11px;
	}
	footer .copy p,
	footer .copy p a {
		color: rgba(0,0,0,0.4);
	}
	

    /*  =================================================================
    MEDIA QUERIES
    ================================================================== */
    /* MOBILE */
    @media only screen and (min-width: 572px) { }

    @media only screen and (min-width: 572px) and (orientation: landscape) { }
    @media only screen and (min-width: 572px) and (orientation: portrait) { }

    /* IPADS portrait */
    @media only screen and (min-width: 768px) and (min-height: 600px) { }

    /* IPADS */
    @media only screen and (min-width: 768px) {
		
		header,
		.etalage {
			height: 475px;
		}		
		header {
			height: calc(100vh - 140px);
		}
		header.withImg img {
			height: 400px;
		}
		
		.home header,
		.home section:not(.timeline):not(.title) {
			margin-bottom: 100px;
		}
		.etalage + .carousel {
			margin-top: -100px;
		}
		
		header hgroup,
		.etalage hgroup {
			max-width: 100%;
			left: 50%;
			top: 50%;
			bottom: auto;
			-webkit-transform: translate(-50%, -70%);
					transform: translate(-50%, -70%);
		}
		
		header h1,
		header h2,
		.etalage h2 {
			font-size: 50px;
			line-height: 55px;
		}
		
		.etalage h1,
		.etalage h2 {
			font-size: 65px;
			line-height: 1.1em;
		}
		
		.designphase figure figcaption {
			font-size: 19px;
		}
		.designphase figure figcaption:hover {
			text-decoration: underline;
		}
		
		section.about {
			padding: 100px 0;
		}
		
		/*
		.timeline-line {
			position: absolute;
			left: 270px / 100px;
		}
		.timeline .card-body.left {
			max-width: 190px / 80px;
			font-size: 45px / 26px;
			line-height: 46px / 33px;
		}
		.timeline .card-body.left:after {
			right: -88px / -28px;
		}
		.timeline .card-body.right {
			max-width: calc(100% - 360px / 120px);
			margin-left: 170px / 40px;
		}
		.timeline .card-body.right .card-content {
			padding: 32px / 16px;
		}
		.timeline .card h3 {
			font-size: 20px / 18px;
			line-height: 38px / 28px;
			margin-bottom: 18px / 8px;
		} 
		.timeline .card p {
			font-size: 15px / 13px;
			line-height: 25px / 21px;
		}
		*/
		
		details answer {
			padding: 0 38px 20px 20px;
		}
	
		.socials,
		.news {
			padding-top: 50px;
		}
		
		footer {
			margin-top: 60px;
		}
	}

    /* IPADS landscape AND mini laptops */
    @media only screen and (min-width: 960px) {
		
		header:not(.text) h1,
		header h2,
		.etalage h2,
		.etalage h3 {
			font-size: 65px;
			line-height: 70px;
		}
		header h1,
		header h2,
		.etalage h2 {
			font-size: 34px;
			line-height: 36px;
		}
		header h2 {
			margin-top: 30px;
		}
		header h1,
		.etalage h2 {
			font-size: 65px;
		}
		.etalage h1,
		.etalage h2 {
			font-size: 44px;
			line-height: 50px;
		}
		.etalage h2:after {
			font-size: 60px;
			line-height: 70px;
		}
		
		h2, .about h3 {
			font-size: 40px;
			line-height: 50px;
		}
	
        .mobileBTN,
		nav .row ul li.topRow {
			display: none;
		}
		nav .row > .topRow {
			display: block;
			right: 0;
			width: 100%;
			background-color: transparent;
			top: 5px;
			padding: 0;
		}
		nav .topRow a {
			line-height: 36px;
		}		
		nav .row {
			justify-content: space-between;
		}
		nav .topRow + .logo-link {
			margin: 21px 0;
		}
		nav .logo-link img {
			height: 100px;
		}
		nav .row ul {
			display: inline-block;
			text-align: right;
		}
	
		nav .row ul a.cta {
			margin-top: 0;
		}
		nav .row ul a.cta:hover {
		  text-decoration:underline;
		}
		nav .row ul li:not(:nth-child(1)):not(:nth-child(2)),
		nav .topRow a:not(:first-of-type) {
			margin-left: 20px;
		}
		nav .row ul li:not(:nth-child(1)) {
			margin-left: 20px;
		}
		
		header {
			height: calc(100vh - 204px);
		}
        .etalage {
            height: 771px;
        }
        .etalage.project {
            height: 400px;
			margin-bottom: 40px;
        }
		.etalage.project hgroup {
			-webkit-transform: translate(-50%, -50%);
					transform: translate(-50%, -50%);
		}
		
		.breadcrumb {
			padding: 0px;
		}
		
		.about .text {
			padding: 100px 0 50px;
		}
		
		.swiper.reviews .swiper-slide,
		.reviews article {
			padding: 85px 67px 40px 67px;
		}
		.swiper.reviews .swiper-slide .icon,
		.reviews article .icon {
			left: 60px;
			top: 20px;
		}
		
		/*details summary {
			font-size: 20px;
			line-height: 90px;
			padding: 0 38px;
		}
		details answer {
			padding: 0 114px 38px 38px;
		}*/
		
		.projects .swiper-button-next {
			right: var(--swiper-navigation-sides-offset, 0);
			top: auto;
			bottom: 150px;
		}
		.projects .col.img {
			max-width: 60%;
			padding: 0;
		}
		.projects .col.txt {
			max-width: 30%;
			padding: 65px 30px 50px 30px;
		}
		
		.projects .swiper-button-prev, .projects .swiper-button-next {
			margin-top: 0;
		}
		
		.socials,
		.news {
			padding-top: 75px;
		}
		
		.navi span {
			float: right;
			display: block;
			margin-top: 0;
		}
		
		.projects .text-label {
			height: 32px;
			font-size: 16px;
			line-height: 32px;
			top: 37px;
		}
		.projects .text-label:before {
			border-bottom: 16px solid #626360;
			border-left: 18px solid transparent;
			top: -16px;
			left: 1px;
		}
		
		.contactform label {
			width: 300px;
		}
		.contactform small {
			width: calc(100% - 324px);
		}
		.contactform input,
		.contactform select,
		.contactform textarea {
			width: calc(100% - 300px);
		}
		/*.contactform button {
			margin-left: 300px;
		}*/
		
		.reviews article {
			margin-top: 25px;
		}
		
		.timeline-line {
			left: 270px;
		}
		.timeline .card-body.left {
			max-width: 190px;
			font-size: 45px;
			line-height: 46px;
		}
		.timeline .card-body.left:after {
			right: -88px;
		}
		.timeline .card-body.right {
			max-width: calc(100% - 360px);
			margin-left: 170px;
		}
		.timeline .card-body.right .card-content {
			padding: 32px;
			margin-bottom: 50px;
		}
		.timeline .card h3 {
			font-size: 20px;
			line-height: 38px;
			margin-bottom: 18px;
		} 
		.timeline .card p {
			font-size: 15px;
			line-height: 25px;
		}
		
		section.carousel {
			padding: 60px 20px;
		}
		
		footer {
			margin-top: 100px;
		}
    }

    /* SMALL SCREENS */
    @media only screen and (min-width: 1280px) {		
		
		.projects .col.img {
			max-width: 67%;
		}
		.projects .col.txt {
			max-width: 33%;
			padding: 65px 100px 50px 50px;
		}

		/*footer .pages {
			padding-left: 44px;
		}*/
		
	}

    /* WEIRD HEADER TEXT BREAKPOINT ~ must be paddings or margins */
    @media only screen and (min-width: 1340px) { }

    /* SMALL SCREENS */
    @media only screen and (min-width: 1440px) {
		
		.projects .swiper-button-next {
			right: var(--swiper-navigation-sides-offset, 0);
			top: auto;
			bottom: 190px;
		}
		/*.about .text {
			padding: 100px;
		}*/
		
	}
    @media only screen and (min-width: 1600px) { }
    @media only screen and (min-width: 1920px) { }

/*  =================================================================
    TOUCH DEVICES
    ================================================================== */
    @media (pointer:coarse) { }

/*  =================================================================
    HOVER STATES
    ================================================================== */
    @media (any-hover: hover) {
		
		.breadcrumb a:hover {
			color: var(--clr-grey_5d);
		}
		.WYSIWYG p a {
			text-decoration: none;
		}
		.WYSIWYG p a:hover {
			text-decoration: underline;
		}
	}
