@import url('https://rsms.me/inter/inter.css');
html { font-family: 'Inter UI', sans-serif; }

*{
	margin: 0;
	padding: 0;
}

html, body, select, button {
	font-family: "Inter UI", -apple-system,"Helvetica Neue",Arial,sans-serif;
	/*
	"DM Sans", 
	*/
	text-rendering: optimizelegibility;
	
	-webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    -moz-osx-font-smoothing: grayscale;
	
	color: #333333;
}

html, body{
	overflow-x: hidden;
}

button, select, .btn{	
	outline: none;
	-webkit-user-select: none;  
	-moz-user-select: none;    
	-ms-user-select: none;      
	user-select: none;
	
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(256,256,256,0);
	
	outline: none;
	border: none;
}

select::-ms-expand {
    display: none;
}

a{
	color: inherit;
	text-decoration: none;
	
	cursor: pointer;
	outline: none;
}

h1{
	font-weight: 700;
    margin: 8px;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: normal;
    padding-top: 20px;
    padding-bottom: 10px;
	
    text-overflow: ellipsis;
    white-space: nowrap;
	overflow: hidden;
}

h2{
	font-weight: 700;
    line-height: 30px;
	
    font-size: 28px; /* was 30px */
    line-height: 40px;
	
    letter-spacing: normal;
    padding-top: 20px;
	padding-bottom: 4px;
	overflow-wrap: break-word;
}

/*
h2{
    overflow-wrap: break-word;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.44444em;
    margin: 0px;
	margin-bottom: 2px;
}
*/

h3{
	font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: normal;
    padding-bottom: 20px;
	overflow-wrap: break-word;
}

h4{
	font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: normal;
    padding-bottom: 20px;
	overflow-wrap: break-word;
	text-align: left;
}

h5{
	font-size: 17px;
	font-weight: 500;
    -webkit-font-variant-ligatures: none;
    font-variant-ligatures: none;
    height: 54px;
    outline: none;
    padding: 16px 0px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-transform: capitalize;
}

p{
	font-size: 15px;
	font-weight: 400;
	line-height: 21px;
}

img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

input{
    background: transparent;
    border: none;
    font-family: 'Inter', sans-serif;
	font-size: 17px;
    -webkit-font-variant-ligatures: none;
    font-variant-ligatures: none;
    height: 54px;
    outline: none;
    padding: 14px 20px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	/*
	text-transform: capitalize;
	*/
}

input::placeholder{
	text-transform: none;
}

/***********************************
HEADER
***********************************/
header{
	position: relative;

	position: fixed;
	left: 0px;
	right: 0px;

	z-index: 99;

	background: rgba(244,247,251,0.8);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);

	padding-top: 10px;
	padding-bottom: 10px;

	pointer-events: none;
}

@media screen and (min-width: 900px){
	header{
		padding-bottom: 40px;

		background-image: linear-gradient(#FFFFFF, rgba(256,256,256,0.7), rgba(256,256,256,0));
		background: linear-gradient(to bottom, #FFFFFF, rgba(256,256,256,0.7), rgba(256,256,256,0));	

		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}
}

header.nav-open{
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

@media screen and (min-width: 900px){
	header.nav-open{
		backdrop-filter: blur(15px);
		-webkit-backdrop-filter: blur(15px);
	}
}

.informatie-pagina header{
	background: rgba(0,0,0,0);

	position: absolute;
	
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

@media screen and (min-width: 900px){
	.informatie-pagina header,
	.configurator-pagina header{
		/*
		background: rgba(244,247,251,0.8);

		backdrop-filter: blur(15px);
		-webkit-backdrop-filter: blur(15px);
		*/

		background-image: linear-gradient(#FFFFFF, rgba(256,256,256,0.7), rgba(256,256,256,0));
		background: linear-gradient(to bottom, #FFFFFF, rgba(256,256,256,0.7), rgba(256,256,256,0));	

		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}
/*	.informatie-pagina header{
		position: fixed;
	}
*/	
}

.header-container{
	position: relative;
	max-width: 1333px; /* was 1240px */
	margin: auto;

	pointer-events: auto;
	pointer-events: visiblePainted;
}

@media screen and (min-width: 900px){
	.header-container{
		margin-top: 20px;
	}
}

.header-container nav{
	position: fixed;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	
	background: rgba(0,0,0,0.8);

	color: #FFFFFF;

	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	
	z-index: 1;
	
	visibility: hidden;
	opacity: 0;
	
	-webkit-transition:all .2s linear;
	-o-transition:all .2s linear;
	transition:all .2s linear
}

@supports (backdrop-filter: blur()) or (-webkit-backdrop-filter: blur()) {
	.header-container nav{
		background: rgba(0,0,0,0.3);
	}
}

.nav-container{
	padding-top: 100px;
    padding-bottom: 0px;
    min-height: calc(100% - 100px);
}

@supports (backdrop-filter: blur()) or (-webkit-backdrop-filter: blur()) {
	.nav-container{
		backdrop-filter: blur(50px);
		-webkit-backdrop-filter: blur(50px);
	}
}

@media screen and (min-width: 900px){
	.nav-container{
		padding: 0px;
		padding-right: 20px;
		height: 44px;
	
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}
}

.header-container nav.show{
	visibility: visible;
	opacity: 1;

	-webkit-transition:all .2s linear;
	-o-transition:all .2s linear;
	transition:all .2s linear
}

@media screen and (min-width: 900px){
	.header-container nav{
		position: relative;
		display: inline-block;
		vertical-align: top;
		
		float: right;
		
		background: transparent;
		
		overflow-y: visible;
		
		z-index: 0;
		
		visibility: visible;
		opacity: 1;
		
		color: #333333;
	}
}

.header-container nav .nav-option{
	cursor: pointer;
	
	position: relative;
	display: block;
	text-align: left;
	text-align: center;
	
	padding-top: 20px; /* was 30px */
	
	
	outline: none;
	-webkit-user-select: none;  
	-moz-user-select: none;    
	-ms-user-select: none;      
	user-select: none;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	cursor: pointer;
	-webkit-tap-highlight-color: rgba(256,256,256,0);

	outline: none;
	border: none;
}

.header-container nav .nav-option span{
	position: relative;
	vertical-align: middle;
	display: inline-block;
	font-size: 19px;
	font-weight: 600;
	padding-top: 0px 0px; /* was 15px 0px */
	padding-bottom: 30px;
}
	
@media screen and (min-width: 900px){
	.header-container nav .nav-option{
		height: 44px;
		cursor: pointer;
		
		position: relative;
		display: inline-block;
		vertical-align: top;
		width: 130px; /* was 140px, daarna 135 */
		text-align: center;	
		
		padding: 0px;
	}

	.header-container nav .nav-option#bouwenmethout{
		/*text-align: left;*/
		width: 160px;
		padding-right: 5px;
		/*
		padding-left: 20px;
		*/
	}
	
	.header-container nav .nav-option#ontwerpproces{
		/*text-align: left;*/
		width: 150px;
		/*
		padding-right: 25px;
		*/
		padding-left: 5px;		
	}

	.header-container nav .nav-option#contact{
		text-align: right;
		width: 80px;
		padding-right: 10px; /* was 25px */
		padding-left: 0px; /* was 20px */
	}
	
	.header-container nav .nav-option#blog{
		width: 80px;
		/*
		padding-right: 25px;
		padding-left: 20px;
		*/
	}	
	
	.header-container nav .nav-option#mijnverhaal{
		width: 135px;
		/*
		padding-right: 25px;
		padding-left: 20px;
		*/
	}	

	.header-container nav .nav-option#mantelzorgwoning{
		width: 180px;
	}
	
	.header-container nav .nav-option#tuinhuis{
		width: 100px;
	}
	
	.header-container nav .nav-option span{
		position: relative;
		vertical-align: middle;
		display: inline-block;
		line-height: 44px;
		font-size: 18px;
		font-weight: 500;
		padding: 0px;
		padding-bottom: 5px;
	}

	.header-container nav .nav-option:hover span{
		font-weight: 700;
		/*
		color: #1c528a;
		*/
	}
}

@media screen and (min-width: 900px){
	.header-container nav .nav-option#blog,
	.header-container nav .nav-option#bouwenmethout,
	.header-container nav .nav-option#ontwerpproces{
		display: none;
	}
}

@media screen and (min-width: 1050px){
	.header-container nav .nav-option#ontwerpproces{
		display: inline-block;
	}
}

@media screen and (min-width: 1230px){
	.header-container nav .nav-option#bouwenmethout{
		display: inline-block;
	}
}

@media screen and (min-width: 1315px){
	.header-container nav .nav-option#blog{
		display: inline-block;
	}
}

/***********************************
DROPDOWN
***********************************/
.nav-dropdown {
	position: relative;
	
	outline: none;
	-webkit-user-select: none;  
	-moz-user-select: none;    
	-ms-user-select: none;      
	user-select: none;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	cursor: pointer;
	-webkit-tap-highlight-color: rgba(256,256,256,0);

	outline: none;
	border: none;
}

.nav-dropdown a{
	color: rgba(256,256,256,0.8);
	
	position: relative;
	display: block;
	
	font-size: 17px;
	line-height: 50px;
	/*
	border-bottom: 1px solid rgba(256,256,256,0.1);
	*/
}

.nav-dropdown a:hover{
	color: #FFFFFF;
}

@media screen and (min-width: 900px){
	.nav-dropdown {
	  display: none;
	  position: absolute;
	  background-color: #FFFFFF;
	  min-width: 200px;

	  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
	  
	  padding: 12px 16px;
	  border-radius: 4px;
	  z-index: 1;
	  
	  text-align: left;
	  
	  left: 8px;
	}
	
	.nav-option:hover .nav-dropdown {
	  display: block;
	}

	.nav-dropdown a{
		color: #333333;
		
		position: relative;
		display: block;
		
		font-size: 17px;
		line-height: 44px;
		padding-left: 5px;
		
		border: none;
	}

	.nav-dropdown a:hover{
		color: #1c528a;
		font-weight: 600;
	}
}

/***********************************
CLOSE
***********************************/
.close{
	position: fixed;
	display: inline-block;
	right: 15px;
	top: 15px;
	white-space: nowrap;
	
	color: #FFFFFF;
}

@media screen and (min-width: 900px){
	.close{
		display: none;
	}
}

.popup-close{
	position: absolute;
	display: inline-block;
	right: 15px;
	top: 15px;

	white-space: nowrap;
	
	color: #1c528a;
}

.close-icon {
	display: inline-block;
	vertical-align: top;
	position: relative;
	height: 55px;
}

.close svg{
	vertical-align: top;
    height: 35px;
    width: 35px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
	
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.close svg:hover{
	background: rgba(256,256,256,0.1);
	
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

/***********************************
LOGO
***********************************/
.logo{
	position: relative;
	display: inline-block;
	vertical-align: top;
	padding-left: 15px;
	white-space: nowrap;
	font-family: 'Rubik', sans-serif;
	/**	
	opacity: 0.9; 
	**/

}

.logo-mark{
	display: inline-block;
	vertical-align: top;
	position: relative;
	width: 100px;
	padding: 0px 2px;
	margin-top: 0px;
	
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}
.informatie-pagina .logo-mark{
	display: none;
}

@media screen and (min-width: 800px){
	.logo-mark{
		padding-left: 7px;
	}
}
@media screen and (min-width: 900px){
	.configurator-pagina .logo-mark{
		padding-left: 7px;
	}
}

@media screen and (min-width: 900px){
	.informatie-pagina .logo-mark{
		display: inline-block;
	}
}

.logo-mark-white {
	display: none;
}
.informatie-pagina  .logo-mark-white{
	display: inline-block;
}

@media screen and (min-width: 900px){
	.informatie-pagina .logo-mark-white{
		display: none;
	}
}

/*
.logo-desktop{
	display: none;
}

@media screen and (min-width: 600px){
	.logo-mobile{
		display: none;
	}
	.logo-desktop{
		display: block;
	}
}
*/
.informatie-pagina .logo-mark,
.configurator-pagina .logo-mark {
	width: 100px;
}

@media screen and (min-width: 900px){
	.informatie-pagina .logo-mark,
	.configurator-pagina .logo-mark {
		width: 100px;
	}
}

.logo-mark.small{
	width: 80px;
	
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}

.logo svg{
	display: inline-block;
	vertical-align: top;
	height: 44px;
}

.logo h2{
	display: inline-block;
	vertical-align: top;
	height: 44px;
	font-size: 17px;
	font-weight: 500;
	color: #FFFFFF;
}

/*
#logo line{
	color: red;
}
*/

.logo h1{
	font-size: 19px;
	line-height: 44px;
	font-weight: 400;
	padding-left: 5px;
	display: inline-block;
}

/***********************************
MENU
***********************************/
.menu{
	position: absolute;
	display: inline-block;
	right: 10px;
	top: -5px;
	white-space: nowrap;
}

@media screen and (min-width: 900px){
	.menu{
		display: none;
	}
}

.menu-icon {
	display: inline-block;
	vertical-align: top;
	position: relative;
	height: 50px;
}

/***********************************
MENU LETTERS VOOR ICON
***********************************/
.menu-icon:before{
    content: "MENU";
    font-size: 13px;
    font-weight: 700;
    position: absolute;
    left: -35px;
    top: 0px;
    padding: 17px 0px;
}

.informatie-pagina .menu svg{
	color: #FFFFFF;
}

.menu svg{
	vertical-align: top;
    height: 30px;
    width: 30px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
	
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.menu svg:hover{
	background: rgba(256,256,256,0.1);
	
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}


/***********************************
IMAGE
***********************************/
.image-wrapper{
	position: relative;
    contain: strict;
	z-index: 0;
	height: 300px;
	/*
	margin-top: -40px;
	*/
}

@media screen and (min-width: 600px){
	.image-wrapper{
		position: relative;
		margin-top: 0px;
		/*
		position: absolute;
		top: 0px;
		left: 0px;
		right: 0px;
		bottom: 0px;
		*/
		height: calc(100vh - 50px);
		height: 100vh;
		min-height: 800px;
	}
}

.image-container{
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 100%;
    width: 100%;
}

.image,
.image-bg{
	position: absolute;
    animation-name: image_fadein;
    animation-duration: 400ms;
    animation-timing-function: ease-out;
    background-size: cover;
    background-position: 0% 50%;
    background-repeat: no-repeat;
	width: 100%;
    height: 100%;
}

.image.hide{
	display: none;
}

@-webkit-keyframes image_fadein {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/***********************************
MAIN
***********************************/
.main {
	position: relative;
	max-width: 1580px;
	/*
	max-width: 1240px;
	*/
	margin: auto;
	font-size: 0px;
	padding-bottom: 8px;
	text-align: center;
}

.main.over-ons{
	max-width: 1225px;
	padding-bottom: 0px;
}

@media screen and (min-width: 800px){
	.main {
		padding: 0px 8px;
		padding-bottom: 8px;
	}
}

@media screen and (min-width: 1050px){
	.main {
		padding-bottom: 8px;
	}
}

/***********************************
SITE DESCRIPTION
***********************************/
.site-description {
	position: relative;
	background: rgba(247,247,247,0.9);
	background: #1c528a;
	background-image: linear-gradient(#1c528a, #0E3054);
	background: linear-gradient(to right, #0E3054, #1c528a);
	color: #FFFFFF;
	padding: 50px 0px;
	/*
	padding-top: 20px;
	*/
	text-align: center;
	margin-top: 89px;
}

.site-description.white{
	background: #FFFFFF;
	color: #333333;
	margin: 0;
	padding-bottom: 20px;
}

@media screen and (min-width: 1050px){
	.site-description{
		display: none;
	}
}

.site-description h1{
	font-size: 30px;
}

.site-description p{
	font-size: 17px;
	line-height: 1.5;
	font-weight: 400;
	max-width: 700px;
	margin: auto;
	padding: 0px 20px;
}

@media screen and (min-width: 1050px){
	.site-description p{
		font-size: 19px;
	}
}

.desc-icon {
	display: inline-block;
	vertical-align: top;
	position: relative;
	height: 50px;
	padding-bottom: 10px;
}

.desc-icon svg{
	color: #FFFFFF;
	vertical-align: top;
    height: 50px;
    width: 50px;
}

/* OVER ONS */
.site-description.over-ons p{
	max-width: 800px;
}

/* CONTACT */
.site-description.contact{
	margin-bottom: 12px;
}

/* PRODUCT PAGINA */
.informatie-pagina .site-description{
	margin-top: 12px;
	margin-bottom: 12px;
}

/***********************************
SECTION
***********************************/
.section{
	position: relative;
	margin-top: 0px; /* deze was 30px */
	margin-bottom: 30px;
}

.informatie-pagina .section,
.configurator-pagina .section{
	margin-bottom: 0px;
}

.section h2{
	font-size: 28px;
	line-height: 34px;
	padding-bottom: 20px;
}

.informatie-pagina .section h2,
.configurator-pagina .section h2{
	padding-bottom: 0px;
}

/***********************************
SECTION LIGHTGREY
***********************************/
.section.lightgrey{
	background: #f4f7fb;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: 12px;
	margin-bottom: 12px;
	
	background-image: linear-gradient(#f4f7fb, #f8fafc);
}

.section-content{
	position: relative;
	max-width: 800px;
	margin: auto;
	font-size: 0px;
	padding: 0px 20px; 
	padding-bottom: 15px;
	text-align: center;
}

.section-content img{
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 20px;
	width: calc(33% - 18px);
}

.section-content.left{
	text-align: left;
}

.section-text p{
	font-size: 18px;
	line-height: 1.5;
	padding-top: 15px;
}

.section-row{
	position: relative;
	text-align: center;
	margin-top: 30px;
}

.informatie-pagina .section-row,
.configurator-pagina .section-row{
	margin-bottom: 30px;
}

.section-row.left{
	text-align: left;
}

.section ul{
    position: relative;
    display: block;
    padding: 8px 0px;
    font-size: 16px;
    font-weight: 400;
	
	padding-left: 20px;
	padding-top: 20px;
}

.section ul li{
	list-style-type: circle;
	list-style-position: outside;
	color: #1c528a;
}

.section ul li p{
	display: inline-block;
	width: 310px; /* was 235px */
	font-weight: 500;
	line-height: 30px;
	padding-top: 0px;
	
	color: #333333;
}

.section ul li span{
	display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
	
	color: #333333;
}

@media screen and (min-width: 800px){
	.section ul li p,
	.section ul li span{
		line-height: 40px;
	}
}

.section .spec-column{
	display: block;
	padding-bottom: 15px;
}

@media screen and (min-width: 600px){
	.section ul li span{
		display: inline;
	}
		
	.section .spec-column{
		display: inline-block;
		vertical-align: top;
		padding-bottom: 0px;
		width: calc( 100% - 315px);
	}
}

/***********************************
SECTION CONTENT SPECS
***********************************/
.main.content-specs{
	max-width: 1240px;
	font-size: 0px;
	margin: 0px 15px;
	padding: 20px 0px;
	padding-bottom: 60px;
}
.info-pagina .main.content-specs{
	padding-bottom: 40px;
	max-width: 700px;
	margin: auto;
}
@media screen and (min-width: 600px){
	.info-pagina .main.content-specs.bedankt-container{
		padding: 120px 0px;
	}
}
@media screen and (min-width: 1080px){
	.main.content-specs{
		margin: auto;
	}
	.info-pagina .main.content-specs{
		max-width: 1050px;
	}
}

.section-content-specs{
	position: relative;
}

.section-content-specs a:hover{
  /* color:#1c528a; */
  text-decoration:none;
}

.left.section-content-specs h2{
	padding-bottom: 20px;
	text-align: left;
}
.left.section-content-specs p{
    font-size: 17px;
    line-height: 1.5;
    color: #616161;
    padding-bottom: 20px;
	text-align: left;
}
.left.section-content-specs.half-width h3{
	font-size: 28px;	
	padding-top: 30px;
	padding-left: 20px; /* hier gebleven */
	padding-bottom: 20px;
	text-align: left;
}
.left.section-content-specs.half-width h4{
	font-size: 28px;
	padding-top: 0px;
	padding-left: 20px;
	padding-bottom: 20px;
	text-align: left;
}
.left.section-content-specs.half-width p{
	padding-left: 20px;
	padding-right: 10px;
    font-size: 17px;
    line-height: 1.5;
    color: #616161;
    padding-bottom: 20px; /* was 0px */
}

@media screen and (min-width: 1080px){
	.left.section-content-specs.half-width h3{
		padding-left: 40px;
	}
	.left.section-content-specs.half-width h4{
		padding-left: 40px;
	}
	.left.section-content-specs.half-width p{
		padding-left: 40px;
	}
}

/* AANGEMAAKT DOOR REMCO */
.center.section-content-specs h2{
	font-size: 40px;
	padding-top: 100px;
	padding-bottom: 30px; /* was 20 */
	text-align: center;
}
.center.section-content-specs h3{
	font-size: 40px;
	padding-top: 20px;
	padding-bottom: 0px; /* was 20 */
	text-align: center;
	line-height: 1;
}
.center.section-content-specs h4{
	font-size: 30px;
	padding-top: 20px;
	padding-bottom: 0px;
	margin-bottom: -30px;
	text-align: center;
}
.center.section-content-specs p{
    font-size: 17px;
    line-height: 1.5;
    color: #616161;
	padding: 0px 20px;
    padding-bottom: 20px; /* was 20 */
	text-align: center;
}
@media screen and (min-width: 1080px){
	.center.section-content-specs h2{
		padding-top: 120px;
		margin-top:-20px
	}	
	.center.section-content-specs h4{
		padding-top: 20px;
		margin-bottom: -30px;
	}
}	
/* END REMCO */

.section-content-specs.buttons.text{
		margin: 12px;
		margin-top: 0px;
		margin-left: 6px;
		padding-bottom: 20px;
	}

@media screen and (min-width: 1080px){
	.section-content-specs{
		position: relative;

		display: inline-block;
		vertical-align: top;
		margin: 12px;
		margin-right: 36px;
		margin-left: 12px;

		margin-bottom: 0px;
		width: calc(66% - 48px);
	}
	
	.info-pagina .section-content-specs{
		width: calc(100% - 48px);
	}
	
	.section-content-specs.buttons{
		margin: 12px;
		margin-left: 6px;
		width: calc(33% - 16px);
	}
	
	.section-content-specs.buttons.text{
		margin: 12px;
		margin-top: -35px;
		margin-left: 6px;
		width: calc(50% - 16px);
	}
	
	.section-content-specs.centeredbuttons{
		left: 50%;
		transform: translate(-50%, 0);
		padding: 5px;
		margin: 12px;
		margin-top: -50px;
		margin-left: 6px;
		width: calc(33% - 16px);
	}
}

.section-content-specs.centeredbuttons{
	margin-top: -50px;
	padding: 15px;
}

.button-container{
	margin: auto;
	max-width: 500px;
	margin-top: 40px;
}

@media screen and (min-width: 1080px){
	.button-container{
		margin-top: 86px;
		max-width: none;
	}
}

.button-container .specs-button{
	width: 100% !important;
}

.calltoaction-mobile-container{
	margin: auto;
	margin-bottom: -60px;
	max-width: 500px;
	margin-top: 0;
}

@media screen and (min-width: 1080px){
	.calltoaction-mobile-container{
		margin-top: 0;
		max-width: none;
	}
}

.calltoaction-mobile-container .specs-button{
	width: calc(100% - 20px) !important;
}

.calltoaction-container{
	margin: auto;
	max-width: 500px;
	margin-top: 40px;
	
	display: none;
}

@media screen and (min-width: 1080px){
	.calltoaction-container{
		margin-top: 30px;
		max-width: none;
		margin-top: 28px; /* bestond niet */
		
		display: block;
	}
}

.calltoaction-container .specs-button{
	width: calc(100% - 20px) !important;
}

.specs-button{
	position: relative;
	padding: 15px 0px;

	border-radius: 8px !important;
	/*
	border-radius: 4px;

	background: #1c528a;
	background-image: linear-gradient(#0E3054 50%, #1c528a);
	background: linear-gradient(to right, #0E3054, #1c528a);
	
	color: #FFFFFF;
	*/
	text-align: center;
	
	font-size: 17px !important; /* was 19px */
	font-weight: 600;

	display: inline-block;
	vertical-align: top;
	
	margin-left: auto;
	margin-right: 0px;

	margin-bottom: 15px;

	/*
	border: 2px solid #333333;
	*/
	background: #F1ECE7;
	background: #e3f1ff;
}

.specs-button.afspraak{
	border: none;
	background: #1c528a;
	background-image: linear-gradient(#0E3054 50%, #1c528a);
	background: linear-gradient(to right, #0E3054, #1c528a);
	
	color: #FFFFFF;
}

.specs-button.white{
	border: none;
	background: none;
	color: #333333;
}

.specs-button.schetsontwerp{
	border: none;
	background: #1c528a;
	background-image: linear-gradient(#0E3054 50%, #1c528a);
	background: linear-gradient(to right, #0E3054, #1c528a);
	
	color: #FFFFFF;
}

.specs-button.carousel-btn{
	margin-top: -65px;
	margin-left: 33px;
	border: none;
	background: #1c528a;
	background-image: linear-gradient(#0E3054 50%, #1c528a);
	background: linear-gradient(to right, #0E3054, #1c528a);
	text-align: center;
	max-width: 304px;
	width: 100% !important;
	color: #FFFFFF;
}

@media screen and (max-width: 800px){
	.specs-button.carousel-btn{
		display: none;
	}
}

@media screen and (max-width: 1050px){
	.specs-button.carousel-btn{
	margin-top: -20px;
	}
}

.specs-button.vraagaan{
	border: none;
	background: #1c528a;
	background-image: linear-gradient(#0E3054 50%, #1c528a);
	background: linear-gradient(to right, #0E3054, #1c528a);
	color: #FFFFFF;

	margin-top: -30px;
}

@media screen and (min-width: 1080px){
	.specs-button.vraagaan{
		margin-top: -40px;
		max-width: 330px;
	}
}

/***********************************
STEPS
***********************************/
.step-square{
	position: relative;
	display: block;

	margin: 15px;
	
	font-size: 0px;
	
	text-align: center;

	margin-bottom: 0px;
	
    border-radius: 10px;
    overflow: hidden;
	
	
	background: #f4f7fb;
}
	
@media screen and (min-width: 1080px){
	.step-square{
		position: relative;
		
		height: 220px;
		
		display: inline-block;
		vertical-align: top;

		margin: 12px;
		margin-right: 6px;
		margin-left: 12px;

		margin-bottom: 0px;
		width: calc(50% - 18px);
	}
	
	.step-square:nth-child(2n + 1){
		margin-left: 6px;
		margin-right: 12px;
	}
}

.step-content{
	position: relative;
	padding: 40px;
}

.step-number{
	position: relative;
	margin-bottom: 40px;
}

@media screen and (min-width: 600px){
	.step-number{
		position: relative;
		display: inline-block;
		vertical-align: top;
		width: 100px;
		text-align: left;
		margin-bottom: 0px;
	}
}

.step-number p{
	font-size: 58px;
	font-size: 48px;
	font-weight: 700;
	color: #1c528a;
	margin-top: 19px;
}

.step-text{
	position: relative;
	display: inline-block;
	vertical-align: top;
}

@media screen and (min-width: 600px){
	.step-text{
		width: calc(100% - 100px);
		text-align: left;
	}
}

.step-text h2{
	font-size: 22px;
	line-height: 28px;
	font-weight: 700;
	padding-top: 0px;
	margin-bottom: 5px;
}

.step-text p{
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
}

/***********************************
GOOGLE MAPS
***********************************/

.gmap_canvas {
position:relative;
overflow:hidden;
background:none!important;
height:500px;
width: 100%;
margin-bottom: 12px;
}
#gmap_canvas{
	width: 100%;
	/*
    -webkit-filter: grayscale(100%);
       -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
         -o-filter: grayscale(100%);
            filter: grayscale(100%);
	*/
}

.contact h6{
  color:#fff;
  font-size:19px;
  line-height: 30px;
  margin-top: -5px;
}

.contact .address li{
  font-size: 17px;
  line-height: 29px;
}

.contact .address span{
  font-weight: 700;
  color: #FFFFFF;
}

.contact .social-icons{
  margin-top: 30px;
}
.contact .social-icons a{
  background-color: rgba(0,0,0,0.2);
}
.contact .social-icons i{
	color: #FFFFFF;
}

/***********************************
PRODUCT-SQUARE
***********************************/
.product-square{
	position: relative;
	
	display: inline-block;
	vertical-align: top;
	width: calc(50% - 12px); 

	margin: 8px; 
	
	font-size: 0px;
	
	text-align: center;

	margin-bottom: 0px;
	
    border-radius: 10px;
    overflow: hidden;

	background: #F1ECE7;
}
.product-square.transparent{
	background: transparent;
}
.info-pagina .product-square{
	width: calc(100% - 16px);
	background: linear-gradient(to bottom, #f4f0ea, #fffdf8);
	margin: 8px;
}

.product-square:nth-child(odd){
	margin-right: 4px; 
}
.product-square:nth-child(even){
	margin-left: 4px; 
}

.info-pagina .product-square:nth-child(odd),
.info-pagina .product-square:nth-child(even){
	margin-left: 8px;
	margin-right: 8px;
}

.product-square.image{
	height: 200px;
}
@media screen and (min-width: 400px){
	.product-square.image{
		height: 260px;
	}
}
@media screen and (min-width: 600px){
	.product-square.image{
		height: 300px;
	}
}

.info-pagina .product-square.text{
	margin-top: -20px;
    border-radius: 0px 0px 10px 10px;
}
@media screen and (min-width: 1050px){
	.info-pagina .product-square.text{
		margin-top: 15px;
		border-radius: 10px;
		height: auto;
	}
}

@media screen and (min-width: 600px){
	.product-square{
		position: relative;
		/*height: 450px; /* was 580px */
		
		display: inline-block;
		vertical-align: top;

		margin: 8px;
		/*
		margin-right: 6px;
		margin-left: 12px;
		*/
		margin-bottom: 0px;
		width: calc(50% - 16px); /* was 33.33% */
	}
	.product-square:nth-child(even),
	.product-square:nth-child(odd){
		margin: 8px; 
	}
	/*
	.product-square.right{
		margin-right: 12px;
	}
	*/
}	
	
@media screen and (min-width: 1050px){
	.product-square{
		position: relative;
		/*height: 450px; /* was 580px */
		
		display: inline-block;
		vertical-align: top;

		margin: 8px;
		/*
		margin-right: 6px;
		margin-left: 12px;
		*/
		margin-bottom: 0px;
		width: calc(25% - 16px); /* was 33.33% */
	}
	/*
	.product-square.right{
		margin-right: 12px;
	}
	*/
	
	.product-square.full-width{
		margin: 8px;
		margin-top: 15px; /* nieuw */
		width: calc(100% - 16px);
		margin-bottom: 0px;
		height: 420px;
	}
	.product-square.half-width{
		margin: 8px;
		margin-top: 15px; /* nieuw */
		width: calc(50% - 16px);
		margin-bottom: 0px;
		height: 450px;
	}
	.product-square.text{
		margin: 8px;
		margin-top: 15px; /* nieuw */
		width: calc(100% - 16px);
		margin-bottom: 0px;
		height: 450px;
	}
	.product-square.onethird-width{
		margin: 8px;
		margin-top: 15px; /* nieuw */
		width: calc(33.33% - 16px);
		margin-bottom: 0px;
		height: 450px;
	}
	.product-square.twothird-width{
		margin: 8px;
		margin-top: 15px; /* nieuw */
		width: calc(66.67% - 16px);
		margin-bottom: 0px;
		height: 450px;
	}	
	.product-square.threeeighth-width{
		margin: 8px;
		margin-top: 15px; /* nieuw */
		width: calc(37.5% - 16px);
		margin-bottom: 0px;
		height: 450px;
	}
	.product-square.fiveeighth-width{
		margin: 8px;
		margin-top: 15px; /* nieuw */
		width: calc(62.5% - 16px);
		margin-bottom: 0px;
		height: 450px;
	}	
	.product-square.left{
		float: left;
		margin: 8px;
		margin-top: 15px; /* nieuw */
		width: calc(25% - 16px);
		margin-bottom: 0px;
		height: 450px;
	}		
}

@media screen and (min-width: 500px){
	.product-square:not(.full-width) img{
		height: 100%;
		margin-top: -0px;
		margin-bottom: 0px;
	}
}

/***********************************
IMG OVERLAY
***********************************/
.img-overlay{
    position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	width: calc(100% - 10px);
	
	top: 10px; /* hoogte tekst */
	text-align: center;
}

@media screen and (min-width: 600px){
	.img-overlay{
		width: calc(100% - 10px);
	}
}

.img-overlay.white{
    color: #FFFFFF;
}

/***********************************
IMG OVERLAY - TEXT BOVEN IMG
***********************************/
.product-square .img-overlay{
	position: relative;
    text-align: center;
    padding: 6px 0px;
}

.product-square .more-info{
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	top: 10px;
	
	width: calc(100% - 80px);
	max-width: 200px;
	
	display: inline-block;
	vertical-align: top;
	
	padding: 6px 15px;
	
	border-radius: 4px;
	background: #1c528a;
	background-image: linear-gradient(#0E3054 50%, #1c528a);
	background: linear-gradient(to right, #0E3054, #1c528a);
	color: #FFFFFF;
}

@media screen and (min-width: 600px){
	.product-square .more-info{
		padding: 12px 15px; 
	}
}

@media screen and (min-width: 1050px){
	.product-square .more-info{
		top: 20px; 
	}
}

/***********************************
MORE INFO
***********************************/
.img-overlay .more-info{
	display: inline-block;
	vertical-align: top;
	
	padding: 6px 15px;
	
	/* width: 230px; /* was 146px, daarna 230 */
	margin: 5px;
	
	border-radius: 4px;
	background: #1c528a;
	background-image: linear-gradient(#0E3054 50%, #1c528a);
	background: linear-gradient(to right, #0E3054, #1c528a);
	color: #FFFFFF;
}

@media screen and (min-width: 600px){
	.img-overlay .more-info{
		padding: 12px 15px; 
	}
}

.img-overlay .price{
	display: inline-block;
	vertical-align: top;
	
    /* padding: 12px 0px; */
	padding: 12px 15px; /* 15px 18px; */
	
	/* width: 230px; /* was 146px, daarna 230 */
	margin: 5px;
	
	border-radius: 4px;
	/*
	background: #1c528a;
	background-image: linear-gradient(#0E3054 50%, #1c528a);
	background: linear-gradient(to right, #0E3054, #1c528a);
	color: #FFFFFF;
	*/
	background: #F1ECE7;
}

/***
.img-overlay.white .more-info{
	color: #1c528a;
	background: #FFFFFF;
	background-image: linear-gradient(#f8fafc, #f4f7fb);
}
***/

.img-overlay h2{
	font-size: 19px;
	line-height: 1.15;
	font-weight: 700;
    margin-top: -4px;
    padding-top: 0px;
}
@media screen and (min-width: 600px){
	.img-overlay h2{
		font-size: 24px; 
	}
}

.img-overlay h3{
	font-size: 14px;
	line-height: 1.25;
	font-weight: 400;
	margin-bottom: -5px;
	height: 32px;
}
@media screen and (min-width: 481px){
	.img-overlay h3{
		height: auto;
	}
}
@media screen and (min-width: 600px){
	.img-overlay h3{
		font-size: 17px; 
	}
}
@media screen and (min-width: 1050px){
	.img-overlay h3{
		margin-bottom: 0px;
	}
}
@media screen and (min-width: 1080px){
	.img-overlay h3{
		height: 42px;
	}
}
@media screen and (min-width: 1233px){
	.img-overlay h3{
		height: auto;
	}
}

.img-overlay span,
.more-info span{
	font-size: 12px; /* was 15px */
	font-weight: 600;
}
@media screen and (min-width: 600px){
	.img-overlay span,
	.more-info span{
		font-size: 14px; 
	}
}

.home-img-container{
    position: relative;
	height: 217px;
}
@media screen and (min-width: 480px){
	.home-img-container{
		height: 232px;
	}
}
@media screen and (min-width: 600px){
	.home-img-container{
		height: 295px;
	}
}
@media screen and (min-width: 1080px){
	.home-img-container{
		height: 269px;
	}
}
@media screen and (min-width: 1233px){
	.home-img-container{
		height: 290px;
	}
}


/***********************************
FOOTER
***********************************/
footer{
  background-color:#26272b;
  
  background: #1c528a;
  background-image: linear-gradient(#0E3054 50%, #1c528a);
  background: linear-gradient(to right, #0E3054, #1c528a);

  padding:45px 0 20px;
  font-size:15px;
  line-height:24px;
  color:#bbb;
  box-sizing: border-box;
}
/*
.homepage footer{
	background: #ffffff;
	color:#737373;
}
*/
.site-footer{
  max-width: 1200px;
  margin: auto;
  padding: 0px 20px;
}
.site-footer hr{
  border-top-color:#bbb;
  opacity:0.15;
   margin:20px 0
}
.site-footer hr.small{
  margin:20px 0
}
.site-footer h6{
  color:#fff;
  font-size:16px;
  margin-top:5px;
}
/*
.homepage .site-footer h6{
	color:#616161;
}
*/
.footer-element{
	text-align: center;
	padding-bottom: 50px;
	
	max-width: 300px;
    margin: auto;
}
.footer-last .footer-element{
	padding-bottom: 0px;
}

@media screen and (min-width: 1050px){
	.footer-element{
		max-width: none;
		display: inline-block;
		vertical-align: top;
		text-align: left;
		padding-right: 20px;
		width: calc(30% - 25px);
		padding-bottom: 20px;
	}
	.footer-element.info{
		width: calc(45% - 25px);
	}
}

.site-footer a:hover{
  color:#fff;
  text-decoration:none;
}
/*
.homepage .site-footer a:hover{
	color:#1c528a;
	text-decoration:none;
}
*/
.footer-address{
  padding-left:0;
  list-style:none;
}
.footer-address li{
  display:block
}
.footer-address li span{
  color: #1c528a;
  font-weight: 500;
}
.footer-links{
  padding-left:0;
  list-style:none;
}
.footer-links li{
  display:block;
}
.footer-links a{
}
.footer-links a:active,.footer-links a:focus,.footer-links a:hover{
  color:#fff;
  text-decoration:none;
}
/*
.homepage .footer-links a:active,
.homepage .footer-links a:focus,
.homepage .footer-links a:hover{
	color:#1c528a;
  }
*/
.footer-links.inline li{
  display:inline-block
}
@media screen and (min-width: 1050px){
	.third-column{
		text-align: left;
		width: 200px;
		float: right;
	}
}
.site-footer .social-icons{
margin-left: -8px;
padding-bottom: 10px;
}
.site-footer .social-icons a{
  width:40px;
  height:40px;
  line-height:40px;
  margin-left:6px;
  margin-right:0;
  border-radius:100%;
  background-color:#33353d;
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.copyright-text{
  margin:0
}
@media (max-width:767px){
  .site-footer .copyright-text,.site-footer .social-icons  {
    text-align:center
  }
}
.social-icons{
  padding-left:0;
  margin-bottom:0;
  list-style:none
}
.social-icons li{
  display:inline-block;
  margin-bottom:4px
}
.social-icons li.title{
  margin-right:15px;
  text-transform:uppercase;
  color:#96a2b2;
  font-weight:700;
  font-size:13px
}
.social-icons a{
  background-color:#eceeef;
  color:#818a91;
  font-size:16px;
  display:inline-block;
  line-height:44px;
  width:44px;
  height:44px;
  text-align:center;
  margin-right:8px;
  border-radius:100%;
  -webkit-transition:all .2s linear;
  -o-transition:all .2s linear;
  transition:all .2s linear
}
.social-icons a:active,.social-icons a:focus,.social-icons a:hover{
  color:#fff;
  background-color:#29aafe
}
.social-icons.size-sm a{
  line-height:34px;
  height:34px;
  width:34px;
  font-size:14px
}
.social-icons a.facebook:hover{
  background-color:#3b5998
}
.social-icons a.instagram:hover{
  background-color:#e1306c
}
.social-icons a.linkedin:hover{
  background-color:#007bb6;
  color: #fff;
}
.social-icons a.pinterest:hover{
  background-color:#bd081c
}
@media (max-width:767px){
  .social-icons li.title  {
    display:block;
    margin-right:0;
    font-weight:600
  }
}

/***********************************
CONFIGURATOR
***********************************/
.configurator-container {
	position: relative;
}

.configurator {
	position: relative;
}

@media screen and (min-width: 600px){
	.configurator {
		position: absolute;
		top: 0px;
		right: 0px;
		left: auto;
	}
}

@media screen and (min-width: 1260px){
	.configurator {
		right: calc((100% - 1250px)/2);
	}
}


/***********************************
FORM-CONTAINER
***********************************/
.form-container{
	position: relative;
	text-align: right;
	padding: 0px 20px; 
	margin-top: 1px;
}

@media screen and (min-width: 600px){
	.form-container{
		position: relative;
		max-width: 1140px;
		margin: auto;
		padding: 0px 30px; 
		margin-top: 100px;
	}
}

/***********************************
FORM
***********************************/
.form{
	position: relative;
	margin-left: auto;
	margin-right: 0px;
	
	text-align: left;
	
	padding-bottom: 20px;
}

@media screen and (min-width: 600px){
	.form{
		padding: 10px 20px; /* 1e was 5, 2e was 20, deze is voor de ruimte boven en naast de titel... gaat alleen in stappen van 5px, heel vreemd*/
		padding-bottom: 30px; /* deze was 20px */
		
		background: #FFFFFF;
		box-shadow: 0 16px 40px rgba(0,0,0,0.12);
		border-radius: 4px;
		
		width: 350px; 
	}
	
	@supports (backdrop-filter: blur()) or (-webkit-backdrop-filter: blur()) {
		.form{
			border-radius: 6px;
			background: rgba(255, 255, 255, 0.8);
			backdrop-filter: blur(20px);
			-webkit-backdrop-filter: blur(20px);
		}
	}
}

/***********************************
TITLE MOBILE
***********************************/
/*
.title-mobile{
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	color: #FFFFFF;
	padding: 10px 20px;
	
	background-image: linear-gradient(-180deg, rgba(0, 0, 0, 0) 3%, rgba(0, 0, 0, 0.8) 100%);
}

@media screen and (min-width: 600px){
	.title-mobile{
		display: none;
	}
}
*/

/***********************************
TITLE
***********************************/
.title{
	display: block;
	/*
	margin-right: 40px;
	*/
	color: #333333;
}

@media screen and (min-width: 600px){
	.title{
		display: block;
		/*
		margin-right: 40px;
		*/
		color: #333333;
	}
}

.title h2{
	font-size: 24px;
	line-height: 1.25;
}

.title h3{
	font-weight: 300;
    font-size: 19px;
    line-height: 30px;
    letter-spacing: normal;
    padding-top: 0px;
    padding-bottom: 0px;
    overflow-wrap: break-word;
}

/***********************************
OPTIONS
***********************************/
.options,
.extra-options{
	position: relative;
	background: #FFFFFF;
}

@media screen and (min-width: 600px){
	.options,
	.extra-options{
		background: transparent;
	}
}

/***********************************
OPTION
***********************************/
.option{
	position: relative;
}

.option label{
	font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
    overflow: hidden;
	
	margin-top: 20px;
	margin-bottom: 7px;
	
    text-overflow: ellipsis;
    white-space: nowrap;
	overflow: hidden;
}

.option label span{
	padding-left: 10px;
	font-size: 11px;
	line-height: 16px;
    text-transform: none;
    font-weight: 500;
    letter-spacing: 0px;
}

@media screen and (min-width: 600px){
	.option label{
		font-size: 12px;
		margin-top: 15px;
		margin-bottom: 5px;
	}
}

.option select{
	font-size: 16px;
	font-weight: 400;
    -webkit-font-variant-ligatures: none;
    font-variant-ligatures: none;
    outline: none;
    padding: 12px 10px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	display: block;
	border-radius: 4px;
	border: 1px solid #DDDDDD;
	background: #FFFFFF;
	
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@supports (backdrop-filter: blur()) or (-webkit-backdrop-filter: blur()) {
	.option select{
		background: rgba(0, 0, 0, 0.07);
		border: none;
		padding: 14px 12px;
	}
}

@media screen and (min-width: 600px){
	.option select{
		font-size: 15px;
	}
}

.option svg{
	position: absolute;
	color: #BBBBBB;
	display: inline-block;
	vertical-align: middle;
	height: 24px;
	width: 24px;
	top: 35px;
	right: 10px;
	pointer-events: none;
	/*
	stroke-width: 1;
	*/
}

@supports (backdrop-filter: blur()) or (-webkit-backdrop-filter: blur()) {
	.option svg{
		color: #333333;
	}
}

@media screen and (min-width: 600px){
	.option svg{
		top: 32px;
	}
}

/***********************************
PRIJS
***********************************/
.prijs-container{
	position: relative;
	padding-top: 15px;
	padding-left: 20px;
	text-align: right;
	white-space: nowrap;
}

.prijs{
	position: relative;
	display: inline-block;
	vertical-align: top;
	float: left;
}

.prijs p{
	font-weight: 700;
    font-size: 22px;
    line-height: 29px;
		
	text-align: left;
}
	
.prijs .btw{
	margin-left: 0px; /* was 3px */
	font-size: 13px;
	line-height: 17px;
    font-weight: 400;
	text-align: left;
}

/***********************************
AFSPRAAK
***********************************/
.afspraak{
	position: relative;
	padding: 15px 40px;
	border-radius: 8px;

	background: #1c528a;
	background-image: linear-gradient(#0E3054 50%, #1c528a);
	background: linear-gradient(to right, #0E3054, #1c528a);
	color: #FFFFFF;

	text-align: center;
	
	font-size: 19px;
	font-weight: 600;

	display: inline-block;
	vertical-align: top;
	
	margin-left: auto;
	margin-right: 0px;
}
.nav-option .afspraak{
	background: #FFFFFF;
    color: #333333;
}
@media screen and (min-width: 900px){
	.afspraak{
		padding: 10px 30px;
		background: #1c528a;
		background-image: linear-gradient(#0E3054 50%, #1c528a);
		background: linear-gradient(to right, #0E3054, #1c528a);
		color: #FFFFFF;
		font-size: 17px;
	}
	.nav-option .afspraak{
		background: #1c528a;
		background-image: linear-gradient(#0E3054 50%, #1c528a);
		background: linear-gradient(to right, #0E3054, #1c528a);
		color: #FFFFFF;
	}
}
/***********************************
MEERINFO
***********************************/
.meerinfo{
	position: relative;
	left: 50%;
	-ms-transform: translate(-50%);
	transform: translate(-50%);
	padding-left: 36px; /* 15px 18px; */
	padding-right: 36px;
	padding-top: 12px;
	padding-bottom: 12px;
	margin-top: 12px;
	margin-left: 0px;
	margin-right: 0px;
	border-radius: 8px;
	background: #FF5A5F;
	/*
	background: #4bafa3;
	*/
	background: #1c528a;
	background-image: linear-gradient(#0E3054 50%, #1c528a);
	background: linear-gradient(to right, #0E3054, #1c528a);
	
	color: #FFFFFF;
	text-align: center;
	
	font-size: 16px;
	font-weight: 600;

	display: inline-block;
	vertical-align: top;
}

@media screen and (min-width: 600px){
	.meerinfo{
		position: relative;
		left: 116px;
		padding-left: 40px; /* 15px 18px; */
		padding-right: 40px;
		padding-top: 12px;
		padding-bottom: 12px;
		margin-top: 15px;
		margin-left: 0px;
		margin-right: 0px;
		border-radius: 8px;
		background: #FF5A5F;
		/*
		background: #4bafa3;
		*/
		background: #1c528a;
		background-image: linear-gradient(#0E3054 50%, #1c528a);
		background: linear-gradient(to right, #0E3054, #1c528a);
		
		color: #FFFFFF;
		text-align: center;
		
		font-size: 19px;
		font-weight: 600;

		display: inline-block;
		vertical-align: top;
	}
}

/***
@supports (backdrop-filter: blur()) or (-webkit-backdrop-filter: blur()) {
	.afspraak{
		background: #1c528a;
	}
}
***/


/***********************************
POPUP
***********************************/
.popup{
    position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	
	z-index: 999999;
	
	background: rgba(0,0,0,0.6);
	
	display: none;
}

.popup-container{
	position: absolute;
	padding: 30px;
	
	top: 50%;
	transform: translate(0, -50%);
	left: 20px;
	right: 20px;
	
	border-radius: 4px;
	overflow: hidden;
	
	background: #FFFFFF;
	box-shadow: 0 16px 40px rgba(0,0,0,0.12);

	-webkit-transition 	: all 0.3s ease-in-out;
	-moz-transition    	: all 0.3s ease-in-out;
	-ms-transition     	: all 0.3s ease-in-out;
	-o-transition      	: all 0.3s ease-in-out;
	transition       	: all 0.3s ease-in-out;	
	
	text-align: center;
}

@supports (backdrop-filter: blur()) or (-webkit-backdrop-filter: blur()) {
	.popup-container{
		background: rgba(255,255,255,0.9);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
	}
}

@media screen and (min-width: 600px){
	.popup-container{
		top: 50%;
		left: 50%;
		right: auto;
		transform: translate(-50%, -50%);
		max-width: 400px;
	}
}

/***********************************
EXTRA OPTIES
***********************************/
label[for=extra]
{
    margin-bottom: 0px;
	margin-top: 17px;
}

/***********************************
CHECKBOX
***********************************/
.checkbox-option {
    position: relative;
    display: block;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 8px 0px;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    border-radius: 4px;
    white-space: nowrap;
    overflow: hidden;
	
	cursor: pointer;
}

.checkbox-option:first-child{
	padding-top: 0px;
}

.checkbox{
	font-size: 15px;
    font-weight: 400;
    display: inline-block;
    vertical-align: top;
    margin: 0px;
    padding: 0px;
    width: 20px;
    height: 20px;
    /* float: left; */
    margin-right: 7px;
    /* margin-left: 2px; */
    border-radius: 4px;
    border: 1px solid #C8C7CC;
    line-height: 20px;
    text-align: center;
    color: rgba(256,256,256,0);
    background: rgba(256,256,256,0);
}

@supports (backdrop-filter: blur()) or (-webkit-backdrop-filter: blur()) {
	.checkbox{
		background: rgba(0, 0, 0, 0.1);
		border: none;
		width: 22px;
		height: 22px;
		line-height: 22px;
	}
}

.active .checkbox {
    color: #FFFFFF;
	border-color: #1c528a;
    background: #1c528a;
}

/***********************************
CONFIGURATOR MEER
***********************************/
.configurator-meer{
	position: absolute;
	top: calc(100vh - 90px);
    bottom: auto;
    left: 0px;
    right: 0px;
	text-align: center;
}

.configurator-meer-info{
	position: relative;
	padding: 10px 15px; /* 15px 18px; */
	padding-left: 20px;
	border-radius: 100px;
	background: rgba(0,0,0,0.2);
	
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	
	color: #FFFFFF;
	text-align: center;
	
	font-size: 13px;
	line-height: 22px;
	font-weight: 600;

	display: inline-block;
	vertical-align: top;
	
	margin-left: auto;
	margin-right: 0px;
	
	display: none;
}

.configurator-meer-info svg{
	margin-bottom: -5px;
    width: 20px;
    height: 20px;
}


/***********************************
CAROUSEL CONTAINER
***********************************/
.carousel-container{
    position: relative;
    text-align: right;
    font-size: 0px;
    margin-top: 74px;
}

.configurator-pagina .carousel-container{
	margin-top: 61px;
}

@media screen and (min-width: 900px){
	.carousel-container,
	.configurator-pagina .carousel-container{
		display: block;
		margin-top: 0px;
	}
}

/***********************************
CAROUSEL DESCRIPTION
***********************************/
.carousel-desc-container{
	position: absolute;
	top: auto;
    bottom: 45px;
	left: 0px; /* was 15px, nodig om tekst op de homepage te verplaatsen */
	z-index: 9;
	text-align: left;
	pointer-events: none;
	user-select: none;
}

@media screen and (min-width: 1050px){
	.carousel-desc-container,
	.configurator-pagina .carousel-desc-container{
		position: absolute;
		left: 50%;
		top: auto;
		transform: translate(-50%, 0px);
		width: 100%;
		max-width: 1240px; /* was 1240px */
	}
}
/***********************************
CAROUSEL DESCRIPTION
***********************************/
.carousel-desc{
	display: block;
	pointer-events: none;
}

@media screen and (min-width: 1050px){
	.carousel-desc {
		position: relative;
		width: 800px;
		padding: 20px;
		display: inline-block;
		vertical-align: top;
		/*
		pointer-events: auto;
		user-select: text;
		*/
	}
	.homepage .carousel-desc{
		padding-top: 100px;
		width: auto;
	}
	.configurator-pagina .carousel-desc {
		top: 60px;
		width: calc(50% - 150px);
	}
}

.desc-logo{	
	padding-bottom: 60px;
}
.desc-logo svg{	
	width: 295px;
}

.carousel-desc p{
    font-size: 17px;
    line-height: 1.5;
    color: #616161;
	padding-bottom: 20px;
	
	display: none;
}
@media screen and (min-width: 1050px){
	.carousel-desc p{
		display: block;
	}
}

.carousel-desc h1{
    font-size: 40px; /* grootte tekst in carousel, was 40px */
	line-height: 1.25;
	margin: 0;
	padding-top: 60px; /* hoogte tekst in en naast afbeelding, was 20px, daarna 45px */
	padding-bottom: 4px; /* was 4px */
	overflow-wrap: break-word;
	text-align: left;

	color: #ffffff;
	text-shadow: 0px 0px 20px rgba(0,0,0,0.8); /* laatste was 0.5 */
	padding-left: 30px; /* was 30 door witte rand */
	padding-right: 20px;

	pointer-events: none;
}

.carousel-desc h2{
	font-size: 21px; /* grootte tekst h2 in en naast carousel, was 28px, daarna 24px, daarna 21px */
	line-height: 1.25;
	font-weight: 700;
	margin: 0;
    padding: 0;
	padding-bottom: 0px; /* was 40px */
	
	color: #ffffff;
	text-shadow: 0px 0px 20px rgba(0,0,0,0.8);
	padding-left: 30px; /* was 30 door witte rand */
	padding-right: 20px;

	pointer-events: none;
}

.homepage .carousel-desc h1{
	font-size: 34px; /* mobiele tekstgrote, was 32 */
	white-space: normal;
	padding-left: 30px; /* padding mobiel */
	padding-top: 40px; /* met 2 regels tekst normaal: 45px; met 3 regels tekst: 30.5px, en tekstgrote 32px */
	margin-bottom: -5px;
	line-height: 1.15;
	color: #ffffff;
	text-shadow: 0px 0px 20px rgba(0,0,0,0.8);
	overflow: visible;
}

.homepage .carousel-desc h2{
	font-size: 21px; /* grootte tekst h2 in carousel mobiel, was 24px */
	font-weight: 700;
	color: #ffffff;
	padding-left: 30px; /* was 30 door witte rand */
	/* padding-right: 60px; */
	padding-top: 10px;
	line-height: 1.15;
	text-shadow: 0px 0px 20px rgba(0,0,0,0.8);
	margin-right: -500px;
}

@media screen and (min-width: 600px){ 
	.carousel-desc h1{
		font-size: 40px; /* grootte tekst naast carousel, was 30, daarna 40 */
		color: #ffffff;
		text-shadow: 0px 0px 20px rgba(0,0,0,0.8);
		padding-left: 60px;
		padding-bottom: 6px;
	}
	.carousel-desc h2{
		font-size: 21px; /* grootte tekst naast carousel, was 30, daarna 40, laatste 33 */
		color: #ffffff;
		text-shadow: 0px 0px 20px rgba(0,0,0,0.8);
		padding-left: 60px;
		padding-bottom: 6px;
	}
	.homepage .carousel-desc h1{
		font-size: 40px; /* was 55px */
		padding-top: 40px; /* met 3 regels tekst: 30.5px, en tekstgrote 55px */
		margin-top: 60px;
		padding-left: 60px;
	}
	.homepage .carousel-desc h2{
		font-size: 26px; /* grootte tekst h2 in carousel, was 33px */
		color: #ffffff;
		padding-left: 60px; /* was 30 door witte rand */
		line-height: 1.15;
		text-shadow: 0px 0px 20px rgba(0,0,0,0.8);
	}
}

@media screen and (min-width: 800px){ 
	.carousel-desc h1{
		padding-left: 100px;
	}
	.carousel-desc h2{
		padding-left: 100px;
	}
	.homepage .carousel-desc h1{
		font-size: 38px;
		padding-left: 30px;
		margin-top: 100px;
	}
	.homepage .carousel-desc h2{
		padding-left: 30px; /* was 30 door witte rand, daarna 100 */
	}
}

@media screen and (min-width: 1050px){
	.carousel-desc h1{
		font-size: 38px; /* grootte tekst naast carousel, was 38px */
		color: #333333;
		text-shadow: none;
		padding-top: 45px; /* was 45px */
		padding-left: 0px;
		padding-bottom: 6px;
	}
	.carousel-desc h2{
		font-size: 22px; /* was 22px, daarna 21 */
		color: #333333;
		text-shadow: none;
		padding-left: 0px;
		padding-bottom: 40px;
		font-weight: 400;
	}
	.homepage .carousel-desc h1{
		font-size: 43px; /* was 55px, daarna 50px, toen 43px */
		padding-top: 55px; /* was 55px*/
		margin-top: 100px; /* was 90px*/
	}
	.homepage .carousel-desc h2{
		font-size: 36px; /* grootte tekst h2 in carousel, was 45px */
		color: #ffffff;
/*		padding-left: 0px; /* was 30 door witte rand */
		line-height: 1.15;
		text-shadow: 0px 0px 20px rgba(0,0,0,0.8);
	}
}
@media screen and (min-width: 1200px){
	.homepage .carousel-desc h1{
		font-size: 50px; /* was 60px */
	}
}

/***********************************
CAROUSEL
***********************************/
.carousel{
	width: calc(100% + 15px); /* was calc(100% - 15px) */
	margin-left: -15px; /* was 15px */
	border-radius: 0px 0px 0px 20px;
	overflow: hidden;
	margin-bottom: 4px;

	-webkit-background-clip: padding-box;
}

@media screen and (min-width: 800px){
	.carousel{
		width: calc(100% + 16px); /* was calc(100% - 16px) */
		margin-left: -16px; /* was 16px */
	}
}

@media screen and (min-width: 1050px){
	.carousel{
		width: calc(50% + 100px);
		/*
		border-radius: 0px 0px 0px 20px;
		*/
		overflow: hidden;

		display: inline-block;
		vertical-align: top;
	}

	.homepage .carousel{
		display: block;
		width: calc(100% + 16px); /* was calc(100% - 16px) */
		margin-left: -16px; /* was 16px */
	}
}

.carousel-cell {
width: 100%;
height: 260px; /*was 300px */
margin: 0px;
}
@media screen and (min-width: 600px){
	.carousel-cell {
		height: 400px;
	}
}
@media screen and (min-width: 800px){
	.carousel-cell {
		height: 500px;
	}
}
@media screen and (min-width: 1050px){
	.carousel-cell {
		height: calc(100vh - 322px);
		min-height: 500px;
	}
}

.flickity-prev-next-button {
display: none;
}

/* position dots in carousel */
.flickity-page-dots {
bottom: 20px;
}
/* white circles */
.flickity-page-dots .dot {
width: 12px;
height: 12px;
opacity: 1;
background: rgba(256,256,256,0.5);
margin: 0 8px;
}
/* fill-in selected dot */
.flickity-page-dots .dot.is-selected {
background: #ffffff;
}

/***********************************
PRODUCT BUTTON
***********************************/
.product-button{
	position: relative;
	display: block;

	margin-bottom: 8px;
	font-size: 0px;
	text-align: left;

    border-radius: 10px;
	overflow: hidden;
	
	padding: 11.5px 0px;
	
	background: #F1ECE7;
	
	text-align: center;
}
.product-button.green{
    background-image: linear-gradient(#0E3054 50%, #1c528a);
    background: linear-gradient(to right, #0E3054, #1c528a);
    color: #FFFFFF;
}
.product-button:last-child{
	margin: 0px;
}
@media screen and (min-width: 600px){
	.product-button{
		padding: 13px 0px;
		margin-bottom: 15px;
	}
}

.product-button-desc{
	position: relative;
	display: inline-block;
	vertical-align: top;
	padding: 0px;
	padding-bottom: 4px;
}

.product-button-desc h2{
	font-size: 19px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0;
	padding: 0;
	padding-bottom: 1px;
}
@media screen and (min-width: 600px){
	.product-button-desc h2{
		font-size: 24px;
	}
}

.product-button-desc h3{
	font-size: 14px;
	font-weight: 400;
	line-height: 1.25;
	margin: 0;
	padding: 0;
}
@media screen and (min-width: 600px){
	.product-button-desc h3{
		font-size: 17px;
	}
}
	
/***********************************
SERVICE
***********************************/
.main.services{
	position: relative;
	max-width: 1240px;
	padding-top: 0px; /* was padding: 10px 0px; */
	padding-bottom: 10px;
}

.info-pagina .main.services{
	max-width: 700px;
}

@media screen and (min-width: 1050px){
	.main.services{
		padding: 80px 0px; 
		margin-top: 0px;
	}
	.info-pagina .main.services{
		padding-top: 0px;
		max-width: 1240px;
	}
}

.service{
	position: relative;
	display: block;

	margin: 15px;
	font-size: 0px;
	text-align: left;

    border-radius: 10px;
	overflow: hidden;
	
	padding: 20px 0px;
}
	
@media screen and (min-width: 800px){
	.service{
		position: relative;
		
		display: inline-block;
		vertical-align: top;

		margin: 12px;
		margin-right: 6px;
		margin-left: 12px;

		margin-bottom: 0px;
		width: calc(33% - 18px);
	}
	
	.service.right{
		margin-left: 6px;
		margin-right: 12px;
	}
}
/*
.service-icon{
	position: relative;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	width: 50px;
	height: 50px;
    background: #e3f1ff;
    color: #0E3054;
	border-radius: 100px;
}
*/
.service-icon:before {
    content: " ";
    width: 0; height: 0;
    border-bottom: 30px solid #0E3054;
	border-bottom: 30px solid #e3f1ff;
    border-left: 52px solid transparent;
    border-right: 52px solid transparent;
    position: absolute;
    top: -30px;
	left: 0px;
}

.service-icon {
    margin-top: 30px;
    width: 104px;
    height: 60px;
    background-color: #0E3054;
    position: relative;
    color: #FFFFFF;
    text-align: center;
    transform: scale(0.5);
    position: relative;
    display: inline-block;
    margin-left: -10px;
    margin-top: -4px;

	background: #e3f1ff;
	color: #0E3054;
}

.service-icon:after {
    content: "";
    width: 0;
    position: absolute;
	left: 0px;
    bottom: -30px;
    border-top: 30px solid #0E3054;
	border-top: 30px solid #e3f1ff;
    border-left: 52px solid transparent;
    border-right: 52px solid transparent;
}

.service-icon i{
	line-height: 50px;
	font-size: 40px;
}

.service-desc{
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: calc(100% - 104px);
	text-align: left;
}

.service-desc h2{
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0;
	padding: 0;
	padding-bottom: 5px;
}

.service-desc h3{
	font-size: 17px;
	font-weight: 400;
	line-height: 1.25;
	margin: 0;
	padding: 0;
}

.service-desc p{
	font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
    max-width: 700px;
    margin: auto;
}

/***********************************
IMAGES
***********************************/
.main.image-row{
	position: relative;
	max-width: 1240px;
}

.image-row-image{
	position: relative;
	display: block;

	height: 300px;
	margin: 15px;
	
	font-size: 0px;
	
	text-align: center;

	margin-bottom: 0px;
	
    border-radius: 10px;
    overflow: hidden;
}
	
@media screen and (min-width: 800px){
	.image-row-image{
		position: relative;

		display: inline-block;
		vertical-align: top;

		margin: 8px;

		margin-bottom: 0px;
		width: calc(33% - 16px);
	}
	
	.wide.image-row-image{
		position: relative;

		display: inline-block;
		vertical-align: top;

		margin: 8px;

		margin-bottom: 0px;
		width: calc(66% - 16px);
	}
}

/***********************************
CONTACT FORM
***********************************/
.contact-form * {
  box-sizing: border-box;
}

.contact-form{
	background-image: linear-gradient(#f4f7fb, #f8fafc);
}

.contact-form-container{
	position: relative;
	max-width: 1000px;
	margin: auto;
	padding: 40px 0px;
}

.contact-form img{
	border-radius: 10px;
	margin-top: 27px;
}

/* Style inputs */
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=phone],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
	font-family: inherit;
	border-radius: 8px;
    background: #fff;
	font-size: 15px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border: 2px solid #000;
	outline: none;
	border-radius: 8px;
}

.contact-form textarea {
	height: 95px;
}

.contact-form label {
	font-weight: 700;
}

.contact-form input[type=submit] {
    background: #1c528a;
    background-image: linear-gradient(#0E3054 50%, #1c528a);
    background: linear-gradient(to right, #0E3054, #1c528a);
    color: #FFFFFF;
	border-radius: 8px;
	font-weight: 700;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  
  margin-top: 20px;
}

.contact-form input[type=submit]:hover {
	background: #1c528a;
}

/* Style the container/contact section */
.contact-form  {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 10px;
}

/* Create two columns that float next to eachother */
.contact-form .column {
  float: left;
  width: 50%;
  margin-top: 6px;
  padding: 20px;
}

/* Clear floats after the columns */
.contact-form .row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .contact-form .column, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}

/***********************************
BOTTOM BUTTONS
***********************************/
.bottom-buttons{
    padding: 50px 20px;
    padding-bottom: 70px;
}
@media screen and (min-width: 1050px) {
	.bottom-buttons{
		padding-top: 50px;
		padding-bottom: 80px;
	}
}
.bottom-buttons-container{
	max-width: 960px;
	margin: auto;
	font-size: 0px;
}
.bottom-button{
	padding: 15px 0px;
	width: calc(50% - 12px);
	margin: 0px;
	margin-right: 8px;
	background: none;
    border: 2px solid #000;
	white-space: nowrap;
}
.bottom-button:nth-child(2){
	margin-left: 8px;
	margin-right: 0px;
}

.bottom-button i{
    line-height: 1;
    font-size: 14px;
	padding-right: 5px;
}
.bottom-button:nth-child(2) i{
	padding-left: 5px;
	padding-right: 0px;
}

