/* style sheet van brouwerij pagina


*/ 

body {
  background: url(../img/achtergr03.jpg);
}

#omtrek_midden {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
  border-radius: 5px;
  background-color:#FFFFFF;
}

/* algemene opbouw plus menu */

* {
    box-sizing: border-box;
}

.header {
    padding: 5px;
}


ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #004080;
}

li {
    float: left;
    border-right:2px solid #B9D3EA;
    border-bottom:2px solid #B9D3EA;
}

li a {
    display: block;
    font-family: Arial;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.selected {
    background-color: #84B0D6;
}

/* rest   */

img {
    width: 100%;
    height: auto;
}

.content_tekst {
   float:left;
   padding: 10px;
}

.content_img {  
   float:left;
   border: 1px solid #11672B;
   width:100%;
   margin:10px auto 10px auto;
   padding: 10px;
   box-shadow: 5px 5px #D3D3D3;  
}

.content_img img {
    width: 100%;
    height: auto;
}

.img_desc {
   padding: 10px 0px 0px 0px;
   text-align: center;
   font-family: Arial;
   color: #36566E;
   font-size: 10pt;
   font-style:italic;
}

/* Tekst enz */

.kop {
  font-weight: bold;
  font-family: Arial;
  color: #D12308;
  font-size: 24pt;      
 }

p {
  font-family: Arial;
  color: #36566E;
  font-size: 16pt;
}

a {
font-family: Arial Black;
color: #36566E;
font-size: 16pt;
text-decoration: none;
}

a:hover {
 color: #E4E5FF;
}

a.tekst {

font-family: Arial;
color: #36566E;
font-size: 16pt;
text-decoration: underline;
}
a.tekst:hover {
color: #587C98;
}


/* de kolom indeling */
.row::after {
    content: "";
    clear: both;
    display: block;
}


.col-1 {width: 16.66%;}
.col-2 {width: 33.33%;}
.col-3 {width: 50%;}
.col-4 {width: 66.66%;}
.col-5 {width: 83.33%;}
.col-6 {width: 100%;}

[class*="col-"] {
    float: left;
    padding: 5px;
}

@media only screen and (max-width: 799px) {
    [class*="col-"] {
        width: 100%;
    }
}