/* first for IE 4–8 */
@font-face {
  font-family: TSTARRegular;
  src: url("TSTAR-RegularWeb.eot");
}

/* then for WOFF-capable browsers */
@font-face {
  font-family: TSTARRegular;
  src: url("TSTAR-RegularWeb.woff") format("woff");
}

/*
Client Name:
Last Modified by:
Last Modified:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

 ticktock is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

1.0 General
	1.1 Sidebar
2.0 Header
	2.1 Navigation
3.0 Standard Page
4.0 Photo Gallery
5.0 Blog / Posts / Categories
6.0 Page Builder
7.0 Home Page
8.0 Page-specific
10.0 Forms
11.0 Footer



/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/

	*,
	*:before,
	*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
		-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
		-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
		box-sizing:         border-box;
	}
	
	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;
	}
	
	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;
	}
		
	caption, th, td {
		font-weight: normal;
		text-align: left;
	}
	
	hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
	}
	
	ul, ol {
		margin: 0 0 1.5em 3em;
	}
	
	ul {
		list-style: disc;
	}
	
	ol {
		list-style: decimal;
	}
	
	li > ul,
	li > ol {
		margin-bottom: 0;
		margin-left: 1.5em;
	}
	
	dt {
		font-weight: bold;
	}
	
	dd {
		margin: 0 1.5em 1.5em;
	}
	
	figure {
		margin: 0;
	}
	
	table {
		margin: 0 0 1.5em;
		width: 100%;
	}
	
	th {
		font-weight: bold;
	}


/*--------------------------------------------------------------
1.0 General
--------------------------------------------------------------*/
	
	body, html {
		height: 100%;	
	}
	
	body, html, html a {
		-webkit-font-smoothing: antialiased;
    	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.004);
	}

	body,
	input,
	select,
	textarea {
		font-size: 1.2em;
		color: #666666;
		font-family: TSTARRegular, sans-serif;
	}
	
	h1, h2, h3, h4, h5, h6 {
		font-weight: normal;
		margin-bottom: 0.5em;
		color: #000;
		text-transform: uppercase;
	}

	h1 { 
		font-size: 2em;
	}
	
	h2 { 
		font-size: 1.8em; 
	}

	
	h3 {
		font-size: 1.6em;
	}
	
	h4 {
		font-size: 1.4em;	
	}
	
	h5 {
		font-size: 1.2em;	
	}
	
	h6 {
		font-size: 1em;	
	}
	
	p {
		font-size: 0.9em;
		margin-bottom: 1.5em;	
		line-height: 1.6em;
	}

	a {
		color: #000000;	
		text-decoration: none;
	}
	
	a:hover,
	a:focus,
	a:active {
		color: #666666;
	}
	
	a:focus {
	/*outline: thin dotted;*/
	outline: 0;
	}

	a:hover,
	a:active {
		outline: 0;
	}

	img {
		height: auto;
		max-width: 100%;
		vertical-align: middle;
	}

	a img {
		border: 0;
	}
	
	b, strong {
		font-weight: 700;
	}
	
	dfn, cite, em, i {
		font-style: italic;
	}


	
	.btn, 
	.button,
	input[type="button"],
	input[type="reset"],
	input[type="submit"] {
		display: inline-block;
		width: auto;
		padding: 18px 30px 15px 30px;
		color: #333333;
		text-decoration: none;
		text-transform: uppercase;
		font-size: 1em;
		letter-spacing: 2px;
		border: 2px solid #333333;
		-webkit-border-radius: 0px;
		-moz-border-radius: 0px;
		border-radius: 0px;
		font-family: TSTARRegular, sans-serif;
		background: #ffffff !important;
	}

	.btn:hover, .button:hover,
	input[type="button"]:hover,
	input[type="reset"]:hover,
	input[type="submit"]:hover {
		color: #333333;
		background: #ffffff;
	}

	button.is-checked, button:hover {
		color: #ffffff !important;
		background: #000000 !important;
	}

	.desktop-only {
		display: none;	
	}
	
	.mobile-only {
		display: block;	
	}
	
	@media all and ( min-width : 768px ) {
		
		h1 {
			font-size: 2.5em;	
		}
		
		.desktop-only {
			display: block;	
		}
		
		.mobile-only {
			display: none;	
		}
	}

	/*---- 1.1 - Sidebar ----*/
	.sidebar-widget {
		margin: 0 0 20px 0;
	}
	
	.sidebar h3 {

	}
	
	ul.side-menu {
		padding: 0;
		margin: 0;	
	}
	
	ul.side-menu li {
		list-style: none;	
		border-bottom: 1px solid #eeeeee;
	}
	
	ul.side-menu li a {
		display: block;
		padding: 10px 0;
		text-decoration: none;	
	}
	
	ul.side-menu li.current_page_item a {
		color: #373446;
	}


/*--------------------------------------------------------------
2.0 - Header
--------------------------------------------------------------*/
	
	
	header.site-header {
		position: absolute;
		width: 100%;
		margin: 0;
		padding:  0;
		z-index: 2;
		transition: all 0.4s ease;
		/*background: url(../images/common/transparent-white.png) repeat;*/
		z-index: 5000;
		top: 0;
		background: #ffffff;
		/*border-bottom: 1px solid #333333;*/
		/*background: url(../images/common/transparent-black.png) repeat;*/
	}

	
	header.site-header .container {
		position: relative;
		max-width: 1040px;
		margin: 0 auto;
		padding: 0 15px;
	}
	
	.logo-main {
		float: left;	
		width: 100px;
		padding: 10px 0;
		transition: all 0.4s ease;
	}
	
	.logo-main img {
		width: 100%;	
	}

	.site-header .phone-mobile {
		position: absolute;
		right: 90px;
		top: 12px;
	}

	.site-header .phone-mobile a {
		color: #fff;
		display: block;
		font-size: 2em;
		padding: 5px;
	}


	@media all and ( min-width : 768px ) {
		
		header.site-header {	
			height: 100px;	
		}
		
		.logo-main {
			padding: 12px 0 0 0;
			width: 100px;
		}
		
		header.hide-header .logo-main {
			opacity: 0;	
		}

		.site-header .phone {
			position: absolute;
			right: 15px;
			top: 0;
		}
		
		.site-header .social-icons {
			position: absolute;
			right: 220px;
			top: 8px;	
		}

		.site-header .phone h2 {
			color: #fff;
			float: right;
			font-weight: 600;
			margin: 8px 0 0 0;
		}

	}
	
	@media all and ( min-width : 990px ) {
		header.site-header .container {
			padding: 0;	
		}
	}
	
/*---- 2.1 - Navigation ----*/
	
	.main-navigation {
		text-transform: uppercase;
		font-size: 0.9em;
	}
	
	.main-navigation ul {
		margin: 0;
		padding-left: 0;	
	}
	
	.main-navigation a {
		color: #666666;
		display: block;
		padding: 15px 0 20px 0;	
		text-decoration: none;
		/*background: red;*/
	}
	
	/* Hover */
	.main-navigation li.menu-item-has-children:hover a,
	.main-navigation a:hover {
		color: #cccccc;
		/*background: #66666c;*/
	}

	/* Current */
	.main-navigation li.current-menu-item a,
	.main-navigation li.current-menu-ancestor a {
		color: #000000;
		/*background: #66666c;*/
	}

	/* Current hover */
	.main-navigation li.current-menu-item a:hover,
	.main-navigation li.current-menu-ancestor a:hover {
		/*background: #88888c;*/
		/*color: #ffffff;*/
	}
	
	/* Dropdown */
	.main-navigation ul.sub-menu {
		left: 20px;
		top: 50px; 
	}
	
	.main-navigation ul ul a {
		width: 260px;
		padding: 15px;
	}

	.main-navigation li.menu-item-has-children:hover ul.sub-menu li a {
		background: #000000;
		padding: 10px 15px;
	}

	.main-navigation li.menu-item-has-children:hover ul.sub-menu li a:hover {
		background: #222222;
	}

	/* Dropdown - Active */
	.main-navigation li.menu-item-has-children:hover ul.sub-menu li.current-menu-item a {
		color: #cccccc;
	}

	/* Dropdown - Active hover */
	.main-navigation li.menu-item-has-children:hover ul.sub-menu li.current-menu-item a:hover {
		
	}
	
	@media all and ( min-width: 768px ) {
		
		.main-navigation {	
			float: right;	
			padding: 0;
			margin: 40px 0 0 0;
		}

		.main-navigation li {
			padding: 0 0 0 30px;
		}

		.main-navigation li.menu-item-1166 a {
			padding-top: 13px;
		}
		
		/*
			
		*** IF TABS ***
		.main-navigation li a {
			-webkit-border-top-left-radius: 3px;
			-webkit-border-top-right-radius: 3px;
			-moz-border-radius-topleft: 3px;
			-moz-border-radius-topright: 3px;
			border-top-left-radius: 3px;
			border-top-right-radius: 3px;
		}
	
		.main-navigation li li a {

			-webkit-border-top-left-radius: 0;
			-webkit-border-top-right-radius: 0;
			-moz-border-radius-topleft: 0;
			-moz-border-radius-topright: 0;
			border-top-left-radius: 0;
			border-top-right-radius: 0;	
		}
		
		*/
	}
	
	/*----------------------------------- 
	* Mobile-only 
	----------------------------------- */
	
		@media all and ( max-width : 768px ) {
			.menu-toggle,
			.main-navigation.toggled .nav-menu {
				display: block;
				z-index: 5000;
			}
	
			.menu-toggle {
				float: right;
				vertical-align: top;
				color: #000;	
				line-height: 1.4em;
				font-size: 1.1em;
				margin: 33px 0 0 0;
				padding: 0 0 0 0;
				text-transform: uppercase;
			}
			
			.menu-toggle .label {
				display: inline-block;
				vertical-align: top;
				margin: 3px 0 0 0;
				font-size: 0.9em;
				padding: 0;
			}
	
			.menu-toggle .fa {
				padding-left: 5px;
				font-size: 1.6em;
			}
	
			.main-navigation ul {
				display: block;
				position: absolute;
				left: 0; 
				opacity: 0;
				top: -1000%;
				width: 100%;
				z-index: 10;
				/*transition: top 1s ease-in;*/ /* Slide down */
				border-top: 1px solid #eeeeee;
				background: #ffffff;
			}
			
			.main-navigation.toggled .nav-menu {
				opacity: 1;
				top: 96px;
				transition: opacity 0.25s ease; /* Fade in. */
			}
			
			.main-navigation li {
				float: none;
				text-align: center;
				border-bottom: 1px solid #eeeeee;
			}
			
			.main-navigation a { 
				padding: 20px 0;
			}
			
			.main-navigation ul ul {
				display: none; /* Hide sub-pages from nav */
			}
			
			.main-navigation ul li:hover > ul {
				display: none;
			}
		}


/*--------------------------------------------------------------
3.0 Standard Page
--------------------------------------------------------------*/
	
	.site-content .container {
		max-width: 1040px;
		margin: 0 auto;	
	}
	
	.generic-content {
		padding: 70px 40px;	
	}
	
	.generic-content.container {
		margin-bottom: 30px;
	}
	
	.page-header {
   		position: relative;
		width: 100%;
		margin: 0;
		background-position: center center;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}

	.page-header .overlay {
		padding: 150px 20px 70px 20px;
		height: 100%;
		background: url(../images/common/transparent-black.png) repeat;
	}

	
	.page-header h1 {

		color: #ffffff;
		margin-bottom: 0;
	}
	
	@media all and ( min-width : 990px ) {
		
		.generic-content,
		.block-content-container {
			padding: 0;	
		}
		
		.generic-content {
			padding: 90px 0 30px 0;
		}

	}
	
	@media all and ( min-width : 990px ) {
		


		.page-header .overlay {
			padding: 200px 0 100px 0;
			height: 100%;
			background: url(../images/common/transparent-black.png) repeat;
	}
		
		.page-content {
			padding-top: 20px;	
		}
	}
	
/*--------------------------------------------------------------
8.0 - Page-specific
--------------------------------------------------------------*/
	
	/* Home */

	body.home .block-content {
		bottom: 0;
		margin: 0;
	
		z-index: 50000;
	}

	body.home .block-content img {
		-webkit-filter: grayscale(1);
  		filter: grayscale(1);
  		opacity: 0.6;
    	filter: alpha(opacity=60); /* For IE8 and earlier */
    	 transition: all 0.5s ease;
	}

	body.home .block-content img:hover, body.home .block-content .col:hover img.hovered {
		-webkit-filter: grayscale(0);
  		filter: grayscale(0);
  		opacity: 1;
   		 filter: alpha(opacity=100); /* For IE8 and earlier */
	}

	body.home .block-content .col {
		position: relative;
		background: #000;
	}

	body.home .block-content h2 {
		position: absolute;
		bottom: 25px;
		left: 25px;
		max-width: 70%;
		z-index: 10000;
	}

	body.home .block-content h2 a {
		color: #ffffff;
	}

	.child-page {
		text-align: center;	
	}
	
	
	/* Gallery */
	
	.gallery-content {
		padding-top: 20px;	
	}
	
	.gallery .gutters .col {
		margin-bottom: 2.5%;	
	}

	
	/* Project Listing */
	
	.single-projects .page-header,
	.post-type-archive-projects .page-header {
		padding: 150px 20px 70px 20px;
		margin: 0;
		background: none;
	}
	
	.project-listing {
		float: left;
		width: 100%;
		padding: 0 0 30px 0;
		margin: 0 0 40px 0;
		font-size: 0.9em;
		border-bottom: 1px solid #cccccc;

	}


	.project-listing a {
		transition: all 0.4s ease;	
	}
	
	.project-listing img {
		margin: 0 0 10px 0;	
		transition: all 0.4s ease;
	}
	
	.project-listing img:hover {
		opacity: 0.8;
   		filter: alpha(opacity=80);
	}
	
	.project-listing h2 {
		text-transform: uppercase;
	}
	
	
	/* Single Project */
	
	.sub-head {margin: 0 auto 100px auto; max-width: 65%; text-align: center}
	
	.single-projects .bx-wrapper {
		display: none;	
	}
	
	
	.project-content {
		clear: both;
		font-size: 0.9em;
		margin: 40px 0 0 0;
		padding: 20px 40px;
		-webkit-columns: 300px 2;
   -moz-columns: 300px 2;
        columns: 300px 2;	
	}


	
	
	/* Testimonial */
	
	.testimonial {
		max-width: 960px;
		padding: 0 40px;
		margin: 0 auto 20px auto;
		border-bottom: 1px solid #333333;	
	}
	
	
	/* Contact */
	
	.contact-content {
		padding-top: 20px;	
	}
	
	#map-canvas {
        height: 300px;
	}
	
	.contact-content, .locations {
		padding: 0 40px;	
	}
	
	@media all and ( min-width : 768px ) {
		


		.child-page {
		text-align: left;	
	}
		

		
		
		
		.single-projects .bx-wrapper {
			display: block;	
		}
		
		.project-content {
			padding: 20px 0 0 0;	
		}
		
		
		
		
		
	}
	
	@media all and ( min-width : 990px ) {
	.single-projects .page-header,
	.post-type-archive-projects .page-header {
		padding: 150px 0 0 0;
	}
	
	.testimonial {
			padding: 0;
		}
		
		.contact-content, .locations {
			padding: 0;	
		}
	}


/*--------------------------------------------------------------
5.0 - ISOTOPE
--------------------------------------------------------------*/

	/* clear fix */
.isotope:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .element-item ---- */

.element-item {
  position: relative;
  overflow: hidden;

  color: #262524;
  -webkit-filter: grayscale(1);
  		filter: grayscale(1);
  		 transition: all 0.2s ease;
}

.element-item:hover {
	 -webkit-filter: grayscale(0);
  		filter: grayscale(0);
}

.element-item > * {
  margin: 0;
  padding: 0;
}


.button-group {
  text-align: center;
	margin: 60px auto 60px auto;
}

.button-group button {
	width: 100%;
	font-size: 1em;
	clear: both;
}


@media all and ( min-width : 768px ) {

	.element-item {
  float: left;
  width: 33.33333%;
	}

.button-group button {
  width: 24%;
clear: none;

}
}


/*--------------------------------------------------------------
5.0 - CASWE STUDIES
--------------------------------------------------------------*/

.element-case-study a {
	display: block;
	width: 100%;
	height: 100%;
	z-index: 5000;
}

.element-case-study .case-study-text {
	position: absolute;
	bottom: 0;
	padding: 20px;
	z-index: 4000;
	background: url(../images/common/transparent-black.png) repeat;
	transition: all 0.4s ease;

}

.case-study-text h2 {
	font-size: 1.2em;
		color: #ffffff;
		margin: 0;
}

.element-item.element-case-study a {
	color: #ffffff;
}

.element-case-study:hover .case-study-text {
	bottom: 0;
}


.single-case-studies h1 {
	margin: 60px 0;
}

.single-case-studies h2 {
	font-size: 1.3em;
	line-height: 1.2em;
}

.entry-content {
	padding: 0 20px;
}

/*--------------------------------------------------------------
5.0 - Blog / Posts / Categories
--------------------------------------------------------------*/
	
	.blog .post h2, .blog .post .posted-on {

	}
	
	.blog .post h2 {
		font-size: 2em;
		
	}
	
	.blog .post time {
		text-transform: uppercase;
		font-family: 'AvenirLT-Light';	
	}
	
	

	/* Single Blog post */
	.single .entry-meta,
	.single .entry-meta .posted-on {
		color: #cbd5e4;
	}

	.single .entry-meta a {
		color: #e5eaf2;
	}

	.single .entry-content {
		margin-top: 0;
	}

	/* Comments */
	.single .comments-area {
		margin-top: 2em;
	}

	#comments ol {
		list-style-type: none;
		margin-left: 0;
	}

	.comment {
		padding: 1.5em 0 0 0;
	}

	.comment p {
		margin: 1em 0;
	}

	.comment-metadata {
		font-size: 1em;
	}

	#comments .comment-author .avatar {
		float: left;
		margin-right: 24px;
		height: auto;
		width: 50px;
	}

	#comments .comment-content {
		padding-left: 70px;
	}

	#comments .reply {
		display: none;
	}

	#comments .comment-form-comment {
		margin-bottom: 0.5em;
	}

	.comment-form-comment label {
		display: none;
	}

	.comment-form .form-allowed-tags {
		display: none;
	}

	@media all and ( min-width : 768px ) {
		.blog .post {
			margin: 0 0 40px 0;
		}
		
		.blog .entry-content {
			/*padding: 0 100px;	*/
		}

		.single .entry-content {
			margin-top: 25px;
		}
	}


/*--------------------------------------------------------------
6.0 - Page Builder
--------------------------------------------------------------*/
	

	/* Slider */
	
		/* Full Screen */
	
		.slider-body {
			padding-top: 350px;
			color: #ffffff;
		}	

		.slider-body h2 {
			color: #ffffff;
		}
		
		.slider-bg {
			height: 700px;	
			width: 100%;
			margin: 0 0 0 0;
			text-align: center;
			background-position: center center;
			-webkit-background-size: cover;
			-moz-background-size: cover;
			-o-background-size: cover;
			background-size: cover;
		}
		
		.bx-wrapper {
			position: relative;
			*zoom: 1;
		}
		
		.bx-wrapper div.slide {
			width: 100%;
			height: 100%;
			text-align: center;
			background: #000000;
		}	
		
		.bx-wrapper img {
			max-height: 640px;
			width: auto !important;	
		}
		
	
		/* PAGER */
		
			#bx-pager {
				margin-top: 30px;	
			}
			
			#bx-pager .col {
				margin-left: 1px;
				margin-bottom: 1px;	
			}
	
			
			
			body.home .bx-wrapper {
				border: none;	
			}
			
			.bx-wrapper .bx-pager {
				display: none;
				position: absolute;
				bottom: 20px;
				z-index: 100000;
				text-align: center;
				font-size: .85em;
				font-family: Arial;
				font-weight: bold;
				color: #666;
				padding-top: 20px;
				width: 100%;
			}
			
			.bx-wrapper .bx-pager .bx-pager-item,
			.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
				display: inline-block;
				*zoom: 1;
				*display: inline;
			}
			
			.bx-wrapper .bx-pager.bx-default-pager a {
				background: #ffffff;
				text-indent: -9999px;
				display: block;
				width: 10px;
				height: 10px;
				margin: 0 5px;
				outline: 0;
				-moz-border-radius: 5px;
				-webkit-border-radius: 5px;
				border-radius: 5px;
			}
			
			.bx-wrapper .bx-pager.bx-default-pager a:hover,
			.bx-wrapper .bx-pager.bx-default-pager a.active {
				background: #000;
			}
			
			
		/* DIRECTION CONTROLS (NEXT / PREV) */

			.bx-wrapper .bx-prev {
				display: none;
				left: 10px;
				/*background: url(../images/controls.png) no-repeat 0 -32px;*/
			}
			
			.bx-wrapper .bx-next {
				display: none;
				right: 0;
				/*background: url(../images/controls.png) no-repeat -43px -32px;*/
			}
			
			.bx-wrapper .bx-prev:hover {
				background-position: 0 0;
			}
			
			.bx-wrapper .bx-next:hover {
				background-position: -43px 0;
			}
			
			.bx-wrapper .bx-controls-direction a {
				position: absolute;
				top: 50%;
				margin-top: -16px;
				outline: 0;
				width: 32px;
				height: 32px;
				font-size: 2em;
				z-index: 9999;
				color: #cccccc;
			}
			
			.bx-wrapper .bx-controls-direction a.disabled {
				display: none;
			}
			
			/* AUTO CONTROLS (START / STOP) */
			
			.bx-wrapper .bx-controls-auto {
				text-align: center;
			}
			
			.bx-wrapper .bx-controls-auto .bx-start {
				display: block;
				text-indent: -9999px;
				width: 10px;
				height: 11px;
				outline: 0;
				background: url(../images/controls.png) -86px -11px no-repeat;
				margin: 0 3px;
			}
			
			.bx-wrapper .bx-controls-auto .bx-start:hover,
			.bx-wrapper .bx-controls-auto .bx-start.active {
				background-position: -86px 0;
			}
			
			.bx-wrapper .bx-controls-auto .bx-stop {
				display: block;
				text-indent: -9999px;
				width: 9px;
				height: 11px;
				outline: 0;
				background: url(../images/controls.png) -86px -44px no-repeat;
				margin: 0 3px;
			}
			
			.bx-wrapper .bx-controls-auto .bx-stop:hover,
			.bx-wrapper .bx-controls-auto .bx-stop.active {
				background-position: -86px -33px;
			}	

	
	/* Block content */
	
	.block-content {
		float: left;
		width: 100% !important;
		margin: 0 0 50px 0;
	}
	
	

	/* Image (full width). */
	.image-full-width img {
		height: auto;
		max-width: 100%;
	}

	/* Image (left and right) */
	.image-aligned-left .image img, .image-aligned-right .image img {
		height: auto;
		max-width: 100%;
	}

	/* Pull out quote */
	.pull-out-quote {
		margin: 0 0 30px 50px;
		border-left: 3px solid #444;
		font-size: 1.4em;
	}

	.pull-out-quote p {
		margin-bottom: 0;
		padding: 0 20px;
	}

	/* Call to action */
	.page-builder.call-to-action {
		text-align: center;
	}
	

	
	@media all and ( max-width : 480px ) {	
		
	}
	
	
	

/*--------------------------------------------------------------
10.0 -  Forms
--------------------------------------------------------------*/		
	
	.validation_message {
		display: none !important;	
	}	
	
	.gform_wrapper {
		max-width: 100%	 !important;
	}
	
	.gform_wrapper label {
		font-weight: normal !important;
	}

	.gform_wrapper .top_label li.gfield.gfield_error.gf_left_half,
	.gform_wrapper .top_label li.gfield.gfield_error.gf_right_half {
		width: 49% !important;
	}
	
	.validation_error, .gfield_error label {
		color: #d32552;	
	}	
	
	.validation_error {
		padding: 0 0 10px 0;
	}
	
	.sidebar-enquiry {
		padding: 20px;
		border: none !important;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		border: 1px solid #cccccc !important;
		background: #eeeeee;
	}
	
	.sidebar-enquiry h3 {
		color: #333333;	
	}
	
	.sidebar-enquiry label {
		color: #ffffff !important;	
	}
	
	.sidebar-enquiry 	.validation_message {
		display: block !important;
		color: #d32552;
		margin: 0 !important;
		padding: 0 !important;
	}	
	
	.sidebar-enquiry .gfield_error input {
		border: 1px solid #d32552;	
	}
	
	.gplaceholder li {
		padding: 3px 0;	
	}
	
	input#input_3_7, input#input_1_7 {
		border: 1px solid #cccccc;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
	}
	
	.gform_confirmation_message {
		font-size: 1.4em;
	}
	
	.sidebar-enquiry .gform_confirmation_message {
		padding: 15px 0;	
	}
	
/*--------------------------------------------------------------
11.0 - Social
--------------------------------------------------------------*/

	
	.social {
		display: inline-block;
		margin: 0 1px 3px 1px;	
	}

	.social a {
		display: block;
		font-size: 1.4em;
		width: 30px;
		height: 30px;
		padding: 0;
		color: #fff;
		text-align: center;
		-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
		border-radius: 50%;
	}

	.social a {
	
	}

	.social .facebook {
		background: #3b579d;
	}

	.social .twitter {
		background: #5ea9dd;
	}

	.social .linkedin {
		background: #00649a;
	}

	.social .google-plus {
		background: #de4a32;
	}

	.social .pinterest {
		background: #cb1a13;
	}

	.social .youtube {
		background: #d12122;
	}

	.social .soundcloud {
		background: #ff5500;
	}

	.social .soundcloud .fa {
		font-size: 0.8em;
	}

	.social .instagram {
		background: #447297;
	}


/*--------------------------------------------------------------
11.0 - Footer
--------------------------------------------------------------*/
	
	footer.site-footer {
		clear: both;
		position: relative;
		background: #eeeeee;
		color: #777777;
		margin-top: 150px;
		min-height: 240px;
		padding: 70px 0;
		text-align: center;
		font-size: 0.9em;
	}
	
	body.home .site-footer {
		margin: 0;	
	}
	
	footer.site-footer .container {
		position: relative;
		max-width: 960px;
		margin: 0 auto;
		padding: 0 20px;
	}
	
	.logo-footer img {
		width: 40px;
		height: 40px;
		margin: 0 0 10px 0;
	}
	
	footer.site-footer .menu ul,
	footer.site-footer .menu li {
		list-style: none;
		text-align: center;	
		margin: 0;
		padding: 0
	}
	
	footer.site-footer .menu li {
		padding: 3px 0;	
	}
	
	footer.site-footer .menu ul {
		margin: 0 0 20px 0;	
	}
	
	footer.site-footer .menu .children {
		display: none;	
	}

	.site-footer .ticktock {
		text-align: center;
		padding-top: 4%;
	}
	
	.footer-layout-a .social-icons {
		margin: 0 0 15px 0;	
	}
	
	@media all and ( min-width : 768px ) {
		
		.logo-footer {
			width: 100px;
			margin: 0 10px 0 0;	
		}
		
		.footer-layout-b {
			text-align: left;	
		}
		
		.footer-layout-b .social-icons {
			float: right;
		}

	}