/**
	@Author:	Paul Strandoo for Spi-des-ign
	@Date:		31 March 2021
	@Notes:		Ticehurst Yards
		
	FONTS & COLORS
	-------------
	Font-family: 'Roboto', sans-serif;
	Font-family: 'Inter', sans-serif;
	available weight: 400, 700;
	inner max-width: 1070px;
	darkgreen: #00675c;
	lightgreen: #009e8e;
	palegreen: #dfe9e8;
*/
/* @import url('reset.css'); */
@import url('font-awesome.min.css');

* {
   -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;
	font-size: 16px;
	line-height: 1.3;
	background: #ffffff;
	}

body, input, textarea, table {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	color: #222;
	color: rgb(34,34,34);
	}
	
/* ----- [ Typography ] -------------------------*/
p,
li,
td {
	font-family: 'Inter', 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: #00675c;
	border-bottom: 1px solid transparent;
	transition: ease .2s;
	-webkit-transition: ease .2s;
	-moz-transition: ease .2s;
	-o-transition: ease .2s;
	-ms-transition: ease .2s;
	}
a:hover {
	color: #00675c;
	border-bottom: 1px solid #00675c;
	}

h1,h2,h3,h4 {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	margin: 0 0 0.5em;
	color: #222;
	}
h1, .h1 {
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.2;
	margin: 0 auto 0.5em;
	}
	
.home h1 {
	color: #fff;
	font-style: italic;
	margin: 0 auto 0.2em;
	}
	
h2, .h2 {
	color: #222;
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 1.3;
	margin: 1.5em 0 0.1em;
	text-transform: none;
	}
h3 {
	font-weight: 400;
	font-size: 1.1rem;
	line-height: 1.2;
	margin: 1em 0 0.1em;
	}

.history-h2 {
	font-weight: 700;
	font-size: 1.8em;
	margin: 0 0 1em;
	}

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

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

h4 {
	font-size: 0.9em;
	line-height: 1.4;
	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.2;
		}
	h2, .h2 {
		font-size: 1.6rem;
		}
	h3 {
		font-size: 1.2rem;
		}		
}

img {
	display: block;
	}

/* 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: #ccc;
	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,
.col > a > 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; flex: 1; }

	.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-top: 10px solid #9fbf74;
	border-top: 10px solid #00675c;
	-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;
	}

.page-header .inner {
	position: relative;
	max-width: 100%;
	height: 100%;
	margin: 0 auto 0;
	padding: 10px 20px;
	}

.logo-text-wrap {
	margin: 0 auto;
	text-align: center;
	max-width: 220px;
	}
.logo-text-wrap a {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	color: #222;
	font-size: 1.6rem;
	line-height: 1;
	}
.logo-text-wrap a:hover {
	color: #00675c;
	border: none;
	}
.logo-text-wrap span {
	font-size: 1.3rem;
	color: #86868d;
	}
	
.menu-trigger,
.logo-wrap a,
.logo-wrap a:hover {
	border-bottom: none;
	}
	
.desktop {
	display: none;
	}

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

		
	.logo-text-wrap {
		max-width: 340px;
		}
	.logo-text-wrap a {
		font-size: 2.2rem;
		}
	.logo-text-wrap span {
		font-size: 1.8rem;
		}
}

@media only screen and (min-width: 1020px) {
	.desktop {
		display: block;
		}
	.mobile {
		display: none !important;
		}

	.page-header .inner {
		max-width: 1200px;
		margin: 0 auto 0;
		padding: 15px 30px;
		overflow-x: visible;
		}
		
	.page-header.small .inner {
		margin-top: 0;
		}
}

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

.nav-menu {
	text-align: center;
	margin: 0;
	white-space: nowrap;
	}
.menu-item {
	position: relative;
	font-weight: 700;
	margin: 10px 0;
	margin: 20px 0;
	letter-spacing: 0.05em;
	}
.menu-item a,
.menu-item span {
	color: #222;
	font-size: 1.4rem;
	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: #00675c;
	}
.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 {
		text-align: left;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		position: relative;
		justify-content: center;
		align-items: center;
		margin: 0;
		}
	.main-navigation > * {
		flex: 1;
		}
	.nav-menu {
		text-align: left;
		margin: 0 auto;
		}
	.nav-menu:first-of-type {
		text-align: right;
		}
	.menu-item {
		position: relative;
		display: inline-block;
		/*font-size: 1rem;*/
		font-weight: 400;
		/*text-transform: uppercase;*/
		margin: 0 1.2em;
		}

	.menu-item a,
	.menu-item span {
		text-decoration: none;
		font-size: 1.1rem;
		font-weight: 700;
		padding: 0;
		letter-spacing: 0;
		border-bottom: 1px solid transparent;
		}
	.menu-item a:hover,
	.menu-item a.on,
	.menu-item span:hover,
	.menu-item span.on {
		color: #00675c;
		border-bottom: 1px solid #00675c;
		}
}

/* ----- [ Menu Trigger (Hamburger) ] ---------- */
.menu-trigger {
	position: absolute;
	height: 100%;
	width: 50px;
	right: 2vw;
	top: 0;
	}

.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) { /* 800  1110 */
	/* 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-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 {
	height: 640px;
	margin: 0;
	border-top: 84px solid #fff; /* header height */
	overflow: hidden;
	background-size: cover;
	}
	
.no-hero  {
	border-top: 84px solid #fff;
	}

.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: #ccc;
	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 {
	text-align: left;
	}
	
.home-hero {
	background: transparent;
	height: 85vh;
	}
.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: #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: #00675c;
	}
.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-intro {
	background-color: #f3f2ee;
	}
.home-intro p  {
	font-size: 1.1rem;
	}

/* ----- [ Product Videos ] ------------------- */
/* Home */
.vimeo-wrapper {
	position: fixed;
	position: absolute;
	top: 110px;
	top: 84px;
	left: 0;
	width: 100%;
	height: 100%;
	height: calc(85vh - 84px);
	z-index: -1;
	pointer-events: none;
	overflow: hidden;
	/*background: #fff url('../images/vimeo-loading.gif') 50% 50% no-repeat;*/
	}
.vimeo-wrapper iframe {
	position: absolute;
	top: 0;
	left: 50%;
	width: 100vw;
	height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
	min-height: 100vh;
	min-height: 85vh;
	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
	transform: translate(-50%, 0);
	}

@media screen and (min-width: 600px) {
	.home-hero {
		height: 98vh;
		/*height: 820px;*/
		}
	.vimeo-wrapper {
		top: 110px;
		height: calc(98vh - 110px);
		}
	.vimeo-wrapper iframe {
		min-height: 90vh;	
		}
	.hero,
	.no-hero {
		border-top: 105px solid #fff;
		}
}

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

/* ----- [ Available Units ] -----------------*/
.available-units h2  {
	margin-bottom: 0.8em;
	}

.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-align: left;
	text-decoration: none;
	border: none;
	overflow: hidden;
	}
.section-link:hover {
	text-decoration: none;
	border: none;
	}
.section-link img {
	width: 100%;
	vertical-align: middle;
	transition: ease .6s;
	-webkit-transition: ease .6s;
	-moz-transition: ease .6s;
	-o-transition: ease .6s;
	-ms-transition: ease .6s;
	opacity: 0.8;
	}

.section-link:hover img {
	opacity: 1;
	}
.section-link h3 {
	display: inline-block;
	margin: 0.5em 0 1em;
	text-align: left;
	border-bottom: 2px solid transparent;
	}
.section-link:hover h3 {
	border-bottom: 2px solid #00675c;
	}

.anchor {
    display: block;
    position: relative;
    top: -160px;
    visibility: hidden;
	}

@media only screen and (min-width: 600px) {
	.available-units .col {
		max-width: 430px;
		}
}

/* ----- [ Timeline ] -----------------*/
.tl-timeline p {
	font-family: 'Inter', sans-serif !important;
	font-weight: 400;
	font-size: 1.2em !important;
	line-height: 1.6em;
	margin: 0 0 1em;
	}


/* Note: Max-width */
@media only screen and (max-width: 500px) {
	.tl-slide .tl-slide-content-container .tl-slide-content {
		width: 100% !important;
	}
}

/* ----- [ 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%);
    -moz-transform: translate(0, -50%);
   	-o-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;
	}

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

/* ----- [ For Rent / Units ] -----------------*/
.unit-section {
	margin: 0;

	padding-top: 30px
	}
.unit-section .col {
	margin-bottom: 10px;
	}

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

.units {
	padding-top: 0;
	}
	
.sold-text {
	font-family: 'Inter', sans-serif;
	font-size: 0.8em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0;
	color: #f00;
	}

@media only screen and (min-width: 764px) {
	.unit-section {
		margin: 40px 0 40px;
		border-top: 2px solid #ccc;
		}
}

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

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

@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 (optional) ] -----------------*/
.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%;
	}
	
/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
	}
.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 14px;
    height: 14px;
    padding: 0;
    cursor: pointer;
    color: #3bc666;
    border: 3px solid #009e8e;
    border-radius: 50%;
    outline: none;
    background: none;
}
.slick-dots li.slick-active button,
.slick-dots li button:hover,
.slick-dots li button:focus {
	background: #009e8e;
    outline: none;
}

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

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;
	-webkit-appearance: checkbox;
	}

/* ----- [ 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__item--recaptcha {
	margin: 0 0 10px;
	}
	
.form--error--message,
.form--success--message {
	text-align: center !important;
	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: #009e8e;
	}

.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: #009e8e;
	}

/* ----- [ Buttons ] --------------------------- */
button,
.button {
	display: inline-block;
	font-size: 1em;
	color: #fff;
	background: #00675c;
	width: 100%;
	text-align: center;
	padding: 10px 20px;
	margin: 0 0 10px;
	border: none;
	border-radius: 4px;
	letter-spacing: 1px;
	cursor: pointer;
	opacity: 1;
	}
button:hover,
.button:hover {
	color: #fff;
	background: #009e8e;
	text-decoration: none;
	border: none;
	}
	
.button.button-full {
	width: 100%;
	}

.button-small  {
	font-size: 0.9em;
	padding: 8px 15px;
	}
.button-rev {
	color: #00675c !important;
	background: #fff;
	}
.button-rev:hover {
	color: #fff !important;
	background: #009e8e !important;
	}
	
@media screen and (min-width: 600px) { 
	button,
	.button {
		width: auto;
		}
}

/* ----- [ Testimonials ] ------------ */
.section-testimonials {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover; 
	background-attachment: fixed; 
	padding: 0;
	}
.section-testimonials .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	justify-content: center;
	align-items: center;
	}
.testimonial-wrapper {
	color: #fff;
	padding: 30px;
	margin: 0;
	max-width: 1100px;
	overflow: hidden;
	}

.testimonial p {
	color: #fff;
	}
.testimonial-name {
	color: #fff;
	font-size: 1.2em;
	}

.testimonial,
.testimonial p,
.testimonial h2,
.testimonial h3 {
	color: #fff;
	font-size: 1.4em;
	line-height: 1.3;
	text-align: center;
	margin: 0 0 0.5em;
	}

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

.call-to-action {
	color: #fff;
	text-align: center;
	background: #00675c;
	padding: 30px 0;
	}
.call-to-action p {
	color: #fff;
	font-weight: bold;
	font-size: 1.4rem;
	text-align: center;
	margin: 0;
	}
.call-to-action a {
	color: #fff;
	text-decoration: none;
	}

.call-to-action .button {
	margin: 5px 0;
	-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: #009e8e !important;
	}
	
@media screen and (min-width: 600px) { 
	.call-to-action .button {
		margin: 0 0.5em;
		}
}

/* ----- [ Footer ] ---------------------------- */
.page-footer {
	background: #fff;
	border-top: 1px solid #ececec;
	padding: 0;
	}
	
.page-footer .inner {
	padding: 50px 30px 10px;
	}
.page-footer p,
.page-footer li {
	line-height: 1.6;
	font-weight: 400;
	margin: 0;
	}
.page-footer li {
	margin: 0;
	}
	
.page-footer strong {
	font-weight: 700;
	}

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

.footer-logo-text {
	font-family: 'Inter', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
	margin: 0 0 20px;
	color: #009e8e;
	text-indent: -0.1em;
	}
.footer-logo-text span {
	font-size: 1.5rem;
	color: #00675c;
	}

.footer-meta {
	margin-bottom: 0;
	}

.footer-nav {
	margin-top: 0.7em;
	}

.footer-nav li {
	display: inline-block;
	display: block;
	margin: 0 1em 0 0;
	font-size: .95rem;
	white-space: nowrap;
	}
.footer-nav a {
	color: #00675c;
	text-decoration: none;
	}
.footer-nav a:hover {
	color: #00675c;
	}
.footer-nav a.on {
	font-weight: 700;
	}

p.copyright-credits {
	margin: 20px 0 0;
	font-size: 0.8em;
	color: #222;
	}
.copyright-credits a {
	color: #00675c;
	}
	
/* ----- [ SVG Social Media Icons (not in use) ] --------------- */
.social-icons {
	text-align: left;
	margin: 0;
	}
.social-icons .social-icon {
    color: #333;
    display: inline-block;
    margin: 0 5px 10px 0;
	}

.social-icons .social-icon a {
    color: #555;
    opacity: 1;
    border: none;
    background: #eee;
    padding: 8px 10px 12px;
    border-radius: 50%;
    -webkit-transition:  .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
	}

.social-icons .social-icon a:hover,
.social-icons .social-icon a:active {
    color: #fff;
    opacity: 1;
    border: none;
    background: #00675c;
	}

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


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

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

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