body {
    margin: 0;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.navigatie {
    padding: 0 15px;
    position: sticky;
    top: 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    z-index: 999;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo{
    max-width: 90%;
    height: auto;
    width: auto\9; /* ie8 */
    display: block;
    padding-right: 5%;
}


.site-title {
    color: #000;
    font-size: 1.4em;
}

@media(min-width: 992px){
    .site-title {
        color: #000;
        font-size: 2em;
    }

    .logo {
        display: block;
    }
}

.navicon {
    cursor: pointer;
    height: 3px;
    background-color: #000;
    width: 32px;
}

.navicon:before {
    content: "";
    display: block;
    height: 3px;
    background-color: #000;
    margin-top: -10px;
}

.navicon:after {
    content: "";
    display: block;
    height: 3px;
    background-color: #000;
    margin-top: -5px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    max-width: 1400px;
    margin: auto;
}

nav ul {
    list-style: none;
    position: absolute;
    top: 80px;
    right: 0;
    background-color: #fff;
    width: 85vw;
    max-width: 400px;
    padding: 20px;
    display: none;
}

@media(min-width: 992px) {
    nav ul {
        position: relative;
        top: 0;
        width: unset;
        max-width: unset;
        display: block;
    }
}

nav ul li {
    padding: 10px;
}

nav ul li a {
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover {
    border-bottom: 2px solid #000;
}

.container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px;
    max-width: 1400px;
    margin: auto;
}

.content {
    margin: 5px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: top;

}

.content .tekst {
    min-width: 285px;
    flex: 1 0 50%;
}

.content .afbeelding {
    flex: 1 0 50%;
    min-width: 285px;
    text-align: center;
}

.content .afbeelding img {
    max-width: 100%;
}

footer {
    background-color: #ddd;
}
footer a {
    color: #000;
}

@media(min-width: 992px) {
    .navicon {
        display: none;
    }

    nav ul {
        display: flex;
    }
}

h1 {
    font-size: 2em;
}





/* slider code */

.headerslider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: auto;
    min-height: 300px;
    font-size: 2.5em;
    height: 30vw;
    color: #fff;
  }

  .headerslider *::selection {
    background: transparent;
  }

  .headerslider .slide {
    width: 100%;
    height: 100%;
    display: none;
    background-position: center;
    background-size: cover;
    text-align: center;
    animation-name: fade;
    animation-duration: 2s;
    justify-content: center;
    align-items: center;
  }

  .headerslider .slide:nth-child(1) {
    display: block;
  }

  .headerslider .prev {
    position:absolute;
    padding: 20px;
    cursor: pointer;
    top:50%;
    left:0%;
    transform:translate(0%,-50%);
  }

  .headerslider .next {
      position:absolute;
      padding: 20px;
      cursor: pointer;
      top:50%;
      right:0%;
      transform:translate(0%,-50%);
  }

  .dots {
    text-align: center;
    position: absolute;
    bottom: 0;
  }

  .dots .dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .dots .active, .dots .dot:hover {
    background-color: #fff;
  }

  /* Fading animation */
  .dots .fade {
    animation-name: fade;
    animation-duration: 1s;
  }

  @keyframes fade {
    from {opacity: 0}
    to {opacity: 1}
  }

@media(max-width: 992px) {
    ul.navmenu {
        display: block;
        position: absolute;
    }
}

.menu-open {
    box-shadow: 0 4px 4px rgba(0,0,0,0.2);
    display: block;
}

footer .container {
    align-items: start;
    justify-content: space-between;
}

.footer-column h3 {
    font-size: 1.5em;
}

.footer-column ul{
    list-style: none;
    padding: 0;
}

.facebook{
		display: inline-block;
}

.linkedin{
	display: inline-block;
}

/* Contact formulier */

textarea {
	resize: none;
}
.form-label {
	font-size: 14px;
	color: #000;
	margin: 0;
	display: block;
	opacity: 1;
	-webkit-transition: .333s ease top, .333s ease opacity;
	transition: .333s ease top, .333s ease opacity;
}
.form-control {
	border-radius: 0;
	border-color: #ccc;
   	border-width: 0 0 2px 0;
   	border-style: none none solid none;
   	box-shadow: none;
   	width: 100%;
}
.form-control:focus {
	box-shadow: none;
	border-color: #000;
}
.js-hide-label {
	opacity: 0;
}
.js-unhighlight-label {
	color: #999
}
.btn-start-order {
	background: 0 0 #ffffff;
    border: 1px solid #2f323a;
    border-radius: 3px;
    color: #2f323a;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    line-height: inherit;
    margin: 30px 0;
    padding: 10px 50px;
    text-transform: uppercase;
    transition: all 0.25s ease 0s;
}
.btn-start-order:hover,.btn-start-order:active, .btn-start-order:focus {
	border-color: #5e9bfc;
	color: #5e9bfc;
}

.text-center{
    text-align: center;
}

