@charset "utf-8";
/* CSS Document */

/* mobiel menu */

@media (max-width: 767.98px) {
	.navbar-brand {
		position: relative;
		height: auto;
		color: rgba(255,255,255,0.80) !important;
		text-decoration: none !important;
		margin: 0 0 0 10px;
	}
	.navbar-brand img {
		height: 50px;
		width: auto;
	}
	.navbar {
		position: fixed;
		width: 100%;
		top: 0;
		padding: 0;
		border: none;
		background-color: #333;
		border-radius: 0;
		min-height: 0;
		z-index: 10;
	}
	.navbar > .container-fluid {
		flex-direction: row-reverse;
	}
	#navbar {
	}
	#navbar ul {
	}
	#navbar ul li {
	}
	.navbar-nav > li > a {
		text-decoration: none;
		text-transform: none;
		font-weight: normal;
		font-size: 14px;
		color: rgba(255,255,255,0.80);
		font-family: "Montserrat", sans-serif;
		padding: 10px !important;
	}
	.navbar-nav > li > a:hover, .navbar-nav > li > a.active, .navbar-nav > li > a.active:hover, .navbar-nav > li > a:focus, .navbar-nav > li > a.active:focus {
		color: #000 !important;
		background-color: #fff;
	}
	
	/* specifiek voor mobiel */
	.navbar-toggler {
		position: relative;
		display: inline-block;
		margin: 10px;
		border: none;
		background-color: rgba(0,0,0,1.0);
	}

	.navbar-toggler:hover, .navbar-toggler:focus {
		background-color: rgba(255,255,255,0.1);
		outline: none;
	}

	.navbar-toggler .navbar-toggler-icon {
		background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1.0)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
	}
}

/* groot menu */

@media (min-width: 768px) {
	.navbar {
		position: relative;
		width: 100%;
		border: none;
		background-color: #f6f6fa;
		padding: 0;
		margin: 0;
		-webkit-border-radius: 0;
		border-radius: 0;
		z-index: 10;
	}
	.page-id-12 .navbar {
		position: absolute;
		animation: inglijden 1s linear 3s both;
	}
	@keyframes inglijden {
		from {
			top: -42px;
		}
		to {
			top: 0;
		}
	}
	.navbar > .container-fluid {
		padding: 0 8vw;
	}
	#navbar {
		padding: 0;
	}
	#navbar ul.navbar-nav {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: stretch;
		flex-wrap: nowrap;
	}
	#navbar ul li {
		flex: 1 1 auto;
		position: relative;
		display: block;
	}
	#navbar ul li:nth-child(1) {
		background-color: rgba(150, 177, 173, 0.125);
	}
	#navbar ul li:nth-child(2) {
		background-color: rgba(150, 177, 173, 0.25);
	}
	#navbar ul li:nth-child(3) {
		background-color: rgba(150, 177, 173, 0.375);
	}
	#navbar ul li:nth-child(4) {
		background-color: rgba(150, 177, 173, 0.50);
	}
	#navbar ul li:nth-child(5) {
		background-color: rgba(150, 177, 173, 0.625);
	}
	#navbar ul li:nth-child(6) {
		background-color: rgba(150, 177, 173, 0.75);
	}
	#navbar ul li:nth-child(7) {
		background-color: rgba(150, 177, 173, 0.875);
	}
	#navbar ul li:last-child {
		background-color: rgba(150, 177, 173, 1.0);
	}
	.navbar-nav > li > a {
		display: flex;
		height: 100%;
		align-items: center;
		justify-content: center;
		text-align: center;
		text-decoration: none;
		text-transform: uppercase;
		font-weight: 500;
		font-size: 15px;
		color: #334b48;
		font-family: "Montserrat", sans-serif;
		background-color: transparent;
		padding: 8px 0 !important;
		-webkit-border-radius: 0px;
		border-radius: 0px;
	}
	.navbar-nav > li > a:hover, .navbar-nav > li > a.active, .navbar-nav > li > a.active:hover, .navbar-nav > li > a:focus, .navbar-nav > li > a.active:focus {
		color: #6d0000 !important;
		background-color: transparent;
	}
}

