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

body {
    height: 100%;
    background: #fff;
    float: left;
    font-family: 'Roboto Condensed', sans-serif;
    background: linear-gradient(to right, #fff 5%, #79bee5 100%);
}

#wrapper{
    position: absolute;
    top: -40px;
    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;
    margin: 0 0 40px;
    width: 100%;
}

footer{
    position: relative;
    margin: 30px 0 230px;
    width: 100%;
    padding: 20px 0;
    line-height: 1.4rem;
}

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

#background-top{
    position: absolute;
    left: 0;
    top: 150px;
    width: 100%;
    height: 400px;
    background-image: url(../images/background-top.png);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -2;
    opacity: 0.2;
}

#background-bottom{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 275px;
    background-image: url(../images/background-bottom.png);
    background-position: top;
    background-size: cover;
    z-index: -3;
}

.logo{
    margin: 40px 0;
    height: 90px;
}

.logo {
    /* Use -webkit- only if supporting: Chrome < 54, iOS < 9.3, Android < 4.4.4 */
    -webkit-filter: drop-shadow( -2px -2px 2px #606060); 
    filter: drop-shadow( -2px -2px 2px #606060);
}

.blockMarker{
    width: 36px;
    height: 8px;
    transform: rotate(-35deg);
}

.blockMarker-topleft{
    position: absolute;
    left: 1px;
    top: 1px;
    z-index: -1
}

footer input[type="email"]{
    padding: 5px 17px;
    width: 99%;
    min-width: 230px;
    color: #141654;
    border: solid 2px #7FBA00;
    border-radius: 12px;
    font-size: 14px;
    font-style: normal;
}

footer input[type="email"]::placeholder{
    color: #7FBA00;
    font-size: 14px;
    font-style: italic;
}

footer button.submit{
    padding: 8px 8px;
    background-color: #7FBA00;
    color: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: none;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.15s;
}

footer button.submit:active{
    background-color: #7FBA00;
    color: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: none;
}

footer button.submit:hover{
    background-color: #deee11;
}

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

#input-zonnepanelen{
    padding: 5px 17px;
    width: 100;
    color: #141654;
    border: solid 2px #7FBA00;
    border-radius: 12px;
    font-size: 14px;
    font-style: normal;
}

#button-zonnepanelen{
    margin-bottom: 50px;
    padding: 5px 5px;
    background-color: #7FBA00;
    color: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: none;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.15s;
}

#button-zonnepanelen:hover{
    background-color: #deee11;
}


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

#nav{
    position: relative;
    margin: 20px 0 0;
    width: 100%;
    padding: 0 17px;
    background-color: #141654;
    border-radius: 20px;
}

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

#nav ul li{
    display: inline-block;
    margin: 12px 12px 0 12px;
    min-height: 35px;
}         

#nav ul li ul{
    display: none;
    position: absolute;
    left: auto;
    margin-left: -20px;
    padding-left: 20px;
    top: 45px;
    width: auto;
    min-width: 250px;
    height: auto;
    padding: 0 8px;
    text-align: left;
    z-index: 2000;
}

#nav ul li ul li{
    display: list-item;
    position: relative;
    margin: 0 0;
    padding: 0 5px 0 10px;
    color: #000;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: all 0.15s;
    background-color: #141654;
}

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

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

#nav ul li a{
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.1s;
}

#nav ul li:hover ul li a{
    color: #7FBA00;
}

#nav ul li ul li a {
    font-size: 15px !important;
}

#but-menu{
    display: none;
}
/********************************/
/**************Heads*************/
/********************************/

h1{
    color: #141654;
    font-size: 2.2rem;
    font-weight: bold;
}

h2{
    color: #141654;
    font-size: 2.2rem;
    font-weight: bold;
}

h3{
    color: #141654;
    font-size: 1.3rem;
    font-weight: bold;
}

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

p{
    color: #383838;
    font-size: 0.9rem;
}

footer p{
    color: #141654;
}

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

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

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

a.inzichtButton, a.inzichtButton:link, a.inzichtButton:visited, a.inzichtButton:link:active, a.inzichtButton:visited:active{
    position: absolute;
    right: 15px;
    top: 15px;
    padding: 5px 12px;
    background-color: #7FBA00;
    color: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: none;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.15s;
}

a.inzichtButton:hover{
    background-color: #deee11;
}




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

#carousel{
    position: relative;
    padding: 15px 15px;
    background-color: #7FBA00;
    color: #fff;
    border-radius: 10px;
}

#carousel .viewer{
    position: relative;
    width: 100%;
    min-height: 1px;
    overflow: hidden;
}

#carousel .viewer .reel{
    position: absolute;
    left: 0;
    top: 0;
    width: 3000px;
}

#carousel .viewer .reel .object{
    display: inline-block;
    position: relative;
    margin-right: -4px;
    padding: 15px 15px;
}

#carousel .viewer .reel .object > div{
    position: relative;
    width 100%;
    height: 100%;
}

#carousel .viewer .reel .object .img{
    position: absolute;
    left: 0;
    top: 0;
    width 100%;
    height: 100%;
    border-radius: 10px;
    background-position: center;
    background-size: cover;
}

#carousel .viewer .reel .object .txt{
    position: absolute;
    left: 0;
    top: 0;
    width 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(50,50,50,0.7));
    border-radius: 10px;
}

#carousel .viewer .reel .object .txt > div{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px 0 10px 14px;
    font-size: 18px;
}

#carousel .viewer .reel .object .txt .blockMarker{
    position: relative;
    left: -3px;
    top: -3px;
    width: 28px;
    height: 6px;
}

#carousel .control{
    display: flex;
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    color: #141654;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}

#carousel .control.left{
    left: -40px;
}

#carousel .control.right{
    right: -40px;
}

#carousel .control > *{
    cursor: pointer;
}


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

.white{
    background-color: #fff;
}

.green{
    background-color: #7FBA00;
}

.whiteText{
    color: #fff;
}

@media only screen and (max-width: 991px) {
    
    #nav{
        padding: 0 12px;
    }

    #nav ul li{
        margin: 12px 8px;
    }
}

@media only screen and (max-width: 767px) {
    
    #nav{
        position: relative;
        margin: 20px 0 0;
        width: 100%;
        padding: 5px 17px;
        background-color: #141654;
        border-radius: 20px;
    }

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

    #nav ul li{
        display: list-item;
        margin: 6px 0;
        width: 100%;
        height: auto;
        text-align: center;
    }            
    
    #nav ul li ul{
        display: block;
        position: relative;
        left: 0;
        top: 0;
        width: auto;
        height: 0;
        padding: 0 0;
        text-align: center;
        margin-left: 0;
    }

    #nav ul li ul li{
        display: list-item;
        position: relative;
        margin: 0 0;
        width: 100%;
        padding: 0 0;
        color: #000;
        border-bottom: none;
        font-size: 14px;
        line-height: 30px;
        letter-spacing: 1px;
        white-space: nowrap;
        transition: all 0.15s;
        background: none;
        text-align: center;
    }

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

    #nav ul li a{
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        transition: color 0.1s;
    }

    #nav ul li:hover a{
        color: #7FBA00;
    }
    
    #nav ul li:hover ul li ul li a{
        font-size: 15px;
        color: #ffffff;
    }

    #nav ul li:hover ul li ul li:hover a{
        color: #7FBA00;
    }
    
    #but-menu{
        display: block;
        margin: 5px auto;
        width: 32px;
        cursor: pointer;
    }
    
    #carousel .control{
        display: flex;
        position: absolute;
        top: 0;
        width: 25px;
        height: 100%;
        color: #141654;
        justify-content: center;
        align-items: center;
        font-size: 20px;
    }

    #carousel .control.left{
        left: 0;
    }

    #carousel .control.right{
        right: 0;
    }

    #carousel .control > *{
        cursor: pointer;
    }

    .logo{
        margin-bottom: 60px;
        height: 70px;
    }

    a.inzichtButton, a.inzichtButton:link, a.inzichtButton:visited, a.inzichtButton:link:active, a.inzichtButton:visited:active{
        top: 130px;
    }


}

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


    
}

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

}