/*
Theme Name: Mystery Customer
Version: 1.0
Author: Kinski & Bourke
Author URI: http://www.kinskiandbourke.com/
*/

/* start presets */

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, font, img, ins, kbd, q, s, samp, strike, strong, sub,  tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
}

html {
	background-color: #ffffff;
	}

html, html a {
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}

a, input {
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out; 
	-o-transition: all .2s ease-in-out; 
	-ms-transition: all .2s ease-in-out; 
	text-decoration: none;
}

input,
label,
select,
button,
textarea {
	margin: 0;
	border: 0;
	padding: 0;
	display: inline-block;
	vertical-align: middle;
	white-space: normal;
	background: none;
	line-height: 1.5;
	/* Browsers have different default form fonts */
	font-family: 'Poppins', Arial;
	font-size: 15px;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
}

body {
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	text-align: center;
	font-family: 'Poppins', Arial, Helvetica, sans-serif;
	font-size: 15px;
	background-color: var(--black);
	color: var(--standard);
	line-height: 1.75;
}

:root {
	--standard: #363435;
	--red: #e53325;
	--black: #222222;
	--darkblue: #3e404e;
	--lightgrey: #f4f2f2;
	--softblue: #e5e9ec;
	--darkgrey: #545153;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

p, h1, h2, h2, h3, h4 {
	margin: 0px;
	padding: 0px;
}


/* Changes the main content areas to border-box */

header,
nav#primary,
.restrict,
#sidebar,
footer {
	box-sizing: border-box;
}

/* End Presets */

/* Start Basic Structure */

#container {
	text-align: center;
	width: 770px;
	margin-right: auto;
	margin-left: auto;
}

.restrict {
	max-width: 1200px;
	margin: auto;
}

/* Start Header */

header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 40px;
	background-color: white;
	position: fixed;
	top: 0;
	left: 0;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out; 
	-o-transition: all .2s ease-in-out; 
	-ms-transition: all .2s ease-in-out; 
	z-index: 999;
}

header.small {
	padding: 10px 40px;
	-webkit-box-shadow: 0px 8px 0px 0px rgba(0,0,0,0.05);
	-moz-box-shadow: 0px 8px 0px 0px rgba(0,0,0,0.05);
	box-shadow: 0px 8px 0px 0px rgba(0,0,0,0.05);
	background-color: rgba(255,255,255,.95);
}

header a#logo {
	min-width: 305px;
	width: 305px;
	height: auto;
	display: block;
}

header a#logo img {
	width: 100%;
	height: auto;
	display: block;
}

nav a {
	color: var(--standard);
	padding: 15px 20px;
	position: relative;
}
nav a:hover {
	color: var(--red);
}


nav a:after {
	content: '';
	width: 0%;
	border-bottom: 2px solid var(--red);
	position: absolute;
	bottom: 0px;
	left: 50%;;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out; 
	-o-transition: all .2s ease-in-out; 
	-ms-transition: all .2s ease-in-out; 
	opacity: 0;
}

nav a:hover:after {
	content: '';
	width: 100%;
	border-bottom: 2px solid var(--red);
	position: absolute;
	bottom: 0px;
	left: 0px;
	opacity: 1;
}

nav#mobile {
	display: none;
	}

/* End Header */

nav#primary {
	width: auto;
	font-weight: 600;
}

nav#primary ul li {
	display: inline-block;
	position: relative;
}

nav#primary ul li.current-menu-item a, nav#primary ul li.current-page-ancestor a {
	color: var(--red);
	}

nav#primary ul li a {
	padding: 15px 20px;
	position: relative;
	}

/* Primary Dropdown */

/* dropdown */
nav#primary ul li ul {
	height: auto;
	width: auto;
	text-align: left;
	background-color: rgba(255,255,255,.9);
	position: absolute;
	left: 0px;
	top: 28px;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out; 
	-o-transition: all .2s ease-in-out; 
	-ms-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	padding: 0px;
	font-size: 12px;
	font-weight: 400;
	padding-top: 7px;
	padding-bottom: 7px;
/*	border: 1px solid var(--red); */
	box-sizing: border-box;
}

nav#primary ul ul li {
	display: block;
	}

nav#primary ul li:hover ul {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
	top: 38px;
}

nav#primary ul li ul a {
	color: var(--standard) !important;
	padding: 5px 20px 5px 20px !important;
	box-sizing: border-box;
	position: relative;
	display: block;
	white-space: nowrap;
}

nav#primary ul li ul a:hover {
	color: var(--red) !important;
	}

nav#primary ul li ul a:after {
	content: none;
}

nav#primary ul li ul a:hover:after {
	content: none;
}

/* */

nav#login {
	width: auto;
	text-align: right;
	font-weight: 500;
}

nav#login ul li {
		position: relative;
}

nav#login ul li a {
	display: block;
	}

/* dropdown */
nav#login ul li ul {
	height: auto;
	width: /* 200px; */ 140px;
	text-align: right;
	background-color: rgba(255,255,255,.9);
	position: absolute;
	right: 0px;
	top: 46px;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out; 
	-o-transition: all .2s ease-in-out; 
	-ms-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	padding: 0px;
	font-size: 12px;
	font-weight: 400;
	padding-top: 7px;
	padding-bottom: 7px;
	border: 1px solid var(--red);
	box-sizing: border-box;
}

nav#login ul li:hover ul {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
	top: 56px;
}

nav#login ul li ul a {
	color: var(--standard);
	padding: 5px 15px 5px 0px !important;
	position: relative;
	display: block;
}

nav#login ul li ul a:hover {
	color: var(--red);
	}

nav#login ul li ul a:after {
	content: none;
}

nav#login ul li ul a:hover:after {
	content: none;
}

/* Start Main Content */

/* Start Homepage Heroes */

section#homepage-heroes {
	color: #ffffff;
	display: flex;
	width: 100%;
}

section#homepage-heroes div {
	background-size: cover;
	background-position: center;
}

section#homepage-heroes div.hero {
	padding-top: 9%;
	padding-bottom: 9%;
	width: 50%;
	padding-left: 20px;
	padding-right: 20px;
}

section#homepage-heroes div div {
	background-color: rgba(19,32,50,.64);
	max-width: 440px;
	margin: auto;
	box-sizing: border-box;
	padding: 40px;
}

section#homepage-heroes div div h4 {
	font-size: 22px;
}

section#homepage-heroes a {
	display: inline-block;
	color: var(--red);
	background-color: white;
	font-size: 16px;
	text-transform: lowercase;
	font-weight: 600;
	padding: 8px 25px;

}

section#homepage-heroes a:hover {
	color: white;
	background-color: var(--red);

}

/* End Homepage Heroes */

/* Start Homepage Shopper Count and Benchmarks */

section#homepage-shoppercount-benchmarks {
	background: rgb(244,242,242);
	background: linear-gradient(90deg, rgba(244,242,242,1) 0%, rgba(244,242,242,1) 50%, rgba(229,233,236,1) 50%, rgba(229,233,236,1) 100%);
	display: flex;
}

section#homepage-shoppercount-benchmarks div#shopper-count, section#homepage-shoppercount-benchmarks div#benchmarks {
	width: 50%;
	padding: 50px 40px 50px;
}

/* Live Shopper Count */

section#homepage-shoppercount-benchmarks div#shopper-count h2 {
	margin-bottom: 5px;
}

section#homepage-shoppercount-benchmarks div#shopper-count h1 {
	color: var(--red);
	animation: opacityPulse 1s ease-out;
    animation-iteration-count: infinite; 
    opacity: 1;
	transform: scale(1);
}

@-webkit-keyframes opacityPulse {
    0% {transform: scale(1)}
    50% {transform: scale(1.05)}
	100% {transform: scale(1)}
}

section#homepage-shoppercount-benchmarks div#shopper-count div.guage {
	width: 55px;
	height: 44px;
	background-image: url(images/counter-guage-bg.png);
	background-size: contain;
	background-repeat: no-repeat;
	margin: auto;
	margin-bottom: 20px;
}

section#homepage-shoppercount-benchmarks div#shopper-count div.guage div.dial {
	width: 20px;
	height: 31px;
	background-image: url(images/counter-guage-dial.png);
	background-size: contain;
	background-repeat: no-repeat;
	margin: auto;
	position: relative;
	top: 10px;
}


section#homepage-shoppercount-benchmarks p {
	font-size: 18px;
	}
section#homepage-shoppercount-benchmarks a {
	color: var(--darkgrey);
	border-bottom: 1px solid rgba(84,81,83,.25);
	}
section#homepage-shoppercount-benchmarks a:hover {
	color: var(--red);
	}

section#homepage-shoppercount-benchmarks div#benchmarks a.button {
	color: var(--red) !important;
	border: 1px solid var(--red) !important;
	}
section#homepage-shoppercount-benchmarks div#benchmarks a.button:hover {
	color: white !important;
	}

section#homepage-shoppercount-benchmarks div#benchmarks div {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
	}


/* End Homepage Shopper Count and Benchmarks */

/* Start Page Hero */

section#page-hero {
	background-size: cover;
	background-position: center top;
	color: #ffffff;
	background-color: var(--darkblue);
}

section#page-hero div {
	background-color: rgba(45,45,45,.61);
	padding-top: 13%;
	padding-bottom: 13%;
}

section#page-hero h1 {
	font-weight: 700;
	position: relative;
	padding-bottom: 40px;
	width: 100%;
	padding-left: 40px;
	padding-right: 40px;
	box-sizing: border-box;
	line-height: 1.25;
}

section#page-hero h1:after {
	content: '';
	width: 200px;
	border-bottom: 6px solid white;
	position: absolute;
	bottom: 0px;
	left: calc(50% - 100px);
}

/* End Page Hero */

section#main-content {
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(244,242,242,1) 50%, rgba(244,242,242,1) 100%);
}

section#main-content div.restrict {
	display: flex;
}


section#main-content div#content {
	background-color: white;
	text-align: left;
	width: 60%;
	padding-top: 80px;
	padding-bottom: 80px;
	box-sizing: border-box;
	padding-right: 100px;
}

section#main-content div#content .entry {
	box-sizing: border-box;
}

section#main-content div#content h3 {
	font-weight: 500;
	color: #73757e;
	padding-top: 12px;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 20px;
	}

section#main-content div#content h3:after {
	content: '';
	border-bottom: 2px solid #73757e;
	width: 50px;
	position: absolute;
	left:0px;
	bottom: 0px;
	}

section#main-content div#content p {
	color: var(--darkgrey);
}

section#main-content div#content strong, section#main-content div#content b {
	font-weight: 600;
}

/* Unordered Lists */

section#main-content div#content ul {
	color: var(--darkgrey);
	margin-bottom: 20px;
}

section#main-content div#content ul li {
	position: relative;
	padding-left: 60px;
	margin-bottom: 15px;
}

section#main-content div#content ul li:before {
	content: '';
	width: 16px;
	height: 16px;
	position: absolute;
	left: 0;
	top: 5px;
	background-image:url(images/tick.png);
	background-size: contain;
}

/* Ordered Lists */

section#main-content div#content ol {
	color: var(--darkgrey);
	margin-bottom: 20px;
	counter-reset: li;
	list-style: none;
}

section#main-content div#content ol li {
	position: relative;
	padding-left: 60px;
	margin-bottom: 15px;
	counter-increment: li;
}

section#main-content div#content ol li:before {
	content: counter(li);
	width: 18px;
	height: 18px;
	font-size: 12px;
	line-height: 14px;
	text-align: center;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 4px;
	color: var(--red);
	border: 1.5px solid var(--red);
	box-sizing: border-box;
	font-weight: 600;
}

section#main-content div#content a, #sidebar p a {color: var(--red);}
section#main-content div#content a:hover, #sidebar p a:hover {color: var(--darkblue);}

/* End Main Content */

/* Start Sidebar */

#sidebar {
	width: 40%;
	background-color: var(--lightgrey);
	text-align: left;
	padding-top: 80px;
	padding-bottom: 80px;
	padding-left: 100px;
}

#sidebar ul {
	font-weight: 500;
	padding-top: 20px;
}

#sidebar ul li {
	border-bottom: 1px solid #dcdadb;
}
#sidebar ul li:last-of-type {
	border-bottom: 0;
}

#sidebar ul li a {
	display: block;
	color: var(--red);
	padding: 10px 0;
}

#sidebar ul li a:hover {
	color: var(--darkblue);
}

#sidebar ul li.current_page_item a {
	color: var(--darkblue);
	}

/* End Sidebar */

/* Start Four Boxes */

section#four-boxes {
	background-color: #ffffff;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-top: 19px solid #ffffff;
	border-bottom: 19px solid #ffffff;
}

section#four-boxes div.box {
	width: calc(25% - 15px);
	background-size: cover;
	box-sizing: border-box;
	padding: 4% 2%;
	display: flex;
	flex-direction: column;
	text-align: center;
}

section#four-boxes div.box h2 {
	font-size: 21px;
	font-weight: 700;
	margin: auto;
	color: #ffffff;
	background-color: rgba(19,32,50,.7);
	padding: 10%;
	min-height: 140px;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-shadow: 0px 0px 5px rgba(0,0,0,.5);
}

/* End Four Boxes */

/* Start Stats */

section#stats {
	color: white;
	background-color: var(--darkblue);
	text-align: left;
	padding-top: 70px;
	padding-bottom: 70px;
}

section#stats p {
	color: #ffffff;
}

section#stats .restrict {
	display: flex;
	justify-content: space-between;
}

section#stats .restrict div {
	width: calc(33.33% - 5%);
}

section#stats h4 {
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 25px;
}
section#stats h4:after {
	content: '';
	border-bottom: 2px solid white;
	width: 100px;
	position: absolute;
	left: 0;
	bottom: 0;
}

/* End Stats */

/* Start Get in Touch */

section#get-in-touch {
	background-color: #ffffff;
	display: flex;
}

section#get-in-touch h2 {
	font-size: 30px;
}

section#get-in-touch div.left {
	width: 50%;
	background-size: cover;
	background-position: center;
}

section#get-in-touch div.right {
	box-sizing: border-box;
	width: 100%;
	max-width: 600px;
	padding: 90px;
	padding-right: 0px;
	text-align: left;
}

/* End Get in Touch */

/* Start Contact Details and Map */

section#contact-details-map {
	background-color: var(--lightgrey);
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
}

section#contact-details-map a {color: var(--red);}
section#contact-details-map a:hover {color: var(--darkblue);}

section#contact-details-map div.left {
	box-sizing: border-box;
	width: 100%;
	max-width: 600px;
	padding: 90px;
	padding-left: 0;
	text-align: center;
}

section#contact-details-map div.left div.addresses {
	width: 100%;
	display: flex;
	justify-content: center;
	text-align: left;
	margin: auto;
	margin-bottom: 50px;
}

section#contact-details-map p {
	margin-bottom: 0;
}

section#contact-details-map div.left div.addresses div:first-of-type {
	border-right: 2px solid #e8e6e6;
	padding-right: 50px;
}

section#contact-details-map div.left div.addresses div:nth-of-type(2) {
	padding-left: 50px;
}

section#contact-details-map div.right {
	width: 50%;
	background-size: 1500px 900px;
	background-position: center;
}

/* End Contact Details and Map */

/* Start Footer */

footer {
	clear: both;
	width: 100%;
	margin: auto;
	color: white;
	font-size: 12px;
	padding: 40px;
}

footer a {
	color: white;
}

footer a:hover {
	color: var(--red);
}

footer ul li {
	display: inline-block;
}

footer ul li br {
	display: none;
	}

footer ul li:after {
	content: ' - ';
	opacity: .5;
	padding-left: 6px;
	padding-right: 6px;
}

footer ul li:last-of-type:after {
	content: none;
}


footer img#kinskiandbourke {
	width: 120px;
	height: 9px;
}


/* End Footer */

/* Start Red Footer */

section#red-footer {
	background-color: var(--red);
	color: #ffffff;
	font-size: 12px;
}

section#red-footer p {
	color: #ffffff;
}

section#red-footer a {
	color: white;
}

section#red-footer a:hover {
	color: var(--darkblue);
}

section#red-footer .restrict {
	display: flex;
	text-align: left;
	justify-content: space-between;
	padding-top: 50px;
	padding-bottom: 50px;
}

section#red-footer .restrict div {
	width: calc(25% - 20px);
}

section#red-footer img#logo-white {
	max-width: 180px;
	display: block;
	margin-bottom: 22px;
}

section#red-footer img#mspa {
	max-width: 300px;
	margin-bottom: 22px;
	height: auto;
	padding-top: 30px;
}

section#red-footer ul li {
	margin-bottom: 5px;
}

section#red-footer p {
	margin-bottom: 15px;
}

/* End Red Footer */

/* End Basic Structure */

/* Defines Inline Images */

.aligncenter {max-width: 100%; height: auto; display: block; margin: auto}
.alignleft {max-width: 100%; height: auto; float: left}
.alignright {max-width: 100%; height: auto; float: right}
.alignnone {max-width: 100%; height: auto; }

/* End Inline Images */

/* Start Link Button */

span.button-wrap {
	text-align: left;
	display: block;
}

a.button {
	display: inline-block;
	color: var(--standard) !important;
	background-color: white;
	border: 1px solid var(--standard);
	padding: 12px 35px;
	text-align: left;
	margin-top: 10px;
}

a.button:hover {
	color: white !important;
	background-color: var(--red);
	border: 1px solid var(--red);
}

/* End Link Button */

/* Miscellaneous */

#spacer {
	background-color: white;
}

.clear {clear: both;}

/* Start Main Typography */

p {
	margin-bottom: 20px;
	color: var(--darkgrey);
}

h1 {
	font-size: 43px;
	font-weight: 600;
}

h2 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 30px;
	line-height: 1.4;
}

h3 {
	font-size: 19px;
	margin-bottom: 15px;
}

h4 {
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 20px;
}

/* End Main Typography */

/* Start Forms */

div.caldera-grid label {
	display: none;
	}

div.caldera-grid input[type="text"], div.caldera-grid input[type="email"], div.caldera-grid textarea, div.caldera-grid select {
	width: 100%;
	border-bottom: 2px solid #363435;
	padding: 10px 0;
	margin-bottom: 25px;
	color: var(--standard);
	}

form.caldera_forms_form input[type="text"]:focus, form.caldera_forms_form input[type="email"]:focus, form.caldera_forms_form textarea:focus, div.caldera-grid select:focus {
	border-bottom: 2px solid var(--red);
	background-color: var(--lightgrey);
	}

::placeholder {
	color: var(--standard);
	opacity: 1;
	}

div.caldera-grid input[type="submit"] {
	display: inline-block;
	color: var(--standard);
	background-color: white;
	border: 1px solid var(--standard);
	padding: 12px 35px;
	text-align: left;
	cursor: pointer;
}

div.caldera-grid input[type="submit"]:hover {
	color: white;
	background-color: var(--red);
	border: 1px solid var(--red);
}

span.help-block {
	display: block;
	height: 24px;
	color: var(--red);
	font-size: 12px;
	margin-top: -24px;
	}

div.form-group.nospam {
	padding-bottom: 25px;
	}

/* End Forms */

/* Pullquote */

div#pull-quote {
	background-color: var(--red);
	color: white;
	text-align: left;
	font-family: Georgia;
	font-style: italic;
	font-size: 24px;
	padding: 40px;
	margin-top: 60px;
	position: relative;
	right: 110px;
	width: calc(100% + 40px);
	border-left: 10px solid #f7665a;
	}

@media only screen and (max-width: 1280px) {
		 div#pull-quote {
			width: calc(100% - 20px);
			right: 50px;
		}
	}

div#pull-quote:before {
	content: ' \f10d ';
	position: absolute;
	left: 20px;
	top: -20px;
	font-family: 'Font Awesome 5 Free' !important;
	font-weight: 600;
	font-style: normal;
	font-size: 100px;
	opacity: .2;
	}

/* End Pullquote */

/* Gallery */

div#gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	}

div#gallery div {
	width: calc(33.33% - 20px);
	margin-bottom: 30px;
	}
div#gallery img {
	max-width: 100%;
	height: auto;
	display: block;
	}

/* End Gallery */

/* Live Shopper Count for sidebar */

div#sidebar div#shopper-count {
	text-align: center;
	margin-top: 60px;
	background-color: var(--red);
	color: white;
	margin-left: -110px;
	border-left: 10px solid #f7665a;
	padding-top: 50px;
	padding-bottom: 30px;
	}

div#sidebar div#shopper-count p {
	color: white;
	}

div#sidebar div#shopper-count h2 {
	margin-bottom: 5px;
	opacity: .65;
}

div#sidebar div#shopper-count h1 {
	color: white;
	animation: opacityPulse 1s ease-out;
    animation-iteration-count: infinite; 
    opacity: 1;
	transform: scale(1);
}

@-webkit-keyframes opacityPulse {
    0% {transform: scale(1)}
    50% {transform: scale(1.05)}
	100% {transform: scale(1)}
}

div#sidebar div#shopper-count div.guage {
	width: 55px;
	height: 44px;
	background-image: url(images/counter-guage-bg-white.png);
	background-size: contain;
	background-repeat: no-repeat;
	margin: auto;
	margin-bottom: 20px;
}

div#sidebar div#shopper-count div.guage div.dial {
	width: 20px;
	height: 31px;
	background-image: url(images/counter-guage-dial-white.png);
	background-size: contain;
	background-repeat: no-repeat;
	margin: auto;
	position: relative;
	top: 10px;
}

/* End Shopper Count for Sidebar */

/* Counter Animation */

.rotate-90-bottom-cw {
	-webkit-animation: rotate-90-bottom-cw .2s ease-in-out infinite alternate both;
	        animation: rotate-90-bottom-cw .2s ease-in-out infinite alternate both;
}

@-webkit-keyframes rotate-90-bottom-cw {
  0% {
    -webkit-transform: rotate(50deg);
            transform: rotate(50deg);
    -webkit-transform-origin: 50% 69%;
            transform-origin: 50% 69%;
  }
  50% {
    -webkit-transform: rotate(70deg);
            transform: rotate(70deg);
    -webkit-transform-origin: 50% 69%;
            transform-origin: 50% 69%;
  }
  100% {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
    -webkit-transform-origin: 50% 69%;
            transform-origin: 50% 69%;
  }
}
@keyframes rotate-90-bottom-cw {
  0% {
    -webkit-transform: rotate(50deg);
            transform: rotate(50deg);
    -webkit-transform-origin: 50% 69%;
            transform-origin: 50% 69%;
  }
  50% {
    -webkit-transform: rotate(70deg);
            transform: rotate(70deg);
    -webkit-transform-origin: 50% 69%;
            transform-origin: 50% 69%;
  }
  100% {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
    -webkit-transform-origin: 50% 69%;
            transform-origin: 50% 69%;
  }
}

/* End Counter Animation */

/* Fade In */

.fadein{
  animation: fadein ease-in-out 1s;
  animation-iteration-count: 1;

  -webkit-animation: fadein ease-in-out 1s;
  -webkit-animation-iteration-count: 1;
  -moz-animation: fadein ease-in-out 1s;
  -moz-animation-iteration-count: 1;
}

@keyframes fadein{
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-moz-keyframes fadein{
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

/* Fadedown */

.fadedown{
  animation: fadedown ease 1.5s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  -webkit-animation: fadedown ease 1.5s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: fadedown ease 1.5s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -o-animation: fadedown ease 1.5s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -ms-animation: fadedown ease 1.5s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
}

@keyframes fadedown{
  0% {
    opacity:0;
    transform:  translate(0px,-50px)  ;
  }
  100% {
    opacity:1;
    transform:  translate(0px,0px)  ;
  }
}

@-moz-keyframes fadedown{
  0% {
    opacity:0;
    -moz-transform:  translate(0px,-50px)  ;
  }
  100% {
    opacity:1;
    -moz-transform:  translate(0px,0px)  ;
  }
}

@-webkit-keyframes fadedown {
  0% {
    opacity:0;
    -webkit-transform:  translate(0px,-50px)  ;
  }
  100% {
    opacity:1;
    -webkit-transform:  translate(0px,0px)  ;
  }
}

@-o-keyframes fadedown {
  0% {
    opacity:0;
    -o-transform:  translate(0px,-50px)  ;
  }
  100% {
    opacity:1;
    -o-transform:  translate(0px,0px)  ;
  }
}

@-ms-keyframes fadedown {
  0% {
    opacity:0;
    -ms-transform:  translate(0px,-50px)  ;
  }
  100% {
    opacity:1;
    -ms-transform:  translate(0px,0px)  ;
  }
}

/* # Media Queries
---------------------------------------------------------------------------------------------------- */

@media only screen and (max-width: 1280px) {
	
	.restrict, section#get-in-touch div.right, section#contact-details-map div.left {
		width: 100%;
		padding-left: 40px;
		padding-right: 40px;
	}
	
	section#get-in-touch div.right, section#contact-details-map div.left {
		width: 50%;
	}
	
	#sidebar {
		padding-left: 40px;
	}
	
	section#main-content div#content {
		padding-right: 40px;
	}
	
}

@media only screen and (max-width: 1200px) {
	
	nav a {
		padding: 15px 10px;
	}

	header {
		font-size: 14px;
		}
	
	header a#logo {
		min-width: initial;
		width: 280px;
		}
	
	nav#login ul li:hover ul {
		top: 54px;
		}
	
}

@media only screen and (max-width: 1080px) {
	
	nav#primary ul li a {
		padding: 15px 15px;
		}
	
}

@media only screen and (max-width: 1022px) {
	
	header {
		justify-content: center;
		}

	/* Start Mobile Menu */
	
	nav#primary, nav#login {
		display: none;
		}
		
	nav#mobile {
		display: block;
		text-align: left;
		width: 100%;
		z-index: 99999;
		box-sizing: border-box;
		font-weight: 600;
		font-size: 14px;
		position: absolute;
		left: 0px;
		top: 0px;
		padding-right: 0px;
		background-color: transparent;
	}

	nav#mobile button {
		font-family: 'Font Awesome 5 Free';
		font-weight: 700;
		cursor: pointer;
		color: var(--red);
		line-height: 1;
		font-size: 40px;
		border: none;
		background: none;
		width: 40px;
		height: 40px;
		text-align: right;
		padding: 0px !important;
		position: absolute;
		top: 44px;
		left: 40px;
		-webkit-transition: all .2s ease-in-out;
		-moz-transition: all .2s ease-in-out; 
		-o-transition: all .2s ease-in-out; 
		-ms-transition: all .2s ease-in-out; 
	}
	
	header.small nav#mobile button {
		top: 16px;
	}
	
	header.small nav#mobile div#mobile-menu-items {
		top: 44px;
	}
	
	nav#mobile button:hover {
		color: var(--yellow);
	}
	
	nav#mobile div#mobile-menu-items {
		position: absolute;
		top: 75px;
		width: 100%;
		-webkit-transition: all .2s ease-in-out;
		-moz-transition: all .2s ease-in-out; 
		-o-transition: all .2s ease-in-out; 
		-ms-transition: all .2s ease-in-out; 
	}
	
	nav#mobile ul {
		padding-top: 10px;
		padding-bottom: 10px;
		padding-right: 0px;
		background-color: rgba(255,255,255,.95);
		margin-top: 25px;
		-webkit-box-shadow: 0px 8px 0px 0px rgba(0,0,0,0.05);
		-moz-box-shadow: 0px 8px 0px 0px rgba(0,0,0,0.05);
		box-shadow: 0px 8px 0px 0px rgba(0,0,0,0.05);
		background-color: rgba(255,255,255,.95);
}
	
	nav#mobile ul li {
		padding: 10px 0;
	}
		
	nav#mobile a {
		color: #000000;
		text-decoration: none;
		padding-left: 40px;
		padding-right: 25px;
	}
	nav#mobile a:hover {
		color: var(--red);
	}
	
	nav#mobile a:hover:after {
		content: none;
		}
	
	/* End Mobile Menu */
	
	section#red-footer .restrict div:first-of-type a {
		word-break: break-all;
		}
	
	section#four-boxes div.box {
		width: calc(50% - 10px);
		margin-bottom: 19px;
		}
	section#four-boxes div.box:last-of-type, section#four-boxes div.box:nth-last-of-type(2) {
		margin-bottom: 0px;
		}
	
	section#contact-details-map div.right, section#contact-details-map div.left {
		width: 100% !important;
		max-width: 100%;
		}
	
	section#contact-details-map div.left {
		padding-top: 50px;
		padding-bottom: 40px;
		}
	
	section#contact-details-map div.right {
		padding-top: 40%;
		}
	
	footer ul li:last-of-type {
		display: block;
		margin-top: 10px;
		}
	footer ul li:last-of-type:after, footer ul li:nth-last-of-type(2):after {
		content: none;
		}
	
	div#pull-quote {
		font-size: 18px;
		width: calc(100% - 0px);
	}
	
	div#sidebar div#shopper-count {
		margin-left: -50px;
		margin-right: -40px;
		}
	
	div#sidebar p a {
		word-break: break-all;
		}
	
}

@media only screen and (max-width: 650px) {

	header {
		justify-content: flex-end !important;
		padding: 20px 20px;
		}
	
	header.small {
		padding: 0px 20px;
		}
	
	header a#logo {
		min-width: initial;
		width: calc(100% - 50px);
		min-height: 50px;
		display: flex;
		}
	
	nav#mobile button {
		left: 20px;
		top: 35px;
		}
	
	section#homepage-heroes {
		flex-wrap: wrap;
		}

	section#homepage-heroes div.hero {
		width: 100%;
		padding-top: 15%;
		padding-bottom: 15%;
		padding-left: 50px;
		padding-right: 50px;
		}
	section#homepage-heroes div.hero:first-of-type {
		border-bottom: 15px solid white;
		}
	section#homepage-heroes div.hero div {
		padding: 20px;
		}
	section#homepage-heroes div.hero div br {
		display: none;
		}
	
	section#homepage-shoppercount-benchmarks {
		flex-wrap: wrap;
		background: white;
		}
	section#homepage-shoppercount-benchmarks div#shopper-count, section#homepage-shoppercount-benchmarks div#benchmarks {
		width: 100%;
		}
	section#homepage-shoppercount-benchmarks div#shopper-count {
		background: rgba(229,233,236,1);
		}
	
	section#homepage-shoppercount-benchmarks div#benchmarks {
		background: rgba(244,242,242,1);
		}
	
	section#stats {
		padding-top: 50px;
		padding-bottom: 40px;
		}
	
	section#stats .restrict {
		flex-wrap: wrap;
		}
	section#stats .restrict div {
		width: calc(100%);
		text-align: center;
		margin-bottom: 20px;
		}
	section#stats .restrict div:last-of-type {
		margin-bottom: 0px;
		}
	section#stats h4 {
		padding-bottom: 15px;
		margin-bottom: 15px;
		}
	section#stats h4:after {
		content: '';
		border-bottom: 2px solid white;
		width: 100px;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
	}
	
	section#red-footer .restrict {
		padding-top: 40px;
		padding-bottom: 30px;
		}
	section#red-footer .restrict div {
		display: none;
	}
	section#red-footer .restrict div:first-of-type {
		display: block;
		width: 100%;
		text-align: center;
		}
	section#red-footer img#logo-white {
		margin-left: auto;
		margin-right: auto;
		}
	
	section#main-content div.restrict {
		flex-wrap: wrap;
		padding: 0px;
		}
	
	section#main-content {
		background: white;
		}
	section#main-content div.restrict #sidebar {
		order: -1;
		width: 100%;
		padding-left: 40px;
		padding-right: 40px;
		padding-top: 25px;
		padding-bottom: 25px;
		}
	section#main-content div.restrict #sidebar ul {
		padding-top: 0px;
		}
	section#main-content div.restrict #sidebar h4 {
		display: none;
		}
	#sidebar ul li a {
		padding: 7px 0px;
		}
	div#sidebar div#shopper-count {
		margin-top: 25px;
		margin-bottom: -25px;
		}
	
	section#four-boxes div.box {
		width: calc(100% - 40px);
		margin-bottom: 20px !important;
		margin-left: auto;
		margin-right: auto;
		}
	section#four-boxes div.box:last-of-type {
		margin-bottom: 0px !important;
		}
	
	section#main-content div.restrict div#content {
		width: 100%;
		padding-left: 40px;
		padding-right: 40px;
		padding-top: 40px;
		padding-bottom: 40px;
		}
	section#main-content div#content ol li, section#main-content div#content ul li {
		padding-left: 25px;
		}
	
	footer {
		padding-left: 20px;
		padding-right: 20px;
		}
	footer ul li {
		display: block;
		padding: 0px;
		}
	footer ul li:after {
		content: none;
		}
	
	h2 {
		font-size: 20px;
		}
	h1 {
		font-size: 30px;
		}
	
	section#get-in-touch {
		flex-wrap: wrap;
		}
	section#get-in-touch div.left {
		width: 100%;
		padding-top: 100%;
		}
	section#get-in-touch div.right {
		width: 100%;
		padding-top: 50px;
		padding-bottom: 50px;
		}
	
	section#contact-details-map div.left div.addresses {
		flex-wrap: wrap;
		margin-bottom: 0px;
		text-align: left;
		}
	section#contact-details-map div.left div.addresses div:first-of-type, section#contact-details-map div.left div.addresses div:nth-of-type(2) {
		width: 100%;
		border-right: 0px;
		padding: 0px !important;
		margin-bottom: 30px;
		}
	section#contact-details-map div.right {
		padding-top: 80% !Important;
		}
	
	
	
	
}