@charset "utf-8";
/* CSS Document */

.navbar {
  overflow: hidden;
  background-color: #333;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8em;

} 

.navbar a, .categorieMobile {
  float: left;
  color: white;
  text-align: center;
  padding: 14px 12px;
  text-decoration: none;
	font-size: 100%;
}
	.categorieMobile {
		display: none;
	}
	.navbar .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 12px;
  background-color: inherit;
  font: inherit;
  margin: 0;
  font-size: 100%;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #006393;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  width: 100%;
  left: 0;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 100;
}

.dropdown-content .header {
  background: red;
  padding: 16px;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding: 5px;
  background-color: #f9f9f9;
}
.column h3 {
	padding: 5px;
	text-transform: uppercase;
}

	.column a {
  float: none;
  color: black;
  padding: 8px 5px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: 1em;
  border-radius: 4px;
}

.column a:hover {
	color: #F9F9F9;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

	
/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 1000px) {
  .navbar a:not(:first-child), .dropdown .dropbtn {
    display: none;
    background-image: none;
  }
  .navbar a.icon {
    float: right;
    display: block;
  }

	.categorieMobile {
		display:  block; 
		font-weight: 600;
	
	}
  .navbar.responsive {position: relative;}
  .navbar.responsive a.icon {
   /* position: absolute;
    right: 0;
    top: 0;*/
  }
  .navbar.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .navbar.responsive .dropdown {float: none;}
  .navbar.responsive .dropdown-content {position: relative;}
  .navbar.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}
	
/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    height: auto;
  }
	
}