/* IMPORT FONTS */
@import url(https://fonts.googleapis.com/css?family=Nunito:400,300,700);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,800);

body {
	background-color: #FAFAFA;
	height: 1200px;
	font-family: 'Open Sans';
	font-size: 15px;
	padding-top: 120px;
}

/* ALGEMEEN */

h1 {
	font-family: 'Nunito';
	font-size: 55px;
	font-weight: 700;
}

h1, h2, h3 { 
	color: #fff;
	margin: 0;
}

h2 {
	font-family: 'Open Sans';
	font-size: 20px;
	font-weight: 400;
}

.content-padding h2 {
	color: #000 !important;
	text-align: left;
	margin: 0 0 20px 0;
}

.button {
	height: 40px;
	max-width: 158px;
	line-height: 40px;
	padding: 0 20px;
	background-color: #FEB301;
	font-family: 'Open Sans';
	font-weight: 800;
	color: #FFF;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 5px;
	display: inline-block;
	transition: background-color 0.25s ease;
	cursor: pointer;
}

.button.contact a { 
	text-decoration: none; 
	color: white; 
	display: block;
	line-height: 40px;
}

.button.no-max {
	max-width: none;
}

.button:hover {
  background-color: #00B3D4;
  color: #fff;
}

a {
	transition: color 0.25s ease;
	color: black;
}

a:hover {
	 color: #00B3D4;
}

span.link {
	display: inline-block;
	}

span.link a {
	color: #FEB301;
	text-decoration: underline;
	margin-bottom: 25px;
}

span.link a:hover {
	text-decoration: none;
}

/* MOBIEL MENU */
#mobile_menu {
	position: relative; 
	left: 0px; 
	top: -495px;
	width: 100%;
	background-color: #00B3D4;
	z-index: 2;
}

#mobile_menu li {
	list-style: none;
	line-height: 40px;
}

#mobile_menu ul { padding: 20px; }

#mobile_menu li a { color: white; text-decoration: none;}

#mobile_menu h2 {
	text-align: left;
    display: block;
    color: black;
    font-size: 20px;
    font-weight: bold;
	margin: 0;
}

.slide_open {
	position: relative;
	animation: slideMenuOpen 0.25s forwards;
}

.slide_close {
	top: 0;
	position: relative;
	animation: slideMenuClose 0.25s forwards;
}

@keyframes slideMenuOpen {
	100% { top: -60px;  }
}

@keyframes slideMenuClose {
	0% { top: -60px;}
	100% { top: -495px  }
}


/* HEADER */
header {
	width: 100%;
	height: 120px;
	background: #FFF;
	position: fixed;
	top: 0;
	z-index: 99999999;
}

header .container, header .row, header .col-md-12 {
	height: 120px;
}

header .logo {
	margin-top: 35px;
}

header nav {
	font-family: 'Nunito';
	font-weight: 300;
}

header nav ul {
	margin: 0;
	padding: 0;
}

header nav li {
	list-style: none;
	float: left;
	margin: 0 30px 0 0;
	padding: 0;
	line-height: 110px;
}

header nav li a {
	text-decoration: none;
	color: #0C0C0C;
}

header .button {
	float: right;
	margin-top: 35px;
}

header.mobile {
	display: none;
	background-color: white;
	height: 80px;
}

header.mobile .hamburger_container {
    height: 40px;
    width: 40px;
    background: black;
    border-radius: 20px;
    position: relative;
	top:20px;
	cursor: pointer;
	transition: background 0.25s ease;
}

header.mobile .hamburger_container:hover {
	background: #00B3D4;
}

header.mobile .hamburger {
    height: 2px;
    width: 16px;
    background: white;
    display: block;
    position: relative;
    left: 12px;
    top: 19px;
}
header.mobile .hamburger:before {
    content: '';
    position: relative;
    display: block;
    height: 2px;
    width: 16px;
    background: white;
    top: -4px;
}
header.mobile .hamburger:after {
    content: '';
    position: relative;
    display: block;
    height: 2px;
    width: 16px;
    background: white;
    top: 2px;
}

header.mobile .contact {
	margin-top: 20px;
	float: right;
}
/* HERO */

section.hero {
	height: 580px;
}

section.hero.small {
	height: 480px;
}

section.hero .hero_img {
	background-image: url(../img/hero.jpg);
	background-position: center;
	background-size: cover;
}
 
section.hero.small .hero_img {
	background-image: url(../img/hero_small.jpg);
	background-position: center;
	background-size: cover;
}

section.hero.small.wie .hero_img {
	background-image: url(../img/hero_samen.jpg);
}

section.hero .hero_img {
	height: 580px;
}

section.hero.small .hero_img {
	height: 480px;
}

section.hero img,
section.hero h1,
section.hero h2 {
	position: absolute;;
} 

section.hero h1, h2 {
	display: inline-block;
	width: 100%;
	text-align: center;
}


@keyframes heroh1 {
	100% { top: 200px; opacity: 1; }
}

@keyframes herosmallh1 {
	0% { top: 125px; opacity: 0;}
	100% { top: 165px; opacity: 1; }
}

@keyframes heroh2 {
	100% { top: 275px; opacity: 1; }
}

@keyframes herosmallh2 {
	100% { top: 235px; opacity: 1; }
}

section .scroll {
	width: 40px;
	height: 40px;
	background-image: url('../img/scroll.svg');
	background-repeat: no-repeat;
	position: absolute;
	top: 500px;
	left: 47%;
	cursor: pointer;
	display: none;
}

/* CONTENT */
section.content {
	line-height: 25px;
}

.content-padding {
	padding: 90px 0;
}

.content-padding-no {
	padding: 90px 0 0 0;
}

section.content ul {
	margin: 0 0 0 20px;
	padding: 0;
}

section.content li {
	list-style-type: disc;
	color: #00B3D4;
	margin: 0;
	padding: 0;
}

section.content li span {
	color: #000;
}

p {
	margin: 0 0 50px 0;
}

.margin-bottom-25 {
	margin-bottom: 25px;
}

.text-bold {
	font-weight: 600;
}

.text-small {
	font-size: 10px;
}

section.diensten .overlay {
	position: absolute;
	top:0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.75;
	cursor: pointer;
}

section.diensten .overlay-transparant {
	position: absolute;
	top:0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.fadeout {
	animation: fadeout 0.25s forwards;
}

@keyframes fadeout {
	100% { opacity: 0.55; }
}


.fadein {
	animation: fadein 0.25s forwards;
}

@keyframes fadein {
	100% { opacity: 0.75; }
}

/*
section.diensten .overlay:hover {
	opacity: 0.75;
}
*/

section.diensten h2 {
	position: absolute;
	top: 35%;
	left: 0;
	width: 100%;
	text-align: center;
	font-family: 'Nunito';
	font-size: 35px;
	font-weight: 700;
}

section.diensten span {
	position: absolute;
	top: 50%;
	left: 0;
	margin: 0;
    padding: 0 10%;
    text-align: center;
	font-family: 'Open sans';
	font-size: 18px;
	color: #fff;	
}

section.diensten .button {
	position: absolute;
	top: 75%;	
	left:40%;
}

/* FOOTER */

footer {
	color: #fff;
	font-size: 16px;
}

footer .logo, footer a {
	float: left;
	clear: left;
}

footer .logo {
	margin-top: 50px;
}

footer p {
	line-height: 25px;
	margin-bottom: 25px;
}

footer .padding-footer {
	padding: 0 60px;
	/* height: 361px; */
}

footer span.telephone,
footer h3 {
	font-family: 'Nunito';
	font-weight: 700;
}

footer span.telephone {
	font-size: 25px;
}

footer h3 {
	font-size: 30px;
	line-height: 30px;
}

footer .copy {
	margin-top: 75px;
	font-size: 13px;
}