/*
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 : 11-mei-2017, 10:49:02
    Author     : MeesVerberne
*/
/*
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 : 10-mrt-2016, 9:25:59
    Author     : Mees Verberne
*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700);
.defaultFont {
  font-size: 14px;
  font-weight: 500;
}
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/*
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 : 10-mrt-2016, 9:27:08
    Author     : Mees Verberne
*/
/*
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 : 18-apr-2017, 13:17:45
    Author     : MeesVerberne
*/
header {
  height: 85px;
  width: 100%;
  position: fixed;
  z-index: 20;
  background: transparent;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header .contentwrapper {
  padding: 0 15px;
  box-sizing: border-box;
}
header .contentwrapper .logo {
  width: 145px;
  display: inline-block;
}
header .contentwrapper .logo a {
  display: inline-block;
  line-height: 85px;
}
header .contentwrapper .logo a img {
  width: 100%;
  vertical-align: middle;
}
header .contentwrapper .logo a.white {
  display: inline-block;
}
header .contentwrapper .logo a.black {
  display: none;
}
header .contentwrapper .toggle-menu {
  display: none;
}
header .contentwrapper #main-menu {
  display: inline-block;
  width: calc(100% - 145px);
  text-align: right;
}
header .contentwrapper #main-menu ul li {
  display: inline-block;
  vertical-align: top;
  list-style: none;
  margin-right: 20px;
  position: relative;
}
header .contentwrapper #main-menu ul li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
}
header .contentwrapper #main-menu ul li.selected a {
  font-weight: bold;
}
header .contentwrapper #main-menu ul li.selected:after {
  content: "";
  height: 1px;
  width: 100%;
  background: #00c584;
  position: absolute;
  left: 0;
  bottom: -10px;
}
header .contentwrapper #main-menu ul li:last-child {
  margin-right: 0;
}
header .contentwrapper #main-menu ul li.submenu {
  margin-right: 15px;
  padding-right: 20px;
}
header .contentwrapper #main-menu ul li.submenu:before {
  font-family: Fontawesome;
  content: "\f107";
  color: #fff;
  right: 0px;
  margin-top: 5px;
  position: absolute;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header .contentwrapper #main-menu ul li.submenu:hover:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header .contentwrapper #main-menu ul li.submenu:hover ul {
  max-height: 400px;
  -webkit-transition: max-height 1s ease-out;
  -moz-transition: max-height 1s ease-out;
  -o-transition: max-height 1s ease-out;
  transition: max-height 1s ease-out;
}
header .contentwrapper #main-menu ul li.submenu ul {
  width: 100%;
  min-width: 150px;
  display: block;
  position: absolute;
  text-align: left;
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  -webkit-transition: max-height 1s ease-out;
  -moz-transition: max-height 1s ease-out;
  -o-transition: max-height 1s ease-out;
  transition: max-height 1s ease-out;
}
header .contentwrapper #main-menu ul li.submenu ul li {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}
header .contentwrapper #main-menu ul li.submenu ul li:first-child {
  margin-top: 20px;
}
header .contentwrapper #main-menu ul li.submenu ul li a {
  display: block;
  width: 100%;
}
header .contentwrapper #main-menu ul li.highlight a {
  border: 2px solid #ff5e00;
  display: inline-block;
  font-weight: 600;
  background: #ff5e00;
  padding: 10px 28px;
  vertical-align: top;
  margin-top: -9px;
  border-radius: 32px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header .contentwrapper #main-menu ul li.highlight a:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header.scrolled {
  background: #fff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header.scrolled .contentwrapper .logo a.white {
  display: none;
}
header.scrolled .contentwrapper .logo a.black {
  display: inline-block;
}
header.scrolled .contentwrapper #main-menu ul li a {
  color: #282828;
}
header.scrolled .contentwrapper #main-menu ul li.highlight a {
  color: #fff;
}
header.scrolled .contentwrapper #main-menu ul li.highlight a:hover {
  color: #ff5e00;
  border-color: #ff5e00;
}
header.scrolled .contentwrapper #main-menu ul li.submenu:before {
  color: #282828;
}
header.scrolled .contentwrapper #main-menu ul li ul {
  background: #fff;
}
@media all and (max-width: 1140px) {
  header .contentwrapper {
    padding: 0 20px;
  }
  header .contentwrapper #main-menu ul li {
    margin-right: 10px;
  }
}
@media all and (max-width: 1023px) {
  header.open .contentwrapper .responsive-bg,
  header.scrolled.open .contentwrapper .responsive-bg {
    display: block;
    width: 100%;
    background: #ebebeb;
    -webkit-transition-property: background;
    -moz-transition-property: background;
    -o-transition-property: background;
    transition-property: background;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
  }
  header .contentwrapper,
  header.scrolled .contentwrapper {
    padding: 0px;
  }
  header .contentwrapper .responsive-bg,
  header.scrolled .contentwrapper .responsive-bg {
    display: block;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    width: 100%;
    background: transparent;
    -webkit-transition-property: background;
    -moz-transition-property: background;
    -o-transition-property: background;
    transition-property: background;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-delay: 0.8s;
    -moz-transition-delay: 0.8s;
    -o-transition-delay: 0.8s;
    transition-delay: 0.8s;
  }
  header .contentwrapper .logo,
  header.scrolled .contentwrapper .logo {
    z-index: 2;
    position: relative;
  }
  header .contentwrapper .toggle-menu,
  header.scrolled .contentwrapper .toggle-menu {
    display: inline-block;
    float: right;
    margin-top: 31px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 2;
  }
  header .contentwrapper .toggle-menu .bar,
  header.scrolled .contentwrapper .toggle-menu .bar {
    width: 35px;
    height: 2px;
    background: #fff;
    margin-top: 11px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  header .contentwrapper .toggle-menu .bar:before,
  header.scrolled .contentwrapper .toggle-menu .bar:before {
    position: absolute;
    top: 0px;
    content: "";
    margin-bottom: 30px;
    width: 35px;
    height: 2px;
    background: #fff;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  header .contentwrapper .toggle-menu .bar:after,
  header.scrolled .contentwrapper .toggle-menu .bar:after {
    position: absolute;
    top: 0px;
    content: "";
    margin-top: 22px;
    width: 35px;
    height: 2px;
    background: #fff;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  header .contentwrapper .toggle-menu.close .bar,
  header.scrolled .contentwrapper .toggle-menu.close .bar {
    height: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  header .contentwrapper .toggle-menu.close .bar:before,
  header.scrolled .contentwrapper .toggle-menu.close .bar:before {
    margin-bottom: 0px;
    top: 10px;
    bottom: auto;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  header .contentwrapper .toggle-menu.close .bar:after,
  header.scrolled .contentwrapper .toggle-menu.close .bar:after {
    margin-top: 0px;
    top: 10px;
    bottom: auto;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  header .contentwrapper #main-menu,
  header.scrolled .contentwrapper #main-menu {
    text-align: left;
    position: fixed;
    height: 100%;
    text-align: center;
    padding-top: 85px;
    box-sizing: border-box;
    width: 100%;
    top: -100%;
    overflow: scroll;
    left: 0;
    background: #ebebeb;
    -webkit-transition: all 0.7s ease-out;
    -moz-transition: all 0.7s ease-out;
    -o-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
  }
  header .contentwrapper #main-menu.open,
  header.scrolled .contentwrapper #main-menu.open {
    top: 0;
    -webkit-transition: all 0.7s ease-out;
    -moz-transition: all 0.7s ease-out;
    -o-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  header .contentwrapper #main-menu ul,
  header.scrolled .contentwrapper #main-menu ul {
    height: 100%;
    overflow: auto;
  }
  header .contentwrapper #main-menu ul li,
  header.scrolled .contentwrapper #main-menu ul li {
    display: block;
    margin-bottom: 30px;
    margin-right: 0;
  }
  header .contentwrapper #main-menu ul li a,
  header.scrolled .contentwrapper #main-menu ul li a {
    color: #282828;
    font-size: 14px;
  }
  header .contentwrapper #main-menu ul li.selected a,
  header.scrolled .contentwrapper #main-menu ul li.selected a {
    color: #00c584;
  }
  header .contentwrapper #main-menu ul li.selected:after,
  header.scrolled .contentwrapper #main-menu ul li.selected:after {
    display: none;
  }
  header .contentwrapper #main-menu ul li.submenu,
  header.scrolled .contentwrapper #main-menu ul li.submenu {
    margin-right: 0;
    padding-right: 0;
  }
  header .contentwrapper #main-menu ul li.submenu:after,
  header.scrolled .contentwrapper #main-menu ul li.submenu:after {
    display: none;
  }
  header .contentwrapper #main-menu ul li.submenu:before,
  header.scrolled .contentwrapper #main-menu ul li.submenu:before {
    display: none;
  }
  header .contentwrapper #main-menu ul li.submenu ul,
  header.scrolled .contentwrapper #main-menu ul li.submenu ul {
    position: static;
    max-height: 400px;
    padding: 0;
    background: none;
    text-align: center;
  }
  header .contentwrapper #main-menu ul li.submenu ul li a,
  header.scrolled .contentwrapper #main-menu ul li.submenu ul li a {
    font-size: 12px;
  }
  header .contentwrapper #main-menu ul li.submenu:hover ul,
  header.scrolled .contentwrapper #main-menu ul li.submenu:hover ul {
    max-height: 400px;
  }
  header .contentwrapper #main-menu ul li.highlight,
  header.scrolled .contentwrapper #main-menu ul li.highlight {
    margin-bottom: 50px;
  }
  header .contentwrapper #main-menu ul li.highlight a,
  header.scrolled .contentwrapper #main-menu ul li.highlight a {
    color: #fff;
  }
  header .contentwrapper #main-menu ul li.highlight a:hover,
  header.scrolled .contentwrapper #main-menu ul li.highlight a:hover {
    border-color: #ff5e00;
    color: #ff5e00;
  }
  header.scrolled .contentwrapper .toggle-menu .bar {
    background: #282828;
  }
  header.scrolled .contentwrapper .toggle-menu .bar:after {
    background: #282828;
  }
  header.scrolled .contentwrapper .toggle-menu .bar:before {
    background: #282828;
  }
}
@media all and (max-height: 600px) {
  header .contentwrapper #main-menu {
    height: 100%;
  }
}
/*
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 : 25-apr-2017, 11:30:34
    Author     : MeesVerberne
*/
#footer {
  padding-top: 50px;
  background: url(/assets/img/gd-bg.jpg);
  background-size: cover;
  color: #fff;
}
#footer .contentwrapper .subfooter {
  padding-bottom: 30px;
}
#footer .contentwrapper .subfooter .footermenu {
  width: 100%;
  display: inline-block;
  vertical-align: top;
}
#footer .contentwrapper .subfooter .footermenu ul {
  list-style: none;
}
#footer .contentwrapper .subfooter .footermenu ul .responsive-div {
  width: auto;
  height: auto;
  display: inline;
}
#footer .contentwrapper .subfooter .footermenu ul .responsive-div .column {
  width: 18%;
  vertical-align: top;
  display: inline-block;
}
#footer .contentwrapper .subfooter .footermenu ul .responsive-div .column:first-child {
  width: 10%;
}
#footer .contentwrapper .subfooter .footermenu ul .responsive-div .column li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 30px;
  font-weight: 700;
  opacity: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
#footer .contentwrapper .subfooter .footermenu ul .responsive-div .column li a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
#footer .contentwrapper .subfooter .footermenu ul .responsive-div .column li ul li a {
  font-weight: 500;
}
#footer .contentwrapper .subfooter .footermenu ul .responsive-div .last-column {
  width: 26%;
  display: inline-block;
  vertical-align: top;
  padding-left: 40px;
  box-sizing: border-box;
}
#footer .contentwrapper .subfooter .footermenu ul .responsive-div .last-column .title {
  color: #0d493c;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
}
#footer .contentwrapper .subfooter .footermenu ul .responsive-div .last-column p {
  font-size: 14px;
  line-height: 21px;
}
#footer .contentwrapper .subfooter .footermenu ul .responsive-div .last-column .socials {
  padding-top: 20px;
}
#footer .contentwrapper .subfooter .footermenu ul .responsive-div .last-column .socials a {
  color: #fff;
  font-size: 18px;
  opacity: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
#footer .contentwrapper .subfooter .footermenu ul .responsive-div .last-column .socials a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
#footer .contentwrapper .subfooter .footermenu ul .responsive-div .last-column .socials a i {
  margin-right: 20px;
}
#footer .contentwrapper .copyfooter {
  font-weight: 300;
  font-size: 14px;
  color: #0d493c;
  text-align: center;
  line-height: 45px;
  border-top: 1px solid rgba(225, 225, 225, 0.2);
}
#footer .contentwrapper .copyfooter a {
  font-weight: 700;
  color: #0d493c;
}
@media all and (max-width: 1285px) {
  #footer .contentwrapper {
    padding: 0 20px;
    box-sizing: border-box;
  }
}
@media all and (max-width: 1023px) {
  #footer .contentwrapper .subfooter .footermenu {
    width: 355px;
    margin: 0 auto;
    display: block;
    position: relative;
  }
  #footer .contentwrapper .subfooter .footermenu ul .responsive-div {
    width: 50%;
    display: inline-block;
    vertical-align: top;
  }
  #footer .contentwrapper .subfooter .footermenu ul .responsive-div .column {
    width: 100% !important;
  }
  #footer .contentwrapper .subfooter .footermenu ul .responsive-div .last-column {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    padding-left: 0;
    padding-top: 30px;
  }
}
@media all and (max-width: 767px) {
  #footer .contentwrapper .copyfooter .links {
    display: block;
  }
  #footer .contentwrapper .copyfooter .seperator {
    display: none;
  }
}
@media all and (max-width: 400px) {
  #footer .contentwrapper .copyfooter {
    line-height: 20px;
    padding: 20px 0;
  }
  #footer .contentwrapper .copyfooter .links {
    margin-top: 20px;
  }
  #footer .contentwrapper .subfooter .footermenu {
    width: 100%;
  }
  #footer .contentwrapper .subfooter .footermenu ul .responsive-div {
    width: 100%;
    display: block;
  }
  #footer .contentwrapper .subfooter .footermenu ul .responsive-div .last-column {
    position: static;
    padding-top: 0;
    width: 100%;
  }
}
* {
  padding: 0;
  margin: 0;
  font-family: 'Open Sans';
}
html,
body {
  -webkit-font-smoothing: antialiased;
  color: #4d4d4f;
  /*    overflow-x:hidden;*/
}
html.overflow,
body.overflow {
  overflow: hidden;
}
html p,
body p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}
html.overflow-menu,
body.overflow-menu {
  position: relative;
  overflow: hidden;
}
html.overflow-menu header .contentwrapper .logo a.white,
body.overflow-menu header .contentwrapper .logo a.white {
  display: none;
}
html.overflow-menu header .contentwrapper .logo a.black,
body.overflow-menu header .contentwrapper .logo a.black {
  display: inline-block;
}
html.overflow-menu .page,
body.overflow-menu .page,
html.overflow-menu footer,
body.overflow-menu footer {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  -webkit-transition-property: opacity, visibility, max-height;
  -moz-transition-property: opacity, visibility, max-height;
  -o-transition-property: opacity, visibility, max-height;
  transition-property: opacity, visibility, max-height;
  transition-duration: 0.7s, 0.7s, 0.1s;
  -webkit-transition-duration: 0.7s, 0.7s, 0.1s;
  -moz-transition-duration: 0.7s, 0.7s, 0.1s;
  -o-transition-duration: 0.7s, 0.7s, 0.1s;
  -webkit-transition-delay: 0s, 0s, 0.7s;
  -moz-transition-delay: 0s, 0s, 0.7s;
  -o-transition-delay: 0s, 0s, 0.7s;
  transition-delay: 0s, 0s, 0.7s;
}
.page,
footer {
  opacity: 1;
  visibility: visible;
  max-height: 1000000px;
  -webkit-transition-property: opacity, visibility, max-height;
  -moz-transition-property: opacity, visibility, max-height;
  -o-transition-property: opacity, visibility, max-height;
  transition-property: opacity, visibility, max-height;
  transition-duration: 0s;
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -o-transition-duration: 0s;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
a {
  color: inherit;
}
b,
strong {
  font-weight: 700;
}
.textpage {
  padding-top: 85px;
}
.anchor {
  padding-top: 85px;
}
.inview.invisible {
  opacity: 0;
}
.inview {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
  opacity: 1;
}
.gradient-bg {
  background: #00c584;
  background: linear-gradient(90deg, #00c584 0%, #0ea181 50%, #2c8487 100%);
}
.gradient-overlay-menu {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(2, 2, 2, 0.55) 1%, rgba(229, 229, 229, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.55) 0%, rgba(2, 2, 2, 0.55) 1%, rgba(229, 229, 229, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(2, 2, 2, 0.55) 1%, rgba(229, 229, 229, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8c000000', endColorstr='#00e5e5e5', GradientType=0);
  /* IE6-9 */
  height: 85px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
a {
  text-decoration: none;
}
.contentwrapper {
  width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
.contentwrapper.fix {
  width: 1154px;
}
.pagetitle {
  font-size: 40px;
  line-height: 40px;
  font-weight: 300;
  text-transform: uppercase;
}
.black {
  font-weight: 700;
}
input:focus {
  outline: 0;
}
.btn {
  border: 2px solid #ff5e00;
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  background: #ff5e00;
  padding: 10px 28px;
  vertical-align: top;
  border-radius: 32px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.btn.green {
  background: #00c584;
  border-color: #00c584;
}
.btn.green:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.htmlblock {
  padding-top: 50px;
  padding-bottom: 50px;
}
.htmlblock h1 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 100;
  line-height: 1.1;
}
.htmlblock hr {
  border: 0px;
  border-bottom: 1px solid #acacac;
  margin-bottom: 25px;
  margin-top: 10px;
}
.htmlblock ul {
  padding: 20px 60px;
  padding-bottom: 40px;
}
.grecaptcha-badge {
  z-index: 10;
}
@media all and (max-width: 1180px) {
  .contentwrapper {
    width: 100%;
  }
  .contentwrapper.fix {
    width: 100%;
  }
  .contentwrapper.htmlblock {
    width: auto;
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media all and (max-width: 1023px) {
  .responsive-table {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
@media all and (max-width: 767px) {
  .contentwrapper {
    width: 100%;
  }
  .contentwrapper.fix {
    width: 100%;
  }
  .contentwrapper.htmlblock {
    width: auto;
    padding-left: 40px;
    padding-right: 40px;
  }
  table {
    max-width: 100% !important;
  }
}
@media all and (max-width: 500px) {
  .rotaid-info .contentwrapper .right .item {
    width: 100% !important;
    padding: 30px 20px !important;
    box-sizing: border-box !important;
  }
  .responsive-table {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .responsive-table img {
    width: auto !important;
    max-height: 50px !important;
  }
  .responsive-table h2 {
    font-size: 16px !important;
  }
}
.quick-steps {
  width: 100%;
  height: 155px;
}
.quick-steps .step {
  width: 33.3333%;
  display: inline-block;
  height: 100%;
  position: relative;
  cursor: pointer;
}
.quick-steps .step .overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.quick-steps .step .content {
  display: table;
  width: 100%;
  height: 100%;
}
.quick-steps .step .content .container {
  position: relative;
  color: #fff;
  display: table-cell;
  vertical-align: middle;
  text-transform: uppercase;
  text-align: center;
  font-size: 25px;
  line-height: 25px;
  padding-top: 10px;
}
.quick-steps .step .content .container .subtitle {
  font-weight: 300;
}
.quick-steps .step .content .container .title {
  font-weight: 700;
}
.quick-steps .step:hover .overlay {
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media all and (max-width: 767px) {
  .quick-steps {
    height: 495px;
  }
  .quick-steps .step {
    display: block;
    width: 100%;
    height: 165px;
  }
}
/*
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 : 3-mei-2017, 11:54:23
    Author     : MeesVerberne
*/
.latestnews {
  padding: 50px 0;
}
.latestnews.examples {
  background: #ebebeb;
}
.latestnews .contentwrapper {
  position: relative;
}
.latestnews .contentwrapper h2 {
  padding-left: 15px;
  line-height: 40px;
  margin-bottom: 35px;
}
.latestnews .contentwrapper .btn.green {
  position: absolute;
  right: 15px;
  top: 0;
}
.latestnews .contentwrapper .btn.green:hover {
  color: #00c584;
  border-color: #00c584;
}
.latestnews .contentwrapper .prevnews {
  top: 185px;
  font-size: 24px;
  line-height: 24px;
  position: absolute;
  left: -40px;
  cursor: pointer;
}
.latestnews .contentwrapper .prevnews.hidden #prevnews {
  color: #4d4d4f;
  -moz-opacity: 0.1;
  -khtml-opacity: 0.1;
  -webkit-opacity: 0.1;
  opacity: 0.1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=10);
  filter: alpha(opacity=10);
}
.latestnews .contentwrapper .prevnews #prevnews {
  color: #00a068;
}
.latestnews .contentwrapper .nextnews {
  top: 185px;
  font-size: 24px;
  line-height: 24px;
  position: absolute;
  right: -40px;
  cursor: pointer;
}
.latestnews .contentwrapper .nextnews.hidden #nextnews {
  color: #4d4d4f;
  -moz-opacity: 0.1;
  -khtml-opacity: 0.1;
  -webkit-opacity: 0.1;
  opacity: 0.1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=10);
  filter: alpha(opacity=10);
}
.latestnews .contentwrapper .nextnews #nextnews {
  color: #00a068;
}
.latestnews .contentwrapper .newsitems {
  overflow: hidden;
  width: calc(100% + 14px);
  margin-left: -7px;
}
.latestnews .contentwrapper .newsitems .inview-wrapper {
  position: relative;
  white-space: nowrap;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -moz-transition: all 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -o-transition: all 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: all 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.latestnews .contentwrapper .newsitems .inview-wrapper .news-item {
  display: inline-block;
  vertical-align: top;
  width: 33.3333%;
  padding: 0 7px;
  box-sizing: border-box;
  white-space: normal;
}
.latestnews .contentwrapper .newsitems .inview-wrapper .news-item:hover .image .news-image {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.latestnews .contentwrapper .newsitems .inview-wrapper .news-item a {
  color: #4d4d4f;
}
.latestnews .contentwrapper .newsitems .inview-wrapper .news-item .image {
  width: 100%;
  height: 270px;
  background: #000;
}
.latestnews .contentwrapper .newsitems .inview-wrapper .news-item .image .news-image {
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.latestnews .contentwrapper .newsitems .inview-wrapper .news-item .content {
  padding: 30px 15px 0 15px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 20px;
}
.latestnews .contentwrapper .newsitems .inview-wrapper .news-item .content h3 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 15px;
  height: 48px;
  overflow: hidden;
  word-break: break-word;
}
.latestnews .contentwrapper .newsitems .inview-wrapper .news-item .content .info {
  max-height: 60px;
  overflow: hidden;
  font-size: 16px;
  line-height: 20px;
}
.latestnews .contentwrapper .newsitems .inview-wrapper .news-item .content .news-link {
  font-style: italic;
  text-decoration: underline;
  color: #00c584;
}
@media all and (max-width: 1285px) {
  .latestnews .contentwrapper {
    width: 100%;
  }
  .latestnews .contentwrapper .pagetitle {
    padding-left: 115px;
  }
  .latestnews .contentwrapper .btn.green {
    right: 115px;
  }
  .latestnews .contentwrapper .prevnews {
    left: 20px;
  }
  .latestnews .contentwrapper .nextnews {
    right: 20px;
  }
  .latestnews .contentwrapper .newsitems {
    width: calc(100% - 120px);
    margin: 0 auto;
  }
}
@media all and (max-width: 1023px) {
  .latestnews .contentwrapper .newsitems .inview-wrapper .news-item {
    width: 50%;
  }
}
@media all and (max-width: 767px) {
  .latestnews {
    padding: 60px 0 80px 0;
  }
  .latestnews .contentwrapper .pagetitle {
    text-align: center;
    padding-left: 0;
    margin-bottom: 15px;
  }
  .latestnews .contentwrapper .btn.green {
    position: static;
    margin: 0 auto;
    display: block;
    width: 78px;
    margin-bottom: 40px;
  }
  .latestnews .contentwrapper .prevnews {
    left: 20px;
    bottom: -50px;
    top: auto;
  }
  .latestnews .contentwrapper .nextnews {
    right: 20px;
    bottom: -50px;
    top: auto;
  }
  .latestnews .contentwrapper .newsitems {
    width: 100%;
    margin: 0 auto;
  }
  .latestnews .contentwrapper .newsitems .inview-wrapper .news-item {
    width: 100%;
    padding: 0 20px;
  }
  .latestnews .contentwrapper .newsitems .inview-wrapper .news-item .content {
    padding: 30px 60px 0 60px;
  }
}
@media all and (max-width: 500px) {
  .latestnews .contentwrapper .pagetitle {
    font-size: 30px;
    line-height: 30px;
  }
}
@media all and (max-width: 400px) {
  .latestnews .contentwrapper .pagetitle {
    font-size: 30px;
    line-height: 30px;
  }
}
/*
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 : 30-mei-2017, 15:03:06
    Author     : MeesVerberne
*/
.text-image {
  background: #ebebeb;
  position: relative;
  padding-bottom: 30px;
}
.text-image .wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.text-image .wrapper .contentwrapper {
  position: absolute;
  padding: 0 15px;
  box-sizing: border-box;
  z-index: 1;
  height: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 0;
}
.text-image .wrapper .contentwrapper .container {
  width: 50%;
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  box-sizing: border-box;
}
.text-image .wrapper .contentwrapper .container .text {
  width: 330px;
  margin: 0 auto;
}
.text-image .wrapper .contentwrapper .container .text .pagetitle {
  margin-bottom: 25px;
}
.text-image .wrapper .contentwrapper .container .text .btn {
  margin-top: 25px;
  margin-bottom: 25px;
}
.text-image .wrapper .contentwrapper .container .text .btn.outline {
  background: transparent;
  color: #00c584;
}
.text-image .wrapper .contentwrapper .container .text .btn.outline:hover {
  color: #fff;
  background: #00c584;
  border-color: #00c584;
}
.text-image .wrapper .image {
  position: relative;
  width: 100%;
  right: 0;
  top: 0;
  height: 100%;
  text-align: right;
}
.text-image .wrapper .image img {
  max-width: 50%;
  padding-top: 0;
  padding-bottom: 30px;
}
.text-image.text-left .wrapper .contentwrapper .container {
  right: 0;
}
.text-image.text-left .wrapper .image {
  text-align: left;
}
.text-image.text-left .wrapper .image img {
  padding-top: 30px;
  padding-bottom: 0;
}
.text-image.incontainer .wrapper .contentwrapper {
  position: relative;
}
.text-image.incontainer .wrapper .contentwrapper .container {
  position: absolute;
  width: 50%;
}
.text-image.incontainer .wrapper .contentwrapper .image {
  position: static;
  display: inline-block;
  width: 100%;
}
.text-image.incontainer .wrapper .contentwrapper .image img {
  padding-top: 30px;
  max-width: 50%;
}
.text-image .moreinfo {
  background: #fff;
  position: relative;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.8s cubic-bezier(0, 1.05, 0, 1);
  -moz-transition: all 0.8s cubic-bezier(0, 1.05, 0, 1);
  -o-transition: all 0.8s cubic-bezier(0, 1.05, 0, 1);
  transition: all 0.8s cubic-bezier(0, 1.05, 0, 1);
}
.text-image .moreinfo.active {
  max-height: 3060px;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}
.text-image .moreinfo .close-more {
  position: relative;
  width: 100%;
  width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: border-box;
}
.text-image .moreinfo .close-more img {
  position: absolute;
  right: 15px;
  top: 30px;
  cursor: pointer;
}
.text-image .moreinfo .inview-wrapper {
  width: 100%;
}
.text-image .moreinfo .inview-wrapper .container {
  width: 1140px;
  margin: 0 auto;
  padding: 100px 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.text-image .moreinfo .inview-wrapper .container .column {
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 70px;
}
.text-image .moreinfo .inview-wrapper .container .column:last-child {
  padding-bottom: 0;
}
.text-image .moreinfo .inview-wrapper .container .column .intro {
  width: 50%;
}
.text-image .moreinfo .inview-wrapper .container .column .intro {
  font-weight: bold;
  font-size: 20px;
  padding-left: 90px;
  box-sizing: border-box;
}
.text-image .moreinfo .inview-wrapper .container .column .content-block {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  padding-left: 90px;
  box-sizing: border-box;
}
.text-image .moreinfo .inview-wrapper .container .column .content-block .title {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 20px;
  box-sizing: border-box;
  position: relative;
}
.text-image .moreinfo .inview-wrapper .container .column .content-block .title .icon {
  position: absolute;
  left: -90px;
  top: -10px;
}
.text-image .moreinfo .inview-wrapper .container .column .content-block .text p {
  margin-bottom: 15px;
}
.text-image .moreinfo .inview-wrapper .container .column .image {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  max-height: 700px;
  overflow: hidden;
  text-align: center;
}
.text-image .moreinfo .inview-wrapper .container .column .image img {
  max-width: 100%;
}
@media all and (max-width: 1180px) {
  .text-image .moreinfo .close-more {
    width: 100%;
  }
  .text-image .moreinfo .inview-wrapper .container {
    width: 100%;
  }
}
@media all and (max-width: 1023px) {
  .text-image {
    width: 100%;
    padding-bottom: 50px;
  }
  .text-image .wrapper {
    display: table;
    width: 100%;
  }
  .text-image .wrapper .contentwrapper {
    padding: 0 20px;
    width: 100%;
    position: static;
    display: table-footer-group;
  }
  .text-image .wrapper .contentwrapper .container {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -o-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    position: static;
    width: 100%;
  }
  .text-image .wrapper .contentwrapper .container h2 {
    margin-top: 20px;
  }
  .text-image .wrapper .contentwrapper .image {
    position: static;
    width: 100%;
  }
  .text-image .wrapper .image {
    width: 100%;
    position: static;
  }
  .text-image.text-left .wrapper .image {
    display: table-footer-group;
  }
  .text-image.incontainer .wrapper .contentwrapper .container {
    width: 100%;
    position: static;
  }
  .text-image.incontainer .wrapper .contentwrapper .image {
    text-align: center;
    max-height: 50%;
  }
  .text-image .moreinfo .inview-wrapper .container {
    padding: 100px 20px;
  }
  .text-image .moreinfo .inview-wrapper .container .column .intro {
    width: 100%;
    padding-left: 0;
  }
  .text-image .moreinfo .inview-wrapper .container .column .content-block {
    width: 100%;
    padding-left: 0;
  }
  .text-image .moreinfo .inview-wrapper .container .column .content-block .title .icon {
    left: 0;
  }
  .text-image .moreinfo .inview-wrapper .container .column .content-block .title .position {
    margin-left: 80px;
  }
  .text-image .moreinfo .inview-wrapper .container .column .content-block .text {
    width: 100%;
  }
  .text-image .moreinfo .inview-wrapper .container .column .image {
    padding-left: 0;
    width: 100%;
    margin-top: 20px;
  }
}
@media all and (max-width: 480px) {
  .text-image .container .info table {
    width: 100% !important;
    margin-left: inherit !important;
  }
  .text-image .wrapper .contentwrapper .container .text {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .text-image .moreinfo .close-more {
    width: 100%;
  }
  .text-image .moreinfo .inview-wrapper .container {
    width: 100%;
  }
}
/*
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 : 7-jun-2017, 11:09:41
    Author     : MeesVerberne
*/
.specifications {
  padding: 50px 0;
  background: url(/assets/img/gd-bg.jpg);
  background-size: cover;
  color: #fff;
}
.specifications .contentwrapper {
  padding: 0 15px;
  box-sizing: border-box;
  text-align: center;
}
.specifications .contentwrapper .column {
  width: 33.3333%;
  display: inline-block;
  vertical-align: top;
}
.specifications .contentwrapper .column:first-child {
  padding-right: 30px;
  box-sizing: border-box;
}
.specifications .contentwrapper .column:first-child .option {
  text-align: right;
}
.specifications .contentwrapper .column:first-child .option .icon {
  float: right;
}
.specifications .contentwrapper .column:first-child .option.extrainfo {
  font-size: 19px;
  padding-right: 65px;
  text-transform: uppercase;
}
.specifications .contentwrapper .column:last-child {
  padding-left: 30px;
  box-sizing: border-box;
}
.specifications .contentwrapper .column:last-child .option {
  text-align: left;
}
.specifications .contentwrapper .column:last-child .option .icon {
  float: left;
}
.specifications .contentwrapper .column:last-child .option.extrainfo {
  padding-left: 65px;
  text-transform: uppercase;
}
.specifications .contentwrapper .column .hidedesktop {
  display: none;
}
.specifications .contentwrapper .column .option {
  padding-top: 50px;
}
.specifications .contentwrapper .column .option .icon {
  width: 65px;
  display: inline-block;
  font-size: 32px;
  text-align: center;
  margin-top: -10px;
}
.specifications .contentwrapper .column .option .info {
  width: calc(100% - 65px);
  display: inline-block;
}
.specifications .contentwrapper .column .option .info h4 {
  text-transform: uppercase;
  font-size: 20px;
}
.specifications .contentwrapper .column .inview-wrapper {
  position: relative;
  height: 420px;
  width: 100%;
  margin-top: 60px;
}
.specifications .contentwrapper .column .inview-wrapper .rotaid {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}
.specifications .contentwrapper .column .inview-wrapper .rotaid.active {
  opacity: 1;
  z-index: 3;
  visibility: visible;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.specifications .contentwrapper .column .inview-wrapper .rotaid img {
  max-width: 100%;
}
.specifications .contentwrapper .column .options {
  margin-top: 20px;
}
.specifications .contentwrapper .column .options .color {
  display: inline-block;
  margin: 0 10px;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.specifications .contentwrapper .column .options .color:first-child {
  margin-left: 0;
}
.specifications .contentwrapper .column .options .color:last-child {
  margin-right: 0;
}
.specifications .contentwrapper .column .options .color.active {
  opacity: 0.5;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.specifications .contentwrapper .column .options .color p {
  font-size: 11px;
  text-transform: uppercase;
  margin-top: 5px;
}
.specifications .contentwrapper .column .options .color .choice {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin: 0 auto;
}
.specifications .contentwrapper .column .options .color .choice.green {
  background: #00c584;
}
.specifications .contentwrapper .column .options .color .choice.red {
  background: #ff0000;
}
.specifications .contentwrapper .column .options .color .choice.yellow {
  background: #e2da00;
}
.specifications .contentwrapper .column .moreinfo {
  margin-top: 30px;
}
.specifications .contentwrapper .column .moreinfo .btn {
  background: none;
  border-color: #fff;
}
.specifications .contentwrapper .column .moreinfo .btn:hover {
  background: #fff;
  color: #00c584;
}
@media all and (max-width: 1023px) {
  .specifications .contentwrapper {
    padding: 0 20px;
  }
  .specifications .contentwrapper .column {
    width: 50%;
  }
  .specifications .contentwrapper .column:last-child {
    display: none;
  }
  .specifications .contentwrapper .column .hidedesktop {
    display: inline;
  }
}
@media all and (max-width: 767px) {
  .specifications .contentwrapper .content {
    display: table;
    width: 100%;
  }
  .specifications .contentwrapper .content .column {
    width: 100%;
  }
  .specifications .contentwrapper .content .column:first-child {
    display: table-footer-group;
  }
  .specifications .contentwrapper .content .column:first-child .option {
    text-align: center;
  }
  .specifications .contentwrapper .content .column:first-child .option .icon {
    width: 100%;
    text-align: center;
    float: none;
  }
  .specifications .contentwrapper .content .column:first-child .option .info {
    width: 100%;
  }
  .specifications .contentwrapper .content .column:first-child .option.extrainfo {
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 500px) {
  .specifications .contentwrapper .pagetitle {
    font-size: 30px;
    line-height: 30px;
  }
}
/*
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 : 18-apr-2017, 14:41:58
    Author     : MeesVerberne
*/
.slider {
  height: calc(100vh - 50px);
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slider .inview-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider .inview-wrapper .slide-item.image {
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  -webkit-transition-delay: 1s;
  -moz-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}
.slider .inview-wrapper .slide-item.image.active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.slider .inview-wrapper .slide-item.image.active .contentwrapper .image {
  top: 0;
  opacity: 1;
  -webkit-transition-property: top, opacity;
  -moz-transition-property: top, opacity;
  -o-transition-property: top, opacity;
  transition-property: top, opacity;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.slider .inview-wrapper .slide-item.image.active .contentwrapper .content {
  top: 0;
  opacity: 1;
  -webkit-transition-property: top, opacity;
  -moz-transition-property: top, opacity;
  -o-transition-property: top, opacity;
  transition-property: top, opacity;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  -webkit-transition-delay: 1s;
  -moz-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}
.slider .inview-wrapper .slide-item.image.active.fade-out .contentwrapper .image {
  top: 40px;
  opacity: 0;
  -webkit-transition-property: top, opacity;
  -moz-transition-property: top, opacity;
  -o-transition-property: top, opacity;
  transition-property: top, opacity;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.slider .inview-wrapper .slide-item.image.active.fade-out .contentwrapper .content {
  top: 40px;
  opacity: 0;
  -webkit-transition-property: top, opacity;
  -moz-transition-property: top, opacity;
  -o-transition-property: top, opacity;
  transition-property: top, opacity;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.slider .inview-wrapper .slide-item.image .contentwrapper {
  padding: 0 15px;
  box-sizing: border-box;
  top: calc(50% - 267px);
  position: absolute;
  height: 535px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}
.slider .inview-wrapper .slide-item.image .contentwrapper .image {
  width: 50%;
  display: inline-block;
  text-align: right;
  vertical-align: top;
  padding-right: 30px;
  box-sizing: border-box;
  position: absolute;
  top: -80px;
  opacity: 0;
  -webkit-transition-property: top, opacity;
  -moz-transition-property: top, opacity;
  -o-transition-property: top, opacity;
  transition-property: top, opacity;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -o-transition-duration: 0s;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.slider .inview-wrapper .slide-item.image .contentwrapper .content {
  padding-top: 125px;
  padding-left: 30px;
  width: 50%;
  display: inline-block;
  color: #fff;
  box-sizing: border-box;
  position: absolute;
  right: 20px;
  top: -80px;
  opacity: 0;
  -webkit-transition-property: top, opacity;
  -moz-transition-property: top, opacity;
  -o-transition-property: top, opacity;
  transition-property: top, opacity;
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.slider .inview-wrapper .slide-item.image .contentwrapper .content h2 {
  font-size: 40px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 40px;
}
.slider .inview-wrapper .slide-item.image .contentwrapper .content h1 {
  font-weight: bold;
  font-size: 69px;
  line-height: 69px;
  text-transform: uppercase;
}
.slider .inview-wrapper .slide-item.image .contentwrapper .content h4 {
  margin: 15px 0 25px 0;
  font-size: 20px;
  font-weight: 300;
}
.slider .inview-wrapper .slide-item.image .contentwrapper .content h4 .seperator {
  color: #57b5bb;
  font-size: 25px;
}
.slider .inview-wrapper .slide-item.image .contentwrapper .content .buttons .btn.green {
  margin-left: 20px;
}
.slider .inview-wrapper .slide-item.image .background {
  position: absolute;
  width: 100%;
  height: 100%;
}
.slider .inview-wrapper .slide-item.background-image {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}
.slider .inview-wrapper .slide-item.background-image.active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.slider .inview-wrapper .slide-item.background-image.active .contentwrapper {
  top: calc(50% + 42px);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.slider .inview-wrapper .slide-item.background-image.active.fade-out .contentwrapper {
  top: calc(50% + 82px);
  opacity: 0;
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.slider .inview-wrapper .slide-item.background-image .overlay {
  width: 70%;
  background: #000;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0, 0)), color-stop(1, #000));
  background: -ms-linear-gradient(left, rgba(0, 0, 0, 0), #000);
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, #000 100%);
  background: -o-linear-gradient(#000, rgba(0, 0, 0, 0));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000', endColorstr='rgba(0, 0, 0, 0)', GradientType=0);
  position: absolute;
  right: 0;
  height: 100%;
  z-index: 2;
  opacity: 0.75;
}
.slider .inview-wrapper .slide-item.background-image .overlay.text-left {
  right: inherit;
  left: 0px;
  background: #000;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(1, rgba(0, 0, 0, 0)));
  background: -ms-linear-gradient(left, #000, rgba(0, 0, 0, 0));
  background: -moz-linear-gradient(left, #000 0%, rgba(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(rgba(0, 0, 0, 0), #000);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(0, 0, 0, 0)', endColorstr='#000', GradientType=0);
}
.slider .inview-wrapper .slide-item.background-image .background {
  position: absolute;
  width: 100%;
  height: 100%;
}
.slider .inview-wrapper .slide-item.background-image .background.background_mobile {
  display: none;
}
.slider .inview-wrapper .slide-item.background-image .contentwrapper {
  position: absolute;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  top: calc(50% + 2px);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.slider .inview-wrapper .slide-item.background-image .contentwrapper .text {
  color: #fff;
  width: 50%;
  float: right;
  padding-left: 205px;
  padding-right: 15px;
  box-sizing: border-box;
}
.slider .inview-wrapper .slide-item.background-image .contentwrapper .text.text-left {
  float: left;
  padding-left: 15px;
  padding-right: 205px;
}
.slider .inview-wrapper .slide-item.background-image .contentwrapper .text h2 {
  font-size: 64px;
  line-height: 64px;
  color: #00c584;
  font-weight: 700;
  text-transform: uppercase;
}
.slider .inview-wrapper .slide-item.background-image .contentwrapper .text h3 {
  font-weight: 300;
  font-size: 35px;
  line-height: 35px;
  color: #fff;
  text-transform: uppercase;
}
.slider .inview-wrapper .slide-item.background-image .contentwrapper .text ul {
  color: #fff;
  padding: 20px 20px 25px 20px;
}
.slider .inview-wrapper .slide-item.background-image .contentwrapper .text .buttons a:first-child {
  margin-right: 20px;
}
.slider .slide-navigator {
  position: absolute;
  bottom: 0;
  line-height: 55px;
  width: 1140px;
  padding: 0 15px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  z-index: 3;
}
.slider .slide-navigator .scrolldown {
  float: left;
  font-size: 40px;
  cursor: pointer;
  -webkit-animation: scrollDownHover 2s infinite;
  -moz-animation: scrollDownHover 2s infinite;
  -o-animation: scrollDownHover 2s infinite;
  animation: scrollDownHover 2s infinite;
}
.slider .slide-navigator .dots {
  float: right;
  font-size: 8px;
}
.slider .slide-navigator .dots i {
  cursor: pointer;
  margin-right: 15px;
  color: #fff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.slider .slide-navigator .dots i:last-child {
  margin-right: 0;
}
.slider .slide-navigator .dots i.active {
  color: #00c584;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media all and (max-width: 1200px) {
  .slider .inview-wrapper .slide-item.background-image .contentwrapper .text {
    padding-left: 65px;
  }
  .slider .slide-navigator {
    width: 100%;
  }
}
@media all and (max-width: 1023px) {
  .slider .inview-wrapper .slide-item.image .contentwrapper {
    padding-top: 95px;
    top: auto;
    height: 100%;
    position: relative;
  }
  .slider .inview-wrapper .slide-item.image .contentwrapper .image {
    width: 100%;
    padding-right: 0;
    text-align: center;
    display: block;
    height: calc(50% - 58px);
    position: static;
  }
  .slider .inview-wrapper .slide-item.image .contentwrapper .image img {
    max-height: 100%;
    max-width: 100%;
  }
  .slider .inview-wrapper .slide-item.image .contentwrapper .content {
    width: 100%;
    text-align: center;
    position: static;
    padding: 0;
    height: 50%;
  }
  .slider .slide-navigator {
    padding: 0 20px;
  }
}
@media all and (max-width: 767px) {
  .slider .inview-wrapper .slide-item.background-image .contentwrapper .text {
    padding-left: 0;
    width: 100%;
    float: none;
    text-align: center;
  }
  .slider .inview-wrapper .slide-item.background-image .contentwrapper .text ul {
    list-style: none;
  }
  .slider .inview-wrapper .slide-item.background-image .contentwrapper .text.text-left {
    float: none;
    padding-left: 0;
    padding-right: 0px;
  }
  .slider .inview-wrapper .slide-item.background-image .overlay {
    background: #000 !important;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #000), color-stop(1, rgba(0, 0, 0, 0))) !important;
    background: -ms-linear-gradient(bottom, #000, rgba(0, 0, 0, 0)) !important;
    background: -moz-linear-gradient(center bottom, #000 0%, rgba(0, 0, 0, 0) 100%) !important;
    background: -o-linear-gradient(rgba(0, 0, 0, 0), #000) !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(0, 0, 0, 0)', endColorstr='#000', GradientType=0) !important;
    width: 100%;
    height: 90%;
    bottom: 0;
    opacity: 0.85;
  }
  .slider .inview-wrapper .slide-item.background-image .background.background_mobile {
    display: block;
  }
}
@media all and (max-width: 600px) {
  .slider .inview-wrapper .slide-item.image .contentwrapper .content h2 {
    font-size: 16px;
    line-height: 16px;
  }
  .slider .inview-wrapper .slide-item.image .contentwrapper .content h1 {
    font-size: 30px;
    line-height: 35px;
  }
  .slider .inview-wrapper .slide-item.image .contentwrapper .content h4 {
    font-size: 12px;
    line-height: 12px;
  }
  .slider .inview-wrapper .slide-item.image .contentwrapper .content .buttons .btn {
    padding: 5px 15px;
  }
}
@-webkit-keyframes scrollDownHover {
  25% {
    margin-top: 0;
  }
  50% {
    margin-top: -10px;
  }
  75% {
    margin-top: 0;
  }
}
@-moz-keyframes scrollDownHover {
  25% {
    margin-top: 0;
  }
  50% {
    margin-top: -10px;
  }
  75% {
    margin-top: 0;
  }
}
@-o-keyframes scrollDownHover {
  25% {
    margin-top: 0;
  }
  50% {
    margin-top: -10px;
  }
  75% {
    margin-top: 0;
  }
}
@keyframes scrollDownHover {
  25% {
    margin-top: 0;
  }
  50% {
    margin-top: -10px;
  }
  75% {
    margin-top: 0;
  }
}
/*
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 : 11-mei-2017, 10:49:29
    Author     : MeesVerberne
*/
.community {
  background: url(/assets/img/gd-bg.jpg);
  background-size: cover;
  color: #fff;
}
.community .contentwrapper {
  padding: 75px 100px 55px 100px;
  box-sizing: border-box;
}
.community .contentwrapper .join {
  width: 33.333%;
  display: inline-block;
  font-weight: 300;
  font-size: 25px;
  text-align: center;
}
.community .contentwrapper .join .black {
  font-weight: 700;
}
.community .contentwrapper .turning {
  width: 33.333%;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}
.community .contentwrapper .turning .image {
  max-width: 276px;
}
.community .contentwrapper .info {
  width: 33.3%;
  display: inline-block;
  font-size: 14px;
  vertical-align: middle;
}
.community .contentwrapper .info p {
  padding-left: 20px;
  padding-right: 20px;
}
.community .contentwrapper .info a:hover {
  color: #bbb;
}
.community .contentwrapper .socials {
  margin-top: 20px;
  width: 100%;
  display: inline-block;
  text-align: center;
  font-size: 20px;
}
.community .contentwrapper .socials a {
  color: #fff;
  opacity: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.community .contentwrapper .socials a i {
  margin-right: 30px;
}
.community .contentwrapper .socials a:last-child i {
  margin-right: 0;
}
.community .contentwrapper .socials a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media all and (max-width: 1023px) {
  .community .contentwrapper .join {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .community .contentwrapper .turning {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .community .contentwrapper .info {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .community .contentwrapper .socials {
    display: block;
    width: 100%;
    text-align: center;
  }
}
@media all and (max-width: 767px) {
  .community .contentwrapper {
    padding: 75px 0 55px 0;
  }
}
/*
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 : 11-mei-2017, 10:55:48
    Author     : MeesVerberne
*/
.feed {
  margin-bottom: -1px;
  background: #fff;
}
.feed .social-link {
  position: relative;
  display: inline-block;
}
.feed .social-link.small {
  width: 16.66%;
  padding-bottom: 16.66%;
}
.feed .social-link.big {
  width: 33.33%;
  padding-bottom: 33.33%;
}
.feed .social-link .feed-block {
  background: #fff;
  position: relative;
  color: #616161;
  position: absolute;
  width: 100%;
  height: 100%;
}
.feed .social-link .feed-block .overlay {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  visibility: hidden;
  background: #000;
  z-index: 2;
}
.feed .social-link .feed-block.green {
  background: url(/assets/img/gd-bg.jpg);
  background-size: cover;
  color: #fff;
}
.feed .social-link .feed-block.share {
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
}
.feed .social-link .feed-block.share .black {
  font-weight: 700;
}
.feed .social-link .feed-block.share .hashtag {
  font-size: 25px;
  display: block;
  font-weight: 700;
}
.feed .social-link .feed-block.follow {
  text-align: center;
  text-transform: uppercase;
}
.feed .social-link .feed-block.follow img {
  display: block;
  max-width: 40px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.feed .social-link .feed-block.follow .black {
  font-weight: 700;
  display: block;
}
.feed .social-link .feed-block.white {
  font-style: italic;
}
.feed .social-link .feed-block.white span {
  color: #00c584;
}
.feed .social-link .feed-block.white span.link {
  text-decoration: underline;
}
.feed .social-link .feed-block .content {
  position: absolute;
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.feed .social-link .feed-block .content.dotdotdot {
  max-height: 60%;
}
.feed .social-link .feed-block .content h3 {
  font-size: 15px;
  font-weight: 100;
  letter-spacing: -0.3px;
}
.feed .social-link .feed-block .content h2 {
  font-size: 20px;
}
.feed .social-link .feed-block.facebook::after {
  content: "\f09a";
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 18px;
  font-family: FontAwesome;
  color: #c7c8ca;
}
.feed .social-link .feed-block.twitter::after {
  content: "\f099";
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 18px;
  font-family: FontAwesome;
  color: #c7c8ca;
}
.feed .social-link .feed-block.instagram::after {
  content: "\f16d";
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 18px;
  font-family: FontAwesome;
  color: #c7c8ca;
}
.feed .social-link .feed-block.youtube::after {
  content: "\f16a";
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 18px;
  font-family: FontAwesome;
  color: #c7c8ca;
}
.feed .social-link .feed-block.linkedin::after {
  content: "\f0e1";
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 18px;
  font-family: FontAwesome;
  color: #c7c8ca;
}
.feed .social-link .feed-block:hover .overlay {
  visibility: visible;
  opacity: 0.3;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media all and (max-width: 1470px) {
  .feed .social-link .feed-block .content {
    font-size: 14px;
  }
  .feed .social-link .feed-block.follow .content {
    padding: 0;
  }
}
@media all and (max-width: 1285px) {
  .feed .social-link .feed-block .content {
    font-size: 12px;
  }
}
@media all and (max-width: 1023px) {
  .feed .social-link.small {
    width: 25%;
    padding-bottom: 25%;
  }
  .feed .social-link.big {
    width: 50%;
    padding-bottom: 50%;
  }
  .feed .social-link.hidetablet {
    display: none;
  }
  .feed .social-link .feed-block .content.dotdotdot {
    max-height: 50%;
  }
}
@media all and (max-width: 767px) {
  .feed .social-link.hidemobile {
    padding-bottom: 0 !important;
    overflow: hidden;
  }
  .feed .social-link.small {
    width: 50%;
    padding-bottom: 50%;
  }
  .feed .social-link.big {
    width: 100%;
    padding-bottom: 100%;
  }
}
@media all and (max-width: 400px) {
  .feed .social-link .feed-block .content.dotdotdot {
    max-height: 40%;
  }
  .feed .social-link .feed-block .content h2 {
    font-size: 12px;
  }
}
/*
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 : 24-mei-2017, 13:39:19
    Author     : MeesVerberne
*/
.extras {
  background: #ebebeb;
}
.extras .contentwrapper {
  padding: 30px 15px;
  box-sizing: border-box;
}
.extras .contentwrapper .block-extra {
  width: calc(50% - 15px);
  display: inline-block;
  color: #4d4d4f;
  background: #fff;
  opacity: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  box-sizing: border-box;
}
.extras .contentwrapper .block-extra:hover {
  opacity: 0.5;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.extras .contentwrapper .block-extra:first-child {
  margin-right: 15px;
}
.extras .contentwrapper .block-extra:last-child {
  margin-left: 15px;
}
.extras .contentwrapper .block-extra .title {
  font-size: 40px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}
.extras .contentwrapper .block-extra .info {
  padding: 75px 95px 0 95px;
}
.extras .contentwrapper .block-extra .info .text {
  text-align: center;
}
.extras .contentwrapper .block-extra .info .text {
  margin-bottom: 50px;
}
.extras .contentwrapper .block-extra .image {
  height: 340px;
  width: 100%;
}
@media all and (max-width: 1145px) {
  .extras .contentwrapper .block-extra .info {
    padding: 75px 45px 0 45px;
  }
}
@media all and (max-width: 830px) {
  .extras .contentwrapper .block-extra {
    width: 100%;
    margin: 0;
  }
  .extras .contentwrapper .block-extra .title {
    font-size: 27px;
  }
  .extras .contentwrapper .block-extra .info {
    padding: 45px 25px 0 25px;
  }
  .extras .contentwrapper .block-extra:first-child {
    margin-bottom: 20px;
  }
  .extras .contentwrapper .block-extra:last-child {
    margin: 0;
  }
}
/*
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 : 31-mei-2017, 16:41:09
    Author     : MeesVerberne
*/
.existing-examples {
  padding: 50px 0;
  background: #ebebeb;
}
.existing-examples .contentwrapper {
  position: relative;
}
.existing-examples .contentwrapper h2 {
  padding-left: 15px;
  line-height: 40px;
  margin-bottom: 35px;
}
.existing-examples .contentwrapper .btn.green {
  position: absolute;
  right: 15px;
  top: 0;
}
.existing-examples .contentwrapper .btn.green:hover {
  color: #00c584;
  border-color: #00c584;
}
.existing-examples .contentwrapper .prevexamples {
  top: 185px;
  font-size: 24px;
  line-height: 24px;
  position: absolute;
  left: -40px;
  cursor: pointer;
}
.existing-examples .contentwrapper .prevexamples #prevexamples {
  color: #00a068;
}
.existing-examples .contentwrapper .prevexamples #prevexamples.hidden {
  color: #4d4d4f;
}
.existing-examples .contentwrapper .nextexamples {
  top: 185px;
  font-size: 24px;
  line-height: 24px;
  position: absolute;
  right: -40px;
  cursor: pointer;
}
.existing-examples .contentwrapper .nextexamples #nextexamples {
  color: #00a068;
}
.existing-examples .contentwrapper .nextexamples #nextexamples.hidden {
  color: #4d4d4f;
}
.existing-examples .contentwrapper .examples {
  overflow: hidden;
  width: calc(100% + 14px);
  margin-left: -7px;
}
.existing-examples .contentwrapper .examples .inview-wrapper {
  position: relative;
  white-space: nowrap;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -moz-transition: all 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -o-transition: all 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: all 0.8s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.existing-examples .contentwrapper .examples .inview-wrapper .example-item {
  display: inline-block;
  vertical-align: top;
  width: 33.3333%;
  padding: 0 7px;
  box-sizing: border-box;
  white-space: normal;
}
.existing-examples .contentwrapper .examples .inview-wrapper .example-item a {
  color: #4d4d4f;
}
.existing-examples .contentwrapper .examples .inview-wrapper .example-item .image {
  width: 100%;
  height: 270px;
  background: #000;
}
.existing-examples .contentwrapper .examples .inview-wrapper .example-item .image .example-image {
  width: 100%;
  height: 100%;
}
.existing-examples .contentwrapper .examples .inview-wrapper .example-item .content {
  padding: 30px 15px 0 15px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 20px;
}
.existing-examples .contentwrapper .examples .inview-wrapper .example-item .content .info {
  font-style: italic;
  font-size: 14px;
}
@media all and (max-width: 1285px) {
  .existing-examples .contentwrapper {
    width: 100%;
  }
  .existing-examples .contentwrapper .prevexamples {
    left: 20px;
  }
  .existing-examples .contentwrapper .nextexamples {
    right: 20px;
  }
  .existing-examples .contentwrapper .examples {
    width: calc(100% - 120px);
    margin: 0 auto;
  }
}
@media all and (max-width: 1023px) {
  .existing-examples .contentwrapper .examples .inview-wrapper .example-item {
    width: 50%;
  }
}
@media all and (max-width: 767px) {
  .existing-examples {
    padding: 60px 0 80px 0;
  }
  .existing-examples .contentwrapper .pagetitle {
    text-align: center;
    padding-left: 0;
    margin-bottom: 15px;
  }
  .existing-examples .contentwrapper .prevexamples {
    left: 20px;
    bottom: -50px;
    top: auto;
  }
  .existing-examples .contentwrapper .nextexamples {
    right: 20px;
    bottom: -50px;
    top: auto;
  }
  .existing-examples .contentwrapper .examples {
    width: 100%;
    margin: 0 auto;
  }
  .existing-examples .contentwrapper .examples .inview-wrapper .example-item {
    width: 100%;
    padding: 0 20px;
  }
  .existing-examples .contentwrapper .examples .inview-wrapper .example-item .content {
    padding: 30px 60px 0 60px;
  }
}
@media all and (max-width: 500px) {
  .existing-examples .contentwrapper .pagetitle {
    font-size: 30px;
    line-height: 30px;
  }
}
/*
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 : 24-mei-2017, 11:04:16
    Author     : MeesVerberne
*/
.partners {
  background: #ebebeb;
}
.partners .contentwrapper {
  padding: 80px 110px 40px 110px;
  box-sizing: border-box;
}
.partners .contentwrapper .pagetitle {
  display: inline-block;
}
.partners .contentwrapper .btn.green {
  margin-top: 8px;
  float: right;
}
.partners .contentwrapper .btn.green:hover {
  border: 2px solid #00c584;
  color: #00c584;
}
.partners .contentwrapper .partners {
  padding-top: 90px;
}
.partners .contentwrapper .partners .partner {
  display: inline-block;
  width: 20%;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 40px;
}
.partners .contentwrapper .bottombtn {
  display: none;
}
.partners .contentwrapper .bottombtn.change {
  float: none;
}
.partners .moreinfo {
  background: #fff;
  position: relative;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}
.partners .moreinfo.active {
  max-height: 100%;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}
.partners .moreinfo .close-more {
  position: relative;
  width: 100%;
  width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: border-box;
}
.partners .moreinfo .close-more img {
  position: absolute;
  right: 15px;
  top: 30px;
  cursor: pointer;
}
.partners .moreinfo .inview-wrapper {
  width: 100%;
}
.partners .moreinfo .inview-wrapper .container {
  width: 1140px;
  margin: 0 auto;
  padding: 100px 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.partners .moreinfo .inview-wrapper .container .fa-check {
  color: #00c584;
  font-size: 20px;
}
.partners .moreinfo .inview-wrapper .container .fa-times {
  color: #ee1b24;
  font-size: 20px;
}
.partners .moreinfo .inview-wrapper .container .table {
  width: 100%;
  border-collapse: collapse;
}
.partners .moreinfo .inview-wrapper .container .table tr:last-child td {
  border-bottom: 0;
}
.partners .moreinfo .inview-wrapper .container .table tr:first-child td {
  border-top: 0;
  border-right: 0;
  border-bottom: 3px solid #7d7d7d;
  border-left: 0;
}
.partners .moreinfo .inview-wrapper .container .table tr:first-child td:nth-child(2) {
  border-left: 0;
}
.partners .moreinfo .inview-wrapper .container .table tr:first-child td .table th:nth-child(1) {
  border-left: 0;
  border-right: 3px solid #7d7d7d;
  width: 30%;
}
.partners .moreinfo .inview-wrapper .container .table tr:first-child td .table td,
.partners .moreinfo .inview-wrapper .container .table tr:first-child td .table th {
  width: 15%;
  padding: 10px 0;
  text-transform: uppercase;
  text-align: center;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.partners .moreinfo .inview-wrapper .container .table tr:first-child td .table td:last-child,
.partners .moreinfo .inview-wrapper .container .table tr:first-child td .table th:last-child {
  border-right: 0;
}
.partners .moreinfo .inview-wrapper .container .table tr td {
  border: 1px solid #cccccc;
  border-bottom: 2px solid #7d7d7d;
}
.partners .moreinfo .inview-wrapper .container .table tr td:first-child {
  border-right: 0;
  border-left: 0;
  width: 20%;
  text-align: center;
}
.partners .moreinfo .inview-wrapper .container .table tr td:nth-child(2) {
  border-left: 0;
  border-right: 0;
}
.partners .moreinfo .inview-wrapper .container .table tr td .table tr td {
  padding: 15px 0;
  text-align: center;
  border-top: 0;
  width: 15%;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 0;
}
.partners .moreinfo .inview-wrapper .container .table tr td .table tr td:first-child {
  border-right: 3px solid #7d7d7d;
  text-align: left;
  width: 30%;
}
.partners .moreinfo .inview-wrapper .container .table tr td .table tr td:last-child {
  border-right: 0;
}
.partners .moreinfo .inview-wrapper .container .table tr td .table tr:last-child td {
  border-bottom: 0;
}
.partners .moreinfo .inview-wrapper .container .table .empty {
  width: 20%;
}
@media all and (max-width: 1180px) {
  .partners .moreinfo .close-more {
    width: 100%;
  }
  .partners .moreinfo .inview-wrapper .container {
    width: 100%;
    min-width: 560px;
  }
}
@media all and (max-width: 1023px) {
  .partners .contentwrapper {
    padding: 50px 20px;
  }
  .partners .moreinfo .inview-wrapper .container {
    padding: 100px 20px;
  }
}
@media all and (max-width: 660px) {
  .partners .contentwrapper .topbtn {
    display: none;
  }
  .partners .contentwrapper .partners {
    padding-top: 30px;
  }
  .partners .contentwrapper .partners .partner {
    width: 50%;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .partners .contentwrapper .partners .partner img {
    max-width: 100%;
  }
  .partners .contentwrapper .bottombtn {
    display: inline-block;
  }
  .partners .contentwrapper .bottombtn.greenoutline {
    margin-left: 0px;
    border-color: #00c584;
    background: transparent;
    color: #00c584;
  }
  .partners .contentwrapper .bottombtn.greenoutline:hover {
    background: #00c584;
    color: #fff;
  }
  .partners .contentwrapper .bottombtn.green {
    margin-right: 0px;
    margin-top: 0;
  }
  .partners .moreinfo .inview-wrapper {
    overflow: scroll;
  }
}
@media all and (max-width: 475px) {
  .partners .contentwrapper {
    padding-bottom: 80px;
  }
  .partners .contentwrapper .bottombtn {
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
  }
  .partners .contentwrapper .bottombtn.greenoutline {
    margin-left: 0;
    margin-bottom: 20px;
  }
  .partners .contentwrapper .bottombtn.green {
    margin-right: 0;
  }
}
/*# sourceMappingURL=textpage.css.map */