/* Algemeen */
body{
    font-family: sans-serif !important;
	}

/* Navigatie-bar */
.navigatie-bar ul li{
    display: inline;
    list-style-type: none;
    line-height: 6;
}

.navigatie-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 230px auto;
  background-color: darkseagreen;
  border-radius: 10px;
}
.navigatie-bar a{
    letter-spacing: .1em;
    text-decoration: none;
    font-weight: bold;
    color: darkgreen;
}
.navigatie-bar a:hover {
  cursor: pointer;
  color: #eee;
}
.logo {
  font-weight: bold;
  font-size: 24px;
}
.logo img{
    float: left;
    width: 100px;
    height: 100px;
}
.logo h1{
   
    font-size: 24px;
}
.burger-icon {
  display: none;
}
.list-item {
  margin-left: 0px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 10px;
  transition: .25s;
}

.red-num{
    display: inline-block;
    padding: 0 6px;
    font-size:80%;
    position: relative; top: -0.25em;
    background-color: red;
    border: solid 1 red;
    border-radius: 15px;
    color: white;
}

.main{
   max-width: 1100px;
   margin: auto;
}
.row{
    padding-top: 10px; 
    margin-bottom: 10px;
    margin-top: 10px;
}

.margin-top{
    padding-top: 30px;
}

.list-group li{
    margin-left:2em;
}


.afbeelding {
    /* grid-area: afbeelding; */
    width: 100%;
    border-radius: 10px;
}

.Marquee {
    /* grid-area: Marquee; */
    padding: 10px;
    background: rgb(237, 236, 236);
    border-radius: 10px;
    text-align:center;
}

/* Footer */
.footer {
    display: grid;
    background-color: #333;
    color: #ccc;
    max-width: 1100px;
    margin: auto;
    grid-template-columns: 1fr 1fr 1fr;
    border-radius: 10px;
    line-height: 1;
}
.footer > div{
	  padding:25px;
}
.footer p {
    margin: 0px;
}

.footer li{
    list-style-type: none;
    text-decoration: none;
    color: #ccc;
}
.footer a{
    text-decoration: none;
    color: #ccc;}

.footer a:hover{
    color: #eee;
}




/* Tablet & Phone Media 940 pix> */
@media screen and (max-width: 945px) {
    .main-wrapper {
        grid-template-columns: 1fr;
        grid-template-areas: 
        "wrapper"
        "afbeelding"
        "wrapper";
    }
    .footer {
        grid-template-columns: 1fr;
        grid-template-areas:
        "foot1"
        "foot2"
        "foot3";
        grid-gap: 5px;
        background: white;
    }
    .foot1 {
        background-color: #333;
        border-radius: 10px;
    }
    .foot2 {
        background-color: #333;
        border-radius: 10px;
    }
    .foot3 {
        background-color: #333;
        border-radius: 10px;
    }
    
/* Burger menu */
     .logo {
    grid-template-columns: 1/3;
    padding-top: 7px;
  }
  .nav-items {
    grid-column: 1/-1;
    text-align: center;
  }
  /* ul li {
    display: block;
  } */
  .burger-icon {
    grid-column: 4/5;
    justify-self: end;
    border: 2px solid #333;
    color: #333;
    padding: 10px;
    font-weight: bold;
    border-radius: 3px;
  }
  .burger-icon:hover {
    cursor: pointer;
  }
  .mobile-hide {
    display: none;
  }
  .mobile-show{
	display: block;
  }
  .burger-icon {
    display: inline-block;
  }
}
