/***

ripped off from: https://www.oneflare.com.au/
to do: 

develop instruction tsd
dolla dolla bills yall

***/


/*toggles*/


div.header {
	background: url(images/headerbg1.jpg) no-repeat center; 
	background-position: center;
	background-size:cover;
	background-attachment:fixed;
}


/*core tags*/

body{
	width:100%;
	font-family: 'Open Sans', sans-serif;
	background: url(images/bgbody.jpg) #333;
	font-size: 15px;
	line-height:2em;
	color:#fff;
	font-style: normal;
	margin: 0;
	padding: 0;
}

a {
	color:#52b448;
	transition: all 0.4s ease;
	font-weight:500;
	text-decoration:none;
}

h1 {
	font-size:1em;
	color:inherit;
	font-weight:300;
	font-style:normal;
	border-bottom:1px solid rgba(255,255,255,.3);
	padding-bottom:.5em;
	margin-bottom:.5em;
}

body.backpage h1 {
	border-bottom:none;
}

h2{
	font-size:1.8em;
	letter-spacing:-1px; 
	line-height: 1.3em;
	position:relative;
	text-align:center;
	font-family: 'Roboto Condensed', sans-serif;
	letter-spacing:.5px;
	color:#fff;
	font-weight:300;
	margin-top:.5em;
	font-style:normal
}

h2:after {
    content: '';
    display: block;
    width: 200px;
    height: 1px;
    background: #ccc;
    margin: 40px auto;
}


h3{
	font-size:1.5em;
	line-height:1.5em;
	color: #52b448;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight:300;
	font-style:normal;
}
h4{
	font-size:1.1em;
	line-height:1.5em;
	color: #3175fd;
    text-transform: uppercase;
	letter-spacing:.2em;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight:300;
	margin-bottom:.5em;
	font-style:normal;
	border-bottom: solid 1px;
    padding-bottom: 1em;
    margin:1em 0;
}
h5{
	font-size:1.1em;
	line-height:1.5em;
	color: #52b448;
    text-transform: uppercase;
	letter-spacing:.2em;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight:300;
	margin-bottom:.5em;
	font-style:normal;
	border-bottom: solid 1px;
    padding-bottom: 1em;
    margin:1em 0;
	text-align:center;
}
h6{
	font-size:1em;
	color: #fff;
	font-family: 'Roboto Condensed', sans-serif;
	letter-spacing:2px;
}
ul, ol { 
    color: #fff;
	margin-left: 2em;
	line-height:2em;
}

.page ul {
	list-style-type:none;
	margin: .5em 0 .5em .5em;
}
.page ul>li {
    position: relative;
	margin:.5em 0;
}
.page ul>li:before {
	content:"»";
	margin-right:.5em;
	font-size:20px;
	color:#3175fd;
}

.page ol {
	list-style-type:none;
}

.page ol li {
    counter-increment: count-me;
}
.page ol li::before {
    content: counter(count-me) ". ";
    display: block;
    position: relative;
    max-width: 0px;
    max-height: 0px;
    left: -1.3em;
    top: .05em;
    color: #52b448;
    font-weight: bold;
}

.main p {
    margin-bottom: 0.8em;
}

.body blockquote {
	font-size:2em;
	text-align:center;
	padding:2em 1em 3em 80px;
	margin: 1em 0;
	position:relative;
	color:#333;
	font-style:italic;
	font-family: 'Arapey', serif;
}

.body blockquote:before {
    content: "\0022";
    height: 20px;
    width: 20px;
    position: absolute;
    left: 0px;
    font-size: 200px;
	font-family: serif;
	color: #11675E;
}

.body blockquote span {
	position:absolute;
	bottom:1em;
	right:1em;
	font-style:normal;
	font-size:.8em;
	font-family:'Open Sans Condensed', 'sans-serif';
	color: #11675E;
}

hr {
	border-top: 1px solid rgba(0,0,0,.4);
	margin:30px -1000px;
    height: 1px;
	text-align:center;
	color:#c1b59b;
}

img {
	box-sizing: border-box;
	max-width:100%;
}


@media (max-width:1000px){
	h1, h2 {
		margin: 0 0 15px;
	}

}

@media (max-width:560px){
	blockquote {
		padding: 2em 1em;
	}
	blockquote:before {
		top:50px;
	}
}

.wrapper {
	max-width:1140px;
	padding:0 15px;
	margin:auto;
}

.wrapper:after {
    content: "";
    display: block;
    clear: both;
}


/* top bar */

#topbar{
	width: 100%;
	z-index:1000;
	left:0px;
	text-align:center;
	position:absolute;
	border-bottom:1px solid rgba(255,255,255,.3);
}

#topbar:after {
	display:block;
	content:" ";
	clear:both;
}

#topbar > div {
	max-width:1140px;
	padding:0 15px;
	margin:auto;
}
#topbar a.logo{
	display:block;
	float:left;
	font-size:1.5em;
	text-decoration:none;
	font-family: 'Open Sans Condensed', sans-serif;
	width:200px;
	z-index: 1000;
	position:relative;
}
#topbar a.logo .mobilelogo {
	height:65px;
	background:url(images/mobilelogo.png) transparent no-repeat center; 
	background-size:contain;
	margin:10px;
	padding:5px;
}




/* top bar - mobile */


@media (max-width:780px){
	#topbar{ 
		position:relative;
		height:auto;
		background-color: transparent;
		margin-top:0;
	}
	#topbar > div {
		background:none;
		padding:0;
	}
	#topbar a.logo {
		float:left;
		background:none;
		margin:0;
		padding:.3em 0 0 0;
	}
}


/* Header */

div.header{
	width:100%;
	position:relative;
	height:800px;
	border-bottom:4px solid #3175fd;
}

body.backpage div.header {
	height:auto;
	background:#3175fd none repeat scroll 0 0;
}
div.header:after{
	    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 40px solid #3175fd;
    position: absolute;
    left: 50%;
    margin-left: -40px;
	bottom:-40px;
}
.banner {
	margin:auto;
	overflow:hidden;
	clear:both;
	height:auto;
	padding:250px 0 0;
}

body.backpage div.banner {
	padding: 125px 0 10px 0;
}
.headerimg{
	width:375px;
	height:250px;
	margin: auto;
	position: relative;
	float:right;
	border: 5px solid #fff;
	box-shadow:0 0 5px rgba(0,0,0,.5);
}

.bannertext {
	max-width:60%;
	font-size:4em;
	color:#fff;
	float:left;
	line-height:1.2em;
	font-family: 'Varela Round', sans-serif;
}

.bannertext blockquote{
	font-style:italic;
	font-size:1.2rem;
	line-height:1.5em;
	font-family:serif;
}
.bannertext blockquote span {
	font-family:sans-serif;
	font-style:normal;
	font-size:1rem;
	display:block;
}

.bragging1 {
	width:206px;
	height:77px;
	background:url('images/bragging1.png') no-repeat center;
	float:left;
	margin:15px 0 15px 5px;
}
.bragging2 {
	width:232px;
	height:77px;
	background:url('images/bragging2.png') no-repeat center;
	float:left;
	margin:15px 0 15px 5px;
}
.bragging3 {
	width:229px;
	height:77px;
	background:url('images/bragging3.png') no-repeat center;
	float:left;
	margin:15px 0 15px 5px;
}
.coolimage {
	background:url('images/coolimage.png') no-repeat center;
	height:80px;	
}

.bragging:after {
	content:" ";
	display:block;
	clear:both;
}

/* Top Phone */
.topcontact {
	float:right;
	background-color:rgba(0,0,0,.5);
	border-radius:3px;
	border:1px solid #fff;
	padding:2em;
	min-width:300px;
}
.topphone {
	text-align:center;
	position:relative;
	border-bottom:solid 1px rgba(255,255,255,.3);
}
.topphone .desktopphone, .topphone .mobilephone {
	display: block;
	font-weight:300;
    font-size: 2rem;
    color: #fff;
    padding: 5px 0 10px;
}

.topphone .mobilephone {
	display:none;
}

.topcontact .button {
	background-color: #ff9f0f;
    border: 1px solid #d2830c;
    color: #FFF;
	text-transform:uppercase;
	letter-spacing:.5px;
	padding:.5em 1em;
	display:block;
	text-align:center;
	margin-top:1em;
	border-radius:3px;
	font-size:1.5em; 
}

.topcontact .button:hover {
	background-color:#378834;
}
.topcontact .button:active{
	box-shadow:0 0 5px rgba(255,255,255,1);
	border-color:#fff;
}

@media (max-width:780px){
	.topphone .desktopphone {
		display:none;
	}
	.topphone .mobilephone {
		display:inline-block;
	}
}

/* Header - mobile */

@media (max-width:1140px){
	.banner {
		padding:1em;
		height:auto;
	}
	div.header {
		height: auto;
	}
	.bannertext {
		margin: 90px auto 0;
		float:none;
		max-width:90%;
	}
	.topcontact  {
		float:none;
		margin:1em auto;
	}
}

@media (max-width:780px){
	.banner {
		padding:1em 0 0 0;
	}
	div.header {
		padding-top:0;
	}
	.topcontact {
		min-width:auto;
		padding:.5em;
	}	
	.topcontact>a {
		float:none;
	}
	.bannertext {
		margin: 0 auto;
		background-size: contain;
		width:90%;
		padding:0;
		font-size:2em;
	}
	.bannertext blockquote {
		padding:0;
		margin-top:1em;
		padding-top:1em;
	}
	div.header  {
		background:#AF0000;
	}
	body.backpage div.banner {
		padding-top:1em;
	}
	.bragging  > div{
		margin: 15px auto;
		width: 100%;
	}
	.coolimage {
		display:none;
	}
}

	
/* Main Menu */

div.mainnav{
	float:right;
	margin-top:30px;
}

div.mainnav ul {
	margin-left:0;
}
div.mainnav>ul{ 
	list-style: none;
	float:right;
	max-width: 700px;
	line-height:normal;
	padding: 0;
	text-align:left;
	height:50px;
}
div.mainnav li {
	padding: 0;
	display: inline-block;	
	margin-left: -4px;
	position:relative;
}
div.mainnav li:first-child {
}

div.mainnav li:first-child a{
}
div.mainnav a {
	font-size:1em;
	color:#fff;
	text-decoration: none;
	display:block;
	padding:5px 10px;
	margin:0 5px;
	overflow:hidden;
	font-family:'Open Sans Condensed';
	text-transform:uppercase;
	font-style:normal;
	box-sizing: border-box;
	letter-spacing:.5px;
	border:1px solid rgba(255,255,255,.0);
	border-radius:3px;
	
}
div.mainnav a:hover {
	border-color:rgba(255,255,255,.8);
}

div.mainnav>ul>li>ul {
	display:none;
	z-index:100;
	padding-left:3px;
	padding-top:10px;
	margin-left:5px;
	border-radius:3px;
	overflow:hidden;
}

div.mainnav>ul>li:hover ul {
   display:block;
   position:absolute;
   background-color:#af0000;
}

div.mainnav>ul>li>ul>li {

}

div.mainnav>ul>li>ul>li:hover {

}	


div.mainnav>ul>li>ul>li>a{
	padding: 0 10px;
	width:200px;
	border-color:rgba(255,255,255,0);
}

div.mainnav>ul>li>ul>li>a:hover{
	background-color:rgba(0,0,0,.3);
	border-color:rgba(0,0,0,0);
}

/* main menu - mobile */

#menutoggle {
	display:none;
	background:url(images/menutoggle.png) no-repeat center;
	text-align:center;
	color:#fff;
	font-style:normal;
	font-size:1.5em;
	height:60px;
	width:60px;
	position:absolute;
	top:20px;
	right:0;
	
}		
		
@media (max-width:780px){
	#menutoggle {
		display:block;
	}	
	div.mainnav {
		z-index:1000;
		clear:both;
		float:none;
		margin-left:0;
		background-color:#fff;
		position: absolute;
		top:120px;
		width:90%;
		left:5%;
		border-radius:0 0 10px 10px;
		overflow:hidden;
		margin-top:-17px;
	}
	div.mainnav>ul{
		display:none;
		float:none;
		text-align:left;
		margin-left:0;
		max-width:none;
		height:auto;
		box-shadow:0 0 5px rgba(0, 0, 0, 0.5);
		background-color:#111;
		padding:1em;
	}	
	div.mainnav li {
		display:block;
		margin-bottom:1em;
	}
	div.mainnav>ul>li>ul,
	div.mainnav>ul>li:hover ul {	
		display:block;
		position:relative;
	}
	div.mainnav li li a {
		border-color:rgba(0,0,0,.3);
	}
	div.mainnav a {
		font-size:1rem;
	}
	div.mainnav>ul>li>ul>li>a{ 
		background-color:transparent;
		width:auto;
	}
}		
		

		
/* Content */
section#body {
	overflow:hidden;
}	
body#back section#body{
	padding-top:140px;
}

.page a{
	text-decoration:underline;
}

.page a:hover {
	text-decoration:none;
}

.page .main {
	padding-top:2em;
}

.page .main > div {
    max-width: 800px;
    margin: auto;
	padding:1em;
}

/* Footer */

div.footer{
	background-color:#fff;
	width:100%;
	overflow:hidden;
	font-size:.9em;
	border-top:1px solid #eee;
	color:#555;
	padding:6em 0 1em;
}
div.footer .nav {
	float:left;
	width:25%;
	box-sizing: border-box;
	padding:0 15px;
}
div.footer .nav ul {	
	margin:0;
	list-style-type:none;
}
div.footer .nav ul li ul {
	margin-left:1em;
}
div.footer .nav a {	
	color: #555;

}
div.footer .nav a:hover {	
	color: #999;
}

div.footer .contact{ 
	float:left;
	width:25%;
	box-sizing: border-box;
	padding:0 15px;
}
div.footer .contact a {
	color:#666;
}


div.footer .content {
	float:right;
	width:50%;
	padding:0 15px;
	box-sizing: border-box;
	
}
div.footer .content a {
	color:#666;
	text-decoration:underline;
}
div.footer hr {
	border-top:2px dashed #666;
}

div.subfooter {
clear:both;
text-align:center;
font-size:.9em;
color:#fff;
}

.subfooter:after{
	content:" ";
	display:block;
	clear:both;
}

.subfooter .footerlogo {
	width:80px;
	height:80px;
	background:url(images/mobilelogo.png) #999 no-repeat center; 
	background-size:contain;
	padding:2em;
	display:block;
	float:left;
}
.subfooter  .copyright {
	float:right;
	padding:3em;

}

/* Footer - mobile */

@media (max-width:780px){
	div.footer .nav,
	div.footer .content ,
	div.footer .contact {
		float:none;
		width:auto;
		margin:1em 0;
	}
	div.footer {
		padding: 2em 0;
		font-size:.9rem;
	}
	.subfooter .footerlogo {
		float:none;
		width:auto;
	}	
}

/* template sections */
.page .main div.twocol {
    max-width: 1140px;
    overflow: hidden;
    clear: both;
	margin:auto;
}
.twocol>div {
    float: left;
    max-width: 50%;
    box-sizing: border-box;
    padding: 0 15px;
}
.twocol>div:last-of-type {
	float:right;
}

.page .main div.threecol {
    max-width: 1140px;
    overflow: hidden;
    clear: both;
	margin:auto;
	position:relative;
	padding-bottom:1em;
}

.threecol>div {
	float: left;
    max-width: 33%;
    box-sizing: border-box;
    padding: 0 15px;
}
.threecol>div:last-of-type {
	float:right;
}

.page .main div.foursquare div{
	padding:30px;
	overflow:hidden;
}

.page .main div.foursquare div img {
	padding: 0;
    float: none;
    margin: -30px;
	max-width:none;
}

.page .main div.foursquare div:nth-of-type(1),
.page .main div.foursquare div:nth-of-type(4) {
	background-color:#7c1214;
}

.page .main div.foursquare div:nth-of-type(1) *,
.page .main div.foursquare div:nth-of-type(4) *{
	color:#fff!important;
}

.page .main > div.promoboxes {
	background: #eee;
	max-width:none;
	position:relative;
	color:#333;
}

.promoboxes h2,
.promoboxes h3,
.promoboxes h4,
.promoboxes h5 {
	color:#333;
}

div.promoboxes:before {
	display: block;
    position: absolute;
    content: '';
    width: 120%;
    height: 300px;
    background:url('images/promostripe.jpg');
    top: 290px;
	margin-left:-30px;
}

.promoboxes > .threecol > div {
	width:33.3%;
}
.promoboxes > .threecol > div > div {
	padding:2em;
	background-color: #fff;
	border-radius:3px;

	box-shadow:0 1px 5px rgba(0,0,0,.3);
	overflow:hidden;
}

.promoboxes img {
    margin: -2em -2em 2em;
    display: block;
	max-width:125%;
}

@media (max-width:1140px) {
	.promoboxes > .threecol > div { 
		width:100%;
	}
	
}

@media (max-width:780px){ 
	.page .promoboxes img {
		margin: -2em -2em 2em;
		display: block;
		max-width:125%;
	}
	div.promoboxes:before {
		display:none;
	}
	.page .main > div.promoboxes{
		background-color:#eee;
	}
}

.page .main > div.reviews {
	font-family:serif;
	font-size:1.1em;
	position:relative;
	background:url('images/reviewbg.png');
	background-attachment:fixed;
}

div.reviews > .threecol > div {
	font-style:italic;
}

div.reviews:before {
	display: block;
    position: absolute;
    content: '';
    width: 120%;
    height: 300px;
    background-color: #666;
    top: 290px;
	margin-left:-30px;
}
.reviews .signature {
	color:#7c1214;
	font-style:normal;
	font-family: 'Varela Round', sans-serif;
	border-top:1px solid rgba(0,0,0,.2);
	margin-top:1em;
	padding-top:1em;
}

.reviews .signature span {
	font-size:.8em;
	color:#222;
	display:block;
	line-height:1em;
}

@media (max-width:780px){ 
	.page .main > div.reviews:before {
		display:none;
	}
	.page .main > div.reviews{
		background-color:#eee;
	}
}

@media (max-width:1050px){
	.twocol>div, 
	.threecol>div,
	.twocol>div:last-of-type ,
	.threecol>div:last-of-type {
		max-width:none;
		margin:.5em 0;
		float:none;
	}
}

@media (max-width:780px){
	.twocol>div, 
	.threecol>div,
	.twocol>div:last-of-type ,
	.threecol>div:last-of-type {
		padding:0;
	}
}


.page .main > div.shoutout {
    background-color:#3175fd;
    background-size: cover;
    color: #000;
    overflow: hidden;
    padding: 2em;
    max-width: 100%;
}

.shoutout>div {
	max-width:800px;
	margin:auto;
	overflow:hidden;
	padding:2em;
	text-align:center;
}

.shoutout-red * {
	color:#fff!important;
}  

.page .main > div.shoutout-white {
	background-color:#eee;
}

.shoutout-white h2,
.shoutout-white h3 {
	color:#7c1214;
}

.page .main > div.shoutouttwocol .twocol {
	max-width: 1140px;
    overflow: hidden;
    clear: both;
	text-align:left;
}

.bigcta {
	font-size:1.5em;
}

.bigcta h3 {
	border-bottom:solid 5px rgba(255,255,255,.4);
	padding-bottom:.5em;
}
.bigcta .phone {
	font-family:"Roboto Condensed",sans-serif;
	font-size:1.5em;
	line-height: 1.5em;
	text-align:center;
}
.bigcta .button {
	background-color: #ff9f0f;
    color: #FFF;
    border: 1px solid #d2830c;
	text-transform:uppercase;
	letter-spacing:.5px;
	padding:1em;
	display:block;
	text-align:center;
	margin-top:1em;
	border-radius:3px;
	text-decoration:none;
	font-size:1rem;
}
.bigcta .mobilephone {
	display:none;
}

@media (max-width:1140px){
	.bigcta *{
		text-align:center;
	}
	.bigcta .desktopphone {
		display:none;
	}
	.bigcta .mobilephone {
		display:block;
	}
}

.page .main > div.allcentered{
	overflow:hidden;
	margin:1em 0;
	max-width:none;
}
.allcentered > div {
	max-width:none;
	margin:auto;
	text-align:center;
	padding:1em;
}

.allcentered > div img {
	margin:1em;
}


/* template sections - mobile */

@media (max-width:1080px){
	
	.page .main > div.shoutout {
		margin:1em -1em;
		padding:1em;
	}
}





/* Required */

.image-left{
	float:left;
	margin: 5px 25px 15px 0;
}

.image-right{
	float:right;
	margin: 5px 0 15px 25px;
}

.image-center{
	display:block;
	width:90%;
	margin:1em auto;
}

.image-noborder{
	border-style:none;
	box-shadow:none;
}

@media (max-width:780px){
	page .image-left, page .image-right, .page img {
		float:none;
		margin-top:1em;
		margin-bottom:1em;
		margin-left:auto;
		margin-right:auto;
		display:block;
		width:auto;
	}
}
