@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap);

body {
	background-color: #fff;
	font-family: 'Open Sans', sans-serif;
}

.t-primary-bgcolor {
	background-color: #333;
}

a {
	color: #bb561b;
}

html,
body {
	width: 100% !important;
	margin: 0;
	padding: 0;
}

a:hover {
	color: #2397d4;
}

.header-wrapper {
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	width: 100vw;
	background-color: white;
	border-bottom: 1px solid #ddd;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	box-sizing: border-box;
	z-index: 1;
}


/* Title row */
.header-top {
	display: flex;
	justify-content: center;
	padding: 10px 70px 0 70px;
}

.page-title {
	font-size: 28px;
	font-weight: 700;
	color: #bb561b;
	margin-bottom: 8px;
	margin-right: 10px;
	/* spacing between title and nav */
}

.header-content-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-end;
	flex: 1;
}

/* Bottom row: logo and nav */
.header-bottom {

	display: flex;
	align-items: flex-end;
	padding: 10px 40px 10px 100px;
	width: 100%;
	box-sizing: border-box;
}


.header__logo {
	max-height: 100px;
	height: auto;
	width: auto;
}

.header__logo img {
	max-height: 100px;
}

.header__logo {
	flex-shrink: 0;
}

.header__nav {
	display: flex;
	justify-content: flex-end;
	flex: 1;
}

.header__nav-menu {
	display: flex;
	gap: 40px;
	margin: 0;
	padding: 0;
}


.header__nav-menu a {
	text-decoration: none;
	color: #4e6e1e;
	font-weight: 600;
	font-size: 24px;
	padding: 10px;
	transition: color 0.3s;
}

.header__nav-menu a:hover,
.header__nav-menu a:focus {
	color: #4e6e1e;
	text-decoration: underline;
	text-decoration-thickness: 6px;
	text-underline-offset: 10px;
}