html {
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 0.9rem;
}

body {
    height: 100%;
    float: left;
    background-color: #fff;
    color: #000;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 300;
}

#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: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 15px 0;
    background-color: #fff;
    z-index: 14;
}

.headerMargin{
    height: 110px;
}

footer{
    background-color: #000;
    color: #fff;
}

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

/*
color-1:
ORANGE: rgba(244, 70, 17, 1);
BLUE:   rgba(6, 17, 58, 1);
GREEN:  rgba(40, 81, 10, 1);

color1-op:
ORANGE: rgba(244, 70, 17, 0.8);
BLUE:   rgba(6, 17, 58, 0.85);
GREEN:  rgba(40, 81, 10, 0.85);
*/

.bg-color1{background-color: rgba(244, 70, 17, 1);}
.bg-color1-op{background-color: rgba(244, 70, 17, 0.8);}
.bg-white{background-color: #fff;}
.bg-black{background-color: #000;}

.fill-color1{fill: rgba(244, 70, 17, 1);}
.fill-color1-op{fill: rgba(244, 70, 17, 0.8);}
.fill-white{fill: #fff;}
.fill-black{fill: #000;}

.txt-color1{color: rgba(244, 70, 17, 1);}
.txt-white{color: #fff;}
.txt-black{color: #000;}

.logo{
    margin: 0 0 -50px;
    height: 150px;
}

.headerCall{
    margin: 0 0 35px;
    text-align: right;
    font-size: 1.15rem;
    font-weight: 500;
}

.contactForm{
    text-align: right;
}

.contactForm input[type="text"]{
    margin: 5px 0;
    width: 100%;
    padding: 4px 10px;
    background-color: #ffd7cb;
    border: none;
    font-size: 0.9rem;
}

.contactForm input[type="submit"]{
    padding: 4px 10px;
    border: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.15s;
}

.contactForm input[type="submit"]:hover{
    transform: scale(0.95);
    transition: 0.25s;
}

.contactForm textarea{
    margin: 5px 0;
    width: 100%;
    padding: 4px 10px;
    background-color: #ffd7cb;
    border: none;
    font-size: 0.9rem;
}

.reference{
    position: relative;
    width: 100%;
    padding-bottom: 65%;
    overflow: hidden;
}

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

.reference .txt{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.reference .txt h2{
    margin: 5px 2px 5px 7px;
    text-shadow: 0 0 3px #555;
    transition: all 0.15s;
}

.reference:hover .img{
    transform: scale(1.05);
    transition: all 0.25s;
}

.reference:hover .txt h2{
    transform: translateX(5px);
    transition: all 0.25s;
}

footer .bar{
    width: 100%;
    height: 15px;
}

#legalFooter{
    padding: 10px 0;
    font-size: 0.8rem;
    line-height: 30px;
}

#legalFooter img{
    margin-right: 15px;
    height: 30px;
}

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

.entryColumn{
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.entryColumn .img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    transition: 0.5s;
    z-index: -2;
}

.entryColumn .txt-container{
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 100%;
    height: auto;
    padding: 0 30px;
}

.entryColumn .title{
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 400px;
    padding: 20px 20px 20px 40px;
    font-size: 1.3rem;
    font-weight: 500;
    text-shadow: 0 0 5px #000;
    letter-spacing: 2px;
    color: #fff;
}

.entryColumn .title .bigShape{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.entryColumn .txt{
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 400px;
    /*max-height: 0;*/
    height: 120px;
    transform: scaleY(0);
    padding: 0 20px 0 40px;
    color: #fff;
    overflow: hidden;
    transform-origin: top;
    transition-timing-function: ease;
    transition: all 0.5s;
}

.entryColumn .txt p{
    position: relative;
    margin: 0;
    padding-bottom: 20px;
    z-index: 2;
}

.entryColumn:hover .img{
    transform: scale(1.05);
}

.entryColumn:hover .txt{
    /*max-height: 200px;*/
    transform: scaleY(1);
    transition: all 0.3s;
}

.entryColumn.poedercoaten .txt{
    background-color: rgba(244, 70, 17, 0.8);
}

.entryColumn.rvsfinishing .txt{
    background-color: rgba(6, 17, 58, 0.85);
}

.entryColumn.bouwschadeherstel .txt{
    background-color: rgba(40, 81, 10, 0.85);
}

.entryColumn.poedercoaten .bigShape{
    fill: rgba(244, 70, 17, 0.8);
}

.entryColumn.rvsfinishing .bigShape{
    fill: rgba(6, 17, 58, 0.85);
}

.entryColumn.bouwschadeherstel .bigShape{
    fill: rgba(40, 81, 10, 0.85);
}

.news_item{
    margin-top: 20px;
    font-size: 0.9rem;
}

.news_item p{
    margin-top: 0.5rem;
}

.news_item a{
    text-decoration: underline !important;
}

.teamBlock{
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 275px;
    height: 350px;                              
    border: solid 8px rgba(244, 70, 17, 0.8);
    overflow: hidden;
}

.teamBlock .img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.teamBlock .txt{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px 10px;
    text-align: center;
    transform: translateY(101%);
    transition: all 0.35s;
}

.teamBlock:hover .txt{
    transform: translateY(0);
}

.teamBlock h2{
    font-weight: bold;
    letter-spacing: 1px;
}

.teamBlock, .teamBlock p{
    font-size: 0.95rem;
}

.teamBlock a{
    text-decoration: underline !important;
}


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

#nav{
    position: relative;
    text-align: right;
}

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

#nav ul li{
    display: inline-block;
    margin: 0 0 0 16px;
}


#nav.mobile{
    height: 0;
    overflow: hidden;
    transition: all 0.4s;
}

#nav.mobile ul{
}

#nav.mobile ul li{
    display: list-item;
    padding: 0;
    line-height: 30px;
    text-align: center;
}

#nav.mobile.open{
    height: auto !important;
    transition: all 0.65s;
}

#but-menu{
    display: none;
    width: 32px;
    cursor: pointer;
    transition: all 0.15s;
}

#but-menu:hover{
    transform: scale(1.1);
}

.subMenu{
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
    font-size: 0.9rem;
    text-decoration: underline;
    line-height: 30px;
}

footer .subMenu{
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
    font-size: 0.9rem;
    line-height: 20px;
}

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

h1, h2{
    font-size: 17px;
    font-weight: 300;
}

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

p{
    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;
}

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

#sliderContainer{
    position: relative;
    height: 350px;
    overflow: hidden;
}

#sliderContainer .slide{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    opacity: 0;
    z-index: -2;
    transition: all 0.8s;
}

#sliderContainer .txt{
    position: relative;
    width: 100%;
    max-width: 330px;
    padding: 30px 30px 30px 30px;
}

#sliderContainer .txt .bigShape{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#sliderContainer .txt .supTitle{
    font-size: 1rem;
    font-weight: 300;
    text-shadow: 0 0 5px #555;
    text-transform: uppercase;
}

#sliderContainer .txt .bar{
    margin: 8px 0 12px;
    width: 80px;
    height: 5px;
}

#sliderContainer .txt .title{
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 2.2rem;
    text-transform: uppercase;
}

/********************************/
/********************************/
/********************************/

.underlined{
    text-decoration: underline !important;
}

.inLine{
    position: relative;
    top: 1px;
    width: 20px;
}

.beforeCol{
    position: absolute;
    left: -12px;
    top: 2px;
    width: 20px;
}

.backSide-right{
    position: absolute;
    left: 0;
    top: 0;
    width: 200vw;
    height: 100%;
    z-index: -1;
}

.backSide-left{
    position: absolute;
    right: 0;
    top: 0;
    width: 200vw;
    height: 100%;
    z-index: -1;
}

.whiteBlock {
    padding: 20px;
    width: 100%;
    max-width: 100%;
    background: #ffffff;
}

.cfield {
    display: none;
}

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

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    
    .entryColumn .title{
        font-size: 1.1rem;
        letter-spacing: 0;
    }
    
    .entryColumn .txt{
        height: 160px;
    }

    #but-menu{
        display: inline-block;
        position: absolute;
        right: 0;
        bottom: 0;

    }

    .headerCall{
        position: relative;
        top: -24px;
        margin: 0;
        padding-right: 50px;
        text-align: right;
    }
    
}

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

    
    
    .logo{
        margin: 0;
        height: 50px;
    }
    
    /********/
    .entryColumn{
        height: 400px;
    }
    
    .entryColumn .txt{
        height: auto;
        transform: scale(1);
    }
    
    #but-menu{
        display: inline-block;
        position: absolute;
        right: 0;
        bottom: 0;
        max-height: 15px;
    }

    .headerCall{
        position: relative;
        top: -24px;
        margin: 0;
        padding-right: 50px;
        text-align: right;
    }
    
    #legalFooter img {
        height: 20px;
    }
}

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

    .headerCall{
        font-size: 0.8rem;
    }

}

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