/**
	@Author:	Paul Strandoo for Spi-des-ign
	@Date:		13 April 2021
	@Notes:		Elegant Hair & Beauty
		
	FONTS & COLORS
	-------------
	dark tan: #ccbaab;
	dark tan text: #b99e87;
	light tan: #f8f0ea;
	black: #2c2c2c;
	font-family: 'Open Sans', sans-serif; 400/700/i
	font-family: 'Lora', serif; 600/700
	available weight: 300, 400, 700;
	inner max-width: 1070px;
*/

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

:root {
	--darktan: #ccbaab;
	--linktext: #ac8f77;
	--htext: #ac8f77; /* h1 */
    --lighttan: #f8f0ea;
    --black: #2c2c2c;
	}

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

html {
	font-size: 100%;
	}
body {
	margin: 0;
	padding: 0;
	position: relative;
	font-size: 18px;
	line-height: 1.3;
	background: #ffffff;
	}

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;
	color: #595959;
	}
li {
	margin: 0;
	}

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

a {
	color: var(--linktext);
	border-bottom: 1px solid var(--linktext);
	transition: ease .3s;
	-webkit-transition: ease .3s;
	-moz-transition: ease .3s;
	-o-transition: ease .3s;
	-ms-transition: ease .3s;
	}
a:hover {
	color: var(--black);
	}

h1,h2,h3,h4 {
	font-family: 'Lora', serif;
	font-weight: 600;
	margin: 0 0 0.5em;
	color: var(--black);
	}
h1, .h1 {
	font-weight: 600;
	font-size: 2.2rem;
	line-height: 1.2;
	margin: 0 auto 1em;
	color: var(--htext);
	max-width: 1000px;
	}
h2, .h2 {
	font-weight: 600;
	font-size: 1.6rem;
	line-height: 1.3em;
	margin: 1.5em auto 0.5em;
	text-transform: none;
	}
h3 {
	font-weight: 600;
	font-size: 1.3rem;
	line-height: 1.2em;
	margin: 1em 0 0.5em;
	}

h2:first-child,
.h2:first-child {
	margin-top: 0;
	}

h2 + h3,
.h2 + h3 {
	margin-top: 0;
	}

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: 2.8rem;
		line-height: 1.2em;
		}
	h2, .h2 {
		font-size: 1.8rem;
		}
	h3 {
		font-size: 1.5rem;
		}		
}

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: 1180px;
	margin: 0 auto;
	padding: 0 20px;
	}
.inner-full {
	max-width: 100%;
	padding: 0;
	}
.inner-narrow {
	max-width: 900px;
	}
.inner-wide {
	max-width: 1600px;
	}


/* ----- [ 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: 15px;
	}

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

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

.row-reverse {
	flex-direction: row-reverse;
	}

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

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

	.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.666%; }
	.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%; }
}

/* ----- [ 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);
	border-bottom: 10px solid var(--darktan);
	-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: center;
	align-items: flex-end;
	align-items: center;
	position: relative;
	max-width: 100%;
	height: 100%;
	margin: 0 auto 0;
	padding: 10px 20px;
	}

.nav-inner {
	background: var(--darktan);
	max-width: 100%;
	}

.logo-wrap {
	width: auto;
	max-width: 200px;
	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 {
	font-family: 'Aleo', sans-serif;
	font-weight: 700;
	color: #222;
	font-size: 2.3rem;
	}
.logo-text-wrap a:hover {
	color: #a15e2e;
	color: #728f52;
	border: none;
	}
	
.menu-trigger,
.logo-wrap a,
.logo-wrap a:hover {
	border-bottom: none;
	}

.top-bar {
	color: #fff;
	background: #38803c;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
	}
.top-bar .inner {
	display: block !important;
	/* justify-content: center !important; */
	padding-top: 5px !important;
	padding-bottom: 5px !important;
	text-align: center;
	}
.top-bar a {
	color: #fff;
	white-space: nowrap;
	}
	
.header-phone {
	display: none;
	}
.header-phone a {
	color: var(--htext);
	font-size: 1rem;
	font-weight: 700;
	border-bottom: 1px solid transparent;
	}
.header-phone a:hover {
	border-bottom: 1px solid var(--htext);
	}

.book-now {
	display: inline;
	margin-left: 6px;
	}

@media only screen and (min-width: 940px) {
	.page-header {
		border-bottom: none;
		}
	.page-header-inner {
		max-width: 1200px;
		margin: 0 auto;
		padding: 15px 30px;
		justify-content: space-between;
		align-items: center;
		overflow-x: visible;
		}
	.page-header-inner > * {
		flex: 1;
		}
		
	.page-header.small .inner {
		margin-top: 0;
		}

	.logo-wrap {
		display: block;
		max-width: 220px;
		margin: 0;
		padding: 0;
		}
	.logo-wrap img {
		}
	.logo-wrap a,
	.logo-wrap a:hover {
		border: none;
		}
	.top-bar .inner {
		justify-content: flex-end !important;
		text-align: center;
		}
		
	.header-phone {
		display: block;
		}
}

/* ----- [ Navigation ] ------------------------ */
.navigation-wrapper {
	background: var(--darktan);
	max-width: 100%;
	padding: 0 30px;
	}
.main-navigation {
	display: none;
	position: absolute;
	color: #fff;
	left: 0;
	right: 0;
	top: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	}
.open .main-navigation {
	display: block;
	border-top: 10px solid var(--darktan);
	padding: 40px 30px;
	height: calc(100vh - 72px);
	background: #fff;
	}

.nav-menu {
	text-align: center;
	margin: 0;
	}
.menu-item {
	position: relative;
	font-size: 1em;
	margin: 10px 0;
	letter-spacing: 0.05em;
	}
.menu-item a,
.menu-item span {
	font-size: 1.3em;
	color: var(--black);
	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: var(--black);
	}
.menu-item span {
	cursor: default;
	}

.menu-item.li-phone {
	text-transform: none;
	margin-bottom: 25px;
	}
.menu-item.li-phone .button {
	display: inline;
	padding: 10px 20px;
	border-radius: 5px;
	}

.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: 940px) {
	.menu-toggle {
		display: none;
		}
		
	.main-navigation {
		display: block;
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		max-width: 1140px;
		width: 100%;
		margin: 0 auto;
		padding: 10px 0;
		background: transparent;
		overflow: visible;
		}
	.main-navigation p {
		display: block;
		}
	.nav-menu {
		text-align: left;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: nowrap;
		position: relative;
		justify-content: center;
		align-items: center;
		margin: 0;
		}
	.menu-item {
		position: relative;
		display: inline-block;
		margin: 0;
		}

	.menu-item a,
	.menu-item span {
		font-size: 0.85em;
		font-weight: 700;
		color: var(--black);
		padding: 0;
		margin: 0 1.2em;
		letter-spacing: 0;
		text-decoration: none;
		text-transform: uppercase;
		border-bottom: 2px solid transparent;
		}
	.menu-item a:hover,
	.menu-item a.on,
	.menu-item span:hover,
	.menu-item span.on {
		color: var(--black);
		border-bottom: 2px solid var(--black);
		}
		
	.menu-item.li-phone {
		font-size: 16px;
		letter-spacing: 0;
		margin-right: 10px;
		display: none;
		}
	.phone-label {
		display: none;
		}
		
	/* Drop Menus */	
	.dropnav {		
		display: block;
		position: absolute;
		min-width: 140px;
		width: auto;
		top: 120%;
		margin-left: -15px;
		/* left: -50%; */
		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: 400;
		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: #a15e2e;
		text-decoration: underline;
		}
	.dropnav .menu-item ul {
		display: inherit;
		}
}

/* ----- [ Menu Trigger (Hamburger) ] ---------- */
.menu-trigger {
	position: absolute;
	top: 0;
	right: 20px;
	height: 50px;
	height: 100%;
	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: 940px) {
	.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;
	}

/* utility */
.flex-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	position: relative;
	}

@media only screen and (min-width: 940px) { /* 800  1020 */
	/* Make this a Utility Class */
	.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-column { flex-direction: column; }
	.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; }
	.f-stretch { justify-content: stretch; }
}

/* ----- [ Sections ] -------------------------- */
.top {
	padding: 0;
	}
	
.intro-section {
	padding-top: 50px;
	}

/* ----- [ Home / Intro ] ---------------------- */
/* ----- [ Hero Images ] -----------------*/
.hero {
	height: 640px;
	margin: 0;
	border-top: 108px 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: #9fbf74;
	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: var(--darktan);
	}
.section-notice h2,
.section-notice p {
	color: #fff;
	}
.section-notice p {
	line-height: 1.8em;
	}
.section-notice a {
	color:  #fff;
	border-bottom: 1px solid #fff;
	}

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

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

@media only screen and (min-width: 1020px) {
	.hero {
		margin-top: 10px;
		border-top: 165px solid #fff;
		}
}


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

.section-links  {
	 padding: 0;
	 margin: 70px 0 80px;
	 }

.section-link {
	position: relative;
	display: block;
	color: #2f2f2f;
	text-decoration: none;
	transition: ease .6s;
	-webkit-transition: ease .6s;
	-moz-transition: ease .6s;
	-o-transition: ease .6s;
	-ms-transition: ease .6s;
	text-decoration: none;
	border: none;
	overflow: hidden;
	}
.section-link:hover {
	text-decoration: none;
	border: none;
	}
.section-link img {
	/*-webkit-filter: grayscale(100%);*/
	transition: filter, transform, 0.5s;
	width: 100%;
	vertical-align: middle;
	}

.section-link:hover img {
	-webkit-filter: grayscale(20%);
	transform: scale(1.1);
	}

.description-wrap {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	flex-wrap: no-wrap;
	justify-content: flex-start;
	align-items: flex-end;
	background: rgba(242, 242, 242, 0);
	background: -webkit-linear-gradient(top, transparent 50%, rgba(34, 34, 34, 0.6) 100%);
    background: linear-gradient(to bottom, transparent 50%, rgba(34, 34, 34, 0.6) 100%);
	background: -webkit-linear-gradient(top, transparent 50%, rgba(128,106,89, 0.8) 100%);
    background: linear-gradient(to bottom, transparent 50%, rgba(128,106,89, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#292929', GradientType=0);
    /*
    background: rgba(204, 186, 171, 0.6);
	background: -webkit-linear-gradient(top, transparent 0%, rgba(204, 186, 171, 0.8) 100%);
    background: linear-gradient(to bottom, transparent 0%, rgba(204, 186, 171, 0.8) 100%);
    */
	padding: 0;
	transition: all, 0.5s;
	z-index: 10;
	}
.section-link:hover .description-wrap {
	/*background: rgba(242, 242, 242, 0.4);
	background: -webkit-linear-gradient(top, transparent 0%, rgba(34, 34, 34, 0.6) 100%);
    background: linear-gradient(to bottom, transparent 0%, rgba(34, 34, 34, 0.6) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#292929', GradientType=0);*/
	}
.desc {
	font-size: 1.8rem;
	line-height: 1.1;
	color: #fff;
	font-weight: 400;
	padding: 10px;
	transition: margin, 0.5s;
	}
.section-link:hover .desc {
	color: #fff;
	margin-bottom: 5px;
	}


/* ----- [ 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 {
}


/* ----- [ Slick Arrows ] ----------- */
.carousel .slick-list,
.blog-slider .slick-list {
	padding: 0 7% 0 0;
	}

.slick-arrow,
.carousel-nav {
	background: none;
	border: none;
	color: #000;
	cursor: pointer;
	/*height: 24px;
	height: var(--everlane-carousel-arrow-height);*/
	outline: none;
	padding: 0;
	position: absolute;
	top: 50%;
	margin-top: -22px;
	width: 24px;
	z-index: 1;
	display: none;
	}
.blog-slider + .carousel-nav,
.blog-slider + .carousel-nav +  .carousel-nav {
	top: 25%;
	}
		
.slick-prev,
.carousel-prev {
	left: 0;
	}
.slick-next,
.carousel-next {
	left: auto;
	right: 0;
	}

@media only screen and (min-width: 1024px) {
	.carousel .slick-list,
	.blog-slider .slick-list {
		margin-left: 30px;
		margin-right: 30px;
		}
	.slick-arrow,
	.carousel-nav {
		display: block;
		}
	.carousel .slick-list,
	.blog-slider .slick-list {
		padding: 0;
		}
}

/* ----- [ Slick Dots ] ----------- */
.slick-dots {
    position: absolute;
    bottom: -40px;
    bottom: 20px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
	}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 6px;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
	}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 40px;
    height: 6px;
    padding: 0;
    cursor: pointer;
    color: #fff;
    /*border: 3px solid #222;*/
    outline: none;
    background: none;
    background: #fff;
    opacity: 0.3;
    border: none;
	}
.slick-dots li button:hover {
    opacity: 1;
	}
.slick-dots li.slick-active button {
	/*background: #222;*/
	opacity: 0.8;
	}

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

.heading-inner {
	color: var(--black);
	text-align: center;
	background: var(--darktan);
	margin: 0 0 30px;
	padding: 20px;
	max-width: 100%;
	}
.heading-inner h2 {
	color: var(--black);
	margin: 0;
	}

/* -----  [ Instafeed ] ------------  */
.insta-inner {
	color: var(--black);
	text-align: center;
	background: var(--darktan);
	margin: 0 0 30px;
	padding: 20px;
	max-width: 100%;
	}
.insta-inner p {
	color: var(--black);
	font-family: 'Lora', serif;
	font-size: 1.2em;
	text-align: center;
	margin: 0;
	}
.insta-inner a {
	color: var(--black);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	}
.insta-inner a:hover {
	border-bottom: 1px solid var(--black);
	}


.insta-row {
	margin: 0 -10px;
	}
.insta-col {
	position: relative;
	overflow: hidden;
	width: 50%;
	padding-top: 50%;
	padding-top: 100%;
	}
	
/* limit to 8... */
.insta-col:nth-child(9) {
	display: none;
	}
	
.insta-col p {
	margin: 0 0 1em;
	}

.insta-caption {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 20px;
	color: #fff;
	background: rgba(0, 0, 0, 0.7);
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	}

.insta-col a:hover .insta-caption {
	opacity: 1;
	}

.insta-link {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 100%;
	height: 100%;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	overflow: hidden;
	border: none;
	}

.insta-link img {
	object-fit: cover;
	min-height: 100%;
	min-width: 100%;
	max-width: 100%;
	}
	
@media only screen and (min-width: 600px) {
	.insta-col {
		position: relative;
		width: 33.33333%;
		width: 25%;
		padding-top: 33.33333%;
		padding-top: 50%;
		overflow: hidden;
		}
	/* show 9th */
	.insta-col:nth-child(9) {
		display: block;
		}
}

/* ----- [ 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;
		}
}

/* ----- [ Prices / Services ] -----------------*/
.service-box {
	background: var(--lighttan);
	color: var(--black);
	margin: 0 10px;
	padding: 20px;
	height: 100%;
	}
.service-box p,
.service-box li  {
	color: var(--black);
	}
	
.service-box h2,
.booking-info h2 {
	font-size: 1.4rem;
	margin: 0 0 1em;
	}
	
.booking-info {
	margin: 30px 0;
	}
	
.team-section,
.publications-section {
	padding-top: 0;
	}


/* Product Page Slider */
.product-images {
	display: block;
	width: 100%;
	margin: 0 0 10px;
	padding: 0;
	text-align: left; 
	font-size: 2em;
	}

figure {
	margin: 0;
	}

/* Navigation */
.product-slider-nav {
	text-align: left;
	}
.product-thumb {
	display: inline-block;
	width: 116px;
	min-width: 80px;
	width: calc(25% - 8px);
	height: 90px;
	height: auto; 
	margin: 0 10px 10px 0; 
	padding: 3px 0;
	text-align: center;
	cursor: pointer;
	overflow: hidden;
	opacity: 0.8;
	}
.product-thumb:nth-of-type(4) {
	margin-right: 0;
	}
.product-thumb:hover {
	opacity: 1;
	}
.product-image,
.product-thumbnail {
	width: 100%;
	}

.product-slider.slick-initialized .slick-slide {
	height: auto;
	}

.broodmares {
	padding-top: 0;
	}
	
.mare-notes > p {
	margin: 0;
	}
.lineage {
	margin-top: 40px;
	padding-left: 10px !important;
	background: url('../images/lineage-lines.png') 0 -10px no-repeat;
	background-size: 100%;
	}
.lineage div {
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	margin: 0 0 20px;
	/* flex-direction: row-reverse; */
	}
.lineage p {
	padding: 5px;
	border: 1px solid #aaa;
	background: #fff;
	text-align: center;
	font-size: 0.9em;
	line-height: 1.2;
	}
	
.lineage div:nth-child(1) p {
	min-width: 40%;
	font-weight: 700;
	}
.lineage div:nth-child(2) p {
	width: calc(33% - 4px);
	}
.lineage div:nth-child(3) p {
	width: calc(25% - 6px);
	}
	
.sold-text {
	font-family: 'Open Sans', sans-serif;
	font-size: 0.7em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0;
	}


/* ----- [ Map / Contact Form ] -----------------*/
.location-map {
	padding: 20px 0 0;
	}

.map-canvas {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	}

@media only screen and (min-width: 764px) {
	.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%;
	}


/* ----- [ Gallery Page ] -----------------*/
.gallery-page-section {
	padding-bottom: 70px;
	}

.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;
    }

.filter-button-group {
	text-align: center;
	margin: 0 0 1.5em;
	}
.filter-button-group li {
	display: inline-block;
	margin: 0 1em;
	font-size: 1em;
	}
.filter-button-group a {
	color: var(--linktext);
	border-bottom: 1px solid transparent;
	}
a.is-checked {
	border-bottom: 1px solid var(--linktext);
	}

.grid-sizer,
.grid-item { 
	width: 100%;
	margin: 0 0 10px;
	margin: 0;
	padding: 5px;
	/* accellerate */
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	}
.grid-item--width2 {
	width: 64%;
	width: 66.666%;
	}

.gutter-sizer {
	width: 2%;
	width: 0;
	}
	
.inner-max .gutter-sizer {
	width: 20px;
	width: 15px;
	width: 0;
	}

.grid-item img {
	width: auto;
	max-width: 100%;
	}

/* don't dislay too many on mobile */

.grid-item {
	display: none;
	}
.grid-item:nth-child(-n+30) {
    display:block;
	}
.grid-item.gallery-quote {
	display:none;
	}

@media only screen and (min-width: 500px) {
	.grid-sizer,
	.grid-item {
		width: 50%;
		}
}

@media only screen and (min-width: 760px) {
	.grid-sizer,
	.grid-item {
		width: 33.333%;
		padding: 8px;
		}
	.grid-item,
	.grid-item.gallery-quote {
		display: block;
		}
}

.gallery-quote {
	padding: 50px;
	font-size: 1.1em;
	display: none;
	/*border-bottom: 5px solid var(--lighttan);*/
	}
.gallery-quote p {
	font-family: 'Lora', serif;
	font-weight: 400;
	line-height: 1.7em;
	/*font-style: italic;*/
	}
.gallery-quote p:first-of-type:before {
	content: '“';
	display: block;
	font-size: 10rem;
	line-height: 10px;
	color: var(--lighttan);
	margin-top: 40px;
	}
	
@media only screen and (min-width: 680px) { 
	.gallery-quote {
		display: block;
		}
}

.mfp-image-holder .mfp-close, 
.mfp-iframe-holder .mfp-close {
	width: auto;
	background: transparent;
	}
.gallery-icon {
	/*display: none;*/
	}

/* ----- [ Gallery: Before and After grid ] -----------------*/
.before-after {
	display: none;
	}

@media only screen and (min-width: 600px) { 
	.before-after {
		display: block;
		}
}

.thumbnail {
	margin: 0 auto;
	padding: 10px;
	border: 1px solid #ccc;
	width: 100%;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	}
.thumbnail:hover {
	border: 1px solid #2069b3;
	}

.image-basic .thumbnail {
	margin-bottom: 0px;
	}

.image-cell.is-collapsed .arrow-up {
	display: block;
	height: 10px;
	width: 100%;
	}

.image-large {
	max-width: 100%;
	height: auto;
	display: block;
	padding: 40px;
	margin: 0 auto;
	box-sizing: border-box;
	}

.image-cell.is-collapsed .image-basic {
	cursor: pointer;
	}
.image-cell.is-expanded .image-expand {
	max-height: 600px;
	margin-bottom: 10px;
	}

.image-expand {
	position: relative;
	padding: 0 20px;
	box-sizing: content-box;
	overflow: hidden;
	background: var(--darktan);
	max-height: 0;
	-webkit-transition: max-height .3s ease-in-out,
				margin-bottom .1s .2s;
	-moz-transition: max-height .3s ease-in-out,
				margin-bottom .1s .2s;
	transition: max-height .3s ease-in-out,
				margin-bottom .1s .2s;
	width: 300%;
	}

.image-cell:nth-of-type(3n+2) .image-expand {
	margin-left: -100%;
	margin-left: calc(-100% - 20px);
	}

.image-cell:nth-of-type(3n+3) .image-expand {
	margin-left: -200%;
	margin-left: calc(-200% - 40px);
	}

.image-cell:nth-of-type(3n+4) {
	clear: left;
	}

.image-cell.is-expanded .arrow-up {
	display: block;
	border-bottom: 12px solid var(--darktan);
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	height: 0;
	width: 0;
	margin: 2px auto 0;
	}
.expand-close {
	position: absolute;
	top: 10px;
	right: 20px;
	color: #565656;
	font-size: 50px;
	line-height: 50px;
	text-decoration: none;
	border: none;
	z-index: 10;
	}

.expand-close:before {
	content: '×';
	}

.expand-close:hover {
	color: #fff;
	border: none;
	}

.gallery-icon {
	position: absolute;
	font-size: 24px;
	text-align: center;
	line-height: 46px;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	margin: -22px 0 0 -25px;
	color: #fff;
	background: var(--darktan);
	border-radius: 50%;
	opacity: 0;
	transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	-webkit-transition: 0.3s ease;
	-ms-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	}

.thumbnail-link,
.gallery-link {
	position: relative;
	display: block;
	border-bottom: none;
	}
.thumbnail-link:hover,
.gallery-link:hover {
	border-bottom: none;
	}
.thumbnail-link:hover .gallery-icon,
.gallery-link:hover .gallery-icon {
	opacity: 1;
	}


/* ----- [ Gallery: Before and After ] -----------------*/
.ba-container {
	margin: 20px;
	position: relative;
	}
.ba-image-container {
	position: relative;
	display: inline-block;
	/*width: 90%;*/
	/*max-width: 768px;*/
	max-height: 580px;
	width: auto;
	margin: 20px auto;
	}
.ba-image-container img {
	display: block;
	}

img.ba {
	max-height: 100%;
	max-height: 560px;
	/*margin-left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);*/
	}

.ba-image-label {
	position: absolute;
	bottom: 0;
	right: 0;
	color: #ffffff;
	padding: 1em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	opacity: 0;
	-webkit-transform: translateY(20px);
	-moz-transform: translateY(20px);
	-ms-transform: translateY(20px);
	-o-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0.3s 0.7s;
	-moz-transition: -moz-transform 0.3s 0.7s, opacity 0.3s 0.7s;
	transition: transform 0.3s 0.7s, opacity 0.3s 0.7s;
	}
.ba-image-label.is-hidden {
	visibility: hidden;
	}
.is-visible .ba-image-label {
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	}

.ba-resize-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	margin: 0;
	overflow: hidden;
	/* Force Hardware Acceleration in WebKit */
	-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;
	}
.ba-resize-img img {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	height: 100%;
	width: auto;
	max-width: none;
	}
.ba-resize-img .ba-image-label {
	right: auto;
	left: 0;
	}
.is-visible .ba-resize-img {
	width: 50%;
	/* bounce in animation of the modified image */
	-webkit-animation: ba-bounce-in 0.7s;
	-moz-animation: ba-bounce-in 0.7s;
	animation: ba-bounce-in 0.7s;
	}

@-webkit-keyframes ba-bounce-in {
	0% { width: 0; }
	60% { width: 55%; }
	100% { width: 50%; }
}
@-moz-keyframes ba-bounce-in {
	0% { width: 0; }
	60% { width: 55%; }
	100% { width: 50%; }
}
@keyframes ba-bounce-in {
	0% { width: 0; }
	60% { width: 55%; }
	100% { width: 50%; }
}
.ba-handle {
	position: absolute;
	height: 44px;
	width: 44px;
	/* center the element, offset to avoid the nose! */
	left: 50%;
	top: 80%;
	margin-left: -22px;
	margin-top: -22px;
	border-radius: 50%;
	background: #dc717d url("../images/cd-arrows.svg") no-repeat center center;
	cursor: move;
	box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
	opacity: 0;
	-webkit-transform: translate3d(0, 0, 0) scale(0);
	-moz-transform: translate3d(0, 0, 0) scale(0);
	-ms-transform: translate3d(0, 0, 0) scale(0);
	-o-transform: translate3d(0, 0, 0) scale(0);
	transform: translate3d(0, 0, 0) scale(0);
	}
.ba-handle.draggable {
	/* change background color when element is active */
	background-color: #445b7c;
	}
.is-visible .ba-handle {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0) scale(1);
	-moz-transform: translate3d(0, 0, 0) scale(1);
	-ms-transform: translate3d(0, 0, 0) scale(1);
	-o-transform: translate3d(0, 0, 0) scale(1);
	transform: translate3d(0, 0, 0) scale(1);
	-webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0s 0.7s;
	-moz-transition: -moz-transform 0.3s 0.7s, opacity 0s 0.7s;
	transition: transform 0.3s 0.7s, opacity 0s 0.7s;
	}

/* ----- [ Suppliers & Venues ]----------------------- */
.main-venues li {
	font-family: 'Lora', serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: #2c2c2c;
	list-style-type: none;
	display: inline-block;
	margin: 0 1em;
	}
	
.venue-images {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: center;
	}
.venue-images > div {
	flex: 1;
	}
.venue-images img {
	height: 100%;
	object-fit: cover;
	}

.venue-text {
	background: var(--lighttan);
	padding: 30px !important;
	text-align: center;
	}
.venue-text li {
	list-style-type: none;
	list-style-position: outside;
	font-size: 0.95rem;
	margin: 0 0 0.5em;
	}
.venue-text a {
	color: #222;
	}
.venue-text a:hover {
	border-color: #222;
	}


/* ----- [ Contact form ]----------------------- */
input,
select,
textarea {
    font-size: 0.9em;
    width: 100%;
    padding: 6px 10px;
    margin: 0 0 10px;
	color: #333;
	background: #fff;
	background: rgba(255,255,255,0.9);
	background: rgba(252,248,246,0.8);
    webkit-appearance: none;
    border: 1px solid #ccc;
    border: none;
    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;
	}

.form-wrapper  {
	background: rgba(255,255,255,0.5);
	padding: 30px;
	max-width: 600px;
	}
.js-simplecontactform {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-content: flex-start;
	}
	
.form__item {
	width: 100%;
	position: relative;
	}
	
.form__item--c_contact_consent,
.form__item--c_terms_consent {
	line-height: 1.1em;
	margin-bottom: 0.5em;
	}

.form__item--scf-date {
	display: none;
	}
	
.form__item--submit {
	text-align: center;
	}
.form__item--submit button:hover {
	}

.form__item label {
	font-size: 0.95rem;
	font-family: 'Lora', serif;
	line-height: 1;
	}

.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__item select {
	position: relative;
	border-radius: 0;
	padding: 8px 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	}

.form__item--c_wedding_time2:after,
#wrap_Inputfield_c_wedding_time2::after {
	content: "\f0d7";
	font-family: fontawesome;
	position: absolute;
	color: #666;
	display: block;
	bottom: 14px;
	right: 25px;
	z-index: 99;
	pointer-events: none;
	}
	
	
.form--error--message,
.form--success--message {
	text-align: center;
	font-size: 0.95em;
	font-weight: 400;
	padding: 15px 0;
	margin: 5px 0 20px;
	border-radius: 5px;
	width: 100%;
	}
	
.form--success--message {
	text-align: left;
	font-size: 1.2em;
	color: #222;
	}

.FieldtypeCheckbox {
	margin-right: 0.5em;
	}

#wrap_InputfieldSubmit span {
	display: none;
	}
	
.InputfieldStateRequired .InputfieldHeader:after,
.CommentForm label:after,
.field--required label:after {
	content:"*";
	margin-left: 2px;
	color: #333;
	}
.InputfieldStateRequired.InputfieldStateError .InputfieldHeader:after,
.field--required.field--error label:after {
	color: #f00;
	}
.InputfieldStateRequired.InputfieldStateError input,
.InputfieldStateRequired.InputfieldStateError select,
.InputfieldStateRequired.InputfieldStateError textarea,
.InputfieldStateRequired.InputfieldStateError .pw-no-select::before,
.field--required.field--error input,
.field--required.field--error select,
.field--required.field--error textarea {
	border-color: #f00;
	border: 1px solid #f00 !important;
	}
	
/* hide field messages */
.field--error--message {
	display: none;
	}

@media only screen and (min-width: 940px) { /* 1040 */
	.form-wrapper {
		width: 70%;
		max-width: 2800px;
		}
	.form__item {
		width: 50%;
		padding-right: 20px;
		}
	.form__item:nth-of-type(even) {
		padding-right: 0;
		padding-left: 20px;
		}
	.form__item--c_postcode,
	.form__item--c_message,
	.form__item--c_terms_consent,
	.form__item--submit {
		width: 100%;
		padding: 0 !important;
		}
}
	
@media only screen and (min-width: 1100px) {
	input,
	select,
	textarea {
		background: var(--lighttan);
		background: rgba(252,248,246,0.8);
		}
	.form-wrapper  {
		background: rgba(255,255,255,0.5);
		padding: 40px 40px 30px;
		margin-left: 5%;
		width: 65%;
		}
}
@media only screen and (min-width: 1400px) {
	.form-wrapper {
		width: 50%;
		}
}

.ui-datepicker,
.ui-datepicker table,
.ui-datepicker tr,
.ui-datepicker td,
.ui-datepicker th {
  margin: 0;
  padding: 0;
  border: none;
  border-spacing: 0;
}

.ui-datepicker {
  display: none;
  width: 100%;
  width: auto;
  padding: 15px;
  cursor: default;
  text-transform: uppercase;
  font-family: Tahoma;
  font-size: 24px;
  background: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.ui-datepicker-header {
  position: relative;
  padding-bottom: 10px;
}

.ui-datepicker-title {
  text-align: center;
}

.ui-datepicker-month,
.ui-datepicker-year {
	position: relative;
	display: inline-block;
	margin: 0 5px;
	width: auto;
	font-size: 14px;
	}

.ui-datepicker-month:before {
  display: block;
  position: absolute;
  top: 5px;
  right: 0;
  width: 5px;
  height: 5px;
  content: '';
  background: #a5cd4e;
  background: -moz-linear-gradient(top, #a5cd4e 0%, #6b8f1a 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a5cd4e), color-stop(100%, #6b8f1a));
  background: -webkit-linear-gradient(top, #a5cd4e 0%, #6b8f1a 100%);
  background: -o-linear-gradient(top, #a5cd4e 0%, #6b8f1a 100%);
  background: -ms-linear-gradient(top, #a5cd4e 0%, #6b8f1a 100%);
  background: linear-gradient(top, #a5cd4e 0%, #6b8f1a 100%);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.ui-datepicker-prev,
.ui-datepicker-next {
  position: absolute;
  top: 2px;
  padding: 2px;
  cursor: pointer;
}

.ui-datepicker-prev {
  left: 0;
  padding-left: 0;
}

.ui-datepicker-next {
  right: 0;
  padding-right: 0;
}

.ui-datepicker-prev span,
.ui-datepicker-next span {
  display: block;
  /*width: 5px;
  height: 10px;*/
  /*text-indent: -9999px;
  background-image: url(../img/arrows.png);*/
}

.ui-datepicker-prev span {
  background-position: 0px 0px;
}

.ui-datepicker-next span {
  background-position: -5px 0px;
}

.ui-datepicker-prev-hover span {
  background-position: 0px -10px;
}

.ui-datepicker-next-hover span {
  background-position: -5px -10px;
}

.ui-datepicker-calendar th {
  padding-top: 15px;
  padding-bottom: 10px;
  text-align: center;
  font-weight: normal;
  color: #a8a8a8;
}

.ui-datepicker-calendar td {
  padding: 0 7px;
  text-align: center;
  line-height: 28px;
}

.ui-datepicker-calendar .ui-state-default {
  display: block;
  width: 28px;
  height: 28px;
  outline: none;
  text-decoration: none;
  color: #000;
  border-radius: 50%;
  border: none;
}

.ui-datepicker-calendar .ui-state-active,
.ui-datepicker-calendar .ui-state-hover {
  color: #fff;
  background: #ccbaab;
  border-radius: 50%;
}

.ui-datepicker-other-month .ui-state-default {
  color: #ccc;
}

.ui-datepicker table {
  margin: 0 auto;
}



/* ----- [ Buttons ] --------------------------- */
button,
.button {
	display: inline-block;
	color: var(--black);
	background: var(--darktan);
	width: 100%;
	opacity: 1;
	font-size: 1.2rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 10px;
	padding: 10px 20px;
	border: none;
	border: 1px solid transparent;
	cursor: pointer;
	}
button:hover,
.button:hover {
	color: var(--black);
	background: var(--lighttan);
	text-decoration: none;
	/* border: 1px solid var(--darktan); */
	}
	
.button.button-full {
	width: 100%;
	}

.button-small  {
	font-size: 0.9rem;
	padding: 0 8px;
	}
.button-rev {
	color: #728f52 !important;
	background: #fff;
	}
.button-rev:hover {
	color: #fff !important;
	background: #7b9e47 !important;
	}
	
@media only screen and (min-width: 600px) { 
	button,
	.button {
		width: auto;
		}
}

.fixed-cta {
	background: rgba(255,255,255,0.2);
	}

.fixed-cta,
.fixed-cta p,
.fixed-cta h2,
.fixed-cta h3 {
	color: #fff;
	font-size: 1.4em;
	line-height: 1;
	text-align: center;
	margin: 0;
	max-width: 900px;
	}

.fixed-cta blockquote p:before,
.fixed-cta blockquote h2:before,
.fixed-cta blockquote h3:before {
	content: '“';
	position: relative;
	left: -10px;
	top: 40px;
	font-size: 2.6em;
	font-weight: 700;
	color: #fff;
	}
.fixed-cta blockquote p:after,
.fixed-cta blockquote h2:after,
.fixed-cta blockquote h3:after {
	content: '”';
	left: auto;
	right: 0;
	top: 5px;
	font-size: 1.3em;
	color: #fff;
	position: relative;
	}

.call-to-action {
	color: #fff;
	text-align: center;
	background: var(--darktan);
	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 transparent;
	}
.call-to-action a:hover {
	border-bottom: 1px solid #fff;
	}

.call-to-action .button {
	margin: 0 0.5em;
	-webkit-transition:  .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
	}
.call-to-action .button:hover {
	color: #fff !important;
	background: #7b9e47 !important;
	}

/* ----- [ Footer ] ---------------------------- */
.page-footer {
	color: var(--lighttan);
	background: var(--darktan);
	padding: 0;
	margin-top: 80px;
	}
	
.page-footer .inner {
	padding: 50px 30px 10px;
	}
	
.page-footer-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-content: flex-start;
	}
.page-footer-row .col {
	margin: 0 0 30px;
	width: 100%;
	}

.page-footer p,
.page-footer li {
	color: var(--black);
	font-size: 0.9em;
	line-height: 1.6em;
	font-weight: 400;
	margin: 0 0 1em;
	}
.page-footer li {
	margin: 0;
	}
	
.page-footer strong {
	font-weight: 700;
	}

.page-footer a {
	color: var(--black);
	border: none;
	}
.page-footer a:hover {
	/*color: #fff;*/
	color: var(--black);
	text-decoration: underline;
	border: none;
	}

.footer-logo {
	max-width: 240px;
	margin: 0 30px 0 0;
	padding: 0;
	}
.footer-logo img {
	max-width: 100%;
	}

.footer-logo-text {
	font-family: 'Aleo', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 20px;
	}

.footer-nav {
	text-align: right;
	text-align: left;
	}

.footer-nav li {
	display: block;
	display: inline-block;
	margin: 0 1em 0 0;
	font-size: .95rem;
	white-space: nowrap;
	}

p.copyright-credits {
	margin: 20px 0 0;
	font-size: 0.8rem;
	color: var(--black);
	}
.copyright-credits a {
	color: var(--black);
	}
	
.footer-badge {
	display: inline-block;
	margin: 10px 10px 0 0;
	opacity: 0.8;
	}
.footer-badge:hover {
	opacity: 1;
	}
.footer-badge img {
	height: 70px;
	}

@media only screen and (min-width: 640px) {
	.page-footer-row .col:not(:first-child) {
		width: 50%;
		}
	.footer-nav {
		text-align: right;
		}
	.footer-nav li {
		display: block;
		}
}

@media only screen and (min-width: 940px) {
	.page-footer-row .col:not(:first-child),
	.page-footer-row .col:first-child {
		width: auto;
		}
}
	

/* ----- [ Social Media Icons ] ---------------- */
/* ----- [ SVG Social Media Icons ] --------------- */
.social-icons {
	/*text-align: left;
	margin: 5px;*/
	}

.social-icon {
    display: inline-block;
    margin: 0 0 0 5px;
	}
.page-footer .social-icon {
	display: block;
	display: inline-block;
	margin: 0 0 8px;
	margin: 0 8px 0 0;
	}

.social-icon a {
    color: #fff;
    display: block;
    height: 26px;
    width: 26px;
    text-align: center;
    line-height: 22px;
    opacity: 1;
    border: none;
    background: var(--darktan);
    padding: 0;
    border-radius: 50%;
    -webkit-transition:  .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
	}

.page-footer .social-icon a {
	color: var(--darktan);
	background: #fff;
	height: 40px;
    width: 40px;
    line-height: 36px;
	}

.social-icon a:hover,
.social-icon a:active {
    color: var(--darktan);
    background: var(--lighttan);
    opacity: 1;
    border: none;
	}
	
.page-footer .social-icon a:hover,
.page-footer .social-icon a:active {
    color: #fff;
    background: var(--darktan);
	}

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

.social-networks a:hover {
	opacity: 1;
	}
	
.social-icons-wrapper {
	display: none;
	}

@media only screen and (min-width: 640px) {
	.page-footer .social-icon {
		display: inline-block;
		}
}

@media only screen and (min-width: 940px) {
	.social-icons-wrapper {
		text-align: right;
		display: block;
		}
	.page-footer .social-icon {
		display: block;
		margin: 0 0 8px;
		}
}

.top-link {
    position: fixed;
    bottom: 40px;
    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;
	}
.top-link.show {
	opacity: 1;
	}
.top-link a {
	color: #fff;
	font-size: 32px;
	line-height: 38px;
    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: var(--darktan);
	text-decoration: none;
	border: none;
	border-radius: 50%;
	opacity: 0.7;
    }
.top-link a:hover {
	color: #272441;
	opacity: 1;
	border: none;
	}

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

.cms-text ul,
.cms-text ol {
	margin: 0 0 1em;
	overflow: hidden;
	}
.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%;
	}
	
.cms-text h2 {
	clear: both;
	}
	
/* ----- [ 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;
	}
	
.o-hidden {
	overflow: hidden;
	}

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

.align_left {
	float: left;
	margin: 5px 20px 20px 0;
	}
.align_right {
	float: right;
	margin: 5px 0 20px 20px;
	}
.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);
	opacity: 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);
	opacity: 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;
  }
}
