@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:100,300,400,700');
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-image: url();
    background-color: white;
    font-family: 'Roboto Slab', serif;
}
.wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
}
.kop {
    margin: 10px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    height: 50px;
    align-items: center;
}
.achtergrondbeeld {
    display: flex;
    margin: 0 10px;
    padding: 0;
    flex-grow: 1;
    background-image: linear-gradient(rgba(42, 51, 98, 0.6), rgba(99, 36, 49, 0.3)), url(../images/achtergrond/pattern4.png), url(../images/achtergrond/office-820390_1920.jpg);
    background-size: auto, 100px, cover;
}
.inhoud {
    margin: 40px;
    padding-top: 25px;
    padding-left: 25px;
    padding-right: 25px;
    width: 50%;
    opacity: .8;
}
.voet {
    margin: 10px;
    background-color: white;
    display: flex;
    justify-content: flex-end;
    height: 50px;
    align-items: center;
}
.voet p {
    font-size: 12px;
    font-weight: 400;
}
.voet a {
    text-decoration: none;
    color: black;
}
.voet a:hover {
    text-decoration: none;
    color: #2E9CFB;
}
.sociale-media {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    flex-direction: row;
}
.sociale-media-inhoud, .logo {
    display: flex;
    padding-left: 10px;
    align-items: center;
}
.navigatie {
    padding-top: 100px;
    width: 50%;
}
ul {
    list-style-type: none;
}
li a {
    font-size: 48px;
    line-height: 55px;
    font-weight: 700;
    text-decoration: none;
    color: white;
}
/* Achtergrondkleur voor link van links naar rechts, wit */
.hvr-veeg-naar-rechts {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.hvr-veeg-naar-rechts:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: -10px;
    right: -10px;
    bottom: 0;
    background: #fff;
    opacity: .7;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-veeg-naar-rechts:hover, .hvr-veeg-naar-rechts:focus, .hvr-veeg-naar-rechts:active {
    color: black;
}
.hvr-veeg-naar-rechts:hover:before, .hvr-veeg-naar-rechts:focus:before, .hvr-veeg-naar-rechts:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.inhoud h2 {
    font-size: 24px;
    font-weight: 400;
    color: white;
}
.inhoud p {
    font-size: 16px;
    font-weight: 400;
    color: white;
}
.inhoud a {
    color: white;
    text-decoration: none;
}
.over-ons {
    background: #76b852;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #8DC26F, #76b852);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #8DC26F, #76b852); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.onze-missie {
    background: #fd746c;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #ff9068, #fd746c);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #ff9068, #fd746c); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.over-samenwerking {
    background: #525252;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #3d72b4, #525252);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #3d72b4, #525252); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

@media (max-width: 400px) {
.achtergrondbeeld {
    flex-direction: column;
}
li a {
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    text-decoration: none;
    color: white;
}
.navigatie {
    width: 100%;
}
.inhoud {
    width: 100%;
    margin: 0;
    top: 25px;
    padding: 0px;
    position: relative;
}
.kop {
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
}
.sociale-media {
    padding-top: 10px;
    display: flex;
    flex-wrap: nowrap;
}
}
