@charset "UTF-8";
@import url(font-awesome.min.css);
@import "https://fonts.googleapis.com/css?family=Raleway:100,300,600";

/* Reset */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

.image.fit img {
	width: 100%;
	height: auto;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

/* page loader */

.scene_element {
	animation-duration: 0.25s;
	transition-timing-function: ease-in;
	animation-fill-mode: both;
}

.scene_element--fadein {
	animation-name: fadeIn;
}

.scene_element--fadeinup {
	animation-name: fadeInUp;
}

.scene_element--fadeinright {
	animation-name: fadeInRight;
}


@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}

	100% {
		opacity: 1;
		transform: none;
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}

	100% {
		opacity: 1;
		transform: none;
	}
}


/* containers and boxes and roots */

:root {
	--main-color: #155E72;
	--secondary-color: #5385c1;
	--font: 'Poppins', sans-serif;

}



*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.flex-container {
	display: flex;
}

.flex {
	display: -ms-flexbox;
	-ms-flex-wrap: wrap;
	-ms-flex-pack: justify;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

.flex.flex-2 article {
	width: 47%;
}

.flex.flex-3 article {
	position: relative;
	width: 28%;
}

.flex.flex-3 article:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	right: -2em;
	top: 0;
	border-right: 1px solid #dbdbdb;
	pointer-events: none;
}


.flex.flex-3 article:last-child:before {
	border: none;
}

.flex.flex-4 .box {
	width: 21%;
}

@media screen and (max-width: 980px) {

	.flex.flex-2 article {
		width: 100%;
		margin-bottom: 3em;
	}

	.flex.flex-2 article:last-child {
		margin-bottom: 0;
	}

	.flex.flex-3 {
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.flex.flex-3 article {
		width: 100%;
		border-bottom: 1px solid #dbdbdb;
		padding-bottom: 2.5em;
		margin-bottom: 3em;
	}

	.flex.flex-3 article:last-child {
		border: none;
		padding-bottom: 0;
		margin: 0 0 1em 0;
	}

	.flex.flex-3 article:before {
		display: none;
	}

	.flex.flex-4 .box {
		width: 47%;
	}

}

@media screen and (max-width: 480px) {

	.flex.flex-4 .box {
		width: 100%;
	}

}

/* hamburger menu */

.hamburger {
	display: none;
}

#menuToggle {
	display: block;
	position: relative;
	top: 2.1875rem;
	left: 3.125rem;
	margin-right: 50px;

	z-index: 1;

	-webkit-user-select: none;
	user-select: none;
}

#menuToggle a {
	text-decoration: none;
	color: white;

	transition: color 0.3s ease;
}

#menuToggle a:hover {
	color: white;
}


#menuToggle input {
	display: block;
	width: 2.5rem;
	height: 2rem;
	position: absolute;
	top: -0.4375rem;
	left: -0.3125rem;

	cursor: pointer;

	opacity: 0;
	z-index: 2;

	-webkit-touch-callout: none;
}


#menuToggle span {
	display: block;
	width: 2.0625rem;
	height: 0.25rem;
	margin-bottom: 0.3125rem;
	position: relative;

	background: white;
	border-radius: 0.1875rem;

	z-index: 1;

	transform-origin: 4px 0px;

	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
		background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
		opacity 0.55s ease;
}

#menuToggle span:first-child {
	transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
	transform-origin: 0% 100%;
}


#menuToggle input:checked~span {
	opacity: 1;
	transform: rotate(45deg) translate(-2px, -1px);
	background: white;
}


#menuToggle input:checked~span:nth-last-child(3) {
	opacity: 0;
	transform: rotate(0deg) scale(0.2, 0.2);
}


#menuToggle input:checked~span:nth-last-child(2) {
	transform: rotate(-45deg) translate(0, -1px);
}

#menu {
	position: absolute;
	width: 18.75rem;
	margin: -100px 0 0 -50px;
	padding: 3.125rem;
	padding-top: 7.8125rem;

	background: var(--main-color);
	list-style-type: none;
	-webkit-font-smoothing: antialiased;

	transform-origin: 0% 0%;
	transform: translate(-100%, 0);

	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

#menu li {
	padding: 0.625rem 0;
	font-size: 1.375rem;
}


#menuToggle input:checked~ul {
	transform: none;
}

@media screen and (max-width: 980px) {

	.hamburger {
		display: block;
	}


}

/* header */

.dropdown-menu {
	position: relative;
	display: inline-block;

}

.dropdown-service {
	opacity: 0;
	position: absolute;
	background-color: var(--main-color);
	z-index: 1;
	padding-right: 1.25rem;
	transform: translateY(-10px);
	transition: all 0.25s ease-in;
	text-align: left;
}

.dropdown-service a {
	padding: 0.75rem 1rem;
	text-decoration: none;
	display: block;
}

.dropdown-menu:hover>.dropdown-service {
	transform: translateY(0);
	opacity: 1;
}

.afspraak {
	display: flex;
	justify-content: space-between;
	margin-left: 40%;
	margin-right: 40%;
	background-color: white;
	text-align: center;
	padding: 0.625rem;
	align-items: center;
}

.fa-phone {
	margin-right: 0.3125rem;
}

.afspraak a {
	color: var(--main-color);
	text-decoration: none;
	-moz-transition: color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;

}

.afspraak a:hover {
	color: black;
	-moz-transition: color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.header_section {
	background: var(--main-color);

}

.logo-header1 {
	position: absolute;
	left: -21%;
	bottom: -65%;
	z-index: 2;
}



.logo-header1 img {
	width: 18%;

}



#header {
	color: #d4e0ef;
	cursor: default;
	height: 3.25em;
	left: 0;
	line-height: 3.25em;
	text-align: right;
	width: 100%;
	position: absolute;
}

#header .inner {
	margin: 0 auto;
	position: relative;
}

#header .logo {
	color: #ffffff;
	display: inline-block;
	font-weight: 600;
	height: inherit;
	left: 0;
	line-height: inherit;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	font-size: 1em;
}

#header a {
	-moz-transition: color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
	display: inline-block;
	padding: 0 0.75em;
	color: inherit;
	text-decoration: none;
	font-size: .8em;
}

#header a:hover {
	color: #ffffff;
}

#header a:last-child {
	padding-right: 0;
}

#header a.navPanelToggle {
	display: none;
	text-decoration: none;
	height: 4em;
	width: 4em;
	z-index: 10003;
}

#one p {
	color: var(--main-color);
	margin-bottom: 2.5rem;
	margin-top: -0.625rem;
}

#one a {
	color: white;
	padding: 0.5625rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	background-color: var(--main-color);
	text-decoration: none;
	transition: 1s;

}

#one a:hover {
	color: black;
	background-color: white;
	transition: 1s;
}

#header a.navPanelToggle .fa {
	font-size: 1.25em;
}

@media screen and (max-width: 1280px) {

	.afspraak {
		margin-left: 30%;
		margin-right: 30%;
	}

}

@media screen and (max-width: 980px) {

	#header a.navPanelToggle {
		display: inline-block;
	}

	#header .logo {
		display: none;
	}

	.logo-header1 img {
		display: none;
	}

	.afspraak {
		margin-left: 30%;
		margin-right: 30%;
	}






}

@media screen and (max-width: 736px) {

	#header a {
		padding: 0 0.5em;
	}

	.afspraak {
		margin-left: 10%;
		margin-right: 10%;
	}

}

@media screen and (max-width: 980px) {

	#header {
		top: 3em;
		height: 2.75rem;
		line-height: 2.75rem;
	}

}

@media screen and (max-width: 736px) {}

@media screen and (max-width: 480px) {}

@media screen and (max-width: 400px) {

	.afspraak {
		margin-left: 5%;
		margin-right: 5%;
	}
}

@media screen and (max-width: 360px) {

	.afspraak {
		margin-left: 3%;
		margin-right: 3%;
	}
}


@media screen and (max-width: 280px) {

	.afspraak {
		font-size: small;
		margin-left: 2%;
		margin-right: 2%;
	}

	#header {
		width: 114.3%;
	}
}


/* body and mains */

@-ms-viewport {
	width: device-width;
}

@media screen and (max-width: 480px) {

	html,
	body {
		min-width: 20rem;
	}

}

html {
	scroll-behavior: smooth;
}


body {
	background: #fff;
	-ms-overflow-style: scrollbar;

}

body.is-loading *,
body.is-loading *:before,
body.is-loading *:after {
	-moz-animation: none !important;
	-webkit-animation: none !important;
	-ms-animation: none !important;
	animation: none !important;
	-moz-transition: none !important;
	-webkit-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
}


/* fonts and ankors and alignments */

a {
	font-family: var(--font);

}

em,
i {
	font-style: italic;
}

p {
	margin: 0 0 2rem 0;
	font-size: 900;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	color: var(--main-color);
	line-height: 1.5;
	margin: 0 0 1rem 0;
	font-family: 'Poppins', sans-serif;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
	text-decoration: none;
}

h2 {
	font-size: 1.75rem;
	font-weight: 100;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 1.1rem;
}

h5 {
	font-size: 0.9rem;
}

h6 {
	font-size: 0.7rem;
}

.align-left {
	text-align: left;
}

.align-center {
	text-align: center;
}

.align-right {
	text-align: right;
}

.inner {
	max-width: 75rem;
	margin: 0 auto;
}

@media screen and (max-width: 1280px) {

	.inner {
		max-width: 90%;
	}

}

@media screen and (max-width: 480px) {

	.inner {
		max-width: 85%;
	}

}

/* article */

section.special,
article.special {
	text-align: center;
}

section.special article,
article.special article {
	text-align: left;
}

section.wrapper,
article.wrapper {
	padding: 6em 0;
}

section.wrapper header,
article.wrapper header {
	margin-bottom: 4em;
}

section.wrapper header h2,
article.wrapper header h2 {
	font-size: 5em;
	font-weight: 600;
	margin: 0 0 .5em 0;
}

section.wrapper header p,
article.wrapper header p {
	font-size: 1em;
}

section.wrapper article header,
article.wrapper article header {
	margin: 0;
}

section.wrapper.style1,
article.wrapper.style1 {
	background: var(--main-color);
	color: #bacee6;
}

section.wrapper.style1 header h2,
article.wrapper.style1 header h2 {
	color: black;
}

section.wrapper.style1 header p,
article.wrapper.style1 header p {
	color: black;
}



@media screen and (max-width: 980px) {

	section.wrapper,
	article.wrapper {
		padding: 2em 0;
	}

}

@media screen and (max-width: 736px) {

	section.wrapper header,
	article.wrapper header {
		margin-bottom: 2em;
	}

	section.wrapper header h2,
	article.wrapper header h2 {
		font-size: 2em;
	}

	section.wrapper header p,
	article.wrapper header p {
		font-size: .9em;
	}

}

@media screen and (max-width: 480px) {

	section.wrapper,
	article.wrapper {
		text-align: center;
	}

	section.wrapper article,
	article.wrapper article {
		text-align: center;
	}

}

header p {
	color: #bbb;
	position: relative;
	margin: 0 0 1.5em 0;
}

header h2+p {
	margin-top: -1em;
}

header h3+p {
	font-size: 1.1em;
	margin-top: -0.8em;
}

header h4+p,
header h5+p,
header h6+p {
	font-size: 0.9em;
	margin-top: -0.6em;
}

/* cards */

	.card-header h2,.card-header p{
		font-family: var(--font);
		color: white;
	}

	.card-header h2 {
		font-size: 3rem;
		font-weight: 600;
	}

	.card-header p {
		font-size: 1.5rem;
		margin-bottom: 2.5rem;
	}


  .cards {
	display: grid;
	grid-template-columns: auto auto auto; 
	max-width: 1170px;
	margin: 0 auto;
	grid-gap: 9px;
	align-items: center;
	width: 100%;
  }
  .card {
	max-width: 100%;
	height: 450px;
	overflow: hidden;
	border-radius: 12px;
	position: relative;
	transition: all ease .6s;
  }
  
  .pic {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	background-position: center center;
	background-size: cover;
  }
  .pic img:hover {
	transform: scale(1.2);
  }
  .pic img {
	width: 100%;
  }
  .ttl {
	display: flex;
	flex-flow: column wrap;
	justify-content: flex-end;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	margin-bottom: -36px;
	text-align: center;
	transition: all ease .3s;
	transform: trasnlateX(12px);
	z-index: 3;
  }
  .ttl:after {
	content: '';
	background: linear-gradient(to top, black , transparent);  
	top:0;right:0;bottom:0;left:0;
	position: absolute;
	z-index: -1;
	margin-bottom: -27px;
  }
  .ttl:hover {
	transform: translateY(-12px);
  }
  
  .ttl .h2 {
	font-family: var(--font);
	font-size: 21px;
	color: white;
	font-weight: bold;
	text-transform: uppercase;
	position: relative;
  }

  .ttl .subtitle {
	font-family: var(--font);
	color: white;
	font-size: 15px;


  }
  .ttl .h2:after {
	content: '';
	width: 27px;
	border-top: 3px solid #fff;
	display: block;
	margin: 0 auto;
	margin-top: 21px;
  }
  
  .ttl a {
	font-family: var(--font);
	width: 60%;
	margin: 0 auto;
	line-height: 22px;
	margin-bottom: 24px;
	color: #fff;
	transition-delay: 0.5s;
  }
  
  .ttl .btn {
	color: #fff;
	text-decoration: none;
	margin: 0 auto 36px auto;
	width: 72px;
	height: 36px;
	line-height: 36px;
	border-radius: 27px;
	border: 1px solid #fff; 
	display: block;
	overflow: hidden;
	transition: all ease .3s;
  }
  .ttl .btn:hover {
	width: 81px;
	background: rgba(255,165,0,0.36);
  }
  
  @media (min-width: 0) and (max-width: 575px) {
	.cards {
	  grid-template-columns: 100%;
	}
	.card {
	  max-width: 100%;
	}
  }
  @media (min-width: 576px) and (max-width: 767px) {
	.cards {
	  grid-template-columns: auto auto auto;
	}
	.card:nth-child(1) {
	  grid-column: 1 / 3;
	}
	.card:nth-child(2) {
	  grid-column: 3 / 5;
	}
	.card:nth-child(3) {
	  grid-column: 1 / 5;
	}  
  }
  @media (min-width: 768px) and (max-width: 991px) {
	.card:nth-child(1) {
	  grid-column: 1 / 3;
	}
	.card:nth-child(2) {
	  grid-column: 3 / 4;
	}
	.card:nth-child(3) {
	  grid-column: 1 / 4;
	}  
  }
  @media (min-width: 576px) and (max-width: 991px) {
	.cards {
	  grid-template-columns: auto auto;
	}
	.card {
	  max-width: 100%;
	}
  }




			
/* imgs */

.image {
	border-radius: 0;
	border: 0;
	display: inline-block;
	position: relative;
}

.image img {
	border-radius: 0;
	display: block;
}

.img-box {
	border: #155E72 solid 5px;
}

.image.left,
.image.right {
	max-width: 40%;
}

.image.left img,
.image.right img {
	width: 100%;
}


.image.left {
	float: left;
	padding: 0 1.5em 1em 0;
	top: 0.25em;
}

.image.right {
	float: right;
	padding: 0 0 1em 1.5em;
	top: 0.25em;
}

.image.fit {
	display: block;
	margin: 0 0 2em 0;
	width: 100%;
}

.image.fit img {
	width: 100%;
}

.image.main {
	display: block;
	margin: 0 0 3em 0;
	width: 100%;
}

.image.main img {
	width: 100%;
}


/* Nav */

@media screen and (max-width: 980px) {

	#nav {
		display: none;
	}

}

#navPanel {
	-moz-transform: translatex(20em);
	-webkit-transform: translatex(20em);
	-ms-transform: translatex(20em);
	transform: translatex(20em);
	-moz-transition: -moz-transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
	-webkit-transition: -webkit-transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
	-ms-transition: -ms-transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
	transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
	-webkit-overflow-scrolling: touch;
	visibility: hidden;
	overflow-y: auto;
	position: fixed;
	right: 0;
	top: 0;
	background: var(--main-color);
	color: #d4e0ef;
	height: 100%;
	max-width: 80%;
	width: 20em;
	padding: 0.5em 1.25em;
	z-index: 10003;
}

#navPanel.visible {
	-moz-transform: translatex(0);
	-webkit-transform: translatex(0);
	-ms-transform: translatex(0);
	transform: translatex(0);
	box-shadow: 0 0 1.5em 0 rgba(0, 0, 0, 0.2);
	visibility: visible;
}

#navPanel a:not(.close) {
	border-top: solid 1px rgba(255, 255, 255, 0.25);
	color: #d4e0ef;
	font-weight: 600;
	display: block;
	padding: 0.75em 0;
	text-decoration: none;
	font-weight: 300;
}

#navPanel a:not(.close):first-child {
	border: none;
}

#navPanel .close {
	text-decoration: none;
	-moz-transition: color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
	-webkit-tap-highlight-color: transparent;
	border: 0;
	color: #d4e0ef;
	cursor: pointer;
	display: block;
	height: 4em;
	padding-right: 1.25em;
	position: absolute;
	right: 0;
	text-align: right;
	top: 0;
	width: 5em;
}

#navPanel .close:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-transform: none !important;
	content: '\f00d';
	width: 3em;
	height: 3em;
	line-height: 3em;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	text-align: center;
}

#navPanel .close:hover {
	color: inherit;
}

/* moving Banner */

.photobanner img {
	padding-left: 12.5rem;
	padding-right: 12.5rem;
	padding-bottom: 0.625rem;
	padding-top: 0.625rem;
	width: 20%;
	align-items: center;
}


.scroll-container {
	overflow: hidden;
	background: white;
}

.photobanner {
	height: 17rem;
	width: 221.875rem;
	margin-bottom: -6.25rem;
}

.first {
	-webkit-animation: bannermove 30s linear infinite;
	-moz-animation: bannermove 30s linear infinite;
	-ms-animation: bannermove 30s linear infinite;
	-o-animation: bannermove 30s linear infinite;
	animation: bannermove 30s linear infinite;
}

@keyframes bannermove {
	0% {
		margin-left: 0;
	}

	100% {
		margin-left: -62.5rem;
	}

}

@-moz-keyframes bannermove {
	0% {
		margin-left: 0;
	}

	100% {
		margin-left: -62.5rem;
	}

}

@-webkit-keyframes bannermove {
	0% {
		margin-left: 0;
	}

	100% {
		margin-left: -62.5rem;
	}

}

@-ms-keyframes bannermove {
	0% {
		margin-left: 0;
	}

	100% {
		margin-left: -62.5rem;
	}

}

@-o-keyframes bannermove {
	0% {
		margin-left: 0;
	}

	100% {
		margin-left: -62.5rem;
	}

}

@media screen and (max-width: 480px) {

	.first {
		animation: bannermove 50s linear infinite;

	}

	.photobanner {

		margin-bottom: -12rem;
	}


	.photobanner img {
		width: 15%;
	}

	@keyframes bannermove {
		0% {
			margin-left: 0;
		}

		100% {
			margin-left: -175rem;
		}

	}

	@-moz-keyframes bannermove {
		0% {
			margin-left: 0;
		}

		100% {
			margin-left: -175rem;
		}

	}

	@-webkit-keyframes bannermove {
		0% {
			margin-left: 0;
		}

		100% {
			margin-left: -175rem;
		}

	}

	@-ms-keyframes bannermove {
		0% {
			margin-left: 0;
		}

		100% {
			margin-left: -175rem;
		}

	}

	@-o-keyframes bannermove {
		0% {
			margin-left: 0;
		}

		100% {
			margin-left: -175rem;
		}

	}
}



/* Banner */



#banner {
	background-image: url('imgs/compleet-badkamer.jpg');
	background-position: bottom;
	background-attachment: fixed;
	background-repeat: no-repeat;
	text-align: center;

}

#banner h1 {
	font-size: 3.5em;
	font-weight: 100;
	color: #fff;
	line-height: 1em;
	margin: 0 0 0.5em 0;
	padding: 0;
}

#banner p {
	font-size: 1em;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 1.75em;
}

#banner img {
	width: 30%;
	margin-top: -3%;


}



@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {

	#banner {
		background-attachment: scroll;
	}

}

@media screen and (max-width: 1280px) {


	#banner img {
		margin-top: -4%;
	}


}

@media screen and (max-width: 1025px) {


	#banner img {
		margin-top: -4.5%;
	}


}

@media screen and (max-width: 980px) {

	#banner {
		background-attachment: scroll;
		background-position: center;

	}

	#banner img {
		margin-top: -5%;
	}

}

@media screen and (max-width: 820px) {

	#banner img {
		margin-top: -6%;
		width: 40%;
	}





}

@media screen and (max-width: 736px) {

	#banner img {
		margin-top: 8%;
	}

	#banner h1 {
		font-size: 2.5em;
	}

	#banner p {
		font-size: .9em;
	}


}

@media screen and (max-width: 480px) {

	#banner img {
		width: 50%;
	}

}

@media screen and (max-width: 415px) {

	

}

@media screen and (max-width: 380px) {






}

@media screen and (max-width: 280px) {






} 


/* Footer */

.contacts-footer a {
	color: var(--main-color);
	font-family: var(--font);
	text-decoration: none;
}
.contacts-footer a:hover {
	color: var(--secondary-color);
	text-decoration: underline;
}


.kenismaking a {
	color: var(--main-color);
}

.kenismaking a:hover {
	color: var(--secondary-color);
}

.kenismaking p {
	color: var(--main-color);
}



.watermerk {
	text-align: center;
}

#footer .inner {
	border-top: 1px solid #dbdbdb;
	padding-top: 3em;
}

.copyright {
	text-align: center;
	color: #bbb;
	font-size: 0.8em;
	margin: 0 0 2em 0;
	padding: 0;
}

.copyright a {
	font-weight: 600;
	text-decoration: none;
}

.copyright a:hover {
	color: #bbb;
	text-decoration: underline;
}

#footer p {
	color: var(--main-color);
}

#footer .copyright {
	color: #bbb;
	font-size: 0.8em;
	margin: 0 0 2em 0;
	padding: 0;
}

#footer .copyright a {
	color: #bbb;
	text-decoration: none;
}

#footer .copyright a:hover {
	color: #bbb;
	text-decoration: none;
}

#footer ul.icons li .icon {
	font-size: 0.58em;
}

@media screen and (max-width: 736px) {

	#footer .inner {
		padding-top: 2em;
	}

	#footer .copyright {
		-ms-flex-order: 2;
		-moz-order: 2;
		-webkit-order: 2;
		-ms-order: 2;
		order: 2;
	}

	#footer ul {
		-ms-flex-order: 1;
		-moz-order: 1;
		-webkit-order: 1;
		-ms-order: 1;
		order: 1;
	}

	#footer .flex {
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center;
	}

}

/* icons */



.icon {
	text-decoration: none;
	border-bottom: none;
	position: relative;
	color: var(--main-color);
}

.icon:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-transform: none !important;
}

.icon>.label {
	display: none;
}

/* lists */

ol {
	list-style: decimal;
	margin: 0 0 2em 0;
	padding-left: 1.25em;
}

ol li {
	padding-left: 0.25em;
}

ul {
	list-style: disc;
	margin: 0 0 2em 0;
	padding-left: 1em;
}

ul li {
	padding-left: 0.5em;
}

ul.alt {
	list-style: none;
	padding-left: 0;
}

ul.alt li {
	border-top: solid 1px #dbdbdb;
	padding: 0.5em 0;
}

ul.alt li:first-child {
	border-top: 0;
	padding-top: 0;
}

ul.icons {
	cursor: default;
	list-style: none;
	padding-left: 0;
}

ul.icons li {
	display: inline-block;
	padding: 0 1em 0 0;
}

ul.icons li:last-child {
	padding-right: 0;
}

ul.icons li .icon:before {
	font-size: 2em;
}

ul.actions {
	cursor: default;
	list-style: none;
	padding-left: 0;
}

ul.actions li {
	display: inline-block;
	padding: 0 1em 0 0;
	vertical-align: middle;
}

ul.actions li:last-child {
	padding-right: 0;
}

ul.actions.small li {
	padding: 0 0.5em 0 0;
}

ul.actions.vertical li {
	display: block;
	padding: 1em 0 0 0;
}

ul.actions.vertical li:first-child {
	padding-top: 0;
}

ul.actions.vertical li>* {
	margin-bottom: 0;
}

ul.actions.vertical.small li {
	padding: 0.5em 0 0 0;
}

ul.actions.vertical.small li:first-child {
	padding-top: 0;
}

ul.actions.fit {
	display: table;
	margin-left: -1em;
	padding: 0;
	table-layout: fixed;
	width: calc(100% + 1em);
}

ul.actions.fit li {
	display: table-cell;
	padding: 0 0 0 1em;
}

ul.actions.fit li>* {
	margin-bottom: 0;
}

ul.actions.fit.small {
	margin-left: -0.5em;
	width: calc(100% + 0.5em);
}

ul.actions.fit.small li {
	padding: 0 0 0 0.5em;
}

@media screen and (max-width: 480px) {

	ul.actions {
		margin: 0 0 2em 0;
	}

	ul.actions li {
		padding: 1em 0 0 0;
		display: block;
		text-align: center;
		width: 100%;
	}

	ul.actions li:first-child {
		padding-top: 0;
	}

	ul.actions li>* {
		width: 100%;
		margin: 0 !important;
	}

	ul.actions li>*.icon:before {
		margin-left: -2em;
	}

	ul.actions.small li {
		padding: 0.5em 0 0 0;
	}

	ul.actions.small li:first-child {
		padding-top: 0;
	}

}

/* onderhoud */

.onderhoud h1 {
	text-align: center;
	font-size: 50px;
	margin: 10%;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');