/*Fonts*/

@font-face {
	font-family: 'Bliss Web';
	src: url('/css/font/blsw-rg.woff2') format('woff2'),
	url('/css/font/blsw-rg.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Bliss Web';
	src: url('/css/font/blsw-hv.woff2') format('woff2'),
	url('/css/font/blsw-hv.woff') format('woff');
	font-weight: 900;
	font-style: normal;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');

body {
	font-family: 'Bliss Web',Arial, Helvetica, sans-serif;
}
h1,h2,h3,h4,h5{
	font-family: 'Bliss Web',Arial, Helvetica, sans-serif;
}

p{
	font-size: 16px;
}
.blue {
	color: #003554;
}
.bg-blue{
	background-color: #003554;
}

.black {
	color: #000000;
}

.white {
	color: #ffffff;
}

.spaced {
	letter-spacing: 0.1em;
}

.spaced-2 {
	letter-spacing: 0.2em;
}

.bold {
	font-weight: 900;
}

.centered {
	text-align: center;
}

.hidden {

	opacity: 0;
}

::placeholder {
	letter-spacing: 0.1em;
	font-size: 14px;
}

:-ms-input-placeholder {
	letter-spacing: 0.1em;
	font-size: 14px;
}

::-ms-input-placeholder {
	letter-spacing: 0.1em;
	font-size: 14px;
}

/*Topnav*/

.topnav {
	height: 150px;
	background-color: #003554;
  	background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.3) 35px, rgba(255,255,255,.3) 70px);
  	position: fixed;
  	z-index: 800;
  	width: 100%;
	display: none;
}

/*To be replaced with SVG*/
.topnav h1 {
	font-size: 120px;
	color: #fdc300;
	position: relative;
	font-weight: 900;
	text-align: center;
	left: 30%;
}

/*Sidenav*/

.sidenav {
  	height: 100%;

  	width: 20%;
 	position: fixed;
 	top: 0;
	z-index: 20;
 	left: 0;
 	background-color: #003554;
 	overflow-x: hidden;
	/*
 	background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.3) 35px, rgba(255,255,255,.3) 70px); /*To be replaced with image*/
	background-image: url('/img/balk.svg');
	background-size: cover;
	background-position: center center;
}

/*To be replaced with SVG*/
.sidenav h1 {
	font-size: 80px;
	line-height: 48px;
	color: #fdc300;
	position: relative;
	font-weight: 900;
	margin-left: 25%;
	top: 40%;
}

/*To be replaced with SVG*/
.sidenav h1.alt {
	transform: translate(-50px, 0px);
}

/*Hamburger*/

.hamburger {
	display: flex;
	display: -webkit-flex;
	top: 0;
	left: 0;
	height: 150px;
	width: 150px;

	height: 45px;
	width: 45px;
	left: 10%;
	margin-left: -30px;

	background-color: #fdc300;
	cursor: pointer;
	position: fixed;
	z-index: 900;
}

.hamburger-content {
	position: relative;
	margin-top: 6px;
	margin-left: 6px;
}

.bar1, .bar2, .bar3 {
	height: 4px;
	background-color: #fff;
	margin: 5px 0;
   	-webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
}

.bar1, .bar3 {
	width: 32px;
}

.bar2 {
	width: 20px;
	margin-left: 6px;
}

.active .bar1 {
	-webkit-transform: rotate(-45deg) translate(-7px, 6px);
	-moz-transform: rotate(-45deg) translate(-7px, 6px);
	-o-transform: rotate(-45deg) translate(-7px, 6px);
	transform: rotate(-45deg) translate(-7px, 6px);
}

.active .bar2 {
	opacity: 0;
}

.active .bar3 {
	-webkit-transform: rotate(45deg) translate(-7px, -6px);
	-moz-transform: rotate(-45deg) translate(-7px, -6px);
	-o-transform: rotate(-45deg) translate(-7px, -6px);
	transform: rotate(45deg) translate(-7px, -6px);
}

.back {
	display: flex;
	display: -webkit-flex;
	top: 0;
	left: 0;
	background-color: #003554;
	cursor: pointer;
	position: fixed;
	z-index: 900;
	width: 120px;
	height: 45px;
}

.back-content {
	color: #fff;
	font-size: 40px;
	align-items: center;
	display: flex;
	display: -webkit-flex;
	margin-left: 45%;
	text-decoration: none;
	-webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
}

.back:hover .back-content {
	text-decoration: none;
	color: white;
   	-webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
    transform:translateX(-20px);
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-30px);
	}
	60% {
		transform: translateY(-15px);
	}
}
.bounce {
	animation: bounce 2s infinite;
}


/*Page*/

.main {
  	margin-left: 20%;
	position: relative;
	background-color: #FAFAFA;
}

/*Menu*/

.slides {
	background-size: cover;
	background-position: center center;
	align-items: center;
	display: flex;
	display: -webkit-flex;
	cursor: pointer;
	height: 100vh;
	text-decoration: none !important;
	cursor: pointer;

}

@media screen and (max-width: 767px) {
	.menu {

		margin-top: 45px;
	}

	.slides {

		height: calc(25vh - 35px) !important;
	}

	body.scroll .slides {
		height: calc(25vh - 10px) !important;
	}
}

@media screen and (max-width: 767px) {
	.cases .hidden {
		display: none;
}
}

.slides::after {
	background-color:#fdc300;
	opacity: 0.8;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slides .container {
	z-index: 100;
	position: relative;
	padding-left: 30px;
	padding-right: 30px;
}

.slides h1, .slides h5 {
   	-webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

.slides:hover h1, .slides:hover h5 {
   	-webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

.slides:hover .hidden {
	opacity: 1;
	height: 100px;
   	-webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

.slides .fas{
	font-size: 30px;
	color:#FFF;
	-webkit-transition: .5s ease;
	-moz-transition: .5s ease;
	-o-transition: .5s ease;
	transition: .5s ease;
	display: none;
}

@media screen and (max-width: 767px) {
	.slides .fas{
	margin-top: -20px;
}
}


.slides .hidden{
	height: 0px;
	overflow: hidden;
	line-height: 22px;
	font-size: 17px;
	-webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}
.slides:hover .fas {

	display: block;
	transform: translateY(20px);
}


.slides:hover .hidden{
	height: 220px;
	overflow: hidden;
	-webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}
/*Contact*/

.form-control {
	border-top: 0px;
	border-left: 0px;
	border-right: 0px;
	border-bottom: 3px solid #fdc300 !important;
	
	border-radius: 0px;
	background-color: #FAFAFA !important;
	padding-left: 0px;
}

.form-control:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.form-button {
	background-color: #003554;
	color: #fdc300;
	font-size: 14px;
	border: 0px;
	padding-top: 8px;
	padding-bottom: 10px;
	font-weight: 900;
	letter-spacing: 0.1em;
   	-webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    max-width: 200px;
}

.form-button:hover {
	background-color:#fdc300;
	color: #003554;
   	-webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
}

/*Footer*/

.footer {
	background-color: #fdc300 !important;
	position: relative;
	z-index: 12;
	font-size: 14px;
}
.footer p {
font-size: 14px;
margin-bottom: 0;

}

.footer a {
	font-size: 14px;
	color: #003554;
}

.footer a:hover {
	color: inherit;
}

.footer-bottom a {
	font-size: 12px;
	color: #fff;
}

.footer-bottom a:hover {
	color:inherit;
}

/*Hero*/



.hero {
	width: 100%;
	height: 90vh;
	background-size: cover;
	background-position: center center;
	display: flex;
	position: relative;
	align-items: flex-end;

}

.hero .down{
	color:#FFF;
	font-size: 30px;
	margin-bottom: 40px;
	margin-top: 40px;
	display: inline-block;
}

.hero .overlay{
	background-color:rgba(0,0,0,0.18);
	position: absolute;
	height: 100%;
	width: 100%;
	top:0px;

}



.hero-content {
	position: relative;
}

.hero h1 {
	font-size: 75px;
	text-transform: uppercase;
}

.hero h5 {
	font-size: 20px;
}

/*Banners*/

.banner {
	width: 100%;
	background-color:#fdc300;
	margin-top: 25px;
	padding: 41px;
	background-repeat: no-repeat;

}
.banner.left{

	background-position: calc(100% - 100px);
}

.banner.right{
	background-position: 100px;
}


/*Team*/

.photo {
	background-color: #fdc300;
	height: 600px;
   	background-size: cover;
	cursor: pointer;
   	background-position: center;
}

@media screen and (max-width: 767px) {
	.photo{
		height: 580px;
		background-position: top;
	}

}

.photo .hover{
	background-color:rgba(18,52,80,0);
	position: absolute;
	height: 100%;
	width: 100%;
	top:0px;
	left:0px;
	-webkit-transition: .4s ease;
	-moz-transition: .4s ease;
	-o-transition: .4s ease;
	transition: .4s ease;
	opacity: 0;
}

.photo .hover .name{

	color: #FFFFFF;
	font-size: 16px;
	font-weight: 900;
	text-align: center;
	width: 100%;
	display: block;
	text-align: center;

}
.photo .hover .functie{

	color: #FFFFFF;
	font-size: 16px;
	text-align: center;
	width: 100%;
	display: block;
	text-align: center;

}

.photo .hover .email{

	padding-top: 30px;
	font-size: 16px;
	text-align: center;
	width: 100%;
	display: block;
	text-align: center;

}

.photo .hover .email a {
	color: #FFFFFF;
}
.photo .hover .quote{

	padding-top: 30px;
	color: #FFFFFF;
	font-size: 16px;
	text-align: center;
	width: 100%;
	display: block;
	text-align: center;

}
.photo .hover .phone{

	padding-top: 15px;
	font-size: 16px;
	text-align: center;
	width: 100%;
	display: block;
	text-align: center;

}

.photo .hover .phone a {
	color: #FFFFFF;
}


.photo:hover .hover, .photo:active .hover{
	opacity: 1;
	background-color:rgba(18,52,80,0.84) !important;
}
/*Goto*/

.goto {
	width: 100%;
	background-size: cover;
	padding-top: 14px;
	padding-bottom: 14px;
	background-position: center;
	position: relative;
}

.goto .overlay{
	background-color:rgba(0,0,0,0.14);
	position: absolute;
	height: 100%;
	width: 100%;
	top:0px;
}

.goto a {
	border: 0px;
	display: inline-block;
	color: #000000;
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 8px;
	padding-bottom: 10px;
	background-color: #fff;
	font-weight: 900;
	letter-spacing: 0.1em;
	font-size: 14px;
	-webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
	text-decoration: none;
}

.goto a:hover {
	background-color:#003554;
	color: #fdc300;
	-webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}

.cases-button {
	opacity: 0;
	border: 0px;
	display: inline-block;
	color: #000000;
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 8px;
	padding-bottom: 10px;
	background-color: #fff;
	font-weight: 900;
	letter-spacing: 0.1em;
	font-size: 14px;
	-webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
	text-decoration: none;
}

.cases-button:hover {
	background-color:#003554;
	color: #fdc300;
	-webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.cases-button.alt {
	opacity: 1;
}


.contactslogan{
	color: #fdc300;
	font-size: 25px;
}
.contact-info{

	line-height: 30px;
}
.contact-info a{
	color:#000000
}
.contact-info i{

	width: 25px;

}

/*Carousel*/



.carousel-indicators {
	margin: 0;
	position: relative;
	left: 0;
	top: 0;
}

.carousel-indicators div{
	margin-right: 50px;
	position: relative;
}
.carousel-indicators div:nth-child(1):after ,.carousel-indicators div:nth-child(2):after{
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	position: absolute;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f105";
	top:-8px;
	font-size: 25px;
	color:#F9B400;
	right: -34px;
}
.werkwijze{
	display: flex;   position: relative
}

.werkwijze > div{
	position: relative; height: 100%;
}
.werkwijze .nav-container{
	position: absolute; bottom: 0px;
}
.werkwijze .owl-stage{
	position: relative;
	margin-bottom: 40px;
	border-bottom: 2px solid #003554;
}
@media screen and (max-width: 767px) {
	.werkwijze .owl-stage {

		margin-bottom: 40px;

	}

}
.werkwijze  .start{
	position: absolute;
	left: 0px;
	bottom: -10px;
	background-color: #003554;
	border-radius: 50%;
	width: 20px;
	height: 20px;

}

.werkwijze  .start:before{

	position: absolute;
	width: 20px;
	height: 20px;
	background-color: #fdc300;
	content:'';
	width: 500px;
	right: 20px;
}
.werkwijze  .end{
	position: absolute;
	right: 0px;
	bottom: -10px;
	background-color: #003554;
	border-radius: 50%;
	width: 20px;
	height: 20px;

}
.tags{
	margin-left: -10px;
}
.tag{
	margin-right: 10px;
	margin-left: 10px;
	display: inline-block;
}
.werkwijze  .last .prev:before{

	position: absolute;
	width: 20px;
	height: 4px;
	background-color: #fdc300;
	content:'';
	width: 100vw;
	top:14px;
	left: 30px;
}


.werkwijze  .next{
	position: absolute;
	right: 0px;
	cursor: pointer;
	bottom: -14px;

}

@media screen and (max-width: 1520px) {
.werkwijze  .next{
	right: 100px;
 	}
}

@media screen and (max-width: 767px) {
.werkwijze  .next{
	right: 40px;
 	}
}

.werkwijze  .prev{
	position: absolute;
	bottom: -14px;
	left: 0px;
	cursor: pointer;
}

@media screen and (max-width: 1520px) {
.werkwijze  .prev{
	left: -5px;
 	}
}

.werkwijze .next:after{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f105";
	position: absolute;
	color: white;
	left: 8px;
	top:-3px;
	font-size: 25px;
}
.werkwijze .prev:after{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f104";
	position: absolute;
	color: white;
	left: 8px;
	top:-3px;
	font-size: 25px;
}

.carousel-case .owl-next:after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f105";
	color: white;
	font-size: 25px;
	color: #003554;
}

.carousel-case .owl-prev:after{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f104";
	color: white;
	font-size: 25px;
	color: #003554;
}







.carousel-indicators h2 {
	color: #F9B400;
}

.carousel-indicators div.active h2 {
	color: #003554;
	opacity: 100%;
}

.carousel-indicators h2:hover {
	cursor: pointer;
}

.next {
	background-color: #003554;
	border: 0px;
	position: absolute;
	right: 15px;
	bottom: -2px;
	color: #fff;
	z-index: 20;
	width: 30px;
	height: 30px;
	-webkit-transition: .1s;
	-moz-transition: .1s;
	-ms-transition: .1s;
	-o-transition: .1s;
	transition: .1s;
}

.prev {
	background-color: #003554;
	border: 0px;
	position: absolute;
	left: 15px;
	bottom: 0;
	color: #fff;
	z-index: 20;
	width: 30px;
	height: 30px;
	-webkit-transition: .1s;
	-moz-transition: .1s;
	-ms-transition: .1s;
	-o-transition: .1s;
	transition: .1s;
}

.prev:hover{
	transform: scale(1.1);
}
.next:hover{
	transform: scale(1.1);
}

.next h5{
	padding-top: 3px;
}
.prev h5{
	padding-top: 3px;
}
.line-1 {
	border: 2px solid #003554;
	position: absolute;
	bottom: 34px;
	margin-left: 60px;
	width: 100%;
}

.line-2 {
	border: 2px solid #003554;
	position: absolute;
	bottom: 34px;
	width: 100%;
}

.line-3 {
	border: 2px solid #003554;
	position: absolute;
	padding-right: 180px;
	bottom: 34px;
}

.circle {
	height: 25px;
	width: 25px;
	background-color: #003554;
	border-radius: 50%;
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 15px;
}

/*Brands*/

.brand-holder {
  	margin-top: 15px;
    margin-bottom: 15px;
}

.brand-image{
	padding: 30px;
	text-decoration: none !important;
}

.merken-overlay:before {
	content: '';
	position:absolute;
	top: 15px;
	bottom: 15px;
	left: 15px;
	right: 15px;
	background-color: rgba(0,0,0,0.0);
	z-index: 10;
	-webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
}

.brand-image:hover .merken-overlay:before {
	background-color: rgba(0, 35, 52, 0.8);
}

.brand-image:hover .brands-text {
	opacity: 1;
	transition: .2s ease;
}

.brands-text {
position: absolute;
  top: 50%;
  left: 50%;
   -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 20;
  text-decoration: none;
  opacity: 0;
  transition: .2s ease;
}








.brand-image {
	text-decoration: none;
	height: inherit;
	width: inherit;
	display: block;
	background-size: cover;
	background-position: center;
	background-color: #FFFFFF;
	box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);

}

/*Cases*/

.cases-photo {
	height: 600px;
	align-items: center;
	display: flex;
	display: -webkit-flex;
	background-size: cover;
	background-position: center center;
  	-webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
}

.cases-photo:hover {
	cursor: pointer;
}

.cases-photo .container {
	z-index: 20;
}

.cases-photo:before {
	content: '';
	position:absolute;
	top:0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 10;
	-webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
}

.cases-photo:hover:before, .cases-photo:active:before {
	background-color: rgba(236, 189, 23, 0.9);
}

.background-yellow{
	background-color: #003554;
}





.cases-photo.alt {
	height: 300px;
  	text-align: center;
  	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.cases-photo.alt:hover {
	cursor: pointer;
}
.cases-photo.alt .container {
	z-index: 20;
}
.cases-photo.alt:before {
	content: '';
	position:absolute;
	top:0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 10;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.cases-photo:hover .hidden {
	opacity: 1;
	height: 140px;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.cases-photo.alt:hover:before {
	background-color: rgba(236, 189, 23, 0.9);
}

.cases-photo.alt h5 {
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.cases-photo.alt:hover h5 {
	transform:translateY(-20px);
   	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.cases-photo.alt:hover .hidden {
	display: block;
}

.cases-photo.alt:hover .cases-button {
	opacity: 1;
	-webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.cases-photo:hover .cases-button {
	opacity: 1;
	-webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

/*Responsive Menu*/

.scrollHeader{
	position: fixed; width: 80%	; height: 90vh; top:0px;
}
.scrollContent{
	margin-top: 90vh; background-color: #FAFAFA; position: relative; z-index: 12;
}


.menuSlide{
	position: fixed; left: -100vw; z-index: 18; width: 80%; top:0px;
	-webkit-transition: .8s ease;
	-moz-transition: .8s ease;
	-o-transition: .8s ease;
	transition: .8s ease;
}
.menuSlide.active{
	left:20%;
}

.goto.alt {
	padding-top: 60px;
	padding-bottom: 60px;
}

.goto.alt2 {
	padding-top: 100px;
	padding-bottom: 100px;
}
.btn{
	border-radius: 0px;
	font-weight: 900;
	padding-left: 15px;
	padding-right: 15px;
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
}
.btn:hover{
	transform: scale(1.1);
}
.btn.btn-white{
	background-color: #FFFFFF;

}
.description-image {
	background-size: cover;
	background-position: center center;
	height: 400px;
}
​
.background {
	background-color: #fdc300;
	padding-bottom: 40%;
	padding-top: 5%;
	margin-bottom: -32%;
	text-align: center;
}
​
.orange {
	color: #fdc300;
}

.bg-orange {
	background-color: #fdc300;
}

.image-carousel{
	position: relative;
}
#carouselExampleIndicators{
	z-index: 30;
}
.bg-yellow-half{
	background-color: #fdc300;
	position: absolute;
	width: 100%;
	height: 70%;
	z-index: 1;
	top:0px;
}
​.z-index-30{
	position: relative;
	z-index: 30 !important;
}
.profile img {
	width: 100%;
}


.cases .hidden{
	height: 0;
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
}

.carousel-indicators.alt {
	margin: 0;
	position: relative;
	left: 0;
	top: 0;
}

.CTA {
  display: flex;
  background-size: cover;
  background-position: center;
}


.CTA .overlay{
	background-color:rgba(0,0,0,0.18);
	position: absolute;
	height: 100%;
	width: 100%;
	top:0px;
}

.CTA a{
	position: relative;
	z-index: 1;
}





.CTA-button {
	margin-top: 28px;
	margin-bottom: 28px;
	border: 0px;
	color: #fdc300;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 50px;
	padding-right: 50px;
	background-color: #003554;
	font-weight: 900;
	letter-spacing: 0.1em;
	font-size: 14px;
	-webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}

.CTA-button:hover {
	background-color:#fdc300;
	color: #003554;
	-webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}

.CTA h3 {
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	margin-top: -110px;
	display: none;
}

@media screen and (max-width: 767px) {

	.scrollHeader{
		width: 100%;
	}
	.menuSlide.active{
		left:0%;
	}

	.menuSlide{
		width: 100%;
	}


}


@media screen and (max-width: 991px) {
	.slides {
		height: 250px;
	}

	.slides .hidden{
		display: none !important;
	}

}

@media screen and (max-width: 767px) {

	.topnav {
		display: flex;
		display: -webkit-flex;
		height: 60px;
	}

	.sidenav {
		display: none;
	}

	.hamburger {
		left: initial;
		right: 0;
	}

	.main {
  		margin-left: 0%;
  		padding-top: 150px;
	}

}

/*Responsive Font*/

@media screen and (max-width: 420px) {
	.goto h2 {
		font-size: 32px;
	}

}

@media screen and (max-width: 767px) {

	.slides h1 {
		font-size: 32px;
	}
	.cases-button {
		opacity: 1;
	}

}

@media screen and (min-width: 768px) {
	.back {
	width: calc(10% - 30px);
	}
}

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

	.slides h1 {
		font-size: 24px;
	}
	.goto h2 {
		font-size: 75px;
	}
	.CTA h3 {
		display: block;
	}
	.test {
	transform:translateY(100vh);
	transition: .5s ease;
}
	.test2 {
	transform:translateY(-100vh);
	transition: .5s ease;
}
	.slides:nth-child(odd) {
		top: -100vh;
	}
	.slides:nth-child(even) {
		top: 100vh;
	}

}

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

	.slides h1 {
		font-size: 32px;
	}

}

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

	.slides h1 {
		font-size: 45px;
	}

}

.footer i {
	font-size: 26px;
	color: #003554;
	margin-top: 20px;
	line-height: 50px;
	background-color: #FFFFFF;
	border-radius: 50%;
	width: 50px;
	text-align: center;
}

.cases a:hover {
	text-decoration: none;
}

.logo-overlay {
	width: 75%;
	margin-left: 12.5%;
	margin-left: 12.5%;
	height: 25%;
	cursor: pointer;
	position: absolute;
	top: 37.5%;
	min-width: 200px;
	
}

.no-before:before{
	display: none;
}

.no-uppercase{
	text-transform: none !important;
}

@media screen and (max-width: 991px) {
	.slides .container {
		top: 0px;
	}
}

@media screen and (max-width: 767px) {
	.slides .container br {
		display: none;
	}
}



.topnav{
	top: 0px;
}
@media screen and (max-width: 767px) {

	.main{
		padding-top: 0px;
	}
	.scrollHeader{
		margin-top: 45px;
	}
	.hero{
		height: 50vh;
	}

	.hero h1{
		font-size: 40px;
	}

	.hero h5{
		font-size: 15px;
	}

	.slides h5{
		font-size: 14px;
	}
	.scrollHeader{
		height: 50vh;
	}
	.scrollContent{
		margin-top: calc( 50vh + 20px);
	}

	.owl-nav{
		display: none;
	}

	.back{
		top:45px;
		left: 0px;
		right: inherit;
		width: 45px;
	}
	.back-content{
		margin-left:30%;
	}
}

.topbar{
	background:none; background-color:#003554;
}

@media screen and (max-width: 767px) {

	.logoMobile{
		height: 30px;
	}
	.topnav{
		height: inherit !important;
	}
	.topbar{
		background-color: #FAFAFA;
	}

	.hamburger-content{
		margin-top: 7px;
	}

	.topbar{
		text-align: center;
		height: 45px !important;
		width: 100%;
		padding-right: 45px;
	}

	.topbar a{

		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	.banner{
		background-size: contain;
	}
	.banner.left{
		background-position: calc(100% - 20px);
	}
	.banner.right{
		background-position: 20px;
	}

	.werkwijzeImages{
		width: 100%;
		background-size: cover !important;
		background-position: top right !important;
		background-repeat: no-repeat;
	}
}

.contact .form-button {
	font-size: 12px;
}

.hero-text a {
	color: #fdc300 !important;
}

.wistjedat a {
	color: #fff !important;
}

.cases-button.orange {
	opacity: 1;
}

.cases-button.orange:hover {
	background-color: #fdc300;
	color: #fff;
}
