html {
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 14px;
}

body {
    height: 100%;
    background: #fff;
    float: left;
    font-family: 'Open Sans', sans-serif;
}

#wrapper{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

#pageContainer {
    position: relative;
    padding: 0;
    min-height: 100%;
    margin-top:-150px;
    padding-top:150px;
    padding-bottom: 0;
    overflow-x: hidden;
    box-sizing: content-box;
}

header{
    position: relative;
    width: 100%;
    background-color: #fff;
    z-index: 10;
}

footer{
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 20px 0;
    background-color: #006db1;
    color: #fff;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer ul li ul {
    display: none;
}

/********************************/
/**************Divs**************/
/********************************/

#logo{
    margin: 10px 0;
    height: 110px;
}

.bar-orange{
    margin: 35px 0 45px;
    padding: 15px 0;
    background-color: #957e30;
    color: #fff;
    text-align: center;
}

.bar-orange h1{
    margin-top: 10px;
}

.bar-orange p{
    font-size: 1.15rem;
}

.bar-orange svg{
    margin: 0 5px 0 15px;
}

.calculator{
    margin-top: 30px;
    box-shadow: 0 0 8px #bbb;
}

.calculator input, .calculator textarea{
    margin: 15px 0;
    width: 100%;
    padding: 11px 15px;
    background-color: #f8f8f8;
    border: none;
    font-size: 1.1rem;
}

.calculator button{
    float: right;
    margin: 15px 0;
    width: 100px;
    padding: 11px 15px;
    background-color: #273474;
    color: #fff;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    transition: all 0.15s;
}

.calculator button svg{
    float: right;
    font-size: 1.6rem;
}

.calculator p{
    margin: 10px 0 15px 0;
}

footer h1{
    margin: 10px 0 12px;
}

footer .social{
    position: relative;
    top: 0;
    margin: 4px 3px 3px 0;
    transition: all 0.26s;
}

footer ul p{
    display: none;
}

/********************************/
/**********Other Pages***********/
/********************************/

.contact-orange, contact-orange2 {
    position: relative;
    margin: 0 0 0;
    padding: 15px;
    color: #fff;
    background-color: #957e30;
}

.contact-orange a, .contact-orange2 a{
    line-height: 25px;
}

.contact-orange svg, .contact-orange svg{
    margin-right: 8px;
}

.contact-orange2 {
    padding: 30px;
    height: 195px;
    background-color: #957e30;
}

.contact-orange div{
    /*
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 700px;
    background-color: #957e30;
    z-index: -1;
    */
}

.img-link{
    position: relative;
    margin: 80px 0;
    width: 100%;
    padding-bottom: 70%;
    overflow: hidden;
}            

.img-link div{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    z-index: 1;
    transition: all 0.2s;
}

.img-link h1{
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0;
    width: 100%;
    padding: 15px 15px;
    background-color: #006db1;
    color: #fff;
    z-index: 2;
}

.news-item{
    padding: 15px 0;
}

.news-item .img{
    position: relative;
    width: 100%;
    padding-bottom: 50%;
    background-position: center;
    background-size: cover;
}

.news-item h2{
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0;
    width: 100%;
    padding: 8px 8px;
    background-color: #957e30;
    color: #fff;
}

/********************************/
/**************Menu**************/
/********************************/

#nav{
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    padding-left: 20%;
    text-align: right;
    z-index: 4;
}

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

#nav ul li{
    display: inline-block;
    position: static;
    margin: 0 5px;
    font-family: 'Glegoo', serif;
    font-size: 0.9rem;
    font-weight: bold;
}

#nav ul li a{
    transition: 0.3s;
}

#nav ul li a:hover {
    color: #957e30;
}

#nav ul li div{
    display: none;
    position: absolute;
    left: auto;
    margin-left: -350px;
    width: 75%;
    padding: 15px;
    text-align: left;
    background-color: #fff;
    box-shadow: 
        -1px 3px 5px -1px #888,
        1px 2px 5px -1px #888
    ;
}

#nav ul li div p{
    display: inline-block;
    vertical-align: top;
    width: 300px;
}

#nav ul li ul{
    display: inline-block;
    margin-left: 15px;
    padding-left: 15px;
    border-left: solid 3px #000000;
}

#nav ul li ul li{
    display: table;
    margin: 0;
    margin-top: 10px;
    padding-bottom: 10px;
    font-size: 1.0rem;
    font-weight: normal;
    min-width: 300px;
    border-bottom: 1px solid #b3b3b3;
}

#nav ul li ul li.divider {
    margin-top: 15px;
    margin-bottom: 5px;
    border-bottom: 3px solid #000000;
}

#nav ul li ul.alt{
    margin: 0;
    padding: 0;
    border-left: none;
}

#nav ul li ul li.alt{
    display: inline-block;
    margin-left: 20px;
    min-width: 250px;
}

#nav ul li ul li a{
    
}

#nav ul li:hover > div{
    display: block;
}

#but-menu{
    display: none;
}

/********************************/
/**************Heads*************/
/********************************/

h1{
    font-family: 'Glegoo', serif;
    font-size: 1.5rem;
}

h2{
    font-family: 'Glegoo', serif;
    font-size: 1.1rem;
    font-weight: bold;
}

/********************************/
/************Paragraphs**********/
/********************************/

p{
    font-size: 1rem;
}

p2{
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/********************************/
/**************Buttons***********/
/********************************/

a, a:hover, a:link, a:visited, a:link:active, a:visited:active{
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

a.link-button, a.link-button:link, a.link-button:visited, a.link-button:link:active, a.link-button:visited:active{
    display: inline-block;
    margin-top: 5px;
    padding: 6px 10px;
    color: #fff !important;
    background-color: #006db1;
    border-radius: 5px;
    text-decoration: none !important;
    transition-duration: 0.15s;
}

a.link-button:hover{
    background-color: #957e30;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

form input{
    max-width: 100%;
}

/********************************/
/**************Sliders***********/
/********************************/

#slider-container{
    position: relative;
    margin: 0 0 20px;
    width: 100%;
    height: 640px;
    overflow: hidden;
    z-index: 0;
}

#slider-container.slider-small{
    height: 640px;
    margin: 0 0 20px;
}

#slider-container #slider{
    position: absolute;
    left: -1px;
    top: -1px;
    width: 101%;
    height: 101%;
}

#slider-container #slider div{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

#slider-container #slider-txt-container{
    padding: 10px 30px 30px 30px;
    margin-top: 400px;
    max-width: 500px;
    background-color:rgba(255,255,255,0.7);
}

#slider-container #slider-txt-container h1{
    margin: 0 0 7px;
    font-size: 2.1rem;
    font-weight: bold;
    color: #ef7a06;
}

#slider-container #slider-txt-container h2{
    margin: 0 0 15px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #006db1;
}

#slider-container #slider-txt-container a{
    display: block;
    margin: 5px 0;
    width: 300px;
    padding: 10px 10px;
    color: #ffffff;
    background-color: #957e30;
    font-size: 1.2rem;
    transition: all 0.35s;
}

#slider-container #slider-txt-container a:hover {
    background: #273474 !important;
}

#slider-container #slider-txt-container a svg{
    float: right;
    color: #ffffff;
    transition: all 0.05s;
}


#merken{
    margin: 50px auto;
}

#merken #merken-container{
    position: relative;
    width: 100%;
    height: 50px;
}

#merken #merken-container #merken-viewer{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#merken #merken-container #merken-viewer #merken-slider{
    position: relative;
    left: 0;
    width: 10000px;
    height: 100%;
}

#merken #merken-container #merken-viewer #merken-slider img{
    display: inline-block;
    float: left;
    margin: 0 15px 0 15px;
    height: 100%;
    white-space: normal;
    opacity: 0.5;
    /*filter: grayscale(100%);
    -webkit-filter: grayscale(100%);*/
    transition: all 0.4s;
}

#merken #merken-container #merken-viewer #merken-slider img:hover{ 
    opacity: 1.0;
    /*filter: grayscale(0%);
    -webkit-filter: grayscale(0%);*/
}

#merken #merken-container #merken-viewer #merken-slider a::before{
    display: none;
}

#merken #merken-container #merken-ctrl-left{
    display: table;
    position: absolute;
    left: -10px;
    top: 0;
    width: 20px;
    height: 100%;
    background-color: #fff;
    color: #957e30;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.2s;
}

#merken #merken-container #merken-ctrl-right{
    display: table;
    position: absolute;
    right: -10px;
    top: 0;
    width: 20px;
    height: 100%;
    background-color: #fff;
    color: #d6a038;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.2s;
    text-align: right;
}

#merken #merken-container #merken-ctrl-left span, #merken #merken-container #merken-ctrl-right span{
    display: table-cell;
    padding: ;
    font-size: 25px;
    vertical-align: middle;
}

#team-slider{
    display: block;
    margin: 30px auto;
    max-width: 400px;
}

#team-slider .item{
    padding-left: 15px;
    padding-right: 15px;
}

#team-slider .team-item{
    position: relative;
    width: 100%;
    padding-bottom: 100%;
}

#team-slider .team-item .img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    filter: brightness(0.65);
    transition: all 0.3s;
}

#team-slider .carousel-control{
    background: none;
}

#team-slider .carousel-control-inner{
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

#team-slider .carousel-control.left .carousel-control-inner{
    justify-content: flex-end;
}

#team-slider .carousel-control.right .carousel-control-inner{
    justify-content: flex-start;
}

#team-slider .carousel-caption{
    padding-bottom: 15px;
    color: #fff;
    text-shadow: 0 0 6px #555, 0 0 3px #000;
    opacity: 0;
    white-space: nowrap;
    text-align: center;
    transition: all 0.3s;
}

#team-slider .item:hover .img{
    filter: brightness(0.8);
}

#team-slider .item:hover .carousel-caption{
    opacity: 1;
}

#team-slider .item .mailing a{
    color: #fff;
    font-size: 20px;
}


/********************************/
/**************Misc**************/
/********************************/

.background{
    background-position: center;
    background-size: cover;
}

.square{
    padding-bottom: 100%;
}

.text-center{
    text-align: center;
}

.tab{
    margin-right: 1rem;
}

#content {
    padding-bottom: 30px;
}

#content ul {
    list-style-position: inside;
}

footer table td {
    padding-right: 20px;
    line-height: 23px;
}

input, textarea {
    margin-left: 10px;
    margin-bottom: 5px;
    padding: 5px;
    width: 100%;
    max-width: 100%;
}

.new-form input, .new-form textarea, .new-form select{
    margin-left: 0;
    margin-top: 5px;
    margin-bottom: 5px;
    width: auto;
    padding: 6px 12px;

    border: solid 1px #aaa;
    font-size: 1.1rem;
}

.new-form textarea{
    width: 100%;
    height: 100px;
    resize: none;
}

.new-form input[type="date"]{
    padding: 1px 12px;
}

.new-form input[type="file"]{
    padding: 6px 0;
    border: none;
}

.new-form button{
    margin: 15px 0;
    width: 100px;
    padding: 11px 14px;
    background-color: #273474;
    color: #fff;
    border: none;
    text-align: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.15s;
}

.new-form button:hover {
    background-color: #495696;
    transition: all 0.15s;
}

.new-form label {
    margin-left: 0;
    margin-top: 5px;
    margin-bottom: 5px;
    width: auto;
    padding: 6px 12px;
}

.new-form.sidebar-form input{
    color: #555;
}

.new-form.sidebar-form input[type="submit"]{
    background-color: #fff;
    color: #957e30;
    border: solid 2px #957e30;
    transition: all 0.15s;
}

.new-form.sidebar-form input[type="submit"]:hover{
    background-color: #957e30;
    color: #fff;
    border-color: #fff;
}

.cfield {
    display: none;
}

#content a {
    text-decoration: underline;
    font-weight: bold;
    color: #957e30;
}

#content ul {
    padding: 10px;
    border: 3px solid #006db1;
}

#content table {
    width: 100%;
    padding: 10px;
    border: 3px solid #e1e1e1;
}

#content td {
    padding: 10px;
}

#content img {
    max-width: 100%;
    height: auto;
}

.contact-orange a, .contact-orange2 a {
    text-decoration: none !important;
    color: #ffffff !important;
}

iframe {
    width: 100% !important;
}        

img.stock_news {
float: right;
margin: 30px 0 20px 20px;
max-width: 450px !important;
}

@media only screen and (max-width: 991px) {
    .contact-orange div{
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    
    #slider-container #slider-txt-container a:hover{
        background-color: #eee;
        transition: all 0.15s;
    }
    
    #slider-container #slider-txt-container a:hover svg{
        transition: all 0.15s;
    }
    
    .calculator button:hover{
        background-color: #495696;
        transition: all 0.15s;
    }
    
    footer .social:hover{
        top: -3px;
    }
    
    .img-link:hover div{
        transform: scale(1.1,1.1);
    }
    
}

@media only screen and (max-width: 767px) {
    
    html{
        font-size: 14px; 
    }
    
    
    #nav{
        position: relative;
        top: 0;
        margin: 25px 0 25px;
        padding: 0;
        text-align: center;
        width: 100%;
    }

    #nav ul{
        overflow: hidden;
    }

    #nav ul li{
        display: table;
        position: relative;
        margin: 0 0;
        width: 100%;
        padding: 4px 0;
    }

    #nav ul li a{

    }

    #nav ul li div{
        display: block;
        position: relative;
        height: auto;
        padding: 0;
        text-align: center;
        box-shadow: none;
        margin-left: 0;
        width: 100%;
    }
    
    #nav ul li div p{
        display: none;
    }
    
    #nav ul li ul{
        display: block;
        position: relative;
        margin-left: auto;
        height: 0;
        padding: 0;
        text-align: center;
        box-shadow: none;
        border-left: none;
    }

    #nav ul li ul li{
        display: table;
        margin: 0;
        padding-left: none;
        padding-top: 4px;
        padding-bottom: 4px;
        font-size: 0.9rem;
        font-weight: normal;
        width: 100%;
        border-bottom: none;
    }

    #nav ul li ul li.alt{
        margin: 0;
        padding-left: 0;
    }

    #nav ul li ul li a{

    }

    #nav ul li:hover ul{
        display: block;
    }
    
    #nav ul li ul li.divider {
        /*display: none;*/
        margin-top: 0px;
        margin-bottom: 5px;
        border-bottom: 3px solid #000000;
    }
    
    #but-menu{
        display: block;
        position: absolute;
        right: 20px;
        top: 75px;
        width: 32px;
        cursor: pointer;
    }
    
    #slider-container{
        height: 250px;
    }

    #slider-container.slider-small{
        height: 180px;
    }
    
    #slider-container #slider-txt-container{
        margin-top: 30px;
    }

    #slider-container #slider-txt-container h1{
        margin: 0 0 7px;
        font-size: 1.6rem;
        font-weight: bold;
        color: #ef7a06;
    }

    #slider-container #slider-txt-container h2{
        margin: 0 0 15px;
        font-size: 1.3rem;
        font-weight: bold;
        color: #006db1;
    }

    #slider-container #slider-txt-container a{
        display: block;
        margin: 5px 0;
        width: 280px;
        padding: 10px 10px;
        background-color: #ef7a06;
        font-size: 1.2rem;
        transition: all 0.35s;
    }
    
    .bar-orange{
        text-align: left;
    }
    
    .bar-orange span::before{
        content: " ";
        display: block;
    }
    
    .bar-orange svg{
        margin: 0 5px 0 0;
    }
    
    .calculator p{
        margin: 15px 0;
    }
    
    .contact-orange, .contact-orange2 {
        margin: 30px 0;
    }

    .contact-orange div{
        display: none;
    }
      
}

@media only screen and (max-width: 400px) {
    

}

.button {
  padding: 10px 20px;
  color: #fff;
  border-radius: 10px;
  background: #006fad;
}

a.button {
  text-decoration: none !important;
  color: #fff !important;
}

.objecten-item {
  margin-bottom: 20px;
  padding: 20px;
  background: #ededed;
}

.kenmerken .item { margin-bottom: 20px; }
.object-image { padding-bottom: 20px; }
.city { font-family: arial; font-weight: bold; }
.address { font-family: arial; font-size: 20px; font-weight: bold; color: #006fad; }
.objecten-item table { width: 275px !important; border: 0 !important; }
.objecten-item td { padding: 0 !important; }
.status { font-family: arial; font-weight: bold; }