html {
    position: relative;
    width: 100%;
    height: 100%;
}

body {
    background:#fff;
    float:left;
    font-family: MyriadPro;
}
#wrapper{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

#pageContainer {
    position: relative;
    padding: 0;
    min-height: 100%;
    margin-top:-250px;/*SAME AS FOOTER*/
    padding-top:250px;/*SAME AS FOOTER*/
}

@font-face { font-family: MyriadPro; src: url(../fonts/MyriadPro-Regular.otf);}

/********************************/
/**************Divs**************/
/********************************/
header{
    float:left;
    width:100%;
}

header > .container{
    position: relative;
}

#headerTop{
    width:100%;
    background: rgba(255,255,255,0.85);
    position: absolute;
    top:0;
    left:0;
    padding:20px;
}

#contanctInformation,
#languageSelector{
    width:100%;
    text-align:right;    
}

#contactInformation {
    padding-right: 10px;
}

#languageSelector {
    max-width: 100px;
    float: right;
}

.container{
    max-width:1400px;
    width:100%;
}

#hero,
#content{
    float:left;
    width:100%;
}

#contentInner{
    float:left;
    width: 100%;
    padding:50px 15px;
}

#quote{
    float: left;
    width: 100%;
    background: #f8f8f8;
    padding:50px 0;
}

#dividerBlock{
    float:left;
    width:100%;
    height:50px;
    background:#c61904;
    text-align: center;
}

#dividerBlock img{
    content:'';
    width:75px;
    height: 75px;
    margin-top:-37.5px;
    display: inline-block;
    background-image: url(../images/footerCircle.png);
    background-size:100% auto;    
}

#maps{
    float:left;
    width: 100%;
    position: relative;
}

#referenties{
    float:left;
    width:100%;
    padding:30px 0;
}

.referentieItem{
    float:left;
    width:100%;
    padding:50px 25px;
}

#referenties .referentieItem:nth-child(2n){
    background:rgba(0,128,136,0.1);
}

.referentieItem:nth-child(2n) .referentieLogo{
    float:right;
}

.sidebarItem{
    background:#c61904;
    float:left;
    width:100%;
    padding:15px;
}

footer {
    position: relative;
    float:left;
    bottom: 0;
    width: 100%;
    height: 250px;;
    padding-top:25px;
    width:100%;
    background:#000000;
}

.hideme {
    opacity: 0;
}

.news_item {
    position: relative;
    float: left;
    width: 100%;
}

/********************************/
/**************Menu**************/
/********************************/
.navbar-header{
    float:left;
    width:100%;
    background:#c61904;
    margin:0!important;
}
button.navbar-toggle{
    background:#b6cd32;
    margin: 10px 15px;
}

span.icon-bar{
    background:#c61904;
}

#menu{
    float:left;
    background:#c61904;
    width:100%;
    padding: 20px 15px;
}

#menu nav ul{
    float:left;
    padding:0;
    margin:0;
    list-style:none;
}

#menu nav ul li{
    position: relative;
    float:left;
    margin-right:55px;
    height: 30px;
}
#menu nav ul li a{
    float:left;
    color:#fff;
    font-size:20px;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

#menu nav ul li.current a,
#menu nav ul li a:hover{
    color: #000;
    text-decoration: none;
}

#menu nav ul li ul.sub-menu {
    left: -10px;
    list-style: none;
    position: absolute;
    float: left;
    display: none;
    padding:0;
    top:30px;
    width: 300px;
    box-sizing: border-box;
    background: #c61904;
    z-index: 10000;
}

#menu nav ul li:hover ul.sub-menu { 
    display: block;
}

ul.sub-menu li{
    float:left;
    margin: 3px 0;
    padding: 10px 10px;
    width:100%;
}

ul.sub-menu li a{
    text-align:left; 
    font-size:11px;
    font-style: italic;
    line-height:16px;
    text-transform: none !important;
}

#menu nav ul li ul.sub-sub-menu {
    left: 300px;
    list-style: none;
    position: absolute;
    float: right;
    display: none;
    padding:0;
    top:0px;
    width: 300px;
    box-sizing: border-box;
    background: #e44d3b;
    z-index: 10000;
}

#menu nav ul li ul.sub-menu li:hover ul.sub-sub-menu { 
    display: block;
}

ul.sub-sub-menu li{
    float:right;
    margin: 3px 0;
    padding: 10px 10px;
    width:100%;
}

ul.sub-sub-menu li a{
    text-align:left; 
    font-size:11px;
    font-style: italic;
    line-height:16px;
    text-transform: none !important;
}

/********************************/
/**************Heads*************/
/********************************/
h1{
    font-size:30px;
    color:#c61904;
    font-weight: bold;
    margin:0;
}

h2{
    font-size: 30px;
    color:#c61904;
    margin: 30px 0 0 0;
    font-weight:bold;
}

h1 + h2{
    margin-bottom: 15px;
}

footer h3{
    color:#fff;
    font-size: 22px;
    font-weight: bold;
    margin-top:0;
}

.sidebarItem > h2{
    font-size:19px;
    margin-bottom:15px;
}
/********************************/
/**************Images************/
/********************************/
a.logo img{
    max-width:100%;
}

#hero img{
    width: 100%;
}

.nieuwsImage img{
    float:left;
    width:100%;
    border:3px solid #b6cd32;
}

.referentieLogo img{
    min-width: 75%;
    max-width: 100%;
}

#maps > img{
    position: absolute;
    top:0;
    left:0;
    width:100%;
}

#slider img {
    max-width: 100%;
}

/********************************/
/************Paragraphs**********/
/********************************/
p,#content ul li{
    font-size:17px;
    line-height:25px;
    color:#555555;
}

footer p{
    color:#fff;
}

blockquote{
    padding: 0;
    border: none;
}

blockquote p{
    font-size:27px;
    line-height: 30px;
    color:#7c7c7c;
    text-align: center;
}

.referentieText p{
    margin: 0;
}

blockquote p.personQuote{
    font-size:17px;
    line-height: 25px;
    color:#1a737a;
    text-align: right;
}

.iconsBefore p{
    padding-left:25px;
}

.sidebarItem p,
.sidebarItem a{
    color:#fff;    
}

span.fa-envelope:before,
span.fa-phone:before,
span.fa-pin:before{
    content: "\f003";
    width:25px;
    font-family: FontAwesome;
    display: inline-block;
    margin-left:-25px;
}

span.fa-phone:before{
    content:"\f095";
}

span.fa-pin:before{
    content:"\f041";
}

#headerInfoRight p,
#headerInfoRight a{
    color:#000000;
}

#headerInfoRight i{
    color:#c61904;
}

#headerInfoRight #contactInformation p{
    float:left;
    width:auto;
}

#headerInfoRight span.spaceBetween{
    float:left;
    height:1px;
    width:30px;
}
/********************************/
/**************Links*************/
/********************************/
#languageSelector a{
    margin-left:10px;
    text-decoration: none;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

#languageSelector a img{
    max-width: 20px;
}

#languageSelector a:hover{
    opacity: 0.3;
}

a.button {
    float: left;
    margin: 10px 0 20px 0;
    width: auto !important;
    min-width: auto !important;
    padding: 10px;
    font-size:17px;
    line-height:25px;
    color: #ffffff;
    border-radius: 10px;
    background: #b6cd32;
}

a.button:hover {
    text-decoration: none;
    background: #c61904;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

/********************************/
/**************Lists*************/
/********************************/
footer ul{
    padding:0;
    list-style: none;
}

footer ul li a,
footer a{
    font-size:17px;
    line-height:25px;
    color:#fff;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

footer ul li a:hover,
footer a:hover{
    color:#c61904;
}

footer ul.sub-menu {
    display: none;
}

#nieuwsBlock{
    list-style: none;
}

#nieuwsBlock li,
#nieuwsBlock li a{
    float:left;
    width:100%;    
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

#nieuwsBlock li a{
    padding:15px;
    border-bottom:1px solid #fff;
}

#nieuwsBlock li:last-child a{
    border-bottom: none;
}

#nieuwsBlock li a:hover{
    background:rgba(255,255,255,0.15);
}

ul#nieuwsBlock .nieuwsItem p.nieuwsDate{
    font-size:14px;
    line-height: 25px;
    font-style: italic;
    color:rgba(255,255,255,0.5);
    
}

ul#nieuwsBlock .nieuwsItem p{
    color:#fff;
    margin:0;
}

/* FORMS */
input[type="text"],textarea {
    margin: 10px;
    width: 100%;
}

textarea {
    height: 100px;
}

input.cfield {
    display: none;
}

input[type="submit"] {
    margin: 10px;
    padding: 5px 20px;
    color: #ffffff;
    border: 0;
    background: #c61904;
}

/********************************/
/********Mobiel portret**********/
/********************************/
@media only screen and (max-width: 479px) {
}


/********************************/
/******Mobiel landscape + portret*********/
/********************************/
@media only screen and (max-width : 767px) {
    #pageContainer {margin-top:0; padding-top:0;}
    footer{position: relative; height:auto;}
    
    #headerTop{position: relative;padding:15px 0;}
    #headerInfoRight #contactInformation p{font-size:13px; margin:0; text-align: right; float:right;}
    #headerInfoRight span.spaceBetween{width:0px;}
    #languageSelector { float: left !important; margin-top: -25px; text-align: left; max-width: 100px; }
    #languageSelector a img{ max-width: 15px; margin-bottom:5px;}
        
    #menu{padding:0;}
    #menu nav ul{float:left; width:100%;}
    #menu nav ul li{float:left; width:100%;}
    #menu nav ul li a{float:left; width:100%; text-align: center; padding:3px 0;}
    
    #contentInner{padding:30px 0;}
    h1{font-size:21px;}
    h2{font-size:19px;}
    
    #quote{padding:30px 0;}
    blockquote p{font-size:19px; line-height:26px; margin-bottom: 0;}
    
    footer{text-align: center;}
    .footerItem{margin-bottom:25px;}
    
    .referentieItem{padding:15px 0;}
    .referentieLogo{margin-bottom:10px;}
    
    #headerInfoRight i{display: none;}
    
}


/********************************/
/************Tablet**************/
/********************************/
@media only screen and (min-width : 768px) and (max-width : 991px) {
    #menu nav ul li{margin-right:25px;}
}

/********************************/
/********Tablet Landscape********/
/********************************/
@media only screen and (min-width : 992px) and (max-width : 1050px) {  
    #menu nav ul li{margin-right:50px;}
}


@media only screen and (min-width : 992px) and (max-width : 1199px) {
}

@media only screen and (min-width : 992px){
}