.header {
	with: 100%;
	border-bottom: 1px solid #ccc;
	padding: 15px 0;
}

.header img {
	display: block;
	height: auto;
	max-width: 100%;
}

.header-inner {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 0 38px;
	box-sizing: border-box;
}

@media(max-width: 960px) {
	.header-inner {
		padding: 0 15px;
	}
}

.header-logo {
	padding-right: 30px;
	border-right: 1px solid #ccc;
}

@media(max-width: 960px) {
	.header-logo img {
		max-width: 145px;
	}
}

.header-nav {
	flex: 1;
	padding-left: 20px;
}

.header-nav #menu_toggle {
	display: none;
}

@media(max-width: 960px) {
	.header-nav #menu_toggle {
		float: right;
		display: flex;
		gap: 10px;
		align-items: center;
		border: 1px solid #ccc;
		padding: 10px 12px 10px 12px;
		cursor: pointer;
		outline: 0;
	}
}

nav {
	display: flex;
	align-items: center;
	gap: 20px;
}

@media(max-width: 960px) {
	nav {
		display: none;


		position: fixed;
		top: 81px;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 99;
		background: #ddd;

		flex-direction: column;
		padding: 40px 15px 30px 15px;
		align-items: center;
		text-align: center;
	}
}

.nav-extras {
	display: flex;
	align-items: center;
	gap: 30px;

	margin-left: auto;
}

@media(max-width: 960px) {
	.nav-extras {
		margin: 30px 0 0 0;
		gap: 20px;
		flex-direction: column;
	}
}

.nav-extras a {
	border: 0 !important;
}

nav ul {
	display: flex;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
}

@media(max-width: 960px) {
	nav ul {
		display: block;
	}
}

nav li {
	padding: 0 13px;
}

nav a {
	color: #000;
	display: block;
	line-height: normal;
	text-decoration: none;
	padding: 4px 0;
	border-bottom: 1px solid #eee;
}

@media(max-width: 960px) {
	nav a {
/*		color: #fff;*/
		font-size: 16px;
		display: inline-block;
		border-bottom: 1px solid #c4c4c4;
	}
}

nav a:hover,
.current-page-ancestor a,
.current-menu-item a {
	border-bottom-color: #000;
}

@media(max-width: 960px) {
	nav a:hover,
	.current-page-ancestor a,
	.current-menu-item a {
		border-bottom-color: #6c6c6c;
	}	
}

.header-nav #menu_toggle svg path.close {
	display: none;
}

@media(max-width: 960px) {

	.header.menu-visible nav {
		display: block;
	}

	.header.menu-visible .header-nav #menu_toggle svg path.close {
		display: block;
	}

	.header.menu-visible .header-nav #menu_toggle svg path.open {
		display: none;
	}

}