@font-face	{
	font-family: 'Open Sans';
	src: url('/assets/fonts/OpenSans-Light.woff2') format('woff2');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face	{
	font-family: 'Open Sans';
	src: url('/assets/fonts/OpenSans-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face	{
	font-family: 'Open Sans';
	src: url('/assets/fonts/OpenSans-Italic.woff2') format('woff2');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face	{
	font-family: 'Open Sans';
	src: url('/assets/fonts/OpenSans-SemiBold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Open Sans';
	src: url('/assets/fonts/OpenSans-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

html, body {
	scroll-behavior: smooth;
	margin-top: 180px;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #333;
	background: #eaede3 url('/assets/images/caron-birds.svg') fixed 20px calc(100vh - 271px);
	background-repeat: no-repeat;
	background-size: 256px;
	opacity: 1;
	transition: opacity 0.25s ease;	
}

body.fade-out {
	opacity: 0;
}

b, strong {
 font-weight: 700;
}

i,em {
 font-style: italic;
}

a {
	text-decoration: none;
	color: #8aac3e;
}

a:hover {
	color: #333;
	transition: color 0.25s ease;
}


h1, h2, h3 {
	color: #8aac3e;
}

h1 {
	border-bottom: 1px solid #eceee8;
	font-weight: 300;
}

h2, h3 {
	font-weight: 600;
}

hr {
	display: block;
	height: 1px;
	background-color: #eceee8;
	border: 0px none;
}

time {
	display: block;
	width: 100%;
	color: #b1b4aa;
	font-size: 0.9em;
	font-weight: 400;
	margin-top: -1em;
}


section, main {
	margin: 0 auto;
	max-width: 1100px;
	overflow: hidden;
}

section {
	padding: 0.8rem;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}

header section {
	max-width: 100%;
	padding: 0.8rem;
	padding-left: 2rem;
	padding-right: 2rem;
}

header .top {
	background: #eceee8;
	font-weight: 300;
	text-align: right;
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
}

header .top a {
	margin-left: 20px;
	color: #686868;
	font-weight: 300;	
}

header .top a.selected {
	color: #8aac3e;	
	font-weight: 400;
}

header .top a:hover {
	color: #8aac3e;
}

header .top img {
	width: 22px;
	margin-bottom: -4px;
	opacity: 0.7;
}

header .top input {
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	font-size: 14px;	
	color: #686868;
	float: right;
	margin-left: 16px;
	padding: 4px;
	padding-left: 12px;
	padding-right: 12px;
	border-radius: 16px;
	margin-top: -3px;
	border: 1px solid #9b9b92;
	max-width: 30%;
}


header .main {
	background: #8aac3e;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header .main img {
	height: 88px;
}

header nav a {
	text-transform: uppercase;
	margin-left: 20px;
	color: #eceee8;
	font-weight: 300;
	font-size: 1.2em;
}

header nav a.selected {
	color: #fff;
	font-weight: 400;
}

header nav a:hover {
	color: #fff;
}

header .main input {
	display: none;
}

header label {
	display: none;
	font-size: 28px;
	cursor: pointer;
	color: #fff;
}

@media (max-width: 1000px) {

	header nav a {
		font-size: 1.1em;
	}

}

@media (max-width: 860px) {

	header label {
		display: block;
	}
	
	header nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #8aac3e;
		text-align: center;
	}

	header nav a {
		display: block;
		padding: 12px;
		margin: 0;
		font-size: 1.2em;
	}

	header input:checked ~ nav {
		display: block;
	}

}

footer {
	width: 100%;
	margin-top: 1rem;
	font-size: 0.9em;
	padding-top: 10px;
	padding-bottom: 10px;
}

footer a {
	color: #333;
	text-decoration: underline;
}

footer a:hover {
	color: #8aac3e;
	text-decoration: none;
}

@media (min-width: 600px) {
	footer {
		margin: 0;
		bottom: 0px;
		position: fixed;
		background-color: #e1e4d9;
	}
	
	main {
		padding-bottom: 60px;
	}	
}

article {
	background-color: #fff;
	border-radius: 8px;
	padding: 0.8rem;
	margin: 1rem;
}

article p a:hover {
	text-decoration: underline;
} 

article p img {
	margin: 1rem;	
	width: 60%;
	margin-left: 20%;
	margin-right: 20%;	
	border-radius: 8px;
}

article p.logo {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	height: 150px;
	overflow: hidden;
}

article p.logo img {
	width: 80%;
	margin: 0px;
	margin-left: 10%;
	max-height: 140px;
	display: block;
}

article p {
	text-align: justify;
}

article p.ql-align-justify {
	text-align: justify;
}

article p.ql-align-center {
	text-align: center;
}

article p small,
article p .ql-size-small {
	display: block;
	width: 100%;
	font-size: 14px;
	text-align: center;
	margin-top: -0.9em;
	font-style: italic;
} 

article address p {
	display: table-row;
	text-align: left;
	font-style: normal;
}

article address p small {
	display: inline-block;
	width: auto;
	text-align: inherit;
	margin-top: auto;
	font-style: inherit;
} 

article address strong,
article address span {
	display: table-cell;
	font-weight: 400;
	padding: 6px;
	padding-left: 12px;
	padding-right: 12px;
	border-top: 1px solid #ddd;
}

article table {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;	
	
}

article td {
	font-size: 0.9em;
	padding: 3px;
	border-bottom: 1px solid #eceee8;
}

article form ul,
article form li {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
	margin-bottom: 1em;

}

article form li {
	margin-top: 0.4em;
	margin-bottom: 0.4em;

}

article form label {
	font-size: 0.85em;
	color: #9b9b92;
	width: 100%;

}


article form input,
article form button,
article form textarea {
	font-family: 'Open Sans', sans-serif;
	font-size: 1em;
	padding: 8px;
	border-radius: 4px;
}

article form input[type=text],
article form textarea {
	width: 100%;
	border: 1px solid #9b9b92;
}

article form button {
	cursor: pointer;
	padding-left: 16px;
	padding-right: 16px;
	border: 0px none;
	background-color: #8aac3e;
	color: #fff;
	margin-top: 1em;
	margin-bottom: 1em;
}

article form button:hover {
	background-color: #999;
	transition: background-color 0.25s ease;
}

input::placeholder {
	color: #ccc;
}

article form textarea {
	min-height: 5em;
}


article.transparent {
	background-color: transparent;
	padding-top: 0px;
	padding-bottom: 0px;
}

@media (min-width: 781px) {

	article.half {
		overflow: hidden;
	}
	
	article.half h2 {
		font-weight: 300;
	}
	
	article.half div.left,
	article.half div.right {
		width: 46%;
		box-sizing: border-box;
		float: left;
	}
	
	article.half div.left {
		border-right: 1px solid #e1e4d9;	
		padding-right: 2%;
		margin-right: -1px;
	}
	
	article.half div.right {
		border-left: 1px solid #e1e4d9;
		padding-left: 2%;
	}

}

@media (max-width: 780px) {

	article form {
		width: 97%;
	}

}

article.grid {
	background-color: transparent;
	padding: 0px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.grid div {
	box-sizing: border-box;
	scroll-margin-top: 220px;
	background-color: #fff;
	border-radius: 8px;
	padding: 0.8rem;
	font-size: 0.9em;
}

.grid.inverse div {
	background-color: #8aac3e;
	color: #fff;
}

.grid.inverse h1,
.grid.inverse h2,
.grid.inverse h3,
.grid.inverse a {
	color: #fff;
}

.grid div h1 {
	cursor: pointer;
	display: block;
	font-size: 1.4em;
	font-weight: 300;
}

.grid div h2 {
	font-size: 1.2em;
}

.grid div h2 a {
	font-size: 1.3em;
	font-weight: 300;
}

.grid div time {
	margin-top: -5px;
}

.grid div figure {
	cursor: pointer;
	width: 100%;
	height: 240px;
	margin: 0px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	background-color: #f5f5f5;
}

.grid div figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

@media (max-width: 900px) {
	article.grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.grid div figure {
		height: 220px;
	}
}

@media (max-width: 600px) {
	article.grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.grid div figure {
		height: 300px;
	}
}

.hero {
	position: relative;
	width: 100%;
	z-index: -1;
	margin-top: -34px;
	filter: brightness(115%) contrast(55%);
	margin-bottom: -12%;
}

.red {
	color: #da0000;
}

.green {
	color: #71951e;
}