/*

green: #71b95a
orange: #f6a119

*/
:root {
    --green: #71b95a;
    --dark-green: #4f803e;
    --darker-green: #3f6632;
    --orange: #f6a119;
    --dark-orange: #d68a18;
    --darker-orange: #b57516;
}

/* ________________________________________________________________*/
* {
    font-family: inherit;
    color: inherit;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    outline: none;
}

body {
    background: #ffffff;
    color: #444444;
    font-family: 'Ubuntu', sans-serif;
}

h1, h2 {
    font-weight: normal;
    text-align: center;
}

h1 {
    color: #ffffff;
    font-size: 3rem;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
}

h2 {
    font-size: 2rem;
}

h3 {
    font-weight: normal;
    font-size: 1.4rem;
    padding-top: 0.5rem;
}

h3.data-point {
    text-align: center;
}

h3 .nbr {
    display: block;
    margin: 0 auto;
    font-size: 3rem;
    border: 0.25rem solid #444444;
    line-height: 1;
    padding-top: 2.25rem;
    width: 8rem;
    height: 8rem;
    border-radius: 4rem;
    margin-bottom: 0.5rem;
    -webkit-transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-duration: 0.3s;
    transition-property: transform;
}

h3 .nbr:hover {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

h6 {
    font-weight: normal;
    font-style: italic;
}

.block-orange h3 .nbr {
    border-color: #ffffff;
}

a:hover {
    text-decoration: none;
}

a img {
    text-decoration: none;
}

p, ul, ol {
    line-height: 1.6;
    margin-bottom: 1rem;
}
ul, ol {
    margin-left: 1rem;
}

input[type=text],
input[type=submit],
input[type=button],
input[type=email] {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    background: #f8f8f8;
    padding: 0.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

input[type=submit] {
    cursor: pointer;
    border: none;
    font-size: 1rem;
    padding: 1rem;
    background: #f6a119;
    color: #ffffff;
}

input[type=submit]:hover {
    background: #d68a18;
}

table {
    border-collapse: collapse;
}
th {
    font-weight: normal;
    font-style: italic;
}
th, td {
    text-align: left;
    vertical-align: text-top;
    padding: 0.25rem 1rem 0.25rem 0;
}

/* ________________________________________________________________*/
#top {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 1;
    -webkit-transition: background 1s, box-shadow 0.3s;
    transition: background 1s, box-shadow 0.3s;
}

#top.scrolling {
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#top .row {
    max-width: 100% !important;
}

#top .col {
    text-align: right;
    padding: 1rem 2rem;
}

#logo {
    float: left;
    height: 3.05rem;
    width: 8rem;
    margin-top: -0.25rem;
    margin-bottom: -1rem;
    background: url('images/logo.seed_netherlands.wit.svg') left top no-repeat;
    background-size: contain;
}

#top.scrolling #logo {
    background-image: url('images/logo.seed_netherlands.svg');
}

#mainMenu a {
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    color: #ffffff;
    padding: 0.75rem 0;
    margin-left: 1rem;
    line-height: 1;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

#top.scrolling #mainMenu a {
    color: inherit;
}

#mainMenu a:hover {
    color: #71b95a;
}

#mainMenu a.selected {
    color: #f6a119 !important;
}

#homeHeader,
#pageHeader {
    background: #eeeeee no-repeat 50%;
    background-size: cover;
    height: 75vh;
    box-shadow: inset 0 -10vh 50vw rgba(0, 0, 0, 1);
    position: relative;
}

#pageHeader {
    height: 50vh;
    box-shadow: inset 0 -5vh 15vw rgba(0, 0, 0, 1);
}

#homeHeader h1,
#pageHeader h1 {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    right: 2rem;
}

#footer {
    font-size: 0.8rem;
    text-align: center;
    color: #aaaaaa;
    line-height: 1;
}

#anbi {
    display: inline-block;
    vertical-align: middle;
    height: 2.4rem;
    margin: -1rem 0 -1rem 0;
}

/* ________________________________________________________________*/
.row {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row.wide {
    max-width: 100%;
}

.row:before,
.row::after {
    content: '';
    display: table;
}

.row::after {
    clear: both;
}

.col {
    position: relative;
    /*float: left;*/
    padding: 2rem;
}

.col-1 {
    width: 8.33333%;
}

.col-2 {
    width: 16.66666%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33333%;
}

.col-5 {
    width: 41.66666%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33333%;
}

.col-8 {
    width: 66.66666%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33333%;
}

.col-11 {
    width: 91.66666%;
}

.col-12 {
    width: 100%;
}

.push-1 {
    margin-left: 8.33333%;
}

.push-2 {
    margin-left: 16.66666%;
}

.push-3 {
    margin-left: 25%;
}

.push-4 {
    margin-left: 33.33333%;
}

.push-5 {
    margin-left: 41.66666%;
}

.push-6 {
    margin-left: 50%;
}

.push-7 {
    margin-left: 58.33333%;
}

.push-8 {
    margin-left: 66.66666%;
}

.push-9 {
    margin-left: 75%;
}

.push-10 {
    margin-left: 83.33333%;
}

.push-11 {
    margin-left: 91.66666%;
}

.block-orange {
    background: #f6a119;
    color: #ffffff;
}

.block-white {
    background: #ffffff;
}

.block-green {
    background: #71b95a;
    color: #ffffff;
}

.volunteer img,
.event img {
    display: block;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    float: left;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-duration: 0.3s;
    transition-property: transform;
}

.volunteer:hover img,
.event:hover img {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.volunteer .info,
.event .info {
    float: left;
    padding-left: 1rem;
    width: calc(100% - 8rem);
}

.volunteer .info q,
.event .info p {
    font-style: italic;
    margin: 1rem 0;
    display: block;
}

.more-button {
    display: block;
    text-align: center;
    margin: 1rem auto;
    text-decoration: none;
    background: #eeeeee;
    padding: 1rem;
    border-radius: 6px;
    border: none;
    -webkit-transition-duration: 0.3s;
    -webkit-transition-property: background;
    transition-duration: 0.3s;
    transition-property: background;
    cursor: pointer;
}

.more-button.small {
    padding: 0.25rem 0.5rem;
}

.more-button::after {
    content: ' →';
}

.more-button:hover {
    background: #dddddd;
}

.block-green .more-button {
    background: #4f803e;
}

.block-green .more-button:hover {
    background: #3f6632;
}

.block-orange .more-button {
    background: #d68a18
}

.block-orange .more-button:hover {
    background: #b57516
}

.image50p {
    position: relative;
    width: 50%;
    float: left;
    height: 33vh;
    background: #eeeeee no-repeat 50%;
    background-size: cover;
    box-shadow: inset 0 -2vh 10vw rgba(0, 0, 0, 1);
}

.image50p h3 {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    right: 1rem;
}

.filled-img {
    height: 33vh;
    background: no-repeat 50%;
    background-size: cover;
}

.left {
    float: left;
}

.right {
    float: right;
}

.tal {
    text-align: left;
}

.tac {
    text-align: center;
}

.hidden {
    display: none !important;
}

.modal {
    position: fixed;
    padding: 2rem;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.modal > div {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 6px;
    max-height: calc(100% - 4rem);
    overflow: auto;
}

/* ________________________________________________________________*/
@media (max-width: 960px) {
    .volunteer img {
        width: 6rem;
        height: 6rem;
    }

    .volunteer .info {
        width: calc(100% - 6rem);
    }
}

@media (max-width: 720px) {

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .col-3 {
        width: 50%;
    }

    .col-4 {
        width: 50%;
    }

    .col-6 {
        width: 100%;
    }

    .push-4 {
        margin-left: 25%;
    }

    .image50p {
        width: 100%;
    }

}

@media (max-width: 640px) {
    .modal {
        padding: 1rem;
    }
    .modal > div {
        max-height: 100%;
    }
    .volunteer .info,
    .event .info {
        width: 100%;
        margin-top: 1rem;
        padding: 0;
    }
}

@media (max-width: 420px) {

    .col {
        width: 100% !important;
        margin-left: 0 !important;
    }

}