/**
	@Author:	Trident Marketing
	@Date:		04 August 2020
	@Notes:		BPC Digital
	
	FONTS & COLORS
	-------------	
	Font-family: 'Roboto Condensed', sans-serif;
	available weight: 400, 400i, 700;
	inner max-width: 1070px;
	red: #d6121c
*/

:root {
    --header: #000000;
    --accent: #d6121c;
    --gray: #f1f1f1;
    --gray-dark: #404040;
}

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

@-ms-viewport {
	width: device-width;
	}

html, body {
	width: 100%;
	height: 100%;
	font-size: 100%;
	}

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

body, input, textarea, table {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	color: #222;
	color: rgb(34,34,34);
	}
	
p,
li,
td {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 300;
	font-size: 1.1em;
	line-height: 1.4em;
	margin: 0 0 1.1em;
	}

li,td {
	margin: 0;
	}

em {
	font-style: italic;
	}
b,
strong {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	}

a {
	color: #d6121c;
	text-decoration: none;
	}

a:hover {
	color: #d6121c;
	text-decoration: underline;
	}

h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
	line-height: 1.3em;
	margin: 0 0 0.8em;
	}
h1, .h1 {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 1.1em;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #d6121c;
	}

h2 {
	font-size: 1.3rem;
	font-size: 1.5rem;
	line-height: 1.1em;
	font-weight: 400;
	color: #d6121c;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	}
h3 {
	font-size: 1.2em;
	font-size: 1.1rem;
	font-weight: 400;
	}
h4 {
	font-size: 1rem;
	font-weight: 400;
	}
h5 {
	font-size: 0.9rem;
	margin: 0;
	font-weight: 700;
	}

p + h2,
p + h3,
ul + h2,
ul + h3,
div + h2,
div + h3 {
	margin-top: 1.5em;
	}

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

/* Dark and Light #utility */
.dark,
.dark p,
.dark li,
.dark h2,
.dark h3,
.dark h4 {
	color: #fff;
	}
.dark a {
	color: #fff;
	border-bottom: 1px solid #fff;
	}
.dark a:hover {
	color: #fff;
	}

/* ----- [ Structure ] -----------------*/
header,
section,
footer {
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	}
section {
	/*margin: 50px auto;*/
	padding: 0;
	}
.inner {
	position: relative;
	max-width: 1070px;
	margin: 0 auto;
	padding: 0 20px;
	padding: 60px 20px;
	}
.inner-narrow {
	max-width: 860px;
	}
.inner-wide {
	max-width: 1200px;
	}
.inner-full {
	max-width: 100%;
	padding: 0;
	}

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

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

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

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

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

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

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


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

/* makes children flex containers (stretch inners) */
.flex-cols > .col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    }

@media only screen and (min-width: 600px) { 
	/* Vertical alignment per row */
	.row-top {
		align-items: flex-start;
		}
	.row-bottom {
		align-items: flex-end;
		}
	.row-middle {
		align-items: center;
		}
	
	/* Horizontal alignment per row */
	.row-left {
		justify-content: flex-start;
		}
	.row-right {
		justify-content: flex-end;
		}
	.row-center {
		justify-content: center;
		}
	.row-around {
		justify-content: space-around;
		}
	.row-between {
		justify-content: space-between;
		}
	.row-evenly {
		justify-content: space-around;
		}

	.push-right {
		margin-right: auto;
		}
	.push-left {
		margin-left: auto;
		}
}

/* Direction */
.row-reverse {
	flex-direction: row-reverse !important;
	}
.row-column {
	flex-direction: column;
	}
.row-column-reverse {
	flex-direction: column-reverse;
	}

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

/* ----- [ Page Wrapper / Overlay / Header ] -----------------*/
.page-wrapper {
	position: relative;
	background: #fff;
	flex: 1 0 auto;
	-webkit-transition: transform .3s ease;
	-moz-transition: transform .3s ease;
	-o-transition: transform .3s ease;
	transition: transform .3s ease;
	}

.page-wrapper.is-open {
	-webkit-transform: translateX(-360px);
	-moz-transform: translateX(-360px);
	-ms-transform: translateX(-360px);
	-o-transform: translateX(-360px);
	transform: translateX(-360px);
	}

.page-overlay {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	background: #666;
	background: rgba(0,0,0,0.4);
	z-index: 100;
	opacity: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.page-overlay.is-open {
	visibility: visible;
	opacity: 1;
	}

.page-header {
	position: absolute;
	/*position: relative;*/
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	height: auto;
	margin: 0;
	padding: 0;
	z-index: 110;
	background: #000000;
	background: var(--header);
	/*background: rgba(255,255,255,0.95);*/
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-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.nav-is-visible {
	-webkit-transform: translateX(-260px);
	-moz-transform: translateX(-260px);
	-ms-transform: translateX(-260px);
	-o-transform: translateX(-260px);
	transform: translateX(-260px);
	}

.page-header .inner {
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	justify-content: space-between; 
	align-items: center;
	max-width: 1200px;
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	}

.logo-wrap {
	position: relative;
	text-align: left;
	height: 85px;
	height: 60px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}

.header-logo {
	display: block;
	height: 100%;
	margin: 0;
	border: none;
	text-decoration: none;
	}
.header-logo img {
	height: 100%;
	}

.page-header-meta {
	text-align: right;
	display: none;
	}
.header-phone {
	font-size: 1.2em;
	font-size: 1em;
	}
.header-phone a {
	text-decoration: none; /* what */
	color: var(--accent);
	color: #fff;
	}
.header-phone a:hover,
.header-phone a:active {
	color: var(--accent);
	text-decoration: underline;
	}
.header-phone .fas {
	color: #fff;
	}
.header-phone:hover .fas,
.fas:hover + a  {
	color: var(--accent);
	}
	
/* Alt Header Logo */


@media only screen and (min-width: 800px) {
	.page-header {
		position: fixed;
		display: -webkit-flex;
		display: flex;
		flex-direction: column;
		justify-content: flex-start; 
		align-items: stretch;
		}
	.page-header .inner {
		flex-direction: row;
		padding-top: 17px;
		padding-bottom: 17px;
		}
	.logo-wrap {
		position: relative;
		height: 76px;
		text-align: center;
		overflow: hidden;
		display: flex;
		justify-content: flex-start;
		align-items: flex-end;
		}
	.page-header-meta {
		display: block;
		}

	.is-fixed .logo-wrap {
		height: 50px;
		}
	.is-fixed .inner {
		padding: 10px 20px;
		}
	
	/*
	.is-fixed .social-icons-header {
		display: none;
		}
		
	.is-fixed .social-icons-header .social-icon a {
		width: 28px;
		height: 28px;
		line-height: 28px;
		}
	.is-fixed .social-icons-header .fab {
		font-size: 1em;
		line-height: 28px;
		}
	*/
		
	/* Alt Header Logo */
	.header-logo {
		display: inline-block;
		}
	.bpc-group-link {
		color: #fff;
		color: #666;
		/*float: right;*/
		margin: 15px;
		font-weight: 400;
		letter-spacing: 0.03em;	
		white-space: nowrap;	
		}
	.is-fixed .bpc-group-link {
		display: none;
		}
}

/* ----- [ Mobile menu ] ----------- */
.nav-toggle {
	display: block;
	background: #d6121c;
	background: none;
	width: 44px;
	height: 44px;
	margin-right: 10px;
	position: relative;
	cursor: pointer;
	z-index: 100;
	}
.nav-toggle a {
	display: none;
	}

.nav-icon {
	/* this span is the central line in the 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: 26px;
	height: 2px;
	background-color: #fff;
	/* these are the upper and lower lines in the menu */
	}
.nav-icon::before, 
.nav-icon:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: inherit;
	left: 0;
	}
.nav-icon::before {
	bottom: 8px;
	}
.nav-icon::after {
	top: 8px;
	}
	
.is-clicked .nav-icon {
	background-color: rgba(255, 255, 255, 0);
	}
.is-clicked .nav-icon::before, 
.is-clicked .nav-icon::after {
	background-color: #fff;
	}
.is-clicked .nav-icon::before {
	bottom: 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	}
.is-clicked .nav-icon::after {
	top: 0;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	}

/* ----- [ Navigation ] --------------------- */
.main-nav-wrapper {
	/*display: none;*/
	position: relative; /* for dropnav */
	position: absolute;
	width: 100%;
	top: 100%;
	background: #fff;
	height: 100vh;
	height: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	overflow: hidden;
	}
.main-nav-wrapper.is-open {
	height: 100vh;
	overflow: auto;
	}
	
.main-navigation {
	/*flex: 0 1 50%;*/
	display: none;
	max-width: 1200px;
	width: 100%;
	padding: 0 20px;
	}
	
.main-navigation.is-open {
	display: block;
	margin-top: -1px;
	margin-bottom: 170px;
	}

.menu-item {
	font-size: 1.4rem;
	display: block;
	margin: 0;
	border-top: 1px solid #d6121c;
	}
.menu-item a,
.menu-item span {
	display: block;
	/*font-size: 1.2em;*/
	font-weight: 400;
	padding: 10px 0;
	color: #d6121c;
	text-decoration: none;
	}
.menu-item a:hover,
.menu-item .on,
.menu-item.nav-open > a {
	color: #000;
	text-decoration: none;
	}
	
.menu-item:hover span,
.menu-item.nav-open > span {
	cursor: default;
	}

.dropnav .menu-item {
	padding-left: 1em;
	}
/*
.menu-item .on {
	color: #fff;
	background: #d6121c;
	text-decoration: none;
	}
*/
/*
@media only screen and (min-width: 800px) {
	.nav-toggle {
		position: absolute;
		right: 20px;
		bottom: 18px;
		}
}
*/
@media only screen and (min-width: 800px) {
	.nav-toggle {
		display: none;
		}

	.main-nav-wrapper {
		position: relative;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: flex-end;
		width: 100%;
		top: 0;
		height: auto;
		padding: 0;
		background: var(--accent);
		overflow: visible;
		}

	.main-navigation {
		/*flex: 0 1 50%;*/
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
		padding: 0 20px;
		position: relative;
		background-color: transparent;
		overflow: visible;
		/*
		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		-o-transition: all .3s ease;
		transition: all .3s ease;
		*/
		}

	.menu-item {
		display: inline-block;
		line-height: 1.2;
		margin: 0;
		padding: 0;
		overflow: visible;
		border-bottom: none;
		border: none;
		min-height: 0;
		vertical-align: middle;
		text-align: center;
		}
	.menu-item a,
	.menu-item span {
		position: relative;
		display: block;
		color: #fff;
		font-size: 1.2rem;
		padding: 10px 0;
		padding: 5px 0;
		border: none;
		border-bottom: 1px solid transparent;
		text-transform: uppercase;
		text-decoration: none;
		letter-spacing: 0.05em;
		}
	.menu-item a:hover,
	.menu-item span:hover,
	.menu-item .on {
		color: #000;
		color: #d6121c;
		color: var(--header);
		text-decoration: none;
		border-bottom: 1px solid transparent;
		}

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

	.dropnav ul {
		margin: 0;
		}
	.dropnav .menu-item {
		display: block;
		text-align: left;
		margin: 0;
		padding-left: 0;
		}
	.dropnav .menu-item a {
		font-size: 0.8em;
		color: #000;
		color: #666;
		padding: 10px 0;
		}
	.dropnav a:hover,
	.dropnav a.on {
		color: #d6121c;
		text-decoration: none;
		}

	/*
	.submenu-toggle {
		position: relative;
		top: -1px;
		z-index: 2;
		margin-left: 5px;
		display: inline-block;
		width: 12px;
		height: 12px;
		line-height: 12px;
		font-size: 12px;
		color: #fff;
		}
	.is-solid .submenu-toggle {
		color: #222;
		}
	.submenu-toggle:before {
		content: '\f107';
		font-family: 'FontAwesome', sans-serif;
		}
	 */
}



/* ----- [ Page Content ] --------------- */

.page-title {
	font-weight: 300;
	font-size: 1.8rem;
	line-height: 1.1em;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 60px;
	margin: 0;
	padding: 8px 20px;
	color: #fff;
	text-align: center;
	background: #d6121c;
	}

.page-title.links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	align-items: center;
	}
.page-title a,
.page-title i {
	color: #fff;
	text-decoration: none;
	font-size: 50%;
	width: 110px;
	text-align: right;
	}
.page-title a:first-of-type {
	text-align: left;
	}

.page-title a:hover {
	text-decoration: underline;
	}


/* ----- [ Home Page ] ------------------ */
.hero {
	padding: 0;
	margin: 0 auto;
	min-height: 400px;
	margin-top: 122px;
	margin-top: 90px;
	/*border-top: 90px solid #fff;*/
	background: #eee;
	}
.hero .inner {
	/*height: 90vh;*/
	padding: 0;
	}

.home-hero {
	padding: 0;
	margin: 0 auto;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	}

.hero-text {
	color: #fff;
	padding: 60px 20px;
	}
.hero-headline {
	color: #fff !important;
	font-size: 1.8rem;
	margin: 0 0 0.3em;
	text-transform: uppercase;
	}
.hero-headline small {
	font-size: 1.2rem;
	}
.hero-dates {
	color: #fff !important;
	}

.split-hero .col {
	justify-content: center;
	align-items: center;
	}
.split-hero .col:first-of-type {
	border-right: 4px solid #fff;
	}
.split-hero .col:last-of-type {
	border-left: 4px solid #fff;
	}
	
.section-notice {
	color: #fff;
	background: var(--header);
	/*margin: -60px 0 50px;*/
	padding: 40px 10px;
	}
.section-notice .inner {
	/*border: 3px solid var(--accent);*/
	border: none;
	padding: 20px 20px 0;
	}

.service-text {
	max-width: 500px;
	margin: 20px;
	padding: 30px 20px;
	background: #fff;
	background: rgba(255,255,255,0.85);
	}
.service-text p {
	/*color: #d6121c;*/
	}
.service-toggle span {
	display: none;
	}

.developments-section {
	padding: 45px 0 30px;
	background: #f1f1f1;
	background: #eee;
	}
	
.news-section {
	/*margin: 80px auto;*/
	}
	
.last-section .inner {
	padding-bottom: 0;
	}

@media only screen and (min-width: 600px) {
	.hero {
		padding-top: 0;
		min-height: 400px;
		margin-top: 142px;
		/*margin-top: 90px;*/
		}
	.hero .inner {
		/*height: 90vh;*/
		padding: 0;
		}
	
	/* My preferred popup boxes 
	.service-text2 {
		position: absolute;
		top: 0;
		left: 80%;
		bottom: auto;
		width: 250%;
		color: #000;
		background: #fff;
		text-align: left;
		padding: 20px 20px 5px;
		border-radius: 5px;
		z-index: 10;
		visibility: hidden;
		opacity: 0;
		transition: all 0.3s ease-in-out;
		}
	.service-text2::before {
		content: "";
		position: absolute;
		height: 0;
		width: 0;
		border: 15px solid transparent;
		border-right: 20px solid #fff;
		top: 40px;
		left: -30px;
		}
		
	.service-text2 p {
		font-size: 1em;
		}
		
	.service-card:hover .service-text2 {
		visibility: visible;
		left: 100%;
		opacity: 1;
		}
		
	.seo-content-optimisation .service-text2,
	.web-advertising .service-text2,
	.multi-channel-campaigns .service-text2,
	.ppc .service-text2 {
		left: auto;
		right: 80%;
		}
	.seo-content-optimisation .service-text2::before,
	.web-advertising .service-text2::before,
	.multi-channel-campaigns .service-text2::before,
	.ppc .service-text2::before {
		border-right: 15px solid transparent;
		border-left: 20px solid #fff;
		left: auto;
		right: -30px;
		}
	.seo-content-optimisation:hover .service-text2,
	.web-advertising:hover .service-text2,
	.multi-channel-campaigns:hover .service-text2,
	.ppc:hover .service-text2 {
		left: auto;
		right: 100%;
		}
	*/
	.service-text2 {
		display: none;
		}
		
		
	.service-toggle span {
		display: inline-block;
		}
}

.hero-overlay {				
	/* z-index: 1; */
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	background: transparent;
	}

.section-fixed {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	}
.about-us-page .section-fixed {
	margin-bottom: 0;
	}

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

.grid-slider .slick-dots {
	bottom: -30px;
	}

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

/* ----- [ News Pages ] --------------- */
.news-post {
	margin-bottom: 60px;
	}
.post-date {
	color: #d6121c;
	font-weight: 700;
	font-size: 0.9em;
	text-transform: uppercase;
	}
.post-thumb {
	margin: 0 0 30px;
	}
.post-thumbnail {
	width: 100%;
	}

figure {
	margin: 0 0 2em;
	padding: 0;
	}
figcaption {
	font-size: 0.85em;
	line-height: 1.3em;
	margin: 0.4em 0;
	}

.sibling-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-top: 40px;
	}

.podcast-advert {
	background: #666 url('../images/podcast-mic.png') 160% 100% no-repeat;
	background-size: 260px;
	color: #fff;
	height: 100%;
	padding: 30px;
	display: flex;
	flex-direction:column;
	justify-content:space-between;
	align-items: flex-start;
	}
.podcast-advert h3 {
	 font-size: 2.3em;
	 line-height: 1;
	 font-weight: normal;
	 max-width: 6em;
	 }

/* MarkupSocialShareButtons */
.share-widget {
	font-weight: 500;
	text-transform: uppercase;
	margin: 20px 0;
	}
.MarkupSocialShareButtons {
    list-style-type: none;
    display: inline-block;
    overflow: hidden;
    padding: 0;
    vertical-align: middle;
	}
.MarkupSocialShareButtons li {
    list-style-type: none;
    float: left;
    margin: 0 2px;
    padding: 0;
	}
.MarkupSocialShareButtons li a {
    display: inline-block;
    text-decoration: none;
    border: none;
    width: 32px;
    height: 32px;
    opacity: 0.8;
    opacity: 1;
    border-radius: 50%;

    overflow: hidden;
	}
.MarkupSocialShareButtons li a:hover {
    opacity: 1;
    border-color: var(--accent);
	}

.MarkupSocialShareButtons img {
    width: 100%;
    height: auto;
	}

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

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

.media img,
.news-image-link img {
	width: 100%;
	transition: all 0.3s ease-in-out;
	}
.media-card:hover .media img,
.news-image-link:hover img {
	transform: scale(1.1, 1.1);
	}
	
.gallery > * {
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    }
.gallery:hover > * {
	opacity: 0.5;
	}
.gallery:hover > *:hover {
	/*transform: scale(1.1);*/
	opacity: 1;
	}

.news-image-link {
	display: block;
	overflow: hidden;
	}


.ratio-container {
	position: relative;
	}
.ratio-container:after {
    content: '';
    display: block;
    height: 0;
    width: 100%;
    /* 16:9 = 56.25% = calc(9 / 16 * 100%) */ /*68.75*/
    padding-bottom: 68.75%;
	}
.ratio-container > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
	}

.inner-link {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin-top: -20px;
	padding: 10px;
	color: #fff;
	text-align: center;
	}

.inner-link .button {
	padding: 5px 10px;
	display: inline-block;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0;
	}

.media:hover .inner-link .button {
	opacity: 1;
	}


.card-body {
	padding: 10px 0;
	font-size: 0.9em;
	}
.card-title {
	margin: 0 0 0.2em;
	font-weight: 300;
	/*text-transform: uppercase;*/
	}
.card-title small {
	font-size: 0.6em;
	}
.card-text {
	margin: 0 0 0.2em;
	font-weight: 600;
	}
	
.card-text .button {
	margin-bottom: 3px;
	}

.service-card {
	overflow: visible;

	}
.service-card img {
	max-width: 100px;
	margin: 5px auto;
	padding: 5px;
	}
	
.fa-chevron-down {
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    }
.open .fa-chevron-down {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
	}
	
.icon-credit {
	display: block;
	text-align: right;
	font-size: 12px;
	color: #999;
	margin: 0 20px;
	}
.icon-credit a {
	color: #999;
	}

/* ----- [ Service Card ] --------------- */



/* ----- [ Alternate Card ] --------------- */
.alt-card .card-body {
	position: absolute;
	top: 100%;
	top: calc(100% - 2.9em);
	left: 0;
	right: 0;
	height: 100%;
	padding: 15px;
	text-align: center;
	color: #fff;
	background: #d6121c;
	background: rgba(214,18,28,0.8);
	z-index: 10;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
	}
.media-card.alt-card:hover .card-body {
	top: 0%;
	padding-top: 20%;
	}

.alt-card .card-title {
	margin: 0 0 0.5em;
	}
.alt-card .button {
	border: 1px solid #fff;
	}

.sold-badge,
.help-badge {
	display: block;
	float: right;
	color: #fff;
	background: #d6121c;
	padding: 0 5px;
	}
.help-badge {
	background: green;
	}
	
/* ----- [ Bio Card ] --------------- */
.bio-card .card-bio {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 100%;
	padding: 15px;
	text-align: left;
	color: #fff;
	background: #d6121c;
	background: rgba(214,18,28,0.8);
	z-index: 10;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
	}
.media-card.bio-card:hover .card-bio {
	top: 0%;
	padding-top: 20%;
	}

.bio-card .card-title {
	margin: 0 0 0.5em;
	font-weight: 400;
	}
.bio-card .button {
	border: 1px solid #fff;
	}
	
/* page corner */
/*
.bio-card .media:after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	bottom: 0;
	right: 0;
	border-left: 20px solid #fff;
	border-bottom: 20px solid #f00;
	}
*/

/* ----- [ Flex-page ] -----------------*/	
.alternating-row {
	display: block;
	margin-bottom: 40px;
	}

.alternating-image,
.alternating-text {
	width: 100%;
	}

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

@media only screen and (min-width: 768px) {
	.alternating-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		justify-content: space-between;
		align-items: center;
		align-items: stretch;
		flex-wrap: nowrap;
		}
	.alternating-row:nth-of-type(odd) {
		/*background: rgba(77,78,21,0.05);*/
		}
	.alternating-image {
		width: 50%;
		width: calc(50% - 20px);
		min-height: 450px;
		}
	.alternating-text {
		width: 50%;
		max-width: 560px;
		margin: auto;

		}
	.alternating-row:nth-of-type(even) .alternating-text  {
		margin: auto;
		margin-right: 0;
		padding: 50px 40px;
		}
	.alternating-row:nth-of-type(odd) .alternating-text  {
		margin: auto;
		margin-left: 0;
		padding: 50px 40px;
		}
		
	.tint-bg {
		background: rgba(77,78,21,0.05);
		}
}


/* Meet the Team Links */
.head-office-page .sidebar {
	background: #f1f1f1;
	margin: 0;
	}
.head-office-page .sidebar .inner {
	max-width: 860px;
	padding-top: 60px;
	padding-bottom: 60px;
	}
	
.head-office-page .sidebar h2 {
	margin: 0 0 2em;
	}
.head-office-page .sidebar ul {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    }
.head-office-page .sidebar li {
	text-transform: uppercase;
    font-size: 1.2em;
    line-height: 1.1em;
    margin-bottom: 1em;
    }

@media only screen and (min-width: 480px) {
	.head-office-page .sidebar ul {
		flex-direction: row;
		flex-wrap: wrap;
		}
	.head-office-page .sidebar li {
		width: 50%;
		}
}

@media only screen and (min-width: 600px) {
	.head-office-page .sidebar ul {
		flex-direction: row;
		}
	.head-office-page .sidebar li {
		text-transform: uppercase;
		font-size: 1.2em;
		line-height: 1.1em;
		width: auto;
		}
}

/* ----- [ Services Page ] -----------------*/
.services-section {
	color: #fff;
	background: #000;
	/*padding-top: 60px;
	padding-bottom: 60px;*/
	}
.services-section h2 {
	color: #fff;
	}

/* ----- [ Content ] -----------------*/
.cms-content ul,
.cms-content ol {
	margin: 0 0 1em;
	list-style: none;
	}

.cms-content li {
	/*list-style-type: square;*/
	/*list-style-position: outside;*/
	margin: 0 0 0.5em 1em;
	text-indent: -1em;
	}
.cms-content ol li {
	list-style-type: decimal;
	list-style-position: outside;
	margin: 0 0 0.5em 1.2em;
	}

.cms-content li::before {
	content: "■";
	color: #d6121c;
	margin-right: 0.5em;
	}

.cms-content p > img,
.cms-content figure > img {
	/*max-width: 100%;*/
	width: 100%;
	/*margin: 40px auto;*/
	}

.cms-content h3 {
	font-weight: 400;
	text-transform: uppercase;
	font-size: 1em;
	letter-spacing: 1px;
	}
	
.cms-content p + h3 {
	margin-top: 2em;
	}
.cms-content h4 {
	margin-top: 1.5em;
	}
.cms-content h3 + h4 {
	margin-top: 0.5em;
	}

.cms-content table {
	float: none;
	width: 100%;
	margin: 0 0 2em;
	border: 1px solid #ccc;
	}
.cms-content td,
.cms-content th {
	padding: 5px;
	line-height: 1.3em;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	}
.cms-content th,
.cms-content th p {
	font-weight: bold;
	background: #eee;
	}

.TextformatterVideoEmbed {
	margin-bottom: 1em;
	}

/* on the About Us page: unused? */
.inline-icon {
	overflow: hidden;
	}
.inline-icon a {
	display: inline-block;
	margin-right: 10px;
	}
.inline-icon img {
	margin: 0!important;
	opacity: 0.7;
	}
.inline-icon img:hover {
	opacity: 1;
	}

/* ----- [ Careers ] -----------------*/
.jobpost {
	border: 1px solid #999;
	padding: 20px;
	text-align: left;
	}

.job-details {
	margin: 0 0 2em;
	}

.job-detail {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0 0 0.2em;
	}
.job-detail dt {
	font-weight: 500;
	flex: 1;
	}
.job-detail dd {
	font-weight: 300;
	margin-left: auto;
	flex: 1;
	text-align: right;
	}

/* ----- [ Forms ] --------------- */
input, textarea, select {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 16px;
	/*line-height: 1.75em;*/
	color: #333;
	/*-webkit-text-stroke: 0.1px;*/
	/*-webkit-appearance: none;*/
	}

/* normalise iOS */
input[type="checkbox"], input[type="radio"] {
    margin-left: 0
	}
input[type="checkbox"] {
    -webkit-appearance: checkbox
	}
input[type="radio"] {
    -webkit-appearance: radio
	}
	
.InputfieldSubmit {
	overflow: hidden;
	}
.InputfieldSubmit button {
	float: right;
	}
	
input:focus,
textarea:focus {
	background: #fff;
	}
	
input:focus {
	background: #fff;
	}

/* ----- [ Client Logos ] -----------------*/
.logos-section {
	padding: 30px 0;
	overflow: hidden;
	}
.logo-list {
	align-items: center;
	margin: 30px 0;
	}
.client-logo {
	}
.client-logo img {
	display: block;
	max-height: 90px;
	max-width: 120px;
	margin-right: auto;
	margin-left: auto;
	margin: 20px 30px;
	opacity: 0.6;
	}
	
.client-logo .annington {
	max-width: 200px;
	}
	
.slick-initialized .slick-slide {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	align-items: center;
	height: 100px;
	}

/* ----- [ Checkout Stuff: check this again after form ] -----------------*/
.form-group,
.Inputfield {
	margin: 0 0 10px;
	clear: both;
	}
.form-group label,
.Inputfield label {
	font-weight: 400;
	font-size: 1em;
	line-height: 1.6em;
	margin: 0 0 10px;
	}
	
.Inputfield .toggle-icon {
	display: none;
	}
.form-control,
.InputfieldContent input {
	display: block;
	width: 100%;
	padding: .5rem .75rem;
	line-height: 1.25;
	background-color: #fff;
	background-image: none;
	background-clip: padding-box;
	/*-webkit-appearance: none;*/
	transition: border-color ease-in-out .15s,
		box-shadow ease-in-out .15s;
	border: none;
	border: 1px solid #000;
	border: 1px solid rgba(0, 0, 0, 0.2);
	/*height: 55px;*/
	/*background: none !important;
	color: #000 !important;*/
	font-size: 18px;
	}

.InputfieldContent input:focus,
.InputfieldContent input:active {
	border: 1px solid #000;
	outline: none;
	box-shadow: none;
	}
	
.form-control:focus,
.form-control:active {
	border: 1px solid #fff;
	color: #222;
	outline: #fff;
	box-shadow: none;
	background: #fff;
	}

.Inputfield_pad_firstname,
.Inputfield_email,
.Inputfield_pad_city,
.Inputfield_pad_postcode {
	float: left;
	width: 50%;
	}

.Inputfield_pad_lastname,
.Inputfield_pad_phone,
.Inputfield_pad_state,
.Inputfield_display_country {
	float: right;
	width: 49%;
	clear: none;
	}
.Inputfield_pad_countrycode,
.Inputfield_pad_paymentmodule,
.Inputfield_pad_shippingmodule {
	display: none;
	}

.Inputfield_pad_shippingmodule li {
	display: inline !important;
	}

.InputfieldRadiosStacked input {
	display: inline-block;
	width: auto;
	margin: 0 10px 0 0;
	}
	
.InputfieldError {
	text-align: right;
	margin: -1.6em 0 0 0;
	font-size: 0.9em;
	color: #d6121c;
	}
.InputfieldError .fa-flash {
	display: none;
	}
.InputfieldError + input {
	border-color: #d6121c;
	}

/* ----- [ Buttons ] -------- */
button,
.button,
a.button {
	display: inline-block;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 800;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	white-space: nowrap;
	width: auto;
	padding: 7px 20px;
    color: #fff;
    background: #d6121c;
    border: 1px solid #d6121c;
	outline: none;
	cursor: pointer;
	text-decoration: none;
	-webkit-appearance: none;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -moz-border-radius: 0;
    -khtml-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    resize: none;
	}

button:hover,
.button:hover,
a.button:hover,
.button.on {
	background: #000;
	color: #fff;
	border-color: #000;
	text-decoration: none;
	-webkit-appearance: none;
	}

.button-outline,
a.button-outline {
	color: #333;
	background: none;
	padding: 7px 20px;
	border: 1px solid #ccc;
	}

.button-reversed,
a.button-reversed {
	color: #d6121c;
	background: #fff;
	padding: 7px 20px;
	border: 1px solid transparent;
	}

.button-reversed:hover,
a.button-reversed:hover {
	color: #fff;
	background: #d6121c;
	background: #000;
	border: 1px solid transparent;
	}

.button-full-width,
.button-full {
	width: 100%;
	display: block;
	margin: 0 0 10px;
	}
	
.button-small,
a.button-small {
	font-size: 0.8rem;
	}
.button-large,
a.button-large {
	font-size: 0.95rem;
	}

.button-right,
a.button-right {
	float: right;
	}

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

/* ----- [ Contact Page ] --------------- */
.contact-info .fas {
	font-size: 0.9em;
	color: #d6121c;
	display: inline-block;
	width: 1.1em;
	}

.balloon {
	min-width: 190px;
	}
.balloon div {
	overflow: hidden;
	}
.balloon img {
	float: left;
	width: 80px;
	margin: 0 15px 15px 0;
	}
.balloon p {
	margin: 0;
	}

/* ----- [ etc. ] --------------- */
.flex-hero {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
	flex: 1 1 auto;
	padding: 0;
	text-align: center;
	}

/* ----- [ PW Pager Nav: Search Results ] --------  */
.MarkupPagerNav {
	text-align: right;
	padding: 0 15px;
	}
.MarkupPagerNav li {
	display: inline-block;
	font-size: 15px;
	line-height: 1em;
	margin: 0 0 10px;
	}
.MarkupPagerNav a {
	display: block;
	border: 1px solid #e2e2e2;
	padding: 6px 8px;
	/*font-weight: bold;*/
	}

.MarkupPagerNav a:hover {
	border: 2px solid #e2e2e2;
	padding: 5px 7px;
	}

.MarkupPagerNavOn a {
	font-weight: bold;
	border: 1px solid #e2e2e2;
	background: #e2e2e2;
	color: #222;
	}

/* ----- [ Footer ] ---------------------------- */
.page-footer {
	color: #fff;
	background: #000 url("../images/bpc-footer-2.jpg") bottom right no-repeat;
	background-size: cover;
	padding: 0;
	margin-top: 0;
	/*border-top: 8px solid #fff;*/
	}

@media only screen and (min-width: 600px) {
	.page-footer {
		background-size: 450px;
		}
}
	
.page-footer .inner {
	max-width: 1200px;
	padding: 40px 20px 10px;
	}
	
.page-footer .col {
	margin-right: 40px;
	flex: 0 0 auto;
	width: auto;
	padding: 15px;
	}

.page-footer h2 {
	color: #d6121c;
	font-size: 1.8em;
	line-height: 1.3em;
	font-weight: 400;
	margin: 0;
	text-transform: none;
	}
.page-footer p,
.page-footer li {
	font-size: 0.9em;
	line-height: 1.6em;
	font-weight: 300;
	margin: 0 0 1em;
	}
.page-footer .col:last-of-type p {
	margin: 0;
	}
.page-footer strong {
	font-size: 1.1em;
	color: #d6121c;
	font-weight: 400;
	}
.foot-phone {
	display: inline-block;
	width: 1.3em;
	}

.page-footer a {
	color: #fff;
	border-bottom: 1px solid transparent;
	text-decoration: none;
	}
.site-credits a {
	color: #999;
	border-bottom: 1px solid transparent;
	}
.page-footer a:hover,
.site-credits a:hover {
	color: #fff;
	border-bottom: 1px solid #ba0137;
	}

.footer-logo-wrapper {
	max-width: 170px;
	margin: 0 0 16px;
	padding: 0;
	}
.footer-logo-text a,
.footer-logo-text a:hover {
	color: #d6121c;
	}
.footer-logo {
	max-width: 100%;
	}

p.copyright-credits {
	margin: 0 0 1em;
	padding: 0 15px;
	font-size: 0.8rem;
	color: #666;
	width: 100%;
	}
.copyright-credits a {
	color: #ba0137;
	}
#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; 
	}	

/* ----- [ Social Media Icons ] ---------------- */
/* ----- [ Header Icons ] --------------- */
.social-icons-header {
	display: inline-block;
	text-align: right;
	margin: 0 0 0 12px;
	}
.social-icons-footer {
	text-align: left;
	}
	
.social-icon {
    display: inline-block;
    color: #fff;
    text-align: left;
    margin-left: 5px;
	}
.social-icon a {
    color: #fff;
    border: none;
	}
.social-icons-header .social-icon a {
    color: var(--header);
    background: #fff;
    text-align: center;
    display: block;
    line-height: 22px;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    border: none;
	}

.social-icons-header .social-icon a:hover,
.social-icons-header .social-icon a:active {
    color: var(--accent);
    border: none;
	}
.social-icons-footer .social-icon a:hover,
.social-icons-footer .social-icon a:active {
    color: #d6121c;
    border: none;
	}
	
.social-icons-header .fab {
	font-weight: 400;
	font-size: 0.7em;
	line-height: 16px;
	text-align: center;
	vertical-align: middle;
	margin-top: -2px;
	}
.social-icons-footer .fab {
	font-weight: 400;
	font-size: 1.3em;
	text-align: center;
	vertical-align: middle;
	margin-right: 5px;
	}

/* unused? */
.top-link {
    position: fixed;
    bottom: 60px;
    right: 16px;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    -moz-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    z-index: 100;
    display: none;
	}
.top-link a {
    color: #e1e1e1;
    font-size: 2.5em;
    line-height: 1;
    display: block;
    height: 50px;
	width: 50px;
    outline: medium none;
    position: relative;
    /*text-indent: -9999px;*/
    z-index: 0;
    text-align: center;
    }
.top-link.show {
	opacity: 1;
	}


/* ----- [ Utility ] ------------------ */
.centered,
.centered p,
.centered h1,
.centered .h1,
.centered h2,
.centered h3,
.text-centered,
.text-center {
	text-align: center;
	}
.text-left,
.text-left p,
.text-left h1,
.text-left .h1,
.text-left h2,
.text-left h3 {
	text-align: left;
	}
.text-right,
.text-right p,
.text-right h1,
.text-right .h1,
.text-right h2,
.text-right h3 {
	text-align: right;
	}
	
.text-small {
	font-size: 1em;
	}

.all-caps {
	text-transform: uppercase !important;
	}

img.full {
	width: 100%;
	}
img.half {
	width: 50%;
	float: left;
	}
img.right {
	float: right;
	}
img.right {
	float: right;
	}

.hidden {
	display: none;
	}

/* for debugging; remove after production */
.debug {
	display: none;
	}


@media only screen and (min-width: 600px) {
	/* for certain 2/3 pages */
	.pad-right {
		padding-right: 30px;
		}
}

/* ----- [ PW styles ] ---------------- */
#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; 
	}

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

.WireFatalError {
	background: #a30000; 
	color: #fff; 
	padding: 1em; 
	position: relative;
	z-index: 9999;
	}


/* ----- [ style switcher ] -------- */
.theme-switches {
	position: fixed;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 120;
	padding: 10px 15px 10px 10px;
	opacity: 0;
	transition: 0.3s ease-in-out;
	}
.theme-switches:hover {
	opacity: 1;
	}

.switch {
	border: 2px solid black;
	border-radius: 50px;
	height: 25px;
	width: 25px;
	margin: 0 0 5px;
	cursor: pointer;
	text-align: center;
	line-height: 20px;
	}

.switch:hover {
	transform: scale(1.2);
	transition: 0.3s ease-in-out;
	}

#switch-1 { background-color: #666; color: #fff; }
#switch-2 { background-color: #666; color: #fff; }
#switch-3 { background-color: #666; color: #fff; display: none; }
#switch-4 { background-color: #666; display: none; }


/* ----- [ PRINT STYLES ] ------------------ */
@media print {
	html, body {
		font-size: 10pt;
	}
	.page-header {
		position: absolute;
		}
	.page-footer {
		display: none;
		}
}


/* Services Slider */
/* Modal Version */
.lightbox {
	display: none;
	}
	
.pop-up-content {
	max-width: 700px;
	min-height: 180px;
	padding: 10px 30px 0 40px;
	}
.pop-up-content div {
	overflow: hidden;
	}
.pop-up-image {
	float:left;
	width: 100px;
	margin: 0 20px 0 0;
	}

.featherlight-next, 
.featherlight-previous {
	right: 0;
	left: 92%;
	background: none;
	opacity: 0.8;
	}
.featherlight-previous {
	left: 0;
	right: 92%;
	}
.featherlight-next:hover, 
.featherlight-previous:hover {
	background: none;
	opacity: 1;
	}
.featherlight-next span, 
.featherlight-previous span {
	color: red;
	display: block;
	}


/*
.modal-link {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px dotted red;
	}
.gallery-modal {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1050;
	display: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	outline: 0;
	}
.gallery-modal h3,
.gallery-modal p,
.gallery-modal a {
	color: #fff;
	}
.gallery-modal h3 {
	font-weight: 300;
	margin-bottom: 0;
	}
.caption-more {
	opacity: 0.8;
	margin-left: 2em;
	}
.caption-more:hover {
	opacity: 1;
	}
	
.modal-caption {
	padding-right: 5em;
	}
.caption-body {
	column-count: 2;
	max-width: 1020px;
	max-height: 1000px;
	height: 0;
	overflow: hidden;
	margin-top: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.caption-body.is-open {
	height: auto;
	margin-top: 20px;
	}
	
.caption-body p {
	font-weight: 300;
	}
	
.gallery-slider {
	height: 100%;
	}
.slide-holder {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	position: relative;
	}

.slick-next,
.slick-prev {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	left: 20px;
	display: block;
	width: 40px;
	height: 40px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
	background: rgba(0,0,0,0.3);
	border: 2px solid #fff;
	z-index: 9999;
	}

.slick-next {
	left: auto;
	right: 20px;
	}

.slick-next:hover,
.slick-prev:hover {
	background: rgba(0,0,0,0.3);
	}

.slick-prev:before,
.slick-next:before {
	font-family: 'slick';
	font-family: 'FontAwesome';
	font-size: 24px;
	line-height: 1.1;
	opacity: .75;
	color: white;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	}
.slick-prev:before {
	content: '←';
	content: "\f060";
	content: "\f053";
	margin-right: 4px;
	}
.slick-next:before {
	content: '→';
	content: "\f061";
	content: "\f054";
	margin-left: 4px;
	}


.gallery-modal-bottom2 {
	position: absolute;
	bottom: 0;
	left:0;
	right:0;

	color:#fff;
	padding: 30px;
	background:rgba(0,0,0,0.8);
	z-index: 10;
	}

.modal-close {
	margin: 0 0 0 auto;
	position: absolute;
	bottom: 40px;
	right: 40px;
	}
	
			.controls {
			  display: flex;
			  width: 100%;
			}
			.captions {
			  flex: 1;
			  width: 100px;
			  padding: 10px;
			  margin-top: 2px;
			  color: #7b7b7b;
			  background: #fff;
			}
			.caption {
			  outline: 0 !important;
			}
			.pagination {
			  display: flex;
			  margin-top: 2px;
			}
			.pagination__button {
			  cursor: pointer;
			  display: flex;
			  justify-content: center;
			  align-items: center;
			  color: #ccc;
			  background: #fff;
			  width: 40px;
			  height: 40px;
			  margin-left: 2px;
			}
			.pagination__button:hover {
			  color: #fff;
			  background: #2aa1c0;
			}
			.pagination__button.slick-disabled {
			  cursor: not-allowed;
			  background: #ccc;
			  color: #fff;
			}
*/
