/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 9-jun-2016, 17:03:02
    Author     : Tim Aertsen
*/
/**********************************************
* 1180 CSS Grid System - Fluid
* by Chris Blackwell / chrisblackwell.me
**********************************************/
body {
  width: 100%;
  margin: 0;
  padding: 0;
}
.wrap {
  width: 1180px;
  margin: 0 auto;
}
.flexbox {
  display: -webkit-flex;
  display: flex;
}
.row {
  margin: 20px 0;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
/* Sets default values on all columns */
[class*="span"] {
  margin-right: 2%;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
[class*="span"]:last-child {
  margin-right: 0;
}
.prototype [class*="span"] {
  background: #ececec;
  border-radius: 4px;
  padding: 15px;
  text-align: center;
}
.span1 {
  width: 6.5%;
}
.span2 {
  width: 15%;
}
.span3 {
  width: 23.5%;
}
.span4 {
  width: 32%;
}
.span5 {
  width: 40.5%;
}
.span6 {
  width: 49%;
}
.span7 {
  width: 57.5%;
}
.span8 {
  width: 66%;
}
.span9 {
  width: 74.5%;
}
.span10 {
  width: 83%;
}
.span11 {
  width: 91.5%;
}
.span12 {
  width: 100%;
  float: none;
}
/**********************************
* Smaller Screens
**********************************/
@media only screen and (max-width: 1200px) {
  .wrap {
    width: 960px;
  }
}
/**********************************
* Tablets
**********************************/
@media only screen and (max-width: 1024px) {
  .wrap {
    width: 96%;
  }
}
/**********************************
* Mobile Devices
* - All columns are full width
**********************************/
@media only screen and (max-width: 768px) {
  /*    .wrap {
        width: 96%;
    }*/
  .row {
    margin: 0;
  }
  [class*="span"] {
    margin: 15px 0;
    float: none;
    width: 100%;
  }
}
.prim-font {
  font-family: 'Khula', sans-serif;
}
.sec-font {
  font-family: 'Source Sans Pro', sans-serif;
}
.light {
  font-weight: 300;
}
.regular {
  font-weight: 400;
}
.semi-bold {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.none-appearance {
  -moz-appearance: none;
  -webkit-appearance: none;
}
.text-center {
  text-align: center;
}
.ease-none {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
.ease-slow {
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.ease-normal {
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.ease-fast {
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
* {
  padding: 0;
  margin: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  *behavior: url(../include/boxsizing.htc);
  outline: none;
}
html,
body {
  height: 100%;
}
html.overflow,
body.overflow {
  overflow: hidden;
}
body {
  font-family: 'Khula', sans-serif;
  font-size: 16px;
  line-height: 30px;
  color: #202021;
  overflow-x: hidden;
}
h1 {
  font-family: 'Khula', sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 56px;
  color: #202021;
  margin-bottom: 10px;
  clear: both;
  text-transform: uppercase;
}
@media only screen and (max-width: 600px) {
  h1 {
    font-size: 33px;
    line-height: 40px;
  }
}
h2 {
  font-family: 'Khula', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  color: #202021;
  margin-bottom: 30px;
  clear: both;
  text-transform: uppercase;
}
@media only screen and (max-width: 600px) {
  h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
h3 {
  font-family: 'Khula', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #202021;
  margin-bottom: 15px;
  clear: both;
  text-transform: uppercase;
}
p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  color: #202021;
  margin-bottom: 30px;
}
p.link {
  margin-top: -25px;
  margin-bottom: 0;
  color: #FF870C;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}
p.link:after {
  position: absolute;
  font-family: "FontAwesome";
  content: '\f04b';
  font-size: 10px;
  margin-left: 20px;
  top: 0;
}
a {
  text-decoration: none;
  color: #FF870C;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
a.no-link {
  /*text-decoration:none;*/
  color: #202021 !important;
}
a:hover {
  color: #d86d00;
}
/*ul {
    list-style: none;
    margin-bottom: 30px;
    li {
        line-height: 30px;
        padding-left: 17px;
        position: relative;
        &:before {
            content: "\f111";
            font: normal normal normal 14px/1 FontAwesome;
            font-size: 55%;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: auto;
            color: @link-color;
            display: inline-block;
            position: absolute;
            top: 11px;
            left: 0;
        }
    }
}*/
img {
  image-rendering: auto;
  display: block;
  /*width: 100%;*/
}
hr {
  background: rgba(88, 45, 1, 0.6);
  border: none;
  margin: 0;
  width: 100%;
  height: 1px;
}
/*====================================================
STRUCTUUR
=====================================================*/
.container {
  margin: 0 auto;
  width: 1180px;
  position: relative;
}
@media only screen and (max-width: 1240px) {
  .container {
    width: 95%;
  }
}
.full-wrapper {
  height: auto !important;
  height: 100%;
  min-height: 100%;
  margin: 0 auto -300px;
  position: relative;
  overflow: hidden;
}
.full-wrapper .push {
  height: 300px;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.rightmargin {
  margin-right: 10px;
}
.leftmargin {
  margin-left: 10px;
}
.clear {
  clear: both;
  overflow: hidden;
}
.no-margin {
  margin: 0;
}
.text-center {
  text-align: center;
}
.fixed {
  position: fixed;
}
.visible {
  visibility: visible;
}
img[align="right"] {
  margin: 0 0 20px 20px;
  max-width: 100%;
}
img[align="left"] {
  margin: 0 20px 20px 0;
  max-width: 100%;
}
/*====================================================
TABLE
=====================================================*/
table {
  border-collapse: collapse;
}
table tr th,
table tr td {
  text-align: left;
  padding: 5px;
}
/*====================================================
ALERTS
=====================================================*/
.alert {
  text-align: left;
  line-height: 30px;
  padding: 20px;
  border: 1px solid #616161;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  margin-bottom: 30px;
  display: block;
}
.alert p {
  margin: 0;
}
.alert.alert-succes {
  background-color: #d8f3cc;
  border-color: #a3cb92;
  margin-bottom: 0;
}
.alert.alert-error {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
/*====================================================
FORM
=====================================================*/
.radio,
.checkbox {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}
.checkbox:not(:checked) + label:before {
  border: 1px solid rgba(88, 45, 1, 0.6);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}
.checkbox:checked + label {
  /*.light;*/
}
.checkbox:checked + label:before {
  border: 1px solid #FF870C;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  height: 50%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  border-top-style: none;
  border-right-style: none;
}
.checkbox.error-input + label {
  /*.light;*/
  color: #a94442;
}
.checkbox.error-input + label:before {
  border: 1px solid #a94442;
}
.checkbox.error-input:checked + label {
  /*.light;*/
}
.checkbox.error-input:checked + label:before {
  border: 1px solid #FF870C;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  height: 50%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  border-top-style: none;
  border-right-style: none;
}
.checkbox + label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-user-select: none;
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  margin-right: 20px;
}
@media only screen and (max-width: 400px) {
  .checkbox + label {
    margin-left: 10px;
  }
}
.checkbox + label.small-space {
  margin-left: 10px;
}
.checkbox + label:before,
.checkbox + label:after {
  content: '';
  position: absolute;
  left: 0;
  top: -4px;
  margin: 2px;
  width: 12px;
  height: 12px;
  z-index: 0;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  transform-origin: 50% 50%;
  font-family: "FontAwesome";
}
.checkbox + label:after {
  width: 6px;
  height: 6px;
}
.radio:not(:checked) + label:before {
  border: 1px solid rgba(88, 45, 1, 0.6);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
}
.radio:not(:checked) + label:after {
  color: #FF870C;
  left: 2px;
  top: -2px;
}
.radio:checked + label {
  /*.light;*/
}
.radio:checked + label:before {
  border: 2px solid #FF870C;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
}
.radio:checked + label:after {
  content: '';
  font-size: 15px;
  background-color: #FF870C;
  left: 2px;
  top: -2px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  transform: scale(0.6);
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
}
.radio + label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-user-select: none;
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  margin-right: 20px;
}
@media only screen and (max-width: 400px) {
  .radio + label {
    margin-left: 10px;
  }
}
.radio + label.small-space {
  margin-left: 10px;
}
.radio + label:before,
.radio + label:after {
  content: '';
  position: absolute;
  left: 0;
  top: -4px;
  margin: 2px;
  width: 12px;
  height: 12px;
  z-index: 0;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  transform-origin: 50% 50%;
  font-family: "FontAwesome";
}
label {
  font-size: 14px;
  margin-top: 10px;
  display: block;
}
label.sublabel {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 7px;
}
label.check-label {
  margin-left: 18px;
  display: inline-block;
}
.form-row {
  margin-left: -2%;
  clear: both;
}
.form-row .form-item {
  margin-left: 2%;
  margin-bottom: 20px;
  width: 98%;
  float: left;
}
.form-row .form-item.half {
  width: 48%;
}
input[type="text"],
input[type="number"],
input[type="date"],
input[type="tel"],
select,
textarea {
  color: #202021;
  padding: 13px 16px;
  width: 100%;
  font-family: 'Khula', sans-serif;
  font-size: 16px;
  font-weight: 400;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border: 1px solid rgba(32, 32, 33, 0.2);
}
input[type="checkbox"],
input[type="radio"] {
  position: absolute;
  top: 3px;
  left: 0;
}
input[type="file"] {
  margin-bottom: 10px;
  display: block;
}
.inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.placeholder {
  font-family: 'Khula', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgba(32, 32, 33, 0.4);
}
::-webkit-input-placeholder {
  font-family: 'Khula', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgba(32, 32, 33, 0.4);
}
:-moz-placeholder {
  /* Firefox 18- */
  font-family: 'Khula', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgba(32, 32, 33, 0.4);
}
::-moz-placeholder {
  /* Firefox 19+ */
  font-family: 'Khula', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgba(32, 32, 33, 0.4);
}
:-ms-input-placeholder {
  font-family: 'Khula', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgba(32, 32, 33, 0.4);
}
.check-wrap {
  position: relative;
}
input[type="text"].error-input,
input[type="number"].error-input,
input[type="tel"].error-input,
input[type="date"].error-input,
select.error-input,
textarea.error-input {
  border: solid 1px #a94442;
}
input[type="text"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
  border: solid 1px #FF870C;
}
input[type="submit"]:focus,
.form-item button:focus {
  /*    background: #fff;*/
  outline: none;
}
button {
  cursor: pointer;
  font-family: 'Khula', sans-serif;
  font-weight: 600;
  font-size: 16px;
}
/*====================================================
BUTTON
=====================================================*/
.btn {
  text-decoration: none;
  color: #fff;
  background-color: #FF870C;
  padding: 15px 40px;
  border: none;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
@media only screen and (max-width: 500px) {
  .btn {
    padding: 15px 20px;
  }
}
.btn:hover {
  text-decoration: none;
  color: #fff;
  background-color: #d86d00;
}
.btn.btn-full {
  width: 100%;
}
.ctabtn {
  text-decoration: none;
  color: #000;
  background-color: #999;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.ctabtn:after {
  content: '\f105';
  font: normal normal normal 14px/1 FontAwesome;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: auto;
  margin-left: 20px;
  display: inline-block;
  float: right;
}
.ctabtn:hover {
  text-decoration: none;
  color: #fff;
  background-color: #333;
}
.ctabtn.btn-full {
  width: 100%;
}
/*====================================================
BESTANDEN
=====================================================*/
.bestanden-wrapper {
  margin-bottom: 30px;
}
.bestanden-wrapper a {
  text-decoration: none;
  margin-top: 10px;
  display: block;
}
.bestanden-wrapper a:first-child {
  margin-top: 0;
}
/*====================================================
BREADCRUMB
=====================================================*/
.breadcrumb-wrapper {
  padding-top: 30px;
  margin: 0;
}
.breadcrumb-wrapper .breadcrumb {
  font-size: 16px;
  list-style: none;
  overflow: hidden;
  font-weight: 300;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item {
  display: inline-block;
  padding: 0 10px;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item:first-child {
  padding-left: 0;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item:last-child {
  padding-right: 0;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item:not(:last-child) {
  border-right: 1px solid rgba(32, 32, 33, 0.2);
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item a {
  color: #202021;
  font-weight: 300;
  font-size: 16px;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item i {
  font-size: 30%;
  vertical-align: middle;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item.breadcrumb-back {
  margin-right: 20px;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item.breadcrumb-back a i {
  font-size: 100%;
}
/*====================================================
COOKIE BANNER
=====================================================*/
.cookie-banner {
  color: #fff;
  background-color: #FF870C;
  border: 1px solid rgba(88, 45, 1, 0.6);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  width: 300px;
  max-width: 90%;
  max-width: calc(100% - 20px);
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 9999;
}
.cookie-banner .cookie-inhoud {
  padding: 12px;
  position: relative;
}
.cookie-banner .cookie-inhoud .left {
  font-size: 13px;
  line-height: 22px;
  width: 90%;
}
.cookie-banner .cookie-inhoud .right a {
  text-align: center;
  color: #fff;
  width: 35px;
  height: 35px;
  position: absolute;
  right: 0;
}
.cookie-banner .cookie-inhoud .right a:hover {
  color: #fff;
}
.cookie-banner .cookie-inhoud .right a:first-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  -moz-border-top-right-radius: 8px;
  -moz-border-radius-bottomright: 8px;
  top: 0;
}
.cookie-banner .cookie-inhoud .right a#cookieClose {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  -moz-border-top-right-radius: 8px;
  -moz-border-radius-bottomright: 8px;
  bottom: 0;
}
.cookie-banner .cookie-inhoud .right a i {
  margin-top: 10px;
}
/*====================================================
NIEUWS
=====================================================*/
.nieuwsBox {
  border: solid 1px #acacac;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.nieuwsBox a {
  display: block;
}
.nieuwsBox:hover {
  border: solid 1px #f00;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
/*====================================================
MODAL
=====================================================*/
.hide {
  display: none;
}
.modal-open .dropdown-menu {
  z-index: 2050;
}
.modal-open .dropdown.open {
  *z-index: 2050;
}
.modal-open .popover {
  z-index: 2060;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop,
.modal-backdrop.fade.in {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.modal h2 {
  margin-bottom: 8px;
}
.modal {
  background: #fff;
  margin: 15px 0;
  margin-left: -20%;
  padding: 50px 20px;
  position: fixed;
  top: 5%;
  left: 50%;
  z-index: 1050;
  overflow: hidden;
  width: 40%;
  min-height: 95px;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.3);
  *border: 1px solid #999;
  text-align: center;
  /* IE6-7 */
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
}
.modal.popup {
  text-align: center;
  background: #fff;
  padding: 25px 20px;
  margin: 15px 0 15px -20%;
  width: 40%;
  min-height: 95px;
  max-height: 90%;
  overflow: auto;
  position: fixed;
  top: 5%;
  left: 50%;
  z-index: 1050;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
}
.modal.popup::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}
.modal.popup::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal.popup.fade {
  top: -25%;
  -webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, top 0.3s ease-out;
  -ms-transition: opacity 0.3s linear, top 0.3s ease-out;
  -o-transition: opacity 0.3s linear, top 0.3s ease-out;
  transition: opacity 0.3s linear, top 0.3s ease-out;
}
.modal.popup.fade.in {
  top: 50%;
}
.modal.popup h2 {
  margin-bottom: 8px;
}
.modal.popup .modal-body {
  max-height: none;
}
.modal.popup .modal-body::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}
.modal.popup .modal-body::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal.popup .modal-banner img {
  margin: 0 auto 26px;
}
.modal.popup .modal-title {
  font-family: 'Khula', sans-serif;
  font-size: 23px;
  font-weight: 400;
  text-decoration: none;
  line-height: 30px;
  color: #535353;
  padding-right: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}
.modal.popup .back-link {
  margin-top: 20px;
}
.modal.popup .buttongroup.btn {
  margin-right: 20px;
}
.modal.popup .close-modal {
  font-size: 25px;
  margin-top: 5px;
  position: absolute;
  top: 0;
  right: 20px;
}
@media only screen and (max-width: 1050px) {
  .modal.popup {
    margin: 15px 0;
    width: 90%;
    left: 5%;
  }
}
.modal.fade {
  -webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, top 0.3s ease-out;
  -ms-transition: opacity 0.3s linear, top 0.3s ease-out;
  -o-transition: opacity 0.3s linear, top 0.3s ease-out;
  transition: opacity 0.3s linear, top 0.3s ease-out;
  top: -25%;
}
.modal.fade.in {
  top: 50%;
}
.modal-header {
  padding: 9px 15px;
  border-bottom: 1px solid #eee;
}
.modal-title {
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  color: #000;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 2px;
  font-size: 21px;
  line-height: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-decoration: none;
}
.modal .buttongroup .btn {
  margin-right: 20px;
}
.modal-header .close {
  margin-top: 2px;
}
.modal-body {
  overflow-y: auto;
  max-height: 400px;
  padding: 15px 0;
}
.modal-form {
  margin-bottom: 0;
}
.modal-footer {
  padding: 15px 0 0 0;
  margin-bottom: 0;
  text-align: center;
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
  -moz-box-shadow: inset 0 1px 0 #ffffff;
  box-shadow: inset 0 1px 0 #ffffff;
  *zoom: 1;
}
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: "";
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
/*====================================================
FAQ
=====================================================*/
.vraag {
  border-bottom: solid 1px #dfe3eb;
}
.vraag h3 {
  margin: 20px 0;
  cursor: pointer;
}
.vraag h3 i {
  font-size: 16px;
  line-height: 22px;
  color: #000;
}
.vraag .antwoord-wrapper {
  display: none;
}
.vraag .feedback {
  margin-bottom: 20px;
}
.vraag .confirm {
  display: inline-block;
  margin-right: 20px;
}
.vraag .btn {
  margin-right: 15px;
}
.btn-green {
  color: #00cc00;
  background-color: #fff;
  border: solid 2px #00cc00;
  min-width: auto;
}
.btn-green:hover {
  color: #fff;
  background-color: #00cc00;
}
.btn-red {
  color: #ce0f0f;
  background-color: #fff;
  border: 2px solid #ce0f0f;
  min-width: auto;
}
.btn-red:hover {
  color: #fff;
  background-color: #ce0f0f;
}
/*====================================================
SOCIAL SHARE
=====================================================*/
.social-share {
  margin-bottom: 30px;
}
.social-share a {
  text-decoration: none;
  margin-left: 10px;
  display: block;
  float: left;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.social-share a:first-child {
  margin-left: 0;
}
.social-share a:hover {
  color: #0000cc;
}
.social-share a.facebook {
  color: #3b5998;
}
.social-share a.facebook:hover {
  color: #2d4373;
}
.social-share a.twitter {
  color: #00acee;
}
.social-share a.twitter:hover {
  color: #0087bb;
}
.social-share a.linkedin {
  color: #0077b5;
}
.social-share a.linkedin:hover {
  color: #005582;
}
.social-share a.pinterest {
  color: #c8232c;
}
.social-share a.pinterest:hover {
  color: #9d1b22;
}
.social-share a.googleplus {
  color: #d34836;
}
.social-share a.googleplus:hover {
  color: #b03626;
}
.social-share a i {
  font-size: 40px;
}
/*====================================================
MENU
=====================================================*/
.menu {
  padding-top: 40px;
}
@media only screen and (max-width: 768px) {
  .menu {
    display: none;
  }
}
.menu ul {
  list-style-type: none;
  float: right;
  padding-right: 25px;
}
.menu ul li {
  float: left;
  padding: 15px 0;
}
@media only screen and (max-width: 880px) {
  .menu ul li {
    padding: 0;
  }
}
.menu ul li.active a {
  color: #FF870C;
}
.menu ul li a {
  display: block;
  padding: 15px 30px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
}
@media only screen and (max-width: 1050px) {
  .menu ul li a {
    padding: 15px 20px;
  }
}
@media only screen and (max-width: 880px) {
  .menu ul li a {
    padding: 15px 10px;
  }
}
.menu ul li a.btn {
  padding: 15px 40px;
  margin-left: 30px;
  color: #fff;
}
@media only screen and (max-width: 1050px) {
  .menu ul li a.btn {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 880px) {
  .menu ul li a.btn {
    margin-left: 10px;
  }
}
.menu ul li a:hover {
  color: #FF870C;
}
.menu ul li a:hover.btn {
  color: #fff;
}
.menu ul li.toggleParent {
  position: relative;
}
.menu ul li.toggleParent .toggleSubmenu {
  position: relative;
  padding-right: 45px;
}
@media only screen and (max-width: 1050px) {
  .menu ul li.toggleParent .toggleSubmenu {
    padding-right: 35px;
  }
}
@media only screen and (max-width: 880px) {
  .menu ul li.toggleParent .toggleSubmenu {
    padding-right: 25px;
  }
}
.menu ul li.toggleParent .toggleSubmenu:after {
  font-family: "FontAwesome";
  content: '\f04b';
  position: absolute;
  color: #FF870C;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  right: 25px;
  font-size: 9px;
  top: 14px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
@media only screen and (max-width: 1050px) {
  .menu ul li.toggleParent .toggleSubmenu:after {
    right: 15px;
  }
}
@media only screen and (max-width: 880px) {
  .menu ul li.toggleParent .toggleSubmenu:after {
    right: 10px;
  }
}
.menu ul li.toggleParent .toggleSubmenu.open {
  background-color: #FF870C;
  color: #fff;
}
.menu ul li.toggleParent .toggleSubmenu.open:after {
  color: #fff;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
}
.menu ul li.toggleParent .toggleSubmenu.open:hover {
  color: #fff;
}
.menu ul li.toggleParent .submenu {
  position: absolute;
  display: none;
  padding: 0;
  background-color: #FF870C;
}
.menu ul li.toggleParent .submenu li {
  padding: 0;
  width: 100%;
}
.menu ul li.toggleParent .submenu li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.menu ul li.toggleParent .submenu li a {
  padding: 15px 30px;
  padding-right: 70px;
  position: relative;
  color: #fff !important;
}
.menu ul li.toggleParent .submenu li a:after {
  font-family: "FontAwesome";
  content: '\f04b';
  position: absolute;
  color: #fff;
  right: 30px;
  font-size: 9px;
  top: 14px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.menu ul li.toggleParent .submenu li a:hover {
  color: #fff;
  background-color: #d86d00;
}
.menu ul li.toggleParent .submenu li a:hover:after {
  right: 15px;
}
/*====================================================
INDEX
=====================================================*/
.row.mini {
  margin: 0;
}
.row.big {
  margin: 100px 0;
}
@media only screen and (max-width: 600px) {
  .row.big {
    margin: 60px 0;
  }
}
.row.big.inv {
  margin: 0;
  padding: 100px 0;
}
@media only screen and (max-width: 600px) {
  .row.big.inv {
    padding: 60px 0;
  }
}
.row.top {
  margin-top: 50px;
}
@media only screen and (max-width: 600px) {
  .row.top {
    margin-top: 25px;
  }
}
.row.top.inv {
  padding-top: 50px;
  margin-top: 0;
}
@media only screen and (max-width: 600px) {
  .row.top.inv {
    padding-top: 25px;
  }
}
.center-block {
  float: none !important;
  margin: auto !important;
}
@media only screen and (max-width: 768px) {
  .hide-tab-p {
    display: none;
  }
}
.show-tab-p {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .show-tab-p {
    display: block !important;
  }
}
@media only screen and (max-width: 600px) {
  .hide-phone-l {
    display: none;
  }
}
@media only screen and (max-width: 500px) {
  .hide-phone-p {
    display: none;
  }
}
.rel-box {
  position: relative;
}
.no-margin {
  margin: 0;
}
@media only screen and (max-width: 600px) {
  .smart-left {
    text-align: left;
  }
}
.banner {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner.contain {
  background-size: contain;
}
.banner.sfeer {
  height: 340px;
  width: 95%;
  margin: auto;
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 1250px) {
  .banner.sfeer {
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .banner.sfeer {
    height: 250px;
  }
}
.body-wrapper {
  overflow-x: hidden;
}
.body-wrapper.open {
  overflow: hidden;
  height: 100%;
}
.header {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .header {
    margin-top: 10px;
  }
}
.header .banner {
  width: 95%;
  height: 650px;
  margin: auto;
}
@media only screen and (max-width: 1250px) {
  .header .banner {
    width: 100%;
  }
}
.header .banner .header-top {
  padding-top: 40px;
  overflow: visible !important;
}
@media only screen and (max-width: 768px) {
  .header .banner .header-top {
    padding-top: 20px;
  }
}
.header .banner .header-top.fixed {
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 25;
  padding: 20px 0;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  border-bottom: 1px solid rgba(32, 32, 33, 0.2);
}
.header .banner .header-top.fixed .logo .wit {
  display: none;
}
.header .banner .header-top.fixed .logo .origineel {
  display: block;
}
.header .banner .header-top.fixed .logo img {
  width: 70%;
}
@media only screen and (max-width: 768px) {
  .header .banner .header-top.fixed .logo img {
    width: 100%;
  }
}
.header .banner .header-top.fixed .menu {
  padding-top: 20px;
}
.header .banner .header-top.fixed .menu li:not(.active) a:not(.btn) {
  color: #202021;
}
.header .banner .header-top.fixed .responsive-button span {
  background: #202021;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
@media only screen and (max-width: 768px) {
  .header .banner .header-top.fixed .logo {
    width: 15%;
  }
}
@media only screen and (max-width: 500px) {
  .header .banner .header-top.fixed .logo {
    width: 20%;
  }
}
.header .banner .header-top.fixed.open {
  background-color: transparent;
}
.header .banner .header-top.fixed.open .logo .origineel {
  display: none;
}
.header .banner .header-top.fixed.open .logo .wit {
  display: block;
}
.header .banner .header-top.fixed.open .responsive-button span {
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .logo {
    width: 20%;
    display: block;
  }
}
@media only screen and (max-width: 500px) {
  .logo {
    width: 30%;
  }
}
.logo img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .logo img {
    position: relative;
    z-index: 30;
  }
}
.content-box {
  margin-top: -300px;
  background-color: #fff;
  min-height: 300px;
}
@media only screen and (max-width: 768px) {
  .content-box {
    padding: 0 50px;
  }
}
@media only screen and (max-width: 500px) {
  .content-box {
    padding: 0 20px;
  }
}
.big-content p {
  font-size: 20px;
  line-height: 36px;
}
.box-wrapper {
  margin-left: -3%;
  text-align: center;
  margin-top: 60px;
}
.box-wrapper .box {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  margin-left: 3%;
  margin-bottom: 20px;
}
.box-wrapper .box.three {
  width: 30%;
}
@media only screen and (max-width: 1200px) {
  .box-wrapper .box.three {
    width: 29%;
  }
}
@media only screen and (max-width: 768px) {
  .box-wrapper .box.three {
    width: 46.5%;
  }
}
@media only screen and (max-width: 500px) {
  .box-wrapper .box.three {
    width: 100%;
  }
}
.box-wrapper .box .dienst-icoon {
  width: 30px;
  margin-bottom: 10px;
}
.stokpaard-wrapper {
  margin-bottom: 60px;
}
.stokpaard-wrapper .banner {
  width: 33.3%;
  float: left;
}
.stokpaard-wrapper .banner:not(:first-child) {
  height: 295px;
}
.stokpaard-wrapper .banner:first-child {
  height: 590px;
}
.stokpaard-wrapper .banner:nth-child(1),
.stokpaard-wrapper .banner:nth-child(2),
.stokpaard-wrapper .banner:nth-child(3) {
  width: 50%;
}
.stokpaard-slider {
  margin-bottom: 60px;
  margin-left: -3%;
  width: 106%;
}
.stokpaard-slider .banner {
  height: 500px;
}
@media only screen and (max-width: 600px) {
  .stokpaard-slider .banner {
    height: 300px;
  }
}
.stokpaard-slider .slick-dots {
  bottom: -30px;
}
.stokpaard-slider .slick-dots li {
  width: 10px;
  height: 10px;
}
.stokpaard-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border: 1px solid rgba(88, 45, 1, 0.6);
}
.stokpaard-slider .slick-dots li button:before {
  content: none;
}
.stokpaard-slider .slick-dots li.slick-active button {
  background-color: rgba(88, 45, 1, 0.6);
}
.background {
  background-color: rgba(0, 0, 0, 0.04);
  margin-top: -80px;
  padding: 150px 0;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .background {
    padding: 100px 0;
  }
}
.background.big {
  padding: 150px 0;
  margin-top: 40px;
}
@media only screen and (max-width: 600px) {
  .background.big {
    padding: 120px 0;
  }
}
.background:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 100vw solid white;
  border-top: 7vw solid transparent;
}
.background.no-after:after {
  content: none;
}
.diensten-wrapper {
  margin-left: -5%;
  margin-top: 30px;
  text-align: left;
}
.diensten-wrapper .dienst {
  display: inline-block;
  margin-left: 5%;
  width: 44.5%;
  vertical-align: top;
  margin-bottom: 60px;
}
@media only screen and (max-width: 600px) {
  .diensten-wrapper .dienst {
    width: 100%;
  }
}
.diensten-wrapper .dienst .banner {
  height: 200px;
  margin-bottom: 20px;
}
.overAfbeelding {
  width: 540px;
}
@media only screen and (max-width: 1050px) {
  .overAfbeelding {
    width: 130%;
  }
}
@media only screen and (max-width: 768px) {
  .overAfbeelding {
    display: none;
  }
}
.werkwijze .werkwijzeItem .inhoud {
  width: 50%;
  padding-top: 30px;
}
@media only screen and (max-width: 600px) {
  .werkwijze .werkwijzeItem .inhoud {
    width: 100%;
    border: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.werkwijze .werkwijzeItem .inhoud h3 {
  position: relative;
}
.werkwijze .werkwijzeItem .inhoud h3:before {
  content: '';
  width: 20px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border: 1px solid rgba(88, 45, 1, 0.6);
  position: absolute;
  top: -1.7px;
  z-index: 5;
}
.werkwijze .werkwijzeItem .inhoud h3:after {
  content: '';
  width: 20px;
  height: 21px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  position: absolute;
  top: -1.7px;
  z-index: 4;
}
@media only screen and (max-width: 600px) {
  .werkwijze .werkwijzeItem .inhoud h3:before,
  .werkwijze .werkwijzeItem .inhoud h3:after {
    content: none;
  }
}
.werkwijze .werkwijzeItem:nth-child(odd) .inhoud {
  float: left;
  padding-right: 40px;
  border-right: 1px solid rgba(88, 45, 1, 0.6);
  margin-left: 1px;
}
@media only screen and (max-width: 1200px) {
  .werkwijze .werkwijzeItem:nth-child(odd) .inhoud {
    margin-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .werkwijze .werkwijzeItem:nth-child(odd) .inhoud {
    margin-left: 1px;
  }
}
.werkwijze .werkwijzeItem:nth-child(odd) .inhoud h3:before,
.werkwijze .werkwijzeItem:nth-child(odd) .inhoud h3:after {
  right: -51.4px;
}
.werkwijze .werkwijzeItem:nth-child(even) .inhoud {
  float: right;
  padding-left: 40px;
  border-left: 1px solid rgba(88, 45, 1, 0.6);
  margin-right: 1px;
}
.werkwijze .werkwijzeItem:nth-child(even) .inhoud h3:before,
.werkwijze .werkwijzeItem:nth-child(even) .inhoud h3:after {
  left: -51.4px;
}
.werkwijze .werkwijzeItem:after {
  content: '';
  clear: both;
  display: table;
}
@media only screen and (max-width: 768px) {
  .resp-box {
    width: 70%;
  }
}
.gegevens-box {
  position: relative;
  height: 280px;
}
@media only screen and (max-width: 768px) {
  .gegevens-box {
    height: initial;
  }
}
.gegevens-box .inhoud {
  background-color: #FF870C;
  position: absolute;
  padding: 30px;
  padding-right: 45px;
  width: 260px;
  top: -90px;
  right: -70px;
}
@media only screen and (max-width: 880px) {
  .gegevens-box .inhoud {
    width: 230px;
    padding-left: 15px;
    padding-right: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .gegevens-box .inhoud {
    top: -330px;
    width: initial;
    padding: 30px;
    padding-right: 45px;
    display: inline-block;
  }
}
@media only screen and (max-width: 600px) {
  .gegevens-box .inhoud {
    position: relative;
    right: 0;
    top: 0;
  }
}
.gegevens-box .inhoud p,
.gegevens-box .inhoud a {
  color: #fff;
  font-weight: 400;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  display: block;
}
.gegevens-box .inhoud h2 {
  color: #fff;
}
.gegevens-box .inhoud .btw {
  margin-top: 30px;
  margin-bottom: 0;
}
.gegevens-box .inhoud .tel {
  position: relative;
  padding-left: 20px;
}
.gegevens-box .inhoud .tel .naam {
  font-size: 12px;
}
.gegevens-box .inhoud .tel:before {
  position: absolute;
  left: 0;
  font-family: "FontAwesome";
  content: '\f095';
  color: #fff;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .form .span2:not(.no-resp) {
    width: 23.5%;
  }
}
@media only screen and (max-width: 768px) {
  .form .span4 {
    width: 49%;
  }
}
@media only screen and (max-width: 768px) {
  .form [class*="span"] {
    margin: 0;
    margin-right: 2%;
    float: left;
  }
  .form [class*="span"]:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 500px) {
  .form [class*="span"] {
    margin: 15px 0;
    float: none;
    width: 100% !important;
  }
}
@media only screen and (max-width: 500px) {
  .form .neg-top {
    margin-top: -15px;
  }
}
@media only screen and (max-width: 500px) {
  .form .no-resp label {
    margin-top: -20px;
  }
}
.bestanden {
  display: inline-block;
}
@media only screen and (max-width: 500px) {
  .bestanden {
    display: block;
    text-align: center;
  }
}
.bestanden label {
  margin: 0;
  border: 1px solid #FF870C;
  color: #FF870C;
  padding: 15px 40px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  cursor: pointer;
  margin-bottom: 5px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
@media only screen and (max-width: 500px) {
  .bestanden label {
    padding: 15px 20px;
  }
}
.bestanden label:hover {
  background-color: #FF870C;
  color: #fff;
}
.content ul {
  list-style: none;
  margin-bottom: 30px;
}
.content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  font-weight: 300;
}
.content ul li:before {
  position: absolute;
  left: 0;
  top: -4px;
  color: #FF870C;
  font-family: "FontAwesome";
  content: '\f04b';
  font-size: 10px;
}
.content ol {
  padding-left: 20px;
  margin-bottom: 30px;
}
.content ol li {
  margin-bottom: 20px;
  font-weight: 300;
}
.footer {
  position: relative;
  overflow: hidden;
}
.footer:after {
  content: url(/images/Beeldmerk.png);
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -10px;
  opacity: 0.04;
}
@media only screen and (max-width: 1250px) {
  .footer:after {
    right: -160px;
  }
}
.footer .footer-top {
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 768px) {
  .footer .footer-top .span3 {
    margin: 0;
    float: left;
    width: 33.3%;
  }
}
@media only screen and (max-width: 600px) {
  .footer .footer-top .span3 {
    width: 100%;
    float: none;
  }
}
@media only screen and (max-width: 768px) {
  .footer .footer-top .logo {
    width: 100%;
    float: none;
  }
}
.footer .footer-top .logo img {
  width: 70%;
}
@media only screen and (max-width: 768px) {
  .footer .footer-top .logo img {
    width: 25%;
    margin: auto;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 500px) {
  .footer .footer-top .logo img {
    width: 40%;
    margin-top: 20px;
  }
}
.footer .footer-top ul {
  list-style: none;
}
.footer .footer-top ul li a {
  color: #202021;
  text-decoration: none;
  font-weight: 300;
  font-family: 'Source Sans Pro', sans-serif;
  padding-bottom: 15px;
  display: block;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.footer .footer-top ul li a:hover {
  color: #FF870C;
}
.footer .footer-top .contact p {
  font-weight: 300;
  margin-bottom: 0;
}
.footer .footer-top .contact a {
  display: block;
  color: #202021;
}
.footer .footer-top .contact a.tel {
  position: relative;
  padding-left: 20px;
}
.footer .footer-top .contact a.tel .naam {
  font-size: 12px;
}
.footer .footer-top .contact a.tel:before {
  position: absolute;
  left: 0;
  font-family: "FontAwesome";
  content: '\f095';
  color: #FF870C;
  font-size: 14px;
}
.footer .footer-bottom {
  padding: 10px 0;
  position: relative;
  z-index: 5;
}
.footer .footer-bottom .footer-span {
  color: #FF870C;
  float: none;
  margin: 0 10px;
  width: 5px;
  text-align: center;
  display: inline-block;
}
.footer .footer-bottom a {
  color: #202021;
  font-weight: 400;
  font-size: 14px;
}
.footer .footer-bottom .innomedioBox {
  text-align: right;
}
@media only screen and (max-width: 500px) {
  .footer .footer-bottom .innomedioBox {
    text-align: left;
  }
}
.footer .footer-bottom .innomedioBox .innomedio {
  color: #FF870C;
}
@media only screen and (max-width: 768px) {
  .footer .footer-bottom .span8 {
    width: 100%;
    float: left;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 500px) {
  .footer .footer-bottom .span8 {
    width: 100%;
    float: none;
  }
}
@media only screen and (max-width: 768px) {
  .footer .footer-bottom .span4 {
    width: 100%;
    float: left;
    text-align: left;
    margin-top: 0;
  }
}
@media only screen and (max-width: 500px) {
  .footer .footer-bottom .span4 {
    width: 100%;
    float: none;
    text-align: left;
  }
}
@media only screen and (max-width: 768px) {
  .offerte-banner {
    margin-bottom: 40px;
  }
}
.offerte-banner .inhoud {
  padding: 100px 0;
  background-color: rgba(88, 45, 1, 0.3);
}
.offerte-banner .inhoud h2 {
  color: #fff;
  max-width: 450px;
}
/*====================================================
Hamburger
=====================================================*/
.responsive-button {
  position: absolute;
  top: 80px;
  right: 40px;
  display: none;
  z-index: 30;
}
@media only screen and (max-width: 768px) {
  .responsive-button {
    display: block;
  }
}
@media only screen and (max-width: 600px) {
  .responsive-button {
    top: 60px;
  }
}
.responsive-button .bar-wrapper {
  width: 25px;
  height: 25px;
  position: relative;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  cursor: pointer;
}
@media only screen and (max-width: 500px) {
  .responsive-button .bar-wrapper {
    width: 20px;
    height: 20px;
  }
}
.responsive-button .bar-wrapper span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
@media only screen and (max-width: 500px) {
  .responsive-button .bar-wrapper span {
    height: 2px;
  }
}
.responsive-button .bar-wrapper span:nth-child(even) {
  left: 50%;
}
.responsive-button .bar-wrapper span:nth-child(odd) {
  left: 0;
}
.responsive-button .bar-wrapper span:nth-child(1),
.responsive-button .bar-wrapper span:nth-child(2) {
  top: 0;
}
.responsive-button .bar-wrapper span:nth-child(3),
.responsive-button .bar-wrapper span:nth-child(4) {
  top: 10px;
}
@media only screen and (max-width: 500px) {
  .responsive-button .bar-wrapper span:nth-child(3),
  .responsive-button .bar-wrapper span:nth-child(4) {
    top: 8px;
  }
}
.responsive-button .bar-wrapper span:nth-child(5),
.responsive-button .bar-wrapper span:nth-child(6) {
  top: 20px;
}
@media only screen and (max-width: 500px) {
  .responsive-button .bar-wrapper span:nth-child(5),
  .responsive-button .bar-wrapper span:nth-child(6) {
    top: 16px;
  }
}
.responsive-button.open span:nth-child(1),
.responsive-button.open span:nth-child(6) {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}
.responsive-button.open span:nth-child(2),
.responsive-button.open span:nth-child(5) {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}
.responsive-button.open span:nth-child(1) {
  left: 5px;
  top: 7px;
}
.responsive-button.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}
.responsive-button.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
.responsive-button.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
.responsive-button.open span:nth-child(5) {
  left: 5px;
  top: 13px;
}
@media only screen and (max-width: 500px) {
  .responsive-button.open span:nth-child(5) {
    top: 11px;
  }
}
.responsive-button.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 13px;
}
@media only screen and (max-width: 500px) {
  .responsive-button.open span:nth-child(6) {
    top: 11px;
  }
}
/*====================================================
Mobile menu
=====================================================*/
.mobile-menu {
  position: fixed;
  left: 0;
  top: -100%;
  border: 10px solid #fff;
  background-color: rgba(255, 135, 12, 0.9);
  width: 100%;
  height: 100%;
  padding-top: 160px !important;
  z-index: 25;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.mobile-menu.open {
  top: 0;
}
.mobile-menu ul {
  padding: 0 10px;
  list-style: none;
  overflow: auto;
  height: 100%;
}
.mobile-menu ul li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-menu ul li a {
  color: #fff;
  display: block;
  padding: 10px 20px;
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
}
.mobile-menu ul li a:after {
  position: absolute;
  right: 30px;
  font-family: "FontAwesome";
  content: '\f04b';
  font-size: 10px;
}
.mobile-menu ul li a.btn {
  background: none;
}
.mobile-menu ul li.toggleParent .toggleSubmenu:after {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.mobile-menu ul li.toggleParent .toggleSubmenu.open:after {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
}
.mobile-menu ul li.toggleParent .submenu {
  display: none;
}
.mobile-menu ul li.toggleParent .submenu a {
  font-size: 14px;
}
.grecaptcha-badge {
  z-index: 20;
}
@media only screen and (max-width: 768px) {
  .grecaptcha-badge {
    display: none;
  }
}
