/**
	@Author:	Paul Strandoo
	@Date:		1 June 2020
	@Notes:		Logo/Template: Reworking Mobile First
	
	CONTENTS
	-------------
	- Global resets
	- Global typography
	- Page structure
	
	- Page styles
	- Post styles 
	- General bits 
		
	FONTS & COLORS
	-------------
	navy: #272441; rgba(40,35,67,1);
	cherry red: #77d8d8;
	Font-family: 'Open Sans', sans-serif;
	available weight: 300, 400, 400i, 700;
	inner max-width: 1070px;
*/

/* move these to head */
@import url('reset.css');
@import url('font-awesome.min.css');

/*@charset "UTF-8";*/
:root {
	--orange: #f98100;
    --gray: gray;
    --gray-dark: #404040;
    --primary: #000;
    --secondary: gray;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f7f7f7;
    --inner: 1180px;
    --inner-narrow: 900px;
    --inner-wide: 1600px;
	}


* {
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
	box-sizing: border-box;
	}

html {
	height: 100%;
	font-size: 100%;
	}
body {
	margin: 0;
	padding: 0;
	position: relative;
	font-size: 18px;
	line-height: 1.3;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	}

body, input, textarea, table {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	color: #222;
	color: rgb(34,34,34);
	}


/* ----- [ Typography ] -------------------------*/
p,
li,
td {
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	font-size: 1em;
	line-height: 1.6em;
	margin: 0 0 1em;
	color: #666;
	}
li {
	margin: 0;
	}

em {
	font-style: italic;
	}
b,
strong {
	font-weight: 600;
	}

a {
	color: #428bca;
	}
a:hover {
	color: #428bca;
	border-bottom: 1px solid #428bca;
	}

h1,h2,h3,h4 {
	font-weight: 400;
	margin: 0 0 0.5em;
	color: #222;
	}
h1, .h1 {
	font-weight: 300;
	font-size: 2.2em;
	line-height: 1.2em;
	margin: 0 auto 0.5em;
	}
h2, .h2 {
	color: #222;
	font-weight: 300;
	font-size: 1.7em;
	line-height: 1.3em;
	margin: 0 0 0.6em;
	text-transform: none;
	}
h3 {
	font-weight: 300;
	font-size: 1.8em;
	line-height: 1.2em;
	margin: 0 0 0.6em;
	}
	
p + h3 {
	margin: 1em 0 0.6em;
	}

h4 {
	font-size: 0.9em;
	line-height: 1.4em;
	font-weight: 300;
	color: #222;
	margin: 0 0 0.5em;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	}

@media only screen and (min-width: 600px) { 
	h1, .h1 {
		font-size: 3em;
		line-height: 1.2em;
		}
	h2, .h2 {
		font-size: 2em;
		}
	h3 {
		font-size: 1.5em;
		}		
}


/* move these? */
img {
	display: block;
	vertical-align: middle;
	}

/* global section centering */
.centered,
.centered p,
.centered h2,
.centered h3 {
	text-align: center;
	}

/* ----- [ Structure ] --------------------------*/
.page-wrapper {
	position: relative;
	padding-top: 0;
	background: #fff;
	min-height: 100%;
	z-index: 2;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}

.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;
	}
	
header,
section,
footer {
	background: #ffffff;
	width: 100%;
	margin: 0;
	position: relative;
	}
section {
	padding: 70px 0;
	}
.inner {
	position: relative;
	max-width: var(--inner);
	margin: 0 auto;
	padding: 0 20px;
	}
.inner-full {
	max-width: 100%;
	padding: 0;
	}
.inner-narrow {
	max-width: var(--inner-narrow);
	}
.inner-wide {
	max-width: var(--inner-wide);
	}


/* ----- [ Strandoo Simple Grid System v3.1 ] --------------- */
.row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: column;
	list-style: none;
	margin-left: -15px;
	margin-right: -15px;
	position: relative;
	}

.row > .col {
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	}

.row.no-padding,
.row.padding-0 {
	margin-left: 0;
	margin-right: 0;
	}
.row.padding-1 {
	margin-left: -1px;
	margin-right: -1px;
	}
.row.padding-5 {
	margin-left: -5px;
	margin-right: -5px;
	}
.row.padding-10 {
	margin-left: -10px;
	margin-right: -10px;
	}
.row.padding-15 {
	margin-left: -15px;
	margin-right: -15px;
	}
.row.padding-20 {
	margin-left: -20px;
	margin-right: -20px;
	}
.row.padding-30 {
	margin-left: -30px;
	margin-right: -30px;
	}

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

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

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

.col-auto,
.col-full,
.col-1of2,
.col-1of3,
.col-2of3,
.col-1of4,
.col-30f4,
.col-100,
.col-50,
.col-33,
.col-66,
.col-25,
.col-75,
.col-40,
.col-60 {
	width: 100%;
    -webkit-box-flex: 0 !important;
    -webkit-flex: none !important;
    -ms-flex: none !important;
    flex: none !important;
    }

/* 600px equivalent breakpoint */
/*
@media only screen and (min-width: 37.5em) { 
	.row {
		flex-direction: row;
		}
	
	.col-auto {
		width: auto;
		}
	.col-full,
	.col-100 {
		width: 100% !important;
		}
	.col-1of2,
	.col-50 {
		width: 50% !important;
		}
	.col-1of3,
	.col-33 {
		width: 33.3333% !important;
		}
	.col-2of3,
	.col-66 {
		width: 66.6667% !important;
		}
	.col-1of4,
	.col-25 {
		width: 25% !important;
		}
	.col-3of4,
	.col-75 {
		width: 75% !important;
		}
	
	.col-40 {
		width: 40% !important;
		}
	.col-60 {
		width: 60% !important;
		}
}
*/

/* ----- [ Masthead / Page Header ] -------------*/
.page-header {
	position: absolute;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	z-index: 999;
	background: #fff;
	box-shadow: 2px 10px 15px rgba(41,44,61,.05);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* Force Hardware Acceleration */
	-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;
	}

.open .page-header {
	/*height: 100vh;*/
	}

.page-header .inner {
	max-width: 1500px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/*flex-wrap: wrap;*/
	justify-content: center;
	justify-content: space-between;
	align-items: center;
	align-itmes: flex-end;
	position: relative;
	max-width: 100%;
	height: 100%;
	margin: 0 auto 0;
	padding: 10px 20px;
	}

.logo-wrap {
	width: auto;
	max-width: 140px;
	width: 100%;
	margin: 0;
	padding: 10px 0;
	padding: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.logo-wrap a {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	}
.logo-wrap img {
	width: 100%;
	height: auto;
	display: inline-block;
	vertical-align: middle;
	}
	
.logo-text-wrap a {
	color: #44435b;
	font-size: 1.1em;
	}
.logo-text-wrap a:hover {
	color: #428bca;
	border: none;
	}
	
.menu-trigger,
.logo-wrap a,
.logo-wrap a:hover {
	border-bottom: none;
	}

.top-bar {
	color: #fff;
	background: #45435b;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.2;
	text-align: right;
	}
.top-bar .inner {
	justify-content: center !important;
	padding-top: 10px !important;
	padding-bottom: 10px !important;
	text-align: center;
	}
.top-bar a {
	color: #fff;
	white-space: nowrap;
	}

/*
@media only screen and (min-width: 1020px) {
	.page-header {
		}
	.page-header .inner {
		max-width: 1200px;
		margin: 0 auto 0;
		padding: 30px;
		justify-content: space-between;
		overflow-x: visible;
		}
		
	.page-header.small .inner {
		margin-top: 0;
		}

	.logo-wrap {
		display: block;
		width: auto;
		margin: 0 auto 0 0;
		padding: 0 0 5px;
		}
	.logo-wrap img {
		}
	.logo-wrap a,
	.logo-wrap a:hover {
		border: none;
		}
	.top-bar .inner {
		justify-content: flex-end !important;
		text-align: right;
		}
}
*/

/* ----- [ Navigation ] ------------------------ */
.main-navigation {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	background: #fff;
	background: rgba(255,255,255,0.95);
	}
.open .main-navigation {
	display: block;
	padding-top: 40px;
	padding-bottom: 80px;
	height: calc(100vh - 76px);
	}

.main-navigation ul {
	text-align: center;
	margin: 0;
	}
.menu-item {
	position: relative;
	font-size: 24px;
	font-size: 1em;
	text-transform: uppercase;
	margin: 10px 0;
	letter-spacing: 0.05em;
	}
.menu-item a,
.menu-item span {
	color: #282430;
	color: #44435b;
	color: #222;
	text-decoration: none;
	display: block;
	padding: 0 0 10px;
	border: none;
	}
.menu-item a:hover,
.menu-item a.on,
.menu-item span:hover,
.menu-item span.on {
	color: #44435b;
	}
.menu-item span {
	cursor: default;
	}

.menu-item.li-phone {
	text-transform: none;
	}

.has-children:after {
	content: " +";
	content: "\f107";
	font-family: fontawesome;
	font-weight: bold;
	margin-left: 0.3em;
	}
	
.dropnav {
	display: none;
	}

/*
@media only screen and (min-width: 1020px) {
	.menu-toggle {
		display: none;
		}
		
	.main-navigation {
		display: block;
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		width: auto;
		margin: 0;
		padding: 0;
		background: transparent;
		overflow: visible;
		}
	.main-navigation p {
		display: block;
		}
	.main-navigation ul {
		text-align: left;
		display: block;
		margin: 0;
		}
	.menu-item {
		position: relative;
		display: inline-block;
		font-size: 14px;
		font-size: 0.85em;
		font-weight: 300;
		text-transform: uppercase;
		margin: 0 0 0 1.5em;
		}

	.menu-item a,
	.menu-item span {
		text-decoration: none;
		font-weight: 400;
		padding: 0;
		}
	.menu-item a:hover,
	.menu-item a.on,
	.menu-item span:hover,
	.menu-item span.on {
		color: #428bca;
		}
		
	.menu-item.li-phone {
		font-size: 16px;
		letter-spacing: 0;
		margin-right: 10px;
		}
	.phone-label {
		display: none;
		}
		

	.dropnav {		
		display: block;
		position: absolute;
		min-width: 140px;
		width: auto;
		top: 120%;
		margin-left: -15px;

		text-align: left;
		background: #fff;
		z-index: 9999;
		visibility: hidden;
		opacity: 0;
		padding: 10px 15px;
		box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
		white-space: nowrap;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: translateX(0px);
		-o-transform: none;
		transform: none;
		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		-o-transition: all .3s ease;
		transition: all .3s ease;
		}
	.menu-item:hover .dropnav {
		top: 120%;
		visibility: visible;
		opacity: 1;
		}

	.dropnav ul {
		margin: 0;
		}
	.dropnav .menu-item {
		display: block;
		font-size: 1em;
		text-align: left;
		text-transform: capitalize;
		font-weight: 600;
		letter-spacing: 0;
		margin: 0;
		}
	.dropnav .menu-item a {
		color: #222;
		padding: 5px 0;
		margin: 0;
		border: none;
		}
	.dropnav a:hover,
	.dropnav a.on {
		color: #d6121c;
		color: #428bca;
		text-decoration: none;
		}
	.dropnav .menu-item ul {
		display: inherit;
		}
}
*/
/* ----- [ Menu Trigger (Hamburger) ] ---------- */
.menu-trigger {
	position: relative;
	height: 50px;
	width: 50px;
	}

.menu-trigger:hover {
	border: none;
	}
.menu-trigger .menu-text {
	height: 100%;
	text-transform: uppercase;
	color: #000;
	display: none;
	}
.menu-trigger .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: 22px;
	height: 2px;
	background-color: #000;
	/* these are the upper and lower lines in the menu menu */
	}
.menu-trigger .menu-icon::before, 
.menu-trigger .menu-icon:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: inherit;
	left: 0;
	}
.menu-trigger .menu-icon::before {
	bottom: 7px;
	}
.menu-trigger .menu-icon::after {
	top: 7px;
	}
.menu-trigger.is-clicked .menu-icon {
    background-color: #000;
	background-color: rgba(0, 0, 0, 0);
	}
.menu-trigger.is-clicked .menu-icon::before, 
.menu-trigger.is-clicked .menu-icon::after {
	background-color: #000;
	}
.menu-trigger.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-trigger.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: 1020px) {
	.menu-trigger {
		display: none;
		}
	.menu-trigger .menu-text {
		display: inline-block;
		line-height: 70px;
		}
	.menu-trigger .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);
		}
}

/* ----- [ Flex Container (Header) ] ----------- */
.flex-container {
	display: block;
	height: 100%;
	}
.flex-container > * {
	display: block;
	}

/*
@media only screen and (min-width: 1020px) { 

	.flex-container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		position: relative;
		justify-content: space-between;
		align-items: center;
		padding: 0 20px;
		}
		
	.f-top { align-items: flex-start; }
	.f-middle { align-items: center; }
	.f-bottom { align-items: flex-end; }
	.f-left { justify-content: flex-start; }
	.f-right { justify-content: flex-end; }
	.f-center { justify-content: center; }
}
*/

/* ----- [ Sections ] -------------------------- */
.top {
	padding: 0;
	}

/* ----- [ Home / Intro ] ---------------------- */
/* ----- [ Hero Images ] -----------------*/
.hero {
	height: 640px;
	margin: 0;
	border-top: 105px solid #fff; /* header height */
	overflow: hidden;
	background-size: cover;
	}

.hero-overlay {				
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center; 
	align-items: center;
	background: transparent;
	background: rgba(0,0,0,0);
	}
.hero-inner {
	max-width: 1140px;
	max-width: 100%;
	height: 100%;
	padding: 0;
	position: relative;
	}
	
.hero-text-wrapper {
	max-width: 1100px;
	margin-top: -120px;
	}
.hero-text {
	/*padding: 20px;*/
	/*max-width: 860px;*/
	text-align: left;
	}
.home .hero-text {
	margin: 0;
	}
.home .hero-text p,
.home .hero-text h2 {
	color: #fff;
	font-size: 1.2em;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
	}

.hero-title,
.home .hero-text h2	 {
	color: #45435b;
	color: #fff;
	font-size: 2.2em;
	font-weight: 700;
	margin: 0 0 0.3em;
	line-height: 1.2em;
	}

/* Optional Pandemic Notice */
.section-notice {
	padding: 40px 0 30px;
	color: #fff;
	background: #272441;
	}
.section-notice h2,
.section-notice p {
	color: #fff;
	}
.section-notice p {
	line-height: 1.8em;
	}

.home-block-1 {}
.home-block-2 {
	margin-top: -30%;
	margin-bottom: 50px;
	}

@media screen and (min-width: 600px) {
	.home-hero {
		height: 100vh;
		height: 820px;
		}
	.hero-title {
		text-align: left;
		}
}

/*
@media only screen and (min-width: 1020px) {
	.hero {
		border-top: 120px solid #fff;
		}
}
*/


/* ----- [ Home: Book Section ] -----------------*/
.book-advert-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	justify-content: center;
	align-items: center;
 	background-color: #45435b;
	}

.book-advert {
	color: #fff;
	max-width: 600px;
	padding: 40px;
	margin: 0 0 0 auto;
	}
.book-advert h3,
.book-advert h4,
.book-advert p,
.book-advert a {
	color: #fff;
	font-weight: 400;
	margin: 0;
	}
.book-advert h4 {
	margin-bottom: 1em;
	}
.book-advert p {
	font-size: 0.9em;
	margin-bottom: 1em;
	}
.book-advert a {
	font-size: 0.9em;
	color: #fff;
	background: #f3f2ee;
	background: #bfa875;
	padding: 6px 10px;
	border-radius: 5px;
	border: none;
	display: inline-block;
	}
.book-advert a:hover {
	background: #428bca;
	}
	
.book-advert img {
	margin-right: 30px;
	box-shadow: 0px 10px 30px rgba(0,0,0,0.5);
	}


.image-fit {
	object-fit: cover;
	height: 100%;
	width: 100%;
	}
	


/* ----- [ Slick Gallery ] -----------------*/
.slick-gallery img {
	margin: 0 20px 10px 0;
	margin: 10px 15px 10px 0;
	}
.slick-track {
	margin-left: 20px;
	margin-left: 0;
	}
.slick-list,
.slick-track,
.slick-slide {
	height: 100%;
	/*width: 100%;*/
	}
	
	
/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    text-align: center;
    left: auto;
    right: 50px;
    top: -40px;
    display: block;
    width: 40px;
    height: 40px;
    
    padding: 0 0 0 4px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    border: 2px solid #222;
}
.slick-prev {
	right: 100px;
	padding: 0 4px 0 0;
	}

.slick-prev:before,
.slick-next:before {
    font-family: 'FontAwesome';
    font-size: 24px;
    line-height: 36px;
    opacity: .75;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	}
.slick-prev:before {
}

/*
@media only screen and (min-width: 720px) {
	.section-about .photo {
		margin-left: -25px;
		}
	.section-about .bio {
		width: calc(50% + 25px);
		}
}
*/

/* ----- [ Social Media Feeds ] -----------------*/
.section-social-media,
.service-gallery-section {
	background: #f1f1f1;
	padding-bottom: 150px;
	}
	
.section-social-media + .page-footer,
.service-gallery-section + .page-footer {
	margin-top: 0;
	}

/* ----- [ Client Logos ] -----------------*/
.logos-section {
	padding: 50px 0;
	overflow: hidden;
	}
.logo-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	flex-wrap: no-wrap;
	justify-content: space-between;
	justify-content: center;
	align-items: center;
	margin: 0;
	}
.client-logo {
	flex: 1;
	padding: 0 10px;
	}
.client-logo img {
	display: block;
	max-height: 55px;
	margin: 0 auto;
	opacity: 0.7;
	}

*/
@media only screen and (min-width: 410px) {
	.client-logo img {
		max-height: 70px;
		margin: 0 auto;
		}
}

@media only screen and (min-width: 764px) {
	.client-logo img {
		max-height: 100px;
		margin: 0 auto;
		}
}
*/

/* ----- [ Map / Contact Form ] -----------------*/
.section-contact-map {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	align-items: stretch;
	margin: 30px 0 150px;
	padding: 0;
	background: none;
	}
.section-contact-map > div {
	position: relative;
	width: 100%;
	min-height: 300px;
	margin-bottom: 10px;
	}

.map-canvas {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	}
.contact-form-overlay {
	padding: 30px;
	background: rgba(243,233,210,0.9);
	}
.contact-form-overlay h2 {
	max-width: 800px;
	}

@media only screen and (min-width: 764px) { /* 720 */
	.section-contact-map > div {
		position: relative;
		width: 50%;
		min-height: 300px;
		}
	.section-contact-map > div:nth-of-type(even) {
		border-right: 5px solid #fff;
		}
	.section-contact-map > div:nth-of-type(odd) {
		border-left: 5px solid #fff;
		}
}

@media only screen and (min-width: 920px) { 
	.contact-form-overlay {
		padding: 40px 50px;
		}
}
	
/* ----- [ Slick Slider ] -----------------*/
.slick-slider,
.story-slider {
	overflow: visible;
	}

.home-slide {
	background-size: cover;
	background-position: 50% 50%;
	/*background-position: 50% 0;*/
	}

.hero-slider,
.hero-slider .slick-track,
.hero-slider .slick-wrapper,
.hero-slider .slick-slide {
	margin: 0;
	height: 100%;
	width: 100%;
	}

/* ----- [ Contact form ]----------------------- */
input,
select,
textarea {
    font-size: 1em;
    width: 100%;
    padding: 6px 10px;
    margin: 0 0 10px;
	color: #333;
	background: #fff;
    webkit-appearance: none;
    border: 1px solid #ccc;
    border-radius: 0;
    }

input:focus, 
textarea:focus {
	background: #fff;
	}

input[type=submit],
input.button {
    -webkit-appearance: none;
	}
input[type="checkbox"] {
	width: auto !important;
	float: left;
	margin-top: 4px;
	}

/* ----- [ Contact Page ] --------------- */
.form__item--c_contact_consent,
.form__item--c_terms_consent {
	line-height: 1.1em;
	margin-bottom: 0.5em;
	}

.form__item label {
	font-size: 0.9em;
	}

.field__header--hidden,
.form__item--scf-website {
	display: none;
	}
.field--error--message {
	/*float: right;*/
	color: #f36617;
	font-weight: 400;
	font-size: 0.8em;
	margin: 0;
	}
	
.form__item--c_terms_consent .field--error--message {
	float: none;
	}
	
.form--error--message,
.form--success--message {
	text-align: center !important;
	font-size: 0.95em;
	font-weight: 400;
	color: #fff;
	background: #f36617;
	padding: 5px;
	margin: 5px 0 20px;
	border-radius: 5px;
	width: auto;
	}
	
.form--success--message {
	font-size: 1.2em;
	color: #fff;
	background: #428bca;
	}

.FieldtypeCheckbox {
	margin-right: 0.5em;
	}

#wrap_InputfieldSubmit span {
	display: none;
	}
	
.form__item--label {
	display: none;
	}
li label span {
	display: none;
	}
	
.form__item--submit {
	text-align: left;
	}
.form__item--submit button:hover {
	color: #fff;
	background: #428bca;
	}

/* ----- [ Buttons ] --------------------------- */
button,
.button {
	display: inline-block;
	padding: 10px 15px;
	padding: 10px 20px;
	color: #fff;
	background: #d6b161;
	background: #272441; 
	background: rgba(40,35,67,1);
	width: 100%;
	opacity: 1;
	font-size: 16px;
	font-size: 1em;
	letter-spacing: 1px;
	text-align: center;
	margin-bottom: 10px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	}
button:hover,
.button:hover {
	color: #fff;
	background: #428bca;
	text-decoration: none;
	}
	
.button.button-full {
	width: 100%;
	}
	
@media screen and (min-width: 600px) { 
	button,
	.button {
		width: auto;
		}
}

.call-to-action {
	color: #fff;
	text-align: center;
	background: #45435b;
	padding: 40px 0;
	}
.call-to-action p {
	color: #fff;
	font-weight: bold;
	font-size: 1.2em;
	text-align: center;
	margin: 0;
	}
.call-to-action a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid #428bca;
	}
.call-to-action a:hover {
	border-bottom: 1px solid #fff;
	}

/* ----- [ Footer ] ---------------------------- */
.page-footer {
	background: #fff;
	border-top: 1px solid #ececec;
	padding: 0;
	}
	
.page-footer .inner {
	padding: 50px 15px 10px;
	}
.page-footer p,
.page-footer li {
	font-size: 0.9em;
	line-height: 1.6em;
	font-weight: 300;
	margin: 0 0 2em;
	}
.page-footer li {
	margin: 0;
	}
	
.page-footer strong {
	font-weight: 500;
	}

.page-footer a {
	color: #222;
	}
.page-footer a:hover {
	/*color: #fff;*/
	color: #428bca;
	}

.footer-logo {
	max-width: 140px;
	margin: -8px 0 16px;
	padding: 0;
	}
.footer-logo img {
	max-width: 100%;
	}

.footer-logo-text {
	font-size: 1.1em;
	}

.footer-nav li {
	display: inline-block;
	margin: 0 1em 0 0;
	font-size: 0.9rem;
	}

p.copyright-credits {
	margin: 20px 0;
	font-size: 0.8rem;
	color: #222;
	}
.copyright-credits a {
	color: #428bca;
	}
	

/* ----- [ Social Media Icons ] ---------------- */
/* ----- [ SVG Social Media Icons ] --------------- */
.social-icons {
	text-align: left;
	margin: 10px 0;
	}
.social-icons .social-icon {
    color: #333;
    display: inline-block;
    margin: 0 10px 0 0;
	}

.social-icons .social-icon a {
    color: #fff;
    color: #333;
    opacity: 1;
    border: none;
	}

.social-icons .social-icon a:hover,
.social-icons .social-icon a:active {
    color: #77d8d8;
    opacity: 1;
    border: none;
	}

.social-icons .social-icon svg {
	height: 20px;
	width: 20px;
    fill: currentColor;
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
	}

.social-networks a:hover {
	opacity: 1;
	}

@media only screen and (min-width: 600px) {
	.social-icons-wrapper {
		text-align: right;
		}
}

@media only screen and (min-width: 1020px) {
	.main-navigation .social-icon {
		margin: 0 0 0 10px;
		}
}

.top-link {
    position: fixed;
    bottom: 50px;
    right: 4%;
    opacity: 0;
    -webkit-transition:  .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 9;
    display: none;
	}
.top-link a {
	color: #fff;
	font-size: 60px;
	line-height: 28px;
    display: block;
    height: 40px;
    width: 40px;
    outline: medium none;
    position: relative;
    z-index: 0;
    text-align: center;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	background: #272441;
	text-decoration: none;
	border: none;
	border-radius: 50%;
    }
.top-link a:hover {
	color: #272441;
	background: #d6b161;
	border: none;
	}
.top-link.show {
	opacity: 1;
	}

/* ----- [ CMS Content ] ------------------------*/
.cms-text p > img {
	max-width: 100%;
	display: block;
	}

.cms-text ul,
.cms-text ol {
	margin: 0 0 1em;
	}
.cms-text 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;
	}
	
.cms-quote:before,
.cms-quote:after {
	content: "";
	display: inline-block;
	height: 20px;
	width: 20px;
	margin: 0 0.4em 0 0;
	opacity: 0.7;
	background: url('../images/left-quote-mark2.svg') 0 0 no-repeat;
	background-size: 100%;
	}
.cms-quote:after {
	margin: 0 0 0 0.4em;
	background: url('../images/right-quote-mark2.svg') 0 0 no-repeat;
	background-size: 100%;
	}
	
/* ----- [ Misc. / Utility Styles ] ------------ */
img.right {
	float: right;
	}
img.inline {
	display: inline !important;
	}

.text-left,
.text-left p,
.text-left li,
.text-left h2,
.text-left h3 {
	text-align: left;
	}
.text-right,
.text-right p,
.text-right li {
	text-align: right;
	}
.text-center {
	text-align: center;
	}

.uppercase {
	text-transform: uppercase !important;
	}
.lowercase {
	text-transform: none !important;
	}

.clearfix:before,
.clearfix:after {
	content: "\0020";
	display: block;
	height: 0;
	overflow: hidden;
	}
.clearfix:after {
	clear: both;
	}
.clearfix { 
	zoom: 1;
	}

.align_left {
	float: left;
	margin: 0 1em 1em 0;
	}
.align_right {
	float: right;
	margin: 0 0 1em 1em;
	}
.align_center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
	}

@media only screen and (min-width: 920px) {
	.cms-text .align_left {
		margin-left: -100px;
		}
	.cms-text .align_right {
		margin-right: -100px;
		}
}

#editpage {
	position: fixed;
	bottom: 0;
	left: 0; 
	padding: 5px 6px; 
	background: #db1174; 
	color: #fff; 
	display: block;
	font-weight: bold; 
	z-index: 1000;
	}
#editpage:hover {
	background: #ffffcc;
	color: #000; 
	}
.WireFatalError {
	background: #a30000; 
	color: #fff; 
	padding: 1em; 
	position: relative;
	z-index: 9999;
	}


/* ----- [ Ken Burns ] ------ */
.slick-active.home-slide {
	-webkit-animation: zoomout 15s linear; /*ease-in-out*/
	animation: zoomout 15s linear;
	}

@-webkit-keyframes zoomout {
	0% {
	-webkit-transform: scale(1);
			transform: scale(1);
	}
	80% {
	-webkit-transform: scale(1.1);
			transform: scale(1.1);
	}
	95% {
	-webkit-transform: scale(1.1);
			transform: scale(1.1);
	opacity: 1;
	}
	100% {
	-webkit-transform: scale(1.1);
			transform: scale(1.1);
	opacity: 0;
	}
}
@keyframes zoomout {
	0% {
	-webkit-transform: scale(1);
			transform: scale(1);
	}
	80% {
	-webkit-transform: scale(1.1);
			transform: scale(1.1);
	}
	95% {
	-webkit-transform: scale(1.1);
			transform: scale(1.1);
	opacity: 1;
	}
	100% {
	-webkit-transform: scale(1.1);
			transform: scale(1.1);
	opacity: 0;
	}
}

.pw-edit-buttons {
	z-index: 9999;
	}

@-webkit-keyframes scroll {
  0%, 20% {
    -webkit-transform: translateY(0) scaleY(1);
            transform: translateY(0) scaleY(1);
  }
  100% {
    -webkit-transform: translateY(36px) scaleY(2);
            transform: translateY(36px) scaleY(2);
    opacity: 0;
  }
}

@keyframes scroll {
  0%, 20% {
    -webkit-transform: translateY(0) scaleY(1);
            transform: translateY(0) scaleY(1);
  }
  100% {
    -webkit-transform: translateY(36px) scaleY(2);
            transform: translateY(36px) scaleY(2);
    opacity: 0;
  }
}

