@charset "utf-8";
/* CSS Document */

/* mobiel menu */

@media (max-width: 767.98px) {
	.navbar-brand {
		position: relative;
		height: auto;
		margin: 0 0 0 -12px;
	}
	.navbar-brand img {
		height: 50px;
		width: auto;
	}
	.navbar {
		position: fixed;
		width: 100%;
		top: 0;
		padding: 0;
		border: none;
		background-color: var(--bg);
		border-radius: 0;
		min-height: 0;
		z-index: 10;
	}
	.navbar > .container-fluid {
		flex-direction: row-reverse;
	}
	#navbar {
	}
	#navbar ul {
		min-height: calc(100dvh - 60px);
		justify-content: center;
		align-items: center;
		gap: 4dvh;
	}
	#navbar ul li {
	}
	.navbar-nav > li > a, .navbar-nav > li > a:focus {
		text-decoration: none;
		text-transform: lowercase;
		font-weight: bold;
		font-size: 30px;
		line-height: 1.4;
		color: var(--tekst);
		font-family: "Montserrat", sans-serif;
		padding: 0 10px !important;
		text-align: center;
	}
	.navbar-nav > li > a:hover, .navbar-nav > li > a.active, .navbar-nav > li > a.active:hover, .navbar-nav > li > a.active:focus, .page-id-95 .navbar-nav > li.nav-item-57 > a, .page-id-97 .navbar-nav > li.nav-item-57 > a, .single-project .navbar-nav > li.nav-item-57 > a {
		color: var(--bg) !important;
		background-color: var(--tekst);
	}
	
	/* specifiek voor mobiel */
	.navbar-toggler {
		position: relative;
		display: inline-block;
		margin: 0 -12px 0 0;
		padding: 10px;
		border: none;
		background-color: var(--bg);
	}

	.navbar-toggler:hover, .navbar-toggler:focus {
		background-color: var(--bg);
		outline: none;
		box-shadow: none;
	}

	.navbar-toggler .navbar-toggler-icon {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='3' stroke-linecap='butt' stroke-linejoin='arcs'%3E%3Cline x1='3' y1='12' x2='21' y2='12'%3E%3C/line%3E%3Cline x1='3' y1='6' x2='21' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='18' x2='21' y2='18'%3E%3C/line%3E%3C/svg%3E");
	}
	.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='3' stroke-linecap='butt' stroke-linejoin='arcs'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
	}
}

/* groot menu */

@media (min-width: 768px) {
	.navbar-brand {
		position: relative;
		height: auto;
		margin: 0 !important;
		padding: 0 !important;
		z-index: 11;
	}
	.navbar-brand img {
		height: 80px;
		width: auto;
		margin-left: -12px;
	}
	.navbar {
		position: relative;
		width: 100%;
		max-width: 1224px;
		border: none;
		background-color: var(--bg);
		padding: 10px 0 0 0;
		margin: 0 auto;
		-webkit-border-radius: 0;
		border-radius: 0;
		z-index: 10;
	}
	#navbar {
		padding: 0;
	}
	#navbar ul.navbar-nav {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
		flex-wrap: nowrap;
		gap: 2vw;
	}
	#navbar ul li {
		position: relative;
		display: block;
	}
	.navbar-nav > li > a {
		text-decoration: none;
		text-transform: lowercase;
		font-weight: bold;
		font-size: 25px;
		color: var(--tekst);
		font-family: "Montserrat", sans-serif;
		background-color: transparent;
		padding: 0 6px !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: var(--tekst) !important;
		background-color: transparent;
	}

	.navbar-nav > li > a:before {
		content: "";
		display: block;
		position: absolute;
		width: 0;
		height: 70%;
		left: 0;
		top: 17%;
		background-color: var(--bg);
		mix-blend-mode: difference;
		-webkit-transform-origin: left;
		transform-origin: left;
		-webkit-transition: width 0.35s ease-out;
		transition: width 0.35s ease-out;
	}
	.navbar-nav > li > a:hover:before, .navbar-nav > li > a.active:before, .page-id-95 .navbar-nav > li.nav-item-57 > a:before, .page-id-97 .navbar-nav > li.nav-item-57 > a:before, .single-project .navbar-nav > li.nav-item-57 > a:before {
		width: 100%;
	}
}

