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

/* CSS reset */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 0;
}

html,
body,
div {
    margin: 0;
    padding: 0;
}

/* END CSS reset */

body {
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    background: #CCC;
}

p {

    font-size: 15px;
    line-height: 20px;
    margin-bottom: 16px;
    color: #333;
}

.agenda p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 7px;
}

h1 {
    font-size: 55px;
}

h2 {
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 8px;
    color: #C00;
}

.eerst h2 {
    font-size: 24px;
}

.eerst p {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 16px;
}

header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    background-color: #FFF;
}

#logo {
    position: absolute;
    top: 24%;
    left: 36px;
    width: 53%;
}

#logo img {
    with: 100%;
    height: auto;
}

header img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

nav {
    height: 30px;
    max-width: 1200px;
    margin: 0 auto;
    background: #414141;
    text-align: right;
    color: #FFF;
    padding-right: 7.5%;
    font-size: 13px;
    line-height: 30px;
}

nav a {
    color: #FFF;
}

.content {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1200px;
    padding: 40px 50px;
    margin: 0 auto;
    background: #FFF;
}

.grijs {
    background-color: #e2e2e2;
}

.item {
    width: 48%;
}

audio {
    width: 80%;
    margin: 4px 0 5px 0;
}

.video {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    display: block;
    margin: 10px 0 10px 0;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
}

.vierkant {
    padding-bottom: 175%;
}

footer {
    height: 100px;
    max-width: 1200px;
    margin: 0 auto;
    background: #414141;
    text-align: center;
    color: #FFF;
    font-size: 12px;
    padding-top: 75px;
}

footer a {
    color: #fff;
}

/* RESPONSIVE DESIGN */

@media all and (max-width: 768px) {

    header,
    nav,
    .content,
    footer {
        max-width: 768px;
    }
    
    .content {
      padding: 35px 35px;  
    }

    .item {
        width: 47.5%;
    }
    
    .eerst {
        width: 100%;
    }
    
    audio {
        width:100%;
    }

    .agenda {
        width: 100%;
    }

    .vierkant {
        padding-bottom: 56.25%;
    }

}

@media all and (max-width: 420px) {

    header,
    nav,
    .content,
    footer {
        max-width: 420px;
    }
    
    .eerst h2 {
    font-size: 21px;
}

.eerst p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 22px;
}

    header {
        overflow: hidden;
    }

    header img {
        height: auto;
        width: 115%;
        float: right;
        margin-right: -14%;
    }

    nav {
        height: 25px;
        line-height: 25px;
    }


    .content {
        padding: 30px 25px;
    }

    .item {
        width: 100%;
    }

    #logo {
        top: 17%;
        left: 10px;
        width: 75%;
    }

    #logo img {
        width: 100%;
        height: auto;
        margin-left: 0;
        float: none;
    }

    audio {
        width: 100%;
    }

}