@keyframes scaledown {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes scaledown {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes ScaleUp {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes ScaleUp {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        -o-transform: translateY(-100px);
        transform: translateY(-100px);
        opacity: 0
    }
    75% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 1
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        -o-transform: translateY(-100px);
        transform: translateY(-100px);
        opacity: 0
    }
    75% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
        transform: translateY(100px);
        opacity: 0
    }
    75% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 1
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
        transform: translateY(100px);
        opacity: 0
    }
    75% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100px);
        -ms-transform: translateX(100px);
        -o-transform: translateX(100px);
        transform: translateX(100px);
        opacity: 0
    }
    75% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 1
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100px);
        -ms-transform: translateX(100px);
        -o-transform: translateX(100px);
        transform: translateX(100px);
        opacity: 0
    }
    75% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
        -o-transform: translateX(-100px);
        transform: translateX(-100px);
        opacity: 0
    }
    75% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 1
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
        -o-transform: translateX(-100px);
        transform: translateX(-100px);
        opacity: 0
    }
    75% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        opacity: 1
    }
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

body {
    background-color: #E6E6E6;
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	 line-height: 16px;
	 */
    color: black;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    width: 100%;
    min-width: 0
}

html,
body {
    height: 100%
}

.hide {
    display: none
}

.hide.active,
.show,
.active,
.current {
    display: block
}

textarea,
input {
    outline: none;
    -webkit-appearance: none
}

ul {
    margin: 0px;
    padding-left: 20px;
    margin: 20px 0px
}

ul li {
    font-size: 18px;
    /* font-size:12px;
    line-height:14px;
	*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ff7900;
    font-family: "Titillium Web", sans-serif;
    font-weight: 700;
    text-rendering: optimizeLegibility
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #ff7900
}

h2 {
    font-size: 38px;
    font-size: 2.375em;
    color: #333;
    font-weight: 400;
    line-height: 48px;
    margin-bottom: 20px
}

h3 {
    font-size: 26px;
    font-size: 1.625em;
    font-weight: 400;
    line-height: 28px
}

h4 {
    font-size: 22px;
    font-size: 1.375em;
    line-height: 30px;
    color: #333;
    font-weight: 400
}

p {
    font-family: "Titillium Web", sans-serif;
    font-size: 18px;
    line-height: 28px;
    /*    font-family: Verdana, Geneva, sans-serif;
	 font-size: 12px;
	 line-height: 16px;
	 */
    font-weight: 400;
}

a {
    outline: 0;
    color: #ff7900;
    text-decoration: none;
    line-height: inherit
}

a:hover {
    color: #e66d00
}

em {
    font-style: italic;
    line-height: inherit
}

strong {
    font-weight: 400;
    line-height: inherit;
    color: #333
}

small {
    font-size: 56.4%;
    line-height: inherit
}

hr {
    clear: both;
    height: 0;
    border: 1px solid #efefef
}

abbr,
acronym {
    border-bottom: 1px solid #efefef;
    color: #efefef;
    text-transform: uppercase;
    font-size: 90%;
    cursor: help
}

abbr {
    text-transform: none
}

ol li {
    font-size: 18px;
    margin-bottom: 10px
}

@media print {
    * {
        background: transparent !important;
        color: black !important;
        text-shadow: none !important;
        -ms-filter: none !important;
        filter: none !important
    }
    p a {
        color: #000 !important;
        text-decoration: underline
    }
    p a:visited {
        color: #ff7900 !important;
        text-decoration: underline
    }
    p a[href]:after {
        content: " (" attr(href) ")"
    }
    abbr[title]:after {
        content: " (" attr(title) ")"
    }
    a[href^='javascript:']:after,
    a[href^='#']:after {
        content: ''
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid
    }
    thead {
        display: table-header-group
    }
    tr,
    img {
        page-break-inside: avoid
    }
    @page {
        margin: .5cm
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3
    }
    h2,
    h3 {
        page-break-after: avoid
    }
}

.bx-wrapper {
    position: relative;
    margin: 0 auto 60px;
    padding: 0;
    *zoom: 1;
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.bx-wrapper img {
    max-width: 100%;
    display: block
}

.bxslider {
    margin: 0;
    padding: 0
}

ul.bxslider {
    list-style: none
}

.bx-viewport {
    -webkit-transform: translatez(0)
}

.bx-wrapper {
    -webkit-box-shadow: 0 0 5px #ccc;
    box-shadow: 0 0 5px #ccc;
    border: 5px solid #fff;
    background: #fff
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom: -30px;
    width: 100%
}

.bx-wrapper .bx-loading {
    min-height: 50px;
    background: (images/bx_loader.gif) center center no-repeat #fff;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2000
}

.bx-wrapper .bx-pager {
    text-align: center;
    font-size: .85em;
    font-family: Arial;
    font-weight: bold;
    color: #666;
    padding-top: 20px
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: #666;
    text-indent: -9999px;
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    outline: 0;
    border-radius: 5px
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active,
.bx-wrapper .bx-pager.bx-default-pager a:focus {
    background: #000
}

.bx-wrapper .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
    display: inline-block;
    *zoom: 1;
    *display: inline
}

.bx-wrapper .bx-pager-item {
    font-size: 0;
    line-height: 0
}

.bx-wrapper .bx-prev {
    left: 10px;
    background: url(images/controls.png) no-repeat 0 -32px
}

.bx-wrapper .bx-prev:hover,
.bx-wrapper .bx-prev:focus {
    background-position: 0 0
}

.bx-wrapper .bx-next {
    right: 10px;
    background: url(images/controls.png) no-repeat -43px -32px
}

.bx-wrapper .bx-next:hover,
.bx-wrapper .bx-next:focus {
    background-position: -43px 0
}

.bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    margin-top: -16px;
    outline: 0;
    width: 32px;
    height: 32px;
    text-indent: -9999px;
    z-index: 9999
}

.bx-wrapper .bx-controls-direction a.disabled {
    display: none
}

.bx-wrapper .bx-controls-auto {
    text-align: center
}

.bx-wrapper .bx-controls-auto .bx-start {
    display: block;
    text-indent: -9999px;
    width: 10px;
    height: 11px;
    outline: 0;
    background: url(images/controls.png) -86px -11px no-repeat;
    margin: 0 3px
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:focus {
    background-position: -86px 0
}

.bx-wrapper .bx-controls-auto .bx-stop {
    display: block;
    text-indent: -9999px;
    width: 9px;
    height: 11px;
    outline: 0;
    background: url(images/controls.png) -86px -44px no-repeat;
    margin: 0 3px
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:focus {
    background-position: -86px -33px
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
    text-align: left;
    width: 80%
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
    right: 0;
    width: 35px
}

.bx-wrapper .bx-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #666;
    background: rgba(80, 80, 80, 0.75);
    width: 100%
}

.bx-wrapper .bx-caption span {
    color: #fff;
    font-family: Arial;
    display: block;
    font-size: .85em;
    padding: 10px
}

header {
    margin-top: 20px;
    margin-bottom: 0px;
}

.main-image {
    position: relative
}

.main-image figcaption {
    color: #fff;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-weight: bold
}

.header-logo {
    margin: 0 auto;
	margin-top:20px;
    margin-bottom: 0px;
    
    
    
}

input[type=text],
input[type=email],
input[type=password],
input[type=search],
textarea,
textarea.form-control {
    padding: 1px 18px 0;
    width: 100%;
    height: 49px;
    border: 0;
    border-radius: 3px;
    background-color: #f5f5f5;
    box-shadow: none !important;
    color: #333;
    font-family: 'Titillium Web', sans-serif;
    font-size: 18px;
    -webkit-font-smoothing: antialiased
}

table {
    width: 100%
}

table tr td {
    padding: 10px;
    border: 1px #efefef solid
}

#content table tr td{
	font-size: 18px;
}


nav[role='navigation'] {
    float: left;
    width: 100%;
    background: #fff
}

nav[role='navigation'] ul.main-nav {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    margin: 0;
    padding-left: 0;
    height: 0
}

nav[role='navigation'] ul.main-nav.active {
    height: 457px
}

nav[role='navigation'] ul.main-nav li {
    border-top: 1px #efefef solid;
    list-style: none
}

nav[role='navigation'] ul.main-nav li:first-child {
    border-top: 0
}

nav[role='navigation'] ul.main-nav li a {
    display: block;
    padding-left: 15px;
    width: 100%;
    height: 50px;
    color: #333;
    line-height: 50px;
}


nav[role='navigation'] ul.main-nav li ul.dropdown {
    margin: 0;
    padding-left: 0
}

nav[role='navigation'] ul.main-nav li ul.dropdown li {
    border-color: #d8d8d8
}

nav[role='navigation'] ul.main-nav li ul.dropdown li a {
    background: #efefef;
    text-align: left;
}
nav[role='navigation'] ul.main-nav li ul.dropdown li a:hover {
    color:#ff7900;
}
	

.toggle {
    float: right;
    margin: 5px 20px 0 0
}

.toggle i {
    color: #ff7900;
    font-size: 36px
}

.button {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 10px 20px;
    color: #4a4a4d;
    text-align: center
}

.button.white {
    background-color: #fff
}

.button.orange {
    background-color: #ff7900;
    color: #fff
}

.button.orange:hover {
    color: #fff
}

.button:hover {
    color: #ff7900;
    text-decoration: none
}

.nopadding {
    padding: 0
}

.bgOrange {
    background: #ff7900
}

.banner .content {
    padding: 10px 30px 30px 30px
}

.banner .content h2 {
    font-size: 26px;
    font-size: 1.625em;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
    line-height: 28px
}

.banner .content p {
    font-size: 18px;
    font-size: 1.125em;
    color: #fff;
    line-height: 26px
}

.banner .content .button {
    display: inline-block;
    margin-top: 8px
}

#content .container {
    background: #fff
}

#content article {
    margin: 40px 0 30px 0;
    padding: 0 15px
}

#content article .button {
    display: inline-block;
    margin-top: 20px
}

#content ul.news {
    margin: 0;
    padding-left: 0
}

#content ul.news li {
    list-style: none
}

#content ul.news li a {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: block;
    padding: 30px;
    padding-top: 10px!important;
    padding-bottom: 10px!important;

    height: 450px;
    background-color: #fafafa;
    color: #454545;
    text-align: center
}

#content ul.news li a i {
    position: absolute;
    top: 0;
    left: 50%;
    margin-top: 40px;
    margin-left: -38px;
    width: 76px;
    font-size: 66px
}

/* #content ul.news li:nth-child(2) a {
    background-color: #f2f2f2
} */

body.home #content ul.news li a.bgclr {
    background-color: #f2f2f2
}
body.home #content ul.news li:hover a.bgclr {
    background-color: #ff7900;
    color: #fff;
    text-decoration: none

}

#content ul.news li:hover a {
    background-color: #ff7900;
    color: #fff;
    text-decoration: none
}

#content ul.news li:hover a h3 {
    color: #fff
}

.faq-group .panel {
    position: relative;
    margin-bottom: 0 !important;
    padding: 60px 0 37px
}

.panel-body {
    padding: 0
}

ul.logos {
    margin-top: 50px
}

ul.logos li {
    margin-bottom: 20px;
    list-style: none
}

#example_wrapper {
    margin-top: 40px
}

#example_filter {
    float: right;
    margin-bottom: 20px
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    background: #ff7900;
    border-color: #ff7900
}

.pagination>li>a,
.pagination>li>span {
    color: #333
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    color: #ff7900
}

.pagination {
    float: right
}

nav[role="navigation"] ul.main-nav li.current>a {
    border-bottom: 2px #ff7900 solid;
    color: #ff7900;
    line-height: 48px
}

nav[role="navigation"] ul.main-nav ul.dropdown a {
    margin-left: 0px
}

@media (max-width: 480px) {
    nav[role="navigation"] ul.main-nav li ul.dropdown {
        margin-left: 0px
    }
    .header-logo {
       width:300px;
    }
}

@media (min-width: 768px) {
    .logo {
        margin-left: 0;
        width: 280px
    }
    .toggle {
        margin-right: 0
    }
    header {
		/*         margin-top: 40px */
		margin-top: 10px;
    }
     .header-logo {
       width:500px;
    }
}

@media (min-width: 992px) {
    .toggle {
        display: none
    }
    #content article {
        padding: 0
    }
    nav[role='navigation'] {
        margin-top: 17px;
        width: auto;
        background: transparent
    }
    nav[role='navigation'] ul.main-nav {
        height: auto
    }
    nav[role='navigation'] ul.main-nav.active {
        height: auto
    }
    nav[role='navigation'] ul.main-nav li {
        float: left;
        border: 0
    }
    nav[role='navigation'] ul.main-nav li a {
        font-size: 14px;
        font-size: 0.875em;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        position: relative;
        padding-left: 0;
        width: auto;
        height: auto
    }
    nav[role='navigation'] ul.main-nav li a:hover {
        color: #ff7900;
        text-decoration: none
    }
    nav[role='navigation'] ul.main-nav li a i {
        font-size: 14px
    }
    nav[role='navigation'] ul.main-nav li:hover ul.dropdown {
        display: block
    }
    nav[role='navigation'] ul.main-nav li ul.dropdown {
        position: absolute;
        z-index: 999;
        display: none;
        background: #333
    }
    nav[role='navigation'] ul.main-nav li ul.dropdown li {
        float: none;
        border-top: 1px #616161 solid
    }
    nav[role='navigation'] ul.main-nav li ul.dropdown li:first-child {
        border-top: 0
    }
    nav[role='navigation'] ul.main-nav li ul.dropdown li a {
        padding: 0 20px 0 20px;
        background: #333;
        color: #fff
    }
    nav[role="navigation"] ul.main-nav li ul.dropdown {
/*         margin-left: 20px */
margin-left: none;
    }
    body.page-id-16 nav[role='navigation'] ul.main-nav li a.page-id-16 {
        border-top: 2px #ff7900 solid;
        color: #ff7900;
        line-height: 48px
    }
    body.home nav[role='navigation'] ul.main-nav li a.home {
        border-top: 2px #ff7900 solid;
        color: #ff7900;
        line-height: 48px
    }
    body.page-id-18 nav[role='navigation'] ul.main-nav li a.page-id-18 {
        border-top: 2px #ff7900 solid;
        color: #ff7900;
        line-height: 48px
    }
    body.page-id-20 nav[role='navigation'] ul.main-nav li a.page-id-18 {
        border-top: 2px #ff7900 solid;
        color: #ff7900;
        line-height: 48px
    }
    body.page-id-26 nav[role='navigation'] ul.main-nav li a.page-id-26 {
        border-top: 2px #ff7900 solid;
        color: #ff7900;
        line-height: 48px
    }
    body.page-id-28 nav[role='navigation'] ul.main-nav li a.page-id-28 {
        border-top: 2px #ff7900 solid;
        color: #ff7900;
        line-height: 48px
    }
    body.page-id-30 nav[role='navigation'] ul.main-nav li a.page-id-30 {
        border-top: 2px #ff7900 solid;
        color: #ff7900;
        line-height: 48px
    }
    body.page-id-32 nav[role='navigation'] ul.main-nav li a.page-id-32 {
        border-top: 2px #ff7900 solid;
        color: #ff7900;
        line-height: 48px
    }
    body.page-id-213 nav[role='navigation'] ul.main-nav li a.page-id-213 {
        border-top: 2px #ff7900 solid;
        color: #ff7900;
        line-height: 48px
    }
}

@media (min-width: 1200px) {
    .logo {
        width: auto
    }
}

body {
    color: #454545;
}

body p {}

body.home #content ul.news li a {
    padding-top: 20px;
/*     height: 350px; */
height: 240px;
}

#content ul.news li {
    overflow: hidden;
}

.footer-fix {
    padding: 20px 0 70px 0;
}

.global-footer .bgOrange strong {
    font-weight: 700;
    color: #454545;
    font-size: 18px;
}

.global-footer .bgOrange p {
    font-size: 18px;
}

#content ul.news li a {
    color: #454545;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.clearfix {
    display: inline-block;
}

/* start commented backslash hack \*/

* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

/* close commented backslash hack */

.floatLeft {
    float: left;
}

.floatRight {
    float: right;
}

nav[role="navigation"] ul.main-nav li.current li.current>a {
    border-top: 0px;
}

.fixed {
    position: fixed;
    top: 0;
    z-index: 999;
}

header.fixed {
    margin-top: 0px;
    background-color: #E6E6E6;
    width: 100%;
}

header.fixed .header-logo {
   display: none;
}

header.fixed nav[role='navigation']{
	margin-top: 0px;
}

header.fixed .container {
    margin: 0 auto;
    margin-top: 0;
}

.mobileVraag {
    position: fixed;
    z-index: 100;
    bottom: 0;
    width: 100%;
    background-color: white;
    border: 1px solid #ff7900;
    color: #ff7900;
}

.mobileVraag a {
    color: #ff7900;
    padding 10px 10px;
    display: block;
    font-weight: bold;
    font-size: 22px;
}

.mobileVraag a:hover {
    color: #ff7900;
}

.mobileVraag a i {
    margin-right: 10px;
}

body.page-id-920 form div.clearfix {
    margin-bottom: 15px;
}

.vraag-wrapper {
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    width: 100%;
}

.vraag-block-holder {
    float: right;
    display: block;
    border: 1px solid #ff7900;
    padding: 10px 20px;
    font-weight: bold;
    color: #ff7900;
    display: block;
    width: 200px;
    margin-right: 20px;
    font-weight: bold;
    background-color: white;
    font-size: 20px;
}

.vraag-block-holder a {
    color: #ff7900;
}

.vraag-block-holder a:hover {
    color: #ff7900;
}

.vraag-block-holder i {
    font-size: 26px;
    margin-right: 15px;
}

.vraag-block-holder span {
    margin-top: -3px;
    display: inline-table;
}

.vraag-form input {
    display: block;
    margin-top: 10px;
    margin-bottom: 20px;
}

.vraag-form input[type=submit] {
    border: none;
    padding: 5px 30px;
}

.vraag-form form div {
    margin-bottom: 10px;
}

/*
@media only screen and (max-width : 600px) {
 	.vraag-wrapper{
	 	display: none;
 	}
    }	
*/

body textarea {
    height: 150px;
}

nav[role='navigation'] ul.main-nav li a {
    font-size: 18px;
}

#searchToggle i {
    font-size: 18px;
    color: #ff7900;
}

#searchToggle.active i {
    color: #ff7900;
}

.searchForm {
    background-color: #ff7900;
    padding: 30px 20px;
/*     margin-top: 20px; */
    display: none;
}

.searchForm .button {
    background-color: white;
    border: none;
    width: 100%;
    color: #454545;
    height: 49px;
}

.searchForm .button:hover {
    color: #454545;
}

.banner .content.home-wit p {
    font-size: 24px;
    line-height: 32px;
}

.home-fotoholder {
    width: 100%;
    height: 470px;
    display: block;
    background: url('../img/header_image-001.jpg') transparent center center no-repeat;
    background-size: cover;
}

@media only screen and (min-width: 1200px) {
    .home-fotoholder {
        height: 400px
    }
}

.main-nav {
    display: flex;
    justify-content: space-between;
}

.main-nav li {
/*     flex: 1; */
    text-align: center;
}

nav[role='navigation'] {
    width: 100%;
}

@media (max-width: 992px) {
    .main-nav {
        display: block;
    }
    .main-nav li {
        text-align: block;
    }

    nav[role='navigation'] ul.main-nav.active {
        height: auto;
    }

}


@media only screen and (min-width: 700px) {
	article img.alignright { float: right; margin: 0 0 1em 1em; }
	article img.alignleft { float: left; margin: 0 1em 1em 0; }
	article img.aligncenter { display: block; margin-left: auto; margin-right: auto; }
	article .alignright { float: right; }
	article .alignleft { float: left; }
	article .aligncenter { display: block; margin-left: auto; margin-right: auto; }
}
@media only screen and (max-width: 700px) {
    article img{
        max-width: 100%;
    }
}

