.hide {display: none}
/* Typography */
h1,
h3,
h4,
h5 {
	text-transform: uppercase;
	font-family: 'Coda', sans-serif;
}
h1 {
	margin: 0 0 20px;
	font-size: 50px;
}
h2 {
	margin: 0 0 10px 0;
	font-size: 35px;
}
h3 {
	margin: 0 0 0;
	font-size: 25px;
}
h4 {
	font-size: 20px;
}
h5 {
	font-size: 15px;
	font-weight: normal;
}
a {
	color: #3f4d5b;
	text-decoration: none;
	transition: all 0.6s ease-out 0s;
}
/* button */
.btn,
#menu a {
	color: #fff;
	background: #000;
	display: inline-block;
	padding: 0 32px;
	line-height: 43px;
	height: 43px;
	cursor: pointer;
	font-family: 'Coda', sans-serif;
	font-weight: bold;
	font-size:18px;
	outline: none;
	position: relative;
	overflow:hidden;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.btn:after,
#menu a:after {
	content: '';
	position: absolute;
	z-index: -1;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	width: 100%;
	height: 0;
	top: 50%;
	left: 50%;
	background: #fff;
	opacity: 0;
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.btn:hover:after,
.btn.active:after,
#menu a:hover:after,
#menu a.active:after {
	height: 260%;
	opacity: 1;
}
.btn:hover,
.btn:active,
.btn.active,
#menu a:hover,
#menu a:active,
#menu a.active {
	color: #ef7f01;
}
/* form */
::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
   color: rgba(255, 255, 255, 0.3);
}
.form-item {
	margin-bottom: 14px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
button[type="submit"],
textarea {
	color: #000;
	width: 65%;
	height: 45px;
	border: 2px solid #000;
	border-radius: 10px;
	background: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 18px;
	transition: all 0.3s ease-out 0s;
}
button[type="submit"] {
	color: #fff;
	background: #EF7F01;
	border-color: #EF7F01;
}
@media only screen and (max-width: 767px) {
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	button[type="submit"],
	textarea {
		width: 95%;
}
}
#contact-form label {
	display: block;
	text-align: center;
}
#contact-form {
	padding-bottom: 50px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	padding: 5px 10px;
}
button[type="submit"] {
	text-transform: uppercase;
	font-size: 18px;
	font-family: 'Coda', sans-serif;
	font-weight: bold;
}
textarea {
	height: 150px;
}
button[type="submit"]:hover {
	color: #000;
}
/* Layout */
html, body {
	min-height: 100%;
	font-family: 'Coda', sans-serif;
}
/*body.loading {
	background-image: url(../images/preloader.gif);
	background-position: center center;
	background-repeat: no-repeat;
}
body.loading * {
	display: none;
}*/
body {
	background-color: #000;
	color: #000;
}
#wrap {
	margin: 0;
	overflow: hidden;
}
#header {
	position: relative;
	min-height: 100px;
	margin: 0 auto;
	padding: 25px 0 50px 0; 
	z-index: 2;
}
#content {
	max-width: 900px;
	margin: 0 auto;
	padding: 30px 15px 15px 15px;
	text-align: center;
}
#content p {
	font-family: 'Coda', sans-serif;
	font-size: 20px;
	line-height: 1.5em;
	max-width: 600px;
	margin: 0 auto 30px;
}
#content p a {
	color: #414141;
}
#content p a:hover {
	color: #EF7F01 !important;
}
.content {
	display: none;
	overflow: hidden;
	margin: 0 10px; 
}
.content#home {
	display: block;
}
#moreinfo p {
	max-width: 445px;
	margin: 0 auto 40px;
}
#social {
	margin: 45px 0 -25px 0;
	font-size: 12px;
	text-transform: uppercase;
	text-align: center;
}
#social > a {
	margin: 0 15px;
	display: inline-block;
}
/* Footer */
#footer {
	position: relative;
	z-index: 2;
	line-height: 60px;
	height: 400px;
}
#footer p {
		text-align: center;
		font-size: 46px;
		line-height: 50px;
		opacity: 0.6; filter: alpha(opacity=60);  
		color: #fff;
		text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.8);
		padding-top: 100px;
}
#footer p .fs {
}
/* Header */
#header,
.ss-style-triangles {
	background: rgba(255, 255, 255, 0.8); 
}
/* logo */
#logo {
	font-family: 'Coda', sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	max-width: 300px;
	margin: 0 auto;
	text-align: center;
	position: relative; 
	z-index: 3;
	margin-bottom: 85px; 
}
#logo > a {
	color: #fff;
	text-decoration: none;
	font-size: 33px;
	line-height: 1;
}
#logo > a img {
	display: none; 
}
#logo > a img:last-child {
	display: block;
}
#logo > a:hover img {
	display: none;
}
#logo > a:hover img:first-child {
	display: block;
}
#logo > a span.logotext {
	margin-bottom: 5px;
	display: block;
}
#logo img {
	position: absolute;
	top: 0; 
	left: 0;
}
span.dash {
	display: inline-block;
	width: 40px;
	height: 2px;
	background: #fff;
}
/* menu */
#menu ul {
	margin: 70px 0 0;
	padding: 0;
}
#menu ul li {
	display: inline-block;
	margin: 15px 5px 15px 5px;
}
#menu a {
	width: 105px;
}
/* sections style */
#countdown {
	max-width: 900px;
	margin: 150px auto 0;
}
section#main {
	position: relative;
}
section#main::after {
    position: absolute;
    content: '';
    pointer-events: none;
}
.ss-style-diagonal {
	z-index: 1;
}
.ss-style-triangles,
.ss-style-halfcircle,
.ss-style-multitriangles,
.ss-style-zigzag {
	padding-bottom: 80px;
	z-index: 1;
}
/* Triangles */
.ss-style-triangles::after {
	left: 50%;
	width: 135px;
	height: 64px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: -64px;
	z-index: -2;
  background: url('../images/driehoek.png') no-repeat;
	opacity: 0.8; filter: alpha(opacity=80);  
}
/* background image */
.bg-image {
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	background-attachment: fixed;
}
/* background animation */
.bg-animation {
    background: url('../images/bg-animate.png') #222 repeat;
    background-position: 0 0;
    -webkit-animation: patternEf 80s linear infinite;
    -moz-animation: patternEf 80s linear infinite;
    animation: patternEf 80s linear infinite;
}
/* background slide */
#owl-banner {
	position: fixed; 
	left: 0;
	top: 0; 
	right: 0; 
	bottom: 0;
	z-index: 0;
	text-align: center;
	margin: 0 auto;
}
@-webkit-keyframes patternEf {
    0%{background-position: 0 0;}
    50%{background-position: -100% 0;}
    100%{background-position: 100% 0;}
}
@-moz-keyframes patternEf {
    0%{background-position: 0 0;}
    50%{background-position: -100% 0;}
    100%{background-position: 100% 0;}
}
@keyframes patternEf {
    0%{background-position: 0 0;}
    50%{background-position: -100% 0;}
    100%{background-position: 100% 0;}
}
/* Preload */
#preload {
	background: #000;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;	
	width: 100%;
	z-index: 998;
}
#preload-content {
	color: #bec7cf;
	font-size: 14px;
	height: 100px;
	left: 50%;
	margin-left: -50px;
	margin-top: -50px;
	position: absolute;
	text-align: center;
	top: 50%;
	width: 100px;
	z-index: 999;
}
.spinner {
	margin: 0 auto 14px;
	width: 100px;
	height: 100px;
	position: relative;
}
.cube {
  width: 10px;
  height: 10px;
  border-radius: 4px;
  position: absolute;
  -webkit-animation: cubemove 4s infinite ease-in-out;
  animation: cubemove 4s infinite;
  background: #EF7F01;
}
@-webkit-keyframes cubemove {
  35% {
    -webkit-transform: scale(0.005);
  }

  50% {
    -webkit-transform: scale(1.7);
  }

  65% {
    -webkit-transform: scale(0.005);
  }
}
@-moz-keyframes cubemove {
  35% {
    -moz-transform: scale(0.005);
  }

  50% {
    -moz-transform: scale(1.7);
  }

  65% {
    -moz-transform: scale(0.005);
  }
}
@keyframes cubemove {
  35% {
    transform: scale(0.005);
  }

  50% {
    transform: scale(1.7);
  }

  65% {
    transform: scale(0.005);
  }
}
.cube1 {
  left: 14px;
  top: 0;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.1s;
}
.cube2 {
  left: 28px;
  top: 0;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.2s;
}
.cube3 {
  left: 42px;
  top: 0;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.3s;
}
.cube4 {
  left: 0;
  top: 14px;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.1s;
}
.cube5 {
  left: 14px;
  top: 14px;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.2s;
}
.cube6 {
  left: 28px;
  top: 14px;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.3s;
}
.cube7 {
  left: 42px;
  top: 14px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.4s;
}
.cube8 {
  left: 0;
  top: 28px;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.2s;
}
.cube9 {
  left: 14px;
  top: 28px;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.3s;
}
.cube10 {
  left: 28px;
  top: 28px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.4s;
}
.cube11 {
  left: 42px;
  top: 28px;
  -webkit-animation-delay: 1s;
  animation-delay: 0.5s;
}
.cube12 {
  left: 0;
  top: 42px;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.3s;
}
.cube13 {
  left: 14px;
  top: 42px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.4s;
}
.cube14 {
  left: 28px;
  top: 42px;
  -webkit-animation-delay: 1s;
  animation-delay: 0.5s;
}
.cube15 {
  left: 42px;
  top: 42px;
  -webkit-animation-delay: 1.2s;
  animation-delay: 0.6s;
}
ul.diensten { 
	font-family: 'Coda', sans-serif;
	font-size: 30px;
	line-height: 40px;
	max-width: 600px;
	margin: 0 auto; 
	padding: 0;
}
.diensten li {
	list-style: none; 
}
.ocolor b  {
	color: #EF7F01;
}
section .bcolor {
	color: #000;
}
a:hover {
	color: #ef7f01;
}
#content p.ad  {
	margin: 10px auto;
}
