@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Raleway:400,800,900");
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400');

:root {
  --titlecolor: #006ba6;			/* blue */
  --subheadercol: #000000;  		/* black */
  --articleheadercol: #006ba6;  	/* blue */
  --articlesbgcol: #ffffff;  		/* white */
  --articleheaderbgcol: #ffffff;  	/* white */
  --textcolor: #000000;  			/* black */
  --mobilecolor: #ffd900;  			/* yellow */
  --mobmenubrdrcol: #3F3F49;  		/* blueish grey */
  --backgroundcolor: #F4F4F4;  		/* light grey */
  --hovercolor: #2ebaae;  			/* light teal */
  --blue: #006ba6;
  --yellow: #ffd900;    
  --black: #000000;
  --white: #ffffff;  
  --darkgrey: #3c3b3b;
  --mediumgrey: #aaaaaa;
  --blueishgrey: #3F3F49;
  --lightgrey: #F4F4F4;
  --lightteal: #2ebaae;  
}

html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;	
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;}

* {
  box-sizing: border-box;
}

html, body {
	line-height: 1;
	overflow-x: hidden;
	max-width: 100%;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

	blockquote:before, blockquote:after, q:before, q:after {
		content: '';
		content: none;
	}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

mark {
	background-color: transparent;
	color: inherit;
}

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input, select, textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

/* Basic */

	@-ms-viewport {
		width: device-width;
	}

	body {
		-ms-overflow-style: scrollbar;
	}

	@media screen and (max-width: 480px) {

		html, body {
			min-width: 320px;
		}

	}

	html {
		box-sizing: border-box;
	}

	*, *:before, *:after {
		box-sizing: inherit;
	}

	body {
		background: var(--backgroundcolor);
	}

		body.is-preload *, body.is-preload *:before, body.is-preload *:after {
			-moz-animation: none !important;
			-webkit-animation: none !important;
			-ms-animation: none !important;
			animation: none !important;
			-moz-transition: none !important;
			-webkit-transition: none !important;
			-ms-transition: none !important;
			transition: none !important;
		}

/* Type */

	body, input, select, textarea {
		color: var(--textcolor);
		font-family: "Source Sans Pro", Helvetica, sans-serif;
		font-size: 14pt;
		font-weight: 400;
		line-height: 1.75;
	}

		@media screen and (max-width: 1680px) {

			body, input, select, textarea {
				font-size: 12pt;
			}

		}

		@media screen and (max-width: 1280px) {

			body, input, select, textarea {
				font-size: 12pt;
			}

		}

		@media screen and (max-width: 980px) {

			body, input, select, textarea {
				font-size: 12pt;
			}

		}

		@media screen and (max-width: 736px) {

			body, input, select, textarea {
				font-size: 12pt;
			}

		}

		@media screen and (max-width: 480px) {

			body, input, select, textarea {
				font-size: 12pt;
			}

		}

	/* Links styling - option 1 */
	/*a {
		-moz-transition: color 0.2s ease, border-bottom-color 0.2s ease;
		-webkit-transition: color 0.2s ease, border-bottom-color 0.2s ease;
		-ms-transition: color 0.2s ease, border-bottom-color 0.2s ease;
		transition: color 0.2s ease, border-bottom-color 0.2s ease;
		border-bottom: dotted 1px rgba(160, 160, 160, 0.65);
		color: inherit;
		text-decoration: none;
	}

		a:before {
			-moz-transition: color 0.2s ease;
			-webkit-transition: color 0.2s ease;
			-ms-transition: color 0.2s ease;
			transition: color 0.2s ease;
		}

		a:hover {
			border-bottom-color: transparent;
			color: var(--hovercolor) !important;
		}

			a:hover:before {
				color: var(--hovercolor) !important;
			}*/	
	
	/* Links styling - option 2 */
	/*a {
	  box-shadow: inset 0 0 0 0 #54b3d6;
	  color: #54b3d6;
	  padding: 0 .25rem;
	  margin: 0 -.25rem;
	  transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
	}
	
		a:hover {
		  color: #fff;
		  box-shadow: inset 200px 0 0 0 #54b3d6;;
		}*/
	
	/* Links styling - option 3 */
	a {
	  position: relative;
	  display: inline-block;
	  color: #000;
	  text-decoration: none;
	  overflow: hidden;
	  z-index: 1;	  
	}
	
	#main a {
	  transition: color 0.3s ease;
	}

		a:not(header a)::before {
		  content: '';
		  position: absolute;
		  inset: 0;
		  background: #54b3d6;
		  transform: scaleX(0);
		  transform-origin: left;
		  transition: transform 0.3s ease;
		  z-index: -1;
		}

		a:hover::before {
		  transform: scaleX(1);
		}

		a:hover {
		  color: white;
		}

	strong, b {
		color: var(--darkgrey);
		font-weight: 700;
	}

	em, i {
		font-style: italic;
	}

	p {
		margin: 0 0 2em 0;
		font-size: 1.4em;
	}

	h1, h2, h3, h4, h5, h6 {		
		font-family: "Raleway", Helvetica, sans-serif;
		font-weight: 800;
		letter-spacing: 0.10em;
		line-height: 1.65;
		margin: 0 0 5px 0;
		text-transform: uppercase;
	}
	
	h1 {
		color: var(--titlecolor);
		line-height: 1;
	}
	
	h2, h3, h4, h5, h6 {
		color: var(--articleheadercol);
	}

		h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
			color: inherit;
			border-bottom: 0;
		}

	h2 {
		/*font-size: 1.1em;*/
		font-size: 3em;
	}

	h3 {
		/*font-size: 0.9em;*/
		font-size: 2em;
	}

	h4 {
		/*font-size: 0.7em;*/
		font-size: 1.5em;
	}

	h5 {
		/*font-size: 0.7em;*/
		font-size: 1.3em;
	}

	h6 {
		/*font-size: 0.7em;*/
		font-size: 1.2em;
	}
	
	.subheadercol {
		color:var(--subheadercol) !important;
		font-weight: 500 !important;
	}
	
	@media screen and (max-width: 1120px) and (min-width: 980px) {
		h3 {
			font-size: 1.8em !important;
		}
	}
	
	@media screen and (max-width: 980px) {	
		h2, h3, h4, h5, h6 {
			max-width: 90%;
			justify-self: center;
			text-align: center;
		}
	}

	sub {
		font-size: 0.8em;
		position: relative;
		top: 0.5em;
	}

	sup {
		font-size: 0.8em;
		position: relative;
		top: -0.5em;
	}

	blockquote {
		border-left: solid 4px rgba(160, 160, 160, 0.3);
		font-style: italic;
		margin: 0 0 2em 0;
		padding: 0.5em 0 0.5em 2em;
	}

	code {
		background: rgba(160, 160, 160, 0.075);
		border: solid 1px rgba(160, 160, 160, 0.3);
		font-family: "Courier New", monospace;
		font-size: 0.9em;
		margin: 0 0.25em;
		padding: 0.25em 0.65em;
	}

	pre {
		-webkit-overflow-scrolling: touch;
		font-family: "Courier New", monospace;
		font-size: 0.9em;
		margin: 0 0 2em 0;
	}

		pre code {
			display: block;
			line-height: 1.75em;
			padding: 1em 1.5em;
			overflow-x: auto;
		}

	hr {
		border: 0;
		border-bottom: solid 1px rgba(160, 160, 160, 0.3);
		margin: 2em 0;
	}

		hr.major {
			margin: 3em 0;
		}

	.align-left {
		text-align: left;
	}

	.align-center {
		text-align: center;
	}

	.align-right {
		text-align: right;
	}

/* Animation */
[data-animate] { 
  animation-fill-mode: both;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
}

/* Default: no animation name until in-view */
[data-animate]:not(.in-view) {
  opacity: 0;
  animation-name: none;
}

.in-view {
  animation-fill-mode: both;
}

.in-view.fade-in {
  animation-name: fadeIn;
}

.in-view.fade-in-right {
  animation-name: fadeInRight;
}

.in-view.fade-in-left {
  animation-name: fadeInLeft;
}

.in-view.fade-in-top {
  animation-name: fadeInTop;
}

.in-view.fade-in-bottom {
  animation-name: fadeInBottom;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-100%); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInTop {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInBottom {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}


/* Row */
	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

		.row > * {
			box-sizing: border-box;
		}

		.row.gtr-uniform > * > :last-child {
			margin-bottom: 0;
		}

		.row.aln-left {
			justify-content: flex-start;
		}

		.row.aln-center {
			justify-content: center;
		}

		.row.aln-right {
			justify-content: flex-end;
		}

		.row.aln-top {
			align-items: flex-start;
		}

		.row.aln-middle {
			align-items: center;
		}

		.row.aln-bottom {
			align-items: flex-end;
		}

		.row > .imp {
			order: -1;
		}

		.row > .col-1 {
			width: 8.33333%;
		}

		.row > .off-1 {
			margin-left: 8.33333%;
		}

		.row > .col-2 {
			width: 16.66667%;
		}

		.row > .off-2 {
			margin-left: 16.66667%;
		}

		.row > .col-3 {
			width: 25%;
		}

		.row > .off-3 {
			margin-left: 25%;
		}

		.row > .col-4 {
			width: 33.33333%;
		}

		.row > .off-4 {
			margin-left: 33.33333%;
		}

		.row > .col-5 {
			width: 41.66667%;
		}

		.row > .off-5 {
			margin-left: 41.66667%;
		}

		.row > .col-6 {
			width: 50%;
		}

		.row > .off-6 {
			margin-left: 50%;
		}

		.row > .col-7 {
			width: 58.33333%;
		}

		.row > .off-7 {
			margin-left: 58.33333%;
		}

		.row > .col-8 {
			width: 66.66667%;
		}

		.row > .off-8 {
			margin-left: 66.66667%;
		}

		.row > .col-9 {
			width: 75%;
		}

		.row > .off-9 {
			margin-left: 75%;
		}

		.row > .col-10 {
			width: 83.33333%;
		}

		.row > .off-10 {
			margin-left: 83.33333%;
		}

		.row > .col-11 {
			width: 91.66667%;
		}

		.row > .off-11 {
			margin-left: 91.66667%;
		}

		.row > .col-12 {
			width: 100%;
		}

		.row > .off-12 {
			margin-left: 100%;
		}

		.row.gtr-0 {
			margin-top: 0;
			margin-left: 0em;
		}

			.row.gtr-0 > * {
				padding: 0 0 0 0em;
			}

			.row.gtr-0.gtr-uniform {
				margin-top: 0em;
			}

				.row.gtr-0.gtr-uniform > * {
					padding-top: 0em;
				}

		.row.gtr-25 {
			margin-top: 0;
			margin-left: -0.25em;
		}

			.row.gtr-25 > * {
				padding: 0 0 0 0.25em;
			}

			.row.gtr-25.gtr-uniform {
				margin-top: -0.25em;
			}

				.row.gtr-25.gtr-uniform > * {
					padding-top: 0.25em;
				}

		.row.gtr-50 {
			margin-top: 0;
			margin-left: -0.5em;
		}

			.row.gtr-50 > * {
				padding: 0 0 0 0.5em;
			}

			.row.gtr-50.gtr-uniform {
				margin-top: -0.5em;
			}

				.row.gtr-50.gtr-uniform > * {
					padding-top: 0.5em;
				}

		.row {
			margin-top: 0;
			margin-left: -1em;
		}

			.row > * {
				padding: 0 0 0 1em;
			}

			.row.gtr-uniform {
				margin-top: -1em;
			}

				.row.gtr-uniform > * {
					padding-top: 1em;
				}

		.row.gtr-150 {
			margin-top: 0;
			margin-left: -1.5em;
		}

			.row.gtr-150 > * {
				padding: 0 0 0 1.5em;
			}

			.row.gtr-150.gtr-uniform {
				margin-top: -1.5em;
			}

				.row.gtr-150.gtr-uniform > * {
					padding-top: 1.5em;
				}

		.row.gtr-200 {
			margin-top: 0;
			margin-left: -2em;
		}

			.row.gtr-200 > * {
				padding: 0 0 0 2em;
			}

			.row.gtr-200.gtr-uniform {
				margin-top: -2em;
			}

				.row.gtr-200.gtr-uniform > * {
					padding-top: 2em;
				}

		@media screen and (max-width: 1680px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-xlarge {
					order: -1;
				}

				.row > .col-1-xlarge {
					width: 8.33333%;
				}

				.row > .off-1-xlarge {
					margin-left: 8.33333%;
				}

				.row > .col-2-xlarge {
					width: 16.66667%;
				}

				.row > .off-2-xlarge {
					margin-left: 16.66667%;
				}

				.row > .col-3-xlarge {
					width: 25%;
				}

				.row > .off-3-xlarge {
					margin-left: 25%;
				}

				.row > .col-4-xlarge {
					width: 33.33333%;
				}

				.row > .off-4-xlarge {
					margin-left: 33.33333%;
				}

				.row > .col-5-xlarge {
					width: 41.66667%;
				}

				.row > .off-5-xlarge {
					margin-left: 41.66667%;
				}

				.row > .col-6-xlarge {
					width: 50%;
				}

				.row > .off-6-xlarge {
					margin-left: 50%;
				}

				.row > .col-7-xlarge {
					width: 58.33333%;
				}

				.row > .off-7-xlarge {
					margin-left: 58.33333%;
				}

				.row > .col-8-xlarge {
					width: 66.66667%;
				}

				.row > .off-8-xlarge {
					margin-left: 66.66667%;
				}

				.row > .col-9-xlarge {
					width: 75%;
				}

				.row > .off-9-xlarge {
					margin-left: 75%;
				}

				.row > .col-10-xlarge {
					width: 83.33333%;
				}

				.row > .off-10-xlarge {
					margin-left: 83.33333%;
				}

				.row > .col-11-xlarge {
					width: 91.66667%;
				}

				.row > .off-11-xlarge {
					margin-left: 91.66667%;
				}

				.row > .col-12-xlarge {
					width: 100%;
				}

				.row > .off-12-xlarge {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0;
					margin-left: 0em;
				}

					.row.gtr-0 > * {
						padding: 0 0 0 0em;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0em;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0em;
						}

				.row.gtr-25 {
					margin-top: 0;
					margin-left: -0.25em;
				}

					.row.gtr-25 > * {
						padding: 0 0 0 0.25em;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -0.25em;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 0.25em;
						}

				.row.gtr-50 {
					margin-top: 0;
					margin-left: -0.5em;
				}

					.row.gtr-50 > * {
						padding: 0 0 0 0.5em;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -0.5em;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 0.5em;
						}

				.row {
					margin-top: 0;
					margin-left: -1em;
				}

					.row > * {
						padding: 0 0 0 1em;
					}

					.row.gtr-uniform {
						margin-top: -1em;
					}

						.row.gtr-uniform > * {
							padding-top: 1em;
						}

				.row.gtr-150 {
					margin-top: 0;
					margin-left: -1.5em;
				}

					.row.gtr-150 > * {
						padding: 0 0 0 1.5em;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -1.5em;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 1.5em;
						}

				.row.gtr-200 {
					margin-top: 0;
					margin-left: -2em;
				}

					.row.gtr-200 > * {
						padding: 0 0 0 2em;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -2em;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 2em;
						}

		}

		@media screen and (max-width: 1280px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-large {
					order: -1;
				}

				.row > .col-1-large {
					width: 8.33333%;
				}

				.row > .off-1-large {
					margin-left: 8.33333%;
				}

				.row > .col-2-large {
					width: 16.66667%;
				}

				.row > .off-2-large {
					margin-left: 16.66667%;
				}

				.row > .col-3-large {
					width: 25%;
				}

				.row > .off-3-large {
					margin-left: 25%;
				}

				.row > .col-4-large {
					width: 33.33333%;
				}

				.row > .off-4-large {
					margin-left: 33.33333%;
				}

				.row > .col-5-large {
					width: 41.66667%;
				}

				.row > .off-5-large {
					margin-left: 41.66667%;
				}

				.row > .col-6-large {
					width: 50%;
				}

				.row > .off-6-large {
					margin-left: 50%;
				}

				.row > .col-7-large {
					width: 58.33333%;
				}

				.row > .off-7-large {
					margin-left: 58.33333%;
				}

				.row > .col-8-large {
					width: 66.66667%;
				}

				.row > .off-8-large {
					margin-left: 66.66667%;
				}

				.row > .col-9-large {
					width: 75%;
				}

				.row > .off-9-large {
					margin-left: 75%;
				}

				.row > .col-10-large {
					width: 83.33333%;
				}

				.row > .off-10-large {
					margin-left: 83.33333%;
				}

				.row > .col-11-large {
					width: 91.66667%;
				}

				.row > .off-11-large {
					margin-left: 91.66667%;
				}

				.row > .col-12-large {
					width: 100%;
				}

				.row > .off-12-large {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0;
					margin-left: 0em;
				}

					.row.gtr-0 > * {
						padding: 0 0 0 0em;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0em;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0em;
						}

				.row.gtr-25 {
					margin-top: 0;
					margin-left: -0.25em;
				}

					.row.gtr-25 > * {
						padding: 0 0 0 0.25em;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -0.25em;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 0.25em;
						}

				.row.gtr-50 {
					margin-top: 0;
					margin-left: -0.5em;
				}

					.row.gtr-50 > * {
						padding: 0 0 0 0.5em;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -0.5em;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 0.5em;
						}

				.row {
					margin-top: 0;
					margin-left: -1em;
				}

					.row > * {
						padding: 0 0 0 1em;
					}

					.row.gtr-uniform {
						margin-top: -1em;
					}

						.row.gtr-uniform > * {
							padding-top: 1em;
						}

				.row.gtr-150 {
					margin-top: 0;
					margin-left: -1.5em;
				}

					.row.gtr-150 > * {
						padding: 0 0 0 1.5em;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -1.5em;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 1.5em;
						}

				.row.gtr-200 {
					margin-top: 0;
					margin-left: -2em;
				}

					.row.gtr-200 > * {
						padding: 0 0 0 2em;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -2em;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 2em;
						}

		}

		@media screen and (max-width: 980px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-medium {
					order: -1;
				}

				.row > .col-1-medium {
					width: 8.33333%;
				}

				.row > .off-1-medium {
					margin-left: 8.33333%;
				}

				.row > .col-2-medium {
					width: 16.66667%;
				}

				.row > .off-2-medium {
					margin-left: 16.66667%;
				}

				.row > .col-3-medium {
					width: 25%;
				}

				.row > .off-3-medium {
					margin-left: 25%;
				}

				.row > .col-4-medium {
					width: 33.33333%;
				}

				.row > .off-4-medium {
					margin-left: 33.33333%;
				}

				.row > .col-5-medium {
					width: 41.66667%;
				}

				.row > .off-5-medium {
					margin-left: 41.66667%;
				}

				.row > .col-6-medium {
					width: 50%;
				}

				.row > .off-6-medium {
					margin-left: 50%;
				}

				.row > .col-7-medium {
					width: 58.33333%;
				}

				.row > .off-7-medium {
					margin-left: 58.33333%;
				}

				.row > .col-8-medium {
					width: 66.66667%;
				}

				.row > .off-8-medium {
					margin-left: 66.66667%;
				}

				.row > .col-9-medium {
					width: 75%;
				}

				.row > .off-9-medium {
					margin-left: 75%;
				}

				.row > .col-10-medium {
					width: 83.33333%;
				}

				.row > .off-10-medium {
					margin-left: 83.33333%;
				}

				.row > .col-11-medium {
					width: 91.66667%;
				}

				.row > .off-11-medium {
					margin-left: 91.66667%;
				}

				.row > .col-12-medium {
					width: 100%;
				}

				.row > .off-12-medium {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0;
					margin-left: 0em;
				}

					.row.gtr-0 > * {
						padding: 0 0 0 0em;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0em;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0em;
						}

				.row.gtr-25 {
					margin-top: 0;
					margin-left: -0.25em;
				}

					.row.gtr-25 > * {
						padding: 0 0 0 0.25em;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -0.25em;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 0.25em;
						}

				.row.gtr-50 {
					margin-top: 0;
					margin-left: -0.5em;
				}

					.row.gtr-50 > * {
						padding: 0 0 0 0.5em;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -0.5em;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 0.5em;
						}

				.row {
					margin-top: 0;
					margin-left: -1em;
				}

					.row > * {
						padding: 0 0 0 1em;
					}

					.row.gtr-uniform {
						margin-top: -1em;
					}

						.row.gtr-uniform > * {
							padding-top: 1em;
						}

				.row.gtr-150 {
					margin-top: 0;
					margin-left: -1.5em;
				}

					.row.gtr-150 > * {
						padding: 0 0 0 1.5em;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -1.5em;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 1.5em;
						}

				.row.gtr-200 {
					margin-top: 0;
					margin-left: -2em;
				}

					.row.gtr-200 > * {
						padding: 0 0 0 2em;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -2em;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 2em;
						}

		}

		@media screen and (max-width: 736px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-small {
					order: -1;
				}

				.row > .col-1-small {
					width: 8.33333%;
				}

				.row > .off-1-small {
					margin-left: 8.33333%;
				}

				.row > .col-2-small {
					width: 16.66667%;
				}

				.row > .off-2-small {
					margin-left: 16.66667%;
				}

				.row > .col-3-small {
					width: 25%;
				}

				.row > .off-3-small {
					margin-left: 25%;
				}

				.row > .col-4-small {
					width: 33.33333%;
				}

				.row > .off-4-small {
					margin-left: 33.33333%;
				}

				.row > .col-5-small {
					width: 41.66667%;
				}

				.row > .off-5-small {
					margin-left: 41.66667%;
				}

				.row > .col-6-small {
					width: 50%;
				}

				.row > .off-6-small {
					margin-left: 50%;
				}

				.row > .col-7-small {
					width: 58.33333%;
				}

				.row > .off-7-small {
					margin-left: 58.33333%;
				}

				.row > .col-8-small {
					width: 66.66667%;
				}

				.row > .off-8-small {
					margin-left: 66.66667%;
				}

				.row > .col-9-small {
					width: 75%;
				}

				.row > .off-9-small {
					margin-left: 75%;
				}

				.row > .col-10-small {
					width: 83.33333%;
				}

				.row > .off-10-small {
					margin-left: 83.33333%;
				}

				.row > .col-11-small {
					width: 91.66667%;
				}

				.row > .off-11-small {
					margin-left: 91.66667%;
				}

				.row > .col-12-small {
					width: 100%;
				}

				.row > .off-12-small {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0;
					margin-left: 0em;
				}

					.row.gtr-0 > * {
						padding: 0 0 0 0em;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0em;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0em;
						}

				.row.gtr-25 {
					margin-top: 0;
					margin-left: -0.25em;
				}

					.row.gtr-25 > * {
						padding: 0 0 0 0.25em;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -0.25em;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 0.25em;
						}

				.row.gtr-50 {
					margin-top: 0;
					margin-left: -0.5em;
				}

					.row.gtr-50 > * {
						padding: 0 0 0 0.5em;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -0.5em;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 0.5em;
						}

				.row {
					margin-top: 0;
					margin-left: -1em;
				}

					.row > * {
						padding: 0 0 0 1em;
					}

					.row.gtr-uniform {
						margin-top: -1em;
					}

						.row.gtr-uniform > * {
							padding-top: 1em;
						}

				.row.gtr-150 {
					margin-top: 0;
					margin-left: -1.5em;
				}

					.row.gtr-150 > * {
						padding: 0 0 0 1.5em;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -1.5em;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 1.5em;
						}

				.row.gtr-200 {
					margin-top: 0;
					margin-left: -2em;
				}

					.row.gtr-200 > * {
						padding: 0 0 0 2em;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -2em;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 2em;
						}

		}

		@media screen and (max-width: 480px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-xsmall {
					order: -1;
				}

				.row > .col-1-xsmall {
					width: 8.33333%;
				}

				.row > .off-1-xsmall {
					margin-left: 8.33333%;
				}

				.row > .col-2-xsmall {
					width: 16.66667%;
				}

				.row > .off-2-xsmall {
					margin-left: 16.66667%;
				}

				.row > .col-3-xsmall {
					width: 25%;
				}

				.row > .off-3-xsmall {
					margin-left: 25%;
				}

				.row > .col-4-xsmall {
					width: 33.33333%;
				}

				.row > .off-4-xsmall {
					margin-left: 33.33333%;
				}

				.row > .col-5-xsmall {
					width: 41.66667%;
				}

				.row > .off-5-xsmall {
					margin-left: 41.66667%;
				}

				.row > .col-6-xsmall {
					width: 50%;
				}

				.row > .off-6-xsmall {
					margin-left: 50%;
				}

				.row > .col-7-xsmall {
					width: 58.33333%;
				}

				.row > .off-7-xsmall {
					margin-left: 58.33333%;
				}

				.row > .col-8-xsmall {
					width: 66.66667%;
				}

				.row > .off-8-xsmall {
					margin-left: 66.66667%;
				}

				.row > .col-9-xsmall {
					width: 75%;
				}

				.row > .off-9-xsmall {
					margin-left: 75%;
				}

				.row > .col-10-xsmall {
					width: 83.33333%;
				}

				.row > .off-10-xsmall {
					margin-left: 83.33333%;
				}

				.row > .col-11-xsmall {
					width: 91.66667%;
				}

				.row > .off-11-xsmall {
					margin-left: 91.66667%;
				}

				.row > .col-12-xsmall {
					width: 100%;
				}

				.row > .off-12-xsmall {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0;
					margin-left: 0em;
				}

					.row.gtr-0 > * {
						padding: 0 0 0 0em;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0em;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0em;
						}

				.row.gtr-25 {
					margin-top: 0;
					margin-left: -0.25em;
				}

					.row.gtr-25 > * {
						padding: 0 0 0 0.25em;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -0.25em;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 0.25em;
						}

				.row.gtr-50 {
					margin-top: 0;
					margin-left: -0.5em;
				}

					.row.gtr-50 > * {
						padding: 0 0 0 0.5em;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -0.5em;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 0.5em;
						}

				.row {
					margin-top: 0;
					margin-left: -1em;
				}

					.row > * {
						padding: 0 0 0 1em;
					}

					.row.gtr-uniform {
						margin-top: -1em;
					}

						.row.gtr-uniform > * {
							padding-top: 1em;
						}

				.row.gtr-150 {
					margin-top: 0;
					margin-left: -1.5em;
				}

					.row.gtr-150 > * {
						padding: 0 0 0 1.5em;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -1.5em;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 1.5em;
						}

				.row.gtr-200 {
					margin-top: 0;
					margin-left: -2em;
				}

					.row.gtr-200 > * {
						padding: 0 0 0 2em;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -2em;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 2em;
						}

		}

/* Author */

	.author {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-flex-direction: row;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-moz-align-items: center;
		-webkit-align-items: center;
		-ms-align-items: center;
		align-items: center;
		-moz-justify-content: -moz-flex-end;
		-webkit-justify-content: -webkit-flex-end;
		-ms-justify-content: -ms-flex-end;
		justify-content: flex-end;
		border-bottom: 0;
		font-family: "Raleway", Helvetica, sans-serif;
		font-size: 0.6em;
		font-weight: 400;
		letter-spacing: 0.25em;
		text-transform: uppercase;
		white-space: nowrap;
	}

		.author .name {
			-moz-transition: border-bottom-color 0.2s ease;
			-webkit-transition: border-bottom-color 0.2s ease;
			-ms-transition: border-bottom-color 0.2s ease;
			transition: border-bottom-color 0.2s ease;
			border-bottom: dotted 1px rgba(160, 160, 160, 0.65);
			display: block;
			margin: 0 1.5em 0 0;
		}

		.author img {
			border-radius: 100%;
			display: block;
			width: 4em;
		}

		.author:hover .name {
			border-bottom-color: transparent;
		}

/* Blurb */
	.blurb h2 {
		font-size: 0.8em;
		margin: 0 0 1.5em 0;
	}

	.blurb h3 {
		font-size: 0.7em;
	}

	.blurb p {
		font-size: 0.9em;
	}

/* Box */

	.box {
		border: solid 1px rgba(160, 160, 160, 0.3);
		margin-bottom: 2em;
		padding: 1.5em;
	}

		.box > :last-child,
		.box > :last-child > :last-child,
		.box > :last-child > :last-child > :last-child {
			margin-bottom: 0;
		}

		.box.alt {
			border: 0;
			border-radius: 0;
			padding: 0;
		}

/* Button */

	input[type="submit"],
	input[type="reset"],
	input[type="button"]
	/*, button, .button*/ {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		-moz-transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
		-webkit-transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
		-ms-transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
		transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
		/*background-color: transparent;*/
		background-color: var(--blue) !important;
		border: 0;
		box-shadow: inset 0 0 0 1px rgba(160, 160, 160, 0.3);
		/*color: var(--darkgrey) !important;*/
		color: var(--white) !important;
		cursor: pointer;
		display: inline-block;
		font-family: "Raleway", Helvetica, sans-serif;
		font-size: 1.0em;
		font-weight: 800;
		height: 3em;
		letter-spacing: 0.15em;
		line-height: 3em;
		padding: 0 1.5em;
		text-align: center;
		text-decoration: none;
		text-transform: uppercase;
		white-space: nowrap;
	}

		input[type="submit"]:hover,
		input[type="reset"]:hover,
		input[type="button"]:hover/*,
		button, .button*/ {
			box-shadow: inset 0 0 0 1px var(--hovercolor);
			color: var(--hovercolor) !important;
		}

			input[type="submit"]:hover:active,
			input[type="reset"]:hover:active,
			input[type="button"]:hover:active/*,
			button:hover:active, .button:hover:active*/ {
				background-color: rgba(46, 186, 174, 0.05);
			}

		input[type="submit"]:before, input[type="submit"]:after,
		input[type="reset"]:before,
		input[type="reset"]:after,
		input[type="button"]:before,
		input[type="button"]:after/*,
		button:before,
		button:after,
		.button:before,
		.button:after*/ {
			color: var(--mediumgrey);
			position: relative;
		}

		input[type="submit"]:before,
		input[type="reset"]:before,
		input[type="button"]:before/*,
		button:before,
		.button:before*/ {
			left: -1em;
			padding: 0 0 0 0.75em;
		}

		input[type="submit"]:after,
		input[type="reset"]:after,
		input[type="button"]:after/*,
		button:after,
		.button:after*/ {
			left: 1em;
			padding: 0 0.75em 0 0;
		}

		input[type="submit"].fit,
		input[type="reset"].fit,
		input[type="button"].fit/*,
		button.fit,
		.button.fit*/ {
			width: 100%;
		}

		input[type="submit"].large,
		input[type="reset"].large,
		input[type="button"].large/*,
		button.large,
		.button.large*/ {
			font-size: 0.7em;
			padding: 0 3em;
		}

		input[type="submit"].small,
		input[type="reset"].small,
		input[type="button"].small/*,
		button.small,
		.button.small*/ {
			font-size: 0.5em;
		}

		input[type="submit"].disabled, input[type="submit"]:disabled,
		input[type="reset"].disabled,
		input[type="reset"]:disabled,
		input[type="button"].disabled,
		input[type="button"]:disabled/*,
		button.disabled,
		button:disabled,
		.button.disabled,
		.button:disabled*/ {
			pointer-events: none;
			color: rgba(160, 160, 160, 0.3) !important;
		}

			input[type="submit"].disabled:before, input[type="submit"]:disabled:before,
			input[type="reset"].disabled:before,
			input[type="reset"]:disabled:before,
			input[type="button"].disabled:before,
			input[type="button"]:disabled:before/*,
			button.disabled:before,
			button:disabled:before,
			.button.disabled:before,
			.button:disabled:before*/ {
				color: rgba(160, 160, 160, 0.3) !important;
			}
			
			input:invalid {
			  border: 2px solid red;
			}

	.button {
	  position: relative;
	  display: inline-block;
	  overflow: hidden;
	  color: var(--blue) !important;
	  text-decoration: none;
	  background-color: #ffffff !important;
	  border: 2px solid var(--blue);
	  padding: 0.75em 1.5em;
	  font-weight: bold;
	  letter-spacing: 0.15em;
	  text-transform: uppercase;
	  font-size: 18pt;
	  transition: color 0.3s ease, border-color 0.3s ease;
	  z-index: 1;
	  cursor: pointer;
	}
	
	.button i {
	  color: var(--blue) !important;
	  background-color: transparent !important;
	  transition: color 0.3s ease;
	}

	.button::before {
	  content: '';
	  position: absolute;
	  inset: 0;
	  background-color: #54b3d6;
	  transform: scaleX(0);
	  transform-origin: left;
	  transition: transform 0.3s ease;
	  z-index: -1;
	}
	
	.button::after {
	  content: '';
	  position: absolute;
	  bottom: 0;
	  left: -20%;
	  width: 20%;
	  height: 2px;
	  background: linear-gradient(
		90deg,
		#fff700,     /* Neon yellow */
		#ffffff,     /* White middle */
		#00ffff      /* Neon blue */
	  );
	  border-radius: 2px;
	  box-shadow: 0 0 6px #fff700;
	  animation: knightRiderBar 1.8s infinite alternate ease-in-out;
	}
	@keyframes knightRiderBar {
	  0% {
		left: -20%;
	  }
	  100% {
		left: 100%;
	  }
	}

	.button:hover::before {
	  transform: scaleX(1);
	}

	.button:hover {
	  color: white !important;
	  border-color: var(--lightteal);
	}
	
	.button:hover i {
	  color: white !important;
	}

/* Form */
	form {
		margin: 0 0 2em 0;
	}

		form.search {
			text-decoration: none;
			position: relative;
		}

			form.search:before {
				-moz-osx-font-smoothing: grayscale;
				-webkit-font-smoothing: antialiased;
				display: inline-block;
				font-style: normal;
				font-variant: normal;
				text-rendering: auto;
				line-height: 1;
				text-transform: none !important;
				font-family: 'Font Awesome 5 Free';
				font-weight: 900;
			}

			form.search:before {
				color: var(--mediumgrey);
				content: '\f002';
				display: block;
				height: 2.75em;
				left: 0;
				line-height: 2.75em;
				position: absolute;
				text-align: center;
				top: 0;
				width: 2.5em;
			}

			form.search > input:first-child {
				padding-left: 2.5em;
			}

	label {
		color: var(--darkgrey);
		display: block;
		font-size: 1.3em;
		font-weight: 700;
		margin: 0 0 1em 0;
	}

	input[type="text"],
	input[type="password"],
	input[type="email"],
	input[type="tel"],
	select,
	textarea {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		background: rgba(160, 160, 160, 0.075);
		border: none;
		border: solid 1px rgba(160, 160, 160, 0.3);
		border-radius: 0;
		color: inherit;
		display: block;
		outline: 0;
		padding: 0 1em;
		text-decoration: none;
		width: 100%;
	}

		input[type="text"]:invalid,
		input[type="password"]:invalid,
		input[type="email"]:invalid,
		input[type="tel"]:invalid,
		select:invalid,
		textarea:invalid {
			box-shadow: none;
		}

		input[type="text"]:focus,
		input[type="password"]:focus,
		input[type="email"]:focus,
		input[type="tel"]:focus,
		select:focus,
		textarea:focus {
			border-color: var(--hovercolor);
			box-shadow: inset 0 0 0 1px var(--hovercolor);
		}

	.select-wrapper {
		text-decoration: none;
		display: block;
		position: relative;
	}

		.select-wrapper:before {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			display: inline-block;
			font-style: normal;
			font-variant: normal;
			text-rendering: auto;
			line-height: 1;
			text-transform: none !important;
			font-family: 'Font Awesome 5 Free';
			font-weight: 900;
		}

		.select-wrapper:before {
			color: rgba(160, 160, 160, 0.3);
			content: '\f078';
			display: block;
			height: 2.75em;
			line-height: 2.75em;
			pointer-events: none;
			position: absolute;
			right: 0;
			text-align: center;
			top: 0;
			width: 2.75em;
		}

		.select-wrapper select::-ms-expand {
			display: none;
		}

	select {
		background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='rgba(160, 160, 160, 0.3)' /%3E%3C/svg%3E");
		background-size: 1.25rem;
		background-repeat: no-repeat;
		background-position: calc(100% - 1rem) center;
		height: 2.75em;
		padding-right: 2.75em;
		text-overflow: ellipsis;
	}

		select option {
			color: var(--darkgrey);
			background: var(--articlesbgcol);
		}

		select:focus::-ms-value {
			background-color: transparent;
		}

		select::-ms-expand {
			display: none;
		}

	input[type="text"],
	input[type="password"],
	input[type="email"],
	select {
		height: 2.75em;
	}

	textarea {
		padding: 0.75em 1em;
	}

	input[type="checkbox"],
	input[type="radio"] {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		display: block;
		float: left;
		margin-right: -2em;
		opacity: 0;
		width: 1em;
		z-index: -1;
	}

		input[type="checkbox"] + label,
		input[type="radio"] + label {
			text-decoration: none;
			color: var(--textcolor);
			cursor: pointer;
			display: inline-block;
			font-size: 1em;
			font-weight: 400;
			padding-left: 2.4em;
			padding-right: 0.75em;
			position: relative;
		}

			input[type="checkbox"] + label:before,
			input[type="radio"] + label:before {
				-moz-osx-font-smoothing: grayscale;
				-webkit-font-smoothing: antialiased;
				display: inline-block;
				font-style: normal;
				font-variant: normal;
				text-rendering: auto;
				line-height: 1;
				text-transform: none !important;
				font-family: 'Font Awesome 5 Free';
				font-weight: 900;
			}

			input[type="checkbox"] + label:before,
			input[type="radio"] + label:before {
				background: rgba(160, 160, 160, 0.075);
				border: solid 1px rgba(160, 160, 160, 0.3);
				content: '';
				display: inline-block;
				font-size: 0.8em;
				height: 2.0625em;
				left: 0;
				line-height: 2.0625em;
				position: absolute;
				text-align: center;
				top: 0;
				width: 2.0625em;
			}

		input[type="checkbox"]:checked + label:before,
		input[type="radio"]:checked + label:before {
			background: var(--darkgrey);
			border-color: var(--darkgrey);
			color: var(--articlesbgcol);
			content: '\f00c';
		}

		input[type="checkbox"]:focus + label:before,
		input[type="radio"]:focus + label:before {
			border-color: var(--hovercolor);
			box-shadow: 0 0 0 1px var(--hovercolor);
		}

	input[type="radio"] + label:before {
		border-radius: 100%;
	}

	::-webkit-input-placeholder {
		color: var(--mediumgrey) !important;
		opacity: 1.0;
	}

	:-moz-placeholder {
		color: var(--mediumgrey) !important;
		opacity: 1.0;
	}

	::-moz-placeholder {
		color: var(--mediumgrey) !important;
		opacity: 1.0;
	}

	:-ms-input-placeholder {
		color: var(--mediumgrey) !important;
		opacity: 1.0;
	}

/* Icon */

	.icon {
		text-decoration: none;
		border-bottom: none;
		position: relative;
	}

		.icon:before {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			display: inline-block;
			font-style: normal;
			font-variant: normal;
			text-rendering: auto;
			line-height: 1;
			text-transform: none !important;
			font-family: 'Font Awesome 5 Free';
			font-weight: 400;
		}

		.icon > .label {
			display: none;
		}

		.icon:before {
			line-height: inherit;
		}

		.icon.solid:before {
			font-weight: 900;
		}

		.icon.brands:before {
			font-family: 'Font Awesome 5 Brands';
		}

		.icon.suffix:before {
			float: right;
		}

/* Image */

	.image {
		border: 0;
		display: inline-block;
		position: relative;
	}

		.image img {
			display: block;
		}

		.image.left, .image.right {
			max-width: 40%;
		}

			.image.left img, .image.right img {
				width: 100%;
			}

		.image.left {
			float: left;
			padding: 0 1.5em 1em 0;
			top: 0.25em;
		}

		.image.right {
			float: right;
			padding: 0 0 1em 1.5em;
			top: 0.25em;
		}

		.image.fit {
			display: block;
			margin: 0 0 2em 0;
			width: 100%;
		}

			.image.fit img {
				width: 100%;
			}

		.image.featured {
			display: block;
			margin: 0 0 3em 0;
			width: 100%;
			height: 160px;
			overflow: hidden;
		}

			.image.featured img {
				width: 100%;
				height: 100%;
				object-fit: cover;
				object-position: center 80%;
			}

			@media screen and (max-width: 736px) {

				.image.featured {
					margin: 0 0 1.5em 0;
				}

			}

		.image.main {
			display: block;
			margin: 0 0 3em 0;
			width: 100%;
		}

			.image.main img {
				width: 100%;
			}

/* List */

	ol {
		list-style: decimal;
		margin: 0 0 2em 0;
		padding-left: 1.25em;
	}

		ol li {
			padding-left: 0.25em;
		}

	ul {
		list-style: disc;
		margin: 0 0 2em 0;
		padding-left: 1em;
	}

		ul li {
			padding-left: 0.5em;
		}

		ul.alt {
			list-style: none;
			padding-left: 0;
		}

			ul.alt li {
				border-top: solid 1px rgba(160, 160, 160, 0.3);
				padding: 0.5em 0;
			}

				ul.alt li:first-child {
					border-top: 0;
					padding-top: 0;
				}

	dl {
		margin: 0 0 2em 0;
	}

		dl dt {
			display: block;
			font-weight: 700;
			margin: 0 0 1em 0;
		}

		dl dd {
			margin-left: 2em;
		}

/* Actions */

	ul.actions {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		cursor: default;
		list-style: none;
		margin-left: -1em;
		padding-left: 0;
	}

		ul.actions li {
			padding: 0 0 0 1em;
			vertical-align: middle;
		}

		ul.actions.special {
			-moz-justify-content: center;
			-webkit-justify-content: center;
			-ms-justify-content: center;
			justify-content: center;
			width: 100%;
			margin-left: 0;
		}

			ul.actions.special li:first-child {
				padding-left: 0;
			}

		ul.actions.stacked {
			-moz-flex-direction: column;
			-webkit-flex-direction: column;
			-ms-flex-direction: column;
			flex-direction: column;
			margin-left: 0;
		}

			ul.actions.stacked li {
				padding: 1.3em 0 0 0;
			}

				ul.actions.stacked li:first-child {
					padding-top: 0;
				}

		ul.actions.fit {
			width: calc(100% + 1em);
		}

			ul.actions.fit li {
				-moz-flex-grow: 1;
				-webkit-flex-grow: 1;
				-ms-flex-grow: 1;
				flex-grow: 1;
				-moz-flex-shrink: 1;
				-webkit-flex-shrink: 1;
				-ms-flex-shrink: 1;
				flex-shrink: 1;
				width: 100%;
			}

				ul.actions.fit li > * {
					width: 100%;
				}

			ul.actions.fit.stacked {
				width: 100%;
			}

		@media screen and (max-width: 480px) {

			ul.actions:not(.fixed) {
				-moz-flex-direction: column;
				-webkit-flex-direction: column;
				-ms-flex-direction: column;
				flex-direction: column;
				margin-left: 0;
				width: 100% !important;
			}

				ul.actions:not(.fixed) li {
					-moz-flex-grow: 1;
					-webkit-flex-grow: 1;
					-ms-flex-grow: 1;
					flex-grow: 1;
					-moz-flex-shrink: 1;
					-webkit-flex-shrink: 1;
					-ms-flex-shrink: 1;
					flex-shrink: 1;
					padding: 1em 0 0 0;
					text-align: center;
					width: 100%;
				}

					ul.actions:not(.fixed) li > * {
						width: 100%;
					}

					ul.actions:not(.fixed) li:first-child {
						padding-top: 0;
					}

					ul.actions:not(.fixed) li input[type="submit"],
					ul.actions:not(.fixed) li input[type="reset"],
					ul.actions:not(.fixed) li input[type="button"],
					ul.actions:not(.fixed) li button,
					ul.actions:not(.fixed) li .button {
						width: 100%;
					}

						ul.actions:not(.fixed) li input[type="submit"].icon:before,
						ul.actions:not(.fixed) li input[type="reset"].icon:before,
						ul.actions:not(.fixed) li input[type="button"].icon:before,
						ul.actions:not(.fixed) li button.icon:before,
						ul.actions:not(.fixed) li .button.icon:before {
							margin-left: -0.5em;
						}

		}

/* Icons */

	ul.icons {
		cursor: default;
		list-style: none;
		padding-left: 0;
	}

		ul.icons li {
			display: inline-block;
			padding: 0 1em 0 0;
		}

			ul.icons li:last-child {
				padding-right: 0;
			}

			ul.icons li > * {
				border: 0;
			}

				ul.icons li > * .label {
					display: none;
				}

/* Posts */

	ul.posts {
		list-style: none;
		padding: 0;
	}

		ul.posts li {
			border-top: dotted 1px rgba(160, 160, 160, 0.3);
			margin: 1.5em 0 0 0;
			padding: 1.5em 0 0 0;
		}

			ul.posts li:first-child {
				border-top: 0;
				margin-top: 0;
				padding-top: 0;
			}

		ul.posts article {
			display: -moz-flex;
			display: -webkit-flex;
			display: -ms-flex;
			display: flex;
			-moz-align-items: -moz-flex-start;
			-webkit-align-items: -webkit-flex-start;
			-ms-align-items: -ms-flex-start;
			align-items: flex-start;
			-moz-flex-direction: row-reverse;
			-webkit-flex-direction: row-reverse;
			-ms-flex-direction: row-reverse;
			flex-direction: row-reverse;
		}

			ul.posts article .image {
				display: block;
				margin-right: 1.5em;
				min-width: 8em;
				width: 8em;
			}

				ul.posts article .image img {
					width: 100%;
				}

			ul.posts article header {
				-moz-flex-grow: 1;
				-webkit-flex-grow: 1;
				-ms-flex-grow: 1;
				flex-grow: 1;
				-ms-flex: 1;				
			}

				ul.posts article header h3 {
					font-size: 0.8em;
					font-weight: 600;
					margin-top: 0.125em;
					text-transform: initial;
					letter-spacing: 0.10em;
				}

				ul.posts article header .published {
					display: block;
					font-family: "Raleway", Helvetica, sans-serif;
					font-size: 0.6em;
					font-weight: 400;
					letter-spacing: 0.25em;
					margin: -0.625em 0 1.7em 0;
					text-transform: uppercase;
				}

				ul.posts article header > :last-child {
					margin-bottom: 0;
				}

/* Mini Post */

	.mini-post {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-flex-direction: column-reverse;
		-webkit-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		background: var(--articlesbgcol);
		border: solid 1px rgba(160, 160, 160, 0.3);
		margin: 0 0 2em 0;
	}

		.mini-post .image {
			overflow: hidden;
			width: 100%;
		}

			.mini-post .image img {
				-moz-transition: -moz-transform 0.2s ease-out;
				-webkit-transition: -webkit-transform 0.2s ease-out;
				-ms-transition: -ms-transform 0.2s ease-out;
				transition: transform 0.2s ease-out;
				width: 100%;
			}

			.mini-post .image:hover img {
				-moz-transform: scale(1.05);
				-webkit-transform: scale(1.05);
				-ms-transform: scale(1.05);
				transform: scale(1.05);
			}

		.mini-post header {
			padding: 1.25em 4.25em 0.1em 1.25em ;
			min-height: 4em;
			position: relative;
			-moz-flex-grow: 1;
			-webkit-flex-grow: 1;
			-ms-flex-grow: 1;
			flex-grow: 1;
		}

			.mini-post header h3 {
				font-size: 0.7em;
			}

			.mini-post header .published {
				display: block;
				font-family: "Raleway", Helvetica, sans-serif;
				font-size: 0.6em;
				font-weight: 400;
				letter-spacing: 0.25em;
				margin: -0.625em 0 1.7em 0;
				text-transform: uppercase;
			}

			.mini-post header .author {
				position: absolute;
				right: 2em;
				top: 2em;
			}
			
		.mini-post p {
			font-size: 1.1em;
			font-weight: 400;
			letter-spacing: 0.15em;
			line-height: 1.2;
			text-transform: initial;
		}

	.mini-posts {
		margin: 0 0 2em 0;
	}

		@media screen and (max-width: 1280px) {

			.mini-posts {
				display: -moz-flex;
				display: -webkit-flex;
				display: -ms-flex;
				display: flex;
				-moz-flex-wrap: wrap;
				-webkit-flex-wrap: wrap;
				-ms-flex-wrap: wrap;
				flex-wrap: wrap;
				width: calc(100% + 2em);
			}

				.mini-posts > * {
					margin: 2em 2em 0 0;
					width: calc(50% - 2em);
				}

				.mini-posts > :nth-child(-n + 2) {
					margin-top: 0;
				}

		}

		@media screen and (max-width: 480px) {

			.mini-posts {
				display: block;
				width: 100%;
			}

				.mini-posts > * {
					margin: 0 0 2em 0;
					width: 100%;
				}

		}

/* Post */
	.post {
		/*padding: 3em 3em 1em 3em ;*/
		padding: 0em 3em 0em 3em;
		background: var(--articlesbgcol);
		/*border: solid 1px rgba(160, 160, 160, 0.3);*/
		margin: 0 0 3em 0;
		position: relative;
	}

		.post > header {
			display: -moz-flex;
			display: -webkit-flex;
			display: -ms-flex;
			display: flex;
			border-bottom: solid 1px rgba(160, 160, 160, 0.3);
			left: -3em;
			margin: -3em 0 3em 0;
			position: relative;
			width: calc(100% + 6em);
			background-color: var(--articleheaderbgcol);
		}

			.post > header .title {
				-moz-flex-grow: 1;
				-webkit-flex-grow: 1;
				-ms-flex-grow: 1;
				flex-grow: 1;
				-ms-flex: 1;
				/*padding: 3.75em 3em 3.3em 3em;*/
				padding: 1em 3em 1em 3em;
			}

				.post > header .title h2 {
					font-weight: 900;
					/*font-size: 1.8em;*/
					font-size: 3em;
				}

				.post > header .title > :last-child {
					margin-bottom: 0;
				}

			/*.post > header*/ .meta {
				/*padding: 3.75em 3em 1.75em 3em ;*/
				padding: 0;
				border-left: solid 1px rgba(160, 160, 160, 0.3);
				min-width: 17em;
				text-align: right;
				width: 17em;
			}

				/*.post > header*/ .meta > * {
					margin: 0 0 1em 0;
				}

				/*.post > header*/ .meta > :last-child {
					margin-bottom: 0;
				}

				/*.post > header*/ .meta .published {
					color: var(--darkgrey);
					display: block;
					font-family: "Raleway", Helvetica, sans-serif;
					font-size: 0.7em;
					font-weight: 800;
					letter-spacing: 0.25em;
					margin-top: 0.5em;
					text-transform: uppercase;
					white-space: nowrap;
				}

		.post > a.image.featured {
			overflow: hidden;
		}

			.post > a.image.featured img {
				-moz-transition: -moz-transform 0.2s ease-out;
				-webkit-transition: -webkit-transform 0.2s ease-out;
				-ms-transition: -ms-transform 0.2s ease-out;
				transition: transform 0.2s ease-out;
			}

			.post > a.image.featured:hover img {
				-moz-transform: scale(1.05);
				-webkit-transform: scale(1.05);
				-ms-transform: scale(1.05);
				transform: scale(1.05);
			}

		.post > footer {
			display: -moz-flex;
			display: -webkit-flex;
			display: -ms-flex;
			display: flex;
			-moz-align-items: center;
			-webkit-align-items: center;
			-ms-align-items: center;
			align-items: center;
			justify-content: center;
		}

			.post > footer .actions {
				-moz-flex-grow: 1;
				-webkit-flex-grow: 1;
				-ms-flex-grow: 1;
				flex-grow: 1;
			}

			.post > footer .stats,
			.post > footer .stats li {
				cursor: default;
				list-style: none;
				padding: 0;
				text-align: center;
			}

				.post > footer .stats li {
					border-left: solid 1px rgba(160, 160, 160, 0.3);
					display: inline-block;
					font-family: "Raleway", Helvetica, sans-serif;
					font-size: 1.3em;
					font-weight: 400;
					letter-spacing: 0.15em;
					line-height: 1;
					margin: 0 0 0 2em;
					padding: 0 0 0 2em;
					text-transform: uppercase;
				}

					.post > footer .stats li:first-child {
						border-left: 0;
						margin-left: 0;
						padding-left: 0;
					}

					.post > footer .stats li .icon {
						border-bottom: 0;
					}

						.post > footer .stats li .icon:before {
							color: rgba(160, 160, 160, 0.3);
							margin-right: 0.75em;
						}

		@media screen and (max-width: 980px) {

			.post {
				border-left: 0;
				border-right: 0;
				left: -3em;
				width: calc(100% + (3em * 2));
			}

				.post > header {
					-moz-flex-direction: column;
					-webkit-flex-direction: column;
					-ms-flex-direction: column;
					flex-direction: column;
					padding: 1em 1.5em 0.1em 1em;					
					border-left: 0;
				}

					.post > header .title {
						-ms-flex: 0 1 auto;
						margin: 0 0 0.2em 0.5em;
						padding: 0;
						text-align: center;
					}

					.post > header .meta {
						-moz-align-items: center;
						-webkit-align-items: center;
						-ms-align-items: center;
						align-items: center;
						display: -moz-flex;
						display: -webkit-flex;
						display: -ms-flex;
						display: flex;
						-moz-justify-content: center;
						-webkit-justify-content: center;
						-ms-justify-content: center;
						justify-content: center;
						border-left: 0;
						margin: 0 0 2em 0;
						padding-top: 0;
						padding: 0;
						text-align: left;
						width: 100%;
					}

						.post > header .meta > * {
							border-left: solid 1px rgba(160, 160, 160, 0.3);
							margin-left: 2em;
							padding-left: 2em;
						}

						.post > header .meta > :first-child {
							border-left: 0;
							margin-left: 0;
							padding-left: 0;
						}

						.post > header .meta .published {
							margin-bottom: 0;
							margin-top: 0;
						}

						.post > header .meta .author {
							-moz-flex-direction: row-reverse;
							-webkit-flex-direction: row-reverse;
							-ms-flex-direction: row-reverse;
							flex-direction: row-reverse;
							margin-bottom: 0;
						}

							.post > header .meta .author .name {
								margin: 0 0 0 1.5em;
							}

							.post > header .meta .author img {
								width: 3.5em;
							}
				
				.post > footer .stats li,
				.post > footer .stats li:first-child {
					margin: 0;
					padding-left: 15px;
					padding-right: 15px;
					letter-spacing: 0.10em;
					border: none;
					line-height: 2.5;
					text-align: left !important;
					display: flex;
				}
				
				.post > footer .stats li::before {
					content:'-';
					padding-right: 5px;
				}
		}

		@media screen and (max-width: 736px) {

			.post {
				padding: 1.5em 1.5em 0.1em 1.5em ;
				left: -1.5em;
				margin: 0;
				width: calc(100% + (1.5em * 2));
			}

				.post > header {
					padding: 1em 1.5em 0.1em 1em;
					left: -1.5em;
					margin: -1.5em 0 0.2em 0;
					width: calc(100% + 3em);
				}

					.post > header .title h2 {
						font-size: 3em;
					}			
		}

		@media screen and (max-width: 480px) {

			.post > header .meta {
				-moz-align-items: center;
				-webkit-align-items: center;
				-ms-align-items: center;
				align-items: center;
				-moz-flex-direction: column;
				-webkit-flex-direction: column;
				-ms-flex-direction: column;
				flex-direction: column;
			}

				.post > header .meta > * {
					border-left: 0;
					margin: 1em 0 0 0;
					padding-left: 0;
				}

				.post > header .meta .author .name {
					display: none;
				}

			.post > .image.featured {
				margin-left: -1.5em;
				margin-top: calc(-1.5em - 1px);
				width: calc(100% + 3em);
			}

			.post > footer {
				-moz-align-items: -moz-stretch;
				-webkit-align-items: -webkit-stretch;
				-ms-align-items: -ms-stretch;
				align-items: stretch;
				-moz-flex-direction: column-reverse;
				-webkit-flex-direction: column-reverse;
				-ms-flex-direction: column-reverse;
				flex-direction: column-reverse;
			}
		}

/* Section/Article */

	section.special, article.special {
		text-align: center;
	}

	header p {
		font-family: "Raleway", Helvetica, sans-serif;
		font-size: 1.3em;
		font-weight: 400;
		letter-spacing: 0.25em;
		line-height: 1.6;
		margin-top: -1em;
		text-transform: uppercase;
	}

/* Table */

	.table-wrapper {
		-webkit-overflow-scrolling: touch;
		overflow-x: auto;
	}

	table {
		margin: 0 0 2em 0;
		width: 100%;
	}

		table tbody tr {
			border: solid 1px rgba(160, 160, 160, 0.3);
			border-left: 0;
			border-right: 0;
		}

			table tbody tr:nth-child(2n + 1) {
				background-color: rgba(160, 160, 160, 0.075);
			}

		table td {
			padding: 0.75em 0.75em;
		}

		table th {
			color: var(--darkgrey);
			font-size: 0.9em;
			font-weight: 700;
			padding: 0 0.75em 0.75em 0.75em;
			text-align: left;
		}

		table thead {
			border-bottom: solid 2px rgba(160, 160, 160, 0.3);
		}

		table tfoot {
			border-top: solid 2px rgba(160, 160, 160, 0.3);
		}

		table.alt {
			border-collapse: separate;
		}

			table.alt tbody tr td {
				border: solid 1px rgba(160, 160, 160, 0.3);
				border-left-width: 0;
				border-top-width: 0;
			}

				table.alt tbody tr td:first-child {
					border-left-width: 1px;
				}

			table.alt tbody tr:first-child td {
				border-top-width: 1px;
			}

			table.alt thead {
				border-bottom: 0;
			}

			table.alt tfoot {
				border-top: 0;
			}

/* Header */

	body {
		padding-top: 3.5em;
	}

	#header {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-justify-content: space-between;
		-webkit-justify-content: space-between;
		-ms-justify-content: space-between;
		justify-content: space-between;
		background-color: var(--articlesbgcol);
		border-bottom: solid 1px rgba(160, 160, 160, 0.3);
		height: 3.5em;
		left: 0;
		line-height: 3.5em;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 10000;
	}

		#header a {
			color: inherit;
			text-decoration: none;
		}

		#header ul {
			list-style: none;
			margin: 0;
			padding-left: 0;
		}

			#header ul li {
				display: inline-block;
				padding-left: 0;
			}

		#header h1 {
			height: inherit;
			line-height: inherit;
			padding: 0 1.5em 0 1.5em;
			white-space: nowrap;
			color: var(--titlecolor);
			background-color: var(--backgroundcolor);
		}

			#header h1 a {
				font-size: 0.7em;
			}

		#header .links {
			-moz-flex: 1;
			-webkit-flex: 1;
			-ms-flex: 1;
			flex: 1;			
			height: inherit;
			line-height: inherit;
			overflow: hidden;
			
			align-items: center;
			height: 100%;
			position: relative;
			z-index: 1;
		}

			#header .links ul li {
				white-space: nowrap;				
			}
			
			@media screen and (max-width: 980px) {
				#header .links ul li {
					padding-left: 1em;
					padding-right: 1em;
				}
			}

				#header .links ul li a {
					border-bottom: 0;
					font-family: "Raleway", Helvetica, sans-serif;
					font-size: 1.1em;
					font-weight: 500;
					letter-spacing: 0.25em;
					text-transform: uppercase;
					
					display: flex;
					align-items: center;
					height: 100%;					
					text-decoration: none;
					position: relative;
					
					line-height: inherit;
					padding-left: 0.85em;
					padding-right: 0.85em;
				}				
				
				#header .links ul li.active a {
					background-color: var(--backgroundcolor);
					color: var(--titlecolor);						
				}
				
				#header .links a:hover {
				  color: var(--lightteal) !important;
				}

		#header .main {
			height: inherit;
			line-height: inherit;
			text-align: right;
		}

			#header .main ul {
				height: inherit;
				line-height: inherit;
			}

				#header .main ul li {
					border-left: solid 1px rgba(160, 160, 160, 0.3);
					height: inherit;
					line-height: inherit;
					white-space: nowrap;
				}

					#header .main ul li > * {
						display: block;
						float: left;
					}

					#header .main ul li > a {
						text-decoration: none;
						border-bottom: 0;
						color: var(--mediumgrey);
						overflow: hidden;
						position: relative;
						text-indent: 4em;
						width: 4em;
					}

						#header .main ul li > a:before {
							-moz-osx-font-smoothing: grayscale;
							-webkit-font-smoothing: antialiased;
							display: inline-block;
							font-style: normal;
							font-variant: normal;
							text-rendering: auto;
							line-height: 1;
							text-transform: none !important;
							font-family: 'Font Awesome 5 Free';
							font-weight: 900;
						}

						#header .main ul li > a:before {
							display: block;
							height: inherit;
							left: 0;
							line-height: inherit;
							position: absolute;
							text-align: center;
							text-indent: 0;
							top: 0;
							width: inherit;
						}

		#header form {
			margin: 0;
		}

			#header form input {
				display: inline-block;
				height: 2.5em;
				position: relative;
				top: -2px;
				vertical-align: middle;
			}

		#header #search {
			-moz-transition: all 0.5s ease;
			-webkit-transition: all 0.5s ease;
			-ms-transition: all 0.5s ease;
			transition: all 0.5s ease;
			max-width: 0;
			opacity: 0;
			overflow: hidden;
			padding: 0;
			white-space: nowrap;
		}

			#header #search input {
				width: 12em;
			}

			#header #search.visible {
				max-width: 12.5em;
				opacity: 1;
				padding: 0 0.5em 0 0;
			}
		
		@media screen and (max-width: 1300px) {
			#header .links ul li a {
				font-size: 1em;
			}
		}
		
		@media screen and (max-width: 1200px) {
			#header .links ul li a {
				font-size: 0.9em;
			}
		}
		
		@media screen and (max-width: 1120px) {
			#header .links ul li a {
				font-size: 0.8em;
			}			
		}
		
		@media screen and (max-width: 1020px) {
			#header .links ul li a {
				font-size: 0.7em;
			}			
		}		
		
		/* Desktop/mobile nav styles */
		.desktop-label {
			font-weight: bold;
			text-decoration: none;
		}

		.mobile-icon {
			display: none;
		}

		.mobile-nav-item {
			display: none;
		}

		@media screen and (max-width: 980px) {
			.desktop-label {
				display: none !important;
			}

			.mobile-icon {
				display: inline-block !important;
				font-size: 1.5em;
				color: var(--white);				
			}

			.mobile-nav-item {
				display: list-item;
			}

			#mobile-menu {
				display: none;
				flex-direction: column;
				position: fixed;
				 top: 0;
				left: 0;
				 width: 100%;
				 height: 100vh;
				background-color: var(--articlesbgcol);
				box-shadow: 2px 0 5px rgba(0,0,0,0.1);
			}
			#mobile-menu.open {
				display: flex;
				border: 1px solid var(--mobmenubrdrcol);
				width: auto;
				height: fit-content;
				font-size: 1.5em;
				padding-right: 15px;
				font-family: "Raleway", Helvetica, sans-serif;
				font-size: 1.1em;
				font-weight: 500;
				letter-spacing: 0.25em;
				text-transform: uppercase;
				text-indent: 0.4em;
			}
			nav.links {
			  position: relative;
			  z-index: 10;
			  overflow: visible;
			}
			header {
			  position: relative;
			  z-index: 500;
			}
			#main {
			  z-index: 400;
			}

			
			.links li:has(#menu-toggle) {
				background-color: var(--black);
				height: 55px;
			}						
			
			li:has(.desktop-label) {
				display: none !important;
			}
		}

		@media screen and (min-width: 981px) {
			.links {
				display: flex;
				align-items: center;
			}

			.links ul {
				display: flex;
				flex-direction: row;
				align-items: center;
				margin: 0;
				padding: 0;
				list-style: none;
			}
			
			.links li {
				margin: 0;
				padding: 0;
			}
			
			li#menu-toggle {
				display: none !important;
			}
			
			#mobile-menu {
				display: flex !important;
				flex-direction: row;
				align-items: center;
				background: none;
				position: static;
				padding: 0;
				box-shadow: none;
			}

			.mobile-nav-item {
				display: none !important;
			}

			.mobile-icon {
				display: none !important;
			}
		}


		@media screen and (max-width: 736px) {
			#header {
				line-height: 2.75em;
			}

				#header h1 {
					padding: 0 1em 0 1em;
				}

				#header .main .search {
					display: none;
				}

				#header .links.open {
					display: flex;
					top: 2.75em;
				}

			#mobile-menu {				
				top: 43px;
				z-index: 1003;
			}

		}

/* Wrapper */
	#wrapper {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-flex-direction: row-reverse;
		-webkit-flex-direction: row-reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		-moz-transition: opacity 0.5s ease;
		-webkit-transition: opacity 0.5s ease;
		-ms-transition: opacity 0.5s ease;
		transition: opacity 0.5s ease;
		margin: 0 auto;
		max-width: 100%;
		opacity: 1;	
	}

		body.is-menu-visible #wrapper {
			opacity: 0.15;
		}

		@media screen and (max-width: 1280px) {

			#wrapper {
				display: block;
			}

		}

		@media screen and (max-width: 736px) {

			#wrapper {
				padding: 1.5em;
			}

		}

		body.single #wrapper {
			display: block;
		}

/* Main */
	#main {
		-moz-flex-grow: 1;
		-webkit-flex-grow: 1;
		-ms-flex-grow: 1;
		flex-grow: 1;
		-ms-flex: 1;
		width: 100%;
	}

/* Sidebar */
	#sidebar {
		margin-right: 3em;
		min-width: 22em;
		width: 22em;
	}

		#sidebar > * {
			border-top: solid 1px rgba(160, 160, 160, 0.3);
			margin: 3em 0 0 0;
			padding: 3em 0 0 0;
		}

		#sidebar > :first-child {
			border-top: 0;
			margin-top: 0;
			padding-top: 0;
		}

		@media screen and (max-width: 1280px) {

			#sidebar {
				border-top: solid 1px rgba(160, 160, 160, 0.3);
				margin: 3em 0 0 0;
				min-width: 0;
				padding: 3em 0 0 0;
				width: 100%;
				overflow-x: hidden;
			}

		}

/* Intro */
	#intro {
		text-align: center;
		overflow: hidden;		
		position: relative;
		margin-bottom: 35px;		
		margin: 0;
	    padding: 0 3em;
	    position: relative;
	    left: -3em;
	    width: calc(100% + 6em);
	    background: var(--articlesbgcol); /* optional for matching color */
	}
	
	#intro::before,
	#intro::after {
	  content: "";
	  position: absolute;
	  top: 0;
	  bottom: 0;
	  width: 50%;
	  background-size: cover;
	  background-repeat: no-repeat;
	  opacity: 0.2;
	  pointer-events: none;
	  z-index: 0;
	}
	
	#intro::before {
	  left: 0;
	}

	#intro::after {
	  right: 0;
	}
	
	.bgimage-left,
	.bgimage-right {
		position: absolute;
		top: 0;
		width: 20%;
		height: 100%;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center center;
		pointer-events: none;
		z-index: 22;
	}
	
	.bgimage-left {
		left: 0;
		clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0% 100%);
	}

	.bgimage-right {
		right: 0;
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 20% 100%);
	}

	#intro .logo {		
		/*height: 120px;
		width: 120px;*/
		height: 220px;
		width: 220px;
	}

		#intro .logo img {
			/*height: 120px;
			width: 120px;*/
			height: 220px;
			width: 220px;
		}

	#intro header {
		background-color: var(--mobilecolor);
		position: relative;
		z-index: 1;
	}

	#intro header h1,
	#intro header h2 {
		font-weight: 900;
		display: flex;
		align-items: center;
		justify-self: center;
		gap: 0.5em;
	}
	
	#intro header h1 {
		/*font-size: 3em;*/
		font-size: 5em;
		margin: 1px;
	}
	
	#intro header h2 {
		font-size: 2em;
		padding-bottom: 15px;
	}

	#intro header p {
		font-size: 0.8em;
	}

	@media screen and (max-width: 1280px) {

		#intro {
			/*margin: 0 0 3em 0;*/
			text-align: center;
		}

			#intro header h2 {
				font-size: 2em;
			}

			#intro header p {
				font-size: 0.7em;
			}

	}

	@media screen and (max-width: 736px) {

		#intro {
			margin: 0 0 1.5em 0;
			padding: 1.25em 0;
		}

			#intro > :last-child {
				margin-bottom: 0;
			}

			#intro .logo {
				margin: 0 0 0.5em 0;
			}

			#intro header h2 {
				font-size: 1.25em;
			}

			#intro header > :last-child {
				margin-bottom: 0;
			}

	}

/* Footer */
	#footer {
		display: flex;
		justify-content: space-between;
		font-size: 18pt;
		color: var(--mediumgrey);
	}

	#footer .icons {
		color: var(--mediumgrey);
	}

	#footer .copyright {
		color: var(--mediumgrey);
		font-family: "Raleway", Helvetica, sans-serif;
		font-size: 0.5em;
		font-weight: 400;
		letter-spacing: 0.25em;
		text-transform: uppercase;
		display: flex;
		justify-content: center;
		flex-direction: column;
		/* align-items: center; */
	}

	body.single #footer {
		text-align: center;
	}
	
	.social {
		display: flex;
		flex-direction: row;
		gap: 0.5em;
		font-family: "Raleway", Helvetica, sans-serif;
		font-weight: 400;
		letter-spacing: 0.15em;
		padding-bottom: 20px;
	}
	
	.social a {
		border: none;
	}
	
	.social a::before {		
		background: transparent;
	}
	
	.fa-facebook {
		color: #0866FF;
	}
	
	.fa-instagram {
		color: transparent;
		background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
		background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
		background-clip: text;
		-webkit-background-clip: text;
	}
	
	.fa-facebook, .fa-instagram {
		font-size: 36pt;
	}
	
	.fa-facebook:hover,
	.fa-instagram:hover	{
		color: var(--hovercolor);		
	}
	
	.social a:has(.fa-facebook:hover),
	.social a:has(.fa-instagram:hover) {
		transform: scale(1.2);
	}

/* Menu */
	#menu {
		-moz-transform: translateX(25em);
		-webkit-transform: translateX(25em);
		-ms-transform: translateX(25em);
		transform: translateX(25em);
		-moz-transition: -moz-transform 0.5s ease, visibility 0.5s;
		-webkit-transition: -webkit-transform 0.5s ease, visibility 0.5s;
		-ms-transition: -ms-transform 0.5s ease, visibility 0.5s;
		transition: transform 0.5s ease, visibility 0.5s;
		-webkit-overflow-scrolling: touch;
		background: var(--articlesbgcol);
		border-left: solid 1px rgba(160, 160, 160, 0.3);
		box-shadow: none;
		height: 100%;
		max-width: 80%;
		overflow-y: auto;
		position: fixed;
		right: 0;
		top: 0;
		visibility: hidden;
		width: 25em;
		z-index: 10002;
	}

		#menu > * {
			border-top: solid 1px rgba(160, 160, 160, 0.3);
			padding: 3em;
		}

			#menu > * > :last-child {
				margin-bottom: 0;
			}

		#menu > :first-child {
			border-top: 0;
		}

		#menu .links {
			list-style: none;
			padding: 0;
		}

			#menu .links > li {
				border: 0;
				border-top: dotted 1px rgba(160, 160, 160, 0.3);
				margin: 1.5em 0 0 0;
				padding: 1.5em 0 0 0;
			}

				#menu .links > li a {
					display: block;
					border-bottom: 0;
				}

					#menu .links > li a h3 {
						-moz-transition: color 0.2s ease;
						-webkit-transition: color 0.2s ease;
						-ms-transition: color 0.2s ease;
						transition: color 0.2s ease;
						font-size: 0.7em;
					}

					#menu .links > li a p {
						font-family: "Raleway", Helvetica, sans-serif;
						font-size: 0.6em;
						font-weight: 400;
						letter-spacing: 0.25em;
						margin-bottom: 0;
						text-decoration: none;
						text-transform: uppercase;
					}

					#menu .links > li a:hover h3 {
						color: var(--hovercolor);
					}

				#menu .links > li:first-child {
					border-top: 0;
					margin-top: 0;
					padding-top: 0;
				}

		body.is-menu-visible #menu {
			-moz-transform: translateX(0);
			-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
			visibility: visible;
		}

		@media screen and (max-width: 736px) {

			#menu > * {
				padding: 1.5em;
			}
		}

/* Navbar behavior on click */
#intro, #pickleball, #formules, #proefles, #trainingen, #overons, #nuttigelinks, #contact {
  scroll-margin-top: 100px;
}

@media screen and (max-width: 980px) {
	#wrapper {
	  padding: 0;
	}
	
	#intro {
	  scroll-margin-top: 110px;
	  padding: 0;
	  margin: 0;
      left: -1.5em;
      width: calc(100% + 3em);
	}
	
	#intro .bgimage-left {
		display: block;
		position: relative;
		width: 100%;
		height: 250px !important;
		clip-path: none;
		background-size: 50%;
		background-position: center;
		margin-bottom: 1em;
		z-index: 1;
		background-color: #026ba5;
	  }
	
	#header .desktop-header,
	#header .desktop-header	li:has(h1) {
		position: relative;
		width: 100%;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	  }
	  
	 #header .desktop-header {
		 height: 55px;
	 }

	  .mobile-moved-h1 {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		font-size: 1.6em !important;
		font-weight: bold;
		color: var(--white);
		white-space: nowrap;
		line-height: 1;
	  }

	  .mobile-icon {
		font-size: 1.5em;
		color: var(--white);
	  }

	  #header {
		justify-content: flex-start !important;
	  }	
	
	#pickleball, #formules, #proefles, #trainingen, #overons, #nuttigelinks, #contact {
	  scroll-margin-top: 40px;
	}
	
	#footer, .hpfooter {
		font-size: 14pt !important;
	}
	
	.social {	
		align-items: center;
	}
	
	.social a {
		font-size: 18pt !important;
	}
	
	/* BG images styling on mobile */
	  .bgimage-left,
	  .bgimage-right {
		position: relative;
		display: block;
		width: 100%;
		height: 150px;
		clip-path: none;
		margin: 0 auto;
		background-position: center;
		background-size: cover;
		z-index: 0;
	  }
	  /* Optional spacing between the two banners */
	  .bgimage-left {
		margin-bottom: 0.5em;
	  }
	  .bgimage-right {
		margin-top: 0.5em;
	  }
	  /* Remove layered positioning on sections */
	  #intro, #formules, #proefles, #nuttigelinks, #contact {
		position: relative;
		overflow: visible;
		z-index: 3;
	  }
}

@media screen and (max-width: 736px) {
	#footer, .hpfooter {
		font-size: 12pt !important;
	}
	
	.social {	
		align-items: center;
	}
	
	.social a {
		font-size: 18pt !important;
	}
}			

/* Table */
.hptable {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  margin-bottom: 35px;
  z-index: 12;
  position: relative;  
}
.hprow {
  display: flex;
  width: 100%;
  border-bottom: 3px dashed var(--lightgrey);
  align-items: center;
  flex-wrap: nowrap;
}
.hptable .hprow:nth-child(odd) {
  color: var(--black);
}
.hptable .hprow:nth-child(even) {
  color: var(--blue);
}
.hpcell {
  flex: 1;
  padding: 8px;  
  box-sizing: border-box;
  max-width: 25%;
  word-break: break-word;
  font-size: 20pt;
  text-align: center;
}
.hpcell.name {
  font-size: 28pt;
  letter-spacing: 3px;  
}
.hpcell.name::before,
.hpcell.name::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;  
  color: var(--lightteal);
}
.hptable .hprow:nth-child(odd) .hpcell.name::before {
  content:"\f061";
  margin-right: 1.5em;
}
.hptable .hprow:nth-child(even) .hpcell.name::after {
  content:"\f060";
  margin-left: 1.5em;
}
.hptable .hprow:nth-child(odd) .hpcell:first-child,
.hptable .hprow:nth-child(even) .hpcell:last-child {
  max-width: 200px;
}
.hptable .hprow:nth-child(odd) .hpcell.name {
  text-align: left;
}
.hptable .hprow:nth-child(even) .hpcell.name {
  text-align: right;
}
.hptable, .hprow, .hpcell, .hpcell a {
	background-color: transparent !important;
	vertical-align: middle;
}
.hpright {
	justify-content: flex-end;
}
.hpleft {
	justify-content: flex-start;
}
.hpcell a {
  padding-left: 5px;
  padding-right: 5px;
}
.hptable > .hprow:last-child {
  border-bottom: none !important;
}
.hpfooter {
  justify-content: center;
  display: flex;
  border: none;
  padding-left: 8px;
  padding-top: 20px;
  text-align: right;
  font-size: 28pt;
  color: var(--mediumgrey);
}
@media (max-width: 768px) {
  .hprow {
    flex-direction: column;
	padding-bottom: 15px;
    padding-top: 15px;
  }

  .hpcell {
    max-width: 100%;
    width: 100%;
	text-align: center;
  }
}

/* Image grid */
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  padding: 16px;
  height: 100vh;
  width: 75vw;
  box-sizing: border-box;
}
/* Container that holds each image */
.img-wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}
/* Grid placement */
.img-wrapper.left {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.img-wrapper.top {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.img-wrapper.bottom {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
/* The actual image */
.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  transform-origin: center;
  display: block;
  pointer-events: none;
  border-radius: 25px;
}
/* Zoom effect centered */
.img-wrapper:hover img {
  transform: scale(1.2);
}

@media screen and (max-width: 980px) {
  .image-grid {
    display: flex;
    flex-direction: column;
    align-items: center; /* default center alignment */
    gap: 24px;
    padding: 16px;
    height: auto;
    width: 100%;
  }
  .img-wrapper {
    width: 90%;
    height: auto;
    aspect-ratio: 3 / 2; /* keeps images proportionate */
  }
  /* Align first and third image to the left */
  .img-wrapper.left,
  .img-wrapper.bottom {
    align-self: flex-start;
  }
  /* Align second (middle) image to the right */
  .img-wrapper.top {
    align-self: flex-end;
  }
  .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    transform-origin: center;
    display: block;
    pointer-events: none;
  }
  .img-wrapper:hover img {
    transform: scale(1.2);
  }
  #overons p {
	padding: 25px;
  }
  #overons footer {
	padding-top: 25px;
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 736px) {
	#overons footer, #overons p {
		padding-bottom: 20px;
	}
}


/* 2x2 grid layout */
.grid-container {
  display: grid;
  grid-template-areas:
    "top-left top-right"
    "bottom-left bottom-right";
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 1000px;
  padding-bottom: 45px;
  justify-self: center;
}
.grid-item {  
  display: flex;
  flex-direction: column;
  /*justify-content: center;*/
  align-items: center;
  text-align: center;
  line-height: 1;
}
/* Assign grid areas */
.item-top-left { grid-area: top-left; }
.item-top-right { grid-area: top-right; }
.item-bottom-left { grid-area: bottom-left; }
.item-bottom-right { grid-area: bottom-right; }
/* Responsive layout */
@media (max-width: 768px) {
  .grid-container {
    grid-template-areas:
      "top-left"
      "bottom-left"
      "top-right"
      "bottom-right";
    grid-template-columns: 1fr;
  }
}

/* iframes style */
.iframestyle {
	width: 500px;
	height: 300px;
	display: block;
	border:0;
}

/* Contact form */
.contactform label {
	margin: 0 !important;
}
.contactform input {
	margin-bottom: 25px;
}
.contactform .fields {
	margin-bottom: 25px;
}
textarea {
  resize: vertical;
}
.popup {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup-content {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.hidden {
  display: none;
}

/* H1 subtitle */
.title-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 0;
}

.title-block h1 {
  font-size: 5em;
  margin: 0;
}

.subtitle {
  display: inline-block;
  white-space: nowrap;
  font-size: 1.4em;
  padding-left: 0.1em;
  letter-spacing: 3px;
}

@media screen and (max-width: 980px) {
	.subtitle {
		font-size: 2.8em;
	}
	.title-block, .title-block *, #intro header h2 {	  
	  max-width: 80%;
	  display: inline-block;
	}
	
	#trainingen h2 {
	  font-size: 22pt;
	}
	
	#trainingen h3 {
	  font-size: 18pt;	  
	}
	
	#trainingen h4, #trainingen .grid-container * {	  
	  display: block;
	  text-align: center;
	  justify-self: center;
	  align-self: center;
	  line-height: 26px !important;
	}
	
	#trainingen .grid-container {
		display: flex;
		flex-direction: column;
	  }

	  .item-top-left {
		order: 1;
	  }

	  .item-bottom-left {
		order: 2;
	  }

	  .item-top-right {
		order: 3;
	  }

	  .item-bottom-right {
		order: 4;
	  }
	  
	.iframestyle {
		width: 95%;
		height: 300px;
		display: block;
		border: 0;
	}
	
	.button {
	  width: fit-content;
	  max-width: 95%;
	  white-space: nowrap;
	  overflow: hidden;
	  letter-spacing: 0.05em;
	  font-size: 16pt;
	  justify-self: center;
	  justify-content: center;
	  display: flex;
	  align-self: center;
	}

	ul:has(.button) {
		justify-self: center;
	}
	
	.button i {
		align-self: center;
	}
}
@media screen and (max-width: 736px) {
	.subtitle {
		font-size: 2.2em;
	}
}
@media screen and (max-width: 480px) {
	.subtitle {
		font-size: 1.8em;
	}
}
@media screen and (max-width: 400px) {
	.subtitle {
		font-size: 1.6em;
	}
}
@media screen and (max-width: 350px) {
	.subtitle {
		font-size: 1.4em;
	}
}

/* Hapi top-left */
.desktop-header {
	color: var(--titlecolor);
    background-color: var(--mobilecolor);;
}
#header .links .desktop-header li.active {
	color: var(--titlecolor);
    background-color: var(--mobilecolor);
}
#header .links li:has(#menu-toggle).active {    
	color: var(--white);
    background-color: var(--black);
}

/* Effect */
.masked-stroke-text {
    font-size: 8rem;
    font-weight: bold;
    color: var(--blue);
	-webkit-text-stroke: 8px transparent;
	position: relative;
    display: inline-block;
	background: linear-gradient(120deg, #FFD900, #EEE8AA, #FFD900);
    background-size: 200%;
    background-position: 0 50%;
    background-clip: text;
    -webkit-background-clip: text;    
    animation: animate-stroke 15s infinite alternate linear;
	-webkit-text-fill-color: currentColor;
}
@keyframes animate-stroke {
    0% {
        background-position: 0 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* Profile pictures */
.profilepic {
	width: 150px;
	height: 150px;
}
.profilepic:hover {
	transform: scale(1.2);
	transition-duration: 0.5s;
}

/* Section specific styling */
#pickleball, #pickleball * {
	background-color: var(--blue);
	color: var(--white);
}
#pickleball {
	position: relative;
	z-index: 0;
	margin-top: 35px;
}
#pickleball::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; /* Start at the middle */
  right: 0;
  height: 100%;
  background-image: url('images/hapi-1.jpg');
  background-size: auto;
  background-repeat: no-repeat;
  background-position: 60% 75%;
  opacity: 0.1;
  z-index: 11;
  pointer-events: none;
}

#formules, #formules * {
	background-color: var(--black);
	color: var(--white);
}
#formules {
	position: relative;
	z-index: 0;
}
#formules::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; /* Start at the middle */
  right: 0;
  height: 100%;
  background-image: url('images/courtsideview.jpg');
  background-size: auto;
  background-repeat: no-repeat;
  background-position: 60% 75%;
  opacity: 0.1;
  z-index: 11;
  pointer-events: none;
}
#formules footer {
  display: block;
  padding: 5px;
}
#formules footer li {
  display: block;
  text-align: right;
  line-height: 35px;
}
#formules p {
  text-align:right;
  padding-left: 20%;
}

#proefles, #proefles * {
	background-color: var(--yellow);
	color: var(--black);
}
#proefles i {
	background-color: transparent;
	border: none;
	color: var(--lightteal);
}
#proefles {
	position: relative;
	z-index: 0;
}
#proefles::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; /* Start at the middle */
  right: 0;
  height: 100%;
  background-image: url('images/girlpickelball.jpg');
  background-size: auto;
  background-repeat: no-repeat;
  background-position: 60% 75%;
  opacity: 0.1;
  z-index: 11;
  pointer-events: none;
}

#trainingen, #trainingen * {
	background-color: var(--blue);
	color: var(--white);
	text-align: center;
}
#trainingen {
	position: relative;
	z-index: 0;
}
#trainingen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; /* Start at the middle */
  right: 0;
  height: 100%;
  background-image: url('images/manpickleball.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 60% 75%;
  opacity: 0.1;
  z-index: 11;
  pointer-events: none;
}
#trainingen header {
	margin-bottom: 15px;
}
#trainingen p {
	margin: 0 0 5px 0;
	font-size: 1.4em;
}
#trainingen .grid-container {
	font-size: 1.4em;
}
#trainingen ul {
	padding-bottom: 25px;
	font-size: 1.4em;
	list-style-type: none;
}

#overons {
	position: relative;
	z-index: 0;
}
#overons::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: url('images/hapifoto1.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 0.05;
  z-index: 11;
  pointer-events: none;
}
#overons header div {
	width: 100%;
}
#overons header h2 {
    display: flex;
	justify-content: center;
}
#overons header h3 {
    display: flex;
	justify-content: center;
}
#overons header {
	margin: -3em 0 1em 0;
}
#overons p {	
	text-align: center;
	margin: 0;
}
#overons footer {	
	position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
	background: var(--blue);
	color: var(--yellow);
	font-size: 4vw;
	font-weight: bold;
	letter-spacing: 4px;
	word-spacing: 20px;
	justify-content: center;
	text-transform: uppercase;
}
#nuttigelinks, #nuttigelinks * {
	background-color: var(--black);
	color: var(--white);
	text-align: right;
}
#nuttigelinks {
	position: relative;
	z-index: 0;
	padding-bottom: 10px;
}
#nuttigelinks::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: url('images/pbpaddlehit.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 60% 75%;
  opacity: 0.1;
  z-index: 11;
  pointer-events: none;
}
#nuttigelinks p {
  text-align: right;
  padding-left: 20%;
}
#nuttigelinks .hprow {
	justify-content: flex-end;
}
#nuttigelinks .hpcell {
	font-size: 15pt;
	text-align: left;
}
#nuttigelinks a {
	padding-bottom: 2px;
	border-bottom: 1px dotted var(--blue);
	color: var(--lightteal);
	font-weight: bold;
}
#nuttigelinks a:hover {
	color: var(--white);
}

@media screen and (min-width: 981px) {
	#nuttigelinks .hprow .hpcell:nth-child(1) {
	  max-width: 15% !important;
	  flex: 1 1 15%;
	}

	#nuttigelinks .hprow .hpcell:nth-child(2) {
	  max-width: 30% !important;
	  flex: 1 1 35%;
	}

	#nuttigelinks .hprow .hpcell:nth-child(3) {
	  max-width: 25% !important;
	  flex: 1 1 25%;
	}
}

#contact, #contact * {
	background-color: var(--white);
	color: var(--black);
	text-align: left;
}
#contact {
	position: relative;
	z-index: 0;
	padding-bottom: 10px;
	margin: 0 0 1em 0;
}
#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: url('images/bgemail.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 60% 75%;
  opacity: 0.02;
  z-index: 11;
  pointer-events: none;
}
#contact header {
	margin: -3em 0 1em 0;
}
#contact {
	margin: 0;
}
#contact .featured {
    height: 200px;
}

.pagefooter {
	padding-left: 50px;
	padding-right: 50px;
}
.pagefooter .social {
	padding-top: 10px;
	padding-bottom: 10px;
}

/* header bg */
.title, h2, h3 {
	background: transparent !important;
}

@media screen and (max-width: 1120px) and (min-width: 980px) {
	#nuttigelinks h3 {
		font-size: 1.6em !important;
	}
}

@media screen and (max-width: 980px) {
	#menu-toggle {
		cursor: pointer;
		background-color: rgba(0, 0, 0, 0.25);
		height: 55px;
	}
	#menu-toggle a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		padding: 1em;
		text-decoration: none;
	}
	#menu-toggle:hover,
	#menu-toggle:focus-within {
		background-color: rgba(0, 0, 0, 0.25);
	}
	#intro {
		.bgimage-right {
			display: none;
		}
	}
	#pickleball, #formules {		
		margin-top: -5px;
		padding: 1.5em 1.5em 0.1em 3em;
	}
	#pickleball	p {
		padding: 15px;
	}
	.post {
	    margin: 0;
	}
	#proefles p, #formules p, #nuttigelinks p, #contact p {
		padding-left: 15px !important;
		padding-right: 15px !important;
		padding-top: 15px !important;
	}
	#proefles p, #formules p, #nuttigelinks p {
		text-align: center !important;	  
	}
	#proefles footer {
		margin-bottom: 35px;
	}
	#proefles footer ul * {
		display: flex;		
		justify-content: center;
	}
	#contact p {
		text-align: left !important;
	}
	#formules footer {
		text-align: left !important;
		padding-left: 15px !important;
		margin-bottom: 35px;
	}
	#overons h2, #overons h3 {
		display: flex;
		justify-content: center !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	#overons .hpcell.name {
	  font-size: 22pt;
	  letter-spacing: 2px;  
	}
	#nuttigelinks h3, #nuttigelinks, #nuttigelinks *, 
	#contact h2, #contact h3 {
		text-align: center;
	}	
	#nuttigelinks .hpcell {
		max-width: 90% !important;
	}
	#contact form {
		max-width: 90% !important;
		margin: 0 0 2em 2em;
	}
	.pagefooter {
		padding: 5px;
	}
	#footer .copyright {
		letter-spacing: 0.05em;
	}	
	.pagefooter .social {
		font-size: 0.6em;
		letter-spacing: 0.05em;
	}
	.pagefooter .social i {
		font-size: 1.4em;
		padding-left: 5px;
	}
}
