/**
	@Author:	Paul Strandoo/Spi-des-ign
	@Date:		28 May 2018
	@Notes:		HPL Retail
	
	color: #3887BE;
	color: #59a7de;
	darker blue: #3887be;
	yellow: #fac92b;
	
	bright green: #659412;
	blue: #0e2835;
	footer green: #669714;
	button green: #659412;

	font-family: 'IBM Plex Sans', sans-serif; 300, 400, 400i, 600
*/
@import url(reset.css); 

* {
	margin: 0;
	padding: 0;
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
	box-sizing: border-box;
	}

body {
	background: #ffffff;
	color: #4A4E53;
	color: #777;
	line-height: 1.5em;
	word-wrap: break-word;
	overflow-x: hidden;
	-webkit-text-size-adjust: none;
	}

body, input, textarea, table {
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 14px;
	color: #4A4E53;
	color: #777;
	}

a, a:visited {
	color: #222;
	}
a:hover, a:active {
	color: #4A4E53;
	text-decoration: none;
	}

h1 { 
	font-family: 'IBM Plex Sans', sans-serif;
	color: #33393F;
	font-size: 2.8em;
	line-height: 1.1em;
	font-weight: 300;
	margin: 0 0 35px;
	width: 95%;
	letter-spacing: -1px;
	}
h1 strong,
h1 b,
h1 span {
	font-size: 65%;
	display: block;
	}

h2 { 
	font-family: 'IBM Plex Sans', sans-serif;
	color: #33393F;
	font-size: 2.4em; 
	line-height: 1.1em;
	font-weight: 300;
	margin: 0.2em 0 0.6em;
	}
h3 { 
	font-family: 'IBM Plex Sans', sans-serif;
	color: #33393F;
	font-size: 1.8em;
	line-height: 1.1em;
	font-weight: 300;
	margin: 0 0 0.4em;
	}

h4 { 
	font-size: 1.3em;
	}
h5 { font-size: 12px; }
h6 { font-size: 10px; }

p,
li {
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 1.125em;
	font-weight: 300;
	line-height: 1.7em;
	color: #4A4E53;
	margin: 0 0 1em;
	padding: 0;
	}
ul {
	margin: 2em 0;
	}
li {
	font-weight: 300;
	margin: 0;
	}

img {
	height: auto;
	max-width: 100%;
	}	


@media screen and (min-width: 570px) {
	p, li {
		font-size: 1.2em;
		}
	h1 {
		font-size: 3.5em;
		width: 100%;
		}
}


/* ----- [ Structure ] -----------------*/
.page-overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	background: rgba(0,0,0,0.4);
	z-index: 600;
	opacity: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.page-overlay.is-open {
	opacity: 1;
	visibility: visible;
	}
.page-overlay.is-open + .page-header {
	position: fixed;
	}


header,
section,
footer {
	width: 100%;
	}
section {
	margin: 20px 0;
	padding: 0;
	position: relative;
	}
.inner {
	max-width: 960px;
	margin: 20px auto;
	padding: 0 15px;
	position: relative;
	}
.inner-full {
	max-width: 100%;
	/*height: 250px;*/
	margin: 0;
	padding: 0;
	overflow: hidden;
}

@media only screen and (min-width: 200px) {
	.flex-inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		position: relative;
		max-width: 100%;
		height: 100%;
		padding: 0 20px;
		}
}
@media only screen and (min-width: 974px) {
	.flex-inner {
		margin: 20px 0;
		}
}




/* ----- [ Strandoo Simple Grid System v2.8 ] --------------- */
.row {
	display: block;
	margin: 0 -15px;
	overflow: hidden;
	position: relative;
	}

.stretch {
	align-items: stretch;
	}

.row > .col {
	width: 100%;
	vertical-align: top;
	padding: 0 15px;
	}

.row.no-padding,
.row.padding-0 {
	margin: 0;
	}
.row.padding-1 {
	margin: 0 -1px;
	}
.row.padding-5 {
	margin: 0 -5px;
	padding-top: 5px;
	}
.row.padding-5 {
	margin: 0 -5px;
	padding-top: 5px;
	}
.row.padding-10 {
	margin: 0 -10px;
	padding-top: 10px;
	}
.row.padding-20 {
	margin: 0 -20px;
	}

.no-padding > .col,
.padding-0 > .col {
	padding: 0;
	}
.padding-1 > .col {
	padding: 1px;
	}
	
.padding-5 > .col {
	padding: 5px;
	}
.padding-10 > .col {
	padding: 10px;
	}
.padding-20 > .col {
	padding: 20px;
	}

.row.text-center > .col {
	text-align: center;
	}

.row > .col.fright {
	float: right;
	}
.row > .col.fleft {
	float: left;
	}

.col > img {
	max-width: 100%;
	}

img.full {
	width: 100%;
	}
img.half {
	width: 50%;
	float: left;
	}

.centered,
.centered p,
.centered h2,
.centered h3 {
	text-align: center;
	}

/* 600px equivalent breakpoint */
@media only screen and (min-width: 37.5em) { 
	.row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		}

	.row-2 > .col { width: 50%; }
	.row-3 > .col { width: 33.333%; }
	.row-4 > .col { width: 25%;}
	.row-5 > .col { width: 20%;}
	.row-6 > .col { width: 16.666%;}

	.row-2 .span-2 { width: 100%; }
	.row-3 .span-2 { width: 66%; }
	.row-4 .span-2 { width: 50%; }
	.row-4 .span-3 { width: 75%; }
	.row-5 .span-2 { width: 40%; }
	.row-5 .span-3 { width: 60%; }
	.row-5 .span-4 { width: 80%; }
}


.dark {
	color: #fff !important;
	background: #0e2835;
	}
.dark h2,
.dark h3,
.dark p,
.dark li,
.dark a {
	color: #fff;
	}


/* ----- [ Page Header / Masthead ] -----------------*/
.page-header {
	/* fixed or not */
	position: fixed;
	/*position: absolute;*/
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 999;
	background: #0e2734;
	border-bottom: 5px solid #8ba434;
	
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	}
.page-header.is-hidden {
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
	}
	
.page-header .inner {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 5px 15px;
	}



.logo-wrap {
	display: block;
	max-width: 185px;
	width: 185px;
	margin: 0;
	margin-right: auto;
	text-decoration: none;
	border: none;
	}
.head-logo {
	width: 100%;
	display: block;
	}

.head-phone {
	color: #fff;
	font-size: 28px;
	font-weight: 300;
	text-align: right;
	margin: 0 0 20px;
	display: none;
	}
@media only screen and (min-width: 800px) {
	.head-phone {
		display: block;
		}
}

@media screen and (min-width: 570px) {
	.page-header .inner {
		max-width: 100%;
		justify-content: space-between;
		}
}

/* ----- [ Menu Trigger (Hamburger) ] ---- */
.menu-toggle {
	display: block;
	background: transparent;
	width: 44px;
	height: 44px;
	position: relative;
	cursor: pointer;
}
.menu-toggle a {
	display: none;
	}

.menu-toggle .menu-icon {
	/* this span is the central line in the menu menu */
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	width: 26px;
	height: 2px;
	background-color: #fff;
	/* these are the upper and lower lines in the menu menu */
	}
.menu-toggle .menu-icon::before, 
.menu-toggle .menu-icon:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: inherit;
	left: 0;
	}
.menu-toggle .menu-icon::before {
	bottom: 8px;
	}
.menu-toggle .menu-icon::after {
	top: 8px;
	}
.menu-toggle.is-clicked .menu-icon {
	background-color: rgba(255, 255, 255, 0);
	}
.menu-toggle.is-clicked .menu-icon::before, 
.menu-toggle.is-clicked .menu-icon::after {
	background-color: #fff;
	}
.menu-toggle.is-clicked .menu-icon::before {
	bottom: 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	}
.menu-toggle.is-clicked .menu-icon::after {
	top: 0;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	}
	
@media only screen and (min-width: 800px) {		
	.menu-toggle {
		display: none;
		}
	.menu-toggle .menu-text {
		display: inline-block;
		line-height: 70px;
		}
	.menu-toggle .menu-icon {
		left: auto;
		right: 1.25em;
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
		}
}


/* ----- [ Navigation / Search ] ------ */
.nav {
	/*display: none;*/
	position: relative;
	width: 100%;
	max-height: 0;
	padding: 20px 15px 0;
	padding: 0 15px;
	overflow: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}
	
	
.nav.is-open {
	max-height: 1000px;
	height: 100vh;
	padding-top: 20px;
	}

.nav > ul {
	text-align: left;
	margin: 20px 0 20px 46px;
	}
	
.nav li {
	position: relative;
	font-size: 24px;
	margin: 0 0 1em;
	}


.nav li a,
.nav li a:visited {
	color: #fff;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	font-weight: 700;
	padding-bottom: 5px;
	}
.nav li a:hover {
	border-bottom: 5px solid #8ba434;
	}
.nav li.on > a {
	border-bottom: 5px solid #8ba434;
	}



@media only screen and (min-width: 800px) {

		
	.nav {
		/*float: right;*/
		display: block;
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		width: auto;
		margin: 0;
		padding: 20px 0 0;
		background: transparent;
		max-height: 200px;
		overflow: visible;
		}
	.nav ul {
		text-align: right;
		margin: 0;
		}
	.nav li {
		position: relative;
		display: inline-block;
		margin: 0 0 0 2em;
		font-size: 17px;
		}
}



/* ----- [ Hero Images ] -----------------*/
.hero {
	height: 500px;
	margin-top: 0;
	border-top: 100px solid #8ba434;
	border-bottom: 20px solid #8ba434;
	overflow: hidden;
	background-size: cover;
	}

.hero-overlay {				
	/* z-index: 1; */
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	background: transparent;
	background: rgba(0, 0, 0, 0.3) url('../images/hlp-device-large.png') 90% 50% no-repeat;
	}
.hero-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center; 
	align-items: center;
	height: 100%;
	padding: 0;
	position: relative;
	}

.hero-text {
	text-align: center;
	color: #fff;
	}
.hero-text p {

	font-size: 36px;
	line-height: 1.3em;
	color: #8ba434;
	color: #fff;
	font-weight: 300;
	text-shadow: 0 0 20px rgba(0,0,0,1);
	}
.hero-text span,
.hero-text strong {
	font-size: 42px;
	color: #8ec11e;
	font-weight: 400;
	}

@media screen and (min-width: 570px) {
	.hero {
		height: 570px;
		background-attachment: fixed;
		}
	.home-hero {
		height: 720px;
		}
	.hero-inner {
		justify-content: center; 
		align-items: flex-end;
		}
	.hero-text p {
		font-size: 48px;
		}
	.hero-text span,
	.hero-text strong {
		font-size: 72px;
		}
}

/* ----- [ Home: Services ] -----------------*/
.services-section {
	color: #fff;
	background: #0e2835;
	}

.service-row:nth-of-type(even) {
	flex-direction: row-reverse;
	}
	
.service-thumb {
	overflow: hidden;
	}
.service-image {
	display: block;
	width: 100%;
	}

.service-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center; 
	align-items: center;
	padding: 30px 30px !important;
	}

.service-summary {
	max-width: 500px;
	}
.service-button {
	display: inline-block;
	}

.service-logo {
	width: 140px;
	margin: 0 auto;
	}


@media screen and (min-width: 570px) {
	.service-text {
		padding: 20px 30px !important;
	}
}

@media screen and (min-width: 600px) {
	.service-image {
		display: block;
		object-fit: cover;
		max-width: 880px !important;
		height: 550px;
		width: auto;
		}
}
@media screen and (min-width: 1200px) {
	.service-image {
		display: block;
		object-fit: fill;
		max-width: 100% !important;
		height: auto;
		width: 100%;
		}
}

/* ----- [ Home: Intro ] -----------------*/
.home-headline {
	margin: 20px 0;
	}

.intro-text-section {
	padding: 5px 0 15px;
	}
.intro-text p {
	font-size: 1.4em;
	line-height: 1.8em;
	font-weight: 400;
	}

@media screen and (min-width: 570px) {
	.home-headline {
		margin: 60px 0;
		}
	.intro-text-section {
		padding: 40px 0 60px;
		}
}


/* ----- [ Home: Video Section ] -----------------*/
.video-section {
	padding: 30px 0 50px;
	}
	
.video-logo {
	width: 300px;
	margin: 0 auto 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #87949a;
	}
.video-logo img {
	max-width: 185px;
	margin-left: -10px;
	}

.video-text p {
	font-size: 2.2em;
	line-height: 1.8em;
	font-weight: 300;
	margin-bottom: 2em;
	}

.TextformatterVideoEmbed {
	margin-bottom: 80px;
	padding-top: 40px;
	border-bottom: 1px solid #87949a;
	}

	
/* ----- [ Include: Client Logos ] -----------------*/
.logos-section {
	padding: 40px 0;
	}
.client-logo {
	display: inline-block;
	height: 60px;
	margin: 0 0 20px;
	}
.client-logo img {
	height: 100%;
	}

@media screen and (min-width: 570px) {
	.client-logo {
		margin: 0 20px;
		}
}


.text-bg-rule {
	margin: 30px auto 40px;
	position: relative;
	}
.text-bg-rule:before,
.text-bg-rule:after {
	content: " ";
	position: absolute;
	top: 55%;
	margin-left: -999em;
	height: 1px;
	width: 998.5em;
	background: #fff;
	}
.text-bg-rule:after {
	left: auto;
	width: 999em;
	margin: 0 0 0 0.5em;
	}
.overflow-hidden {
	overflow: hidden;
	}


/* ----- [ CMS Content ] -----------------*/
/* Case Studies: 2 or 3 placed image. New CMS-styles for paragraphs with images */
.cms-text p > img {
	max-width: 100%;
	display: block;
	}

.cms-text ul,
.cms-text ol {
	margin: 0 0 1em;
	}
.cms-text ul li {
	list-style-type: disc;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	}
.cms-text ol li {
	list-style-type: decimal;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	}

p.image-row-1,
p.image-row-2,
p.image-row-3 {
	margin: 0 0 20px 0;
	overflow: hidden;	
	}

p.image-row-2 > img,
p.image-row-3 > img {
	float: none;
	width: 100%;
	margin: 0 0 20px 0;
}


/* 600px equivalent breakpoint */
@media only screen and (min-width: 37.5em) { 
	/* CMS styles */
	p.image-row-2 > img {
		float: left;
		width: 48.75%;
		margin: 0 2.4% 0 0;
	}
	p.image-row-2 > img:nth-of-type(even) {
		float: right;
		margin-right: 0;
	}

	p.image-row-3 > img {
		float: left;
		width: 31.7%;
		margin: 0 2.4% 0 0;
	}
	p.image-row-3 > img:nth-of-type(3) {
		float: right;
		margin-right: 0;
	}

	p.image-row-4 > img {
		float: left;
		width: 23.2%;
		margin: 0 2.4% 0 0;
	}
	p.image-row-4 > img:nth-of-type(4) {
		float: right;
		margin-right: 0;
	}
}


/* ----- [ Contact Page ] --------------- */
/* ----- [ Include: Map/Contact Form ] -----------------*/
.map-contact-section {
	padding: 0;
	margin-bottom: 50px;
	}

.map-col {
	/*padding-right: 15px !important;*/
	position: relative;
	}
#map-canvas {
	height: 500px;
	width: 100%;
	margin-bottom: 30px;
	}

.map-address {
	position: absolute;
	display: none; /* using the Google */
	top: auto;
	bottom: 60%;
	left: 5%;
	right: auto;
	padding: 20px;
	background: rgba(255,255,255,0.9);
	z-index: 555;
	/*-webkit-transform: translate(-50%,0);
	-moz-transform: translate(-50%,0);
	-ms-transform: translate(-50%,0);
	-o-transform: translate(-50%,0);
	transform: translate(-50%,0);*/
	}
.map-address p {
	line-height: 1.2em;
	}
.map-address p:last-of-type {
	margin-bottom: 0;
	}
.info-window {
	padding: 10px;
	}
.info-window,
.info-window h4,
.info-window p {
	line-height: 1.4em;
	margin: 0;
	}
	
@media only screen and (min-width: 600px) { 
	#map-canvas {
		height: 100%;
		width: 100%;
		margin-bottom: 0;
		}
	.map-address {
		bottom: 55%;
		}
}
@media only screen and (min-width: 800px) { 
	.map-address {
		top: 45%;
		bottom: auto;
		left: 55%;
		right: 0;
		-webkit-transform: translate(0,-50%);
		-moz-transform: translate(0,-50%);
		-ms-transform: translate(0,-50%);
		-o-transform: translate(0,-50%);
		transform: translate(0,-50%);
		}
}


.form-wrapper {
	max-width: 470px;
	padding: 10px 30px;
	}
.contact-form {
	width: 100%;
	}

.contact-us-form {
	margin-bottom: 30px;
	}
	
@media screen and (min-width: 570px) {
	.form-wrapper {
		max-width: 470px;
		padding: 50px 30px;
		}
}
	
#contact-us-message {
	color: #222;
	background: #b2d285;
	padding: 10px;
	text-align: center;
	/*border-radius: 5px;*/
	margin-bottom: 10px;
	}

#contact-us-message.error {
	background: transparent;
	border: 1px solid red;
	color: red;
	padding; 5px 10px;
	}

input,
textarea {
	width: 100%;
	padding: 6px;
	margin: 3px 0 10px;
	background: #fff;
	font-size: 16px;
	color: #333;
	border: 2px solid #ccc;
	/*-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;*/
	}
input:focus, 
textarea:focus {
	background: #fff;
	}
button,
.button {
	width: 100%;
	font-size: 16px;
	padding: 10px 15px;
	background: #669714;
	color: #fff;
	border: none;
	cursor: pointer;
	}
button:hover,
.button:hover {
	background: #669714;
	opacity: 0.9;
	}

/* checkboxes */
label.check-control {
	position: relative;
	display: block !important;
	padding-left: 32px;
	line-height: 1.1em;
	}
.check-control input {
	position: absolute;
	opacity: 0;
	width: auto;
	cursor: pointer;
	}
.check-control input:focus {
	border: 2px solid #000;
	outline: none;
	box-shadow: none;
	}

.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: #fff;
	border: 2px solid #000;
	border: 2px solid rgba(0, 0, 0, 0.2);
	border-radius: .25rem;
	display: inline-block !important;
	}
.check-control:hover input ~ .checkmark {
	border: 2px solid #000;
	}
.check-control input:checked ~ .checkmark {
	background-color: green;
	}
.check-control input:focus ~ .checkmark {
	border: 2px solid #000;	
	}
	
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
	}
	
/* Show the checkmark when checked */
.check-control input:checked ~ .checkmark:after {
	display: block;
	}
.check-control .checkmark:after {
	left: 4px;
	top: 0;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	}

.contact-consent {
	margin: 0 0 1em;
	border: 2px solid #ddd;
	padding: 5px 15px;
	/*border-radius: 4px;*/
	}
.contact-consent label {
	width: 100%;
	vertical-align: middle;
	margin: 10px 0;
	}
.contact-consent .checkmark {
	top: 0px;
	}

.g-recaptcha {
	margin: 0 0 10px;
	}

label > span {
	float: right;
	color: #f00;
	}


@media only screen and (min-width: 37.5em) { 
	button,
	.button {
		width: auto;
		}
}	



/* ----- [ Gallery Page ] --------------- */
/* ----- [ Gallery Page & Sections / Isotope ] -----------------*/
.gallery-section {
	padding: 30px 0 40px;
	}

.gallery-link {
	display: block;
	opacity: 1;
	transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    }
.gallery-link:hover {
	opacity: 0.5;
	border-bottom: none;
	}

.grid-sizer,
.grid-item { 
	/*width: calc(33.333% - 20px);*/
	width: 100%;
	margin: 0 0 20px;
	}
.grid-item--width2 { width: 64%; }

.gutter-sizer {
	width: 2%;
	}

.grid-item img {
	width: auto;
	max-width: 100%;
	vertical-align: middle;
	}
	
@media screen and (min-width: 570px) {
	.grid-sizer,
	.grid-item,
	.grid-item--width2 { 
		/*width: calc(33.333% - 20px);*/
		width: 32%;
		margin: 0 0 20px;
		}
}


/* ----- [ Section: Gallery (Featherlight) ] --------  */
.featherlight-next,
.featherlight-previous {		
	display: block;
	position: absolute;
	top: 25px;
	right: 25px;
	bottom: 0;
	left: 80%;
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	/*background: rgba(0, 0, 0, 0);*/
	background: none;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	}
.featherlight-previous {
	right: 80%;
	left: 25px;
	}
.featherlight-next span,
.featherlight-previous span {
	display: block;
	position: absolute;
	top: 50%;
	left: 8%;
	width: 60px;
	height: 60px;
	margin-top: -30px;
	background-image: url('../images/arrow-left.png');
	background-size: 100%;
	text-indent: -9999px;
	opacity: 0.8;
	}
.featherlight-next span {
	left: auto;
	right: 8%;
	background-image: url('../images/arrow-right.png');
	background-size: 100%;
	}
.featherlight-next:hover,
.featherlight-previous:hover {
	background: none;
	opacity: 0.8;
	}
.featherlight-next span:hover,
.featherlight-previous span:hover {
	opacity: 1;
	}


/* ----- [ Slick Slider overrides ] --------------- */
.slick-track {
	/*height: 250px;*/
	}
.slick-arrow {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 5%;
	text-indent: -9999px;
	background: none;
	z-index: 1000;
	}
.slick-arrow:hover {
	background: none;
	}
.slick-arrow.slick-next {
	right: 0;
	}
.slick-track img {
	/*float: left;*/
	/*margin-right: 5px;*/
	height: 100%;
	vertical-align:middle;
	}

/* ----- [ Site Map ] --------------- */
.sitemap li {
	list-style: none;
	margin:  0;
	font-size: 16px;
	line-height: 1.2em;
	padding: 0 0 0 1em;
	}
.sitemap li li {
	list-style: disc;
	}
.sitemap li li li {
	list-style: circle;
	}
.sitemap li li li li {
	list-style: square;
	}


/* ----- [ Footer ] --------------- */
.page-footer {
	clear: both;
	text-align: center;
	background: #0e2835;
	margin: 0;
	padding: 20px 0 0;
	/*width: 80%;
	margin: 200px 0 20px 20%;*/
	}
.page-footer p,
.page-footer li {
	font-size: 1em;
	margin: 0;
	color: #fff;
	}
.footer-links {
	margin: 0 0 1em;
	}

.page-footer a {
	color: #fff !important;
	border-bottom: 1px dotted #fff;
	text-decoration: none;
	}
.page-footer a:hover {
	color: #fff;
	border-bottom: 1px solid #fff;
	}

.footer-logo {
	max-width: 185px;
	margin: 0 auto 20px;
	}
.footer-logo img {
	margin-left: -10px;
	/* it's a visual thing */
	}
.contact-info {
	margin: 30px auto 40px;
	}
.site-credit {
	font-size: 0.9em;
	margin: 2em 0 0;
	padding: 15px;
	clear: both;
	background: #669714;
	}


/* ----- [ Utility ] --------------- */
.clearfix:before,
.clearfix:after {
	content: "\0020";
	display: block;
	height: 0;
	overflow: hidden;
	}
.clearfix:after {
	clear: both;
	}
.clearfix { 
	zoom: 1;
	}

.hidden {
	display: none;
	}

/**
 * The edit link that appears when you are logged in.
 * It is recommended that you implement an edit button 
 * in your templates to make it easy to switch to and
 * from the admin control panel when editing pages. 
 *
 */

#editpage {
	position: fixed;
	bottom: 0;
	left: 0; 
	padding: 5px 6px; 
	background: #db1174; 
	color: #fff; 
	display: block;
	font-weight: bold; 
	}
#editpage:hover {
	background: #ffffcc;
	color: #000; 
	}


/**
 * Alignment styles that are used by the InputfieldTinyMCE for 
 * positioning images in bodycopy. If you are using this field type, 
 * you may want to include these or similar styles in your site.
 *
 */

.align_left {
	float: left;
	margin: 0 1em 0.25em 0;
	}

.align_right {
	float: right;
	margin: 0 0 0.25em 1em;
	}

.align_center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	}


/**
 * WireFatalError is a class that ProcessWire will use to output
 * fatal errors in the design, but only if debug mode is on, or if
 * you are logged in as a superuser. 
 *
 */

.WireFatalError {
	background: #a30000; 
	color: #fff; 
	padding: 1em; 
	position: relative;
	z-index: 9999;
	}




