/**
	@Author:	Paul Strandoo
	@Date:		1 June 2020
	@Notes:		Turner Creative
		
	FONTS & COLORS
	-------------
	navy: #272441; rgba(40,35,67,1);
	cherry red: #ba0137;
	
	Font-family: 'Work', sans-serif;
	available weight: 300, 400, 400i, 700;
	inner max-width: 1070px;
*/
@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;
	line-height: 1.3;
	background: #ffffff;
	}

body, input, textarea, table {
	font-family: 'Work Sans', sans-serif;
	font-weight: 400;
	color: #222;
	color: rgb(34,34,34);
	}
	
/* ----- [ Typography ] -------------------------*/
p,
li,
td {
	font-family: 'Work Sans', sans-serif;
	font-weight: 400;
	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: #222;
	border-bottom: 1px solid #ba0137;
	}
a:hover {
	color: #ba0137;
	}

h1,h2,h3,h4 {
	font-weight: 400;
	margin: 0 0 0.5em;
	color: #222;
	}
h1, .h1 {
	font-weight: 300;
	font-size: 2.2em;
	line-height: 1.2em;
	margin: 0 auto 0.5em;
	}
h2 {
	color: #222;
	font-weight: 300;
	font-size: 1.7em;
	line-height: 1.3em;
	margin: 0 0 0.6em;
	text-transform: none;
	}
h3 {
	font-weight: 300;
	font-size: 1.8em;
	line-height: 1.3em;
	margin: 0 0 0.6em;
	}
h4 {
	font-size: 0.9em;
	line-height: 1.4em;
	font-weight: 300;
	color: #222;
	margin: 0 0 0.5em;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	}

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

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

/* Dark and Light */

/* 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;
	/*overflow: hidden;*/
	}

.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: 50px 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 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;
	/*padding-top: 5px;*/
	}
.row.padding-5 {
	margin: 0 -5px;
	/*padding-top: 5px;*/
	}
.row.padding-10 {
	margin: 0 -10px;
	/*padding-top: 10px;*/
	}
.row.padding-20 {
	margin: 0 -20px;
	}
.row.padding-30 {
	margin: 0 -30px;
	}

.no-padding > .col,
.padding-0 > .col {
	padding: 0;
	}
.padding-1 > .col {
	padding-left: 1px;
	padding-right: 1px;
	}
.padding-2 > .col {
	padding-left: 2px;
	padding-right: 2px;
	}
.padding-5 > .col {
	padding-left: 5px;
	padding-right: 5px;
	}
.padding-10 > .col {
	padding-left: 10px;
	padding-right: 10px;
	}
.padding-20 > .col {
	padding-left: 20px;
	padding-right: 20px;
	}
.padding-30 > .col {
	padding-left: 30px;
	padding-right: 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 .col-auto {
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-ms-flex: 1;
		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);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* Force Hardware Acceleration */
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	}

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

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

.logo-wrap {
	width: auto;
	width: 85%;
	max-width: 340px;
	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 {
	/*max-width: 140px;*/
	width: 100%;
	height: auto;
	display: inline-block;
	vertical-align: middle;
	}
	
.menu-trigger,
.logo-wrap a,
.logo-wrap a:hover {
	border-bottom: none;
	}

/*
.small,
.page-header.small {
	position: fixed;
	}

.small .inner {
	margin-top: 0;
	}
.small .logo-wrap {
	max-width: 260px;
	margin: 0 auto 0 0;
	padding: 8px 0;
	}
*/
@media only screen and (min-width: 1100px) {
	.page-header {
		/*position: absolute;*/
		}
	.page-header .inner {
		max-width: 1800px;
		padding: 15px 30px;
		justify-content: space-between;
		overflow-x: visible;
		}
		
	.page-header.small .inner {
		margin-top: 0;
		}

	.logo-wrap {
		display: block;
		width: auto;
		margin: 0 auto 0 0;
		padding: 0 0 5px;
		}

	.logo-wrap a,
	.logo-wrap a:hover {
		border: none;
		}
}

@media only screen and (min-width: 1220px) { 
	.page-header .inner {
		margin: 0 auto 0;
		overflow-x: visible;
		}
}

/* ----- [ Flex Container (Header) ] ----------- */
.flex-container {
	display: block;
	height: 100%;
	}
.flex-container > * {
	display: block;
	}
	
/* @media only screen and (min-width: 1100px) { /* 800  1110 */
@media only screen and (min-width: 600px) { /* 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; }
	.f-between { justify-content: space-between; }
}

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

.main-navigation ul {
	text-align: center;
	margin: 0;
	}
.menu-item {
	position: relative;
	font-size: 24px;
	font-size: 1em;
	text-transform: uppercase;
	margin: 10px 0;
	letter-spacing: 0.1em;
	}
.menu-item a {
	text-decoration: none;
	display: block;
	padding: 0 0 10px;
	border: none;
	}
.menu-item a:hover,
.menu-item a.on {
	}

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

.has-children:after {
	content: " +";
	}
	
.dropnav {
	display: none;
	}

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

	.menu-item a {
		text-decoration: none;
		border-bottom: 3px solid transparent;
		font-weight: 400;
		padding: 0;
		}
	.menu-item a:hover,
	.menu-item a.on {
		border-bottom: 3px solid #ba0137;
		}
		
	.menu-item.li-phone {
		font-size: 16px;
		letter-spacing: 0;
		margin-right: 10px;
		}
	.phone-label {
		display: none;
		}
		
	/* Drop Menus */
	.dropnav {
		display: block;
		position: absolute;
		width: 100%;
		width: auto;
		top: 120%;
		/*left: -50%;*/
		text-align: left;
		z-index: 9999;
		visibility: hidden;
		opacity: 0;
		padding: 0;
		white-space: nowrap;
		box-shadow: 0 5px 10px rgba(0,0,0,0.1);
		-webkit-transform: translateX(0px);
		-moz-transform: translateX(0px);
		-ms-transform: translateX(0px);
		-o-transform: translateX(0px);
		transform: translateX(0px);
		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		-o-transition: all .3s ease;
		transition: all .3s ease;
		}
	
	.menu-item:hover .dropnav {
		top: 70%;
		visibility: visible;
		opacity: 1;
		}
	
	.dropnav > ul {
		padding: 0;
		margin-top: 30px;
		background: #fff;
		width: auto;
		float: none;
		overflow: hidden;
		}

	.nav-level-2 {
		display: block;
		text-transform: none;
		font-weight: 600;
		letter-spacing: 0;
		}
	.nav-level-2 a,
	.menu-item .dropnav a {
		font-size: 0.9em;
		color: #222;
		padding: 5px 10px;
		text-transform: none;
		border: none;
		}
	.nav-level-2 a:hover,
	.menu-item .dropnav a:hover {
		border: none;
		color: #fff;
		background: #d6b161;
		}
	.level-2 ul {
		display: inherit;
	}
}

/* ----- [ Menu Trigger (Hamburger) ] ---------- */
.menu-trigger {
	position: relative;
	height: 50px;
	width: 50px;
	margin: 6px -10px -6px 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: 1100px) {
	.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);
		}
}


/* Dark: notice section */
.dark,
.dark p,
.dark li,
.dark h2,
.dark h3 {
	color: #fff !important;
	}
.dark p,
.dark li {
	font-weight: 400;
	}
.dark a {
	color: #fff;
	border-bottom: 1px solid #fff;
	}
.dark a:hover {
	color: #fff;
	}
.dark {
	background: #272441 !important;
	color: #fff;
	}
.dark h4 {
	color: #fff;
	}


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

/* ----- [ Hero Images ] -----------------*/
.hero {
	height: 440px;
	margin: 0;
	/*border-top: 90px solid #fff;*/
	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: 100%;
	height: 100%;
	padding: 0;
	position: relative;
	}
	
/* ----- [ Home ] ---------------------- */
.home-hero {
	border-top: 0;
	height: 85vh;
	}	

.hero-text-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	/*justify-content: center; */
	/*align-items: center;*/
	max-width: 1100px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 180px 10px 100px;
	}
.hero-text {
	/*text-align: left;*/
	margin: 0;
	/*margin-top: 100px;*/
	margin-left: 0.5em;
	margin-right: 0.5em;
	}
.hero-text p {
	color: #fff;
	}
.hero-text h2,
.hero-text h3 {
	color: #fff;
	font-size: 2em;
	font-weight: 700;
	margin: 0 0 0.3em;
	line-height: 1em;
	line-height: 1.3em;
	background-color: rgba(0,0,0,0.3);
	display: inline;
	padding: 0.1rem 0.6rem;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	}
.hero-text h2,
.hero-text h3 {
	text-align: inherit;
	}

	
.section-notice {
	padding: 40px 0 30px;
	}

.about-text p {
	line-height: 1.8em;
	}

.home-block-1 .empty,
.home-block-2 .empty {
	display: none;
	}

.home-block-2 {
	margin-top: 0;
	margin-bottom: 20px;
	}
	
.home-intro-section {
	padding: 0 0 20px;
	}

@media screen and (min-width: 480px) {
	.hero-text h2,
	.hero-text h3 {
		font-size: 2.6em;
		}
}

@media screen and (min-width: 600px) {
	.home-hero {
		padding-top: 0;
		height: 100vh;
		}
	.hero-text {
		}
	.hero-title {
		}
	.hero-text h2,
	.hero-text h3 {
		font-size: 3em;
		}

	.home-block-1 .empty {
		display: block;
		}
	.home-block-2 {
		margin-top: -30%;
		margin-bottom: 50px;
		}
}
@media screen and (min-width: 1100px) {
	.hero-text-wrapper {
		padding: 150px 30px 100px;
		}
}
@media screen and (min-width: 1400px) {
	.hero-text h2,
	.hero-text h3 {
		font-size: 3.6em;
		}
}


/* ----- [ Home Services / Media Cards ] --------------- */
.home-services-section { }

.media-card {
	width: 100%;
	margin: 0 0 20px;
	display: block;
	overflow: hidden;
	}

.media {
	position: relative;
	overflow: hidden;
	display: block;
	text-decoration: none;
	border: none;
	margin-bottom: 10px;
	}
.media:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0);
	-webkit-transition: .4s all ease;
	-o-transition: .4s all ease;
	transition: .4s all ease;
	}
.media-card:hover .media:after {
	background: rgba(0,0,0,0.2);
	}

.media img {
	width: 100%;
	-webkit-transition: .4s all ease;
	-o-transition: .4s all ease;
	transition: .4s all ease;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	}
.media-card:hover .media img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
	}

.card-title {
	margin: 0 0 0.2em;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 0.85em;
	letter-spacing:  0.03em;
	}

.media-card h4 a {
	text-decoration: none;
	border-bottom: 1px solid transparent;
	}
.media-card:hover h4 a {
	color: #ba0137;
	border-bottom: 1px solid #ba0137;
	}

.call-to-action {
	margin: 20px 0; 
	padding: 20px 10px 10px 10px; 
	border: 5px solid rgba(77,78,21,0.05);
	}


/* ----- [ Pages: About Us and Services ] -----------------*/
.intro-section {
	padding-bottom: 30px;
	}

.services-section,
.gallery-section {
	padding: 0 0 80px;
	}


/* ----- [ Services ] -----------------*/	
.service-row {
	display: block;
	padding: 20px;
	}

.service-row:nth-of-type(even) {
	/*flex-direction: row-reverse;*/
	}
.service-row:nth-of-type(even) .service-col {
	text-align: right;
	}
	
.service-image,
.service-text {
	width: 100%;
	}

.service-image {
	display: block;
	width: 100%;
	height: 300px;
	margin: 0 0 20px;
	}
/*
.service-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center; 
	align-items: center;
	padding: 20px 30px;
	}

.service-summary {
	padding: 50px 5vw;
	}
.service-button {
	display: inline-block;
	}

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

@media screen and (min-width: 768px) {
	.service-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: nowrap;
		padding: 0;
		}
	.service-row:nth-of-type(odd) {
		/*background: rgba(77,78,21,0.05);*/
		}
	.service-image {
		width: 50%;
		min-height: 450px;
		margin: 0;
		}
	.service-text {
		width: 50%;
		max-width: 540px;
		margin: auto;
		}
	.service-row:nth-of-type(even) .service-text  {
		margin: auto;
		margin-right: 0;
		padding: 30px 50px 30px 30px;
		}
	.service-row:nth-of-type(odd) .service-text  {
		margin: auto;
		margin-left: 0;
		padding: 30px 30px 30px 50px;
		}

	.tint-bg {
		background: rgba(77,78,21,0.05);
		}
}
@media screen and (min-width: 1024px) {
	.service-image {
		width: 53%;
		min-height: 570px;
		}
	.service-text {
		width: 47%;
		}
}
	
/* important to overwrite cms-text styles */
	

/* ----- [ Slick Gallery ] -----------------*/
.filter-button-group {
	text-align: center;
	margin: 0 auto 30px;
	}
.filter-button-group li {
	display: inline-block;
	margin: 0 0.5em;
	}


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


/* ----- [ Gallery Page & Sections / Grid ] -----------------*/
/* ----- [ Tabs ] -----------------*/
.tabs-navigation a {
	}
.tabs-navigation a.selected,
.tabs-navigation a:hover  {
	}
.tabs-content {
	background: #fff;
	text-align: left;
	margin: 0;
	display: none;
	}

.tabs-content > div {
	text-align: left;
	padding: 0;
	display: none;
	}

.tabs-content > div.selected {
	display: block;
	-webkit-animation: cd-fade-in 0.5s;
	-moz-animation: cd-fade-in 0.5s;
	animation: cd-fade-in 0.5s;
	}


@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.big-image {
	height: calc(100vh - 90px); 
	width:100%; 
	background: #eee; 
	overflow: hidden; 
	position: sticky; 
	position: -webkit-sticky; 
	top: 90px;
	}

.big-image img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	max-width: 100%;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	}
	

.filter-button-group li {
	display: inline-block;
	margin: 0 1em 0 0 !important;
	font-size: 1em;
	}

.grid {
	margin: 0;
	}

.grid-sizer,
.grid-item { 
	/*width: calc(33.333% - 20px);*/
	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 {
	padding: 0 20px 20px;
	}

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

@media only screen and (min-width: 640px) { /*600, 760 */
	.grid {
		margin: -8px 10px 10px;
		}
	.grid-sizer,
	.grid-item {
		width: 50%;
		padding: 10px;
		}
}

@media only screen and (min-width: 1024px) {
	.tabs-content {
		display: block;
		}

	.grid-sizer,
	.grid-item {
		width: 33.333%;
		padding: 8px;
		}
		
	.grid-sizer.alt,
	.grid-item.alt {
		width: 50%;
		padding: 8px;
		}
}


.card-columns .card {
    margin-bottom: 1.25rem
}
.card {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
}

.card a {
	border: none;
	}

.card-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem
}

@media(min-width:576px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem
    }

    .card-columns .card {
        display: inline-block;
        display: block;
        width: 100%
    }
}

.gallery-link {
	position: relative;
	display: block;
	text-decoration: none;
	border: none;
	}
.gallery-link:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(0,0,0,0.2);
	opacity: 0;
    -webkit-transition: .2s opacity ease-out;
    -o-transition: .2s opacity ease-out;
    transition: .2s opacity ease-out;
	}
.slick-slide .gallery-link:after {
	right: 15px;
	}

.gallery-link:hover:after {
	opacity: 1;
	}
	
.gallery-icon {
    font-size: 20px;
    position: absolute;
    /*top: 50%;
    left: 50%;*/
    top: 25px;
    right: 0;
    
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    color: #fff;
    z-index: 999;
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .2s all ease-out;
    -o-transition: .2s all ease-out;
    transition: .2s all ease-out;
}

.pb_hover-zoom:hover {
    outline: none
}

.gallery-link:hover .gallery-icon {
    margin-top: 0;
    opacity: 1;
    visibility: visible
}

/* magnific */
.mfp-container button,
.mfp-container button:hover {
	background: none;
	}
img.mfp-img {
	padding: 0;
	border: 15px solid #fff;
	}
.mfp-bottom-bar  {
	margin-top: 5px;
	}
.mfp-image-holder .mfp-close {
	margin: -35px -20px 0 0;
	}
.mfp-image-holder .mfp-content {
	max-width: 80%;
	}

/*----------------------- Preloader -----------------------*/
/*
.preloader-site {
    overflow: hidden;
}
.preloader-wrapper {
    height: 100%;
    width: 100%;
    background: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
}
*/
/* is this used? */
.loader {
    position: sticky;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    margin: -44px 0 0 -22px;
    padding: 3px;
    border-width: 2px;
    border-style: solid;
    border-color: #10c9c3 transparent transparent;
    border-radius: 50%;
    box-sizing: border-box;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: ringrotate .8s infinite cubic-bezier(.5, .49, .49, .49);
    animation: ringrotate .8s infinite cubic-bezier(.5, .49, .49, .49);
    z-index: 0;
    display: block;
}
@keyframes ringrotate {
    0% {
        -webkit-transform: rotateZ(0);
        -moz-transform: rotateZ(0);
        -o-transform: rotateZ(0);
        transform: rotateZ(0)
    }
    100% {
        -webkit-transform: rotateZ(360deg);
        -moz-transform: rotateZ(360deg);
        -o-transform: rotateZ(360deg);
        transform: rotateZ(360deg)
    }
}
@-webkit-keyframes ringrotate {
    0% {
        -webkit-transform: rotateZ(0);
        -moz-transform: rotateZ(0);
        -o-transform: rotateZ(0);
        transform: rotateZ(0)
    }
    100% {
        -webkit-transform: rotateZ(360deg);
        -moz-transform: rotateZ(360deg);
        -o-transform: rotateZ(360deg);
        transform: rotateZ(360deg)
    }
}


/* ----- [ Gallery Page & Sections / Isotope ] -----------------*/
/*
.main-gallery {
	padding-top: 30px;
	}
	
.gallery-link {
	display: block;
	opacity: 1;
	transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    }
.gallery-link:hover {
	opacity: 0.5;
	border-bottom: none;
	}

.filter-button-group {
	text-align: center;
	margin: 0 0 1.5em;
	}
.filter-button-group li {
	display: inline-block;
	margin: 0 1em;
	font-size: 1.1em;
	}
.is-checked {
	color: #000;
	text-decoration: underline;
	}

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

.gutter-sizer {
	width: 2%;
	}

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


/* ----- [ Testimonials ] -----------------*/
.testimonial-hero {
	height: 500px;
	}
.testimonial-hero p {
	color: #fff;
	font-style: italic;
	font-size: 0.9em;
	position: absolute;
	bottom: 0;
	right: 20px;
	text-shadow: 0 2px 5px rgba(0,0,0,0.5);
	}
.testimonial-text {
	padding-top: 60px;
	padding-bottom: 60px;
	text-align: center;
	position: relative;
	overflow: visible;
	}
.testimonial-text p {
	position: relative;
	}
.testimonial-logo {
	max-height: 80px;
	max-width: 220px;
	margin: 24px auto 0;
	}
	
.testimonial-text p:first-of-type:before,
.testimonial-text p:last-of-type:after {
	content: '“';
	position: relative;
	left: -10px;
	top: 40px;
	font-size: 100px;
	font-weight: 700;
	color: #dedede;
	}
.testimonial-text p:last-of-type:after {
	content: '”';
	left: auto;
	right: 0;
	top: 5px;
	font-size: 36px;
	line-height: 16px;
	color: #ccc;
	position: relative;
	}

@media only screen and (min-width: 480px) {
	.testimonial-text {
		}
}
@media only screen and (min-width: 900px) {
	.testimonial-hero {
		height: 500px;
		}
	.testimonial-text {
		padding-top: 60px;
		padding-bottom: 60px;
		text-align: center;
		}
}


/* ----- [ Client Logos ] -----------------*/
.logos-section {
	padding: 30px 0;
	overflow: hidden;
	}
.inner-logos {
	}

.logo-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 30px;
	}

.client-logo img {
	display: block;
	max-height: 65px;
	max-width: 150px;
	margin-right: auto;
	margin-left: auto;
	margin: 0 15px 20px;
	opacity: 0.3;
	opacity: 1;
	}

@media only screen and (min-width: 870px) {
	.logo-list {
		justify-content: space-between;
		}
}

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


/* ----- [ Buttons ] --------------------------- */
button,
.button {
	display: inline-block;
	padding: 10px 15px;
	padding: 10px 20px;
	color: #fff;
	background: #ba0137;
	width: 100%;
	opacity: 1;
	font-size: 16px;
	font-size: 1em;
	/*font-weight: 600;*/
	/*text-transform: uppercase;*/
	letter-spacing: 1px;
	text-align: center;
	margin-bottom: 10px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}
button:hover,
.button:hover {
	color: #fff;
	background: #8f1337;
	text-decoration: none;
	}

.button-alt {
	background: #7c8410;
	}
.button-alt:hover {
	background: #656d0d;
	}
	
@media screen and (min-width: 600px) { 
	button,
	.button {
		width: auto;
		}
}

/* ----- [ Instagram Feed ] --------------- */
#instafeed {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	}
.instagram-feed {
	padding: 60px 0;
	background: rgba(77,78,21,0.05);
	overflow: hidden;
	/*display: none;*/
	}
.instagram-feed .col {
	position: relative;
	height: 0;
	padding: 0;
	padding-top: 33.333% !important;
	width: 33.333% !important;
	padding-top: 32% !important;
	width: 32% !important;
	overflow: hidden;
	margin-bottom: 1.666%;
	}

.insta-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	}
.insta-link,
.insta-link:hover {
	text-decoration: none;
	border: none;
	}

.insta-link img {
	min-height: 100%;
	min-width: 100%;
	max-width: 100%;
	object-fit: cover;
	}

.instagram-feed a {
	border: none;
	}
/*
.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;
	}
*/

@media only screen and (min-width: 600px) {
	.instagram-feed {
		display: block;
	}
	.instagram-feed .col {
		padding-top: 33.333% !important;
		width: 33.333% !important;
		padding-top: 32% !important;
		width: 32% !important;
	}
}

@media only screen and (min-width: 760px) {
	.instagram-feed {
		display: block;
	}
	.instagram-feed .col {
		padding-top: 16.666% !important;
		width: 16.666% !important;
		padding-top: 15.5% !important;
		width: 15.5% !important;
	}
}

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

.page-footer a {
	/*color: #fff;
	color: #d6b161;*/
	border-bottom: 1px solid transparent;
	}
.page-footer a:hover {
	/*color: #fff;*/
	border-bottom: 1px solid #ba0137;
	}

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

.footer-col:last-child {
	/*border: 1px solid red;*/
	}

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

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

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

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

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

@media only screen and (min-width: 600px) {
	.footer-col {
		width: 50% !important;
		}
	.footer-col:last-child {
		width: 100% !important;
		}
	.footer-col:last-child li {
		display: inline-block;
		margin: 0 1em 0 0;
		}
}

@media only screen and (min-width: 1100px) {
	.main-navigation .social-icon {
		margin: 0 0 0 10px;
		}
	
	.footer-col:nth-child(2n),
	.footer-col:last-child {
		width: 25% !important;
		}
	.footer-col:nth-child(2) {
		order: 3;
		}
	.footer-col:last-child li {
		width: inherit !important;
		display: block;
		}
}

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

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

.cms-text ul,
.cms-text ol {
	margin: 0 0 1em;
	}
.cms-text li {
	list-style-type: disc;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	}
.cms-text ol li {
	list-style-type: decimal;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	}
	
.cms-quote:before,
.cms-quote:after {
	content: "";
	display: inline-block;
	height: 20px;
	width: 20px;
	margin: 0 0.4em 0 0;
	opacity: 0.7;
	background: url('../images/left-quote-mark2.svg') 0 0 no-repeat;
	background-size: 100%;
	}
.cms-quote:after {
	margin: 0 0 0 0.4em;
	background: url('../images/right-quote-mark2.svg') 0 0 no-repeat;
	background-size: 100%;
	}
	
/* ----- [ Misc. / Utility Styles ] ------------ */
img.right {
	float: right;
	}
img.inline {
	display: inline !important;
	}

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

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

.align_left {
	float: left;
	margin: 0 1em 1em 0;
	}
.align_right {
	float: right;
	margin: 0 0 1em 1em;
	}
.align_center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
	}
	
.uppercase {
	text-transform: uppercase !important;
	}
.lowercase {
	text-transform: none !important;
	}

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


/* ----- [ mouse icon ] ------ */
.mouse {
	max-width: 2rem;
	width: 100%;
	height: auto;
	}

.scroll-link {
	position: absolute;
	bottom: 1rem;
	left: 50%;
	border: none;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	}

.scroll {
  -webkit-animation-name: scroll;
          animation-name: scroll;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: cubic-bezier(0.65, -0.55, 0.25, 1.5);
          animation-timing-function: cubic-bezier(0.65, -0.55, 0.25, 1.5);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 20.5px;
          transform-origin: 50% 20.5px;
  will-change: transform, opacity;
  opacity: 1;
}



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

