/* Algemene style */
body {
	position: relative;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 300;
	padding-top: 110px;
	padding-bottom: 77px;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
	margin-top: 0;
}

h1 {
	font-size: 22px;
}
h2 {
	font-size: 36px;
}
h3 {
	font-size: 26px;
}
h4 {
	font-size: 22px;
}

a:hover {
    text-decoration: none;
}

.hidden {
	display: none;
}

/* Navigation */
#navigation {
    position: fixed;
	z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    color: #eee;
    padding: 20px 0;
}
#navigation nav {
	padding: 0;
}
#navigation nav a {
    color: #eee;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
}
#navigation nav a.navbar-brand {
    font-weight: 400;
    text-transform: none;
    font-size: 20px;
}
#navigation img.logo {
    height: 60px;
    margin-right: 20px;
}
#navigation nav a.nav-link {
    padding: .5rem 1.5rem;
}
#navigation nav button.navbar-toggler {
    border: 1px solid #fff;
	outline: none;
}
#navigation nav span.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,<svg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'><path stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/></svg>");
}

@media(max-width: 767px) {
	#navigation nav ul.navbar-nav {
		margin-top: .8rem;
	}
	#navigation nav a.nav-link {
		padding-left: 0;
		padding-right: 0;
	}
}

/* Sections */
#main section {
    padding: 60px 0;
}

/* Input */
#main .form-control {
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 0;
    color: #606060;
    font-size: 18px;
    font-weight: 300;
    outline: none;
    box-shadow: none;
}
#main .form-control:focus,
#main .form-control:hover,
#main .form-control:active {
	border-color: #929191;
}
#main .form-control.is-invalid {
    border-color: #dc3545;
}
#main .form-control.is-valid {
    border-color: #28a745;
}

#main .btn.btn-primary {
    background: #212121;
    color: #fff;
    font-size: 16px;
    border-radius: 0;
    text-transform: uppercase;
    border: none;
    padding: 0.9rem 2.4rem;
}
#main .btn.btn-primary:focus,
#main .btn.btn-primary:hover,
#main .btn.btn-primary:active {
	background: #404040;
	box-shadow: none;
	outline: none;
}

/* Contact form */
#contact textarea {
	resize: none;
}

#contact .form-group,
#contact .alert {
	margin-bottom: 1.75rem;
}
#contact .alert {
	border-radius: 0;
}

/* Footer */
#footer {
    position: absolute;
    background: #212121;
    color: #eee;
    padding: 25px 0;
    width: 100%;
    bottom: 0;
}
#footer p {
	font-size: 18px;
	text-align: center;
	margin: 0;
}


