@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: "Zen Kaku Gothic Antique", 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-brand {
		position: absolute;
		display: flex;
		top: 35px;
		left: 40px;
		height: auto;
		margin: 0 !important;
		padding: 0 !important;
		flex-direction: column;
		align-items: center;
		gap: 66px;
		z-index: 11;
	}
	.page-id-12 .navbar-brand {
		gap: 38px;
	}
	.navbar-brand > div {
		width: 60px;
		height: 60px;
		background-color: #7f0909;
		mask-size: contain;
		mask-repeat: no-repeat;
		mask-position: center center;
		-webkit-transition: all 0.35s ease-in-out;
		transition: all 0.35s ease-in-out;
	}
	.navbar-brand:hover > div {
		background-color: #448086;
	}
	.navbar-brand img {
		height: auto;
		width: 16px;
	}
	.navbar {
		position: fixed;
		top: 0;
		width: 100%;
		border: none;
		background-color: transparent;
		padding: 50px 0;
		margin: 0;
		-webkit-border-radius: 0;
		border-radius: 0;
		z-index: 10;
	}
	.navbar > .container-fluid {
		padding-left: 140px;
		padding-right: 140px;
	}
	#navbar {
		padding: 0;
	}
	#navbar ul.navbar-nav {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		flex-wrap: nowrap;
		gap: 2vw;
	}
	#navbar ul li {
		position: relative;
		display: block;
	}
	#navbar ul li#menu-item-language-nl {
		margin-left: auto;
		margin-right: -1vw;
	}
	.navbar-nav > li > a {
		position: relative;
		text-decoration: none;
		text-transform: none;
		font-weight: 600;
		font-size: 16px;
		letter-spacing: 2px;
		color: #000;
		font-family: "Zen Kaku Gothic Antique", sans-serif;
		background-color: transparent;
		padding: 0 !important;
		-webkit-border-radius: 0px;
		border-radius: 0px;
	}
	.navbar-nav > li > a:after {
		content: "";
		display: block;
		position: absolute;
		bottom: -11px;
		left: 50%;
		height: 8px;
		width: 32px;
		transform: translateX(-50%) scale(0);
		background-image: url('images/kwast.png');
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		-webkit-backface-visibility: hidden;
		transition: all 0.35s ease-in-out;
	}
	.navbar-nav > li > a:hover:after, .navbar-nav > li > a.active:after, .single-blog .navbar-nav > li.nav-item-65 > a:after {
		transform: translateX(-50%) scale(1);
	}
	.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;
		background-color: transparent;
	}
}

