/*
Theme Name: The Backing Group
Description: The Backing Group
Author: NTech Media
Author URI: http://ntechmedia.com


	Base Theme Name: HTML5 Blank
	Base Theme URI: http://html5blank.com
	Base Description: HTML5 Blank WordPress Theme
	Base Version: 1.4.2
	Base Author: Todd Motto (@toddmotto)
	Base Author URI: http://toddmotto.com
	Base Tags: Blank, HTML5, CSS3
	
	Base License: MIT
	Base License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
/* Disabling due to issues, and because HTML5 Boilerplate made the same change */
/* for similar reasons 4 years ago and still hasn't added it back in yet */
/* https://github.com/h5bp/html5-boilerplate/commit/0d7f8d775ab4ab171c6372f992d506088ca5d3ed */
/* http://aestheticallyloyal.com/public/optimize-legibility/ */
/*	text-rendering:optimizeLegibility; */
}
/* html element 62.5% font-size for REM use */
html {
	margin:0;
	padding:0;
	width:100%;
	height:100%;
}
body {
	margin:0;
	padding:0;
	font-size:13px;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	color:#444;
	width:100%;
	height:100%;
}
.clear {
 clear:both;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#1e90ff;
	text-decoration:none;
}
a:hover {
	color:#1e90ff;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
/* header */
.header {
    width: 94%;
	height:100px;
	line-height:85px;
    z-index: 999;
    position: fixed;
    background-color:none;
	margin: 0 3% 36px 3%;
}

.logo {
	float:left;
}

/*=====================================
			HOME PAGE
======================================*/
.sitetitle {
	position: absolute;
    width: 500px;
    height: 50px;
    margin-left: -250px;
    margin-top: 160px;
    left: 50%;
    top: 50%;
    text-align: center;
    font-size: 19px;
    z-index: 999;
    color: #181818;
    letter-spacing: 1px;
    font-family: 'Karla', sans-serif;
}

.watermark {
	background: url('img/bg-test.png') no-repeat center center;
	background-size: contain;
}
.anchor {
	margin:;
}

.hideme
{
    opacity:0;
}

.showme {
  opacity:1!important;
}

@keyframes rotate {
 from {
transform: rotate(0deg);
}

to {
	transform: rotate(360deg);
}
}

.spinner {
	-webkit-animation: rotate 3s linear infinite;
	-webkit-animation-direction: normal;
	-moz-animation: rotate 3s linear infinite;
	-moz-animation-direction: normal;
	animation: rotate 10s linear infinite;
	animation-direction: normal;
	background:url('img/circle.png');
	height: 580px;
	width: 580px;
	overflow:hidden;
}
.spinnerinner {
	-webkit-animation: rotate 4s linear infinite; 
	-webkit-animation-direction: normal;
	-moz-animation: rotate 4s linear infinite; 
	-moz-animation-direction: normal;
	animation: rotate 9s linear infinite; 
	animation-direction: normal;
	background:url('img/innercircle.png');
	height: 580px;
	width: 580px;
	overflow:hidden;
}
.center {
	width:580px;
	height:580px;
	position:absolute;
	top:50%;
	left:50%;
	margin-top:-290px;
	margin-left:-290px;
	z-index: 998;
	overflow:hidden;
}
.centeroverlay {
	width:455px;
	height:244px;
	position:absolute;
	top:50%;
	left:50%;
	margin-top:-122px;
	margin-left:-227px;
	z-index: 998;
	overflow:hidden;
	display:none;
}
 
.container {
	width:100%;
    height: 100%;
	display:block;
	position:relative;
}
 
.box {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.section {
    position: relative;
    width: 100%;
}
 
.fit {
    height: 99.9%;
	-webkit-transition: all 1s ease; transition: all 1s ease
}

.t {
    display: table;
    width: 100%;
    height: 100%;
}
 
.tc {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.black {
	background-color:#181818;
}

.white {
	background-color:white;
}

.blue {
	background-color:lightblue;
}

/*====================================
			HOME PAGE DOTS
====================================*/

.dotstyle ul {
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 0;
	list-style: none;
	cursor: default;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index:999;
}

.dotstyle li {
	position: relative;
	display: block;
	float: left;
	margin: 0 16px;
	width: 16px;
	height: 16px;
	cursor: pointer;
}

.dotstyle li a {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	outline: none;
	border-radius: 50%;
	background-color: #7a7878;
	text-indent: -999em; /* make the text accessible to screen readers */
	cursor: pointer;
	position: absolute;
}

.dotstyle li a:focus {
	outline: none;
}

/* Stroke */

.dotstyle-stroke li a {
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
	-webkit-transition: box-shadow 0.3s ease, background-color 0.3s ease;
	transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.dotstyle-stroke li a:hover,
.dotstyle-stroke li a:focus {
	background-color: #ccc;
}

.dotstyle-stroke li.current a {
	background-color: transparent;
	/*box-shadow: 0 0 0 2px white;*/
}

.dotstyle {
	position: fixed;
    bottom: 50px;
    display: block;
    left: 50%;
    margin-left: -144px;
	background: none;
}

/*slides*/
.slide {
	display:none;
	text-align:center;
	font-size:15px;
	font-style: italic;
}

#quotes {
	position: absolute;
    width: 100%;
    bottom: 18px;
}

.slide:first-child {
	display:block;
}

/*=====================================
		HEADLINES CENTERED
=====================================*/

.headline {
    font-size: 4.5em;
    font-weight: 500;
    line-height: 1.1em;
    margin: 0 10% 32px 10%;
    font-family: 'Karla', sans-serif;
    font-weight: normal;
    text-align: center;
    letter-spacing: 0.01em;
}

.actionsmalltext {
    width: 100%;
    height: auto;
    display: block;
    line-height: 1.8em;
    color: #888;
    text-align: center;
}

.readmore {
    width: 250px;
    display: block;
    border: 1px solid #888;
    padding: 10px;
    margin: 39px auto 0 auto;
    color: #888;
}

.whitetext {
	color:#f2f2f2;
}

.blacktext {
	color:#181818;
}



/*------------------------------------*\
    DESKTOP NAV
\*------------------------------------*/
/*div.menu {
	width: 100%;	
}

.nav {
	display: inline-block;
	vertical-align: top;
	width: 100%;	
	background:#000;
}

.nav ul {
	list-style: none;
	padding: 0px;
	margin: 0px auto;
	display: table;
	width: 1100px;
	height:40px;
}

.nav ul li {
	display: table-cell;
}

.nav ul li:hover {
	background:#CCC;

}

.nav ul li a {
	display: block;
	line-height: 40px;
	height: 40px;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 20px;
	color: #FFFFFF;
	text-align: center;
	font-weight: normal;
}

.nav ul li:hover a {
	text-decoration: none;
	color:#666;
}

.nav {
	width:auto;
	float:right;
	position: relative;
    z-index: 999;
}

.nav ul li {
	display:table-cell;
	padding: 0 10px;
	font-size: 16px;
}

.nav ul li a {
	color:#888;
	text-decoration:none;
}


div.mobilenav {
	display:none;
}*/

/*contact*/
.contact-us .singlecolumncontent {
    max-width: 650px;
    margin: 0 auto;
    height: auto;
    display: block;
	padding: 0 10px;
}

/*------------------------------------*\
    MOBILE NAV
\*------------------------------------*/

.icon {
    width: 40px;
    height: 40px;
    background: url('/wp-content/themes/The%20Backing%20Group/img/mobmenuiconblack_cobaltbright.png');
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 999;
}

div.moblogo {
    width: 150px;
    height: 14px;
    /* background: url('/wp-content/themes/The%20Backing%20Group/img/mob-logo_cobaltbright.png'); */
    position: absolute;
    top: 18px;
    right: 200px;
    z-index: 999;
    display: none;
    font-size: 22px;
}

div.moblogo1 {
    width: 150px;
    height: 14px;
    /* background: url('/wp-content/themes/The%20Backing%20Group/img/mob-logo_cobaltbright.png'); */
    position: absolute;
    top: -3px;
    right: 24px;
    z-index: 999;
    display: block;
    font-size: 22px;
	cursor:pointer;
	color: #0047AB;
}

.logo {
		display:block;
}

.wrapper {
    display: table;
    margin: 70px auto 0 auto;
    position: relative;
    width: 95%;
    max-width: 1280px;
}

.nav {
	display:none;
}

div.mobilenav {
	display:block;
	width:100%;
	height: 50px;
	background:none;
	background-position:left;
	position:fixed;
	top:0;
	left:0;
	z-index:999;
}

div.mobilenav ul {
    padding: 0;
    position: relative;
    width: 200px;
    display: none;
    -webkit-transition: top 1s;
    -moz-transition: top 1s;
    -o-transition: top 1s;
    transition: top 1s;
    top: 70px;
    z-index: 5;
    margin: 0;
    background: rgba(253, 253, 253, 0.8);
    height: 100vh;
    left: calc(100% - 200px);
}

div.mobilenav ul li {
	text-decoration:none;
	list-style:none;
	padding: 8px 0 8px 15px;
}

div.mobilenav ul li a {
	font-size:15px;
	color:#181818;
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	font-weight: normal;
}

/*menu borders*/

div.mobilenav ul li {
    border-top: 1px solid rgba(212, 210, 210, 0.47);
    border-bottom: 1px solid rgba(247, 245, 245, 0.8);
    line-height: 30px;
}

div.mobilenav ul li:first-child {
	border-top: none;
}

div.mobilenav ul li:last-child {
	border-bottom: none;
}

/*------------------------------------*\
    	END MOBILE NAV
\*------------------------------------*/

/*------------------------------------
		2 COLUMNS TEXT
------------------------------------*/

.homecontent {
	max-width:1200px;
	margin: 0 auto 0 auto;
	padding-top:130px;
	position: relative;
    z-index: 998;
}

.textcontentdevice {
	display:none;
}

.textleft {
	width:48%;
	height:auto;
	margin:0 4% 15px 0;
	/*float:left;*/
	display: inline-block;
	vertical-align: top;
}

.textright {
	width:48%;
	height:auto;
	/*float:right;*/
	display: inline-block;
	vertical-align: top;
	margin:0 0 15px 0;
}

.textleft p,
.textright p {
	margin:0 0 15px 0;
}

.textleft,
.textright {
	line-height: 1.6em;
	vertical-align:top;
}

.textright {
}

.textright h2,
.textleft h2 {
	font-size:17px;
	font-weight:bold;
	margin-top:-15px;
	letter-spacing:normal;
	line-height:22px;
}

.internalcontent {
	max-width:1200px;
	height:auto;
	margin:0 auto;
	display:block;
	padding: 20px 0 20px 0;
}

.singlecolumncontent {
	max-width:1200px;
	margin: 0 auto;
	height:auto;
}



/*------------------------------------*\
    END DESKTOP NAV
\*------------------------------------*/

/* main content */
section[role=main] {
	display: table-cell;
}
/* sidebar */
.sidebar {
	display: table-cell;
}
/* footer */
.footer {
	display: block;
	text-align:center;
	width:100%;
	position:relative;
}

/*-----------------------------------------
				BACK TO TOP
-----------------------------------------*/
.cd-top {
	display: inline-block;
	height: 40px;
	width: 40px;
	position: fixed;
	bottom: 40px;
	right: 40px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	/* image replacement properties */
  	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background: #797979 url('/wp-content/themes/The Backing group/img/cd-top-arrow.png') no-repeat center 50%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .3s 0s, visibility 0s .3s;
	-moz-transition: opacity .3s 0s, visibility 0s .3s;
	transition: opacity .3s 0s, visibility 0s .3s;
	border-radius:25px;
	z-index:999;
}

.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
	-webkit-transition: opacity .3s 0s, visibility 0s 0s;
	-moz-transition: opacity .3s 0s, visibility 0s 0s;
	transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
	/* the button becomes visible */
  visibility: visible;
	opacity: 1;
}

.cd-top.cd-fade-out {
	/* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}

.no-touch .cd-top:hover {
	background-color: #666;
	opacity: 1;
}

.footer_sculpture {
	background: url(img/sculpture_circle.png) no-repeat left / auto 100%;
	width: 100%;
	max-width: 1200px;
	height: 200px;
	margin: 0px auto;
}

.about-us .footer_sculpture {
	background: url(img/sculpture_circle.png) no-repeat right / auto 100%;
}

.textleft ul {
	font-size: 15px;
	list-style: '–  ';
	margin-top: 0px;
	padding-left: 20px;
}

.how-it-works .textright {
	display: none;
}

.how-it-works .textleft,
.how-it-works h1 {
	display: inline-block;
	margin-right: 0px;
	width: 50%;
	min-width: 320px;
	text-align: left;
}

.how-it-works .textcontent {
	text-align: center;
}

.contact-us .singlecolumncontent {
	font-size: 15px;
}

/*=====================================
			CONTACT PAGE
=====================================*/
.gform_footer input[type=submit] {
	background:#000;
	border:none;
	border-radius:5px;
	color:#fff;
	padding: 5px 10px;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width:1140px) {
	
}

@media only screen and (max-width:1024px) {

div.mobilenav {
    display: block;
    width: 100%;
    height: 70px;
    background: none;
    background-position: left;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

div.mobilenav ul li:first-child {
	border-top: none;
}

div.mobilenav ul li:last-child {
	border-bottom: none;
}
	
div.moblogo {
	display:none;
}

div.moblogo1 {
	display:block;
}
/*	
div.mobilenav ul li {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(0, 0, 0, 0.8);
	line-height: 30px;
}

div.mobilenav ul {
	padding:0;
	position: relative;
	width: 100%;
	height:auto;
	display:none;
	-webkit-transition: top 1s;
	-moz-transition: top 1s;
	-o-transition: top 1s;
	transition: top 1s;
	top:70px;
	left:0;
	right:0;
	z-index:5;
	margin:0;
	background:rgba(0, 0, 0, 0.80);
}

div.mobilenav ul li a {
	font-size:15px;
	color:#fff;
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	font-weight: normal;
}
*/	

div.moblogo1 {
    width: 150px;
    height: 14px;
    /* background: url('/wp-content/themes/The%20Backing%20Group/img/mob-logo_cobaltbright.png'); */
    position: absolute;
    top: -3px;
    right: 3px;
    z-index: 999;
    display: block;
    font-size: 22px;
    cursor: pointer;
}
	
nav.nav {
	line-height:22px;
}

.dotstyle {
	position: fixed;
	bottom: 20px;
	display: block;
	left: 50%;
	margin-left: -144px;
	background: none;
}

.homecontent {
    max-width: 1200px;
    margin: 0 auto 0 auto;
    padding: 130px 15px 0 15px;
    position: relative;
    z-index: 998;
}

}

@media only screen and (max-width:768px) {
	


div.moblogo {
	display:block;
}

div.moblogo1 {
	display:none;
}

}

@media only screen and (max-width:736px) {
	
/*slides*/
.slide {
	display:none;
	text-align:center;
	font-size:13px;
	font-style: italic;
}

#quotes {
	position: absolute;
    width: 100%;
    bottom: 4px;
}

.slide:first-child {
	display:block;
}
	
div.mobilenav ul li:first-child {
    border-top: 1px solid rgba(212, 210, 210, 0.47);
    border-bottom: none;
    line-height: 30px;
}

div.moblogo {
	display:block;
}

div.moblogo1 {
	display:none;
}
	
div.mobilenav {
    display: block;
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.7);
    background-position: left;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}
	
.center {
    width: 100%;
    /* height: 100%; */
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -300px;
    margin-left: -368px;
    z-index: 998;
    overflow: hidden;
}

.centeroverlay {
    width: 250px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -62px;
    margin-left: -128px;
    z-index: 998;
    overflow: hidden;
}

.sitetitle {
    position: absolute;
    /* width: 300px; */
    /* height: 50px; */
    margin-left: -248px;
    margin-top: 110px;
    /* left: 50%; */
    top: 50%;
    text-align: center;
    font-size: 19px;
    z-index: 999;
    color: #181818;
    letter-spacing: 1px;
    font-family: 'Karla', sans-serif;
}

.spinner {
    -webkit-animation: rotate 3s linear infinite;
    -webkit-animation-direction: normal;
    -moz-animation: rotate 3s linear infinite;
    -moz-animation-direction: normal;
    animation: rotate 10s linear infinite;
    animation-direction: normal;
    background: url('img/circle.png');
    height: 300px;
    width: 300px;
    overflow: hidden;
    background-size: 300px 300px;
    margin: 146px auto 0 auto;
}

.spinnerinner {
    -webkit-animation: rotate 4s linear infinite;
    -webkit-animation-direction: normal;
    -moz-animation: rotate 9s linear infinite;
    -moz-animation-direction: normal;
    animation: rotate 9s linear infinite;
    animation-direction: normal;
    background: url('img/innercircle.png');
    height: 300px;
    width: 300px;
    overflow: hidden;
	background-size: 300px 300px;
}

}

@media only screen and (max-width:768px) {
	
.homecontent {
    max-width: 1200px;
    margin: 0 auto 0 auto;
    padding: 130px 15px 0 15px;
    position: relative;
    z-index: 998;
}
	
/*------------------------------------*\
    MOBILE NAV
\*------------------------------------*/

.icon {
    width: 40px;
    height: 40px;
    background: url('/wp-content/themes/The%20Backing%20Group/img/mobmenuiconblack_cobaltbright.png');
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 999;
}

.moblogo {
    width: 150px;
    height: 14px;
    background: url('/wp-content/themes/The%20Backing%20Group/img/mob-logo_cobaltbright.png');
    position: absolute;
    top: 18px;
    left: 10px;
    z-index: 999;
}

.logo {
		display:none;
}

.wrapper {
    display: table;
    margin: 70px auto 0 auto;
    position: relative;
    width: 95%;
    max-width: 1280px;
}

.nav {
	display:none;
}

div.mobilenav {
	display:block;
	width:100%;
	height: 50px;
	background:#fff;
	background-position:left;
	position:fixed;
	top:0;
	left:0;
	z-index:999;
	/*-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);*/
}
/*
div.mobilenav ul {
	padding:0;
	position: relative;
	width: 100%;
	display:none;
	-webkit-transition: top 1s;
	-moz-transition: top 1s;
	-o-transition: top 1s;
	transition: top 1s;
	top:50px;
	z-index:5;
	margin:0;
	background:rgba(0, 0, 0, 0.80);
}

div.mobilenav ul li {
	text-decoration:none;
	list-style:none;
	padding: 8px 0 8px 15px;
}

div.mobilenav ul li a {
	font-size:15px;
	color:#fff;
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	font-weight: normal;
}
*/
/*menu borders

div.mobilenav ul li {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(0, 0, 0, 0.8);
	line-height: 30px;
}
*/
div.mobilenav ul li:first-child {
	border-top: none;
}

div.mobilenav ul li:last-child {
	border-bottom: none;
}

/*mobile icon is set in funvtions.php*/

/*------------------------------------*\
    	END MOBILE NAV
\*------------------------------------*/
}

@media only screen and (max-width:732px) {
	
div.moblogo {
	display:block;
}

div.moblogo1 {
	display:none;
}
	
div.mobilenav {
    display: block;
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.7);
    background-position: left;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}
	
.center {
    width: 100%;
    /* height: 100%; */
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -300px;
    margin-left: -342px;
    z-index: 998;
    overflow: hidden;
}

.centeroverlay {
    width: 250px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -62px;
    margin-left: -128px;
    z-index: 998;
    overflow: hidden;
}

.sitetitle {
    position: absolute;
    /* width: 300px; */
    /* height: 50px; */
    margin-left: -248px;
    margin-top: 110px;
    /* left: 50%; */
    top: 50%;
    text-align: center;
    font-size: 19px;
    z-index: 999;
    color: #181818;
    letter-spacing: 1px;
    font-family: 'Karla', sans-serif;
}

.spinner {
    -webkit-animation: rotate 3s linear infinite;
    -webkit-animation-direction: normal;
    -moz-animation: rotate 3s linear infinite;
    -moz-animation-direction: normal;
    animation: rotate 10s linear infinite;
    animation-direction: normal;
    background: url('img/circle.png');
    height: 300px;
    width: 300px;
    overflow: hidden;
    background-size: 300px 300px;
    margin: 146px auto 0 auto;
}

.spinnerinner {
    -webkit-animation: rotate 4s linear infinite;
    -webkit-animation-direction: normal;
    -moz-animation: rotate 9s linear infinite;
    -moz-animation-direction: normal;
    animation: rotate 9s linear infinite;
    animation-direction: normal;
    background: url('img/innercircle.png');
    height: 300px;
    width: 300px;
    overflow: hidden;
	background-size: 300px 300px;
}
	
}


@media only screen and (max-width:667px) {
	
/*slides*/
.slide {
	display:none;
	text-align:center;
	font-size:12px;
	font-style: italic;
}

#quotes {
	position: absolute;
    width: 100%;
    bottom: 0;
	z-index:999;
}

.slide:first-child {
	display:block;
}
	
div.moblogo {
	display:block;
}

div.moblogo1 {
	display:none;
}
	
div.mobilenav {
    display: block;
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.7);
    background-position: left;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}
	
.center {
    width: 100%;
	height:auto;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -300px;
    margin-left: -334px;
    z-index: 998;
    overflow: hidden;
}

.centeroverlay {
    width: 250px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -62px;
    margin-left: -128px;
    z-index: 998;
    overflow: hidden;
}

.sitetitle {
    position: absolute;
    /* width: 300px; */
    /* height: 50px; */
    margin-left: -248px;
    margin-top: 100px;
    /* left: 50%; */
    top: 50%;
    text-align: center;
    font-size: 19px;
    z-index: 999;
    color: #181818;
    letter-spacing: 1px;
    font-family: 'Karla', sans-serif;
}

.spinner {
    -webkit-animation: rotate 3s linear infinite;
    -webkit-animation-direction: normal;
    -moz-animation: rotate 3s linear infinite;
    -moz-animation-direction: normal;
    animation: rotate 10s linear infinite;
    animation-direction: normal;
    background: url('img/circle.png');
    height: 300px;
    width: 300px;
    overflow: hidden;
    background-size: 300px 300px;
    margin: 146px auto 0 auto;
}

.spinnerinner {
    -webkit-animation: rotate 4s linear infinite;
    -webkit-animation-direction: normal;
    -moz-animation: rotate 9s linear infinite;
    -moz-animation-direction: normal;
    animation: rotate 9s linear infinite;
    animation-direction: normal;
    background: url('img/innercircle.png');
    height: 300px;
    width: 300px;
    overflow: hidden;
	background-size: 300px 300px;
}
	
}

@media only screen and (max-width:640px) {
	
div.moblogo {
	display:block;
}

div.moblogo1 {
	display:none;
}

.spinnerinner {
    -webkit-animation: rotate 4s linear infinite;
    -webkit-animation-direction: normal;
    -moz-animation: rotate 4s linear infinite;
    -moz-animation-direction: normal;
    animation: rotate 9s linear infinite;
    animation-direction: normal;
    background: url('img/innercircle.png');
    height: 300px;
    width: 300px;
    overflow: hidden;
    background-size: 300px 300px;
}

.spinner {
    -webkit-animation: rotate 3s linear infinite;
    -webkit-animation-direction: normal;
    -moz-animation: rotate 10s linear infinite;
    -moz-animation-direction: normal;
    animation: rotate 10s linear infinite;
    animation-direction: normal;
    background: url('img/circle.png');
    height: 300px;
    width: 300px;
    overflow: hidden;
    background-size: 300px 300px;
    margin: 146px auto 0 auto;
}

.center {
    width: 100%;
    /* height: 100%; */
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -300px;
    margin-left: -320px;
    z-index: 998;
    overflow: hidden;
}

div.mobilenav {
    display: block;
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.7);
    background-position: left;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.moblogo {
    width: 150px;
    height: 14px;
    background: url('/wp-content/themes/The%20Backing%20Group/img/mob-logo_cobaltbright.png');
    position: absolute;
    top: 18px;
    left: 10px;
    z-index: 999;
}

.icon {
    width: 40px;
    height: 40px;
    background: url('/wp-content/themes/The%20Backing%20Group/img/mobmenuiconblack_cobaltbright.png');
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 999;
}

.sitetitle {
    /* position: absolute; */
    /* width: 300px; */
    /* height: 50px; */
    margin-left: -242px;
    margin-top: 96px;
    /* left: 50%; */
    top: 50%;
    text-align: center;
    font-size: 19px;
    z-index: 999;
    color: #181818;
    letter-spacing: 1px;
    font-family: 'Karla', sans-serif;
}

}

@media only screen and (max-width:568px) {
	
div.moblogo {
	display:block;
}

div.moblogo1 {
	display:none;
}
	
.homecontent {
    max-width: 1200px;
    margin: 0 auto 0 auto;
    padding-top: 10px;
    position: relative;
    z-index: 998;
    padding: 0 10px;
}
	.logo {
		display:none;
	}
	
.sitetitle {
    position: absolute;
    width: 100%;
    /* height: 50px; */
    margin-left: -287px;
    margin-top: 82px;
    /* left: 50%; */
    text-align: center;
    font-size: 19px;
    z-index: 999;
    color: #181818;
    letter-spacing: 1px;
    font-family: 'Karla', sans-serif;
}

.centeroverlay {
    width: 259px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -62px;
    margin-left: -131px;
    z-index: 998;
    overflow: hidden;
}

.center {
    width: 100%;
    /* height: 100%; */
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -300px;
    margin-left: -284px;
    z-index: 998;
    overflow: hidden;
}

.spinner {
	-webkit-animation: rotate 3s linear infinite;
    -webkit-animation-direction: normal;
	-moz-animation: rotate 3s linear infinite;
    -moz-animation-direction: normal;
    animation: rotate 10s linear infinite;
    animation-direction: normal;
    background: url('img/circle.png');
    height: 300px;
    width: 300px;
    overflow: hidden;
    background-size: 300px 300px;
    margin: 146px auto 0 auto;
}

.spinnerinner {
	-webkit-animation: rotate 4s linear infinite;
    -webkit-animation-direction: normal;
	-moz-animation: rotate 9s linear infinite;
    -moz-animation-direction: normal;
    animation: rotate 9s linear infinite;
    animation-direction: normal;
    background: url('img/innercircle.png');
    height: 300px;
    width: 300px;
    overflow: hidden;
    background-size: 300px 300px;
}

.icon {
    width: 40px;
    height: 40px;
    background: url('/wp-content/themes/The%20Backing%20Group/img/mobmenuiconblack_cobaltbright.png');
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 999;
}

.moblogo {
    width: 150px;
    height: 14px;
    background: url('/wp-content/themes/The%20Backing%20Group/img/mob-logo_cobaltbright.png');
    position: absolute;
    top: 18px;
    left: 5px;
    z-index: 999;
}

.cd-top {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 13px;
    right: 13px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: #797979 url('/wp-content/themes/The Backing group/img/cd-top-arrow.svg') no-repeat center 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
    border-radius: 25px;
    z-index: 999;
}

.textcontentdevice {
    display: block;
    width: 100%;
    padding: 40px 0 10px 0;
}

.textcontent {
	display:none;
}

.singlecolumncontent {
	display:none;
}

div.mobilenav {
    display: block;
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.7);
    background-position: left;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.moblogo {
    width: 150px;
    height: 14px;
    background: url('/wp-content/themes/The%20Backing%20Group/img/mob-logo_cobaltbright.png');
    position: absolute;
    top: 18px;
    left: 10px;
    z-index: 999;
}

.dotstyle {
	position: fixed;
	bottom: 15px;
	display: block;
	left: 50%;
	margin-left: -144px;
	background: none;
}
}

@media only screen and (max-width:414px) {/*Galaxy Note etc*/

div.moblogo {
	display:block;
}

div.moblogo1 {
	display:none;
}

.centeroverlay {
    width: 278px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -62px;
    margin-left: -139px;
    z-index: 998;
    overflow: hidden;
}

.center {
    width: 100%;
    /* height: 100%; */
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    margin-top: -297px;
    margin-left: -207px;
    z-index: 998;
    overflow: hidden;
    /* margin: 0 auto; */
}

div.mobilenav {
    display: block;
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.7);
    background-position: left;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.sitetitle {
    position: relative;
    width: 325px;
    height: 50px;
    left: 0;
    top: 0;
    text-align: center;
    font-size: 19px;
    z-index: 999;
    color: #181818;
    letter-spacing: 1px;
    font-family: 'Karla', sans-serif;
    margin: 550px auto 0 auto;
}
#quotes {
    position: absolute;
    width: 100%;
    bottom: 39px;
    z-index: 999;
}	
}

@media only screen and (max-width:375px) {/*Galaxy Note etc*/

/*slides*/
.slide {
	display:none;
	text-align:center;
	font-size:12px;
	font-style: italic;
}

#quotes {
	position: absolute;
    width: 100%;
    bottom: 33px;
}

.slide:first-child {
	display:block;
}

div.moblogo {
	display:block;
}

div.moblogo1 {
	display:none;
}

.centeroverlay {
    width: 278px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -62px;
    margin-left: -139px;
    z-index: 998;
    overflow: hidden;
}

.center {
    width: 99.8%;
    /* height: 100%; */
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    margin-top: -297px;
    margin-left: -187px;
    z-index: 998;
    overflow: hidden;
    /* margin: 0 auto; */
}

div.mobilenav {
    display: block;
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.7);
    background-position: left;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.sitetitle {
    position: relative;
    width: 325px;
    height: 50px;
    left: 0;
    top: 0;
    text-align: center;
    font-size: 19px;
    z-index: 999;
    color: #181818;
    letter-spacing: 1px;
    font-family: 'Karla', sans-serif;
    margin: 500px auto 0 auto;
}	
}

/*iphone portrait*/
@media only screen and (max-width:320px) {
	
/*contact*/
.contact-us .singlecolumncontent {
    max-width: 625px;
    margin: 0 auto;
    height: auto;
    display: block;
    margin-top: 23%;
	padding: 0 10px;
}
	
div.moblogo {
	display:block;
}

div.moblogo1 {
	display:none;
}
	
.textcontentdevice {
    display: block;
    width: 100%;
    padding: 30px 0 0 0;
}

.wp-image-39 {
	width:100%;
	padding: 0 10px;
}

.wp-image-52 {
	width:100%;
	padding: 0 10px;
}
	
.homecontent {
    max-width: 1200px;
    margin: 0 auto 0 auto;
    padding: 10px 10px 0 10px;
    position: relative;
    z-index: 998;
}

.textcontentdevice {
	display:block;
	width:100%;
}

.sitetitle {
    position: relative;
    width: 318px;
    height: 50px;
    left: 0;
    top: 29px;
    text-align: center;
    font-size: 17px;
    z-index: 999;
    color: #181818;
    letter-spacing: 1px;
    font-family: 'Karla', sans-serif;
    margin: 402px auto 0 auto;
}

.centeroverlay {
    width: 250px;
    height: auto;
    position: absolute;
    margin-top: -75px;
    margin-left: -126px;
    z-index: 998;
    overflow: hidden;
}

.center {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50%;
    margin-left: -50%;
    z-index: 998;
    overflow: hidden;
}

.spinner {
	-webkit-animation: rotate 3s linear infinite;
    -webkit-animation-direction: normal;
	-moz-animation: rotate 3s linear infinite;
    -moz-animation-direction: normal;
    animation: rotate 10s linear infinite;
    animation-direction: normal;
    background: url('img/circle.png');
    height: 300px;
    width: 300px;
    overflow: hidden;
    background-size: 300px 300px;
    margin: 0 auto;
}

.spinnerinner {
	-webkit-animation: rotate 4s linear infinite;
    -webkit-animation-direction: normal;
	-moz-animation: rotate 9s linear infinite;
    -moz-animation-direction: normal;
    animation: rotate 4s linear infinite;
    animation-direction: normal;
    background: url('img/innercircle.png');
    height: 300px;
    width: 300px;
    overflow: hidden;
    background-size: 300px 300px;
}

.logo {
    float: left;
    display: none;
}

.icon {
    width: 40px;
    height: 40px;
    background: url('/wp-content/themes/The%20Backing%20Group/img/mobmenuiconblack_cobaltbright.png');
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 999;
}

.moblogo {
    width: 150px;
    height: 14px;
    background: url('/wp-content/themes/The%20Backing%20Group/img/mob-logo_cobaltbright.png');
    position: absolute;
    top: 18px;
    left: 10px;
    z-index: 999;
}

.headline {
    font-size: 2.5em;
    font-weight: 500;
    line-height: 1.1em;
    margin: 0 10% 32px 10%;
    font-family: 'Karla', sans-serif;
    font-weight: normal;
    text-align: center;
    letter-spacing: 0.01em;
}

}

/*dot icons*/
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700);
@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: 'codropsicons';
	src:url('/wp-content/themes/The%20Backing%20Group/img/codropsicons/codropsicons.eot');
	src:url('/wp-content/themes/The%20Backing%20Group/img/codropsicons/codropsicons.eot?#iefix') format('embedded-opentype'),
		url('/wp-content/themes/The%20Backing%20Group/img/codropsicons/codropsicons.woff') format('woff'),
		url('/wp-content/themes/The%20Backing%20Group/img/codropsicons/codropsicons.ttf') format('truetype'),
		url('/wp-content/themes/The%20Backing%20Group/img/codropsicons/codropsicons.svg#codropsicons') format('svg');
}

/* =========================================================   IGNORE BELOW THIS LINE   =======================================================*/


::selection{background:#04A4CC;color:#FFF;text-shadow:none}::-webkit-selection{background:#04A4CC;color:#FFF;text-shadow:none}::-moz-selection{background:#04A4CC;color:#FFF;text-shadow:none}.alignnone{margin:5px 20px 20px 0}.aligncenter,div.aligncenter{display:block;margin:5px auto}.alignright{float:right;margin:5px 0 20px 20px}.alignleft{float:left;margin:5px 20px 20px 0}.aligncenter{display:block;margin:5px auto}a img.alignright{float:right;margin:5px 0 20px 20px}a img.alignleft,a img.alignnone{margin:5px 20px 20px 0}a img.alignleft{float:left}a img.aligncenter{display:block;margin-left:auto;margin-right:auto}.wp-caption{background:#FFF;border:1px solid #F0F0F0;max-width:96%;padding:5px 3px 10px;text-align:center}.wp-caption.alignleft,.wp-caption.alignnone{margin:5px 20px 20px 0}.wp-caption.alignright{margin:5px 0 20px 20px}.wp-caption img{border:0;height:auto;margin:0;max-width:98.5%;padding:0;width:auto}.gallery-caption,.wp-caption .wp-caption-text{font-size:11px;line-height:17px;margin:0;padding:0 4px 5px}@media print{blockquote,img,pre,tr{page-break-inside:avoid}*{background:0 0!important;color:#000!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999}thead{display:table-header-group}img{max-width:100%!important}@page{margin:.5cm}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}}