/* Opmaak design Corthouts */
/* padding and border included in the total width and height of all the elements*/
* {
    box-sizing: border-box;
}

/* ----------------------------- Stijlregels voor oude browsers ---------------------------------------*/
aside, article, section, header, footer, nav {
    display: block;
}

/* ----------------------------- Stijlregels voor gridview --------------------------------------*/
[class*="col-"] {
    float: left;
    padding: 15px;
    /*border: 1px solid red;*/
}

.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

/* ----------------------------- Stijlregels voor header ---------------------------------------*/
.logo {
    width: 100%;
    height: auto;
    max-width: 1180px;
}

/* ----------------------------- Stijlregels voor navigatie/menu ---------------------------------------*/
/* Set margin: 0; and padding: 0; to remove browser default settings */
nav {
    color: rgb(96, 91, 42);
    font-size: 16px;
    font-weight: bold;
    border-top: 1px dotted gray;
    border-bottom: 1px dotted gray;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline;
    padding: 15px;
}

li a:link, li a:visited {
    color: rgb(96, 91, 42);
    background-color: rgba(225, 237, 157, 0);
}

li a:hover {
    color: rgb(255, 255, 255);
    background-color: rgba(96, 91, 42, 1);
}

/* ----------------------------- Stijlregels voor main - Mobile first ---------------------------------------*/
/* If the name of a font family is more than one word, it must be in quotation marks, like: "Times New Roman" */
body {
    font-family: Verdana, Trebuchet, Arial, sans-serif;
    background-color: rgba(255, 255, 255, 0);
    font-size: 14px;
    color: rgb(96, 91, 42);
    line-height: 1.5;
}

body a {
    color: rgb(96, 91, 42);
}

h1 {
    font-size: 16px;
}

h2 {
    font-size: 14px;
}

/* Margin left + right + auto = center container */
.center {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
}

.lijn {
    border-bottom: 1px dotted gray;
}

.map {
    width: 100%;
    padding: 15px;
}

img {
    padding: 15px;
    width: 100%;
    height: auto;
}

/* ----------------------------- Stijlregels voor footer ---------------------------------------*/
footer {
    color: rgb(96, 91, 42);
    text-align: center;
    font-size: 12px;
    border-top: 1px dotted gray;
    border-bottom: 1px dotted gray;
}

/* ------------------------------- Media Queries --------------------------------------------------*/
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 1200px) {
    [class*="col-"] {
        width: 100%;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up)
 @media only screen and (min-width: 600px) {
 }
 */
/* Medium devices (landscape tablets, 768px and up)
 @media only screen and (min-width: 768px) {...}
 */
/* Large devices (laptops/desktops, 992px and up)
 @media only screen and (min-width: 992px) {...}
 */
/* Extra large devices (large laptops and desktops, 1200px and up) */
/* @media only screen and (min-width: 1200px) {} */