/*
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 {
		
		-webkit-font-smoothing: antialiased;
	}

	body,
	button,
	input,
	select,
	textarea {
		font-size: 0.9em;
		color: #747474;
		font-family: 'Open Sans', sans-serif;
	}
	
	h1, h2, h3, h4, h5, h6 {
		font-family: "gooddog-new",cursive;
		font-style: normal;
		font-weight: 400;
		margin-bottom: 0.5em;
	}
	
	h2 { 
		font-size: 3em; 
		color: #abce5e;
	}
	
	h3 {
		color: #ffa43d;
		font-size: 2em;
	}
	
	h4 {
		font-size: 1.4em;	
	}
	
	h5 {
		font-size: 1.2em;	
	}
	
	h6 {
		font-size: 1em;	
	}
	
	p {
		font-size: 1em;
		margin-bottom: 1.5em;	
		line-height: 1.6em;
	}

	a {
		color: #222222;	
		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;
		margin: 0 0 20px 0;
		text-decoration: none;
		font-family: 'AvenirLT-Heavy';
		text-transform: uppercase;
		font-size: 1em;
		letter-spacing: 2px;
		border: 2px solid #333333;
	}

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

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

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

	}
	
	ul.side-menu {
		width: 100%;
		padding: 0;
		margin: 0 0 30px 0;	
		font-family: "gooddog-new",cursive;
		font-style: normal;
		font-weight: 400;
		font-size: 1.2em;
	}
	
	ul.side-menu li {
		list-style: none;	
		border-bottom: 1px solid #eeeeee;
	}
	
	ul.side-menu li a {
		display: block;
		padding: 10px 0;
		color: #3baedd;
		text-decoration: none;	
	}
	
	ul.side-menu li.current_page_item a, body.page-parent ul.side-menu li:first-child a {
		color: #373446;
	}


/*--------------------------------------------------------------
2.0 - Header
--------------------------------------------------------------*/
	
	body.home header.site-header {
		position: fixed;	
	}
	
	header.site-header {
		
		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;	
		border-bottom: 5px solid #ffffff;
		background: #3baedd;
	}
	
	header.hide-header {
			top: -100px !important;
		}
		
	body.admin-bar .site-header {
			top: 46px;	
		}
	
	header.site-header .container {
		position: relative;
		max-width: 960px;
		margin: 0 auto;
		padding: 0 15px;
	}
	
	.logo-main {
		float: left;	
		width: 60px;
		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: 144px;	
			
		}
		
		body.admin-bar .site-header {
			top: 30px;	
		}
		
		.logo-main {
			padding: 7px 0 0 0;
			width: 215px;
		}
		
		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;	
		}
		
		.logo-main {
			width: 225px;
		}
	}
	
/*---- 2.1 - Navigation ----*/
	
	.main-navigation {
		font-family: "gooddog-new",cursive;
		font-style: normal;
		font-weight: 400;
		color: #ffffff;
		font-size: 1.8em;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
		background: #ff2a00;
		box-shadow: 7px 7px 5px #3294bc;
	}
	
	.main-navigation ul {
		margin: 0;
		padding-left: 0;	
	}
	
	.main-navigation a {
		color: #ffffff;
		display: block;
		padding: 10px 10px 13px 10px;	
		text-decoration: none;
		/*background: red;*/
	}
	
	/* Hover */
	.main-navigation li.menu-item-has-children:hover a,
	.main-navigation a:hover {
		background: #ff6e51;
		/*background: #66666c;*/
	}

	/* Current */
	.main-navigation li.current-menu-item a,
	.main-navigation li.current-menu-ancestor a {
		
		background: #ffa138;
		/*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: 0;
		top: 56px; 
	}
	
	.main-navigation ul ul a {
		width: 260px;
		padding: 15px;
	}

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

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

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

	/* 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 0;
		}
		
		/*
			
		*** 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;	
		}
		
		*/
		
		.main-navigation li.menu-item-365 a {
		
		-webkit-border-top-left-radius: 10px;
		-webkit-border-bottom-left-radius: 10px;
		-moz-border-radius-topleft: 10px;
		-moz-border-radius-bottomleft: 10px;
		border-top-left-radius: 10px;
		border-bottom-left-radius: 10px;
	
		}
		
		
		.main-navigation li.menu-item-367 a {
		
		-webkit-border-top-right-radius: 10px;
		-webkit-border-bottom-right-radius: 10px;
		-moz-border-radius-topright: 10px;
		-moz-border-radius-bottomright: 10px;
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;
	
		}
		
	}
	
	@media all and ( min-width: 768px ) and ( max-width: 866px) {
		.main-navigation {
			font-size: 1.2em;	
		}
	}
	
	@media all and ( min-width: 867px ) and ( max-width: 965px) {
		.main-navigation {
			font-size: 1.5em;	
		}
	}
	
	/*----------------------------------- 
	* Mobile-only 
	----------------------------------- */
	
		@media all and ( max-width : 767px ) {
			.menu-toggle,
			.main-navigation.toggled .nav-menu {
				display: block;
			}
	
			.menu-toggle {
				float: right;
				vertical-align: top;
				color: #fff;	
				line-height: 1.4em;
				font-size: 1.1em;
				margin: 18px 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%;
				
				/*transition: top 1s ease-in;*/ /* Slide down */
				border-top: 1px solid #5bc3ee;
				background: #3baedd;
			}
			
			.main-navigation.toggled .nav-menu {
				opacity: 1;
				top: 80px;
				z-index: 100000;
				transition: opacity 0.25s ease; /* Fade in. */
			}
			
			.main-navigation li {
				float: none;
				text-align: center;
				border-bottom: 1px solid #5bc3ee;
			}
			
			.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: 960px;
		margin: 0 auto;	
		padding: 0 20px;
	}
	
	.generic-content,
	.block-content-container {
		padding: 0 40px;	
	}
	
	.page-header {
		text-align: center;
		margin: 0 0 50px 0;
		padding: 50px 20px 60px 20px;
		background-color: #000000;
		background-position: center bottom;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}
	
	.page-header h1 {
		font-size: 4em;
		color: #ffffff;
		margin-bottom: 0;
		text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4); 
	}

	.page-id-927 .page-header {
		background: #1b2852;
	}
	
	@media all and ( min-width : 990px ) {
		
		.generic-content,
		.block-content-container {
			padding: 0;	
		}
		
		.page-header {
			padding: 150px 0 70px 0;
		}
		
		.site-content .container {
			padding: 0;	
		}

	}
	
	@media all and ( min-width : 768px ) {
	
		
		.page-header {
			text-align: right;
			padding: 75px 20px 75px 20px;
		}
		
		.page-header h1 {
			font-size: 5em;	
		}

		.page-id-927 .page-header h1 {
			font-size: 4em;
		}
		
		.page-content {
			padding-top: 20px;	
		}
	}



/*--------------------------------------------------------------
8.0 - Page-specific
--------------------------------------------------------------*/
	
	body.home h2 {
		font-size: 2.7em;	
	}
	
	.sidebar h2 {
		margin: 0;
		color: #ffa138;
	}

	body.home .home-content {
		padding-top: 30px;
	}
	
	body.home .term-dates {
		display: none;	
	}
	
	img {
		padding: 5px;
		border: 1px dashed #3baedd;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
	}
	
	/* Gallery */
	
	.gallery-content {
		padding-top: 20px;	
	}
	
		.gallery .gutters .col {
		margin-bottom: 2.5%;	
	}
	
	/* Project */
	
	.project-listing img {
		margin: 0 0 10px 0;	
	}
	
	.project-listing img:hover {
		opacity: 0.8;
   		filter: alpha(opacity=80);
	}
	
	.project-listing h2 {
		padding-left: 20px;
		text-transform: uppercase;
		font-size: 1em;	
	}
	
	.single-projects .bx-wrapper {
		display: none;	
	}
	
	.project-content {
		
		padding-top: 20px;	
	}
	
	.project-content {
		clear: both;
			padding: 20px;	
	}
	
	
	/* Contact */
	
	.contact-content {
		padding-top: 20px;	
	}
	
	#map-canvas {
        height: 300px;
	}
	
	@media all and ( min-width : 768px ) {
		.project-listing h2 {
			padding-left: 0;	
		}
		
		.single-projects .bx-wrapper {
			display: block;	
		}
		
		.project-content {
			padding: 20px 0 0 0;	
		}
		
	}


/*--------------------------------------------------------------
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 */
	.slider-bg {
		position: relative;
		width: 100%;
		margin: 0 0 50px 0;
		text-align: center;
		background-position: center center;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}
	
	.slider-bg:before {
		  content: '';
		  display: inline-block;
		  height: 100%; 
		  vertical-align: middle;
		  margin-right: -0.25em; /* Adjusts for spacing */
		  /* For visualization 
		  background: #808080; width: 5px;
		  */
	}	
	
	.slider-body {
		  display: inline-block;
		  text-align: center;
		  vertical-align: middle;
	}
	
	.slider-body h2 {
		margin: 0 0 30px 0;
		color: #ffffff;
		transition: all 0.4s;
	}
	
		
		.bx-wrapper {
			position: relative;
			*zoom: 1;
		}
		
		.bx-wrapper div.slide {
			width: 100%;
			height: 640px;
			text-align: center;
			background: #ffffff;
		}	
		
		.bx-wrapper img {
			max-height: 640px;
			width: auto !important;	
		}
		
	
		/* PAGER */
		
			#bx-pager {
				margin-top: 30px;	
			}
			
			#bx-pager .col {
				margin-left: 1px;	
			}
	
			.single-projects .bx-wrapper {
				border: 1px solid #eeeeee;
			}	
			
			.bx-wrapper .bx-pager {
				position: absolute;
				bottom: 20px;
				z-index: 100;
				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;
			}
			
			.testimonial-slider .bx-pager {
				display: none;
			}
			
			
		/* DIRECTION CONTROLS (NEXT / PREV) */

			.testimonial-slider .bx-wrapper .bx-prev,
			.testimonial-slider .bx-wrapper .bx-next {
				display: none;	
			}

			.bx-wrapper .bx-prev {
				left: 10px;
				/*background: url(../images/controls.png) no-repeat 0 -32px;*/
			}
			
			.bx-wrapper .bx-next {
				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: 100;
				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%;
		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 {
		border-left: 10px solid #444;
		margin: 0 50px;
		font-size: 1.4em;
		font-weight: bold;
	}

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

	/* Call to action */
	.call-to-action {
		padding: 0 40px;
		text-align: center;
	}
	
	.call-to-action .btn {
		width: 240px;
		margin: 0 10px 20px 10px;
	}
	
	@media all and ( min-width : 320px ) {
		
		.slider-bg {
			height: 400px;	
		}
		
		.slider-body {
		  max-width: 280px;
		}
		
		.slider-body h2 {
			font-size: 2em;
		}
	}
	
	
	@media all and ( min-width : 480px ) {
		.slider-body {
		  max-width: 460px;
		}
	}

	
	@media all and ( min-width : 640px ) {
		
		.slider-bg {
			height: 550px;	
		}
		
		.slider-body {
			margin: -100px auto 0 auto;
		  	max-width: 620px;
		}
		
		.slider-body h2 {
			font-size: 3em;
		}
	}
	
	
	@media all and ( min-width : 768px ) {
		.slider-body {
		  max-width: 748px;
		}
	}
	
	@media all and ( min-width : 960px ) {
		.slider-body {
		  max-width: 940px;
		}
		
		.call-to-action {
			padding: 0;	
		}
	}




/*--------------------------------------------------------------
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 {
		background: #37793a url(../images/common/body-bg.jpg) center bottom repeat-x;
		color: #777777;
		margin-top: 50px;
		min-height: 354px;
		padding: 0;
		text-align: center;
		
	}
	
	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;
		}

	}