@charset "UTF-8";
.w-33 {
  width: 33% !important; }

.w-66 {
  width: 66% !important; }

html.lb-disable-scrolling {
  overflow: hidden;
  /* Position fixed required for iOS. Just putting overflow: hidden; on the body is not enough. */
  position: fixed;
  height: 100vh;
  width: 100vw; }

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none; }

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal; }

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  /* Image border */
  border: 4px solid white; }

.lightbox a img {
  border: none; }

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  /* Background color behind image.
     This is visible during transitions. */
  background-color: white; }

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0; }

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat; }

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10; }

.lb-container > .nav {
  left: 0; }

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="); }

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block; }

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px; }

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-data {
  padding: 0 4px;
  color: #ccc; }

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em; }

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em; }

.lb-data .lb-caption a {
  color: #4ae; }

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999; }

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s; }

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

body {
  font-family: "ITCAvantGardeStd-Bk", sans-serif;
  font-weight: 400;
  font-size: 0.9em;
  line-height: 1.4em;
  background-color: #f3f3f3;
  color: #132c45; }

@font-face {
  font-family: "ITCAvantGardeStd-Demi";
  src: url("../fonts/font/ITCAvantGardeStd-Demi.otf"); }
h1, h2, h3, h4, h5, h6 {
  font-family: "ITCAvantGardeStd-Demi", "roboto", "sans-serif"; }

h1 {
  font-weight: 800;
  font-size: 2.5rem;
  color: #fafafa;
  background-color: #eb0045;
  display: inline;
  text-transform: uppercase;
  font-weight: 1000;
  letter-spacing: .5px;
  padding: 0.23em 0 0 0; }

h2 {
  font-weight: 400;
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  text-transform: uppercase;
  color: #132c45; }

h3, h4, h5, h6 {
  font-size: 1rem;
  margin: 2rem 0 0;
  color: #132c45; }

p a {
  text-decoration: none;
  color: #eb0045;
  box-shadow: inset 0 -2px 0 #eb0045;
  transition: box-shadow .3s ease-out,background-color .3s ease-out; }
  p a:hover {
    color: #eb0045;
    text-decoration: none;
    background-color: #eb0045;
    color: #fafafa; }

.deliverables a {
  text-decoration: none;
  color: #eb0045;
  box-shadow: inset 0 -2px 0 #eb0045;
  transition: box-shadow .3s ease-out,background-color .3s ease-out; }
  .deliverables a:hover {
    color: #eb0045;
    text-decoration: none;
    background-color: #eb0045;
    color: #fafafa; }

main ul {
  list-style: none;
  margin: 0 0 1em;
  padding: 0; }
  main ul li {
    padding-left: 25px;
    text-indent: -25px; }
    main ul li:before {
      content: '\2022';
      color: #eb0045;
      margin-right: 18px; }

main ol {
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
  counter-reset: i 0; }
  main ol li {
    padding-left: 25px;
    text-indent: -25px;
    margin-bottom: 0.5rem; }
    main ol li:before {
      counter-increment: i;
      content: counter(i);
      padding: 3px 6px;
      margin-right: 5px;
      border-radius: 50%;
      background-color: #132c45;
      color: #fafafa;
      font-family: "ITCAvantGardeStd-Bold", sans-serif;
      font-weight: 800; }

/* VERTICAL NAVIGATION BAR
-------------------------------------------------- */
@media (min-width: 768px) {
  .custom-nav-ver .collapse {
    display: block; }
  .custom-nav-ver .navbar-collapse {
    width: 100%; }
  .custom-nav-ver .dropdown-menu {
    position: static !important;
    width: 100%;
    border-radius: 0; }
  .custom-nav-ver .navbar-nav {
    width: 100%; }
  .custom-nav-ver .nav-item {
    width: 100%; }
  .custom-nav-ver li.active .dropdown-menu {
    position: static !important;
    display: block  !important; }
  .custom-nav-ver .dropdown-item.active, .custom-nav-ver .dropdown-item.dropdown-item:active {
    background-color: #132c45; } }
.dropdown-menu {
  background-color: #f3f3f3;
  border-radius: 0; }

.dropdown-item.active {
  background-color: #f2c400; }

/* table of contents
--------------------------- */
#toc {
  margin-bottom: 1em; }
  #toc .nav {
    display: block; }

/* Navigation
---------------------------------------------
*/
.navbar a {
  border: none;
  text-decoration: none;
  color: #132c45;
  font-family: "ITCAvantGardeStd-Bk", sans-serif;
  font-weight: 300; }

.navigatie {
  background-color: #fff; }

/* FOOTER
----------------------------------------------
sticked to the bottom with small content pages
*/
html {
  height: 100%; }

body {
  position: relative;
  margin: 0;
  padding-bottom: 6rem;
  min-height: 100%;
  background-color: #f3f3f3; }

.bh-absolute-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0; }

.pushbottom {
  height: 200px; }

footer {
  background-color: #f2c400;
  color: #fafafa;
  padding-top: 30px; }
  footer a {
    color: #fafafa; }

#to-top {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Fixed/sticky position */
  bottom: 20px;
  /* Place the button at the bottom of the page */
  right: 30px;
  /* Place the button 30px from the right */
  z-index: 99;
  /* Make sure it does not overlap */
  border: none;
  /* Remove borders */
  outline: none;
  /* Remove outline */
  background-color: #eb0045;
  /* Set a background color */
  color: white;
  /* Text color */
  cursor: pointer;
  /* Add a mouse pointer on hover */
  width: 40px;
  height: 40px;
  border-radius: 0;
  /* Rounded corners */
  font-size: 25px;
  /* Increase font size */ }

#to-top:hover {
  background-color: #132c45; }

.footer_img {
  margin: 15px;
  height: 70px; }

.navbar-brand {
  width: 10%;
  text-align: center;
  margin: 10px; }

.prenav {
  background-color: #132c45; }

.navbar-toggler {
  background-color: #fff; }

.navbar-toggler-icon {
  background-color: #fff; }

.navbar-brand {
  fill: #fff; }

.contentbox {
  border-color: #132c45;
  margin-bottom: 30px;
  width: 100%;
  padding: 20px;
  background-color: #fff;
  min-height: 200px; }

.firstcontentbox {
  border-color: #132c45;
  margin-bottom: 30px;
  width: 100%;
  padding: 20px;
  background-color: #fff;
  min-height: 100px; }

.rand {
  border-color: #132c45;
  border-style: solid;
  border-width: 1px; }

.hoogte_afm {
  max-height: 200px; }

.nested {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px; }

.kleurvak {
  color: #fff;
  padding: 30px 0 30px 30px; }

.rood {
  background-color: #eb0045; }

.blauw {
  background-color: #f2c400; }

.geel {
  background-color: #132c45; }

.grijs {
  background-color: #D9D8D6;
  color: #132c45; }

.grad_rood {
  background: -moz-linear-gradient(left, rgba(229, 15, 69, 0.2) 0%, rgba(229, 15, 69, 0.25) 24%, rgba(229, 15, 69, 0.5) 25%, rgba(229, 15, 69, 0.5) 50%, rgba(229, 15, 69, 0.75) 51%, rgba(229, 15, 69, 0.75) 75%, #e50f45 76%, #e50f45 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(229, 15, 69, 0.2) 0%, rgba(229, 15, 69, 0.25) 24%, rgba(229, 15, 69, 0.5) 25%, rgba(229, 15, 69, 0.5) 50%, rgba(229, 15, 69, 0.75) 51%, rgba(229, 15, 69, 0.75) 75%, #e50f45 76%, #e50f45 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(229, 15, 69, 0.2) 0%, rgba(229, 15, 69, 0.25) 24%, rgba(229, 15, 69, 0.5) 25%, rgba(229, 15, 69, 0.5) 50%, rgba(229, 15, 69, 0.75) 51%, rgba(229, 15, 69, 0.75) 75%, #e50f45 76%, #e50f45 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33e50f45', endColorstr='#e50f45',GradientType=1 );
  /* IE6-9 */ }

.grad_geel {
  background: -moz-linear-gradient(left, rgba(242, 196, 0, 0.2) 0%, rgba(242, 196, 0, 0.25) 24%, rgba(242, 196, 0, 0.5) 25%, rgba(242, 196, 0, 0.5) 50%, rgba(242, 196, 0, 0.75) 51%, rgba(242, 196, 0, 0.75) 75%, #f2c400 76%, #f2c400 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(242, 196, 0, 0.2) 0%, rgba(242, 196, 0, 0.25) 24%, rgba(242, 196, 0, 0.5) 25%, rgba(242, 196, 0, 0.5) 50%, rgba(242, 196, 0, 0.75) 51%, rgba(242, 196, 0, 0.75) 75%, #f2c400 76%, #f2c400 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(242, 196, 0, 0.2) 0%, rgba(242, 196, 0, 0.25) 24%, rgba(242, 196, 0, 0.5) 25%, rgba(242, 196, 0, 0.5) 50%, rgba(242, 196, 0, 0.75) 51%, rgba(242, 196, 0, 0.75) 75%, #f2c400 76%, #f2c400 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33f2c400', endColorstr='#f2c400',GradientType=1 );
  /* IE6-9 */ }

.grad_blauw {
  background: -moz-linear-gradient(left, rgba(17, 44, 69, 0.2) 0%, rgba(17, 44, 69, 0.25) 24%, rgba(17, 44, 69, 0.5) 25%, rgba(17, 44, 69, 0.5) 50%, rgba(17, 44, 69, 0.75) 51%, rgba(17, 44, 69, 0.75) 75%, #112c45 76%, #112c45 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(17, 44, 69, 0.2) 0%, rgba(17, 44, 69, 0.25) 24%, rgba(17, 44, 69, 0.5) 25%, rgba(17, 44, 69, 0.5) 50%, rgba(17, 44, 69, 0.75) 51%, rgba(17, 44, 69, 0.75) 75%, #112c45 76%, #112c45 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(17, 44, 69, 0.2) 0%, rgba(17, 44, 69, 0.25) 24%, rgba(17, 44, 69, 0.5) 25%, rgba(17, 44, 69, 0.5) 50%, rgba(17, 44, 69, 0.75) 51%, rgba(17, 44, 69, 0.75) 75%, #112c45 76%, #112c45 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33112c45', endColorstr='#112c45',GradientType=1 );
  /* IE6-9 */ }

.grad_grijs {
  background: -moz-linear-gradient(left, rgba(217, 216, 214, 0.2) 0%, rgba(217, 216, 214, 0.25) 24%, rgba(217, 216, 214, 0.5) 25%, rgba(217, 216, 214, 0.5) 50%, rgba(217, 216, 214, 0.75) 51%, rgba(217, 216, 214, 0.75) 75%, #d9d8d6 76%, #d9d8d6 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(217, 216, 214, 0.2) 0%, rgba(217, 216, 214, 0.25) 24%, rgba(217, 216, 214, 0.5) 25%, rgba(217, 216, 214, 0.5) 50%, rgba(217, 216, 214, 0.75) 51%, rgba(217, 216, 214, 0.75) 75%, #d9d8d6 76%, #d9d8d6 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(217, 216, 214, 0.2) 0%, rgba(217, 216, 214, 0.25) 24%, rgba(217, 216, 214, 0.5) 25%, rgba(217, 216, 214, 0.5) 50%, rgba(217, 216, 214, 0.75) 51%, rgba(217, 216, 214, 0.75) 75%, #d9d8d6 76%, #d9d8d6 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33d9d8d6', endColorstr='#d9d8d6',GradientType=1 );
  /* IE6-9 */ }

.txtcenter {
  text-align: center; }

/* Knoppen
----------------------------------------------
*/
.knop {
  border-style: none;
  background-color: #eb0045;
  text-transform: uppercase;
  text-align: center;
  vertical-align: center;
  color: #fff; }

button {
  border: none;
  background-color: #eb0045;
  color: #fff;
  font-weight: bold; }

.marginbottom  {
  margin-bottom: 50px; }

/* media query
-------------------------
*/
@media (min-width: 576px) {
  .navbar-brand {
    max-width: 50px;
    fill: #fff; } }
@media (min-width: 768px) {
  .navbar {
    background-color: #fff; }

  .navbar-brand {
    width: 50px;
    display: block; } }
.client-style {
  font-family: "Raleway", serif;
  border-bottom: 1px solid #b4b4b4;
  border-top: 1px solid #b4b4b4;
  margin: 1em 0 2em; }
  .client-style h1, .client-style h2, .client-style h3, .client-style h4, .client-style h5, .client-style h6 {
    font-family: "ITCAvantGardeStd-Bk", sans-serif; }

/* hier geen CSS schrijven. Enkel en alleen linken naar scss-bestanden */
