/**
	@Author:	Trident Marketing
	@Date:		5 August 2021
	@Notes:		Southgate & Roberts
		
	FONTS & COLORS
	-------------
	font-family: brandon-grotesque, sans-serif;  300/400/300i/400i
	font-family: baskerville-display-pt,serif; 400/700/400i/700i
	available weight: 400, 400i, 700;
	inner max-width: 1070px;
*/
@import url('reset.css');
@import url('font-awesome.min.css');

:root {
	--header: #051728;
	--primary: #051728;
	--blue-1: #051728;
	--blue-2: #627996;
	--blue-3: #21354E;
	--blue-4: #11243D;
	
	--grey: #e7e7e7;
	--grey-2: #f3f2ee; /* PS preferred */
	--lightgrey: #f1f1f1;
	--light-grey: #e2e2e2;
	
	--accent-1: #2b73b6; /* button color  #d2484a;  #938c84 */
	--accent-2: #2b73b6; /* button hover color  #af3436 */
	
	--linktext: #b99e87;
    --lighttan: #f8f0ea;
    --white: #ffffff;
    --black: #2c2c2c;
    --scroll-var: 0px;
	}

* {
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
	box-sizing: border-box;
	}
	
html {
	font-size: 100%;	
	scrollbar-gutter: stable;
	/* TEST for H2 Issues */
	/*
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: unset;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-text-size-adjust: 100%;
	-webkit-font-variant-ligatures: none;
	font-variant-ligatures: none;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	*/
	}
body {
	margin: 0;
	padding: 0;
	position: relative;
	font-size: 18px;
	line-height: 1.3;
	background: #ffffff;
	}

body, input, textarea, table {
	font-family: brandon-grotesque, sans-serif;
	font-weight: 400;
	color: var(--black);
	}
	
/* ----- [ Typography ] -------------------------*/
p,
li,
td {
	font-family: brandon-grotesque, sans-serif;
	font-weight: 300;
	font-size: 1em;
	line-height: 1.6em;
	margin: 0 0 1em;
	}
li {
	margin: 0;
	}

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

a {
	color: var(--accent-1);
	}
a:hover {
	color: var(--accent-1);
	border-bottom: 1px solid var(--accent-1);
	}

h1, .h1 {
	font-family: baskerville-display-pt,serif;
	color: #fff;
	font-size: 2.2em;
	font-size: 1.8em;
	line-height: 1.1;
	font-weight: 700;
	margin: 0 0 0.2em;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	}
h2, .h2 {
	font-family: baskerville-display-pt,serif;
	color: #222;
	font-size: 1.8em;
	line-height: 1.1;
	font-weight: 700;
	margin: 0 0 0.6em;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	}
h3, .h3 {
	font-family: baskerville-display-pt,serif;
	font-weight: 700;
	font-size: 1.5em;
	line-height: 1.2em;
	margin: 0;
	text-transform: uppercase;
	}

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;
	}
	
p + h3,
ul + h3,
ol + h3 {
	margin: 1.5em 0 0;
	}

p + h2,
ul + h2,
h3 + h2 {
	margin-top: 2em;
	}
	
.rule-below:after {
	content: '';
	display: block;
	height: 1px;
	width: 110px;
	background: #222;
	margin: 15px auto 30px;
	}

@media only screen and (min-width: 400px) { 
	h1, .h1 {
		font-size: 3.6rem;
	}
}
@media only screen and (min-width: 600px) { 
	h2, .h2 {
		font-size: 2em;
		}
	h3 {
		font-size: 1.4em;
		}		
}

img {
	display: block;
	vertical-align: middle;
	}

/* ----- [ Dark ] -----------------*/
.dark {
	color: #fff;
	background: var(--dark-1);
	}
.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark p,
.dark li {
	color: #fff;
	}

/* ----- [ 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;
	overflow: hidden;
	}
.inner-full {
	max-width: 100%;
	padding: 0;
	}
.inner-narrow {
	max-width: 900px;
	}
.inner-wide {
	max-width: 1600px;
	}

/* ----- [ Strandoo Flex Grid System v1 ] --------------- */
.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;
	/*justify-content: stretch;*/
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	position: relative;
	}

.col {
	flex: 1;
	padding: 0;
	}

@media only screen and (min-width: 420px) {
	.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-left: 1px;
		padding-right: 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 {
	max-width: 100%;
	}

@media only screen and (min-width: 100px) and (max-width: 599px) {
	.base-row.row {
		flex-direction: row;
		}

	.base-row .m-1of2,
	.base-row .m-2of4,
	.base-row .m-50 {
		width: 50%;
		flex: none;
		}
	.base-row .m-1of3,
	.base-row .m-33 {
		width: 33.3333%;
		flex: none;
		}
}

@media only screen and (min-width: 600px) { 
	.row {
		flex-direction: row;
		}

	.m-auto {
		width: auto;
		}
	.m-full,
	.m-1of1,
	.m-2of2 {
		width: 100%;
		flex: auto;
		}
	.m-1of2,
	.m-50 {
		width: 50%;
		flex: none;
		}
	.m-1of3,
	.m-33 {
		width: 33.3333%;
		flex: none;
		}
	.m-2of3,
	.m-66 {
		width: 66.6667%;
		flex: none;
		}
	.m-1of4,
	.m-25 {
		width: 25%;
		flex: none;
		}
	.m-3of4,
	.m-75 {
		width: 75%;
		flex: none;
		}
	.m-1of5,
	.m-20 {
		width: 20%;
		flex: none;
		}
		
	.m-hidden { display: none; }
}

@media only screen and (min-width: 770px) {
	.t-auto {
		width: auto;
		}
	.t-full,
	.t-2of2,
	.t-3of3,
	.t-4of4,
	.t-5of5 {
		width: 100%;
		flex: none;
		}
	.t-1of2,
	.t-2of4,
	.t-3of6,
	.t-50 {
		width: 50%;
		flex: none;
		}
	.t-1of3,
	.t-2of6,
	.t-33 {
		width: 33.3333%;
		flex: none;
		}
	.t-2of3,
	.t-4of6,
	.t-66 {
		width: 66.6667%;
		flex: none;
		}
	.t-1of4,
	.t-25 {
		width: 25%;
		flex: none;
		}
	.t-3of4,
	.t-75 {
		width: 75%;
		flex: none;
		}
	.t-1of5,
	.t-3of6,
	.t-20 {
		width: 20%;
		flex: none;
		}
	.t-2of5,
	.t-40 {
		width: 40%;
		flex: none;
		}
	.t-3of5,
	.t-60 {
		width: 60%;
		flex: none;
		}
	.t-4of5,
	.t-80 {
		width: 80%;
		flex: none;
		}
	.t-hidden { display: none; }
}
@media only screen and (min-width: 1200px) { 
	.d-auto {
		width: auto;
		}
	.d-full,
	.d-2of2,
	.d-3of3,
	.d-4of4,
	.d-5of5 {
		width: 100%;
		flex: none;
		}
	.d-1of2,
	.d-2of4,
	.d-3of6,
	.d-50 {
		width: 50%;
		flex: none;
		}
	.d-1of3,
	.d-2of6,
	.d-33 {
		width: 33.3333%;
		flex: none;
		}
	.d-2of3,
	.d-4of6,
	.d-66 {
		width: 66.6667%;
		flex: none;
		}
	.d-1of4,
	.d-25 {
		width: 25%;
		flex: none;
		}
	.d-3of4,
	.d-75 {
		width: 75%;
		flex: none;
		}
	.d-1of5,
	.d-3of6,
	.d-20 {
		width: 20%;
		flex: none;
		}
	.d-2of5,
	.d-40 {
		width: 40%;
		flex: none;
		}
	.d-3of5,
	.d-60 {
		width: 60%;
		flex: none;
		}
	.d-4of5,
	.d-80 {
		width: 80%;
		flex: none;
		}
	.d-1of6,
	.d-16 {
		width: 16.6666%;
		flex: none;
		}
		
	.d-hidden { display: none; }
}

/* ----- [ 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: var(--header);
	/*box-shadow: 2px 10px 15px rgba(41,44,61,.05);*/
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
	-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 {
	max-width: 3000px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	max-width: 100%;
	height: 100%;
	height: auto;
	margin: 0 auto;
	padding: 10px 20px;
	overflow: visible;
	}

.logo-wrap {
	max-width: 200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 0 10px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 9;
	overflow: hidden;
	}
.logo-wrap img {
	width: 100%;
	height: auto;
	display: inline-block;
	vertical-align: middle;
	}
	
.header-address {
	color: #fff;
	line-height: 1.4;
	display: none;
	}
.header-address a {
	color: #fff;
	}
.header-address a:hover {
	color: var(--accent-1);
	}
	
.desktop-phone.header-button {
	display: none;
	}
	
.menu-trigger,
.logo-wrap a,
.logo-wrap a:hover {
	border-bottom: none;
	}
	
.logo-wrap.is-small img {
	margin-bottom: -50px;
	}

@media only screen and (min-width: 1086px) {
	.page-header .inner {
		margin: 0 auto;
		padding: 0 30px;
		justify-content: space-between;
		justify-content: flex-start;
		align-items: center;
		overflow-x: visible;
		}

	.logo-wrap {
		max-width: 280px;
		display: block;
		width: auto;
		margin: 0 0 auto;
		padding: 30px 15px;
		padding: 10px 15px 15px;
		overflow: hidden;
		/* margin-right: auto; */
		}
		
	.logo-wrap.is-small img {
		margin-bottom: 0;
		}

	.logo-wrap a,
	.logo-wrap a:hover {
		border: none;
		}
		
	.page-header.is-fixed {
		position: fixed;
		/*top: -20px;*/
		}

	 .desktop-phone.header-button {
		display: inline-block;
		} 
	.menu-item.mobile-download {
		display: none;
		}

	.is-fixed .logo-wrap {
		margin-right: auto;
		padding: 5px 15px;
		}
	.is-fixed .logo-wrap img {
		margin-bottom: -46px;
		}
	.is-fixed .header-address,
	.is-fixed .header-button {
		display: none;
		}
}

@media only screen and (min-width: 1290px) {
	.header-address {
		color: #fff;
		font-weight: 400;
		display: block;
		padding: 0 20px 36px 30px;
		margin-right: auto;
		display: none;
		}
}

/* ----- [ Navigation ] ------------------------ */
.main-navigation {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	text-align: right;
	background: var(--tan-1);
}

.main-navigation.is-open {
	display: block;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 9vh;
	height: calc(100vh - 130px);
	background: var(--primary);
	overflow: auto;
}

/* Slightly different padding for small screens when open */
@media only screen and (max-width: 1085px) {
	.main-navigation.is-open {
		padding-top: 16vh;
	}
}

.main-navigation ul {
	text-align: center;
	margin: 0;
}

.menu-item {
	position: relative;
	margin: 10px 0;
}

.menu-item a,
.menu-item span {
	color: #fff;
	font-size: 1.2rem;
	text-decoration: none;
	display: block;
	padding: 0 0 10px;
	border: none;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.menu-item span {
	cursor: default;
}

/* FontAwesome caret for items with children (keeps original toggled look) */
.has-children:after {
	/* fallback + for non-fontawesome */
	content: " +";
	/* fontawesome arrow (if FontAwesome is available) */
	content: "\f107";
	font-family: 'FontAwesome';
	font-weight: bold;
	margin-left: 0.3em;
}

/* mobile dropdown defaults */
.dropnav {
	display: none;
}

.menu-dropdown {
	/* mobile values */
	padding-bottom: 10px;
	font-size: 1.2rem;
	font-weight: 300;
	text-transform: uppercase;
	cursor: pointer;
	color: #fff;
}

.dropdown-menu {
	position: relative;
	z-index: 12000;
	display: none;
	margin-top: 1rem;
	/* background-color and absolute positioning set in desktop overrides */
}

/* Desktop layout and overrides */
@media only screen and (min-width: 1086px) {
	.menu-toggle,
	.menu-item.mobile-phone {
		display: none;
	}

	.main-navigation {
		display: block;
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		width: auto;
		margin: 0;
		margin-left: auto;
		padding: 0 15px;
		background: transparent;
		overflow: visible;
	}

	.main-navigation ul {
		text-align: right;
		display: block;
		margin: 0;
	}

	.menu-item {
		color: #fff;
		position: relative;
		display: inline-block;
		margin: 0 0 0 1.5em;
	}

	.menu-item a,
	.menu-item span {
		color: #fff;
		font-size: 1rem;
		font-weight: 700;
		display: inline-block;
		text-decoration: none;
		padding: 0;
	}

	.menu-item a.on,
	.menu-item span.on {
		color: #fff;
	}

	.menu-item a:hover,
	.menu-item span:hover {
		color: var(--accent-1);
	}

	/* --- Neutralise li-level pseudo underline to avoid double underline --- */
	.menu-item.menu-dropdown::before,
	.menu-dropdown::before,
	.menu-item.menu-dropdown.on::before {
		content: "";
		width: 0 !important;
		background-color: transparent !important;
		transition: none !important;
		height: 0 !important;
	}

	/* Anchor underline (original) */
	.menu-item a::before {
		content: "";
		height: 1px;
		position: absolute;
		top: 90%;
		left: 0;
		background-color: #fff;
		transition: 300ms;
		width: 0;
	}
	.menu-item a.on::before {
		width: 100%;
	}
	.menu-item a:hover::before {
		background-color: var(--accent-1);
		width: 100%;
	}

	/* Parent (unlinked) : use .parent-title for same underline behaviour */
	.menu-item .parent-title {
		position: relative;
		display: inline-block;
		cursor: pointer; /* indicates interactivity on desktop */
		color: inherit;
	}
	.menu-item .parent-title::before {
		content: "";
		height: 1px;
		position: absolute;
		top: 90%;
		left: 0;
		background-color: #fff;
		transition: 300ms;
		width: 0;
	}
	.menu-item .parent-title.on::before {
		width: 100%;
	}
	.menu-item .parent-title:hover::before {
		background-color: var(--accent-1);
		width: 100%;
	}

	.menu-item.li-phone {
		font-size: 16px;
		letter-spacing: 0;
		margin-right: 10px;
	}
	.phone-label {
		display: none;
	}

	/* Dropdown specifics for desktop */
	.menu-dropdown {
		font-size: 1rem;
		font-weight: 700;
		text-transform: uppercase;
		cursor: pointer;
		color: #fff;
	}
	.menu-dropdown:hover {
		color: var(--accent-1);
	}

	.dropdown-menu {
		position: absolute;
		margin-top: 10px;
		padding: 1rem;
		white-space: nowrap;
		display: none;
		background-color: black;
		color: white;
	}
	.dropdown-menu li {
		text-align: left;
		position: relative;
	}
}

/* ----- [ Menu Trigger (Hamburger) ] ---------- */
.menu-trigger {
	position: relative;
	position: absolute;
	height: 50px;
	width: 50px;
	top: 5px;
	right: 5px;
	}

.menu-trigger:hover {
	border: none;
	}
.menu-trigger .menu-text {
	height: 100%;
	text-transform: uppercase;
	color: #fff;
	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: #fff;
	/* 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: #fff;
	background-color: rgba(255, 255, 255, 0);
	}
.menu-trigger.is-clicked .menu-icon::before, 
.menu-trigger.is-clicked .menu-icon::after {
	background-color: #fff;
	}
.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: 1086px) {
	.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) {
	/* 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; }
}

/* ----- [ Header Top Bar ] -------------------------- */
.top-bar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	justify-content: center;
	align-items: center;
	color: #fff;
	border-bottom: 1px solid #ccc;
	text-align: center;
	padding: 8px 30px;
	}
.top-bar p,
.top-bar a {
	color: #fff;
	margin: 0;
	font-weight: 400;
	border: none;
	}
.top-bar span {
	display: none;
	}
.top-bar div {
	white-space: nowrap;
	}
	
.top-icon {
	width: 16px;
	display: inline-block;
	vertical-align: top;
	line-height: 1em;
	margin: 3px 5px 0 0;
	}
	
.tb-address {
	display: none;
	}

@media only screen and (min-width: 520px) {
	.top-bar {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		position: relative;
		justify-content: space-evenly;
		align-items: center;
		color: #fff;
		border-bottom: 1px solid #ccc;
		text-align: center;
		padding: 8px 30px;
		}

	.top-bar div {
		flex: 1;
		}

	.top-bar a:hover {
		text-decoration: underline;
		}
	.tb-phone { text-align: left; }
	.tb-email { text-align: right; }
}

@media only screen and (min-width: 860px) {
	.tb-phone span {
		display: inline;
		}
}

@media only screen and (min-width: 1080px) {
	.tb-address {
		display: block;
		}
}


/* ----- [ Sections ] -------------------------- */
.top {
	padding: 0;
	border-top: 184px solid #000;
	border-top: 128px solid #000;
	}

@media only screen and (min-width: 1086px) {
	.top {
		border-top: 184px solid #000;
		}
}
/* ----- [ Home / Intro ] ---------------------- */
.home-feature {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	position: relative;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 15px;
	background-position: 50% 50%;
	background-repeat: none;
	background-size: cover;
	background-color: var(--primary);
	border-bottom: 8px solid #fff;
	}
	
.hf-images {
	min-height: 280px;
	height: 650px;
	/*height: auto;*/
	}
	
.feature-wrapper:hover .hf-images {
	filter: grayscale();
	}

.feature-wrapper:hover .hf-images:hover {
	filter: grayscale(0);
	}
	
.home-feature-tint {
	padding: 30px 35px;
	padding: 15px;
	background: rgba(0,0,0,0.3);
	}

.home-feature h2,
.home-feature h3,
.home-feature p {
	color: #fff;
	margin: 0 auto 0.5em;
	}
	
.home-feature a {
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	}
.home-feature a:hover {
	color: #fff;
	border-color: rgba(255,255,255,1);
	}
	
.hf-images p {
	font-size: 1.3rem;
	}
	
.hf-no-images p {
	font-size: 1.8rem;
	margin-bottom: 0;
	}
	
.home-feature h3 {
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	}

.section-about {
	text-align: center;
	padding: 0;
	margin: 60px 0 0;
	background-color: #f3f2ee;
	}

.main-image img {
	width: 100%;
	min-height: 100%;
	object-fit: cover;
	}
	
.product-section {
	text-align: center;
	}
	
.bg-grey {
	background: var(--grey);
	}
	
.intro-text p {
	font-size: 1.5rem;
	line-height: 1.4;
	font-weight: 300;
	}

.home-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 5%;
	height: 100%;
	font-size: 1.4rem;
	}

@media only screen and (min-width: 380px) {
	.home-feature h3 {
		font-size: 2.2rem;
		}
}

@media only screen and (min-width: 600px) and (max-width: 1199px) {
	.feature-wrapper .col:first-of-type {
		width: 100%;
		}
}

@media only screen and (min-width: 1200px) { /* 1020 */
	.home-feature {
		padding: 50px;
		border-bottom: none;
		}
	.hf-images {
		height: 650px;
		}
}

/* ----- [ Hero Images ] -----------------*/
.hero {
	max-height: 95vh;
	height: 650px;
	/*border-top: 80px solid #fff;*/ /* header height */
	overflow: hidden;
	background-size: cover;
	}
	
.no-hero {
	margin-top: 225px;
	}

.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-text-wrapper {
	max-width: 1100px;
	}
.hero-text {
	text-align: center;
	color: #fff;
	padding: 10px 15px;
	margin-top: 200px;
	}
.hero-text p {
	font-size: 1.5rem;
	line-height: 1.4;
	max-width: 30em;
	margin: 0 auto;
	}

/* Optional Pandemic Notice */
.section-notice {
	padding: 40px 0 30px;
	color: #fff;
	background: var(--tan-1);
	}
.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: 400px) {
	.hero-title, 
	.home .hero-text h2	{
		font-size: 2.2em;
		}
}

@media screen and (min-width: 600px) {
	.hero {
		height: 700px;
		height: 884px; /* because border/margin/is-fixed */
		}
}

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

/* utility */
/* ----- [ Media Cards ] --------------- */
.media-card {
	width: 100%;
	margin: 0;
	display: block;
	overflow: hidden;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
	position: relative;
	}

.media {
	position: relative;
	overflow: hidden;
	-webkit-backface-visibility:hidden;
	}

.media img {
	width: 100%;
	transition: all 0.3s ease-in-out;
	}
	
.pricing-section .col {
	margin-bottom: 30px;
	}

.plan-card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: space-between;
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	text-align: center;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	background: var(--grey);
	}
	
.plan-tagline {
	color: #fff;
	text-transform: none;
	padding: 8px 15px;
	margin: 0;
	background: var(--blue-1);
	}

.plan-1 .plan-tagline { background: var(--blue-3); }
.plan-2 .plan-tagline { background: var(--blue-2); }
.plan-3 .plan-tagline { background: var(--blue-4); }
	
.plan-title-block {
	color: #fff;
	text-transform: none;
	padding: 5px 20px;
	background: var(--blue-1);
	}
.plan-title-block p	{
	font-size: 0.9rem;
	text-transform: uppercase;
	max-width: 26em;
	margin: 0 auto 1em;
	}
	
.plan-title {
	font-size: 1.8rem;
	margin: 0.4em 0 0;
	}

.plan-body {
	font-size: 1rem;
	padding: 20px;
	margin-bottom: auto;
	}

.plan-price {
	margin: 0 0 1em;
	}
.plan-price span {
	font-family: baskerville-display-pt,serif;
	font-weight: 700;
	font-size: 3rem;
	font-style: italic;
	}
.plan-1 .plan-price span { color: var(--blue-3); }
.plan-2 .plan-price span { color: var(--blue-2); }
.plan-3 .plan-price span { color: var(--blue-4); }

.pricing-intro {
	text-align: center;
	margin: 0 auto 50px;
	}

.plan-card.attended-funeral {
	border-top: 30px solid #203551;
	}
.plan-card.direct-cremation {
	border-top: 30px solid #3B5988;
	}

.plan-price p {
	margin: 0;
	text-transform: uppercase;
	}

.plan-card .button {
	position: relative;
	margin: 0;
	font-weight: 300;
	font-size: 0.8rem;
	line-height: 1.4;
	text-align: left;
	padding: 10px 50px 10px 15px;
	width: 100%;
	}
	
@media only screen and (min-width: 600px) {
	.plan-body {
		padding: 40px;
		}
	.plan-card .button {
		width: 330px;
		}
	.plan-card .button:after {
		content: "⟶";
		position: absolute;
		right: 10px;
		top: 50%;
		font-size: 1.8rem;
		margin-top: -22px;
		}
}

/* -----  [ Pricing Tables ] ------------  */
.page-intro {
	text-align: center;
	margin: 0 auto 4em;
	max-width: 40em;
	}

.body-2 {
	overflow: auto;
	}
table {}
td,th {
	padding: 15px;
	text-align: center;
	line-height: 1.3;
	}
th {
	font-family: baskerville-display-pt,serif;
	font-size: 1rem;
	font-weight: 700;
	color: #ffffff;
	background: #222222;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	white-space: nowrap;
	}
td:first-child,
th:first-child {
	text-align: left;
	}
td:first-child {
	font-family: baskerville-display-pt,serif;
	font-weight: 700;
	}
td img {
	margin: 0 auto;
	}
	
td .button,
th .button {
	color: #222;
	background: #fff;
	border-radius: 40px;
	margin: 0;
	}

tr + tr > th:not(:first-child) {
	font-size: 1.2rem;
	}
	
td:first-child,
th:first-child {
	position: sticky;
	left: 0;
	background: #fff;
	min-width: 180px;
	box-shadow: 0 1px 2px #ccc;
	}
th:first-child {
	background: #222222;
	}


/* -----  [ Team Members ] ------------  */
.team-card {
	background: var(--blue-1);
	}

.team-title {
	color: #fff;
	padding: 10px 15px;
	}
.team-title h3,
.team-title p {
	color: #fff;
	margin: 0;
	font-weight: 300;
	}
	
.team-bio h3 {
	margin: 0 0 0.5em;
	}
.team-intro {
	text-align: center;
	margin: 0 auto 40px;
	}

.team-member {
	text-align: left;
	margin: 0 0 30px;
	}

.team-bio {
	text-align: left;
	padding: 20px;
	height: 100%;
	background: #f3f2ee;
	}

@media only screen and (min-width: 600px) {
	.team-member:nth-of-type(odd) {
		flex-direction: row-reverse;
		}
}
@media only screen and (min-width: 880px) {
	.team-bio {
		padding: 30px 40px;
		}
}

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

/* ----- [ 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 Page ]----------------------- */
.form-wrapper {
	max-width: 700px;
	margin: 20px auto;
	}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
textarea {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	}
input[type=submit],
input.button {
    -webkit-appearance: none;
	}

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

input:focus, 
textarea:focus {
	outline: 0;
	box-shadow: 0 0 0 1px var(--accent-1);
	border-color: var(--accent-1);
	}

/* ----- [ SCF Contact Page ] --------------- */
.InputfieldForm {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px;
	}
.form__item {
	margin-bottom: 5px;
	flex: 1 0 100%;
	padding: 0 5px;
	position: relative;
	}

@media screen and (min-width: 960px) { 
	.form__item {
		flex: 1 0 50%;
		}
	
	.form__item--c_message,
	.form__item--c_terms_consent,
	.form__item--submit {
		flex: 1 0 100%;
		}
}
	
.form__item input,
.form__item textarea {
	border: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #ffffff;
	padding: 12px;
	border-radius: 0;
	border: 1px solid #ccc;
	}

.form__item--label:not(.form__item--c_terms_consent label) {
	display: inline-block;
	font-size: 0.9em;
	margin: 0 0 4px;
	position: absolute;
	top: 12px;
	left: 15px;
	font-size: 1em;
	color: #999;
	}
.form__item--label.display-label:not(.form__item--c_terms_consent label) {
	font-size: 0.85em;
	color: #333;
	top: -11px;
	left: 13px;
	padding: 0 6px;
	background: #fff;
	}
	
.form__item--c_terms_consent label {
	font-size: 0.9em;
	}

.field__header--hidden,
.form__item--scf-website {
	display: none !important;
	}

.form__item--c_contact_consent,
.form__item--c_terms_consent {
	line-height: 1.1em;
	margin-bottom: 0.5em;
	}
	
.form__item--submit {
	text-align: left;
	}

/* checkbox */
input[type=checkbox].FieldtypeCheckbox {
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 1px solid #ccc;
    position: relative;
	outline: none;
    background: #f2f2f2;
    background: #fff;
    vertical-align: middle;
    margin: -2px 10px 0 0;
    -webkit-transition: 0.15s;
    cursor: pointer;
	}

input[type=checkbox].FieldtypeCheckbox:hover {
    border:1px solid #ccc;
	}

input[type=checkbox].FieldtypeCheckbox:before, 
input[type=checkbox].FieldtypeCheckbox:checked:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 8px;
    width: 5px;
    height: 12px;
    border-right: 3px solid #000;
    border-bottom: 3px solid #000;
    transform: rotate(45deg);
    opacity: 0;
	}
input[type=checkbox].FieldtypeCheckbox:checked:before {
    opacity: 1;
	}
	
/* errors */
.field--error--message {
	float: right;
	color: #f36617;
	font-weight: 300;
	font-size: 0.8em;
	margin: 0;
	display: none;
	}
	
.field--error > label:after {
	content: " *";
	color: var(--accent-1);
	font-size: 1em;
	}

.form__item--c_terms_consent .field--error--message {
	float: none;
	}
	
.form--error--message,
.form--success--message {
	text-align: center !important;
	font-weight: 300;
	color: var(--accent-1);
	background: #fff;
	border: 1px solid var(--accent-1);
	padding: 5px;
	margin: 5px auto 20px;
	width: calc(100% - 10px);
	}

.form--success--message {
	font-size: 1.1em;
	color: #222;
	background: var(--tan-2);
	border: none;
	padding: 20px;
	text-align: left !important;
	
	}

/* ----- [ Buttons ] --------------------------- */
button,
.button {
	display: inline-block;
	color: #fff;
	font-size: 0.95rem;
	letter-spacing: 1px;
	text-align: center;
	font-weight: 700;
	padding: 10px 15px;
	padding: 15px 20px;
	margin: 0 0 10px;
	background: var(--accent-1);
	background: #d6b161;
	background: var(--blue-1);
	width: 100%;
	opacity: 1;
	border: none;
	cursor: pointer;
	border-radius: 6px;
	text-transform: uppercase;
	text-decoration: none;
	}
button:hover,
.button:hover {
	color: #fff;
	background: var(--accent-2);
	border: none;
	text-decoration: none;
	}
	
.header-button {
	margin: 0 0 20px auto;
	margin-right: -20px;
	/*border: 1px solid #3e6f9e;*/
	}

.header-button .fa-file-pdf-o,
.header-button:hover .fa-download {
	display: inline-block;
	}
.header-button .fa-download,
.header-button:hover .fa-file-pdf-o {
	display: none;
	}

@media screen and (min-width: 600px) { 
	button,
	.button {
		width: auto;
		}
}

.call-to-action {
	color: #fff;
	text-align: center;
	background: var(--dark-1);
	padding: 40px 0;
	display: none;
	}
.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;
	}
	
/* ----- [ Client Logos ] -----------------*/
.logos-section {
	padding: 80px 0;
	overflow: hidden;
	}
.logo-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 0;
	}

.client-logo {
	flex: auto;
	padding: 0 10px;
	margin: 5px 0;
	margin: 10px 0;
	}
.client-logo a {
	display: block;
	}
.client-logo a:hover {
	text-decoration: none;
	border-bottom: none;
}
.client-logo img {
	display: block;
	max-height: 80px;
	margin: 0 auto;
	}

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

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

/* ----- [ Footer ] ---------------------------- */
.page-footer {
	background: var(--primary);
	padding: 0;
	}
	
.page-footer .inner {
	padding: 50px 20px 10px;
	}
	
.page-footer .col {
	flex: 1;
	margin-bottom: 20px;
	}
	
.page-footer .row {
	text-align: center;
	}

.page-footer p,
.page-footer li {
	color: #fff;
	font-size: 1em;
	line-height: 1.6em;
	font-weight: 300;
	margin: 0 0 0.5em;
	}

.page-footer a {
	color: var(--black);
	color: #fff;
	}
.page-footer a:not(.pricelist-btn):hover {
	color: var(--accent-1);
	}

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

p.copyright-credits {
	color: #fff;
	margin: 20px 0;
	font-size: 0.8rem;
	text-align: center;
	}
	
.footer-company-name {
	font-family: baskerville-display-pt,serif;
	text-transform: uppercase;
	}
	
@media only screen and (min-width: 850px) {
	.page-footer .row {
		text-align: left;
		}
	.page-footer .col:first-child {
		order: 2;
		text-align: center;
		}
	.page-footer .col:nth-child(3) {
		order: 3;
		text-align: right;
		}
}
	
/* ----- [ SVG Social Media Icons ] --------------- */
.social-icons {
	text-align: center;
	margin: 10px 0;
	}

.social-icons .social-icon {
    color: #fff;
    display: inline-block;
    margin: 0 10px 0 0;
	}

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

.social-icons .social-icon a:hover,
.social-icons .social-icon a:active {
    color: #77d8d8;
    color: var(--accent-1);
    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;
	}

/* ----- [ Rich plugins ] ------------------------*/
.rplg-badge2 .rplg-badge2-border,
.rplg-badge2-border {
    width: 100%!important;
    height: 10px!important;
    background: #4fce6a!important;
    border-radius: 10px 10px 0 0!important;
	}
.rplg-badge2 .rplg-badge2-btn.rplg-badge2-clickable {
	border-radius: 0 0 10px 10px!important;
	}
	
/* see include */

/* ----- [ CMS Content ] ------------------------*/
.cms-text p > img {
	max-width: 100%;
	display: block;
	}
	
.cms-text p,
.cms-text a {
	overflow-wrap: break-word;
	word-wrap: break-word;
	-ms-word-break: break-all;
	word-break: break-word;
	/* Adds a hyphen where the word breaks, if supported (No Blink) */
	-ms-hyphens: auto;
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
	}

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

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

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

.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;
	margin: 0 0.5em;
	vertical-align: middle;
	clear: both;
	}
.align_right {
	float: right;
	margin: 0 0 1em 1em;
	}
.align_center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
	}

hr {
	height: 1px;
	width: 200px;
	border: none;
	background: #333;
	margin: 50px 0;
	}

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

.spin{
	width: 30px;
	height: 30px;
	margin: -8px 0 -8px;
	vertical-align: middle;
	-webkit-animation:fa-spin 2s infinite linear;
	animation:fa-spin 2s infinite linear;
	}


/* ----- [ Slick Sliders ] -----------------*/
/* ----- [ Slick Slider overrides (Hero and Text Sliders) ] --------------- */
.slider-wrapper {
	padding: 20px 10px 20px;
	height: 100%;
	}

/* center slider text for non-hero sliders */
.section-carousel .slick-track {
	display: flex;
	align-items: center;
	}

.slick-slider,
.slider {
	overflow: visible;
	}
.slider .slick-slide {
	padding: 0 10px;
	}
.slider .slick-prev,
.slider .slick-next {
	position: absolute;
	display: none !important;
	top: 50%;
	width: 30px;
	height: 50px;
	margin-top: -10px;
	padding: 0;
	left: -10px;
	color: transparent;
	font-size: 0;
	line-height: 0;
	transform: translate(0, -50%);
	cursor: pointer;
	border: none;
	outline: none;
	z-index: 5;
	opacity: 0.5;
	}
.slider .slick-prev {
	background: transparent url('../images/slick-arrows.svg') top left no-repeat;
	}
.slider .slick-next {
	right: -10px;
	left: auto;
	background: transparent url('../images/slick-arrows.svg') bottom left no-repeat;
	}
.slider .slick-prev:hover,
.slider .slick-next:hover {
	opacity: 1;
	}
/*
.slide-wrapper {
	overflow: hidden;
	position: relative;
	margin: 0 1px;
	}
*/
.slick-dots {
	text-align: center;
	width: 100%;
	bottom: -10px;
	}
.slick-dots li {
	display: inline-block;
	margin: 0 5px;
	}
.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 10px;
	height: 10px;
	padding: 5px;
	cursor: pointer;
	color: transparent;
	border: 0;
	border-radius: 50%;
	outline: none;
	background: #999;
	}
.slick-dots li.slick-active button,
.slick-dots li button:hover {
	background: #000;
	}

.hero-slider .slick-dots {
	bottom: 20px;
	}

/* crux */
.testimonials {
	display: flex;
	flex-direction: column;
	height: 100%;
	}
.slick-initialized .slick-slide {
	display: flex;
	}
.testimonial {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	font-size: 1.3rem;
	}

.testimonial p:first-child {
	font-style: italic;
	}
.testimonial p:first-child:before {
	content: "“";
	font-size: 1.6rem;
	display: inline-block;
	margin-right: 2px;
	}
.testimonial p:first-child:after {
	content: "”";
	font-size: inherit;
	}

@media only screen and (min-width: 580px) {
	.slider-wrapper {
		padding: 30px;
		}

	.slider .slick-slide {
		padding: 0 30px;
		}
	.slider .slick-prev,
	.slider .slick-next {
		display: block !important;
		}
}

@media only screen and (max-width: 600px) { /* note max */
	.testimonials-row {
		display: block;
		}
}

/*============ 17/10/22 EDITS ============*/
.btn-hidden {
    display: none;
}
.pricelist-btn {
    padding: 0.5rem 0;
}
/* .pricelist-btn:hover {
    outline: 5px solid var(--accent-2);
} */

.header-price-btn {
    /* border: 1px solid white; */
    outline: 1px solid white;
    margin-right: 0px;
}

.btn-bar {
    display: flex;
    
    position: absolute;
    z-index: 11000;
    top: 129px;
    left: 0;
    right: 0;
    background-color: #051728;

    justify-content: center;
    align-items: center;
}
.btn-bar  > a {
    margin: 0 0 1rem 0;
    max-width: 90%;
    /*21/10/22 Edits*/
    background-color: #fff;
    color: #051728;
}
.btn-bar  > a strong {
    font-size: 1.2rem;
}

@media only screen and (max-width: 1085px) {
    .btn-bar {
        display: flex;
    }
}

