*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

#container {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

#main {
    flex: 1; /* neemt alle vrije ruimte */
}

footer {
    flex-shrink: 0;
}

body {
    font-family: 'Titillium Web', sans-serif;
    font-size: 17px;
    color: #535353;
    background-color: #F4F4F4;
}

h1, h2, h3, h4, h5 {
    font-family: 'GlegooRegular', serif;
    font-weight: 400;
    margin: 0;
}

h1 {
    font-size: 32px;
    line-height: 40px;
    color: #e97800;
    margin-bottom: 15px;
}

h2 {
    font-size: 23px;
    line-height: 30px;
    color: #AB2033;
    margin-bottom: 15px;
}

p {
    margin: 0;
}

.content {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.headerimg {
    width: 100%;
    height: auto;
    margin-top: 100px;
    margin-bottom: 20px;
}

.story {
    display: flex;
    width: 100%;
    background-color: #ffffff;
    border-radius: 3px;
	margin-bottom: 20px;
}

.contentL {
    flex: 0 0 66%;
    padding: 60px 20px 60px 20px;
}

.contentL p {
    font-size: 19px;
    line-height: 25px;
}

.contentR {
    flex: 0 0 34%;
    padding: 60px 20px;
}

.story a {
    color: #e97800;
    text-decoration: none;
}

.story a:hover {
    color: #000000;
}

a.icontelefoon,
a.iconmail {
    display: flex;
    align-items: center;
    color: #535353;
    text-decoration: none;
    margin: 10px 0;
}

a.icontelefoon span.icon,
a.iconmail span.icon {
    display: inline-block;
    width: 30px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
}

/* Background images */
a.icontelefoon span.icon {
    background-image: url('../uc_images/icon.telefoon.oranje.3.png');
}

a.iconmail span.icon {
    background-image: url('../uc_images/icon.mail.oranje.3.png');
}

/* Hover effect */
a.icontelefoon:hover,
a.iconmail:hover {
    color: #e97800;
}


/* Container voor tekst op header/slideshow */
.containerTxt {
    position: absolute;
    top: 130px; /* of pas aan naar wens */
    left: 30px; 
    width: 250px; /* breedte van het tekstblok */
    background-color: #E97800; /* oranje achtergrond */
    color: #ffffff; /* witte tekst */
    padding: 15px 20px;
    border-radius: 3px;
    opacity: 0.9;
    z-index: 10;
}

/* Titel binnen de container */
.containerTxt h1 {
    margin: 0;
    font-size: 19px;
    line-height: 22px;
    color: #ffffff;
}



/* =====================
   HEADER
===================== */

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;

    background-color: #ffffff;
    background-image: none;

    z-index: 10000;
}

#header .content {
    height: 100%;
    display: flex;
    align-items: center;
}

#header {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.logo img {
    display: block;
    height: auto;
}

#main {
    padding-top: 17px;
}


footer {
    width: 100%;
    background-color: #AB2033;
}

footer .content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 54px;
}

.copyRight {
    color: #ffffff;
    font-size: 14px;
}

@media screen and (max-width: 991px) {
    .story {
        flex-direction: column;
    }

    .contentL,
    .contentR {
        flex: 0 0 100%;
        padding: 40px 20px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1139px) {
    .contentL {
        flex: 0 0 65%;
    }

    .contentR {
        flex: 0 0 35%;
    }
}

@media screen and (min-width: 1140px) {
    .contentL {
        flex: 0 0 66%;
    }

    .contentR {
        flex: 0 0 34%;
    }
}






