/*
Theme Name: Epic It Custom
Theme URI: http://epicit.com.au
Author: Epic IT
Author URI: http://epicit.com.au
Description: Custom WordPress theme for Epic IT.
Version: 1.0
License: GNU General Public License

-----------------------------------------------------------------*/
/* @group reset - eric myer reset v2.0 | 20110126
-----------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Import Fonts (Google Fonts Imported in header.php)
-----------------------------------------------------------------*/
@font-face{
	font-family: "DIN W01 Cond Bold";
	src:	url("fonts/ff-din-cond-bold.eot?#iefix");
	src:	url("fonts/ff-din-cond-bold.eot?#iefix") format("eot"),
			url("fonts/ff-din-cond-bold.woff2") format("woff2"),
			url("fonts/ff-din-cond-bold.woff") format("woff"),
			url("fonts/ff-din-cond-bold.ttf") format("truetype");
	font-weight: 700;
}

/* Set CSS Variables
-----------------------------------------------------------------*/
:root {
	--text-color: #222;
	--primary-color: #e90000;
	--primary-color-transparent: rgba(233, 0, 0, .7);
	--main-font: montserrat, arial, helvetica, sans-serif;
	--heading-font: "DIN W01 Cond Bold", arial, helvetica, sans-serif;
	--alt-font: adelle, arial, helvetica, sans-serif;
}

/* Set tags and general classes
-----------------------------------------------------------------*/
*, *::after, *::before {
	box-sizing: border-box;
	outline: none;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--main-font);
	font-size: 18px;
	color: var(--text-color);
	line-height: 1.7;
	min-width: 320px;
	background-color: #fff;
}

h1, h2 {
	font-family: var(--heading-font);
	text-transform: uppercase;
	font-weight: bold;
	font-size: 90px;
	line-height: 1.1;
	margin-bottom: 0;
	padding-bottom: 30px;
	color: #000;
}
h2 {
	font-size: 66px;
}
h3, h4 {
	font-weight: bold;
	font-size: 34px;
	line-height: 1.3;
	margin-bottom: 25px;
	color: #000;
}
h4 {
	color: var(--primary-color);
}
h6 {
	text-transform: uppercase;
	font-size: 12px;
	color: #888;
	font-weight: bold;
	letter-spacing: 2px;
	margin-bottom: 15px;
}
.subtitle {
	color: var(--primary-color);
	font-weight: bold;
	font-size: 36px;
	line-height: 1.3;
	margin-bottom: 30px;
}
.bigfont {
	font-size: 24px;
	line-height: 1.5;
}
@media all and (max-width: 999px) {
	h1 {
		font-size: 80px;
	}
}
@media all and (max-width: 699px) {
	h1 {
		font-size: 74px;
	}
}
@media all and (max-width: 529px) {
	h1 {
		font-size: 64px;
	}
	h2 {
		font-size: 54px;
	}
	h3, h4 {
		font-size: 30px;
	}
	.subtitle {
		font-size: 32px;
	}
	.bigfont {
		font-size: 22px;
	}	
}
@media all and (max-width: 459px) {
	h1 {
		font-size: 54px;
	}
	h2 {
		font-size: 44px;
	}
	h3, h4 {
		font-size: 28px;
	}
	.subtitle {
		font-size: 30px;
	}
	.bigfont {
		font-size: 20px;
	}	
}
@media all and (max-width: 399px) {
	h1 {
		font-size: 44px;
	}
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: all .3s ease;
	cursor: pointer;
}
a:hover {
	color: var(--text-color);
	cursor: pointer;
}
a.alt {
	color: var(--text-color);
}
a.alt:hover {
	color: var(--primary-color);
}

img, iframe, video {
	display: block;
	max-width: 100%;
}

p {
	margin-bottom: 15px;
}

.bold, strong, b {
	font-weight: bold;
}
.italic, em, i {
	font-style: italic;
}

.error {
	color: #ff3333 !important;
}

.hide {
	display: none;
}

.center {
	text-align: center;
}
.right-align {
	text-align: right;
}
.dual {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	margin-bottom: 15px;
}
.dual > * {
	flex-basis: calc(50% - 20px);
	text-align: left;
}
@media all and (max-width: 839px) {
	.dual > * {
		flex-basis: 100%;
	}
}

/* Custom
-----------------------------------------------------------------*/
#page-wrapper {
	position: relative;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	background: #fff;
	min-height: 100vh;
	transition: all .5s;
	left: 0;
}
.content-wrapper, .content-wrapper-text {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 20px;
}
.content-wrapper-text {
	max-width: 1000px;
}

.padding {
	padding-top: 70px;
	padding-bottom: 70px;
}
.padding-top {
	padding-top: 70px;
}
.padding-bottom {
	padding-bottom: 70px;
}
.padding-full {
	padding-top: 140px;
	padding-bottom: 140px;
}
.padding-top-full {
	padding-top: 140px;
}
.padding-bottom-full {
	padding-bottom: 140px;
}

.center {
	text-align: center;
}

.wysiwyg-content ul {
	list-style: none;
	margin: 20px 0 25px 0;
}
.wysiwyg-content ul > li {
	position: relative;
	padding-left: 45px;
	margin-bottom: 15px;
}
.wysiwyg-content ul > li::before {
	content: url('images/bullet.svg');
	position: absolute;
	left: 0;
	top: 0;
	width: 25px;
	height: 25px;
	padding-top: 3px;
}
.wysiwyg-content ol {
	list-style: decimal;
	margin: 0 20px 25px 30px;
}
.wysiwyg-content li ul, .wysiwyg-content li ol {
	margin-bottom: 0;
}
.wysiwyg-content img {
	height: auto;
}
.wysiwyg-content .aligncenter {
	margin-left: auto;
	margin-right: auto;
}
.wysiwyg-content h3, .wysiwyg-content h4 {
	text-transform: none;
}
.wysiwyg-content a {
	font-weight: 600;
}

.video-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.video-wrapper iframe, .video-wrapper video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Site Specific
-----------------------------------------------------------------*/
.alt-bg {
	background: #f8f8f8;
}
.btn,
.btn-alt {
	background: var(--primary-color);
	color: #fff;
	padding: 12px 24px;
	border-radius: 24px;
	font-weight: 600;
}
.btn-alt {
	background: #000;
}
.btn:hover,
.btn-alt:hover {
	background: #000;
	color: #fff;
}
.btn-alt:hover {
	background: var(--primary-color);
}

button {
	cursor: pointer;
	color: #fff;
	font-family: var(--heading-font);
	font-size: 24px;
	text-transform: uppercase;
	border-radius: 10px;
	padding: 10px 35px;
	background: var(--primary-color);
	transition: all .3s;
	border: 0;
}
button:hover {
	background: #000;
}
button.alt {
	background: #000;
}
button.alt:hover {
	background: var(--primary-color);
}
button.outline:hover {
	background: #fff;
	color: #000;
}
button.arrow {
	padding-left: 25px;
	padding-right: 55px;
	background-image: url('images/icon-arrow.svg');
	background-repeat: no-repeat;
	background-position: right 23px center;
	background-size: 21px;
	transition: all .3s;
}
button.arrow:hover {
	background-position: right 13px center;
}
@media all and (max-width: 599px) {
	button {
		width: 100%;
	}
}

ul.links-list a {
	padding-left: 23px;
	margin-left: -23px;
	position: relative;
	font-size: 16px;
	line-height: 1.2;
	padding-top: 14px;
	padding-bottom: 14px;
	display: block;
	overflow: hidden;
	font-weight: 600;
}
ul.links-list a::before {
	content: url('images/icon-arrow-black.svg');
	display: block;
	position: absolute;
	opacity: 0;
	width: 18px;
	top: 14px;
	left: -23px;
	transition: left .3s, opacity .5s;
}
ul.links-list a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 23px;
	width: 100%;
	overflow: hidden;
	height: 1px;
	background: #dfdfdf;
	transition: left .3s;
}
ul.links-list a:hover {
	margin-left: 0;
}
ul.links-list a:hover::before {
	left: 0;
	opacity: 1;
}
ul.links-list a:hover::after {
	left: 0;
}
ul.links-list li:last-of-type a::after {
	display: none;
}

.light-grey {
	background: #f8f8f8;
}

#popoverbanner {
	display: none;
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, .8);
	z-index: 999999;
	justify-content: center;
	align-items: center;
	font-size: 18px;
}
#popoverbanner > div {
	text-align: center;
	padding: 0;
	border-radius: 20px;
	width: 720px;
	max-width: calc(100% - 30px);
	color: #fff;
	font-family: var(--heading-font);
	font-weight: bold;
	text-transform: uppercase;
	line-height: 1.1;
	position: relative;
	padding: 15px 15px 207px 15px;
	background: #f7a100;
	background-image: url('images/cta-contact-bg.png');
	background-repeat: repeat-x;
	background-position: bottom -38px center;
	background-size: 1250px auto;
}
#popoverbanner > div #pop-close {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 50px;
	height: 50px;
	z-index: 99999999;
	background: #fff;
	background-image: url('images/popover-close.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px 20px;
	border-radius: 50%;
	cursor: pointer;
	
}
#popoverbanner > div::after {
	content: "";
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	width: 100%;
	background: url('images/cta-contact-staff-01.svg') no-repeat bottom center;
	background-size: auto;
	background-size: 440px auto;
	height: 190px;
}
#popoverbanner > div > p:first-of-type {
	font-size: 50px;
	margin-bottom: 5px;
}
#popoverbanner > div > p:last-of-type {
	font-size: 30px;
	margin-bottom: 20px;
}
#popoverbanner > div > ul {
	margin-bottom: 25px;
}
#popoverbanner > div > ul li {
	display: inline-block;
	margin: 0 0 10px 10px;
}
#popoverbanner > div > ul li:first-of-type {
	margin-left: 0;
}
#popoverbanner > div > ul li::after {
	content: "|";
	margin-left: 10px;
}
#popoverbanner > div > ul li:last-of-type::after {
	content: "";
	display: none;
}
#popoverbanner > div > a button {
	display: block;
	margin: 0 auto 15px auto;
}
#popoverbanner > div > a:last-of-type button {
	margin-bottom: 30px;
	font-size: 16px;
	padding: 7px 20px;
	background: #fff;
	color: #000;
}
#popoverbanner > div > a:last-of-type button:hover {
	background: #000;
	color: #fff;
}
@media all and (max-width: 769px) {
	#popoverbanner > div {
		padding-top: 45px;
	}
	#popoverbanner > div #pop-close {
		top: -5px;
		right: -5px;
	}
}
@media all and (max-width: 739px) {
	#popoverbanner > div > ul li {
		display: block;
		margin: 0 0 10px 0;
	}
	#popoverbanner > div > ul li::after {
		content: "";
		display: none;
	}
}
@media all and (max-width: 599px) {
	#popoverbanner > div::after {
		display: none;
	}
	#popoverbanner > div {
		background: #f7a100;
		padding-bottom: 0px;
	}
}
@media all and (max-width: 559px) {
	#popoverbanner > div > p:first-of-type {
		font-size: 44px;
	}
	#popoverbanner > div > p:last-of-type {
		font-size: 28px;
	}
	#popoverbanner > div > ul li {
		display: block;
		margin: 0 0 5px 0;
	}
}
@media all and (max-width: 379px) {
	#popoverbanner > div > p:first-of-type {
		font-size: 40px;
	}
	#popoverbanner > div > p:last-of-type {
		font-size: 24px;
	}
	#popoverbanner > div > a:first-of-type button {
		font-size: 20px;
	}
}

#page-wrapper.cs-open {
	left: -450px;
}
#page-wrapper.cs-open::before {
	content: "";
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 450px;
	width: calc(100vw - 380px);
	height: 100vh;
	z-index: 9999;
}
#client-support-wrapper {
	display: none;
	position: fixed;
	z-index: 0;
	top: 0;
	right: 0;
	height: 100vh;
	width: 450px;
	background: #000;
}
#client-support-wrapper.active {
	display: block;
}
#client-support-close {
	position: absolute;
	top: 35px;
	right: 35px;
	font-size: 30px;
}
#client-support-close svg, #client-support-close img {
	width: 36px;
	transform: rotate(45deg);
}
#client-support-wrapper > div:first-of-type {
	background: var(--primary-color);
	width: 100%;
	height: 375px;
}
#client-support-wrapper > div:first-of-type p:first-of-type {
	text-transform: uppercase;
	margin-bottom: 50px;
	font-family: var(--heading-font);
	font-size: 28px;
}
#client-support-wrapper > div:first-of-type strong {
	font-size: 22px;
}
#client-support-wrapper > div:first-of-type svg, #client-support-mobile > div:first-of-type svg, #client-support-wrapper > div:first-of-type img, #client-support-mobile > div:first-of-type img {
	display: inline-block;
	width: 25px;
	vertical-align: top;
	margin-right: 10px;
}
#client-support-wrapper svg path, #client-support-wrapper svg rect, #client-support-mobile svg path, #client-support-mobile svg rect {
	fill: #fff;
	transition: all .3s;
}
#client-support-wrapper a:hover svg path, #client-support-wrapper a:hover svg rect {
	fill: #000 !important;
}
#client-support-wrapper > div:last-of-type, #client-support-mobile > div:last-of-type {
	text-align: center;
}
#client-support-wrapper > div, #client-support-mobile > div {
	color: #fff;
	padding: 35px;
}
#client-support-mobile > div:first-of-type {
	padding-top: 0;
}
#client-support-mobile > div:last-of-type {
	background: #000;
	min-height: calc(100vh - 370px);
}
#client-support-wrapper a, #client-support-mobile a {
	color: #fff;
	display: block;
	margin-bottom: 15px;
}
#client-support-wrapper a:hover {
	color: #000;
}
#client-support-wrapper > div:last-of-type a:hover {
	color: #fff;
}
header {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	z-index: 999;
	transition: all .3s ease;
	min-width: 320px;
}
header.scrolled {
	background: rgba(255, 255, 255, .85);
	box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, .2);
	border-bottom: 1px solid transparent;
	min-height: 55px;
}
#fixed-header-replace {
	display: none;
}
@media all and (max-width: 620px) {
	header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
	}
	#fixed-header-replace {
		display: block;
		height: 116px;
	}
}
header #logo {
	width: 200px;
	margin-left: 35px;
	margin-right: 0;
	transition: all .3s ease;
}
header.scrolled #logo {
	width: 160px;
}
header.scrolled #open-mobile-nav {
	top: 39px;
}
header nav {
	padding-bottom: 45px;
	margin-top: 45px;
}
header nav ul {
	display: flex;
	flex-flow: row wrap;
	font-weight: 600;
}
header nav a {
	color: var(--text-color);
	padding: 0 18px;
}
header nav a:hover, header nav a.active {
	color: var(--primary-color);
}
header #logo-match {
	margin-right: 35px;
	text-align: right;
	font-size: 0;
}
header #logo-match a {
	font-size: 18px;
	display: none;
}
header #logo-match a#client-support {
	display: inline;
}
@media all and (min-width: 1319px) {
	header #logo {
		width: 220px;
		margin-right: 55px;
	}
	header #logo-match {
		width: 300px;
		margin-top: 45px;
		padding-bottom: 45px;
	}
	header #logo-match a#subnav-contact-open {
		display: inline;
		border-radius: 24px 0 0 24px;
		border-right: 1px solid #fff;
		background: #000;
	}
	header #logo-match a#client-support {
		border-radius: 0 24px 24px 0;
	}
}
@media all and (min-width: 1319px) and (max-width: 1364px) {
	header #logo {
		margin-right: 20px;
	}
	header #logo-match {
		width: 250px;
	}
}
header #client-support.open {
	background: #000;
}
header #open-mobile-nav {
	display: none;
	position: absolute;
	top: 55px;
	right: 40px;
	z-index: 9999;
	cursor: pointer;
	transition: all .3s ease;
}
header.scrolled #open-mobile-nav {
	top: 39px;
}
header #open-mobile-nav > div {
	width: 40px;
	height: 5px;
	margin-bottom: 5px;
	background: #000;
	opacity: 1;
	transition: all .3s;
}
header #open-mobile-nav.open > div:first-of-type {
	transform: rotate(45deg);
	margin-top: 10px;
}
header #open-mobile-nav.open > div:nth-of-type(2) {
	opacity: 0;
}
header #open-mobile-nav.open > div:last-of-type {
	transform: rotate(-45deg);
	margin-top: -20px;
}
nav .mobile-only {
	display: none;
}
@media all and (max-width: 1318px) {
	header #logo-match {
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
		width: 200px;
	}
	header #logo-match a#mobile-email, header #logo-match a#mobile-phone {
		display: block;
		width: 44px;
		height: 44px;
		padding: 0;
		opacity: 1;
	}
	header #logo-match a#mobile-email:hover, header #logo-match a#mobile-phone:hover {
		opacity: .5;
	}
	header #logo-match a#client-support {
		display: block;
		padding: 8px 18px;
	}
}
@media all and (max-width: 1239px) {
	header nav {
		position: absolute;
		top: 136px;
		right: -100vw;
		z-index: 9999;
		background: var(--primary-color);
		width: 100vw;
		height: calc(100vh - 136px);
		margin-top: 0;
		transition: all .3s;
		overflow-y: auto;
		padding-bottom: 70px;
	}
	header nav.active {
		right: 0;
	}
	header nav ul {
		display: block;
		padding-top: 15px;
	}
	header nav a {
		color: #fff;
		padding: 5px 55px 5px 40px;
		display: block;
		margin: 10px 0;
	}
	header nav a.has-children, header nav li:last-of-type a {
		background: url('images/icon-mobile-arrow.svg') no-repeat right 40px center;
		background-size: 15px;
	}
	header nav a:hover, header nav a.active {
		color: #fff;
	}
	header #logo-match {
		width: 95px;
		margin-right: 100px;
	}
	header #logo-match a#client-support {
		display: none;
	}
	header #logo {
		padding: 30px 0;
	}
	header #open-mobile-nav {
		display: block;
	}
	nav .mobile-only {
		display: block;
	}
	nav .not-mobile {
		display: none;
	}
}
@media all and (max-width: 779px) {
	header #logo {
		margin-left: 20px;
		padding: 20px 0;
	}
	header nav {
		top: 116px;
		height: calc(100vh - 116px);
	}
	header #open-mobile-nav {
		top: 45px;
		right: 20px;
	}
	header #logo-match {
		width: 88px;
		margin-right: 75px;
	}
	header #logo-match a#mobile-email, header #logo-match a#mobile-phone {
		width: 40px;
		height: 40px;
	}
}
@media all and (max-width: 420px) {
	#fixed-header-replace {
		height: 98px;
	}
	header #logo, header.scrolled #logo {
		width: 150px;
	}
	header #open-mobile-nav, header.scrolled #open-mobile-nav {
		top: 37px;
	}
	header nav {
		top: 98px;
		height: calc(100vh - 98px);
	}
}
@media all and (max-width: 360px) {
	#fixed-header-replace {
		height: 90px;
	}
	header #logo, header.scrolled #logo {
		width: 130px;
	}
	header #open-mobile-nav, header.scrolled #open-mobile-nav {
		top: 32px;
	}
	header #logo-match {
		width: 75px;
	}
	header #logo-match a#mobile-email, header #logo-match a#mobile-phone {
		width: 34px;
		height: 34px;
	}
	header nav {
		top: 90px;
		height: calc(100vh - 90px);
	}
}

#subnav-overlay {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: calc(100vh);
	z-index: -1;
	background: rgba(0, 0, 0, 0);
	transition: background .25s;
}
#subnav-overlay.active {
	z-index: 998;
	background: rgba(0, 0, 0, .5);
}
#subnav, #subnav-contact {
	position: absolute;
	background: var(--primary-color);
	font-size: 16px;
	height: 0;
	width: 100vw;
	transition: all .25s;
	color: #fff;
	z-index: 999;
}
#subnav-contact {
	background: #000;
	width: 200px;
	right: 120px;
	height: 0px;
	overflow: hidden;
}
#subnav-contact #subnav-contact-wrapper {
	padding: 35px 0 35px 35px;
}
#subnav-contact a {
	color: #fff;
}
#subnav-contact a:hover {
	color: #aaa;
}
#subnav #arrow, #subnav-contact #arrow-contact {
	position: absolute;
	top: 0;
	left: calc(50% - 12px);
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-bottom: 12px solid var(--primary-color);
	opacity: 0;
	transition: opacity .2s;
}
#subnav-contact #arrow-contact {
	border-bottom: 12px solid #000;
}
#subnav.active #arrow, #subnav-contact.active #arrow-contact {
	opacity: 1;
}
#subnav > div > div {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	height: 0px;
	opacity: 0;
	overflow: hidden;
}
#subnav > div > div.active {
	z-index: 99;
	height: auto;
}
@media all and (min-width: 1240px) and (max-width: 1519px) {
	header nav a {
		padding: 0 13px;
		font-size: 16px;
	}
	header #logo-match a {
		font-size: 16px;
		padding-left: 18px;
		padding-right: 18px;
	}
	#subnav-contact {
		right: 80px;
	}
}
@media all and (min-width: 1240px) {
	#subnav a {
		color: #fff;
		padding: 5px 23px 5px 23px;
		margin-left: -23px;
		position: relative;
		display: block;
		line-height: 1.2;
	}
	#subnav a::before {
		content: url('images/icon-arrow.svg');
		display: block;
		position: absolute;
		opacity: 0;
		width: 18px;
		top: 5px;
		left: -23px;
		transition: left .3s, opacity .5s;
	}
	#subnav a:hover {
		margin-left: 0;
		padding-right: 0;
	}
	#subnav a:hover::before {
		left: 0;
		opacity: 1;
	}
	#subnav > div > div > ul, #subnav > div > div > div {
		margin: 20px 20px 50px 20px;
		flex-grow: 1;
		flex-basis: 22%;
	}
	#subnav ul li {
		margin: 5px 0;
		overflow: hidden;
	}
	#subnav ul li:first-of-type {
		text-transform: uppercase;
		font-weight: bold;
		border-bottom: 1px solid #fff;
		margin: 10px 0;
		height: 50px;
		display: flex;
		padding-bottom: 5px;
	}
	#subnav ul li:first-of-type span {
		max-width: 90%;
		line-height: 1.1;
		align-items: flex-end;
		display: flex;
	}
	#subnav > div > div > ul.mobile-only {
		display: none;
	}
}
/* IF THIS CHANGES ALSO CHANGE THE WIDTH IN COMMON.JS - IN 2 PLACES */
@media all and (max-width: 1239px) {
	#subnav #arrow {
		display: none;
	}
	#subnav > div > div {
		position: absolute;
		display: block;
		opacity: 1;
		height: calc(100vh - 136px);
		top: 0;
		right: -100vw;
		transition: all .3s;
		background: var(--primary-color);
		width: 100vw;
		z-index: 99999;
		overflow-y: auto;
		padding-bottom: 70px;
	}
	#subnav > div > div#client-support-mobile {
		padding-bottom: 0;
	}
	#subnav > div > div.mobile-active {
		right: 0;
	}
	#subnav > div > div a, #subnav > div > div span {
		color: #fff;
		display: block;
		padding: 10px 40px;
		cursor: pointer;
	}
	#subnav > div > div span, #subnav > div > div > ul.mobile-only a {
		font-weight: bold;
	}
	#subnav > div > div > ul.mobile-only > li:first-of-type a {
		text-transform: uppercase;
		background: url('images/icon-mobile-arrow-left.svg') no-repeat left 40px center;
		background-size: 15px;
		padding-left: 80px;
		margin-top: 25px;
		font-size: 15px;
		letter-spacing: 5px;
		line-height: 1.1;
	}
	#subnav > div > div ul span {
		position: relative;
	}
	#subnav > div > div ul span::before, #subnav > div > div ul span::after {
		content: "";
		position: absolute;
		top: calc(50% - 8px);
		right: 40px;
		height: 15px;
		width: 15px;
		background: url('images/icon-mobile-collapse.svg') no-repeat center center;
		background-size: 15px;
	}
	#subnav > div > div ul span::after {
		transform: rotate(90deg);
		transform-style: preserve-3d;
		transition: all .3s;
	}
	#subnav > div > div ul.open span::after {
		transform: rotate(0deg);
	}
	#subnav > div > div li {
		height: 0;
		overflow: hidden;
		transition: all .3s;
	}
	#subnav > div > div ul {
		background: #000;
		padding-bottom: 0px;
		transition: all .3s;
	}
	#subnav > div > div ul.open {
		padding-bottom: 20px;
	}
	#subnav > div > div ul.open li:not(:first-of-type) {
		height: 47px;
	}
	#subnav > div > div ul.open li a {
		line-height: 1.1;
	}
	#subnav > div > div ul.open li:nth-of-type(2) {
		position: relative;
		height: 67px;
		padding-top: 20px;
	}
	#subnav > div > div ul li:nth-of-type(2)::after {
		content: "";
		position: absolute;
		overflow: hidden;
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		margin-top: -10px;
		width: 0;
		height: 0;
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		border-top: 10px solid var(--primary-color);
		transition: all .3s;
	}
	#subnav > div > div ul.open li:nth-of-type(2)::after {
		margin-top: 0px;
	}
	#subnav > div > div .mobile-only li, #subnav > div > div li:first-of-type {
		background: var(--primary-color);
		height: auto;
	}
}
@media all and (max-width: 779px) {
	#subnav > div > div {
		height: calc(100vh - 116px);
	}
}

#banner-wrapper {
	position: relative;
	height: calc(100vh - 150px);
}
#banner-wrapper img {
	max-height: 80%;
}
.owl-carousel, .owl-stage-outer, .owl-stage, .owl-item, .owl-item > div {
	width: 100%;
	height: 100%;
}
.owl-item > div {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
}
.owl-item > div > div {
	flex-basis: 30%;
	flex-shrink: 0;
	margin: -30px 0 0 6%;
}
.owl-item.active > div > div {
	animation-name: slideFadeIn;
	animation-duration: 2s;
}
@keyframes slideFadeIn {
	0% {
		transform: translateX(-80px);
		opacity: 0;
	}
	20% {
		transform: translateX(-80px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}
.owl-item > div > img {
	flex-basis: 45%;
	transform: scale(.95);
	transition: 2s;
	flex-shrink: 0;
}
.active > div > img {
	transform: scale(1);
}
.owl-item .banner-heading {
	font-family: var(--heading-font);
	text-transform: uppercase;
	font-size: 100px;
	line-height: .9;
	color: #000;
}
.owl-item button {
	margin-top: 35px;
}
@media all and (max-width: 1879px) {
	.owl-item .banner-heading {
		font-size: 66px;
	}	
}
@media all and (max-width: 1299px) {
	.owl-item > div > div {
		flex-basis: 40%;
	}
	.owl-item > div > img {
		flex-basis: 50%;
	}
}
@media all and (max-width: 899px) {
	#banner-wrapper {
		height: auto;
		padding-bottom: 70px;
	}
	.owl-item > div {
		flex-wrap: wrap;
	}
	.owl-item > div > div {
		flex-basis: 90%;
		order: 2;
		margin: 0;
	}
	.owl-item > div > img {
		flex-basis: 70%;
	}
	.owl-item .banner-heading {
		font-size: 60px;
	}
}
#banner-timer {
	position: absolute;
	bottom: -19px;
	left: 0;
	right: 0;
	height: 38px;
	z-index: 997;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
}
#banner-timer > div {
	position: relative;
	float: left;
	width: 33.33%;
	background: #000;
	line-height: 38px;
	color: #fff;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: bold;
	overflow: hidden;
	cursor: pointer;
}
#banner-timer > div:first-of-type {
	border-top-left-radius: 7px;
	border-bottom-left-radius: 7px;
}
#banner-timer > div:nth-of-type(2) {
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}
#banner-timer > div:last-of-type {
	border-top-right-radius: 7px;
	border-bottom-right-radius: 7px;
}
#banner-timer span {
	position: relative;
	z-index: 99;
	padding-left: 30px;
}
@media all and (max-width: 529px) {
	#banner-timer span {
		padding-left: 10px;
	}
}
@media all and (max-width: 449px) {
	#banner-timer span {
		font-size: 11px;
	}
}
@media all and (max-width: 399px) {
	#banner-timer span {
		padding-left: 5px;
		font-size: 10px;
	}
}
@media all and (max-width: 339px) {
	#banner-timer span {
		font-size: 9px;
	}
}
#banner-timer > div > div {
	position: absolute;
	height: 100%;
	width: 0;
	background-color: var(--primary-color);
}
#banner-timer > div > div.fade-out {
	animation-name: timerFadeOut;
	animation-duration: 1s;
}
@keyframes timerFadeOut {
	0% {
		background-color: var(--primary-color);
	}
	100% {
		background-color: #000;
	}
}

#static-banner-wrapper, .content-banner-wrapper {
	position: relative;
	overflow: hidden;
}
#static-banner-wrapper::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .75));
	width: 100%;
	height: 100%;
	z-index: 20;
}
#static-banner-wrapper > div {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: -15px auto 0 auto;
	z-index: 21;
	text-align: center;
	padding: 0 15px;
}
#static-banner-wrapper > div img {
	display: inline-block;
	width: 70%;
	max-width: 450px;
}
#static-banner-wrapper > div span {
	display: inline-block;
	color: #fff;
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 4px;
	margin-top: 15px;
	line-height: 1.2;
}
@media all and (max-width: 799px) {
	#static-banner-wrapper > img, .content-banner-wrapper > img {
		max-width: 160%;
		width: 160%;
		margin-left: -30%;
	}
	#static-banner-wrapper > div span {
		font-size: 14px;
		margin-top: 5px;
	}
}

#page-heading-wrapper {
	position: relative;
	padding: 90px 10px 160px 10px;
	background: #dbdbdb;
}
#page-heading-wrapper::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	width: 100%;
	background: url('images/arc.png') no-repeat center bottom;
	background-size: 100%;
	height: 100%;
	z-index: 20;
}
@media all and (max-width: 1600px) {
	#page-heading-wrapper::after {
		background-size: 1600px;
	}
}
@media all and (max-width: 800px) {
	#page-heading-wrapper::after {
		background-image: url('images/arc-mobile.png');
		background-size: 800px;
	}
}
#page-heading-wrapper h6 {
	position: relative;
	z-index: 21;
}
#page-heading-wrapper h6 a {
	color: inherit;
}
#page-heading-wrapper h6 a:hover {
	color: var(--primary-color);
}
#page-heading-wrapper.phw-bottom-wrapper {
	margin-bottom: 70px;
	background: #f8f8f8 no-repeat top center;
	background-size: 100% auto;
	background-attachment: fixed;
}
@media all and (max-width: 2000px) {
	#page-heading-wrapper.phw-bottom-wrapper {
		background-size: 2000px auto;
	}
}
@media all and (max-width: 799px) {
	#page-heading-wrapper.phw-bottom-wrapper {
		background-size: 1250px auto;
	}
}
#page-heading-wrapper .phw-bottom {
	position: absolute;
	bottom: -20px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 175px;
	height: auto;
	z-index: 21;
}
#page-heading-wrapper .phw-left, #page-heading-wrapper .phw-right {
	position: absolute;
	height: 100%;
	bottom: 0;
}
#page-heading-wrapper .phw-above {
	z-index: 21;
}
#page-heading-wrapper .phw-left {
	left: 180px;
}
#page-heading-wrapper .phw-right {
	right: 180px;
}
@media all and (max-width: 1599px) {
	#page-heading-wrapper .phw-left {
		left: 100px;
	}
	#page-heading-wrapper .phw-right {
		right: 100px;
	}
}
@media all and (max-width: 1349px) {
	#page-heading-wrapper .phw-left, #page-heading-wrapper .phw-right {
		top: auto;
		bottom: 10px;
	}
	#page-heading-wrapper .phw-left {
		left: 20px;
	}
	#page-heading-wrapper .phw-right {
		right: 20px;
	}
}
@media all and (max-width: 1199px) {
	#page-heading-wrapper .phw-left, #page-heading-wrapper .phw-right {
		display: none;
	}
}
@media all and (max-width: 799px) {
	#page-heading-wrapper {
		padding: 80px 10px;
	}
	#page-heading-wrapper h6 {
		display: none;
	}
	#page-heading-wrapper .phw-bottom {
		width: 150px;
		bottom: -15px;
	}
	#page-heading-wrapper.phw-bottom-wrapper {
		margin-bottom: 60px;
	}
	#page-heading-wrapper.phw-bottom-wrapper h1 {
		margin-bottom: 80px;
	}
}

#about-wrapper > div {
	position: relative;
}
#about-wrapper > div:first-of-type {
	padding-bottom: 260px;
}
#about-wrapper > div:last-of-type {
	padding-top: 150px;
}
#about-illustration {
	position: absolute;
	top: -230px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: calc(100% - 40px);
	max-width: 740px;
}
@media all and (max-width: 739px) {
	#about-wrapper > div:first-of-type {
		padding-bottom: 200px;
	}
	#about-wrapper > div:last-of-type {
		padding-top: 200px;
	}
	#about-illustration {
		top: -150px;
	}
}
@media all and (max-width: 639px) {
	#about-wrapper > div:first-of-type {
		padding-bottom: 170px;
	}
	#about-wrapper > div:last-of-type {
		padding-top: 170px;
	}
	#about-illustration {
		top: -150px;
	}
}
@media all and (max-width: 539px) {
	#about-wrapper > div:first-of-type {
		padding-bottom: 140px;
	}
	#about-wrapper > div:last-of-type {
		padding-top: 140px;
	}
	#about-illustration {
		top: -120px;
	}
}
@media all and (max-width: 439px) {
	#about-wrapper > div:first-of-type {
		padding-bottom: 110px;
	}
	#about-wrapper > div:last-of-type {
		padding-top: 110px;
	}
	#about-illustration {
		top: -90px;
	}
}

#services-wrapper > div > div > div {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-top: 110px;
}
#services-wrapper > div > div > div:first-of-type {
	margin-top: 50px;
}
#services-wrapper > div > div > div > img {
	width: 44%;
}
#services-wrapper > div > div > div > div {
	width: calc(56% - 70px);
}
#services-wrapper > div > div > div:nth-of-type(even) img {
	order: 2;
}
@media all and (max-width: 999px) {
	#services-wrapper > div > div > div > img {
		flex-shrink: 0;
		width: 100%;
		flex-basis: 100%;
		order: 1;
		margin-bottom: 30px;
	}
	#services-wrapper > div > div > div > div {
		flex-shrink: 0;
		width: 100%;
		flex-basis: 100%;
		order: 2;
	}
}

.link-arrow {
	display: inline-block;
	font-weight: bold;
	position: relative;
	padding-right: 25px;
}
.link-arrow:hover {
	padding-right: 35px;
}
.link-arrow svg {
	position: absolute;
	top: 9px;
	right: 0;
	width: 17px;
	transition: .3s;
}
.link-arrow svg path {
	fill: var(--primary-color) !important;
	transition: .3s;
}
.link-arrow:hover svg path {
	fill: #000 !important;
}

.polaroid-wrapper {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	padding-top: 40px;
	padding-bottom: 40px;
}
.page-template-template-transformations .polaroid-wrapper {
	justify-content: flex-start;
}
.polaroid-wrapper > a {
	color: inherit;
	margin-bottom: 40px;
	background: #fff;
	transform: translateY(0);
	box-shadow: 0 5px 6px 0 rgba(0, 0, 0, .1);
    flex-basis: calc(33.3% - 30px);
	border-radius: 7px;
	overflow: hidden;
}
#polaroid-wrapper-double {
	justify-content: space-between;
	padding-top: 20px;
	text-align: center;
}
#polaroid-wrapper-double > a {
    flex-basis: calc(50% - 20px);
}
.polaroid-wrapper > a:nth-of-type(3n + 2) {
	margin-left: 45px;
	margin-right: 45px;
}
.home .polaroid-wrapper > a:nth-of-type(3n + 2), #polaroid-wrapper-double > a:nth-of-type(3n + 2) {
	margin-left: 0;
	margin-right: 0;
}
.polaroid-wrapper > a:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 24px 7px rgba(0, 0, 0, .15);
}
@media all and (max-width: 1119px) {
	.page-template-template-transformations .polaroid-wrapper {
		justify-content: space-between;
	}
	.polaroid-wrapper > a {
		flex-basis: calc(50% - 20px);
	}
	.polaroid-wrapper > a:nth-of-type(3n + 2) {
		margin-left: 0;
		margin-right: 0;
	}
}
@media all and (max-width: 749px) {
	.polaroid-wrapper {
		justify-content: space-around;
	}
	.polaroid-wrapper > a {
		flex-basis: 450px;
		flex-shrink: 1;
	}
}
.polaroid-wrapper > a > div:first-of-type {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 0px;
	padding-top: 63.8%;
}
.polaroid-wrapper > a > div:first-of-type::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .75));
	width: 100%;
	height: 100%;
	z-index: 20;
}
.polaroid-wrapper > a > div:first-of-type img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 70%;
	margin: auto;
	z-index: 21;
}
.polaroid-wrapper > a > div:last-of-type {
	padding: 30px;
}
.polaroid-wrapper p {
	font-size: 16px;
}
.polaroid-wrapper p:first-of-type {
	font-weight: bold;
	font-size: 22px;
	line-height: 1.2;
	transition: all .3s;
}
.polaroid-wrapper > a:hover p:first-of-type {
	color: var(--primary-color);
}

#team-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
}
#team-wrapper > div {
	flex-basis: calc(33% - 20px);
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
	margin-bottom: 80px;
}
#team-wrapper > div:nth-of-type(3n + 2) {
	margin-left: 30px;
	margin-right: 30px;
}
@media all and (max-width: 979px) {
	#team-wrapper {
		justify-content: space-between;
	}
	#team-wrapper > div {
		flex-basis: calc(50% - 20px);
	}
	#team-wrapper > div:nth-of-type(3n + 2) {
		margin-left: 0;
		margin-right: 0;
	}
}
@media all and (max-width: 619px) {
	#team-wrapper > div {
		flex-basis: 100%;
		justify-content: space-around;
	}
}
#team-wrapper > div p:first-of-type {
	font-family: var(--heading-font);
	font-size: 38px;
	line-height: 1.1;
	margin-bottom: 5px;
	transition: all .3s;
}
#team-wrapper > div:hover p:first-of-type {
	color: var(--primary-color);
}
#team-wrapper > div > div {
	position: relative;
}
#team-wrapper > div > div > img {
	position: relative;
	z-index: 10;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	margin-bottom: 20px;
	opacity: 1;
	transition: all .3s;
}
#team-wrapper > div > div > img:first-of-type {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
}
#team-wrapper > div:hover > div > img:last-of-type {
	opacity: 0;
}
#team-overlay {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	margin: 0 auto;
	width: 0;
	height: 0;
	overflow: hidden;
	z-index: 999999;
	background: #fff;
	border-radius: 50%;
	margin-bottom: -50vh;
	transition: all .9s;
}
#team-overlay.open {
	width: 220vh;
	height: 220vh;
	border-radius: 50% 50% 0 0;
}
#team-overlay > div {
	position: relative;
	z-index: 999999;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	height: 100vh;
	width: 100vw;
	transition: opacity .4s;
	opacity: 0;
	margin: 70vh auto 0 auto;
}
#team-overlay.open > div {
	opacity: 1;
	transition-delay: .8s;
}
#team-overlay > div > div:first-of-type {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	padding-top: 30px;
	padding-bottom: 30px;
}
#team-overlay > div > div:first-of-type > img {
	flex-basis: 33%;
	max-width: 33%;
	border-radius: 5px;
	margin-bottom: 30px;
}
#team-overlay > div > div:first-of-type > div {
	flex-basis: calc(67% - 40px);
}
@media all and (max-width: 859px) {
	#team-overlay > div > div:first-of-type > img {
		flex-basis: 100%;
		max-width: 400px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	#team-overlay > div > div:first-of-type > div {
		flex-basis: 100%;
	}
}
#team-overlay > div > div:first-of-type h2 {
	margin: 15px 0 10px 0;
}
#team-overlay > div > div:first-of-type h6 {
	font-size: 16px;
	margin-bottom: 30px;
}
#team-overlay > div > div:last-of-type {
	background: #f9f9f9;
	padding-top: 45px;
	padding-bottom: 30px;
	font-family: var(--alt-font);
	font-size: 32px;
	font-style: italic;
	line-height: 1.3;
	text-align: center;
	margin-bottom: 20px;
}
#team-overlay-close {
	display: block;
	margin: 35px auto 50px auto;
	width: 60px;
	height: 60px;
	padding: 15px;
	border-radius: 30px;
	background: var(--primary-color);
	transition: all .3s;
}
#team-overlay-close:hover {
	background: #000;
}
#team-overlay-close svg {
	display: block;
	width: 30px;
	transform: rotate(45deg);
}

#top-level-wrapper {
	padding-top: 100px;
}
#top-level-wrapper > div {
	background: #fff;
	padding: 90px 0;
}
#top-level-wrapper > div:nth-of-type(even) {
	background: #f8f8f8;
}
#top-level-wrapper > div > div {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
}
#top-level-wrapper > div:nth-of-type(even) > div {
	flex-direction: row-reverse;
}
#top-level-wrapper > div > div > div:first-of-type {
	flex-basis: 20%;
}
#top-level-wrapper > div > div > div:nth-of-type(2) {
	flex-basis: calc(55% - 140px);
}
#top-level-wrapper > div > div > div:last-of-type {
	flex-basis: 25%;
}
#top-level-wrapper > div > div > div h6 {
	position: relative;
	margin-top: 50px;
	color: #a3a3a3;
}
#top-level-wrapper > div > div > div h6::before {
	content: "/";
	display: block;
	position: absolute;
	top: 0;
	left: -20px;
}
@media all and (max-width: 1349px) {
	#top-level-wrapper > div > div > div h6 {
		margin-left: 20px;
	}
}
#top-level-wrapper > div > div > div > img {
	width: 100%;
	margin-top: -140px;
}
@media all and (max-width: 1049px) {
	#top-level-wrapper > div > div {
		flex-wrap: wrap;
		justify-content: space-around;
	}
	#top-level-wrapper > div:nth-of-type(even) > div {
		flex-direction: row;
	}
	#top-level-wrapper > div > div > div:first-of-type {
		flex-basis: 280px;
	}
	#top-level-wrapper > div > div > div:nth-of-type(2) {
		flex-basis: 100%;
	}
	#top-level-wrapper > div > div > div:last-of-type {
		flex-basis: 100%;
	}
	#top-level-wrapper > div > div > div h2 {
		text-align: center;
	}
}

#transformations-intro-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
#transformations-intro-wrapper > div:first-of-type {
	flex-basis: calc(100% - 340px);
}
#transformations-intro-wrapper > div:last-of-type {
	flex-basis: 280px;
	padding-top: 80px;
}
#transformations-intro-wrapper h6 {
	position: relative;
}
#transformations-intro-wrapper h6::before {
	content: "/";
	display: block;
	position: absolute;
	top: 0;
	left: -20px;
}
@media all and (max-width: 899px) {
	#transformations-intro-wrapper h1 {
		text-align: center;
	}
	#transformations-intro-wrapper > div:first-of-type {
		flex-basis: 100%;
	}
	#transformations-intro-wrapper > div:last-of-type {
		flex-basis: 100%;
		padding-top: 40px;
	}
	#transformations-intro-wrapper h6 {
		padding-left: 20px;
	}
	#transformations-intro-wrapper h6::before {
		left: 0;
	}
}
.transform-quote {
	font-family: var(--alt-font);
	font-size: 32px;
	font-style: italic;
	line-height: 1.4;
}
@media all and (max-width: 499px) {
	.transform-quote {
		font-size: 24px;
	}	
}
.transform-quote-author {
	text-transform: uppercase;
	font-size: 12px;
	color: #a3a3a3;
	font-weight: bold;
	letter-spacing: 2px;
	margin: 20px 0;
}
.transform-quote-image {
	display: inline-block;
	width: 130px;
	padding: 4px;
	border: 2px solid #ff0000;
	border-radius: 50%;
	margin-bottom: 20px;
}
.single-transformations h6 {
	color: #a3a3a3;
}
.single-transformations p.bigfont.bold {
	margin-bottom: 21px;
	font-weight: 600;
	color: #000;
}

#news-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}
#news-nav a {
	dipslay: inline-block;
	margin: 0 15px;
	color: #777;
	font-weight: 600;
}
#news-nav a:hover {
	color: #000;
}
#news-nav a.active {
	color: var(--primary-color);
}
@media all and (max-width: 960px) {
	#news-nav {
		display: none;
	}
	#main-news-wrapper {
		padding-top: 40px;
	}
}
#main-news-wrapper > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
#main-news-wrapper > div > a {
	flex-basis: calc(33.333% - 30px);
	margin-bottom: 80px;
	color: #222;
}
#main-news-wrapper > div > a:nth-of-type(3n + 2) {
	margin-left: 45px;
	margin-right: 45px;
}
#main-news-wrapper > div > a > div:first-of-type {
	width: 100%;
	padding-top: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 10px;
	transition: all .3s;
	transform: translateY(0);
	margin-bottom: 25px;
}
#main-news-wrapper > div > a:hover > div:first-of-type {
	transform: translateY(-10px);
}
#main-news-wrapper > div > a > div:last-of-type img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
}
#main-news-wrapper > div > a > div:last-of-type h6 {
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 0;
	color: #a3a3a3;
}
#main-news-wrapper > div > a > div:last-of-type p {
	font-size: 16px;
}
#main-news-wrapper > div > a > div:last-of-type p.heading {
	font-weight: bold;
	color: #000;
	font-size: 18px;
	transition: all .3s;
	margin-bottom: 10px;
	line-height: 1.2;
}
#main-news-wrapper > div > a:hover > div:last-of-type p.heading {
	color: var(--primary-color);
}
@media all and (max-width: 1079px) {
	#main-news-wrapper > div {
		justify-content: space-between;
	}
	#main-news-wrapper > div > a {
		flex-basis: calc(50% - 20px);
	}
	#main-news-wrapper > div > a:nth-of-type(3n + 2) {
		margin-left: 0;
		margin-right: 0;
	}
}
@media all and (max-width: 719px) {
	#main-news-wrapper > div > a {
		flex-basis: 100%;
	}
}
#pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 50px;
}
#pagination a {
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	font-weight: 600;
	flex-basis: 55px;
	width: 55px;
	height: 55px;
	line-height: 51px;
	border: 2px solid #d1d1d1;
	border-radius: 50%;
	background: #fff;
	color: #000;
	margin: 0 10px;
}
#pagination a:hover {
	color: #fff;
	background: var(--primary-color);
	border-color: var(--primary-color);
}
#pagination a.pagination-page {
	border-color: transparent;
	background: transparent;
}
#pagination a.pagination-page:hover {
	color: var(--primary-color);
}
#pagination a.pagination-page.active {
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
}
#pagination .pagination-arrow.inactive {
	visibility: hidden;
}
#pagination .pagination-arrow svg {
	width: 18px;
	margin-top: 16px;
	margin-left: -2px;
}
#pagination .pagination-arrow:last-of-type svg {
	margin-left: 0;
	margin-right: -2px;
}
#pagination .pagination-arrow svg path {
	fill: #000 !important;
	transition: all .3s;
}
#pagination .pagination-arrow:hover svg path {
	fill: #fff !important;
}
@media all and (max-width: 819px) {
	#pagination a {
		flex-basis: 37px;
		width: 37px;
		height: 37px;
		line-height: 33px;
		margin: 0 3px;
		font-size: 16px;
	}
	#pagination .pagination-arrow svg {
		width: 14px;
		margin-top: 10px;
		margin-left: -2px;
	}
	#pagination .pagination-arrow:last-of-type svg {
		margin-left: 0;
		margin-right: -2px;
	}
}

#news-article-heading {
	background-image: linear-gradient(#f8f8f8, #fff 380px);
}
#news-article-heading h1 {
	position: relative;
	padding-bottom: 60px;
	margin-bottom: 60px;
}
#news-article-heading h1::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 60px;
	height: 2px;
	background: var(--primary-color);
}
#news-article-heading img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
}
#news-article-heading h6 {
	display: inline-block;
}
#news-article-footer h2 {
	position: relative;
	padding-top: 100px;
}
#news-article-footer h2::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 60px;
	height: 2px;
	background: var(--primary-color);
}
#news-article-footer > div > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	padding-top: 50px;
	overflow: hidden;
}
#news-article-footer > div > div > a {
	flex-basis: 33.333%;
	display: block;
	padding: 20px 20px 90px 20px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	transform: translateY(0);
	transition: all .3s;
}
#news-article-footer > div > div > a:first-of-type:hover,
#news-article-footer > div > div > a:last-of-type:hover {
	transform: translateY(10px);
}
#news-article-footer > div > div > a:first-of-type {
	background: #f6f6f6;
	text-align: left;
}
#news-article-footer > div > div > a:last-of-type {
	background: #f6f6f6;
	text-align: right;
}
#news-article-footer > div > div > a:first-of-type p,
#news-article-footer > div > div > a:last-of-type p {
	text-transform: uppercase;
	font-family: var(--heading-font);
	font-size: 40px;
	line-height: 1;
}
#news-article-footer > div > div > a p {
	color: #000;
	transition: all .3s;
}
#news-article-footer > div > div > a:hover p {
	color: var(--primary-color);
}
#news-article-footer > div > div > a svg {
	max-width: 110px;
	margin-top: 10px;
}
#news-article-footer > div > div > a svg path {
	transition: all .3s;
	fill: #888;
}
#news-article-footer > div > div > a:hover svg path {
	fill: var(--primary-color);
}
@media all and (max-width: 859px) {
	#news-article-footer > div > div > a {
		flex-basis: calc(50% - 10px);
	}
	#news-article-footer > div > div > a:nth-of-type(2) {
		display: none;
	}
	#news-article-footer > div > div > a:first-of-type p,
	#news-article-footer > div > div > a:last-of-type p {
		font-size: 30px;
	}
}
@media all and (max-width: 519px) {
	#news-article-footer > div > div > a {
		flex-basis: 100%;
		display: none;
	}
	#news-article-footer > div > div > a:nth-of-type(2) {
		display: block;
		padding-bottom: 50px;
	}
}

#related-transformations-wrapper > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
#related-transformations-wrapper > div > div:first-of-type {
	flex-basis: calc(33.333% - 20px);
	margin-bottom: 70px;
}
#related-transformations-wrapper > div > div:last-of-type {
	flex-basis: calc(66.667% - 20px);
}
#related-transformations-wrapper .heading {
	text-transform: uppercase;
	font-family: var(--heading-font);
	font-size: 44px;
	line-height: 1;
	color: #000;
	margin-bottom: 31px;
}
#related-transformations-wrapper > div > div > h6 {
	position: relative;
	color: #a3a3a3;
}
#related-transformations-wrapper > div > div > h6::before {
	content: "/";
	display: block;
	position: absolute;
	top: 0;
	left: -20px;
}
@media all and (max-width: 1339px) {
	#related-transformations-wrapper > div > div > h6 {
		margin-left: 20px;
	}
}
@media all and (max-width: 1079px) {
	#related-transformations-wrapper > div > div:first-of-type,
	#related-transformations-wrapper > div > div:last-of-type {
		flex-basis: 100%;
	}
}
@media all and (max-width: 679px) {
	#related-transformations-wrapper #polaroid-wrapper-double > a {
		flex-basis: 100%;
	}
}

#home-news-wrapper {
	background: #000;
}
#home-news-wrapper h2 {
	color: #fff;
}
#home-news-wrapper > div > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: stretch;
}
#home-news-wrapper > div > div > a {
	margin-bottom: 45px;
	flex-basis: calc(33.333% - 30px);
	background: #fff;
	overflow: hidden;
	border-radius: 10px;
	transform: translateY(0);
}
#home-news-wrapper > div > div > a:hover {
	transform: translateY(-10px);
}
#home-news-wrapper > div > div > a p {
	font-size: 16px;
}
#home-news-wrapper > div > div > a .heading {
	color: #000;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.2;
	transition: all .3s;
}
#home-news-wrapper > div > div > a:hover .heading {
	color: var(--primary-color);
}
#home-news-wrapper > div > div > a > div:first-of-type {
	width: 100%;
	padding-top: 56.25%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
#home-news-wrapper > div > div > a > div:last-of-type {
	background: #fff;
	padding: 25px 20px 20px 20px;
	color: #222;
}
#home-news-wrapper button:hover {
	color: #000;
	background: #fff;
}
@media all and (max-width: 1119px) {
	#home-news-wrapper > div > div > a {
		flex-basis: calc(50% - 20px);
	}
	#home-news-wrapper > div > div > a:nth-of-type(3n + 2) {
		margin-left: 0;
		margin-right: 0;
	}
}
@media all and (max-width: 749px) {
	#home-news-wrapper > div > div > a {
		flex-basis: 450px;
		flex-shrink: 1;
	}
}

.red-underline {
	position: relative;
}
.red-underline::after {
	content: "";
	display: block;
	height: 2px;
	width: 60px;
	background: #e90003;
	margin: 30px auto 50px auto;
}

.white-arrow-mask, .red-arrow-mask, .light-grey-arrow-mask {
	position: relative;
}
.white-arrow-mask::after, .red-arrow-mask::after, .light-grey-arrow-mask::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 0;
	height: 0;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	border-top: 30px solid #fff;
}
.red-arrow-mask::after {
	border-top: 30px solid var(--primary-color);
}
.light-grey-arrow-mask::after {
	border-top: 30px solid #f8f8f8;
}
.transparent-arrow-mask {
	margin-top: -30px;
	-webkit-clip-path: polygon(50% 30px, calc(50% + 30px) 0, 100% 0, 100% 100%, 0 100%, 0 0, calc(50% - 30px) 0);
	clip-path: polygon(50% 30px, calc(50% + 30px) 0, 100% 0, 100% 100%, 0 100%, 0 0, calc(50% - 30px) 0);
}

#partners-wrapper {
	background: #000;
	color: #fff;
}
#partners-wrapper h2 {
	color: #fff;
}
#partners-wrapper > div > div {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
}
#partners-wrapper > div > div > img {
	flex-basis: calc(25% - 80px);
	width: calc(25% - 80px);
	margin: 25px 40px;
}
@media all and (max-width: 1019px) {
	#partners-wrapper > div > div > img {
		flex-basis: calc(33.33% - 80px);
		width: calc(33.33% - 80px);
	}
}
@media all and (max-width: 719px) {
	#partners-wrapper > div > div {
		justify-content: space-between;
	}
	#partners-wrapper > div > div > img {
		flex-basis: calc(50% - 40px);
		width: calc(50% - 40px);
		margin-left: 0;
		margin-right: 0;
	}
}
@media all and (max-width: 479px) {
	#partners-wrapper > div > div > img {
		flex-basis: calc(50% - 15px);
		width: calc(50% - 15px);
	}
}

#faq-category-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
}
#faq-category-wrapper > a {
	color: inherit;
	margin-bottom: 40px;
	background: #fff;
	transform: translateY(0);
	box-shadow: 0 5px 6px 0 rgba(0, 0, 0, .1);
    flex-basis: calc(33.33% - 30px);
	border-radius: 7px;
	overflow: hidden;
	text-align: center;
}
#faq-category-wrapper > a:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 24px 7px rgba(0, 0, 0, .15);
}
#faq-category-wrapper > a > div:first-of-type {
	display: flex;
	height: 180px;
	justify-content: center;
	align-items: center;
	padding: 5px 15px;
}
#faq-category-wrapper > a > div:last-of-type {
	padding: 20px 30px 15px 30px;
}
#faq-category-wrapper h3 {
	color: #fff;
	font-family: var(--heading-font);
	text-transform: uppercase;
	font-size: 40px;
	margin-bottom: 0;
}
#faq-category-wrapper > a p {
	font-size: 16px;
}
@media all and (max-width: 1019px) {
	#faq-category-wrapper > a {
		flex-basis: calc(50% - 20px);
	}
}
@media all and (max-width: 639px) {
	#faq-category-wrapper > a {
		flex-basis: 100%;
	}
}
#faq-category-page {
	background-image: linear-gradient(#f8f8f8, #fff 380px);
}
#faq-category-page > div > h6 {
	position: relative;
	padding-bottom: 60px;
	margin-bottom: 0;
}
#faq-category-page > div > h6::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 60px;
	height: 2px;
	background: var(--primary-color);
}
#faq-category-page > div > h6 > a {
	color: #888;
}
#faq-category-page > div > h6 > a:hover {
	color: var(--primary-color);
}
#faq-category-page #faq-subcategory-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}
#faq-category-page #faq-subcategory-wrapper > div:first-of-type {
	flex-basis: calc(100% - 340px);
}
#faq-category-page #faq-subcategory-wrapper > div:last-of-type {
	position: relative;
	flex-basis: 300px;
	padding: 25px 25px 100px 25px;
	border-radius: 5px;
	margin-bottom: 50px;
}
#faq-category-page #faq-subcategory-wrapper > div:last-of-type h6 {
	margin-bottom: 20px;
}
#faq-category-page #faq-subcategory-wrapper > div:last-of-type a {
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	line-height: 40px;
	margin-bottom: 5px;
}
#faq-category-page #faq-subcategory-wrapper > div:last-of-type img.icon {
	display: inline-block;
	height: 30px;
	margin-right: 10px;
	vertical-align: middle;
}
#faq-category-page #faq-subcategory-wrapper #help-desk-img {
	position: absolute;
	bottom: -40px;
	height: 100px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
@media all and (max-width: 879px) {
	#faq-category-page #faq-subcategory-wrapper > div:first-of-type {
		flex-basis: 100%;
	}
	#faq-category-page #faq-subcategory-wrapper > div:last-of-type {
		flex-basis: calc(100% + 40px);
		margin-left: -20px;
		margin-right: -20px;
	}
}
#faq-page-pre-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 60px;
	height: 2px;
	background: var(--primary-color);
}
#faq-page-pre-footer {
	position: relative;
	padding-top: 90px;
	margin-top: 70px;
}
#faq-page-pre-footer > div {
	position: relative;
	width: 700px;
	margin: 0 auto;
	padding: 20px 20px 20px 90px;
}
#faq-page-pre-footer > div > img {
	position: absolute;
	left: -40px;
	width: 100px;
}
#faq-page-pre-footer > div p {
	font-size: 14px;
}
#faq-page-pre-footer > div img.icon {
	display: inline-block;
	height: 30px;
	margin-right: 10px;
	vertical-align: middle;
}
#faq-page-pre-footer > div li {
	display: inline-block;
	margin-right: 15px;
}
#faq-page-pre-footer > div a {
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	line-height: 35px;
	margin-bottom: 5px;
}
@media all and (max-width: 819px) {
	#faq-page-pre-footer > div {
		padding: 20px 20px 90px 20px;
		width: 100%;
		margin-bottom: 50px;
	}
	#faq-page-pre-footer > div > img {
		left: calc(50% - 60px);
		bottom: -50px;
	}
	#faq-page-pre-footer > div li {
		display: block;
	}
}

.call-to-action {
	background: var(--primary-color);
	text-align: center;
	color: #fff;
}
.call-to-action p, .wp-block-epicit-blocks-call-to-action p, .wp-block-epicit-blocks-call-to-action-it p {
	text-transform: uppercase;
	font-size: 58px;
	line-height: 1.1;
	font-family: var(--heading-font);
	margin-bottom: 35px;
}
.call-to-action p a {
	color: #fff;
}
.call-to-action p a:hover {
	color: #000;
}
#contact-form-wrapper {
	background: #000;
	color: #fff;
	text-align: center;
	transition: all .5s;
	position: relative;
	overflow: hidden;
}
#contact-form-wrapper > div p {
	color: #ccc;
}
#contact-form-wrapper > div p:first-of-type {
	color: #fff;
	font-size: 28px;
	font-weight: bold;
}
#contact-form-wrapper form {
	width: 100%;
	max-width: 800px;
	margin: 40px auto 0 auto;
}
#contact-form-wrapper form > div {
	text-align: left;
	display: flex;
	flex-wrap: wrap;
}
#contact-form-wrapper form > div > div {
	padding: 0 20px;
	width: 50%;
}
#contact-form-wrapper form > div > div:last-of-type {
	width: 100%;
}
.black-form label {
	display: block;
	font-size: 16px;
	font-weight: 600;
}
.black-form input, .black-form textarea, .black-form select {
	border: 2px solid #fff;
	background: #000;
	color: #fff;
	padding: 15px 20px;
	border-radius: 5px;
	font: inherit;
	font-size: 16px;
	width: 100%;
	margin-bottom: 20px;
	box-shadow: none;
	transition: all .3s;
}
.black-form select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #000 url('images/dropdown-arrow.png') no-repeat right 15px center;
    background-size: 18px 12px;
	padding-right: 40px;
}
.black-form select:focus {
	background-image: url('images/dropdown-arrow-up.png');
}
.black-form textarea {
	height: 180px;
	resize: none;
}
.black-form input:focus, .black-form select:focus, .black-form textarea:focus {
	border-color: var(--primary-color);
}
@media all and (max-width: 739px) {
	.call-to-action p {
		font-size: 48px;
	}
	#contact-form-wrapper form > div > div {
		width: 100%;
		padding: 0;
	}
}
@media all and (max-width: 419px) {
	.call-to-action p {
		font-size: 42px;
	}
}

footer {
	position: relative;
	z-index: 10;
	text-align: center;
	padding: 60px 20px;
	background: #fff;
}
footer > div {
	display: flex;
	justify-content: space-around;
}
footer > div > div {
	flex-grow: 1;
	flex-basis: 0;
}
footer > div > div p {
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 3px;
	font-size: 16px;
}
footer > div > div table {
	margin: 0 auto 7px auto;
}
footer > div > div table tr > td {
	text-align: left;
}
footer > div > div table tr > td:first-of-type {
	padding-right: 20px;
}
footer > div > div span {
	font-size: 14px;
}
footer .social {
	display: flex;
	justify-content: center;
}
footer .social a {
	width: 46px;
	margin: 0 10px;
}
footer .social svg, footer .social svg path {
	transition: all .3s;
}
footer .social svg:hover path {
	fill: #000;
}
footer ul {
	display: flex;
	justify-content: center;
	margin-top: 50px;
	font-size: 14px;
	text-transform: uppercase;
	color: #b2b2b2;
	font-weight: 600;
}
footer ul li {
	margin: 0 20px;
}
footer ul a {
	color: #b2b2b2;
}
footer ul a:hover {
	color: var(--primary-color);
}
@media all and (max-width: 719px) {
	footer > div {
		flex-wrap: wrap;
	}
	footer > div > div {
		flex-basis: 400px;
		margin-bottom: 50px;
	}
	footer > div > div:nth-of-type(2) {
		order: 3;
	}
}
@media all and (max-width: 499px) {
	footer > div > div {
		flex-basis: 280px;
	}
	footer ul li {
		margin: 0 10px;
	}
}
@media all and (max-width: 439px) {
	footer ul {
		flex-wrap: wrap;
		margin-top: 0;
	}
	footer ul li {
		flex-shrink: 0;
		flex-basis: 280px;
		margin-top: 20px;
	}
	footer ul li:first-of-type {
		order: 3;
	}
}
@media all and (max-width: 359px) {
	footer > div > div table tr > td {
		font-size: 16px;
	}
}

#crn-award-wrapper {
	background: var(--primary-color);
	display: flex;
	align-items: flex-start;
	border-radius: 15px;
	color: #fff;
}
#crn-award-wrapper > div {
	padding: 40px;
}
#crn-award-wrapper > div > p {
	font-size: 20px;
	margin-bottom: 25px;
}
#crn-award-wrapper > div > h2 {
	margin-bottom: 15px;
	color: #fff;
}
#crn-award-wrapper > img {
	max-width: 450px;
	margin: -15px 0 40px 0;
}
@media all and (max-width: 1119px) {
	#crn-award-wrapper {
		position: relative;
		flex-wrap: wrap;
		padding: 40px;
	}
	#crn-award-wrapper > div {
		flex-basis: 100%;
		text-align: center;
		padding: 0;
	}
	#crn-award-wrapper > img {
		flex-basis: 1;
		margin: 10px auto 120px auto;
		width: 100%;
	}
	#crn-award-wrapper > div a {
		position: absolute;
		bottom: 40px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
}
@media all and (max-width: 599px) {
	#crn-award-wrapper {
		padding: 30px;
	}
	#crn-award-wrapper button {
		width: calc(100% - 60px);
	}
}

.bg-white {
	background-color: #fff;
}
.bg-light-grey {
	background-color: #f8f8f8;
}
.bg-grey {
	background-color: #9d9d9d;
}
.bg-red {
	background-color: #e90000;
}
.bg-gold {
	background-color: #f59f1a;
}

.grecaptcha-badge {
	visibility: hidden;
}
.recpatcha-disclaimer {
	font-size: 14px !important;
	font-weight: normal !important;
	color: #555 !important;
	line-height: 1.1 !important;
	margin: -10px 0 25px 0 !important;
}
.recpatcha-disclaimer > a {
	color: #777 !important;
}
.recpatcha-disclaimer > a:hover {
	color: #999 !important;
}

/* Custom Blocks styles
-----------------------------------------------------------------*/
.block-dual-text-image > div, .wp-block-epicit-blocks-dual-image > div > div, .wp-block-epicit-blocks-dual-video > div > div {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}
.block-dual-text-image > div > *, .wp-block-epicit-blocks-dual-image > div > div > *, .wp-block-epicit-blocks-dual-video > div > div > * {
	flex-basis: calc(50% - 30px);
	width: calc(50% - 30px);
}
.block-dual-text-image.image-start-right > div.full-width > div, .wp-block-epicit-blocks-dual-image > div.image-start-right.full-width > div > div, .wp-block-epicit-blocks-dual-video > div.video-start-right.full-width > div > div:nth-of-type(odd) {
	padding-left: 20px;
}
.block-dual-text-image.image-start-left > div.full-width > div, .wp-block-epicit-blocks-dual-image  > div.image-start-left.full-width > div > div, .wp-block-epicit-blocks-dual-video > div.video-start-left.full-width > div > div:nth-of-type(odd) {
	padding-right: 20px;
}
.block-dual-text-image.image-start-right > div:nth-of-type(odd) > div, .block-dual-text-image.image-start-left > div:nth-of-type(even) > div,
.block-dual-text-image.image-start-right > div:nth-of-type(even) > img, .block-dual-text-image.image-start-left > div:nth-of-type(odd) > img,
.wp-block-epicit-blocks-dual-image .image-start-right > div:nth-of-type(odd) > div, .wp-block-epicit-blocks-dual-image .image-start-left > div:nth-of-type(even) > div,
.wp-block-epicit-blocks-dual-image .image-start-right > div:nth-of-type(even) > img, .wp-block-epicit-blocks-dual-image .image-start-left > div:nth-of-type(odd) > img,
.wp-block-epicit-blocks-dual-video .video-start-right > div > div:nth-of-type(odd), .wp-block-epicit-blocks-dual-video .video-start-left > div > div:nth-of-type(even) {
	order: 1;
}
.block-dual-text-image.image-start-right > div:nth-of-type(odd) > img, .block-dual-text-image.image-start-left > div:nth-of-type(even) > img,
.block-dual-text-image.image-start-right > div:nth-of-type(even) > div, .block-dual-text-image.image-start-left > div:nth-of-type(odd) > div,
.wp-block-epicit-blocks-dual-image .image-start-right > div:nth-of-type(odd) > img, .wp-block-epicit-blocks-dual-image .image-start-left > div:nth-of-type(even) > img,
.wp-block-epicit-blocks-dual-image .image-start-right > div:nth-of-type(even) > div, .wp-block-epicit-blocks-dual-image .image-start-left > div:nth-of-type(odd) > div,
.wp-block-epicit-blocks-dual-video .video-start-right > div > div:nth-of-type(even), .wp-block-epicit-blocks-dual-video .video-start-left > div > div:nth-of-type(odd) {
	order: 2;
}
@media all and (max-width: 839px) {
	/* Make sure images and videos are always on top for mobile */
	.block-dual-text-image.image-start-right > div:nth-of-type(even) > img, .block-dual-text-image.image-start-left > div:nth-of-type(odd) > img,
	.block-dual-text-image.image-start-right > div:nth-of-type(odd) > img, .block-dual-text-image.image-start-left > div:nth-of-type(even) > img,
	.wp-block-epicit-blocks-dual-image .image-start-right > div:nth-of-type(even) > img, .wp-block-epicit-blocks-dual-image .image-start-left > div:nth-of-type(odd) > img,
	.wp-block-epicit-blocks-dual-image .image-start-right > div:nth-of-type(odd) > img, .wp-block-epicit-blocks-dual-image .image-start-left > div:nth-of-type(even) > img,
	.wp-block-epicit-blocks-dual-video .video-start-right > div > div:nth-of-type(even), .wp-block-epicit-blocks-dual-video .video-start-left > div > div:nth-of-type(even) {
		order: 1;
	}
	.block-dual-text-image.image-start-right > div:nth-of-type(odd) > div, .block-dual-text-image.image-start-left > div:nth-of-type(even) > div,
	.block-dual-text-image.image-start-right > div:nth-of-type(even) > div, .block-dual-text-image.image-start-left > div:nth-of-type(odd) > div,
	.wp-block-epicit-blocks-dual-image .image-start-right > div:nth-of-type(odd) > div, .wp-block-epicit-blocks-dual-image .image-start-left > div:nth-of-type(even) > div,
	.wp-block-epicit-blocks-dual-image .image-start-right > div:nth-of-type(even) > div, .wp-block-epicit-blocks-dual-image .image-start-left > div:nth-of-type(odd) > div,
	.wp-block-epicit-blocks-dual-video .video-start-right > div > div:nth-of-type(odd), .wp-block-epicit-blocks-dual-video .video-start-left > div > div:nth-of-type(odd) {
		order: 2;
	}
	.block-dual-text-image > div > *, .wp-block-epicit-blocks-dual-image > div > div > *, .wp-block-epicit-blocks-dual-video > div > div > * {
		flex-basis: 100%;
	}
	.block-dual-text-image > div > img, .wp-block-epicit-blocks-dual-image > div > div > img {
		margin: 0 auto 30px auto;
		max-width: 600px;
	}
	.wp-block-epicit-blocks-dual-video > div > div > div:nth-of-type(even) {
		margin: 0 auto 30px auto;
	}
	.block-dual-text-image.image-start-right > div.full-width > div, .wp-block-epicit-blocks-dual-image > div.image-start-right.full-width > div > div,
	.block-dual-text-image.image-start-left > div.full-width > div, .wp-block-epicit-blocks-dual-image > div.image-start-left.full-width > div > div,
	.wp-block-epicit-blocks-dual-video > div.video-start-left.full-width > div > div:nth-of-type(odd), .wp-block-epicit-blocks-dual-video > div.video-start-right.full-width > div > div:nth-of-type(odd) {
		padding-left: 20px;
		padding-right: 20px;
	}
	.wp-block-epicit-blocks-dual-video > div.video-start-left.full-width > div > div:nth-of-type(even), .wp-block-epicit-blocks-dual-video > div.video-start-right.full-width > div > div:nth-of-type(even) {
		padding-left: 0;
		padding-right: 0;
	}
}
.wp-block-epicit-blocks-dual-image .medium-image img {
	max-width: 400px;
	margin: 0 auto;
}

.block-quote, .wp-block-epicit-blocks-epic-quote {
	background: #ff686d url('images/quote-wave.png') repeat-x bottom center;
	background-size: 1540px auto;
	padding-top: 50px;
	margin-bottom: 120px;
	color: #fff;
	font-family: var(--alt-font);
	font-size: 32px;
	font-style: italic;
	line-height: 1.3;
	text-align: center;
}
.block-quote > div > p:last-of-type, .wp-block-epicit-blocks-epic-quote > div > p:last-of-type {
	text-transform: uppercase;
	font-style: italic;
	font-weight: 600;
	margin: 20px 0 50px 0;
	font-size: 14px;
	color: #000;
	font-family: var(--main-font);
	letter-spacing: 2px;
}
.block-quote > div > img, .wp-block-epicit-blocks-epic-quote > div > img {
	display: inline-block;
	width: 150px;
	border-radius: 50%;
	margin-bottom: -35px;
}
.wp-block-epicit-blocks-epic-quote .sel-quote::before, .wp-block-epicit-blocks-epic-quote .sel-quote::after {
	content: '"';
	display: inline;
}

.block-triple-column-image-text,
.wp-block-epicit-blocks-three-column > div,
.wp-block-epicit-blocks-three-column-expand > div,
.wp-block-epicit-blocks-services > div,
.wp-block-epicit-blocks-services-expand > div,
.wp-block-epicit-blocks-services-two > div,
.wp-block-epicit-blocks-services-two-expand > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	font-size: 16px;
}
.block-triple-column-image-text > div,
.wp-block-epicit-blocks-three-column > div > div,
.wp-block-epicit-blocks-three-column-expand > div > div,
.wp-block-epicit-blocks-services > div > div,
.wp-block-epicit-blocks-services-expand > div > div {
	flex-basis: calc(33.33% - 30px);
	margin-bottom: 40px;
}
.wp-block-epicit-blocks-services-two > div > div, .wp-block-epicit-blocks-services-two-expand > div > div {
	flex-basis: calc(50% - 20px);
	margin-bottom: 40px;
}
.block-triple-column-image-text > div > img,
.wp-block-epicit-blocks-three-column > div > div > img,
.wp-block-epicit-blocks-three-column-expand > div > div > img,
.wp-block-epicit-blocks-services > div > div > img,
.wp-block-epicit-blocks-services-expand > div > div > img,
.wp-block-epicit-blocks-services-two > div > div > img,
.wp-block-epicit-blocks-services-two-expand > div > div > img {
	margin: 0 auto 20px auto;
}
.wp-block-epicit-blocks-two-column .full-image img,
.wp-block-epicit-blocks-two-column-expand .full-image img,
.wp-block-epicit-blocks-three-column .full-image img,
.wp-block-epicit-blocks-three-column-expand .full-image img,
.wp-block-epicit-blocks-services .full-image img,
.wp-block-epicit-blocks-services-expand .full-image img,
.wp-block-epicit-blocks-services-two .full-image img,
.wp-block-epicit-blocks-services-two-expand .full-image img {
	max-width: 100%;
}
.wp-block-epicit-blocks-two-column .medium-image img,
.wp-block-epicit-blocks-two-column-expand .medium-image img,
.wp-block-epicit-blocks-three-column .medium-image img,
.wp-block-epicit-blocks-three-column-expand .medium-image img,
.wp-block-epicit-blocks-services .medium-image img,
.wp-block-epicit-blocks-services-expand .medium-image img,
.wp-block-epicit-blocks-services-two .medium-image img,
.wp-block-epicit-blocks-services-two-expand .medium-image img {
	max-width: 230px;
}
.wp-block-epicit-blocks-two-column .tiny-image img,
.wp-block-epicit-blocks-two-column-expand .tiny-image img,
.wp-block-epicit-blocks-three-column .tiny-image img,
.wp-block-epicit-blocks-three-column-expand .tiny-image img,
.wp-block-epicit-blocks-services .tiny-image img,
.wp-block-epicit-blocks-services-expand .tiny-image img,
.wp-block-epicit-blocks-services-two .tiny-image img,
.wp-block-epicit-blocks-services-two-expand .tiny-image img {
	max-width: 44px;
}
.wp-block-epicit-blocks-three-column h3,
.wp-block-epicit-blocks-three-column-expand h3,
.wp-block-epicit-blocks-services h3,
.wp-block-epicit-blocks-services-expand h3,
.wp-block-epicit-blocks-services-two h3,
.wp-block-epicit-blocks-services-two-expand h3 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
}
@media all and (max-width: 869px) {
	.block-triple-column-image-text > div,
	.wp-block-epicit-blocks-three-column > div > div,
	.wp-block-epicit-blocks-three-column-expand > div > div,
	.wp-block-epicit-blocks-services > div > div,
	.wp-block-epicit-blocks-services-expand > div > div {
		flex-basis: 100%;
	}
}
@media all and (max-width: 679px) {
	.wp-block-epicit-blocks-services-two > div > div, .wp-block-epicit-blocks-services-two-expand > div > div {
		flex-basis: 100%;
	}
}
.wp-block-epicit-blocks-services > div > div,
.wp-block-epicit-blocks-services-expand > div > div,
.wp-block-epicit-blocks-services-two > div > div,
.wp-block-epicit-blocks-services-two-expand > div > div {
	margin-bottom: 10px;
}
.wp-block-epicit-blocks-services > div > div > img,
.wp-block-epicit-blocks-services-expand > div > div > img,
.wp-block-epicit-blocks-services-two > div > div > img,
.wp-block-epicit-blocks-services-two-expand > div > div > img {
	margin-bottom: 10px;
}
.wp-block-epicit-blocks-services h3,
.wp-block-epicit-blocks-services-expand h3,
.wp-block-epicit-blocks-services-two h3,
.wp-block-epicit-blocks-services-two-expand h3 {
	font-size: 20px;
	margin-bottom: 5px;
}
.wp-block-epicit-blocks-services .sel-content,
.wp-block-epicit-blocks-services .sel-content2,
.wp-block-epicit-blocks-services .sel-content3,
.wp-block-epicit-blocks-services-expand .sel-content,
.wp-block-epicit-blocks-services-expand .sel-content2,
.wp-block-epicit-blocks-services-expand .sel-content3,
.wp-block-epicit-blocks-services-two .sel-content,
.wp-block-epicit-blocks-services-two .sel-content2,
.wp-block-epicit-blocks-services-two-expand .sel-content,
.wp-block-epicit-blocks-services-two-expand .sel-content2 {
	font-size: 14px;
}

.wp-block-epicit-blocks-two-column > div, .wp-block-epicit-blocks-two-column-expand > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	font-size: 16px;
}
.wp-block-epicit-blocks-two-column > div > div, .wp-block-epicit-blocks-two-column-expand > div > div {
	flex-basis: calc(50% - 30px);
	margin-bottom: 40px;
}
.wp-block-epicit-blocks-two-column > div > div > img, .wp-block-epicit-blocks-two-column-expand > div > div > img {
	margin: 0 auto 20px auto;
	width: 95%;
}
.wp-block-epicit-blocks-two-column h3, .wp-block-epicit-blocks-two-column-expand > h3 {
	font-size: 24px;
}
@media all and (max-width: 869px) {
	.wp-block-epicit-blocks-two-column > div > div, .wp-block-epicit-blocks-two-column-expand > div > div {
		flex-basis: 100%;
	}
}

.wp-block-epicit-blocks-intro-block > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	font-size: 16px;
}
.wp-block-epicit-blocks-intro-block > div > div {
	flex-basis: calc(50% - 30px);
	margin-bottom: 40px;
}
.wp-block-epicit-blocks-intro-block h4 {
	color: var(--primary-color);
}
.wp-block-epicit-blocks-intro-block h2, .wp-block-epicit-blocks-intro-block h3, .wp-block-epicit-blocks-intro-block h4 {
	position: relative;
	padding-bottom: 35px;
	margin-bottom: 35px;
}
.wp-block-epicit-blocks-intro-block h2::after, .wp-block-epicit-blocks-intro-block h3::after, .wp-block-epicit-blocks-intro-block h4::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 2px;
	background: #000;
}
@media all and (max-width: 869px) {
	.wp-block-epicit-blocks-intro-block > div > div {
		flex-basis: 100%;
	}
}

.block-dual-column-image-text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}
.block-dual-column-image-text > div {
	flex-basis: calc(50% - 30px);
	margin-bottom: 40px;
}
.block-dual-column-image-text > div > img {
	margin: 0 auto 20px auto;
	width: 90%;
	max-width: 520px;
}
@media all and (max-width: 869px) {
	.block-dual-column-image-text > div {
		flex-basis: 100%;
	}
}

.wp-block-epicit-blocks-call-to-action, .wp-block-epicit-blocks-call-to-action-it {
	position: relative;
	padding-top: 45px;
	padding-bottom: 270px;
	background-image: url('images/cta-contact-bg.png');
	background-repeat: repeat-x;
	background-position: bottom center;
	background-size: 1250px auto;
}
.wp-block-epicit-blocks-call-to-action::after, .wp-block-epicit-blocks-call-to-action-it::after {
	content: "";
	position: absolute;
	bottom: 58px;
	left: 0;
	right: 0;
	width: 100%;
	background: url('images/cta-contact-staff-01.svg') no-repeat bottom center;
	background-size: 440px auto;
	height: 190px;
}
.wp-block-epicit-blocks-call-to-action p, .wp-block-epicit-blocks-call-to-action-it p {
	color: #fff;
	font-size: 50px;
}
.wp-block-epicit-blocks-call-to-action p a, .wp-block-epicit-blocks-call-to-action-it p a {
	color: #fff;
}
.wp-block-epicit-blocks-call-to-action p a:hover, .wp-block-epicit-blocks-call-to-action-it p a:hover {
	color: #000;
}
@media all and (max-width: 499px) {
	.wp-block-epicit-blocks-call-to-action, .wp-block-epicit-blocks-call-to-action-it {
		padding-bottom: 240px;
	}
	.wp-block-epicit-blocks-call-to-action::after, .wp-block-epicit-blocks-call-to-action-it::after {
		background-size: 300px auto;
		height: 130px;
		bottom: 80px;
	}
}

.block-intro-content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
}
.block-intro-content .subtitle {
	position: relative;
	padding-bottom: 35px;
	margin-bottom: 35px;
}
.block-intro-content .subtitle::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 2px;
	background: #000;
}
.block-intro-content > div {
	flex-basis: calc(50% - 30px);
	margin-bottom: 30px;
}
@media all and (max-width: 839px) {
	.block-intro-content > div {
		flex-basis: 100%;
	}
}

.block-fullwidth-image {
	overflow: hidden;
}
@media all and (max-width: 799px) {
	.block-fullwidth-image > img.mobile-zoom {
		max-width: 160%;
		width: 160%;
		margin-left: -30%;
	}
}

.block-video h6, .wp-block-epicit-blocks-embed-video h6, .wp-block-epicit-blocks-image h6 {
	text-align: center;
	padding: 5px 20px 0 20px;
}

.wp-block-epicit-blocks-heading-text .full-width {
	padding-left: 20px;
	padding-right: 20px;
}
.wp-block-epicit-blocks-heading-text .sel-content > p:last-of-type {
	margin-bottom: 0;
}

.wp-block-epicit-blocks-image {
	text-align: center;
	font-size: 0;
}
.wp-block-epicit-blocks-image img {
	display: inline-block;
}
.wp-block-epicit-blocks-image .full-width img {
	min-width: 100%;
}
@media all and (min-width: 800px) {
	.wp-block-epicit-blocks-image .large-image img {
		max-width: 700px;
	}
}
@media all and (max-width: 1300px) {
	.wp-block-epicit-blocks-image .content-wrapper {
		padding-left: 0;
		padding-right: 0;
	}
}

.table-intro {
	background: url('images/table-drone.svg') #ff686d no-repeat left calc(28% - 150px) bottom;
	background-size: 300px;
	padding-top: 60px;
	padding-bottom: 350px;
	color: #fff;
}
.table-intro h3 {
	color: #fff;
}
.table-content {
	max-width: 1380px;
	width: 100%;
	margin: -320px auto 0 auto;
	min-height: 220px;
	padding-left: 20px;
	padding-right: 20px;
}
.table-content > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: stretch;
}
.table-content > div > div {
	border: 1px solid #ddd;
	border-right: 0;
	border-bottom: 0;
	background: #fff;
	text-align: center;
	padding: 35px 25px 380px 25px;
	position: relative;
}
.table-content.no-pricing > div > div {
	padding-bottom: 35px;
}
.table-content > div > div:last-of-type {
	border-right: 1px solid #ddd;
}
.table-content .bigbold {
	font-weight: bold;
	font-size: 26px;
	color: #000;
	line-height: 1.3;
}
.table-content > div > div > div {
	position: absolute;
	bottom: 35px;
	left: 25px;
	right: 25px;
}
.table-content .commercial, .table-content .nfp {
	display: block;
	border-radius: 5px;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 14px;
	padding: 5px;
	color: #000;
	letter-spacing: 2px;
	background: #fcd005;
}
.table-content .nfp {
	background: #fec9c3;
}
.table-content .user-month {
	text-transform: uppercase;
	color: #a3a3a3;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	margin-top: -12px;
}
.table-content .small-font {
	font-size: 12px;
}
.table-content button {
	width: 100%;
	margin-top: 25px;
}
.table-content table {
	width: 100%;
	font-size: 13px;
}
.table-content tr td {
	text-align: center;
}
.table-content tr:nth-of-type(odd) {
	background: #f8f8f8;
}
.table-content tr:nth-of-type(even) {
	background: #fff;
}
.table-content tr th, .table-content tr td {
	border: 1px solid #ddd;
	padding: 10px 15px;
}
.table-content tr th {
	background: #ddd;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 2px;
	color: #000;
}
.table-content tr th:first-of-type, .table-content tr td:first-of-type {
	text-align: left;
}
.table-content table img, .table-content table svg {
	max-width: 22px;
	display: inline-block;
	vertical-align: bottom;
}
.table-content .footnotes {
	font-size: 13px;
	margin: 10px 15px;
}
.table-content .mobile-footnotes {
	display: none;
	font-size: 13px;
	margin: 10px 0 25px 0;
}
.table-content .mobile-table {
	display: none;
	width: calc(100% + 52px);
	margin-left: -26px;
}
.table-content .mobile-table table {
	margin-top: 40px;
}
.table-content .mobile-table tr th, .table-content .mobile-table tr td {
	width: auto !important;
}
.table-content .mobile-table tr td:nth-of-type(2) {
	width: 60px !important;
	padding: 10px 0 !important;
}
.table-content .mobile-table a {
	font-weight: 600;
}

.table-content.two-column > div > div {
	flex-basis: 33.33%;
}
.table-content.two-column tr th, .table-content.two-column tr td {
	width: 33.33%;
}
.table-content.two-column tr th:first-of-type, .table-content.two-column tr td:first-of-type {
	width: 33.33%;
}
.table-content.three-column > div > div {
	flex-basis: 24%;
}
.table-content.three-column tr th, .table-content.three-column tr td {
	width: 24%;
}
.table-content.three-column tr th:first-of-type, .table-content.three-column tr td:first-of-type {
	width: 28%;
}
.table-content.four-column > div > div {
	flex-basis: 20%;
}
.table-content.four-column tr th, .table-content.four-column tr td {
	width: 20%;
}
.table-content.four-column tr th:first-of-type, .table-content.four-column tr td:first-of-type {
	width: 20%;
}
.table-intro.four-column {
	background-size: 0;
}
@media all and (max-width: 1149px) {
	.table-content.four-column table, .table-content.four-column .footnotes {
		display: none;
	}
	.table-content.four-column > div {
		justify-content: center;
		align-items: flex-start;
	}
	.table-content.four-column > div > div {
		flex-basis: 100%;
		max-width: 570px;
		border: 1px solid #ddd;
		padding: 35px 25px;
		margin-bottom: 30px;
	}
	.table-content.four-column > div > div > div {
		position: relative;
		bottom: auto;
		left: auto;
		right: auto;
		margin-top: 20px;
	}
	.table-content.four-column .mobile-table {
		display: block;
	}
}
@media all and (max-width: 969px) {
	.table-intro.three-column {
		background-size: 0;
	}
	.table-content.three-column table, .table-content.three-column .footnotes {
		display: none;
	}
	.table-content.three-column > div {
		justify-content: center;
		align-items: flex-start;
	}
	.table-content.three-column > div > div {
		flex-basis: 100%;
		max-width: 480px;
		border: 1px solid #ddd;
		padding: 35px 25px;
		margin-bottom: 30px;
	}
	.table-content.three-column > div > div > div {
		position: relative;
		bottom: auto;
		left: auto;
		right: auto;
		margin-top: 20px;
	}
	.table-content.three-column .mobile-table {
		display: block;
	}
}
@media all and (max-width: 859px) {
	.table-intro.two-column {
		background-size: 0;
	}
	.table-content.two-column table, .table-content.two-column .footnotes {
		display: none;
	}
	.table-content.two-column > div {
		justify-content: center;
		align-items: flex-start;
	}
	.table-content.two-column > div > div {
		flex-basis: 100%;
		max-width: 480px;
		border: 1px solid #ddd;
		padding: 35px 25px;
		margin-bottom: 30px;
	}
	.table-content.two-column > div > div > div {
		position: relative;
		bottom: auto;
		left: auto;
		right: auto;
		margin-top: 20px;
	}
	.table-content.two-column .mobile-table {
		display: block;
	}
}

.dual-text-max-width {
	max-width: 800px;
	margin-right: auto;
	margin-left: auto;
}


/* Stop zooming on inputs in iPhone
-----------------------------------------------------------------*/
@media all and (-webkit-min-device-pixel-ratio:2) and (max-device-width: 1024px) { 
	select:focus, select:hover,
	textarea:focus, textarea:hover,
	input:focus, input:hover {
		font-size: 1rem;
	}
}