* {
    font-family: Arial, sans-serif;
    border: 0 solid black;
    box-sizing: border-box;
}
body {
    background-color: rgba(39,78,157,0.15);
    margin: 0;
    padding: 0;
}
html {
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
}

@media only screen and (min-device-width: 750px) {
    html { font-size: 100%; }
}
@media only screen and (max-device-width: 749px) {
    html { font-size: 200%; }
}


@media only screen and (min-device-width: 750px) {

    .container {
        width: 750px;
        min-height: calc(100vh - 50px);
        margin: 50px auto 0 auto;
        background-color: white;
        box-shadow: 0 0 3px grey;
    }

    .header {
        width: 100%;
        height: 200px;
    }

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

    .container {
        width: 100%;
        min-height: 100vh;
        background-color: white;
    }

    .header {
        width: 100%;
        height: 400px;
    }

}

#home        { background: url('fotos/logo002.jpg') center no-repeat;          background-size: contain; }
#missie      { background: url('fotos/missie001.jpg') top no-repeat;           background-size: cover; }
#preventie   { background: url('fotos/preventie001.jpg') center no-repeat;     background-size: cover; }
#milieu      { background: url('fotos/milieu002.jpg') center no-repeat;        background-size: cover; }
#kwaliteit   { background: url('fotos/kwaliteit001.jpg') center top no-repeat; background-size: cover; }
#referenties { background: url('fotos/referenties001.jpg') center no-repeat;   background-size: contain; }
#contact     { background: url('fotos/contact001.jpg') center no-repeat;       background-size: contain; }

.navbar {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 0;
}
@media only screen and (min-device-width: 750px) {
    .navbar a {
        display: inline-block;
        height: 30px;
        margin: 7px -0.5px;
        padding: 6px 10px 4px 10px;
        line-height: 1;
        font-size: 1rem;
        border-right: 1px solid rgb(69,124,180);
        border-left: 1px solid rgb(69,124,180);
    }
}
@media only screen and (max-device-width: 749px) {
    .navbar a {
        display: inline-block;
        height: 60px;
        margin: 7px -0.5px;
        padding: 12px 10px 0px 10px;
        line-height: 1;
        font-size: 1rem;
        border-right: 1px solid rgb(69,124,180);
        border-left: 1px solid rgb(69,124,180);
    }
}

.navbar a:first-child {
}
.navbar a:link, .navbar a:visited {
    color: black;
    text-decoration: none;
    font-weight: bold;
}
.navbar a:hover, .navbar a:active {
    color: rgb(69,124,180);
}

.content {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 20px;
}
@media only screen and (min-device-width: 750px) {
    .content {
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media only screen and (max-device-width: 749px) {
    .content {
        padding-left: 20px;
        padding-right: 20px;
    }
}
.content ul {
    padding-left: 20px;
}
.content li {
    padding-bottom: 5px;
}

.footer {
    width: 100%;
    font-size: 0.7rem;
    text-align: center;
    padding-bottom: 10px;
}
.link:link, .link:visited {
    color: rgb(69,124,180);
    text-decoration: none;
}
.link:hover, .link:active {
    color: black;
}

.icon {
    height: 16px;
}

@media only screen and (min-device-width: 750px) {
    .half {
        width: 50%;
        float: left;
        margin-bottom: 30px;
    }
    #map {
        height: 200px;
        width: 100%;
    }
}
@media only screen and (max-device-width: 749px) {
    .half {
        width: 100%;
        float: left;
        margin-bottom: 30px;
    }
    #map {
        height: 400px;
        width: 100%;
    }
}