/*
* qTip2 - Pretty powerful tooltips
* http://craigsworks.com/projects/qtip2/
*
* Version: nightly
* Copyright 2009-2010 Craig Michael Thompson - http://craigsworks.com
*
* Dual licensed under MIT or GPLv2 licenses
*   http://en.wikipedia.org/wiki/MIT_License
*   http://en.wikipedia.org/wiki/GNU_General_Public_License
*
* Date: Sat May 14 07:50:22 PDT 2011
*/

/* Fluid class for determining actual width in IE */
.ui-tooltip-fluid{
	display: block;
	visibility: hidden;
	position: static !important;
	float: left !important;
}

.ui-tooltip, .qtip{
	position: absolute;
	left: -28000px;
	top: -28000px;
	display: none;
	max-width: 280px;
	min-width: 50px;
	
	font-size: 10.5px;
	line-height: 12px;
}

	.ui-tooltip-content{
		position: relative;
		padding: 5px 9px;
		overflow: hidden;
		
		border-width: 1px;
		border-style: solid;
		
		text-align: left;
		word-wrap: break-word;
		overflow: hidden;
	}

	.ui-tooltip-titlebar{
		position: relative;
		min-height: 14px;
		padding: 5px 35px 5px 10px;
		overflow: hidden;
		
		border-width: 1px 1px 0;
		border-style: solid;

		font-weight: bold;
	}

	.ui-tooltip-titlebar + .ui-tooltip-content{ border-top-width: 0px !important; }

		/*! Default close button class */
		.ui-tooltip-titlebar .ui-state-default{
			position: absolute;
			right: 4px;
			top: 50%;
			margin-top: -9px;

			cursor: pointer;
			outline: medium none;

			border-width: 1px;
			border-style: solid;
		}
		
		* html .ui-tooltip-titlebar .ui-state-default{
			top: 16px;
		}

		.ui-tooltip-titlebar .ui-icon,
		.ui-tooltip-icon .ui-icon{
			display: block;
			text-indent: -1000em;
		}

		.ui-tooltip-icon, .ui-tooltip-icon .ui-icon{
			-moz-border-radius: 3px;
			-webkit-border-radius: 3px;
			border-radius: 3px;
		}

			.ui-tooltip-icon .ui-icon{
				width: 18px;
				height: 14px;

				text-align: center;
				text-indent: 0;
				font: normal bold 10px/13px Tahoma,sans-serif;

				color: inherit;
				background: transparent none no-repeat -100em -100em;
			}


/* Applied to 'focused' tooltips e.g. most recently displayed/interacted with */
.ui-tooltip-focus{

}

/* Applied on hover of tooltips i.e. added/removed on mouseenter/mouseleave respectively */
.ui-tooltip-hover{
	
}


/*! Default tooltip style */
.ui-tooltip-titlebar,
.ui-tooltip-content{
	border-color: #F1D031;
	background-color: #FFFFA3;
	color: #555;
}

	.ui-tooltip-titlebar{
		background-color: #FFEF93;
	}

	.ui-tooltip-titlebar .ui-tooltip-icon{
		border-color: #CCC;
		background: #F1F1F1;
		color: #777;
	}
	
	.ui-tooltip-titlebar .ui-state-hover{
		border-color: #AAA;
		color: #111;
	}


/*! Light tooltip style */
.ui-tooltip-light .ui-tooltip-titlebar,
.ui-tooltip-light .ui-tooltip-content{
	border-color: #E2E2E2;
	color: #454545;
}

	.ui-tooltip-light .ui-tooltip-content{
		background-color: white;
	}

	.ui-tooltip-light .ui-tooltip-titlebar{
		background-color: #f1f1f1;
	}


/*! Dark tooltip style */
.ui-tooltip-dark .ui-tooltip-titlebar,
.ui-tooltip-dark .ui-tooltip-content{
	border-color: #303030;
	color: #f3f3f3;
}

	.ui-tooltip-dark .ui-tooltip-content{
		background-color: #505050;
	}

	.ui-tooltip-dark .ui-tooltip-titlebar{
		background-color: #404040;
	}

	.ui-tooltip-dark .ui-tooltip-icon{
		border-color: #444;
	}

	.ui-tooltip-dark .ui-tooltip-titlebar .ui-state-hover{
		border-color: #303030;
	}


/*! Cream tooltip style */
.ui-tooltip-cream .ui-tooltip-titlebar,
.ui-tooltip-cream .ui-tooltip-content{
	border-color: #F9E98E;
	color: #A27D35;
}

	.ui-tooltip-cream .ui-tooltip-content{
		background-color: #FBF7AA;
	}

	.ui-tooltip-cream .ui-tooltip-titlebar{
		background-color: #F0DE7D;
	}

	.ui-tooltip-cream .ui-state-default .ui-tooltip-icon{
		background-position: -82px 0;
	}


/*! Red tooltip style */
.ui-tooltip-red .ui-tooltip-titlebar,
.ui-tooltip-red .ui-tooltip-content{
	border-color: #D95252;
	color: #912323;
}

	.ui-tooltip-red .ui-tooltip-content{
		background-color: #F78B83;
	}

	.ui-tooltip-red .ui-tooltip-titlebar{
		background-color: #F06D65;
	}

	.ui-tooltip-red .ui-state-default .ui-tooltip-icon{
		background-position: -102px 0;
	}

	.ui-tooltip-red .ui-tooltip-icon{
		border-color: #D95252;
	}

	.ui-tooltip-red .ui-tooltip-titlebar .ui-state-hover{
		border-color: #D95252;
	}


/*! Green tooltip style */
.ui-tooltip-green .ui-tooltip-titlebar,
.ui-tooltip-green .ui-tooltip-content{
	border-color: #90D93F;
	color: #3F6219;
}

	.ui-tooltip-green .ui-tooltip-content{
		background-color: #CAED9E;
	}

	.ui-tooltip-green .ui-tooltip-titlebar{
		background-color: #B0DE78;
	}

	.ui-tooltip-green .ui-state-default .ui-tooltip-icon{
		background-position: -42px 0;
	}


/*! Blue tooltip style */
.ui-tooltip-blue .ui-tooltip-titlebar,
.ui-tooltip-blue .ui-tooltip-content{
	border-color: #ADD9ED;
	color: #5E99BD;
}

	.ui-tooltip-blue .ui-tooltip-content{
		background-color: #E5F6FE;
	}

	.ui-tooltip-blue .ui-tooltip-titlebar{
		background-color: #D0E9F5;
	}

	.ui-tooltip-blue .ui-state-default .ui-tooltip-icon{
		background-position: -2px 0;
	}.ui-tooltip .ui-tooltip-tip{
	margin: 0 auto;
	overflow: hidden;

	background: transparent !important;
	border: 0px dashed transparent !important;
	z-index: 10;
}

	.ui-tooltip .ui-tooltip-tip,
	.ui-tooltip .ui-tooltip-tip *{
		position: absolute;
		
		line-height: 0.1px !important;
		font-size: 0.1px !important;
		color: #123456;

		background: transparent;
		border: 0px dashed transparent;
	}

	.ui-tooltip .ui-tooltip-tip canvas{ position: static; }#qtip-overlay{
	position: absolute;
	left: -10000em;
	top: -10000em;

	background-color: black;

	opacity: 0.7;
	filter:alpha(opacity=70);
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

/*! Add shadows to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE6+, Safari 2+ */
.ui-tooltip-shadow{
	-webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
	box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
}

	.ui-tooltip-shadow .ui-tooltip-titlebar,
	.ui-tooltip-shadow .ui-tooltip-content{
		filter: progid:DXImageTransform.Microsoft.Shadow(Color='gray', Direction=135, Strength=3);
		-ms-filter:"progid:DXImageTransform.Microsoft.Shadow(Color='gray', Direction=135, Strength=3)";

		_margin-bottom: -3px; /* IE6 */
		.margin-bottom: -3px; /* IE7 */
	}


/*! Add rounded corners to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE9+, Safari 2+ */
.ui-tooltip-rounded,
.ui-tooltip-rounded .ui-tooltip-content,
.ui-tooltip-tipsy,
.ui-tooltip-tipsy .ui-tooltip-content,
.ui-tooltip-youtube,
.ui-tooltip-youtube .ui-tooltip-content{
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

.ui-tooltip-rounded .ui-tooltip-titlebar,
.ui-tooltip-tipsy .ui-tooltip-titlebar,
.ui-tooltip-youtube .ui-tooltip-titlebar{
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
}

.ui-tooltip-rounded .ui-tooltip-titlebar + .ui-tooltip-content,
.ui-tooltip-tipsy .ui-tooltip-titlebar + .ui-tooltip-content,
.ui-tooltip-youtube .ui-tooltip-titlebar + .ui-tooltip-content{
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
}


/*! Youtube tooltip style */
.ui-tooltip-youtube{
	-webkit-box-shadow: 0 0 3px #333;
	-moz-box-shadow: 0 0 3px #333;
	box-shadow: 0 0 3px #333;
}

	.ui-tooltip-youtube .ui-tooltip-titlebar,
	.ui-tooltip-youtube .ui-tooltip-content{
		background: transparent;
		background: rgba(0, 0, 0, 0.85);
		filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#D9000000,endColorstr=#D9000000);
		-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#D9000000,endColorstr=#D9000000)";

		color: white;
		border-color: #CCCCCC;
	}

	.ui-tooltip-youtube .ui-tooltip-icon{
		border-color: #222;
	}

	.ui-tooltip-youtube .ui-tooltip-titlebar .ui-state-hover{
		border-color: #303030;
	}


/* jQuery TOOLS Tooltip style */
.ui-tooltip-jtools{
	background: #232323;
	background: rgba(0, 0, 0, 0.7);
	background-image: -moz-linear-gradient(top, #717171, #232323);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#717171), to(#232323));
	
	border: 2px solid #ddd;
	border: 2px solid rgba(241,241,241,1);

	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;

	-webkit-box-shadow: 0 0 12px #333;
	-moz-box-shadow: 0 0 12px #333;
	box-shadow: 0 0 12px #333;
}

	/* IE Specific */
	.ui-tooltip-jtools .ui-tooltip-titlebar{
		filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171,endColorstr=#4A4A4A);
		-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171,endColorstr=#4A4A4A)";
	}
	.ui-tooltip-jtools .ui-tooltip-content{
		filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A,endColorstr=#232323);
		-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A,endColorstr=#232323)";
	}

	.ui-tooltip-jtools .ui-tooltip-titlebar,
	.ui-tooltip-jtools .ui-tooltip-content{
		background: transparent;
		color: white;
		border: 0 dashed transparent;
	}

	.ui-tooltip-jtools .ui-tooltip-icon{
		border-color: #555;
	}

	.ui-tooltip-jtools .ui-tooltip-titlebar .ui-state-hover{
		border-color: #333;
	}


/* Cluetip style */
.ui-tooltip-cluetip{
	-webkit-box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
	box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
}

	.ui-tooltip-cluetip .ui-tooltip-titlebar{
		background-color: #87876A;
		color: white;
		border: 0 dashed transparent;
	}

	.ui-tooltip-cluetip .ui-tooltip-content{
		background-color: #D9D9C2;
		color: #111;
		border: 0 dashed transparent;
	}
	
	.ui-tooltip-cluetip .ui-tooltip-icon{
		border-color: #808064;
	}
	
	.ui-tooltip-cluetip .ui-tooltip-titlebar .ui-state-hover{
		border-color: #696952;
		color: #696952;
	}


/* Tipsy style */
.ui-tooltip-tipsy{
	border: 0;
}

	.ui-tooltip-tipsy .ui-tooltip-titlebar,
	.ui-tooltip-tipsy .ui-tooltip-content{
		background: transparent;
		background: rgba(0, 0, 0, .87);
		filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#D9000000,endColorstr=#D9000000);
		-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#D9000000,endColorstr=#D9000000)";
		
		color: white;
		border: 0px transparent;

		font-size: 11px;
		font-family: 'Lucida Grande', sans-serif;
		font-weight: bold;
		line-height: 16px;
		text-shadow: 0 1px black;
	}

	.ui-tooltip-tipsy .ui-tooltip-titlebar{
		padding: 6px 35px 0 10;
	}

	.ui-tooltip-tipsy .ui-tooltip-content{
		padding: 6px 10;
	}
	
	.ui-tooltip-tipsy .ui-tooltip-icon{
		border-color: #222;
		text-shadow: none;
	}

	.ui-tooltip-tipsy .ui-tooltip-titlebar .ui-state-hover{
		border-color: #303030;
	}


/* Tipped style */
.ui-tooltip-tipped{

}
	
	.ui-tooltip-tipped .ui-tooltip-titlebar,
	.ui-tooltip-tipped .ui-tooltip-content{
		border: 3px solid #959FA9;
	}

	.ui-tooltip-tipped .ui-tooltip-titlebar{
		background: #3A79B8;
		background-image: -moz-linear-gradient(top, #3A79B8, #2E629D);
		background-image: -webkit-gradient(linear, left top, left bottom, from(#3A79B8), to(#2E629D));
		filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8,endColorstr=#2E629D);
		-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8,endColorstr=#2E629D)";

		color: white;
		font-weight: normal;
		font-family: serif;

		border-bottom-width: 0;
		-moz-border-radius: 3px 3px 0 0;
		-webkit-border-radius: 3px 3px 0 0;
		border-radius: 3px 3px 0 0;
	}
	
	.ui-tooltip-tipped .ui-tooltip-content{
		background-color: #F9F9F9;
		color: #454545;

		-moz-border-radius: 0 0 3px 3px;
		-webkit-border-radius: 0 0 3px 3px;
		border-radius: 0 0 3px 3px;
	}

	.ui-tooltip-tipped .ui-tooltip-icon{
		border: 2px solid #285589;
		background: #285589;
	}
		
		.ui-tooltip-tipped .ui-tooltip-icon .ui-icon{
			background-color: #FBFBFB;
			color: #555;
		}
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  display: -moz-inline-box;
  -moz-box-orient: vertical;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  position: relative;
}
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  *display: inline;
}
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
  display: -moz-inline-box;
  -moz-box-orient: vertical;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  position: relative;
}
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
  *display: inline;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
  display: -moz-inline-box;
  -moz-box-orient: vertical;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  visibility: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
  *display: inline;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
  text-align: left;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
  display: block;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
  display: block;
  -webkit-backface-visibility: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-default .odometer-digit .odometer-value {
  display: block;
  -webkit-transform: translateZ(0);
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value, .odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
  position: absolute;
}
.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s;
}
.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  font-family: "Helvetica Neue", sans-serif;
  line-height: 1.1em;
}
.odometer.odometer-auto-theme .odometer-value, .odometer.odometer-theme-default .odometer-value {
  text-align: center;
}
.animated-element
{
	visibility: hidden;
	position: relative;
}
.fadeIn, .scale, .slideRight, .slideRightBack, .slideRight25, .slideRight200, .slideLeft, .slideLeftBack, .slideLeft50, .slideDown, .slideDownBack, .slideDown200, .slideUp, .slideUpBack, .width, .height
{
	animation-timing-function: cubic-bezier(.75, 0, .25, 1);	
	-webkit-animation-timing-function: cubic-bezier(.75, 0, .25, 1);		
	visibility: visible !important;	
}
.slideRightBack, .slideLeftBack, .slideDownBack, .slideUpBack
{
	opacity: 0;
}
/* --- fadeIn --- */
.fadeIn
{	
	animation-name: fadeIn;
	-webkit-animation-name: fadeIn;	
}
@keyframes fadeIn 
{
	0% 
	{
		opacity: 0;
	}
	100% 
	{
		opacity: 1;
	}
}
@-webkit-keyframes fadeIn 
{
	0% 
	{
		opacity: 0;
	}
	100% 
	{
		opacity: 1;
	}
}
/* --- scale --- */
.scale
{
	animation-name: scale;
	-webkit-animation-name: scale;
}
@keyframes scale 
{
	0% 
	{
		transform: scale(0.2);	
	}
	100% 
	{
		transform: scale(1);	
	}		
}
@-webkit-keyframes scale 
{
	0% 
	{
		-webkit-transform: scale(0.2);	
	}
	100% 
	{
		-webkit-transform: scale(1);
	}		
}
/* --- slideRight --- */
.slideRight
{
	animation-name: slideRight;
	-webkit-animation-name: slideRight;	
}
@keyframes slideRight 
{
	0% 
	{
		opacity: 0;
		transform: translateX(-100%);
	}
	100% 
	{
		opacity: 1;
		transform: translateX(0%);
	}
}
@-webkit-keyframes slideRight 
{
	0% 
	{
		opacity: 0;
		-webkit-transform: translateX(-100%);
	}
	100% 
	{
		opacity: 1;
		-webkit-transform: translateX(0%);
	}
}
/* --- slideRightBack --- */
.slideRightBack
{
	animation-name: slideRightBack;
	-webkit-animation-name: slideRightBack;	
}
@keyframes slideRightBack 
{
	0% 
	{
		opacity: 1;
		transform: translateX(0%);
	}
	100% 
	{
		opacity: 0;
		transform: translateX(-100%);
	}
}
@-webkit-keyframes slideRightBack 
{
	0% 
	{
		opacity: 1;
		-webkit-transform: translateX(0%);
	}
	100% 
	{
		opacity: 0;
		-webkit-transform: translateX(-100%);
	}
}
/* --- slideRight25 --- */
.slideRight25
{
	animation-name: slideRight25;
	-webkit-animation-name: slideRight25;	
}
@keyframes slideRight25
{
	0% 
	{
		opacity: 0;
		transform: translateX(-25%);
	}
	100% 
	{
		opacity: 1;
		transform: translateX(0%);
	}
}
@-webkit-keyframes slideRight25
{
	0% 
	{
		opacity: 0;
		-webkit-transform: translateX(-25%);
	}
	100% 
	{
		opacity: 1;
		-webkit-transform: translateX(0%);
	}
}
/* --- slideRight200 --- */
.slideRight200
{
	animation-name: slideRight200;
	-webkit-animation-name: slideRight200;	
}
@keyframes slideRight200 
{
	0%
	{
		opacity: 0;
		transform: translateX(-200%);
	}
	100% 
	{
		opacity: 1;
		transform: translateX(0%);
	}
}
@-webkit-keyframes slideRight200 
{
	0%
	{
		opacity: 0;
		-webkit-transform: translateX(-200%);
	}
	100% 
	{
		opacity: 1;
		-webkit-transform: translateX(0%);
	}
}
/* --- slideLeft --- */
.slideLeft
{
	animation-name: slideLeft;
	-webkit-animation-name: slideLeft;
}
@keyframes slideLeft 
{
	0% 
	{
		opacity: 0;
		transform: translateX(100%);
	}
	100% 
	{
		opacity: 1;
		transform: translateX(0%);
	}	
}
@-webkit-keyframes slideLeft 
{
	0% 
	{
		opacity: 0;
		-webkit-transform: translateX(100%);
	}
	100% 
	{
		opacity: 1;
		-webkit-transform: translateX(0%);
	}
}
/* --- slideLeftBack --- */
.slideLeftBack
{
	animation-name: slideLeftBack;
	-webkit-animation-name: slideLeftBack;
}
@keyframes slideLeftBack 
{
	0% 
	{
		opacity: 1;
		transform: translateX(0%);
	}
	100% 
	{
		opacity: 0;
		transform: translateX(100%);
	}	
}
@-webkit-keyframes slideLeftBack 
{
	0% 
	{
		opacity: 1;
		-webkit-transform: translateX(0%);
	}
	100% 
	{
		opacity: 0;
		-webkit-transform: translateX(100%);
	}
}
/* --- slideLeft50 --- */
.slideLeft50
{
	animation-name: slideLeft50;
	-webkit-animation-name: slideLeft50;
}
@keyframes slideLeft50 
{
	0% 
	{
		opacity: 0;
		transform: translateX(50%);
	}
	100% 
	{
		opacity: 1;
		transform: translateX(0%);
	}	
}
@-webkit-keyframes slideLeft50 
{
	0% 
	{
		opacity: 0;
		-webkit-transform: translateX(50%);
	}
	100% 
	{
		opacity: 1;
		-webkit-transform: translateX(0%);
	}
}
/* --- slideDown --- */
.slideDown
{
	animation-name: slideDown;
	-webkit-animation-name: slideDown;				
}
@keyframes slideDown 
{
	0% 
	{
		opacity: 0;
		transform: translateY(-100%);
	}
	100% 
	{
		opacity: 1;
		transform: translateY(0%);
	}		
}
@-webkit-keyframes slideDown 
{
	0% 
	{
		opacity: 0;
		-webkit-transform: translateY(-100%);
	}
	100% 
	{
		opacity: 1;
		-webkit-transform: translateY(0%);
	}	
}
/* --- slideDownBack --- */
.slideDownBack
{
	animation-name: slideDownBack;
	-webkit-animation-name: slideDownBack;				
}
@keyframes slideDownBack 
{
	0% 
	{
		opacity: 1;
		transform: translateY(0%);
	}
	100% 
	{
		opacity: 0;
		transform: translateY(-100%);
	}		
}
@-webkit-keyframes slideDownBack 
{
	0% 
	{
		opacity: 1;
		-webkit-transform: translateY(0%);
	}
	100% 
	{
		opacity: 0;
		-webkit-transform: translateY(-100%);
	}	
}
/* --- slideDown --- */
.slideDown200
{
	animation-name: slideDown200;
	-webkit-animation-name: slideDown200;				
}
@keyframes slideDown200
{
	0% 
	{
		opacity: 0;
		transform: translateY(-100%);
	}
	100% 
	{
		opacity: 1;
		transform: translateY(0%);
	}		
}
@-webkit-keyframes slideDown200
{
	0% 
	{
		opacity: 0;
		-webkit-transform: translateY(-100%);
	}
	100% 
	{
		opacity: 1;
		-webkit-transform: translateY(0%);
	}	
}
/* --- slideUp --- */
.slideUp
{
	animation-name: slideUp;
	-webkit-animation-name: slideUp;
}

@keyframes slideUp 
{
	0% 
	{
		opacity: 0;
		transform: translateY(100%);
	}
	100%
	{
		opacity: 1;
		transform: translateY(0%);
	}	
}

@-webkit-keyframes slideUp 
{
	0% 
	{
		opacity: 0;
		-webkit-transform: translateY(100%);
	}
	100% 
	{
		opacity: 1;
		-webkit-transform: translateY(0%);
	}	
}
/* --- slideUpBack --- */
.slideUpBack
{
	animation-name: slideUpBack;
	-webkit-animation-name: slideUpBack;
}

@keyframes slideUpBack 
{
	0% 
	{
		opacity: 1;
		transform: translateY(0%);
	}
	100%
	{
		opacity: 0;
		transform: translateY(100%);
	}	
}

@-webkit-keyframes slideUpBack 
{
	0% 
	{
		opacity: 1;
		-webkit-transform: translateY(0%);
	}
	100% 
	{
		opacity: 0;
		-webkit-transform: translateY(100%);
	}	
}
/* --- width --- */
.width
{
	animation-name: width;
	-webkit-animation-name: width;
}

@keyframes width 
{
	0% 
	{
		width: 0%;
	}
	100%
	{
		width: 100%;
	}	
}

@-webkit-keyframes width 
{
	0% 
	{
		width: 0%;
	}
	100% 
	{
		width: 100%;
	}	
}
/* --- height --- */
.height
{
	animation-name: height;
	-webkit-animation-name: height;
}

@keyframes height 
{
	0% 
	{
		height: 0%;
	}
	100%
	{
		height: 100%;
	}	
}

@-webkit-keyframes height 
{
	0% 
	{
		height: 0%;
	}
	100% 
	{
		height: 100%;
	}	
}/*
Theme Name: Renovate
Theme URI: http://themeforest.net/item/renovate-construction-renovation-wordpress-theme/11789093?ref=QuanticaLabs
Description: Renovate is a responsive and retina ready WordPress Theme best suitable for construction, renovation, remodeling or handyman business. The Theme comes with Cost Calculator Tool - a quick and easy way to get cost estimates for construction or remodeling services. Renovate includes Slider Revolution plugin, premium font icons, 12 page templates, sticky menu, touch friendly slider and carousels, ajax contact form and more.
Author: QuanticaLabs
Author URI: http://themeforest.net/user/QuanticaLabs?ref=QuanticaLabs
License: GNU General Public License version 3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Version: 3.2
Tags: light, white, one-column, two-columns, three-columns, right-sidebar, flexible-width, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, sticky-post, theme-options, translation-ready
*/

/* Table of Content
==================================================
#general
#body styles
#site container
#header
#footer
#page
#blog
#single post
#lists
#taxonomies
#forms
#pagination
#comments
#carousel
#icons
#buttons
#misc
#Visual Composer
#WP core
*/

/* --- general --- */
.clearfix:after
{
    font-size: 0px;
    content: ".";
    display: block;
    height: 0px;
    visibility: hidden;
    clear: both;
}
body
{
	background: #E5E5E5;
	padding: 0px;
	margin: 0px;
	font-family: 'Arial';
	font-size: 14px;
	color: #444;
}
a
{
	text-decoration: none;
	outline: none;
}
a:hover
{
	text-decoration: underline;
}
a img
{
	display: block;
	transition: opacity 0.3s ease 0s;
	opacity: 1;
	max-width: 100%;
	height: auto;
}
a:hover img
{
	opacity: 0.8;
}
p.description,
.description p
{
	font-size: 16px;
	line-height: 26px;
	margin-top: 34px;
}
p
{
	color: #444;
	font-family: 'Raleway';
	font-size: 14px;
	line-height: 24px;
	margin-top: 24px;
	padding: 0;
}
p a,
table a
{
	color: #F4BC16;
	font-weight: 600;
}
strong
{
	color: #000;
}
blockquote
{
	text-align: center;
	font-family: 'Raleway';
	font-size: 16px;
	color: #444;
	line-height: 26px;
}
blockquote:before
{
	display: block;
	font-size: 48px;
	color: #F4BC16;
	text-align: left;
	margin-bottom: 10px;
}
pre
{
	font-family: 'Courier new';
    font-size: 14px;
    line-height: 135%;
	background: url('/wp-content/themes/renovate/images/code_background.png?x21533') repeat;
	text-shadow: 0 1px 0 #FFF;
	zoom:1;
	filter: dropshadow(color=#ffffff, offx=0, offy=1);
	padding: 0 5px;
	margin: 0;
	overflow: auto;
}
label
{
	color: #25282A;
	font-family: 'Raleway';
}
.relative
{
	position: relative;
}
.responsive
{
	display: block;
	width: 100%;
	height: auto;
}
input, textarea
{
	font-family: 'Raleway';
	border: 1px solid #E2E6E7;
	font-size: 14px;
	line-height: 24px;
	padding: 12px 15px;
	color: #444;
	margin: 0;
}
input[type='number']
{
   appearance: textfield;
	-moz-appearance: textfield;
	-webkit-appearance: textfield;
	-webkit-appearance: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
    -webkit-appearance: none;
}
table
{
	width: 100%;
}
table td, table th
{
	padding: 18px 30px;
	font-family: 'Raleway';
	font-size: 14px;
	line-height: 24px;
}
table td, table th
{
	border-left: 1px solid #E2E6E7;
}
table td:first-child, table th:first-child
{
	text-align: right;
	border-left: none;
}
.align-left table td:first-child, .align-left table th:first-child
{
	text-align: left;
}
table tr:nth-child(odd)
{
	background: #F5F5F5;
}
.radius
{
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
img.radius
{
	max-width: 100%;
}
.float
{
	float: left;
}
.align-center
{
	text-align: center;
}
.align-left
{
	text-align: left;
}
.align-right
{
	text-align: right;
}
.padding-left-right-100
{
	padding: 0 100px !important;
}
.padding-bottom-17
{
	padding-bottom: 17px;
}
.padding-bottom-50
{
	padding-bottom: 50px !important;
}
.padding-bottom-61
{
	padding-bottom: 61px;
}
.padding-bottom-66
{
	padding-bottom: 66px;
}
.padding-bottom-70
{
	padding-bottom: 70px;
}
.padding-bottom-87
{
	padding-bottom: 87px;
}
.padding-top-0
{
	padding-top: 0 !important;
}
.padding-top-7
{
	padding-top: 7px;
}
.padding-top-54
{
	padding-top: 54px;
}
.padding-top-67
{
	padding-top: 67px;
}
.padding-top-70
{
	padding-top: 70px;
}
.padding-top-bottom-30
{
	padding: 30px 0;
}
.margin-top-0
{
	margin-top: 0 !important;
}
.margin-top-10
{
	margin-top: 10px !important;
}
.margin-top-20
{
	margin-top: 20px;
}
.margin-top-24
{
	margin-top: 24px;
}
.margin-top-26
{
	margin-top: 26px;
}
.margin-top-30
{
	margin-top: 30px;
}
.margin-top-34
{
	margin-top: 34px !important;
}
.margin-top-40
{
	margin-top: 40px !important;
}
.margin-top-67
{
	margin-top: 67px;
}
.margin-top-70
{
	margin-top: 70px !important;
}
.margin-bottom-20
{
	margin-bottom: 20px;
}
.margin-bottom-30
{
	margin-bottom: 30px;
}
.nounderline,
.nounderline:hover
{
	text-decoration: none;
}
.top-border
{
	border-top: 1px solid #E2E6E7;
}
/* --- site container --- */
.site-container
{
}
/* --- headers --- */
h1, h2, h3, h4, h5, h6
{
	font-family: 'Raleway';
	margin: 0;
	padding: 0;
	color: #000;
	font-weight: 600;
	letter-spacing: 1px
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a
{
	color: #000;
	transition: opacity 0.3s ease 0s;
	opacity: 1;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover
{
	opacity: 0.6;
	text-decoration: none;
}
h1
{
	font-size: 22px;
	line-height: 34px;
}
h2
{
	font-size: 29px;
	line-height: 40px;
}
h3
{
	font-size: 22px;
	line-height: 34px;
}
h4
{
	font-size: 18px;
	line-height: 28px;
}
h5
{
	font-size: 14px;
	line-height: 24px;
	font-weight: 700;
}
h2.widgettitle,
h6
{
	font-size: 15px;
	line-height: 24px;
	font-weight: 500;
	letter-spacing: normal;
}
h2.box-header
{
	text-align: center;
}
h2.box-header.align-left
{
	text-align: left;
}
h2.widgettitle:after,
.box-header:after
{
	display: block;
	content: "";
	background: #F4BC16;
	width: 40px;
	height: 2px;
	margin-top: 13px;
}
h2.box-header:after
{
	width: 80px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
}
h2.box-header.align-left:after
{
	margin-left: 0;
}
h3 .more
{
	margin-left: 50px;
}
h2.widgettitle,
h6.box-header
{
	border-bottom: 1px solid #E2E6E7;
}
h2.widgettitle:after,
h6.box-header:after
{
	margin-bottom: -1px;
}
/* --- header --- */
.header-container
{
	padding: 26px 0;
	background: #FFF;
}
.header-container .vertical-align-table
{
	width: 100%;
}
.header-top-bar-container
{
	background-color: #F5F5F5;
}
.header-top-bar-container .header-toggle
{
	display: none;
	clear: both;
	text-align: center;
	color: #444;
	padding: 15px 0;
}
.header-top-bar-container .header-toggle:hover
{
	color: #000;
}
.header-top-bar-container .header-toggle
{
	-moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    -ms-filter: fliph;
    filter: fliph;
}
.header-top-bar-container .header-toggle.active
{
	-moz-transform: rotate(0);
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}
.header-top-bar,
.header
{
	width: 1170px;
	margin-left: auto;
	margin-right: auto;
}
.header .logo
{
	width: 370px;
	max-width: 370px;
	/*float: left;*/
}
.header h1
{
	font-size: 37px;
	font-weight: 900;
	color: #F4BC16;
	line-height: 1;
}
.header h1 a
{
	color: #F4BC16;
}
.header h1 a:hover
{
	opacity: 1;
}
/* --- page header --- */
.page-header
{
	height: 100px;
	-webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05) inset;
	-moz-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05) inset;
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05) inset;
}
.page-header-left
{
	float: left;
	width: 400px;
}
.page-header-left h1
{
	text-transform: uppercase;
}
.page-header-right
{
	float: right;
	width: 650px;
}
.page-header-right label
{
	float: left;
}
/* --- bread crumbs --- */
.bread-crumb-container
{
	float: right;
	padding: 7px 0;
}
.bread-crumb
{
	float: left;
}
.bread-crumb li
{
	float: left;
	margin-left: 3px;
	text-transform: uppercase;
}
.bread-crumb-container label,
.bread-crumb li,
.bread-crumb li a
{
	font-family: 'Raleway';
	font-weight: 500;
	font-size: 13px;
	color: #999;
	line-height: 20px;
}
.bread-crumb li a
{
	color: #444;
}
/* --- menu --- */
.menu-container
{
	width: 800px;
	/*float: right;*/
}
.menu-container nav
{
	float: right;
}
.header-container.sticky.move
{
	position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
	padding: 16px 0;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
}
.boxed .header-container.sticky.move
{
	max-width: 1310px;
	width: 100%;
}
.sf-menu
{
	float: none;
	padding: 0;
	margin: 0;
}
.sf-menu li
{
	border: none;
	overflow: hidden;
}
.sf-menu li, .sf-menu li:hover, .sf-menu li.sfHover, .sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active
{
	background: none #fff;

}
.sf-menu li:hover a, .sf-menu li:hover a:visited
{
	color: #F4BC16;
}
.sf-menu li a, .sf-menu li a:visited
{
	font-family: 'Raleway';
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: #444444;
	padding: 12px 0 12px 26px;
	border: none;
}
.sf-menu a:hover,
.sf-menu a:visited:hover,
.sf-menu li.current-menu-item a,
.sf-menu li.current-menu-parent a,
.sf-menu li.current-menu-ancestor a
{
	color: #F4BC16;
}
body .header-container .menu-container .sf-menu>li:first-child>a
{
	padding-left: 0;
}
.sf-menu li ul
{
	border: 1px solid #E2E6E7;
}
.sf-menu li ul
{
	width: 218px;
}
.sf-menu li:hover, .sf-menu li.sfHover
{
	overflow: visible;
}
.sf-menu li:hover ul, .sf-menu li.sfHover ul
{
	top: 48px;
	left: 5px;
}
.sf-menu li.left-flyout:hover ul, .sf-menu li.left-flyout.sfHover ul
{
	left: auto;
	right: 0;
}
.sf-menu>li:first-child:hover ul, .sf-menu>li:first-child.sfHover ul
{
	left: -21px;
}
.sf-menu li ul li
{
	width: 218px;
	height: auto;
	padding: 0;
	border: none;
}
.menu-container .sf-menu li:hover ul a,
.menu-container .sf-menu li.menu-item-has-children:hover ul a,
.menu-container .sf-menu li ul li a,
.menu-container .sf-menu li.menu-item-has-children:hover ul li.current-menu-item ul li a,
.menu-container .sf-menu li.menu-item-has-children:hover ul li.current-menu-parent ul li a,
.menu-container .sf-menu li.menu-item-has-children:hover ul li.current-menu-ancestor ul li a
{
	color: #444;
}
.menu-container .sf-menu li ul li a,
.menu-container .sf-menu li.current-menu-item ul li a,
.menu-container .sf-menu li.current-menu-parent ul li a,
.menu-container .sf-menu li.current-menu-ancestor ul li a,
.menu-container .sf-menu li.current-menu-parent.menu-item-has-children ul li a,
.menu-container .sf-menu li.current-menu-ancestor.menu-item-has-children ul li a,
.menu-container .sf-menu li.menu-item-has-children ul li a,
.menu-container .sf-menu li.menu-item-has-children:hover ul li a,
.menu-container .sf-menu li:hover ul li a
{
	color: #444;
	border-top: 1px solid #E2E6E7;
	background-color: #FFF;
	padding: 13px 20px;
	background-image: none;
}
body .menu-container .sf-menu li ul.sub-menu li:first-child>a
{
	border-top: none;
}
.menu-container .sf-menu li ul li.current-menu-item a,
.menu-container .sf-menu li ul li.current-menu-parent a,
.menu-container .sf-menu li ul li.current-menu-ancestor a,
.menu-container .sf-menu li.menu-item-has-children ul li a:hover,
.menu-container .sf-menu li.menu-item-has-children:hover ul li.current-menu-item a,
.menu-container .sf-menu li.menu-item-has-children:hover ul li.current-menu-parent a,
.menu-container .sf-menu li.menu-item-has-children:hover ul li.current-menu-ancestor a,
.menu-container .sf-menu li.menu-item-has-children:hover ul li.current-menu-item ul li a:hover,
.menu-container .sf-menu li.menu-item-has-children:hover ul li.current-menu-parent ul li a:hover,
.menu-container .sf-menu li.menu-item-has-children:hover ul li.current-menu-ancestor ul li a:hover,
.menu-container .sf-menu li.menu-item-has-children:hover ul li ul li.current-menu-item a,
.menu-container .sf-menu li.menu-item-has-children:hover ul li ul li.current-menu-parent a,
.menu-container .sf-menu li.menu-item-has-children:hover ul li ul li.current-menu-ancestor a,
.menu-container .sf-menu li:hover ul li.sfHover>a
{
	color: #F4BC16;
}
ul.sf-menu li li:hover ul, ul.sf-menu li li.sfHover ul,
ul.sf-menu li li li:hover ul, ul.sf-menu li li li.sfHover ul
{
	left: 218px;
	z-index: 2 !important;
}
ul.sf-menu li li:first-child:hover ul, ul.sf-menu li li.sfHover:first-child ul,
ul.sf-menu li li:first-child li:first-child:hover ul, ul.sf-menu li li:first-child li.sfHover:first-child ul
{
	top: -1px;
}
/* --- mobile menu --- */
.mobile-menu-container
{
	display: none;
}
.header .mobile-menu-switch,
.mobile-menu,
.mobile-menu-divider
{
	display: none;
	margin-left: auto;
	margin-right: auto;
}
.mobile-menu-divider
{
	margin-top: 15px;
}
.mobile-menu li a
{
	display: block;
	color: #25282A;
	background: #F0F0F0;
	font-size: 14px;
	font-family: 'Raleway';
	line-height: 24px;
	padding: 12px 20px;
	margin-bottom: 1px;
}
.mobile-menu li.current-menu-item>a,
.mobile-menu li.current-menu-ancestor ul li.current-menu-item a,
.mobile-menu li.current-menu-ancestor ul li.current-menu-parent ul li.current-menu-item a,
.mobile-menu li.current-menu-ancestor a,
.mobile-menu li.current-menu-ancestor ul li.current-menu-parent a,
.mobile-menu li.current-menu-ancestor ul li.current-menu-parent ul li.current-menu-parent a
{
	background: #F4BC16;
	color: #FFF;
}
.mobile-menu li ul a
{
	font-size: 14px;
	padding-left: 40px;
}
.mobile-menu li ul ul a
{
	font-size: 13px;
	padding-left: 80px;
}
.mobile-menu li.current-menu-ancestor ul a,
.mobile-menu li.current-menu-ancestor ul li.current-menu-item ul a,
.mobile-menu li.current-menu-ancestor ul li.current-menu-parent ul a,
.mobile-menu li.current-menu-ancestor ul li.current-menu-parent ul li.current-menu-item ul a,
.mobile-menu li.current-menu-ancestor ul li.current-menu-parent ul li.current-menu-parent ul a
{
	color: #25282A;
	background: #F0F0F0;
}
.mobile-menu-switch .line
{
	display: block;
	width: 30px;
	height: 3px;
	background: #444;
	margin-top: 6px;
}
.mobile-menu-switch .line:first-child
{
	margin-top: 0;
}
.mobile-menu-switch:hover .line
{
	background: #F4BC16;
}
/* --- vertical menu --- */
.vertical-menu li
{
	margin-top: 10px;
}
.vertical-menu li:first-child
{
	margin-top: 0;
}
.vertical-menu li a
{
	display: block;
	background: #F5F5F5;
	padding: 18px 18px 18px 19px;
	font-family: 'Raleway';
	line-height: 24px;
	color: #444;
}
.vertical-menu li.current-menu-item a,
.vertical-menu li:hover a
{
	background: #F4BC16;
}
.vertical-menu li.current-menu-item a,
.vertical-menu li:hover a,
.vertical-menu li.current-menu-item a:after,
.vertical-menu li:hover a:after
{
	color: #FFF;
}
.vertical-menu li a:after
{
	float: right;
	color: #AAA;
	font-size: 11px;
	margin-top: 7px;
	font-family: "template";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    vertical-align: middle;
	content: "e";
}
/* --- page --- */
.theme-page
{
}
.page-margin-top,
.error404 .feature-item.feature-item-big h4.page-margin-top,
.page-template-404 .feature-item.feature-item-big h4.page-margin-top
{
	margin-top: 50px;
}
.page-margin-top-section
{
	margin-top: 65px;
}
.page-padding-top
{
	padding-top: 50px;
}
.page-padding-top-section
{
	padding-top: 65px;
}
/* --- vertical align --- */
.vertical-align-table
{
	display: table;
}
.vertical-align
{
	display: table-row;
}
.vertical-align-cell
{
	display: table-cell;
	vertical-align: middle;
}
/* --- body styles --- */
body.image-1
{
	background: url("/wp-content/themes/renovate/images/backgrounds/images/image_1.jpg?x21533") fixed no-repeat center 0;
}
body.image-2
{
	background: url("/wp-content/themes/renovate/images/backgrounds/images/image_2.jpg?x21533") fixed no-repeat center 0;
}
body.image-3
{
	background: url("/wp-content/themes/renovate/images/backgrounds/images/image_3.jpg?x21533") fixed no-repeat center 0;
}
body.image-4
{
	background: url("/wp-content/themes/renovate/images/backgrounds/images/image_4.jpg?x21533") fixed no-repeat center 0;
}
body.image-5
{
	background: url("/wp-content/themes/renovate/images/backgrounds/images/image_5.jpg?x21533") fixed no-repeat center 0;
}
body.pattern-1
{
	background: url("/wp-content/themes/renovate/images/backgrounds/patterns/pattern_1.png?x21533") fixed;
}
body.pattern-2
{
	background: url("/wp-content/themes/renovate/images/backgrounds/patterns/pattern_2.png?x21533") fixed;
}
body.pattern-3
{
	background: url("/wp-content/themes/renovate/images/backgrounds/patterns/pattern_3.png?x21533") fixed;
}
body.pattern-4
{
	background: url("/wp-content/themes/renovate/images/backgrounds/patterns/pattern_4.png?x21533") fixed;
}
body.pattern-5
{
	background: url("/wp-content/themes/renovate/images/backgrounds/patterns/pattern_5.png?x21533") fixed;
}
body.pattern-6
{
	background: url("/wp-content/themes/renovate/images/backgrounds/patterns/pattern_6.png?x21533") fixed;
}
body.pattern-7
{
	background: url("/wp-content/themes/renovate/images/backgrounds/patterns/pattern_7.png?x21533") fixed;
}
body.pattern-8
{
	background: url("/wp-content/themes/renovate/images/backgrounds/patterns/pattern_8.png?x21533") fixed;
}
body.pattern-9
{
	background: url("/wp-content/themes/renovate/images/backgrounds/patterns/pattern_9.png?x21533") fixed;
}
body.pattern-10
{
	background: url("/wp-content/themes/renovate/images/backgrounds/patterns/pattern_10.png?x21533") fixed;
}
body.overlay .background-overlay
{
	display: block;
}
.background-overlay
{
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	background: url("/wp-content/themes/renovate/images/backgrounds/images/overlay.png?x21533");
	z-index: 1;
}
/* --- page layout --- */
.site-container
{
	background: #FFF;
}
.site-container.boxed
{
	max-width: 1310px;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
	-moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
}
body.overlay .site-container
{
	position: relative;
	z-index: 2;
}
.flex-box
{
	display: block;
	display: flex;
	display: -ms-flexbox;
	display: -webkit-flexbox;
	display: -webkit-flex;
}
.flex-hide
{
	display: none;
}
@media all and (min-width:0\0) and (min-resolution: .001dpcm)
{
    .flex-hide
	{
		display: inline;
	}
	.flex-hide.wpb_single_image img
	{
		width: 100%;
		height: auto;
	}
}
.flex-box .vc_column_container
{
	background-position: center center;
	background-size: cover;
}
.site-container .vc_row
{
	width: 1170px;
	margin-left: auto;
	margin-right: auto;
}
.site-container .vc_row .wpb_column .vc_row
{
	width: auto;
}
.site-container .vc_row.full-width .vc_col-sm-12.wpb_column .vc_row
{
	width: 1170px;
}
.column .row
{
	width: auto;
}
.site-container .vc_row.full-width,
body .site-container .vc_row.full-width .wpb_column .vc_row.full-width
{
	width: 100%;
}
.site-container .vc_row.full-width.flex-box>.vc_col-sm-6
{
	width: 50%;
}
.site-container .vc_row.full-width>.vc_col-sm-4
{
	width: 33%;
}
.site-container .vc_row.full-width.flex-box>.wpb_column
{
	margin: 0;
}
.site-container .vc_row.gray
{
	background: #F5F5F5;
}
.site-container .vc_row.yellow
{
	background: #F4BC16;
}
.site-container .vc_row:after
{
    font-size: 0px;
    content: ".";
    display: block;
    height: 0px;
    visibility: hidden;
    clear: both;
}
.column
{
	position: relative;
	float: left;
	margin-left: 30px;
}
.column:first-child,
.column.first
{
	margin-left: 0;
}
.vc_row .vc_col-sm-8 .vc_col-sm-6
{
	width: 370px;
}
.column-1-3 .column-1-2
{
	width: 150px;
}
.column-2-3 .column-1-3
{
	width: 210px;
}
.vc_row .vc_col-sm-3,
.vc_row .vc_col-sm-6 .vc_col-sm-6
{
	width: 270px;
}
.vc_row .vc_col-sm-9
{
	width: 870px;
}
.vc_row .vc_col-sm-9 .vc_col-sm-9
{
	width: 645px;
}
.vc_row .vc_col-sm-9 .vc_col-sm-6
{
	width: 420px;
}
.column-right
{
	float: right;
}
.columns.no-width .column-left,
.columns.no-width .column-right
{
	width: auto;
}
/* --- services --- */
.services-list li,
.team-box
{
	position: relative;
	float: left;
	width: 390px;
	background: #FFF;
	padding-bottom: 26px;
	overflow: hidden;
}
div.team-box
{
	width: 100%;
}
.team-box
{
	padding-bottom: 0;
	background: transparent;
}
.services-list.services-icons .vc_row
{
	margin-top: 30px;
}
.services-list.services-icons .vc_row:first-child
{
	margin-top: 0;
}
.services-list.services-icons li
{
	width: 570px;
	padding: 40px 40px 36px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.services-list.services-items-border.services-icons li
{
	border: 1px solid #E2E6E7;
}
.services-list.services-icons li:nth-child(even)
{
	margin-left: 30px;
}
.services-list li .service-icon::before
{
	float: left;
	font-size: 48px;
	color: #F4BC16;
	border: 1px solid #E2E6E7;
	padding: 19px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.services-list.services-icons li .service-content
{
	margin-left: 128px;
}
.services-list li h4
{
	margin-top: 22px;
	text-align: center;
}
.team-box h4
{
	text-align: center;
}
.services-list li h4.box-header::after,
.team-box h4.box-header::after
{
	margin-top: 23px;
	margin-left: auto;
	margin-right: auto;
}
.team-box h4 span
{
	display: block;
	font-weight: 500;
	font-size: 11px;
	color: #999;
	line-height: 21px;
	letter-spacing: 1px;
	padding-top: 7px;
}
.services-list li p,
.team-box p
{
	text-align: center;
	font-family: 'Raleway';
	font-size: 14px;
	line-height: 24px;
	padding: 24px 25px 0;
	margin: 0;
}
.services-list.services-icons li h4
{
	margin-top: -8px;
}
.services-list.services-icons li h4,
.services-list.services-icons li p
{
	text-align: left;
}
.services-list.services-icons li p
{
	padding: 24px 0 0;
}
.services-list.services-icons li h4.box-header::after
{
	margin-left: 0;
	margin-right: 0;
}
.services-list a>.re-preloader,
.team-box a>.re-preloader
{
	height: 260px;
}
.services-list img,
.team-box img
{
	max-width: 100%;
	height: auto;
}
.team-box ul.social-icons
{
	display: none;
	position: absolute;
	background: transparent;
}
.team-box ul.social-icons.social-static
{
	position: static;
	display: block;
	background: #FFF;
}
.team-box:hover ul.social-icons
{
	display: block;
}
.team-box .team-content
{
	padding-top: 23px;
	padding-bottom: 26px;
	background: #FFF;
	position: relative;
	z-index: 1;
}
.single .team-box .team-content
{
	background: #F5F5F5;
}
.team-box ul.social-icons li
{
	border: none;
	margin-left: 1px;
	background: #FFF;
}
.team-box ul.social-icons li a
{
	padding: 17px 18px;
	width: 14px;
	height: 16px;
}
.team-box ul.social-icons li:first-child
{
	margin-left: 0;
}
.team-box ul.social-icons li:hover
{
	background: #F4BC16;
}
.team-box ul.social-icons li:hover a
{
	color: #FFF;
}
/* --- projects --- */
.projects-list
{
	width: 100%;
	transition: all 0.4s ease 0s;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
}
.projects-list li
{
	position: relative;
	float: left;
	width: 25%;
	overflow: hidden;
}
.projects-list.isotope li
{
	width: 270px;
	height: 180px;
	margin-top: 30px;
}
.projects-list li img
{
	width: 100%;
}
.projects-list a>.re-preloader
{
	height: 250px;
}
.projects-list li .view
{
	position: absolute;
	top: 0;
	background: rgba(38, 38, 40, 0.5);
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
}
.projects-list li:hover .view
{
	opacity: 1;
}
.projects-list li .view .vertical-align-table
{
	width: 100%;
	height: 100%;
}
.projects-list li .view p.description
{
	color: #FFF;
	margin-top: -20px;
	margin-bottom: 55px;
	font-size: 14px;
	line-height: 24px;
	transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
}
.projects-list li:hover .view  p.description
{
	margin-bottom: 35px;
}
/* --- features --- */
.feature-item
{
	position: relative;
	float: left;
	width: 100%;
}
.feature-item.feature-item-big
{
	text-align: center;
}
.feature-item:before
{
	float: left;
	font-size: 48px;
	margin-right: 30px;
	color: #F4BC16;
	border: 1px solid #E2E6E7;
	padding: 19px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.feature-item.feature-item-big:before
{
	clear: both;
	float: none;
	display: block;
	width: 60px;
	font-size: 60px;
	margin-left: auto;
	margin-right: auto;
	padding: 39px;
}
.feature-item .featured-item-icon-url
{
	position: absolute;
	width: 88px;
    height: 88px;
    left: 0;
    top: 0;
}
.feature-item.feature-item-big .featured-item-icon-url
{
	width: 140px;
	height: 140px;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}
.featured-item-icon-url:hover
{
	text-decoration: none;
}
.feature-item h4
{
	padding-bottom: 5px;
}
.feature-item p
{
	font-family: 'Raleway';
	font-size: 14px;
	line-height: 24px;
	padding: 0;
	margin-top: 19px;
	margin-left: 118px;
}
.feature-item.no-icon p
{
	margin-left: 0;
}
.feature-item.feature-item-big h4
{
	margin-top: 35px;
}
.feature-item.feature-item-big.no-icon h4
{
	margin-top: 0;
}
.feature-item.feature-item-big h4:after
{
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
}
body .feature-item.feature-item-big p
{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
.vc_col-sm-3 .feature-item.feature-item-big p
{
	width: 100%;
}
.feature-item.feature-item-big .ornament
{
	position: relative;
	width: 1px;
	height: 20px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 13px;
	background: #E2E6E7;
}
.feature-item.feature-item-big .ornament:after
{
	position: absolute;
	content: "";
	border: 1px solid #E2E6E7;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	width: 11px;
	height: 11px;
	left: -6px;
	bottom: -13px;
}
.error404 .feature-item.feature-item-big h4,
.page-template-404 .feature-item.feature-item-big h4
{
	font-size: 29px;
    line-height: 40px;
	padding-bottom: 0;
}
.error404 .feature-item.feature-item-big h4:after,
.page-template-404 .feature-item.feature-item-big h4:after
{
	width: 80px;
}
.error404 .feature-item.feature-item-big p,
.page-template-404 .feature-item.feature-item-big p
{
	font-size: 16px;
    line-height: 26px;
    margin-top: 34px;
}
/* --- timeline --- */
.timeline-item .timeline-left
{
	width: 190px;
	min-width: 190px;
}
.timeline-item .label-container
{
	position: relative;
}
.timeline-item .label-container .timeline-circle
{
	position: absolute;
	display: block;
	width: 19px;
	height: 19px;
	top: 4px;
	right: -11px;
	border: 1px solid #E2E6E7;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	background: #FFF;
}
.timeline-item .label-container .timeline-circle::after
{
	content: "";
	display: block;
	width: 7px;
	height: 7px;
	margin-left: 6px;
	margin-top: 6px;
	background: #F4BC16;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.timeline-item label
{
	float: right;
	max-width: 100px;
	overflow: hidden;
	font-family: 'Raleway';
	font-weight: 500;
	color: #FFF;
	font-size: 13px;
	line-height: 20px;
	background: #F4BC16;
	padding: 4px 15px 6px 20px;
	white-space: nowrap;
}
.timeline-item .label-triangle
{
	float: right;
	width: 0;
	height: 0;
	margin-right: 40px;
	border-style: solid;
	border-width: 15px 0 15px 15px;
	border-color: transparent transparent transparent #F4BC16;
}
.timeline-content
{
	padding: 22px 0 26px 40px;
	border-left: 1px solid #E2E6E7;
}
.timeline-content span.timeline-title
{
	margin-right: 10px;
}
.timeline-content span.timeline-subtitle
{
	font-family: 'Raleway';
	font-weight: 500;
	font-size: 11px;
	color: #999;
	line-height: 16px;
	letter-spacing: 1px;
	margin-top: 9px;
}
/* --- testimonials --- */
.testimonials-container
{
	position: relative;
}
.testimonials-container .caroufredsel_wrapper_testimonials
{
	width: 1050px !important;
	left: 60px !important;
}
.testimonials-container.type-small .caroufredsel_wrapper_testimonials
{
	width: 100% !important;
	left: 0 !important;
}
.testimonials-list li
{
	float: left;
	width: 1050px;
	text-align: center;
}
.testimonials-list li::before
{
	display: block;
	width: 48px;
	font-size: 48px;
	margin-left: auto;
	margin-right: auto;
	color: #FFF;
	border: 1px solid #E2E6E7;
	padding: 19px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.testimonials-list .ornament
{
	position: relative;
	width: 1px;
	height: 20px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 13px;
	background: #E2E6E7;
}
.testimonials-list .ornament::after
{
	position: absolute;
	content: "";
	border: 1px solid #E2E6E7;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	width: 11px;
	height: 11px;
	left: -6px;
	bottom: -13px;
}
.testimonials-list p
{
	font-family: 'Raleway';
	font-weight: 300;
	font-size: 21px;
	color: #FFFFFF;
	line-height: 36px;
	padding: 29px 50px 0;
	margin-top: 0;
}
.testimonials-list p::after
{
	display: block;
	content: "";
	background: #F4BC16;
	width: 40px;
	height: 2px;
	margin-top: 30px;
	margin-bottom: 34px;
	margin-left: auto;
	margin-right: auto;
}
.testimonials-list .author
{
	font-family: 'Raleway';
	font-weight: 500;
	font-size: 13px;
	color: #FFF;
	line-height: 20px;
}
.testimonials-list .author-details
{
	margin-top: 7px;
	font-family: 'Raleway';
	font-weight: 500;
	font-size: 11px;
	color: #FFF;
	line-height: 16px;
	letter-spacing: 1px;
}
.testimonials-container .re-carousel-pagination
{
	position: absolute;
	right: 0;
	top: -52px;
}
.testimonials-container .re-carousel-pagination a
{
	margin-top: 0;
}
.type-small .testimonials-list p
{
	font-size: 16px;
	line-height: 26px;
	color: #444;
	border: 1px solid #E2E6E7;
	padding: 33px 40px 37px;
}
.type-small .testimonials-list p::after
{
	content: none;
}
.type-small .testimonials-list .ornament
{
	float: left;
	margin-left: 44px;
	margin-right: 43px;
	height: 101px;
}
.type-small .testimonials-list .ornament::after
{
	background: #FFF;
	bottom: 0;
	top: -7px;
}
.type-small .testimonials-list .ornament::before
{
	position: relative;
	display: block;
	color: #F4BC16;
	background: #FFF;
	width: 48px;
	font-size: 48px;
	top: 26px;
	left: -44px;
	border: 1px solid #E2E6E7;
	padding: 19px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
body .type-small .testimonials-list .ornament.empty-circle
{
	height: 79px;
	margin-right: 6px;
}
body .type-small .testimonials-list .ornament.empty-circle::before
{
	content: "";
	width: 11px;
	height: 11px;
	top: 66px;
	left: -6px;
	padding: 0;
}
.type-small .testimonials-list .author-details-box
{
	float: left;
	margin-top: 50px;
	margin-left: 30px;
}
.type-small .testimonials-list .author
{
	color: #444;
}
.type-small .testimonials-list .author-details
{
	color: #999;
}
.vc_col-sm-6 .type-small .testimonials-list li,
.vc_col-sm-4 .type-small .testimonials-list li
{
	width: 570px;
	text-align: left;
	margin-right: 30px;
}
.vc_col-sm-4 .type-small .testimonials-list li
{
	width: 370px;
}
/* --- our clients --- */
.our-clients-list-container
{
	overflow: hidden;
	text-align: center;
}
.our-clients-list li
{
	float: left;
	width: 170px;
	height: 120px;
	margin-right: 30px;
}
.our-clients-list li img
{
	width: 100%;
	height: auto;
}
.our-clients-list.type-list li
{
	position: relative;
	margin-right: -1px;
	border: 1px solid #E2E6E7;
	width: 33%;
	height: 150px;
	text-align: center;
}
.our-clients-list.type-list li:nth-child(n+4)
{
	margin-top: -1px;
}
.our-clients-list.type-list .our-clients-item-container
{
	display: inline-block;
}
.our-clients-list.type-list li .vertical-align-cell
{
	text-align: center;
	height: 150px;
}
/* --- contact details --- */
.contact-details-box:before
{
	display: block;
	float: left;
	width: 48px;
	height: 48px;
	font-size: 48px;
	color: #F4BC16;
	background: #FFF;
	border: 1px solid #FFF;
	padding: 19px;
	margin-right: 30px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.contact-details-box h4
{
	color: #FFF;
}
.contact-details-box p
{
	font-family: 'Raleway';
	font-size: 16px;
	line-height: 26px;
	color: #FFF;
	padding: 1em 0;
	margin: 0;
}
.contact-details-box p a
{
	color: #FFF;
}
/* --- slider control --- */
.slider-control
{
	position: absolute;
	width: 26px;
	height: 26px;
	color: #FFF;
	border: 1px solid #E2E6E7;
	padding: 16px;
	left: 0;
	top: 43%;
	font-size: 24px;
	z-index: 1;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
}
.slider-control.right
{
	left: auto;
	right: 0;
	-moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
    -ms-filter: fliph;
    filter: fliph;
}
.slider-control:hover
{
	background: #F4BC16;
	border-color: #F4BC16;
}
/* --- parallax --- */
.re-parallax,
.re-parallax h2,
.re-parallax h4,
.re-parallax p,
.re-parallax .feature-item::before
{
	color: #FFF;
}
.re-parallax.cover
{
	background-size: cover;
}
/* --- counters --- */
span.number,
span.odometer.number
{
	margin-top: 10px;
	font-family: 'Raleway';
	font-weight: 100;
	font-size: 80px;
	color: #FFF;
	visibility: visible;
}
span.number:after,
span.odometer.number:after
{
	display: block;
	content: "";
	background: #F4BC16;
	width: 40px;
	height: 2px;
	margin: 20px auto 0;
}
/* --- blog --- */
.blog>li
{
	clear: both;
	float: left;
	margin-top: 70px;
}
.blog.two-columns>li,
.blog.three-columns>li
{
	clear: none;
	margin-top: 0;
}
.layout-column .blog.three-columns>li
{
	float: none;
	margin-top: 50px;
}
.blog.two-columns
{
	margin-top: 70px;
}
.blog.three-columns
{
	margin-top: 50px;
}
.blog>li:first-child,
.blog.small>li:first-child,
.blog.two-columns:first-child,
.blog.three-columns:first-child,
.layout-column .blog.three-columns>li:first-child
{
	margin-top: 0;
}
.blog .post-image,
.blog .post-content,
.blog .post-details,
.blog .post-content-details li
{
	float: left;
}
.blog .post-content h2,
.blog .post-content h3,
.blog.three-columns h4.box-header,
.blog.horizontal-carousel h4
{
	text-transform: uppercase;
}
.blog .post-content ol li,
.blog .post-content ul li
{
	padding-top: 3px;
	padding-bottom: 3px;
}
.blog .post-details
{
	width: 90px;
	margin-right: 30px;
	font-family: 'Raleway';
	font-weight: 500;
	font-size: 13px;
	color: #999;
	line-height: 20px;
}
.blog .post-details a
{
	color: #999;
}
.blog .post-content
{
	width: 750px;
}
.blog .post-content .re-preloader
{
	height: 300px;
}
.blog .post-content .row
{
	width: auto;
}
.blog.small .post-content
{
	width: 160px;
}
.blog .post-details li
{
	border-top: 1px solid #E2E6E7;
	border-right: 1px solid #E2E6E7;
	text-align: center;
	padding: 10px 0;
}
.blog .post-details li:first-child
{
	border-top: none;
}
.blog .post-details .date h2,
.blog .post-details li:before
{
	color: #F4BC16;
}
.blog .post-details li.date:before
{
	display: none;
}
.blog .post-details li:before
{
	display: block;
	margin-bottom: 2px;
	font-size: 14px;
}
.blog .post-content-details
{
	margin-bottom: 16px;
}
.blog  ul.post-content-details li
{
	font-family: 'Raleway';
	font-weight: 500;
	font-size: 13px;
	color: #999;
	line-height: 20px;
	margin-left: 10px;
	padding: 0;
}
.blog .post-content-details li:first-child
{
	margin-left: 0;
}
.blog .post-content-details li a
{
	color: #444;
}
.blog p
{
	margin-top: 34px;
}
.blog.horizontal-carousel p
{
	margin-top: 24px;
}
.blog .post-image
{
	width: 100%;
	margin-bottom: 25px;
}
.blog.small>li
{
	margin-top: 30px;
}
.blog.small .post-content a
{
	display: block;
	font-family: 'Raleway';
	font-size: 14px;
	color: #444444;
	line-height: 24px;
}
.blog.small .post-image
{
	width: auto;
	margin-bottom: 0;
	margin-right: 20px;
}
.blog.small li .post-details
{
	width: auto;
	clear: both;
	margin-top: 13px;
	margin-right: 0;
}
.blog.small li .post-details li
{
	text-align: left;
	padding: 0;
	border: none;
}
.vc_row .vc_col-sm-6 .blog .post-content,
.vc_row .blog .vc_col-sm-6 .post-content
{
	width: 450px;
}
.blog.three-columns .post-details
{
	width: 100%;
	margin-right: 0;
	border-bottom: 1px solid #E2E6E7;
	margin-bottom: 20px;
}
.blog.three-columns .post-details li
{
	float: left;
	border-top: none;
	padding: 10px 20px;
}
.blog.three-columns .post-details li:first-child
{
	padding-left: 0;
}
.blog.three-columns .post-details li:last-child
{
	border-right: none;
	padding-right: 0;
}
.blog.three-columns .post-details li::before,
.blog.three-columns .post-details li.date:before
{
	display: inline;
	margin-bottom: 0;
	margin-right: 10px;
}
.blog.three-columns .post-details li.date h2
{
	display: inline;
	margin: 0 2px;
	color: #999;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
}
.blog.three-columns .post-details li.date h2::after
{
	content: ",";
}
/* --- post carousel --- */
.caroufredsel-wrapper
{
	width: 100% !important;
    margin: 0 !important;
    overflow: hidden;
}
.blog.horizontal-carousel .post
{
	margin-left: 0;
	margin-right: 30px;
}
.horizontal-carousel
{
	display: none;
	transition: opacity 0.4s ease-in-out 0s;
}
.carousel-container
{
	position: relative;
	text-align: center;
}
.re-carousel-pagination
{
	display: block;
}
.re-carousel-pagination a
{
	display: inline-block;
	width: 1px;
	height: 1px;
	background: #E2E6E7;
	border: 5px solid #E2E6E7;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	margin-left: 10px;
	margin-top: 50px;
}
.re-carousel-pagination a:first-child
{
	margin-left: 0;
}
.re-carousel-pagination a.selected,
.re-carousel-pagination a:hover
{
	border-color: #F4BC16;
	background: #F4BC16;
}
.re-carousel-pagination span
{
	display: none;
}
/* --- single post --- */
.post.single blockquote, .post.single p, .post.single h3, .post.single h4
{
	margin-top: 24px;
}
.post.single p
{
	padding: 1em 0;
}
.post.single blockquote::before
{
	content: "u";
    height: 48px;
    line-height: 52px;
	font-family: "streamline-small" !important;
    font-style: normal !important;
    font-variant: normal !important;
    font-weight: normal !important;
    line-height: 1;
    text-transform: none !important;
    vertical-align: middle;
}
.post.single blockquote p
{
	padding: 0;
	margin: 0;
	font-size: 16px;
	line-height: 26px;
}
.post.single .post-content img
{
	max-width: 100%;
}
/* --- taxonomies --- */
.widget_categories ul,
.widget_archive ul,
.widget_tag_cloud .tagcloud
{
	margin-top: 30px;
}
.widget_categories li,
.widget_archive li,
.widget_tag_cloud a,
.taxonomies li
{
	float: left;
	margin-right: 7px;
	margin-bottom: 7px;
}
.widget_categories a,
.widget_archive a,
.widget_tag_cloud a,
.taxonomies a
{
	display: block;
	border: 1px solid #E2E6E7;
	color: #999;
	line-height: 16px;
	letter-spacing: 1px;
	font-family: 'Raleway';
	font-size: 11px;
	font-weight: 500;
	padding: 10px 12px;
	text-align: left;
	text-transform: uppercase;
}
.widget_tag_cloud a
{
	font-size: 11px !important;
}
.widget_categories a:hover,
.widget_archive a:hover,
.widget_tag_cloud a:hover,
.taxonomies a:hover
{
	color: #FFF;
	background: #F4BC16;
	border-color: #F4BC16;
}
.full-width>.widget_categories li,
.full-width>.widget_archive li,
.full-width>.widget_tag_cloud li,
.taxonomies.full-width li
{
	width: 100%;
	margin-right: 0;
}
.widget_categories a span,
.widget_archive a span,
.widget_tag_cloud a span,
.taxonomies a span
{
	float: right;
	margin-left: 5px;
}
/* --- buttons --- */
.buttons li
{
	margin-top: 10px;
}
.buttons li:first-child
{
	margin-top: 0;
}
.re-action-button
{
	display: block;
	background: #F5F5F5;
	padding: 18px 18px 18px 62px;
	font-family: 'Raleway';
	line-height: 24px;
	color: #444;
}
.re-action-button:before
{
	color: #F4BC16;
    float: left;
    font-size: 24px;
    margin-right: 19px;
	margin-left: -43px;
}
a.re-action-button.selected,
a.re-action-button:hover
{
	background: #F4BC16;
	color: #FFF;
}
a.re-action-button.selected:before,
a.re-action-button:hover:before
{
	color: #FFF;
}
/* --- announcement --- */
.announcement
{
	width: 100%;
	padding: 30px 0;
}
.vc_row.full-width>.vc_col-sm-12>.wpb_wrapper>.announcement
{
	width: 1170px;
	margin-left: auto;
	margin-right: auto;
}
.announcement .vertical-align-cell:before
{
	float: left;
	font-size: 48px;
	margin-right: 30px;
	color: #F4BC16;
	border: 1px solid #E2E6E7;
	padding: 19px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.announcement .vertical-align
{
	height: 88px;
}
.announcement  h3
{
	margin-left: 118px;
}
.announcement p.description
{
	margin-top: 14px;
	margin-left: 118px;
	/*white-space: nowrap;*/
}
.announcement .vc_row .vc_col-sm-3
{
	width: auto;
	float: right;
	margin-left: 0;
}
/* --- call to action --- */
.call-to-action
{
	border: 1px solid #E2E6E7;
	padding: 30px 18px 47px;
	text-align: center;
}
.call-to-action:before
{
	display: block;
	width: 48px;
	height: 48px;
	font-size: 48px;
	margin-right: 30px;
	color: #F4BC16;
	border: 1px solid #E2E6E7;
	padding: 19px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.call-to-action h4
{
	margin-top: 22px;
}
.call-to-action p
{
	margin-top: 17px;
	margin-bottom: 43px;
}
.call-to-action .more
{
	margin-top: 28px;
}
/* --- comment form, contact form --- */
.comment-form input,
.comment-form textarea,
.contact-form input,
.contact-form textarea
{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	width: 100%;
}
.comment-form input,
.contact-form input
{
	margin-top: 20px;
}
.comment-form .block:first-child input,
.contact-form .block:first-child input
{
	margin-top: 0;
}
.comment-form textarea,
.contact-form textarea
{
	height: 190px;
	resize: none;
}
.comment-form [type='submit'],
.contact-form [type='submit']
{
	width: auto;
	font-size: 12px;
	color: #25282a;
	margin-top: 0;
	outline: none;
}
#cancel-comment
{
	display: none;
	font-size: 12px;
	margin-right: 20px;
	color: #F4BC16;
}
.comment-form p,
.contact-form p
{
	margin-top: 14px;
}
.comment-form .hint,
.contact-form .hint
{
	color: #999;
}
::-webkit-input-placeholder
{
	color: #999;
}
:-moz-placeholder
{
	color: #999;
    opacity:  1;
}
::-moz-placeholder
{
	color: #999;
    opacity:  1;
}
:-ms-input-placeholder
{
	color: #999;
}
/* --- tooltip --- */
.ui-tooltip-error .ui-tooltip-content,
.ui-tooltip-success .ui-tooltip-content
{
	font-size: 13px;
	font-family: arial;
	color: #FFF;
}
.ui-tooltip-error .ui-tooltip-content,
.ui-tooltip-success .ui-tooltip-content
{
	border:none;
}
.ui-tooltip-content
{
	padding: 10px 20px 10px 20px;
}
.ui-tooltip-error .ui-tooltip-content
{
	background: #E9431C;
}
.ui-tooltip-success .ui-tooltip-content
{
	background: #61911B;
}
/* --- comments list --- */
.comment
{
	margin-top: 30px;
}
#comments-list>.comment:first-child
{
	margin-top: 40px;
}
.comment-author-avatar
{
    float: left;
	width: 90px;
    height: 90px;
}
.posted-by abbr,
.bypostauthor
{
	font-family: 'Raleway';
	color: #999;
	font-size: 13px;
	margin-top: 7px;
	font-weight: 500;
	line-height: 20px;
	border: none;
	text-decoration: none;
}
.posted-by .in-reply
{
	margin-left: 5px;
	color: #ABABAB;
}
#comments-list .comment-details
{
	float: left;
	width: 750px;
	margin-left: 30px;
}
#comments-list .comment-details p
{
	font-family: 'Raleway';
	font-size: 14px;
	line-height: 24px;
	border-bottom: 1px solid #E2E6E7;
	padding: 24px 0;
	margin-top: 0;
}
#comments-list .children
{
    clear: both;
    float: left;
    margin-left: 120px;
}
#comments-list .children .children
{
	margin-left: 0;
}
#comments-list .children .comment-details
{
	width: 630px;
}
#comments-list .comment-details .more
{
	float: right;
	color: #999;
	margin-top: -22px;
	font-weight: 500;
	font-size: 11px;
	line-height: 16px;
}
#comments-list .comment-details .more:hover
{
	color: #FFF;
}
/* --- pagination --- */
.pagination
{
	clear: both;
	float: right;
}
.pagination li
{
	font-family: 'Raleway';
	float: left;
	margin-left: 7px;
}
.pagination li:first-child
{
	margin-left: 0;
}
.pagination li a,
.pagination li span
{
	display: block;
    color: #999;
    font-size: 16px;
	width: 35px;
    padding: 9px 0 10px;
	border: 1px solid #E2E6E7;
	text-align: center;
}
.pagination li a:hover,
.pagination li.selected a,
.pagination li.selected span,
.pagination.post-pagination span,
.pagination.post-pagination a:hover span
{
	color: #FFF;
	background-color: #F4BC16;
	border-color: #F4BC16;
}
.pagination.post-pagination a span
{
	color: #999;
	background: #FFF;
	padding: 0;
	border: none;
}
/* --- list bullet --- */
.list li
{
	list-style: none;
	padding-top: 3px;
	padding-bottom: 3px;
	font-family: 'Raleway';
	font-size: 14px;
	line-height: 24px;
	padding-left: 30px;
	border: none;
}
.list li a
{
	color: #F4BC16;
	font-weight: 600;
}
li.template-bullet:before
{
	color: #F4BC16;
	padding-right: 15px;
	margin-left: -30px;
	vertical-align: text-top;
}
/* --- tabs navigation --- */
.ui-tabs-nav
{
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	box-sizing: content-box;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	background: none;
	border: none;
	text-align: center;
}
.tabs.align-left .ui-tabs-nav
{
	text-align: left;
}
.tabs.align-left .ui-tabs-panel
{
	text-align: left;
}
.ui-tabs-nav li
{
	position: relative;
	display: inline-block;
	padding: 0;
	border: none;
	list-style: none;
	text-align: center;
	margin-left: 30px;
}
.ui-tabs-nav li:first-child
{
	margin-left: 0;
}
.small.gray .ui-tabs-nav li a
{
	background: #F5F5F5;
}
.small .ui-tabs-nav li
{
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 0
}
.small .ui-tabs-nav li a,
.small .ui-tabs-nav li a.none
{
	min-width: 0;
	padding: 15px 20px;
}
.ui-tabs-nav a:before
{
	display: block;
	margin-left: auto;
	margin-right: auto;
	font-size: 48px;
	color: #F4BC16;
	padding: 20px 20px 12px;
}
.ui-tabs-nav li a
{
	display: block;
	min-width: 180px;
	text-align: center;
	font-size: 14px;
	color: #444;
	background: #FFF;
	padding: 10px 0 23px;
	border: none;
	font-family: 'Raleway';
	line-height: 24px;
	outline: none;
	text-decoration: none;
}
.ui-tabs-nav li a.none
{
	padding: 23px 0;
}
.ui-tabs-nav li:last-child a
{
	border-right: none;
}
.ui-tabs-nav li a:hover,
.ui-tabs-nav li a.selected,
.ui-tabs-nav li.ui-tabs-active a,
.small.gray .ui-tabs-nav li a:hover,
.small.gray .ui-tabs-nav li a.selected,
.small.gray .ui-tabs-nav li.ui-tabs-active a
{
	background: #F4BC16;
	color: #FFF;
}
.ui-tabs-nav li a:hover:before,
.ui-tabs-nav li a.selected:before,
.ui-tabs-nav li.ui-tabs-active a:before
{
	color: #FFF;
}
.ui-tabs-nav li.ui-tabs-active:after
{
	content: "";
	display: inline;
	position: absolute;
	border-style: solid;
	border-width: 9px 9px 0;
	border-color: #F4BC16 transparent;
	bottom: -9px;
	margin-left: -9px;
}
.small .ui-tabs-nav li.ui-tabs-active:after
{
	display: none;
}
.tabs .ui-tabs-panel
{
	text-align: center;
	padding: 42px 0 0;
}
.small .ui-tabs-panel
{
	padding: 0;
}
.tabs .ui-tabs-panel p
{
	font-family: 'Raleway';
	font-size: 14px;
	line-height: 24px;
	padding: 34px 0 0;
	margin-top: 0;
}
.small .ui-tabs-panel p
{
	padding: 24px 0 0;
	margin: 0;
}
.tabs .ui-tabs-panel h4.box-header:after
{
	margin-left: auto;
	margin-right: auto;
}
/* --- accordion --- */
.accordion .ui-accordion-content
{
	padding: 30px 0 20px;
}
.accordion .ui-accordion-header
{
	padding: 16px 15px;
	cursor: pointer;
	border-bottom: 1px solid #E2E6E7;
	font-family: 'Raleway';
	line-height: 24px;
	transition: padding-left 300ms, padding-right 300ms;
	-webkit-transition: padding-left 300ms, padding-right 300ms;
	-moz-transition: padding-left 300ms, padding-right 300ms;
	transition-timing-function: ease;
	-webkittransition-timing-function: ease;
	-mozkittransition-timing-function: ease;
}
.accordion .ui-accordion-header h3
{
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: normal;
	margin-top: 2px;
	margin-bottom: 1px;
	margin-left: 39px;
}
.accordion .ui-accordion-header.ui-state-active
{
	background-color: #F4BC16;
	border-bottom-color: #F4BC16;
}
.accordion .ui-accordion-header.ui-state-active h3
{
	color: #FFF;
}
.accordion .ui-accordion-header.ui-state-active .ui-accordion-header-icon
{
	color: #FFF;
}
.accordion  .ui-accordion-header .ui-accordion-header-icon
{
	float: left;
	margin-right: 15px;
	font-size: 24px;
	color: #F4BC16;
	text-indent: 0;
}
.accordion  .ui-accordion-header:hover
{
	padding-left: 25px;
	padding-right: 5px;
}
.accordion  .ui-accordion-header.ui-state-active:hover
{
	padding: 16px 15px;
}
.accordion p:first-child
{
	margin: 0;
}
.accordion .list li
{
	border: none;
}
/* --- preloader --- */
.re-preloader
{
	display: block;
	height: auto;
	min-height: 20px;
	background: url('/wp-content/themes/renovate/images/preloader.gif?x21533') no-repeat center center;
}
.blog .post-content>a>img,
.blog.three-columns li>a>img,
.post.single .post-image img,
.services-list a>img,
.team-box img,
.projects-list a>img,
.our-clients-list,
.re-preload>img,
.wpb_single_image img
{
	display: none;
}
.blog.horizontal-carousel.three-columns li>a>img,
.our-clients-list.type-list
{
	display: block;
}
.projects-list.isotope li>a,
.projects-list.isotope a>img
{
	display: block;
	width: 270px;
	height: 180px;
}
.re-preload .re-preloader
{
	height: 200px;
}
/* --- contact details --- */
.header-top-bar .contact-details
{
	float: left;
}
.contact-details li
{
	float: left;
	border-right: 1px solid #E2E6E7;
	font-family: 'Raleway';
	font-weight: 500;
	font-size: 13px;
	color: #999999;
	line-height: 20px;
	padding: 15px 20px;
}
.contact-details li a
{
	color: #999;
}
.contact-details li:first-child
{
	border-left: 1px solid #E2E6E7;
}
.contact-details li:before
{
	font-size: 14px;
	margin-right: 10px;
}
/* --- social icons --- */
.social-icons
{
	list-style: none;
	padding: 0;
}
.social-icons li
{
	float: left;
	width: auto;
	padding: 0;
	border-right: 1px solid #E2E6E7;
}
.social-icons li:first-child
{
	border-left: 1px solid #E2E6E7;
}
.social-icons a
{
	display: block;
	color: #AAA;
}
.social-icons a:hover
{
	color: #444;
}
.social-icons a:before
{
	font-size: 14px;
}
.header-top-bar .social-icons
{
	float: right;
}
.social-icons li a
{
	padding: 17px;
}
.social-icons.yellow li
{
	background: #F4BC16;
	border: 2px solid #F4BC16;
	margin-left: 1px;
}
.social-icons.yellow li:hover
{
	background: transparent;
}
.social-icons.yellow li a
{
	padding: 15px 16px;
	height: 16px
}
.social-icons.yellow li a:before
{
	color: #FFF;
}
.social-icons.yellow li a:hover:before
{
	color: #000;
}
.social-icons.yellow li:first-child
{
	margin-left: 0;
}
/* --- search --- */
.header-top-bar .search-container
{
	float: right;
	position: relative;
}
.header-top-bar .template-search
{
	display: block;
	font-size: 14px;
	padding: 17px;
	border-right: 1px solid #E2E6E7;
	color: #AAA;
}
.template-search:hover
{
	color: #444;
}
.search-form
{
	position: absolute;
	display: none;
	width: 179px;
	right: 0;
	padding: 12px 10px;
	margin-top: 5px;
	background: #F5F5F5;
	z-index: 99;
}
.search-form .search-input
{
	float: left;
	width: 91px;
	color: #444;
	font-size: 14px;
	background: #FFF;
	border: 1px solid #E2E6E7;
	margin: 0;
	padding: 12px 14px 12px 12px;
}
.search-form .search-input.hint
{
	color: #858d94;
}
.search-form .search-input::-webkit-input-placeholder
{
	color: #858d94;
}
.search-form .search-input:-moz-placeholder
{
	color: #858d94;
    opacity:  1;
}
.search-form .search-input::-moz-placeholder
{
	color: #858d94;
    opacity:  1;
}
.search-form .search-input:-ms-input-placeholder
{
	color: #858d94;
}
.search-form .search-submit-container
{
	position: relative;
	float: right;
}
.header-top-bar .search-form .template-search
{
	padding: 18px 18px 17px 18px;
	border: none;
}
.search-form .search-submit-container:hover .template-search
{
	color: #444;
}
.search-form .search-submit
{
	position: absolute;
	width: 50px;
	height: 50px;
	background: none;
	padding: 0;
	top: 0;
	left: 0;
	cursor: pointer;
}
/* --- ui slider --- */
.ui-slider
{
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle
{
	position: absolute;
	z-index: 2;
	cursor: default;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-slider .ui-slider-range
{
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}
/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range
{
	filter: inherit;
}
.ui-slider-horizontal .ui-slider-handle
{
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range
{
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min
{
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max
{
	right: 0;
}
/* --- ui dropdown --- */
/* right-aligned */
.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}
.ui-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	/* Support: IE7 */
	overflow-x: hidden;
	padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5;
	padding: 2px 0.4em;
	margin: 0.5em 0 0 0;
	height: auto;
	border: 0;
}
.ui-selectmenu-open {
	display: block;
}
.ui-selectmenu-button {
	display: inline-block;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	cursor: pointer;
}
.ui-selectmenu-button span.ui-icon
{
	right: 0;
	position: absolute;
	text-indent: 0;
}
.ui-selectmenu-button span.ui-selectmenu-text
{
	text-align: left;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
/* --- cost calculator --- */
.cost-calculator-box
{
	padding: 30px;
	background: #F5F5F5;
	margin-top: 1px;
}
.vc_row .vc_col-sm-8 .cost-calculator-box .vc_col-sm-6
{
	width: 340px;
}
.cost-calculator-box:before
{
	float: left;
	font-size: 48px;
	margin-right: 30px;
	color: #F4BC16;
	border: 1px solid #E2E6E7;
	padding: 19px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.cost-calculator-box:first-child
{
	margin-top: 0;
}
.cost-calculator-box label
{
	float: left;
	font-family: 'Raleway';
	font-size: 14px;
	line-height: 24px;
	border-left: 4px solid #F4BC16;
	padding: 14px 0 12px 15px;
}
.cost-calculator-box .cost-slider-container
{
	float: right;
	margin-left: 30px;
}
.cost-calculator-box input
{
	float: right;
	width: 40px;
	margin-left: 30px;
	margin-top: 0;
	box-sizing: content-box;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
}
.cost-calculator-box input.big
{
	width: 370px;
}
.cost-calculator-box .checkbox-label
{
	float: right;
	border: 1px solid #E2E6E7;
	background: #FFF;
	padding: 1px 7px 4px;
	margin-top: 9px;
	cursor: pointer;
}
.cost-calculator-box .checkbox-label:before
{
	color: #FFF;
}
.cost-calculator-box input[type="checkbox"]
{
	display: none;
}
.cost-calculator-box input[type="checkbox"]:checked+.checkbox-label:before
{
	color: #F4BC16;
}
.cost-calculator-box.cost-calculator-contact input
{
	width: 100%;
	margin-top: 20px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.cost-calculator-box.cost-calculator-contact .block:first-child input
{
	margin-top: 0;
}
.cost-calculator-box.cost-calculator-contact input[type='submit']
{
	width: auto;
	margin-top: 0;
}
.cost-calculator-sum
{
	text-align: right;
	margin-top: 10px;
}
.contact-form .cost-calculator-box p
{
	margin-top: 14px;
	padding: 0;
}
.cost-calculator-price
{
	font-family: 'Raleway';
	font-weight: 300;
	font-size: 40px;
	color: #F4BC16;
}
.ui-slider
{
	float: right;
	width: 300px;
	margin-top: 20px;
	background-color: #E2E6E7;
	border-radius: 5px;
}
.ui-slider-horizontal
{
	height: 10px;
}
.ui-slider .ui-slider-handle
{
	cursor: pointer;
	width: 28px;
	height: 28px;
	top: -10px;
	border: 1px solid #E2E6E7;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	background: #FFF;
}
.ui-slider-handle:after
{
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	margin-left: 9px;
	margin-top: 9px;
	background: #F4BC16;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.ui-slider-handle .cost-slider-tooltip
{
	position: absolute;
	min-width: 50px;
	left: -11px;
	top: 35px;
}
.ui-slider-handle .cost-slider-tooltip .value
{
	width: 100%;
	font-family: 'Raleway';
	color: #FFF;
	background: #F4BC16;
	padding: 12px 0;
	text-align: center;
}
.ui-slider-handle .cost-slider-tooltip .arrow
{
	width: 100%;
	height: 8px;
	text-align: center;
}
.ui-slider-handle .cost-slider-tooltip .arrow:before
{
	content: "";
	border-color: #F4BC16 transparent;
    border-style: solid;
    border-width: 0 8px 8px;
	margin-left: -8px;
    display: inline;
    position: absolute;
}
.ui-slider-range-min
{
	background: #F4BC16;
	border-radius: 5px;
}
.ui-selectmenu-button
{
	float: right;
	font-family: 'Raleway';
	border: 1px solid #E2E6E7;
	margin: 0;
	background: #FFF;
}
.ui-selectmenu-button span.ui-selectmenu-text
{
	padding: 12px 40px 12px 15px;
	line-height: 24px;
	font-size: 14px;
	color: #444;
}
.ui-selectmenu-button .ui-icon
{
	color: #444;
	border-left: 1px solid #E2E6E7;
	padding: 16px 12px 17px;
}
.ui-selectmenu-button.ui-corner-top .ui-icon,
.ui-selectmenu-button:hover .ui-icon
{
	color: #F4BC16;
}
.ui-selectmenu-menu
{
	z-index: 2;
}
.ui-selectmenu-menu .ui-menu
{
	border: 1px solid #E2E6E7;
	border-top: none;
	max-height: 204px;
}
.ui-selectmenu-menu .ui-menu li
{
	font-family: 'Raleway';
	cursor: pointer;
	background: #FFF;
	color: #444;
	border-top: 1px solid #E2E6E7;
	padding: 13px 15px;
}
.ui-selectmenu-menu .ui-menu li:first-child
{
	border-top: 0;
}
.ui-selectmenu-menu .ui-menu li.ui-state-focus
{
	color: #F4BC16;
}
/* --- buttons --- */
.more,
.more[type="submit"]
{
	color: #FFF;
	font-family: 'Raleway';
	font-size: 12px;
	font-weight: 700;
	background: #F4BC16;
	padding: 16px 23px 15px;
	text-align: center;
	cursor: pointer;
	line-height: normal;
	letter-spacing: 1px;
	border-radius: 999px;
	-moz-border-radius: 999px;
	-webkit-border-radius: 999px;
	transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	border: 2px solid #F4BC16;
}
.more:hover,
.more[type="submit"]:hover
{
	color: #000;
	background: transparent;
	opacity: 1;
}
.more.simple
{
	background: transparent;
	color: #FFF;
	border: 1px solid #E2E6E7;
	padding: 17px 24px 16px;
	transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
}
.more.simple:hover
{
	border-color: #F4BC16;
	background: #F4BC16;
}
.more.small
{
	padding: 12px 19px 11px;
}
/* --- copyright row --- */
.copyright
{
	color: #999;
	font-family: 'Raleway';
	line-height: 24px;
}
.copyright a
{
	color: #444;
}
/* --- prettyPhoto --- */
/*div.pp_default .pp_nav
{
	margin-top: 9px;
}
div.pp_default .pp_close
{
	margin-top: 7px;
}*/
div.pp_default .pp_content_container .pp_left,
div.pp_default .pp_content_container .pp_right,
div.pp_default .pp_top .pp_left,
div.pp_default .pp_top .pp_middle,
div.pp_default .pp_top .pp_right,
div.pp_default .pp_bottom .pp_left,
div.pp_default .pp_bottom .pp_middle,
div.pp_default .pp_bottom .pp_right
{
	background: none;
	padding: 0;
}
div.pp_default .pp_content, div.light_rounded .pp_content
{
	padding: 10px;
}
div.pp_default .pp_description
{
	display: block !important;
	font-size: 12px;
	color: #7C7C7C;
	padding: 1em 0;
}
div.pp_default .pp_close
{
	margin-top: 8px;
	background: url("/wp-content/themes/renovate/images/close.png?x21533") 0 0 no-repeat;
}
div.pp_default .pp_close:hover
{
	opacity: 1;
	background-position: 0 -30px;
}
/* --- map --- */
#map
{
	width: 100%;
	height: 450px;
}
/* --- slider revolution container --- */
.revolution-slider-container
{
	width: 100%;
	position: relative;
	padding: 0;
}
.revolution-slider
{
	width: 100%;
	height: 600px;
	position: relative;
	background: #F5F5F5;
}
/* --- slider revolution label --- */
.slider-content-box
{
	width: 460px;
	max-height: auto;
	white-space: normal;
	background: rgba(38, 38, 40, 0.7);
	padding-bottom: 47px;
}
.slider-content-box h2
{
	color: #FFF;
	border-bottom: 1px solid #F4BC16;
	padding: 21px 30px 20px;
	background: rgba(38, 38, 40, 0.68);
}
.slider-content-box h2 a
{
	color: #FFF;
}
.slider-content-box h2 a:hover
{
	text-decoration: underline;
	opacity: 1;
}
.slider-content-box p
{
	font-family: 'Raleway';
	font-size: 16px;
	font-weight: 400;
	color: #FFF;
	line-height: 26px;
	padding: 23px 30px 40px;
	margin-top: 0;
}
.slider-content-box .more
{
	margin-left: 30px;
}
.tp-caption a:hover
{
	color: #FFF !important;
}
/* --- slider revolution navigation arrows --- */
.rev_slider .tparrows
{
	width: 40px;
	height: 100px;
	background: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}
.rev_slider .tparrows::before,
.rev_slider .tparrows.tp-leftarrow::before,
.rev_slider .tparrows.tp-rightarrow::before
{
	content: none;
	display: none;
}
.rev_slider .tparrows::after
{
	font-family: "template" !important;
	font-size: 24px;
	position: absolute;
	left: 0px;
	top: 0px;
	color: #FFF;
	width: 40px;
	height: 100px;
	text-align: center;
	background: rgba(0, 0, 0, 0.15);
	z-index: 2;
	line-height: 100px;
	-webkit-transition: background 0.2s, color 0.2s;
	-moz-transition: background 0.2s, color 0.2s;
	transition: background 0.2s, color 0.2s;
}
.rev_slider .tp-rightarrow::after
{
	content: 'a';
	right: 0;
	-moz-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	transform: scaleX(-1);
	-ms-filter: fliph;
	filter: fliph;
}
.rev_slider .tp-leftarrow::after
{
	content: 'a';
}
.rev_slider .tparrows:hover::after
{
	background: #FFF;
	color: #666;
}
.rev_slider .tparrows .tp-arr-allwrapper
{
	display: none;
}
/* --- slider revolution navigation bullets --- */
.rev_slider .tp-bullets
{
	height: 12px !important;
}
.rev_slider .tp-bullets .tp-bullet
{
	background: rgba(0, 0, 0, 0.15) none repeat scroll 0 0;
    border: 8px solid rgba(0, 0, 0, 0);
	transition: background-color 0.2s ease 0s, border-color 0.2s ease 0s;
	-webkit-transition: background-color 0.2s ease 0s, border-color 0.2s ease 0s;
	-moz-transition: background-color 0.2s ease 0s, border-color 0.2s ease 0s;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	width: 11px !important;
	height: 11px !important;
	border: none !important;
	margin-right: 10px !important;
	margin-bottom: 0px !important;

}
.rev_slider .tp-bullets .tp-bullet:hover,
.rev_slider .tp-bullets .tp-bullet.selected
{
	background: #FFF !important;
	width: 11px !important;
	height: 11px !important;
	border: none !important;
}
/* --- misc --- */
.scroll-top.animated-element
{
	position: fixed;
	visibility: hidden;
	display: block;
	width: 50px;
	padding: 13px 0;
	background: rgba(38,38,40,0.4);
	right: 30px;
	bottom: 30px;
	text-align: center;
	z-index: 2;
}
.scroll-top:before
{
	font-size: 24px;
	color: #FFF;
}
.scroll-top:hover
{
	background: #F4BC16;
}
.header h1 a,
.sf-menu a:hover,
.social-icons a:hover,
.header-top-bar .template-search:hover,
.header-top-bar-container .header-toggle:hover,
.slider-control:hover,
.more:hover,
a.re-action-button:hover,
.vertical-menu li a:hover,
.buttons li a:hover,
.ui-tabs-nav li a:hover,
.ui-tabs-nav li a:focus,
.ui-tabs-nav li a:active,
.widget_categories a:hover,
.widget_archive a:hover,
.widget_tag_cloud a:hover,
.taxonomies a:hover,
.pagination li a:hover,
.scroll-top:hover
{
	text-decoration: none;
}
input, textarea
{
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-webkit-appearance: none;
}
input[type='checkbox']
{
	-webkit-appearance: checkbox;
}
input[type='radio']
{
	-webkit-appearance: radio;
}
:focus
{
	outline:none;
}
::-moz-focus-inner
{
	border:0;
}
body.lock-position
{
	position: fixed;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
ol ol,
ul ul
{
	padding-left: 10px;
	list-style: inside;
}
ol
{
	list-style: inside decimal;
}
ol ol
{
	list-style-type: lower-alpha;
}
cite
{
	font-style: italic;
}
code
{
	color: #7B7B7B;
	overflow-y: auto;
	margin: 5px 0px 5px 0px;
	font: 13px "Courier New";
	border: solid 1px #E1E5E9;
	line-height: 19px;
	text-shadow: 0px 1px 0px #FFFFFF;
}
kbd
{
	font: 13px "Courier New";
}
q:before,
q:after
{
	content: "\"";
}
.pagination,
.blog .post-details,
.blog .post-content-details,
.mobile-menu ul,
.comments-list-container .children
{
	list-style: none;
	padding: 0;
}
/* --- visual composer --- */
/*.wpb_row *,
.wpb_row *:before,
.wpb_row *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}*/
.wpb_row:before,
.wpb_row:after
{
  content: " ";
  display: table;
}
.wpb_row:after
{
  clear: both;
}
.vc_row .vc_column_container > .vc_column-inner
{
	padding: 0;
}
body .vc_row
{
	margin-left: 0;
	margin-right: 0;
}
.site-container .wpb_row
{
	margin-bottom: 0;
}
.wpb_widgetised_column .widget:first-child
{
	margin-top: 0;
}
.wpb_widgetised_column,
.wpb_content_element, ul.wpb_thumbnails-fluid > li, .last_toggle_el_margin, .wpb_button
{
	margin-bottom: 0 !important;
}
.wpb_widgetised_column .wpb_wrapper > ul
{
	padding: 0;
}
.wpb_text_column.margin-top-0 p
{
	margin-top: 0;
}
.vc_row-fluid .wpb_column.page_left
{
	float: left;
    width: 630px;
}
.vc_row-fluid .wpb_column.page_right
{
	float: right;
    width: 330px;
	margin: 0;
}
.wpb_separator.wpb_content_element,
.vc_text_separator.wpb_content_element
{
	border-color: #E0E0E0;
	margin-bottom: 0;
	height: auto;
}
.vc_text_separator.wpb_content_element
{
	position: static;
	top: 0;
}
.wpb_single_image a
{
	display: block;
}
.wpb_single_image figure.vc_figure
{
	display: block;
}
.vc_row-fluid [class*="vc_col-sm"]
{
	float: left;
	margin-left: 30px;
	min-height: auto;
	padding-left: 0;
	padding-right: 0;
}
.vc_row-fluid [class*="vc_col-sm"]:first-child ,
.vc_row-fluid .vc_container-anchor+[class*="vc_col-sm"]
{
	margin-left: 0;
}
.vc_row .vc_col-sm-12
{
	width: 100%;
}
.vc_row .vc_col-sm-10
{
	width: 820px;
}
.vc_row .vc_col-sm-9
{
	width: 870px;
}
.vc_row .vc_col-sm-8
{
	width: 770px;
}
.vc_row .vc_col-sm-6
{
	width: 570px;
}
.vc_row .vc_col-sm-4
{
	width: 370px;
}
.vc_row .vc_col-sm-3
{
	width: 270px;
}
.vc_row .vc_col-sm-2
{
	width: 170px;
}
/*.wpb_content_element .accordion.ui-accordion .ui-accordion-header
{
	background-color: transparent;
}*/
/* --- vc layouts --- */
.vc_col-sm-8 .vc_col-sm-6
{
	width: 330px;
}
.vc_col-sm-8 .vc_col-sm-4
{
	width: 210px;
}
/* --- progress bars --- */
body .vc_progress_bar .vc_single_bar
{
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	box-shadow: none;
	background: #E2E6E7;
}
body .vc_progress_bar.wpb_content_element .vc_general.vc_single_bar .vc_label
{
	font-family: "Raleway";
	font-size: 14px;
	color: #444;
	text-shadow: none;
	height: 10px;
	bottom: -29px;
	padding: 0;
}
body .vc_progress_bar .vc_single_bar,
body .vc_progress_bar .vc_single_bar:last-child
{
	margin-bottom: 64px;
}
body .vc_progress_bar .vc_single_bar .vc_bar
{
	background: #F4BC16;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-moz-transition: width 1s ease 0s;
	-webkit-transition: width 1s ease 0s;
	transition: width 1s ease 0s;
}
.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_grey .vc_bar, .vc_progress_bar.vc_progress-bar-color-bar_grey .vc_single_bar .vc_bar
{
	background-color: #D0D0D0;
}
.vc_label_units
{
	float: right;
	color: #999;
}
/* --- WordPress Core --- */
.alignnone
{
    margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter
{
    display: block;
    margin: 5px auto 5px auto;
}
.alignright
{
    float: right;
    margin: 5px 0 20px 20px;
}
.alignleft
{
    float: left;
    margin: 5px 20px 20px 0;
}
.aligncenter
{
    display: block;
    margin: 5px auto 5px auto;
}
a img.alignright
{
    float: right;
    margin: 5px 0 20px 20px;
}
a img.alignnone
{
    margin: 5px 20px 20px 0;
}
a img.alignleft
{
    float: left;
    margin: 5px 20px 20px 0;
}
a img.aligncenter
{
    display: block;
    margin-left: auto;
    margin-right: auto
}
.wp-caption
{
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}
.wp-caption.alignnone
{
    margin: 5px 20px 20px 0;
}
.wp-caption.alignleft
{
    margin: 5px 20px 20px 0;
}
.wp-caption.alignright
{
    margin: 5px 0 20px 20px;
}
.wp-caption img
{
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}
.wp-caption p.wp-caption-text
{
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}
.sticky
{
}
.gallery-caption
{
}
.rs-update-notice-wrap
{
	display: none !important;
}



/* ==============
Beyond Web Style Updates
============== */



/* === Location Template Pages ===*/

/* ------ Hero Section ------*/

 .page-electrician-manly .vc_row.wpb_row.vc_row-fluid.gray.full-width.page-header.vertical-align-table,
 .page-electrician-north-sydney .vc_row.wpb_row.vc_row-fluid.gray.full-width.page-header.vertical-align-table,
 .page-electrician-dee-why .vc_row.wpb_row.vc_row-fluid.gray.full-width.page-header.vertical-align-table,
 .page-electrician-frenchs-forest .vc_row.wpb_row.vc_row-fluid.gray.full-width.page-header.vertical-align-table,
 .page-electrician-mona-vale .vc_row.wpb_row.vc_row-fluid.gray.full-width.page-header.vertical-align-table,
 .page-electrician-neutral-bay .vc_row.wpb_row.vc_row-fluid.gray.full-width.page-header.vertical-align-table,
 .page-electrician-chatswood .vc_row.wpb_row.vc_row-fluid.gray.full-width.page-header.vertical-align-table,
 .page-electrician-lane-cove .vc_row.wpb_row.vc_row-fluid.gray.full-width.page-header.vertical-align-table,
 .page-electrician-mosman .vc_row.wpb_row.vc_row-fluid.gray.full-width.page-header.vertical-align-table,
 .page-electrician-turramurra .vc_row.wpb_row.vc_row-fluid.gray.full-width.page-header.vertical-align-table {
	 display: none;
}
 .page-electrician-manly .location-hero.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container, .page-electrician-north-sydney .location-hero.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container, .page-electrician-dee-why .location-hero.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container, .page-electrician-frenchs-forest .location-hero.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container, .page-electrician-mona-vale .location-hero.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container, .page-electrician-neutral-bay .location-hero.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container, .page-electrician-chatswood .location-hero.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container, .page-electrician-lane-cove .location-hero.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container, .page-electrician-mosman .location-hero.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container, .page-electrician-turramurra .location-hero.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container {
	 justify-content: center;
}
 .page-electrician-manly .location-hero, .page-electrician-north-sydney .location-hero, .page-electrician-dee-why .location-hero, .page-electrician-frenchs-forest .location-hero, .page-electrician-mona-vale .location-hero, .page-electrician-neutral-bay .location-hero, .page-electrician-chatswood .location-hero, .page-electrician-lane-cove .location-hero, .page-electrician-mosman .location-hero, .page-electrician-turramurra .location-hero {
	 position: relative;
	 text-align: center;
	 background-attachment: fixed;
	 background-size: cover;
}
 .page-electrician-manly .location-hero:before, .page-electrician-north-sydney .location-hero:before, .page-electrician-dee-why .location-hero:before, .page-electrician-frenchs-forest .location-hero:before, .page-electrician-mona-vale .location-hero:before, .page-electrician-neutral-bay .location-hero:before, .page-electrician-chatswood .location-hero:before, .page-electrician-lane-cove .location-hero:before, .page-electrician-mosman .location-hero:before, .page-electrician-turramurra .location-hero:before {
	 content: '';
	 display: block !important;
	 position: absolute;
	 z-index: 2;
	 top: 0;
	 bottom: 0;
	 left: 0;
	 right: 0;
	 width: 100%;
	 height: 100%;
	 opacity: 1;
	 background: #121719;
	 background: -moz-linear-gradient(0deg, #121719 0%, rgba(35, 61, 80, 0.5) 100%);
	 background: -webkit-linear-gradient(0deg, #121719 0%, rgba(35, 61, 80, 0.5) 100%);
	 background: linear-gradient(0deg, #121719 0%, rgba(35, 61, 80, 0.5) 100%);
	 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#121719",endColorstr="#233d50",GradientType=1);
}
 .page-electrician-manly .location-hero .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-north-sydney .location-hero .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-dee-why .location-hero .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-frenchs-forest .location-hero .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-mona-vale .location-hero .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-neutral-bay .location-hero .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-chatswood .location-hero .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-lane-cove .location-hero .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-mosman .location-hero .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-turramurra .location-hero .wpb_column.vc_column_container.vc_col-sm-12 {
	 position: relative;
	 z-index: 2;
}
 .page-electrician-manly .location-hero h1, .page-electrician-north-sydney .location-hero h1, .page-electrician-dee-why .location-hero h1, .page-electrician-frenchs-forest .location-hero h1, .page-electrician-mona-vale .location-hero h1, .page-electrician-neutral-bay .location-hero h1, .page-electrician-chatswood .location-hero h1, .page-electrician-lane-cove .location-hero h1, .page-electrician-mosman .location-hero h1, .page-electrician-turramurra .location-hero h1 {
	 color: #fff;
	 font-weight: 700;
	 font-size: 1.75rem;
	 line-height: 2rem;
}
 .page-electrician-manly .location-hero p, .page-electrician-north-sydney .location-hero p, .page-electrician-dee-why .location-hero p, .page-electrician-frenchs-forest .location-hero p, .page-electrician-mona-vale .location-hero p, .page-electrician-neutral-bay .location-hero p, .page-electrician-chatswood .location-hero p, .page-electrician-lane-cove .location-hero p, .page-electrician-mosman .location-hero p, .page-electrician-turramurra .location-hero p {
	 color: #fff;
	 font-weight: 500;
	 font-size: 1rem;
	 line-height: 1.25;
	 margin-bottom: 2rem !important;
}
 .page-electrician-manly a.more, .page-electrician-north-sydney a.more, .page-electrician-dee-why a.more, .page-electrician-frenchs-forest a.more, .page-electrician-mona-vale a.more, .page-electrician-neutral-bay a.more, .page-electrician-chatswood a.more, .page-electrician-lane-cove a.more, .page-electrician-mosman a.more, .page-electrician-turramurra a.more {
	 font-size: 1rem;
	 text-transform: uppercase;
}
 .page-electrician-manly a.more:hover, .page-electrician-north-sydney a.more:hover, .page-electrician-dee-why a.more:hover, .page-electrician-frenchs-forest a.more:hover, .page-electrician-mona-vale a.more:hover, .page-electrician-neutral-bay a.more:hover, .page-electrician-chatswood a.more:hover, .page-electrician-lane-cove a.more:hover, .page-electrician-mosman a.more:hover, .page-electrician-turramurra a.more:hover {
	 color: #8dc63f !important;
}
 @media only screen and (min-width: 768px) {
	 .page-electrician-manly .location-hero h1, .page-electrician-north-sydney .location-hero h1, .page-electrician-dee-why .location-hero h1, .page-electrician-frenchs-forest .location-hero h1, .page-electrician-mona-vale .location-hero h1, .page-electrician-neutral-bay .location-hero h1, .page-electrician-chatswood .location-hero h1, .page-electrician-lane-cove .location-hero h1, .page-electrician-mosman .location-hero h1, .page-electrician-turramurra .location-hero h1 {
		 font-size: 3rem;
		 line-height: 3.5rem;
	}
	 .page-electrician-manly .location-hero p, .page-electrician-north-sydney .location-hero p, .page-electrician-dee-why .location-hero p, .page-electrician-frenchs-forest .location-hero p, .page-electrician-mona-vale .location-hero p, .page-electrician-neutral-bay .location-hero p, .page-electrician-chatswood .location-hero p, .page-electrician-lane-cove .location-hero p, .page-electrician-mosman .location-hero p, .page-electrician-turramurra .location-hero p {
		 font-size: 1.5rem;
		 line-height: 1.25;
		 margin-bottom: 3rem !important;
	}
	 .page-electrician-manly a.more, .page-electrician-north-sydney a.more, .page-electrician-dee-why a.more, .page-electrician-frenchs-forest a.more, .page-electrician-mona-vale a.more, .page-electrician-neutral-bay a.more, .page-electrician-chatswood a.more, .page-electrician-lane-cove a.more, .page-electrician-mosman a.more, .page-electrician-turramurra a.more {
		 font-size: 1.25rem;
		 text-transform: uppercase;
	}
}

 @media only screen and (min-width: 1440px) {
	 .page-electrician-manly .location-hero h1, .page-electrician-north-sydney .location-hero h1, .page-electrician-dee-why .location-hero h1, .page-electrician-frenchs-forest .location-hero h1, .page-electrician-mona-vale .location-hero h1, .page-electrician-neutral-bay .location-hero h1, .page-electrician-chatswood .location-hero h1, .page-electrician-lane-cove .location-hero h1, .page-electrician-mosman .location-hero h1, .page-electrician-turramurra .location-hero h1 {
		 font-size: 4rem;
		 line-height: 4.5rem;
	}
	 .page-electrician-manly .location-hero p, .page-electrician-north-sydney .location-hero p, .page-electrician-dee-why .location-hero p, .page-electrician-frenchs-forest .location-hero p, .page-electrician-mona-vale .location-hero p, .page-electrician-neutral-bay .location-hero p, .page-electrician-chatswood .location-hero p, .page-electrician-lane-cove .location-hero p, .page-electrician-mosman .location-hero p, .page-electrician-turramurra .location-hero p {
		 font-size: 1.75rem;
		 line-height: 1.375;
		 margin-bottom: 3.5rem !important;
	}
	 .page-electrician-manly a.more, .page-electrician-north-sydney a.more, .page-electrician-dee-why a.more, .page-electrician-frenchs-forest a.more, .page-electrician-mona-vale a.more, .page-electrician-neutral-bay a.more, .page-electrician-chatswood a.more, .page-electrician-lane-cove a.more, .page-electrician-mosman a.more, .page-electrician-turramurra a.more {
		 font-size: 1.5rem;
		 text-transform: uppercase;
	}
}
 .page-electrician-manly .vc_row.wpb_row.vc_row-fluid.call-back, .page-electrician-north-sydney .vc_row.wpb_row.vc_row-fluid.call-back, .page-electrician-dee-why .vc_row.wpb_row.vc_row-fluid.call-back, .page-electrician-frenchs-forest .vc_row.wpb_row.vc_row-fluid.call-back, .page-electrician-mona-vale .vc_row.wpb_row.vc_row-fluid.call-back, .page-electrician-neutral-bay .vc_row.wpb_row.vc_row-fluid.call-back, .page-electrician-chatswood .vc_row.wpb_row.vc_row-fluid.call-back, .page-electrician-lane-cove .vc_row.wpb_row.vc_row-fluid.call-back, .page-electrician-mosman .vc_row.wpb_row.vc_row-fluid.call-back, .page-electrician-turramurra .vc_row.wpb_row.vc_row-fluid.call-back, .page-electrician-manly .call-back-inner .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .page-electrician-north-sydney .call-back-inner .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .page-electrician-dee-why .call-back-inner .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .page-electrician-frenchs-forest .call-back-inner .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .page-electrician-mona-vale .call-back-inner .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .page-electrician-neutral-bay .call-back-inner .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .page-electrician-chatswood .call-back-inner .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .page-electrician-lane-cove .call-back-inner .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .page-electrician-mosman .call-back-inner .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .page-electrician-turramurra .call-back-inner .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .page-electrician-manly .call-back-inner span.wpcf7-not-valid-tip, .page-electrician-north-sydney .call-back-inner span.wpcf7-not-valid-tip, .page-electrician-dee-why .call-back-inner span.wpcf7-not-valid-tip, .page-electrician-frenchs-forest .call-back-inner span.wpcf7-not-valid-tip, .page-electrician-mona-vale .call-back-inner span.wpcf7-not-valid-tip, .page-electrician-neutral-bay .call-back-inner span.wpcf7-not-valid-tip, .page-electrician-chatswood .call-back-inner span.wpcf7-not-valid-tip, .page-electrician-lane-cove .call-back-inner span.wpcf7-not-valid-tip, .page-electrician-mosman .call-back-inner span.wpcf7-not-valid-tip, .page-electrician-turramurra .call-back-inner span.wpcf7-not-valid-tip {
	 display: none !important;
}
 .page-electrician-manly .call-back-inner input.wpcf7-not-valid, .page-electrician-north-sydney .call-back-inner input.wpcf7-not-valid, .page-electrician-dee-why .call-back-inner input.wpcf7-not-valid, .page-electrician-frenchs-forest .call-back-inner input.wpcf7-not-valid, .page-electrician-mona-vale .call-back-inner input.wpcf7-not-valid, .page-electrician-neutral-bay .call-back-inner input.wpcf7-not-valid, .page-electrician-chatswood .call-back-inner input.wpcf7-not-valid, .page-electrician-lane-cove .call-back-inner input.wpcf7-not-valid, .page-electrician-mosman .call-back-inner input.wpcf7-not-valid, .page-electrician-turramurra .call-back-inner input.wpcf7-not-valid {
	 border: 2px solid red !important;
}
 @media only screen and (min-width: 1024px) {
	 .page-electrician-manly .call-back.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container, .page-electrician-north-sydney .call-back.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container, .page-electrician-dee-why .call-back.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container, .page-electrician-frenchs-forest .call-back.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container, .page-electrician-mona-vale .call-back.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container, .page-electrician-neutral-bay .call-back.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container, .page-electrician-chatswood .call-back.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container, .page-electrician-lane-cove .call-back.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container, .page-electrician-mosman .call-back.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container, .page-electrician-turramurra .call-back.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container {
		 justify-content: center;
	}
	 .page-electrician-manly .call-back .vc_column_container .vc_column-inner, .page-electrician-north-sydney .call-back .vc_column_container .vc_column-inner, .page-electrician-dee-why .call-back .vc_column_container .vc_column-inner, .page-electrician-frenchs-forest .call-back .vc_column_container .vc_column-inner, .page-electrician-mona-vale .call-back .vc_column_container .vc_column-inner, .page-electrician-neutral-bay .call-back .vc_column_container .vc_column-inner, .page-electrician-chatswood .call-back .vc_column_container .vc_column-inner, .page-electrician-lane-cove .call-back .vc_column_container .vc_column-inner, .page-electrician-mosman .call-back .vc_column_container .vc_column-inner, .page-electrician-turramurra .call-back .vc_column_container .vc_column-inner {
		 justify-content: center !important;
		 align-items: center;
		 height: 100%;
	}
	 .page-electrician-manly .call-back-inner h3, .page-electrician-north-sydney .call-back-inner h3, .page-electrician-dee-why .call-back-inner h3, .page-electrician-frenchs-forest .call-back-inner h3, .page-electrician-mona-vale .call-back-inner h3, .page-electrician-neutral-bay .call-back-inner h3, .page-electrician-chatswood .call-back-inner h3, .page-electrician-lane-cove .call-back-inner h3, .page-electrician-mosman .call-back-inner h3, .page-electrician-turramurra .call-back-inner h3 {
		 color: #8dc63f;
		 font-weight: 600;
		 margin: 0;
		 margin-bottom: 0.25rem;
	}
	 .page-electrician-manly .call-back-inner p, .page-electrician-north-sydney .call-back-inner p, .page-electrician-dee-why .call-back-inner p, .page-electrician-frenchs-forest .call-back-inner p, .page-electrician-mona-vale .call-back-inner p, .page-electrician-neutral-bay .call-back-inner p, .page-electrician-chatswood .call-back-inner p, .page-electrician-lane-cove .call-back-inner p, .page-electrician-mosman .call-back-inner p, .page-electrician-turramurra .call-back-inner p {
		 color: #fff;
		 font-weight: 600;
		 margin: 0;
	}
	 .page-electrician-manly .call-back-inner input, .page-electrician-north-sydney .call-back-inner input, .page-electrician-dee-why .call-back-inner input, .page-electrician-frenchs-forest .call-back-inner input, .page-electrician-mona-vale .call-back-inner input, .page-electrician-neutral-bay .call-back-inner input, .page-electrician-chatswood .call-back-inner input, .page-electrician-lane-cove .call-back-inner input, .page-electrician-mosman .call-back-inner input, .page-electrician-turramurra .call-back-inner input {
		 margin-left: 1rem;
		 width: 150px !important;
		 border: 2px solid white !important;
	}
	 .page-electrician-manly input.wpcf7-submit, .page-electrician-north-sydney input.wpcf7-submit, .page-electrician-dee-why input.wpcf7-submit, .page-electrician-frenchs-forest input.wpcf7-submit, .page-electrician-mona-vale input.wpcf7-submit, .page-electrician-neutral-bay input.wpcf7-submit, .page-electrician-chatswood input.wpcf7-submit, .page-electrician-lane-cove input.wpcf7-submit, .page-electrician-mosman input.wpcf7-submit, .page-electrician-turramurra input.wpcf7-submit {
		 cursor: pointer;
	}
	 .page-electrician-manly .call-back-inner input.wpcf7-submit, .page-electrician-north-sydney .call-back-inner input.wpcf7-submit, .page-electrician-dee-why .call-back-inner input.wpcf7-submit, .page-electrician-frenchs-forest .call-back-inner input.wpcf7-submit, .page-electrician-mona-vale .call-back-inner input.wpcf7-submit, .page-electrician-neutral-bay .call-back-inner input.wpcf7-submit, .page-electrician-chatswood .call-back-inner input.wpcf7-submit, .page-electrician-lane-cove .call-back-inner input.wpcf7-submit, .page-electrician-mosman .call-back-inner input.wpcf7-submit, .page-electrician-turramurra .call-back-inner input.wpcf7-submit {
		 width: 130px;
		 background: #8dc63f;
		 border: 2px solid #8dc63f !important;
		 color: #fff;
		 font-weight: 700;
		 letter-spacing: 0.5px;
	}
	 .page-electrician-manly .call-back-inner input.wpcf7-submit:hover, .page-electrician-north-sydney .call-back-inner input.wpcf7-submit:hover, .page-electrician-dee-why .call-back-inner input.wpcf7-submit:hover, .page-electrician-frenchs-forest .call-back-inner input.wpcf7-submit:hover, .page-electrician-mona-vale .call-back-inner input.wpcf7-submit:hover, .page-electrician-neutral-bay .call-back-inner input.wpcf7-submit:hover, .page-electrician-chatswood .call-back-inner input.wpcf7-submit:hover, .page-electrician-lane-cove .call-back-inner input.wpcf7-submit:hover, .page-electrician-mosman .call-back-inner input.wpcf7-submit:hover, .page-electrician-turramurra .call-back-inner input.wpcf7-submit:hover {
		 border: 2px solid #8dc63f !important;
		 background: transparent;
		 color: #8dc63f;
	}
	 .page-electrician-manly .call-back, .page-electrician-north-sydney .call-back, .page-electrician-dee-why .call-back, .page-electrician-frenchs-forest .call-back, .page-electrician-mona-vale .call-back, .page-electrician-neutral-bay .call-back, .page-electrician-chatswood .call-back, .page-electrician-lane-cove .call-back, .page-electrician-mosman .call-back, .page-electrician-turramurra .call-back {
		 position: relative;
		 z-index: 2;
	}
	 .page-electrician-manly .call-back-inner h3, .page-electrician-north-sydney .call-back-inner h3, .page-electrician-dee-why .call-back-inner h3, .page-electrician-frenchs-forest .call-back-inner h3, .page-electrician-mona-vale .call-back-inner h3, .page-electrician-neutral-bay .call-back-inner h3, .page-electrician-chatswood .call-back-inner h3, .page-electrician-lane-cove .call-back-inner h3, .page-electrician-mosman .call-back-inner h3, .page-electrician-turramurra .call-back-inner h3 {
		 font-size: 1.375rem;
	}
	 .page-electrician-manly .call-back-inner p, .page-electrician-north-sydney .call-back-inner p, .page-electrician-dee-why .call-back-inner p, .page-electrician-frenchs-forest .call-back-inner p, .page-electrician-mona-vale .call-back-inner p, .page-electrician-neutral-bay .call-back-inner p, .page-electrician-chatswood .call-back-inner p, .page-electrician-lane-cove .call-back-inner p, .page-electrician-mosman .call-back-inner p, .page-electrician-turramurra .call-back-inner p {
		 font-size: 1rem;
	}
}
 @media only screen and (min-width: 1280px) {
	 .page-electrician-manly .call-back, .page-electrician-north-sydney .call-back, .page-electrician-dee-why .call-back, .page-electrician-frenchs-forest .call-back, .page-electrician-mona-vale .call-back, .page-electrician-neutral-bay .call-back, .page-electrician-chatswood .call-back, .page-electrician-lane-cove .call-back, .page-electrician-mosman .call-back, .page-electrician-turramurra .call-back {
		 margin-top: -102px;
		 position: relative;
		 z-index: 2;
	}
	 .page-electrician-manly .vc_row.wpb_row.vc_row-fluid.call-back, .page-electrician-north-sydney .vc_row.wpb_row.vc_row-fluid.call-back, .page-electrician-dee-why .vc_row.wpb_row.vc_row-fluid.call-back, .page-electrician-frenchs-forest .vc_row.wpb_row.vc_row-fluid.call-back, .page-electrician-mona-vale .vc_row.wpb_row.vc_row-fluid.call-back, .page-electrician-neutral-bay .vc_row.wpb_row.vc_row-fluid.call-back, .page-electrician-chatswood .vc_row.wpb_row.vc_row-fluid.call-back, .page-electrician-lane-cove .vc_row.wpb_row.vc_row-fluid.call-back, .page-electrician-mosman .vc_row.wpb_row.vc_row-fluid.call-back, .page-electrician-turramurra .vc_row.wpb_row.vc_row-fluid.call-back {
		 display: flex !important;
	}
	 .page-electrician-manly .call-back-inner h3, .page-electrician-north-sydney .call-back-inner h3, .page-electrician-dee-why .call-back-inner h3, .page-electrician-frenchs-forest .call-back-inner h3, .page-electrician-mona-vale .call-back-inner h3, .page-electrician-neutral-bay .call-back-inner h3, .page-electrician-chatswood .call-back-inner h3, .page-electrician-lane-cove .call-back-inner h3, .page-electrician-mosman .call-back-inner h3, .page-electrician-turramurra .call-back-inner h3 {
		 font-size: 1.5rem;
	}
	 .page-electrician-manly .call-back-inner p, .page-electrician-north-sydney .call-back-inner p, .page-electrician-dee-why .call-back-inner p, .page-electrician-frenchs-forest .call-back-inner p, .page-electrician-mona-vale .call-back-inner p, .page-electrician-neutral-bay .call-back-inner p, .page-electrician-chatswood .call-back-inner p, .page-electrician-lane-cove .call-back-inner p, .page-electrician-mosman .call-back-inner p, .page-electrician-turramurra .call-back-inner p {
		 font-size: 1.125rem;
	}
}
 .page-electrician-manly h2, .page-electrician-north-sydney h2, .page-electrician-dee-why h2, .page-electrician-frenchs-forest h2, .page-electrician-mona-vale h2, .page-electrician-neutral-bay h2, .page-electrician-chatswood h2, .page-electrician-lane-cove h2, .page-electrician-mosman h2, .page-electrician-turramurra h2 {
	 font-weight: 700;
	 font-size: 1.75rem;
	 line-height: 2rem;
}
 @media only screen and (min-width: 1024px) {
	 .page-electrician-manly h2, .page-electrician-north-sydney h2, .page-electrician-dee-why h2, .page-electrician-frenchs-forest h2, .page-electrician-mona-vale h2, .page-electrician-neutral-bay h2, .page-electrician-chatswood h2, .page-electrician-lane-cove h2, .page-electrician-mosman h2, .page-electrician-turramurra h2 {
		 font-size: 2.5rem;
		 line-height: 2.75rem;
	}
}
 @media only screen and (min-width: 1440px) {
	 .page-electrician-manly h2, .page-electrician-north-sydney h2, .page-electrician-dee-why h2, .page-electrician-frenchs-forest h2, .page-electrician-mona-vale h2, .page-electrician-neutral-bay h2, .page-electrician-chatswood h2, .page-electrician-lane-cove h2, .page-electrician-mosman h2, .page-electrician-turramurra h2 {
		 font-size: 3rem;
		 line-height: 3.25rem;
	}
}
 .page-electrician-manly .hide-on-tablet, .page-electrician-north-sydney .hide-on-tablet, .page-electrician-dee-why .hide-on-tablet, .page-electrician-frenchs-forest .hide-on-tablet, .page-electrician-mona-vale .hide-on-tablet, .page-electrician-neutral-bay .hide-on-tablet, .page-electrician-chatswood .hide-on-tablet, .page-electrician-lane-cove .hide-on-tablet, .page-electrician-mosman .hide-on-tablet, .page-electrician-turramurra .hide-on-tablet {
	 display: none;
}
 @media only screen and (min-width: 1280px) {
	 .page-electrician-manly .hide-on-tablet, .page-electrician-north-sydney .hide-on-tablet, .page-electrician-dee-why .hide-on-tablet, .page-electrician-frenchs-forest .hide-on-tablet, .page-electrician-mona-vale .hide-on-tablet, .page-electrician-neutral-bay .hide-on-tablet, .page-electrician-chatswood .hide-on-tablet, .page-electrician-lane-cove .hide-on-tablet, .page-electrician-mosman .hide-on-tablet, .page-electrician-turramurra .hide-on-tablet {
		 display: block;
	}
}
 @media only screen and (min-width: 1024px) {
	 .page-electrician-manly .feature-item p, .page-electrician-north-sydney .feature-item p, .page-electrician-dee-why .feature-item p, .page-electrician-frenchs-forest .feature-item p, .page-electrician-mona-vale .feature-item p, .page-electrician-neutral-bay .feature-item p, .page-electrician-chatswood .feature-item p, .page-electrician-lane-cove .feature-item p, .page-electrician-mosman .feature-item p, .page-electrician-turramurra .feature-item p {
		 font-size: 1rem;
	}
	 .page-electrician-manly .feature-item h4, .page-electrician-north-sydney .feature-item h4, .page-electrician-dee-why .feature-item h4, .page-electrician-frenchs-forest .feature-item h4, .page-electrician-mona-vale .feature-item h4, .page-electrician-neutral-bay .feature-item h4, .page-electrician-chatswood .feature-item h4, .page-electrician-lane-cove .feature-item h4, .page-electrician-mosman .feature-item h4, .page-electrician-turramurra .feature-item h4 {
		 padding-bottom: 12px;
		 font-size: 1.25rem;
	}
}
 @media only screen and (min-width: 1440px) {
	 .page-electrician-manly .feature-item p, .page-electrician-north-sydney .feature-item p, .page-electrician-dee-why .feature-item p, .page-electrician-frenchs-forest .feature-item p, .page-electrician-mona-vale .feature-item p, .page-electrician-neutral-bay .feature-item p, .page-electrician-chatswood .feature-item p, .page-electrician-lane-cove .feature-item p, .page-electrician-mosman .feature-item p, .page-electrician-turramurra .feature-item p {
		 font-size: 1.25rem;
	}
	 .page-electrician-manly .feature-item h4, .page-electrician-north-sydney .feature-item h4, .page-electrician-dee-why .feature-item h4, .page-electrician-frenchs-forest .feature-item h4, .page-electrician-mona-vale .feature-item h4, .page-electrician-neutral-bay .feature-item h4, .page-electrician-chatswood .feature-item h4, .page-electrician-lane-cove .feature-item h4, .page-electrician-mosman .feature-item h4, .page-electrician-turramurra .feature-item h4 {
		 padding-bottom: 12px;
		 font-size: 1.5rem;
	}
}
 .page-electrician-manly .location iframe, .page-electrician-north-sydney .location iframe, .page-electrician-dee-why .location iframe, .page-electrician-frenchs-forest .location iframe, .page-electrician-mona-vale .location iframe, .page-electrician-neutral-bay .location iframe, .page-electrician-chatswood .location iframe, .page-electrician-lane-cove .location iframe, .page-electrician-mosman .location iframe, .page-electrician-turramurra .location iframe {
	 width: 100% !important;
}
 .page-electrician-manly .location p:nth-of-type(1), .page-electrician-north-sydney .location p:nth-of-type(1), .page-electrician-dee-why .location p:nth-of-type(1), .page-electrician-frenchs-forest .location p:nth-of-type(1), .page-electrician-mona-vale .location p:nth-of-type(1), .page-electrician-neutral-bay .location p:nth-of-type(1), .page-electrician-chatswood .location p:nth-of-type(1), .page-electrician-lane-cove .location p:nth-of-type(1), .page-electrician-mosman .location p:nth-of-type(1), .page-electrician-turramurra .location p:nth-of-type(1) {
	 margin-top: 0 !important;
}
 @media only screen and (min-width: 1280px) {
	 .page-electrician-manly .location p, .page-electrician-north-sydney .location p, .page-electrician-dee-why .location p, .page-electrician-frenchs-forest .location p, .page-electrician-mona-vale .location p, .page-electrician-neutral-bay .location p, .page-electrician-chatswood .location p, .page-electrician-lane-cove .location p, .page-electrician-mosman .location p, .page-electrician-turramurra .location p {
		 font-size: 1.25rem;
		 line-height: 1.375;
	}
}
 @media only screen and (min-width: 1440px) {
	 .page-electrician-manly .location p, .page-electrician-north-sydney .location p, .page-electrician-dee-why .location p, .page-electrician-frenchs-forest .location p, .page-electrician-mona-vale .location p, .page-electrician-neutral-bay .location p, .page-electrician-chatswood .location p, .page-electrician-lane-cove .location p, .page-electrician-mosman .location p, .page-electrician-turramurra .location p {
		 font-size: 1.375rem;
		 line-height: 1.5;
	}
}
 .page-electrician-manly .services, .page-electrician-north-sydney .services, .page-electrician-dee-why .services, .page-electrician-frenchs-forest .services, .page-electrician-mona-vale .services, .page-electrician-neutral-bay .services, .page-electrician-chatswood .services, .page-electrician-lane-cove .services, .page-electrician-mosman .services, .page-electrician-turramurra .services {
	 position: relative;
	 text-align: center;
	 background-attachment: fixed;
	 background-size: cover;
}
 .page-electrician-manly .services:before, .page-electrician-north-sydney .services:before, .page-electrician-dee-why .services:before, .page-electrician-frenchs-forest .services:before, .page-electrician-mona-vale .services:before, .page-electrician-neutral-bay .services:before, .page-electrician-chatswood .services:before, .page-electrician-lane-cove .services:before, .page-electrician-mosman .services:before, .page-electrician-turramurra .services:before {
	 content: '';
	 display: block !important;
	 position: absolute;
	 z-index: 2;
	 top: 0;
	 bottom: 0;
	 left: 0;
	 right: 0;
	 width: 100%;
	 height: 100%;
	 opacity: 1;
	 background: #121719;
	 background: -moz-linear-gradient(0deg, #121719 0%, rgba(35, 61, 80, 0.5) 100%);
	 background: -webkit-linear-gradient(0deg, #121719 0%, rgba(35, 61, 80, 0.5) 100%);
	 background: linear-gradient(0deg, #121719 0%, rgba(35, 61, 80, 0.5) 100%);
	 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#121719",endColorstr="#233d50",GradientType=1);
}
 .page-electrician-manly .services .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-north-sydney .services .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-dee-why .services .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-frenchs-forest .services .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-mona-vale .services .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-neutral-bay .services .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-chatswood .services .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-lane-cove .services .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-mosman .services .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-turramurra .services .wpb_column.vc_column_container.vc_col-sm-12 {
	 position: relative;
	 z-index: 2;
}
 .page-electrician-manly .services strong, .page-electrician-north-sydney .services strong, .page-electrician-dee-why .services strong, .page-electrician-frenchs-forest .services strong, .page-electrician-mona-vale .services strong, .page-electrician-neutral-bay .services strong, .page-electrician-chatswood .services strong, .page-electrician-lane-cove .services strong, .page-electrician-mosman .services strong, .page-electrician-turramurra .services strong, .page-electrician-manly .services h2, .page-electrician-north-sydney .services h2, .page-electrician-dee-why .services h2, .page-electrician-frenchs-forest .services h2, .page-electrician-mona-vale .services h2, .page-electrician-neutral-bay .services h2, .page-electrician-chatswood .services h2, .page-electrician-lane-cove .services h2, .page-electrician-mosman .services h2, .page-electrician-turramurra .services h2, .page-electrician-manly .services p, .page-electrician-north-sydney .services p, .page-electrician-dee-why .services p, .page-electrician-frenchs-forest .services p, .page-electrician-mona-vale .services p, .page-electrician-neutral-bay .services p, .page-electrician-chatswood .services p, .page-electrician-lane-cove .services p, .page-electrician-mosman .services p, .page-electrician-turramurra .services p {
	 color: #fff;
}
 .page-electrician-manly .services p, .page-electrician-north-sydney .services p, .page-electrician-dee-why .services p, .page-electrician-frenchs-forest .services p, .page-electrician-mona-vale .services p, .page-electrician-neutral-bay .services p, .page-electrician-chatswood .services p, .page-electrician-lane-cove .services p, .page-electrician-mosman .services p, .page-electrician-turramurra .services p {
	 color: #fff;
	 font-weight: 500;
	 font-size: 1rem;
	 line-height: 1.25;
	 margin-bottom: 2rem !important;
}
 @media only screen and (min-width: 768px) {
	 .page-electrician-manly .services p, .page-electrician-north-sydney .services p, .page-electrician-dee-why .services p, .page-electrician-frenchs-forest .services p, .page-electrician-mona-vale .services p, .page-electrician-neutral-bay .services p, .page-electrician-chatswood .services p, .page-electrician-lane-cove .services p, .page-electrician-mosman .services p, .page-electrician-turramurra .services p {
		 font-size: 1.5rem;
		 line-height: 1.25;
		 margin-bottom: 3rem !important;
	}
}
 @media only screen and (min-width: 1440px) {
	 .page-electrician-manly .services- p, .page-electrician-north-sydney .services- p, .page-electrician-dee-why .services- p, .page-electrician-frenchs-forest .services- p, .page-electrician-mona-vale .services- p, .page-electrician-neutral-bay .services- p, .page-electrician-chatswood .services- p, .page-electrician-lane-cove .services- p, .page-electrician-mosman .services- p, .page-electrician-turramurra .services- p {
		 font-size: 1.75rem;
		 line-height: 1.375;
		 margin-bottom: 3.5rem !important;
	}
}
 .page-electrician-manly .reviews, .page-electrician-north-sydney .reviews, .page-electrician-dee-why .reviews, .page-electrician-frenchs-forest .reviews, .page-electrician-mona-vale .reviews, .page-electrician-neutral-bay .reviews, .page-electrician-chatswood .reviews, .page-electrician-lane-cove .reviews, .page-electrician-mosman .reviews, .page-electrician-turramurra .reviews {
	 position: relative;
	 text-align: center;
	 background-attachment: fixed;
	 background-size: cover;
}
 .page-electrician-manly .reviews:before, .page-electrician-north-sydney .reviews:before, .page-electrician-dee-why .reviews:before, .page-electrician-frenchs-forest .reviews:before, .page-electrician-mona-vale .reviews:before, .page-electrician-neutral-bay .reviews:before, .page-electrician-chatswood .reviews:before, .page-electrician-lane-cove .reviews:before, .page-electrician-mosman .reviews:before, .page-electrician-turramurra .reviews:before {
	 content: '';
	 display: block !important;
	 position: absolute;
	 z-index: 2;
	 top: 0;
	 bottom: 0;
	 left: 0;
	 right: 0;
	 width: 100%;
	 height: 100%;
	 opacity: 1;
	 background: #121719;
	 background: -moz-linear-gradient(0deg, #121719 0%, rgba(0, 0, 0, 0.75) 100%);
	 background: -webkit-linear-gradient(0deg, #121719 0%, rgba(0, 0, 0, 0.75) 100%);
	 background: linear-gradient(0deg, #121719 0%, rgba(0, 0, 0, 0.75) 100%);
	 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#121719",endColorstr="#000000",GradientType=1);
}
 .page-electrician-manly .reviews .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-north-sydney .reviews .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-dee-why .reviews .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-frenchs-forest .reviews .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-mona-vale .reviews .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-neutral-bay .reviews .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-chatswood .reviews .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-lane-cove .reviews .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-mosman .reviews .wpb_column.vc_column_container.vc_col-sm-12, .page-electrician-turramurra .reviews .wpb_column.vc_column_container.vc_col-sm-12 {
	 position: relative;
	 z-index: 2;
}
 .page-electrician-manly .reviews h2, .page-electrician-north-sydney .reviews h2, .page-electrician-dee-why .reviews h2, .page-electrician-frenchs-forest .reviews h2, .page-electrician-mona-vale .reviews h2, .page-electrician-neutral-bay .reviews h2, .page-electrician-chatswood .reviews h2, .page-electrician-lane-cove .reviews h2, .page-electrician-mosman .reviews h2, .page-electrician-turramurra .reviews h2, .page-electrician-manly .reviews p, .page-electrician-north-sydney .reviews p, .page-electrician-dee-why .reviews p, .page-electrician-frenchs-forest .reviews p, .page-electrician-mona-vale .reviews p, .page-electrician-neutral-bay .reviews p, .page-electrician-chatswood .reviews p, .page-electrician-lane-cove .reviews p, .page-electrician-mosman .reviews p, .page-electrician-turramurra .reviews p {
	 color: #fff;
}
 .page-electrician-manly .reviews strong, .page-electrician-north-sydney .reviews strong, .page-electrician-dee-why .reviews strong, .page-electrician-frenchs-forest .reviews strong, .page-electrician-mona-vale .reviews strong, .page-electrician-neutral-bay .reviews strong, .page-electrician-chatswood .reviews strong, .page-electrician-lane-cove .reviews strong, .page-electrician-mosman .reviews strong, .page-electrician-turramurra .reviews strong {
	 color: #fff;
}
 .page-electrician-manly .reviews p, .page-electrician-north-sydney .reviews p, .page-electrician-dee-why .reviews p, .page-electrician-frenchs-forest .reviews p, .page-electrician-mona-vale .reviews p, .page-electrician-neutral-bay .reviews p, .page-electrician-chatswood .reviews p, .page-electrician-lane-cove .reviews p, .page-electrician-mosman .reviews p, .page-electrician-turramurra .reviews p {
	 color: #fff;
	 font-weight: 500;
	 font-size: 1rem;
	 line-height: 1.25;
	 margin-bottom: 2rem !important;
}
 @media only screen and (min-width: 768px) {
	 .page-electrician-manly .reviews p, .page-electrician-north-sydney .reviews p, .page-electrician-dee-why .reviews p, .page-electrician-frenchs-forest .reviews p, .page-electrician-mona-vale .reviews p, .page-electrician-neutral-bay .reviews p, .page-electrician-chatswood .reviews p, .page-electrician-lane-cove .reviews p, .page-electrician-mosman .reviews p, .page-electrician-turramurra .reviews p {
		 font-size: 1.25rem;
		 line-height: 1.25;
		 margin-bottom: 2rem !important;
	}
}
 @media only screen and (min-width: 1440px) {
	 .page-electrician-manly .reviews p, .page-electrician-north-sydney .reviews p, .page-electrician-dee-why .reviews p, .page-electrician-frenchs-forest .reviews p, .page-electrician-mona-vale .reviews p, .page-electrician-neutral-bay .reviews p, .page-electrician-chatswood .reviews p, .page-electrician-lane-cove .reviews p, .page-electrician-mosman .reviews p, .page-electrician-turramurra .reviews p {
		 font-size: 1.75rem;
		 line-height: 1.375;
	}
}
 .page-electrician-manly .wp-google-list.wp-dark, .page-electrician-north-sydney .wp-google-list.wp-dark, .page-electrician-dee-why .wp-google-list.wp-dark, .page-electrician-frenchs-forest .wp-google-list.wp-dark, .page-electrician-mona-vale .wp-google-list.wp-dark, .page-electrician-neutral-bay .wp-google-list.wp-dark, .page-electrician-chatswood .wp-google-list.wp-dark, .page-electrician-lane-cove .wp-google-list.wp-dark, .page-electrician-mosman .wp-google-list.wp-dark, .page-electrician-turramurra .wp-google-list.wp-dark {
	 text-align: center !important;
}
 .page-electrician-manly .wp-gr .wp-more-toggle, .page-electrician-north-sydney .wp-gr .wp-more-toggle, .page-electrician-dee-why .wp-gr .wp-more-toggle, .page-electrician-frenchs-forest .wp-gr .wp-more-toggle, .page-electrician-mona-vale .wp-gr .wp-more-toggle, .page-electrician-neutral-bay .wp-gr .wp-more-toggle, .page-electrician-chatswood .wp-gr .wp-more-toggle, .page-electrician-lane-cove .wp-gr .wp-more-toggle, .page-electrician-mosman .wp-gr .wp-more-toggle, .page-electrician-turramurra .wp-gr .wp-more-toggle {
	 display: block;
}
 .page-electrician-manly .wp-gr.wpac .wp-google-review .wp-google-stars, .page-electrician-north-sydney .wp-gr.wpac .wp-google-review .wp-google-stars, .page-electrician-dee-why .wp-gr.wpac .wp-google-review .wp-google-stars, .page-electrician-frenchs-forest .wp-gr.wpac .wp-google-review .wp-google-stars, .page-electrician-mona-vale .wp-gr.wpac .wp-google-review .wp-google-stars, .page-electrician-neutral-bay .wp-gr.wpac .wp-google-review .wp-google-stars, .page-electrician-chatswood .wp-gr.wpac .wp-google-review .wp-google-stars, .page-electrician-lane-cove .wp-gr.wpac .wp-google-review .wp-google-stars, .page-electrician-mosman .wp-gr.wpac .wp-google-review .wp-google-stars, .page-electrician-turramurra .wp-gr.wpac .wp-google-review .wp-google-stars {
	 display: block;
}
 .page-electrician-manly .wp-gr .wp-google-url, .page-electrician-north-sydney .wp-gr .wp-google-url, .page-electrician-dee-why .wp-gr .wp-google-url, .page-electrician-frenchs-forest .wp-gr .wp-google-url, .page-electrician-mona-vale .wp-gr .wp-google-url, .page-electrician-neutral-bay .wp-gr .wp-google-url, .page-electrician-chatswood .wp-gr .wp-google-url, .page-electrician-lane-cove .wp-gr .wp-google-url, .page-electrician-mosman .wp-gr .wp-google-url, .page-electrician-turramurra .wp-gr .wp-google-url, .page-electrician-manly .wp-gr .wp-dark .wp-google-name, .page-electrician-north-sydney .wp-gr .wp-dark .wp-google-name, .page-electrician-dee-why .wp-gr .wp-dark .wp-google-name, .page-electrician-frenchs-forest .wp-gr .wp-dark .wp-google-name, .page-electrician-mona-vale .wp-gr .wp-dark .wp-google-name, .page-electrician-neutral-bay .wp-gr .wp-dark .wp-google-name, .page-electrician-chatswood .wp-gr .wp-dark .wp-google-name, .page-electrician-lane-cove .wp-gr .wp-dark .wp-google-name, .page-electrician-mosman .wp-gr .wp-dark .wp-google-name, .page-electrician-turramurra .wp-gr .wp-dark .wp-google-name, .page-electrician-manly .wp-gr.wpac a.wp-google-name, .page-electrician-north-sydney .wp-gr.wpac a.wp-google-name, .page-electrician-dee-why .wp-gr.wpac a.wp-google-name, .page-electrician-frenchs-forest .wp-gr.wpac a.wp-google-name, .page-electrician-mona-vale .wp-gr.wpac a.wp-google-name, .page-electrician-neutral-bay .wp-gr.wpac a.wp-google-name, .page-electrician-chatswood .wp-gr.wpac a.wp-google-name, .page-electrician-lane-cove .wp-gr.wpac a.wp-google-name, .page-electrician-mosman .wp-gr.wpac a.wp-google-name, .page-electrician-turramurra .wp-gr.wpac a.wp-google-name {
	 color: #8dc63f !important;
	 font-size: 1.125rem !important;
}
 .page-electrician-manly .wp-gr .wp-more-toggle, .page-electrician-north-sydney .wp-gr .wp-more-toggle, .page-electrician-dee-why .wp-gr .wp-more-toggle, .page-electrician-frenchs-forest .wp-gr .wp-more-toggle, .page-electrician-mona-vale .wp-gr .wp-more-toggle, .page-electrician-neutral-bay .wp-gr .wp-more-toggle, .page-electrician-chatswood .wp-gr .wp-more-toggle, .page-electrician-lane-cove .wp-gr .wp-more-toggle, .page-electrician-mosman .wp-gr .wp-more-toggle, .page-electrician-turramurra .wp-gr .wp-more-toggle {
	 margin-top: 0.5rem !important;
	 color: #8dc63f !important;
}
 .page-electrician-manly .wp-gr .wp-dark .wp-google-time, .page-electrician-north-sydney .wp-gr .wp-dark .wp-google-time, .page-electrician-dee-why .wp-gr .wp-dark .wp-google-time, .page-electrician-frenchs-forest .wp-gr .wp-dark .wp-google-time, .page-electrician-mona-vale .wp-gr .wp-dark .wp-google-time, .page-electrician-neutral-bay .wp-gr .wp-dark .wp-google-time, .page-electrician-chatswood .wp-gr .wp-dark .wp-google-time, .page-electrician-lane-cove .wp-gr .wp-dark .wp-google-time, .page-electrician-mosman .wp-gr .wp-dark .wp-google-time, .page-electrician-turramurra .wp-gr .wp-dark .wp-google-time {
	 color: #fff !important;
}
 .page-electrician-manly .wp-gr .wp-google-left, .page-electrician-north-sydney .wp-gr .wp-google-left, .page-electrician-dee-why .wp-gr .wp-google-left, .page-electrician-frenchs-forest .wp-gr .wp-google-left, .page-electrician-mona-vale .wp-gr .wp-google-left, .page-electrician-neutral-bay .wp-gr .wp-google-left, .page-electrician-chatswood .wp-gr .wp-google-left, .page-electrician-lane-cove .wp-gr .wp-google-left, .page-electrician-mosman .wp-gr .wp-google-left, .page-electrician-turramurra .wp-gr .wp-google-left {
	 display: none !important;
}
 .page-electrician-manly .wp-gr .wp-dark .wp-google-text, .page-electrician-north-sydney .wp-gr .wp-dark .wp-google-text, .page-electrician-dee-why .wp-gr .wp-dark .wp-google-text, .page-electrician-frenchs-forest .wp-gr .wp-dark .wp-google-text, .page-electrician-mona-vale .wp-gr .wp-dark .wp-google-text, .page-electrician-neutral-bay .wp-gr .wp-dark .wp-google-text, .page-electrician-chatswood .wp-gr .wp-dark .wp-google-text, .page-electrician-lane-cove .wp-gr .wp-dark .wp-google-text, .page-electrician-mosman .wp-gr .wp-dark .wp-google-text, .page-electrician-turramurra .wp-gr .wp-dark .wp-google-text {
	 color: #fff !important;
	 font-size: 1.125rem !important;
}
 @media only screen and (min-width: 1024px) {
	 .page-electrician-manly .wp-google-reviews, .page-electrician-north-sydney .wp-google-reviews, .page-electrician-dee-why .wp-google-reviews, .page-electrician-frenchs-forest .wp-google-reviews, .page-electrician-mona-vale .wp-google-reviews, .page-electrician-neutral-bay .wp-google-reviews, .page-electrician-chatswood .wp-google-reviews, .page-electrician-lane-cove .wp-google-reviews, .page-electrician-mosman .wp-google-reviews, .page-electrician-turramurra .wp-google-reviews {
		 display: flex !important;
		 flex-flow: wrap !important;
		 justify-content: space-between !important;
	}
	 .page-electrician-manly .wp-gr .wp-google-review, .page-electrician-north-sydney .wp-gr .wp-google-review, .page-electrician-dee-why .wp-gr .wp-google-review, .page-electrician-frenchs-forest .wp-gr .wp-google-review, .page-electrician-mona-vale .wp-gr .wp-google-review, .page-electrician-neutral-bay .wp-gr .wp-google-review, .page-electrician-chatswood .wp-gr .wp-google-review, .page-electrician-lane-cove .wp-gr .wp-google-review, .page-electrician-mosman .wp-gr .wp-google-review, .page-electrician-turramurra .wp-gr .wp-google-review {
		 margin-top: 15px !important;
		 margin: 1.5% !important;
		 width: 30% !important;
	}
}
 .page-electrician-manly .areas .feature-item, .page-electrician-north-sydney .areas .feature-item, .page-electrician-dee-why .areas .feature-item, .page-electrician-frenchs-forest .areas .feature-item, .page-electrician-mona-vale .areas .feature-item, .page-electrician-neutral-bay .areas .feature-item, .page-electrician-chatswood .areas .feature-item, .page-electrician-lane-cove .areas .feature-item, .page-electrician-mosman .areas .feature-item, .page-electrician-turramurra .areas .feature-item {
	 display: flex;
	 align-items: center;
	 align-content: center;
}
 .page-electrician-manly .areas .feature-item h4, .page-electrician-north-sydney .areas .feature-item h4, .page-electrician-dee-why .areas .feature-item h4, .page-electrician-frenchs-forest .areas .feature-item h4, .page-electrician-mona-vale .areas .feature-item h4, .page-electrician-neutral-bay .areas .feature-item h4, .page-electrician-chatswood .areas .feature-item h4, .page-electrician-lane-cove .areas .feature-item h4, .page-electrician-mosman .areas .feature-item h4, .page-electrician-turramurra .areas .feature-item h4 {
	 font-size: 1.25rem;
}
 .page-electrician-manly .areas .feature-item h4 a, .page-electrician-north-sydney .areas .feature-item h4 a, .page-electrician-dee-why .areas .feature-item h4 a, .page-electrician-frenchs-forest .areas .feature-item h4 a, .page-electrician-mona-vale .areas .feature-item h4 a, .page-electrician-neutral-bay .areas .feature-item h4 a, .page-electrician-chatswood .areas .feature-item h4 a, .page-electrician-lane-cove .areas .feature-item h4 a, .page-electrician-mosman .areas .feature-item h4 a, .page-electrician-turramurra .areas .feature-item h4 a {
	 color: #8dc63f;
}
 .page-electrician-manly .areas p, .page-electrician-north-sydney .areas p, .page-electrician-dee-why .areas p, .page-electrician-frenchs-forest .areas p, .page-electrician-mona-vale .areas p, .page-electrician-neutral-bay .areas p, .page-electrician-chatswood .areas p, .page-electrician-lane-cove .areas p, .page-electrician-mosman .areas p, .page-electrician-turramurra .areas p {
	 font-weight: 500;
	 font-size: 1rem;
	 line-height: 1.25;
	 margin-bottom: 2rem !important;
}
 @media only screen and (min-width: 768px) {
	 .page-electrician-manly .areas p, .page-electrician-north-sydney .areas p, .page-electrician-dee-why .areas p, .page-electrician-frenchs-forest .areas p, .page-electrician-mona-vale .areas p, .page-electrician-neutral-bay .areas p, .page-electrician-chatswood .areas p, .page-electrician-lane-cove .areas p, .page-electrician-mosman .areas p, .page-electrician-turramurra .areas p {
		 font-size: 1.5rem;
		 line-height: 1.25;
		 margin-bottom: 3rem !important;
	}
	 .page-electrician-manly .areas .feature-item h4, .page-electrician-north-sydney .areas .feature-item h4, .page-electrician-dee-why .areas .feature-item h4, .page-electrician-frenchs-forest .areas .feature-item h4, .page-electrician-mona-vale .areas .feature-item h4, .page-electrician-neutral-bay .areas .feature-item h4, .page-electrician-chatswood .areas .feature-item h4, .page-electrician-lane-cove .areas .feature-item h4, .page-electrician-mosman .areas .feature-item h4, .page-electrician-turramurra .areas .feature-item h4 {
		 font-size: 1.5rem;
	}
}
 @media only screen and (min-width: 1440px) {
	 .page-electrician-manly .areas p, .page-electrician-north-sydney .areas p, .page-electrician-dee-why .areas p, .page-electrician-frenchs-forest .areas p, .page-electrician-mona-vale .areas p, .page-electrician-neutral-bay .areas p, .page-electrician-chatswood .areas p, .page-electrician-lane-cove .areas p, .page-electrician-mosman .areas p, .page-electrician-turramurra .areas p {
		 font-size: 1.75rem;
		 line-height: 1.375;
		 margin-bottom: 3.5rem !important;
	}
	 .page-electrician-manly .areas .feature-item h4, .page-electrician-north-sydney .areas .feature-item h4, .page-electrician-dee-why .areas .feature-item h4, .page-electrician-frenchs-forest .areas .feature-item h4, .page-electrician-mona-vale .areas .feature-item h4, .page-electrician-neutral-bay .areas .feature-item h4, .page-electrician-chatswood .areas .feature-item h4, .page-electrician-lane-cove .areas .feature-item h4, .page-electrician-mosman .areas .feature-item h4, .page-electrician-turramurra .areas .feature-item h4 {
		 font-size: 1.75rem;
	}
}
 .page-electrician-manly .contact .wpb_text_column.wpb_content_element p, .page-electrician-north-sydney .contact .wpb_text_column.wpb_content_element p, .page-electrician-dee-why .contact .wpb_text_column.wpb_content_element p, .page-electrician-frenchs-forest .contact .wpb_text_column.wpb_content_element p, .page-electrician-mona-vale .contact .wpb_text_column.wpb_content_element p, .page-electrician-neutral-bay .contact .wpb_text_column.wpb_content_element p, .page-electrician-chatswood .contact .wpb_text_column.wpb_content_element p, .page-electrician-lane-cove .contact .wpb_text_column.wpb_content_element p, .page-electrician-mosman .contact .wpb_text_column.wpb_content_element p, .page-electrician-turramurra .contact .wpb_text_column.wpb_content_element p {
	 font-weight: 500;
	 font-size: 1rem;
	 line-height: 1.25;
}
 .page-electrician-manly .contact form.wpcf7-form, .page-electrician-north-sydney .contact form.wpcf7-form, .page-electrician-dee-why .contact form.wpcf7-form, .page-electrician-frenchs-forest .contact form.wpcf7-form, .page-electrician-mona-vale .contact form.wpcf7-form, .page-electrician-neutral-bay .contact form.wpcf7-form, .page-electrician-chatswood .contact form.wpcf7-form, .page-electrician-lane-cove .contact form.wpcf7-form, .page-electrician-mosman .contact form.wpcf7-form, .page-electrician-turramurra .contact form.wpcf7-form {
	 text-align: center;
	 max-width: 768px !important;
	 margin: 0 auto !important;
}
 .page-electrician-manly .contact input, .page-electrician-north-sydney .contact input, .page-electrician-dee-why .contact input, .page-electrician-frenchs-forest .contact input, .page-electrician-mona-vale .contact input, .page-electrician-neutral-bay .contact input, .page-electrician-chatswood .contact input, .page-electrician-lane-cove .contact input, .page-electrician-mosman .contact input, .page-electrician-turramurra .contact input, .page-electrician-manly textarea, .page-electrician-north-sydney textarea, .page-electrician-dee-why textarea, .page-electrician-frenchs-forest textarea, .page-electrician-mona-vale textarea, .page-electrician-neutral-bay textarea, .page-electrician-chatswood textarea, .page-electrician-lane-cove textarea, .page-electrician-mosman textarea, .page-electrician-turramurra textarea {
	 border: 2px solid black;
	 width: 100%;
	 box-sizing: border-box;
	 -webkit-border-radius: 8px;
	 -moz-border-radius: 8px;
	 border-radius: 8px;
}
 .page-electrician-manly .contact input.wpcf7-submit, .page-electrician-north-sydney .contact input.wpcf7-submit, .page-electrician-dee-why .contact input.wpcf7-submit, .page-electrician-frenchs-forest .contact input.wpcf7-submit, .page-electrician-mona-vale .contact input.wpcf7-submit, .page-electrician-neutral-bay .contact input.wpcf7-submit, .page-electrician-chatswood .contact input.wpcf7-submit, .page-electrician-lane-cove .contact input.wpcf7-submit, .page-electrician-mosman .contact input.wpcf7-submit, .page-electrician-turramurra .contact input.wpcf7-submit {
	 width: 100%;
	 background: #8dc63f;
	 border: 2px solid #8dc63f;
	 color: #fff;
	 font-weight: 700;
	 letter-spacing: 0.5px;
}
 .page-electrician-manly .contact input.wpcf7-submit:hover, .page-electrician-north-sydney .contact input.wpcf7-submit:hover, .page-electrician-dee-why .contact input.wpcf7-submit:hover, .page-electrician-frenchs-forest .contact input.wpcf7-submit:hover, .page-electrician-mona-vale .contact input.wpcf7-submit:hover, .page-electrician-neutral-bay .contact input.wpcf7-submit:hover, .page-electrician-chatswood .contact input.wpcf7-submit:hover, .page-electrician-lane-cove .contact input.wpcf7-submit:hover, .page-electrician-mosman .contact input.wpcf7-submit:hover, .page-electrician-turramurra .contact input.wpcf7-submit:hover {
	 border: 2px solid #8dc63f;
	 background: transparent;
	 color: #8dc63f;
}
 .page-electrician-manly .contact .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .page-electrician-north-sydney .contact .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .page-electrician-dee-why .contact .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .page-electrician-frenchs-forest .contact .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .page-electrician-mona-vale .contact .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .page-electrician-neutral-bay .contact .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .page-electrician-chatswood .contact .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .page-electrician-lane-cove .contact .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .page-electrician-mosman .contact .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .page-electrician-turramurra .contact .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .page-electrician-manly .contact span.wpcf7-not-valid-tip, .page-electrician-north-sydney .contact span.wpcf7-not-valid-tip, .page-electrician-dee-why .contact span.wpcf7-not-valid-tip, .page-electrician-frenchs-forest .contact span.wpcf7-not-valid-tip, .page-electrician-mona-vale .contact span.wpcf7-not-valid-tip, .page-electrician-neutral-bay .contact span.wpcf7-not-valid-tip, .page-electrician-chatswood .contact span.wpcf7-not-valid-tip, .page-electrician-lane-cove .contact span.wpcf7-not-valid-tip, .page-electrician-mosman .contact span.wpcf7-not-valid-tip, .page-electrician-turramurra .contact span.wpcf7-not-valid-tip {
	 display: none !important;
}
 .page-electrician-manly .contact textarea.wpcf7-not-valid, .page-electrician-north-sydney .contact textarea.wpcf7-not-valid, .page-electrician-dee-why .contact textarea.wpcf7-not-valid, .page-electrician-frenchs-forest .contact textarea.wpcf7-not-valid, .page-electrician-mona-vale .contact textarea.wpcf7-not-valid, .page-electrician-neutral-bay .contact textarea.wpcf7-not-valid, .page-electrician-chatswood .contact textarea.wpcf7-not-valid, .page-electrician-lane-cove .contact textarea.wpcf7-not-valid, .page-electrician-mosman .contact textarea.wpcf7-not-valid, .page-electrician-turramurra .contact textarea.wpcf7-not-valid, .page-electrician-manly .contact input.wpcf7-not-valid, .page-electrician-north-sydney .contact input.wpcf7-not-valid, .page-electrician-dee-why .contact input.wpcf7-not-valid, .page-electrician-frenchs-forest .contact input.wpcf7-not-valid, .page-electrician-mona-vale .contact input.wpcf7-not-valid, .page-electrician-neutral-bay .contact input.wpcf7-not-valid, .page-electrician-chatswood .contact input.wpcf7-not-valid, .page-electrician-lane-cove .contact input.wpcf7-not-valid, .page-electrician-mosman .contact input.wpcf7-not-valid, .page-electrician-turramurra .contact input.wpcf7-not-valid {
	 border: 2px solid red !important;
}
 @media only screen and (min-width: 768px) {
	 .page-electrician-manly .contact input.wpcf7-submit, .page-electrician-north-sydney .contact input.wpcf7-submit, .page-electrician-dee-why .contact input.wpcf7-submit, .page-electrician-frenchs-forest .contact input.wpcf7-submit, .page-electrician-mona-vale .contact input.wpcf7-submit, .page-electrician-neutral-bay .contact input.wpcf7-submit, .page-electrician-chatswood .contact input.wpcf7-submit, .page-electrician-lane-cove .contact input.wpcf7-submit, .page-electrician-mosman .contact input.wpcf7-submit, .page-electrician-turramurra .contact input.wpcf7-submit, .page-electrician-manly .contact .wpb_text_column.wpb_content_element p, .page-electrician-north-sydney .contact .wpb_text_column.wpb_content_element p, .page-electrician-dee-why .contact .wpb_text_column.wpb_content_element p, .page-electrician-frenchs-forest .contact .wpb_text_column.wpb_content_element p, .page-electrician-mona-vale .contact .wpb_text_column.wpb_content_element p, .page-electrician-neutral-bay .contact .wpb_text_column.wpb_content_element p, .page-electrician-chatswood .contact .wpb_text_column.wpb_content_element p, .page-electrician-lane-cove .contact .wpb_text_column.wpb_content_element p, .page-electrician-mosman .contact .wpb_text_column.wpb_content_element p, .page-electrician-turramurra .contact .wpb_text_column.wpb_content_element p {
		 font-size: 1.5rem;
		 line-height: 1.25;
	}
	 .page-electrician-manly .contact label, .page-electrician-north-sydney .contact label, .page-electrician-dee-why .contact label, .page-electrician-frenchs-forest .contact label, .page-electrician-mona-vale .contact label, .page-electrician-neutral-bay .contact label, .page-electrician-chatswood .contact label, .page-electrician-lane-cove .contact label, .page-electrician-mosman .contact label, .page-electrician-turramurra .contact label {
		 font-size: 1.25rem;
	}
}
 @media only screen and (min-width: 1440px) {
	 .page-electrician-manly .contact input.wpcf7-submit, .page-electrician-north-sydney .contact input.wpcf7-submit, .page-electrician-dee-why .contact input.wpcf7-submit, .page-electrician-frenchs-forest .contact input.wpcf7-submit, .page-electrician-mona-vale .contact input.wpcf7-submit, .page-electrician-neutral-bay .contact input.wpcf7-submit, .page-electrician-chatswood .contact input.wpcf7-submit, .page-electrician-lane-cove .contact input.wpcf7-submit, .page-electrician-mosman .contact input.wpcf7-submit, .page-electrician-turramurra .contact input.wpcf7-submit, .page-electrician-manly .contact .wpb_text_column.wpb_content_element p, .page-electrician-north-sydney .contact .wpb_text_column.wpb_content_element p, .page-electrician-dee-why .contact .wpb_text_column.wpb_content_element p, .page-electrician-frenchs-forest .contact .wpb_text_column.wpb_content_element p, .page-electrician-mona-vale .contact .wpb_text_column.wpb_content_element p, .page-electrician-neutral-bay .contact .wpb_text_column.wpb_content_element p, .page-electrician-chatswood .contact .wpb_text_column.wpb_content_element p, .page-electrician-lane-cove .contact .wpb_text_column.wpb_content_element p, .page-electrician-mosman .contact .wpb_text_column.wpb_content_element p, .page-electrician-turramurra .contact .wpb_text_column.wpb_content_element p {
		 font-size: 1.75rem;
		 line-height: 1.375;
	}
}


/* === Homepage Styling === */

/* ------ Hero Section ------*/


 .home .vc_row.wpb_row.vc_row-fluid.gray.full-width.page-header.vertical-align-table {
	 display: none;
}
 .home .location-hero.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container {
	 justify-content: center;
}
 .home .location-hero {
	 position: relative;
	 text-align: center;
	 background-attachment: fixed;
	 background-size: cover;
}
 .home .location-hero:before {
	 content: '';
	 display: block !important;
	 position: absolute;
	 z-index: 2;
	 top: 0;
	 bottom: 0;
	 left: 0;
	 right: 0;
	 width: 100%;
	 height: 100%;
	 opacity: 1;
	 background: #121719;
	 background: -moz-linear-gradient(0deg, #121719 0%, rgba(35, 61, 80, 0.5) 100%);
	 background: -webkit-linear-gradient(0deg, #121719 0%, rgba(35, 61, 80, 0.5) 100%);
	 background: linear-gradient(0deg, #121719 0%, rgba(35, 61, 80, 0.5) 100%);
	 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#121719",endColorstr="#233d50",GradientType=1);
}
 .home .location-hero .wpb_column.vc_column_container.vc_col-sm-12 {
	 position: relative;
	 z-index: 2;
}
 .home .location-hero h1 {
	 color: #fff;
	 font-weight: 700;
	 font-size: 1.75rem;
	 line-height: 2rem;
}
 .home .location-hero p {
	 color: #fff;
	 font-weight: 500;
	 font-size: 1rem;
	 line-height: 1.25;
	 margin-bottom: 2rem !important;
}
 .home a.more {
	 font-size: 1rem;
	 text-transform: uppercase;
}
 .home a.more:hover {
	 color: #8dc63f !important;
}
 @media only screen and (max-width: 1024px) {
	 .home .location-hero h1 br {
		 display: none;
	}
}
 @media only screen and (min-width: 768px) {
	 .home .location-hero h1 {
		 font-size: 3.5rem;
		 line-height: 3.5rem;
	}
	 .home .location-hero p {
		 font-size: 1.5rem;
		 line-height: 1.25;
		 margin-bottom: 3rem !important;
	}
	 .home a.more {
		 font-size: 1.25rem;
		 text-transform: uppercase;
	}
}
 @media only screen and (min-width: 1440px) {
	 .home .location-hero h1 {
		 font-size: 3.74rem;
		 line-height: 3.75rem;
	}
	 .home .location-hero p {
		 font-size: 1.75rem;
		 line-height: 1.375;
		 margin-bottom: 3.5rem !important;
	}
	 .home a.more {
		 font-size: 1.5rem;
		 text-transform: uppercase;
	}
}
 .home .vc_row.wpb_row.vc_row-fluid.call-back, .home .call-back-inner .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .home .call-back-inner span.wpcf7-not-valid-tip {
	 display: none !important;
}
 .home .call-back-inner input.wpcf7-not-valid {
	 border: 2px solid red !important;
}
 @media only screen and (min-width: 1024px) {
	 .home .call-back.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height) > .vc_column_container {
		 justify-content: center;
	}
	 .home .call-back .vc_column_container .vc_column-inner {
		 justify-content: center !important;
		 align-items: center;
		 height: 100%;
	}
	 .home .call-back-inner h3 {
		 color: #8dc63f;
		 font-weight: 600;
		 margin: 0;
		 margin-bottom: 0.25rem;
	}
	 .home .call-back-inner p {
		 color: #fff;
		 font-weight: 600;
		 margin: 0;
	}
	 .home .call-back-inner input {
		 margin-left: 1rem;
		 width: 150px !important;
		 border: 2px solid white !important;
	}
	 .home input.wpcf7-submit {
		 cursor: pointer;
	}
	 .home .call-back-inner input.wpcf7-submit {
		 width: 130px;
		 background: #8dc63f;
		 border: 2px solid #8dc63f !important;
		 color: #fff;
		 font-weight: 700;
		 letter-spacing: 0.5px;
	}
	 .home .call-back-inner input.wpcf7-submit:hover {
		 border: 2px solid #8dc63f !important;
		 background: transparent;
		 color: #8dc63f;
	}
	 .home .call-back {
		 position: relative;
		 z-index: 2;
	}
	 .home .call-back-inner h3 {
		 font-size: 1.375rem;
	}
	 .home .call-back-inner p {
		 font-size: 1rem;
	}
}
 @media only screen and (min-width: 1280px) {
	 .home .call-back {
		 margin-top: -102px;
		 position: relative;
		 z-index: 2;
	}
	 .home .vc_row.wpb_row.vc_row-fluid.call-back {
		 display: flex !important;
	}
	 .home .call-back-inner h3 {
		 font-size: 1.5rem;
	}
	 .home .call-back-inner p {
		 font-size: 1.125rem;
	}
}
 .home h2 {
	 font-weight: 700;
	 font-size: 1.75rem;
	 line-height: 2rem;
}
 @media only screen and (min-width: 1024px) {
	 .home h2 {
		 font-size: 2.5rem;
		 line-height: 2.75rem;
	}
}
 @media only screen and (min-width: 1440px) {
	 .home h2 {
		 font-size: 3rem;
		 line-height: 3.25rem;
	}
}
 .home .hide-on-tablet {
	 display: none;
}
 @media only screen and (min-width: 1280px) {
	 .home .hide-on-tablet {
		 display: block;
	}
}
 @media only screen and (min-width: 1024px) {
	 .home .feature-item p {
		 font-size: 1rem;
	}
	 .home .feature-item h4 {
		 padding-bottom: 12px;
		 font-size: 1.25rem;
	}
}
 @media only screen and (min-width: 1440px) {
	 .home .feature-item p {
		 font-size: 1.25rem;
	}
	 .home .feature-item h4 {
		 padding-bottom: 12px;
		 font-size: 1.5rem;
	}
}
 @media only screen and (min-width: 1024px) {
	 .home .location .vc_column-inner.vc_custom_1573710960447 {
		 background-position: center 10% !important;
	}
}
 @media only screen and (min-width: 1280px) {
	 .home .location .vc_column-inner.vc_custom_1573710960447 {
		 background-position: center 30% !important;
	}
}
 @media only screen and (min-width: 1440px) {
	 .home .location .vc_column-inner.vc_custom_1573710960447 {
		 background-position: center 10% !important;
	}
}
 .home .location .vc_col-sm-6 .wpb_wrapper p:nth-of-type(1) {
	 margin-top: 0 !Important;
}
 .home .work h2, .home .location h2 {
	 color: #8dc640;
}
 @media only screen and (min-width: 1280px) {
	 .home .location p, .home .location li {
		 font-size: 1.25rem;
		 line-height: 1.375;
	}
}
 @media only screen and (min-width: 1440px) {
	 .home .location p, .home .location li {
		 font-size: 1.375rem;
		 line-height: 1.5;
	}
}
 @media only screen and (min-width: 768px) {
	 .home .work .work-top p, .home .location .location-top p {
		 font-size: 1.5rem;
		 line-height: 1.25;
	}
}
 @media only screen and (min-width: 1440px) {
	 .home .work .work-top p, .home .location .location-top p {
		 font-size: 1.75rem;
		 line-height: 1.375;
	}
}
 @media only screen and (min-width: 1024px) {
	 .home .work .service-content p {
		 font-size: 1rem;
	}
	 .home .work .service-content h4 {
		 padding-bottom: 12px;
		 font-size: 1.25rem;
	}
}
 @media only screen and (min-width: 1440px) {
	 .home .work .service-content p {
		 font-size: 1.25rem;
	}
	 .home .work .service-content h4 {
		 padding-bottom: 12px;
		 font-size: 1.5rem;
	}
}
 .home .services {
	 position: relative;
	 text-align: center;
	 background-attachment: fixed;
	 background-size: cover;
}
 .home .services:before {
	 content: '';
	 display: block !important;
	 position: absolute;
	 z-index: 2;
	 top: 0;
	 bottom: 0;
	 left: 0;
	 right: 0;
	 width: 100%;
	 height: 100%;
	 opacity: 1;
	 background: #121719;
	 background: -moz-linear-gradient(0deg, #121719 0%, rgba(35, 61, 80, 0.5) 100%);
	 background: -webkit-linear-gradient(0deg, #121719 0%, rgba(35, 61, 80, 0.5) 100%);
	 background: linear-gradient(0deg, #121719 0%, rgba(35, 61, 80, 0.5) 100%);
	 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#121719",endColorstr="#233d50",GradientType=1);
}
 .home .services .wpb_column.vc_column_container.vc_col-sm-12 {
	 position: relative;
	 z-index: 2;
}
 .home .services strong, .home .services h2, .home .services p {
	 color: #fff;
}
 .home .services p {
	 color: #fff;
	 font-weight: 500;
	 font-size: 1rem;
	 line-height: 1.25;
	 margin-bottom: 2rem !important;
}
 @media only screen and (min-width: 768px) {
	 .home .services p {
		 font-size: 1.5rem;
		 line-height: 1.25;
		 margin-bottom: 3rem !important;
	}
}
 @media only screen and (min-width: 1440px) {
	 .home .services- p {
		 font-size: 1.75rem;
		 line-height: 1.375;
		 margin-bottom: 3.5rem !important;
	}
}
 .home .reviews {
	 position: relative;
	 text-align: center;
	 background-attachment: fixed;
	 background-size: cover;
}
 .home .reviews:before {
	 content: '';
	 display: block !important;
	 position: absolute;
	 z-index: 2;
	 top: 0;
	 bottom: 0;
	 left: 0;
	 right: 0;
	 width: 100%;
	 height: 100%;
	 opacity: 1;
	 background: #121719;
	 background: -moz-linear-gradient(0deg, #121719 0%, rgba(0, 0, 0, 0.75) 100%);
	 background: -webkit-linear-gradient(0deg, #121719 0%, rgba(0, 0, 0, 0.75) 100%);
	 background: linear-gradient(0deg, #121719 0%, rgba(0, 0, 0, 0.75) 100%);
	 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#121719",endColorstr="#000000",GradientType=1);
}
 .home .reviews .wpb_column.vc_column_container.vc_col-sm-12 {
	 position: relative;
	 z-index: 2;
}
 .home .reviews h2, .home .reviews p {
	 color: #fff;
}
 .home .reviews strong {
	 color: #fff;
}
 .home .reviews p {
	 color: #fff;
	 font-weight: 500;
	 font-size: 1rem;
	 line-height: 1.25;
	 margin-bottom: 2rem !important;
}
 @media only screen and (min-width: 768px) {
	 .home .reviews p {
		 font-size: 1.25rem;
		 line-height: 1.25;
		 margin-bottom: 2rem !important;
	}
}
 @media only screen and (min-width: 1440px) {
	 .home .reviews p {
		 font-size: 1.75rem;
		 line-height: 1.375;
	}
}
 .home .wp-google-list.wp-dark {
	 text-align: center !important;
}
 .home .wp-gr .wp-more-toggle {
	 display: block;
}
 .home .wp-gr.wpac .wp-google-review .wp-google-stars {
	 display: block;
}
 .home .wp-gr .wp-google-url, .home .wp-gr .wp-dark .wp-google-name, .home .wp-gr.wpac a.wp-google-name {
	 color: #8dc63f !important;
	 font-size: 1.125rem !important;
}
 .home .wp-gr .wp-more-toggle {
	 margin-top: 0.5rem !important;
	 color: #8dc63f !important;
}
 .home .wp-gr .wp-dark .wp-google-time {
	 color: #fff !important;
}
 .home .wp-gr .wp-google-left {
	 display: none !important;
}
 .home .wp-gr .wp-dark .wp-google-text {
	 color: #fff !important;
	 font-size: 1.125rem !important;
}
 @media only screen and (min-width: 1024px) {
	 .home .wp-google-reviews {
		 display: flex !important;
		 flex-flow: wrap !important;
		 justify-content: space-between !important;
	}
	 .home .wp-gr .wp-google-review {
		 margin-top: 15px !important;
		 margin: 1.5% !important;
		 width: 30% !important;
	}
}
 .home .areas .feature-item {
	 display: flex;
	 align-items: center;
	 align-content: center;
}
 .home .areas .feature-item h4 {
	 font-size: 1.25rem;
}
 .home .areas .feature-item h4 a {
	 color: #8dc63f;
}
 .home .areas p {
	 font-weight: 500;
	 font-size: 1rem;
	 line-height: 1.25;
	 margin-bottom: 2rem !important;
}
 @media only screen and (min-width: 768px) {
	 .home .areas p {
		 font-size: 1.5rem;
		 line-height: 1.25;
		 margin-bottom: 3rem !important;
	}
	 .home .areas .feature-item h4 {
		 font-size: 1.5rem;
	}
}
 @media only screen and (min-width: 1440px) {
	 .home .areas p {
		 font-size: 1.75rem;
		 line-height: 1.375;
		 margin-bottom: 3.5rem !important;
	}
	 .home .areas .feature-item h4 {
		 font-size: 1.75rem;
	}
}
 .home .areas .faqs .feature-item h4 {
	 font-size: 1rem;
}
 @media only screen and (min-width: 768px) {
	 .home .areas .faqs .feature-item h4 {
		 font-size: 1.25rem;
	}
}
 @media only screen and (min-width: 1440px) {
	 .home .areas .faqs .feature-item h4 {
		 font-size: 1.5rem;
	}
}
 .home .contact .wpb_text_column.wpb_content_element p {
	 font-weight: 500;
	 font-size: 1rem;
	 line-height: 1.25;
}
 .home .contact form.wpcf7-form {
	 text-align: center;
	 max-width: 768px !important;
	 margin: 0 auto !important;
}
 .home .contact input, .home textarea {
	 border: 2px solid black;
	 width: 100%;
	 box-sizing: border-box;
	 -webkit-border-radius: 8px;
	 -moz-border-radius: 8px;
	 border-radius: 8px;
}
 .home .contact input.wpcf7-submit {
	 width: 100%;
	 background: #8dc63f;
	 border: 2px solid #8dc63f;
	 color: #fff;
	 font-weight: 700;
	 letter-spacing: 0.5px;
}
 .home .contact input.wpcf7-submit:hover {
	 border: 2px solid #8dc63f;
	 background: transparent;
	 color: #8dc63f;
}
 .home .contact .wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors, .home .contact span.wpcf7-not-valid-tip {
	 display: none !important;
}
 .home .contact textarea.wpcf7-not-valid, .home .contact input.wpcf7-not-valid {
	 border: 2px solid red !important;
}
 @media only screen and (min-width: 768px) {
	 .home .contact input.wpcf7-submit, .home .contact .wpb_text_column.wpb_content_element p {
		 font-size: 1.5rem;
		 line-height: 1.25;
	}
	 .home .contact label {
		 font-size: 1.25rem;
	}
}
 @media only screen and (min-width: 1440px) {
	 .home .contact input.wpcf7-submit, .home .contact .wpb_text_column.wpb_content_element p {
		 font-size: 1.75rem;
		 line-height: 1.375;
	}
}



/* === General Styling Update ===*/

/* @media only screen and (min-width: 1280px) {

  .ql_services-template-default .theme-page,
  .page-services .theme-page,
  .page-locations .theme-page,
  .page-about .theme-page,
  .page-faq .theme-page,
  .page-electrician-jobs-northern-beaches .theme-page,
  .page-contact-us .theme-page {
      padding-top: 95px;
  }
}

@media only screen and (min-width: 1024px) {
 .sticky {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 9999;
     -webkit-box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.25);
     -moz-box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.25);
     box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.25);
 }

 .home .sticky {
    position: relative;
 }
} */


.grecaptcha-badge{
	visibility: collapse !important;
}

.bg-home {
  background-size: cover !important;
}

.slider-content-box,
.request-a-callback-from {
  background: rgba(38,38,40,0.85);
}

.contact-page iframe {
  width: 100% !important;
}

.site-container .page-header.vc_row.gray {
    background: #8dc63f;
}
.page-header-left h1 {
    color: #ffffff;
    font-weight: 700;
}



form.wpcf7-form input,
form.wpcf7-form textarea {
    width: 100%;
    max-width: 768px;
    border: 2px solid black;
    box-sizing : border-box;
}


form.wpcf7-form input.wpcf7-submit {
    width: 100%;
    background: #8dc63f;
    border: 2px solid #8dc63f;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
}


form.wpcf7-form input.wpcf7-submit:hover {
    border: 2px solid #8dc63f;
    background: transparent;
    color: #8dc63f;
}



@media only screen and (min-width: 768px) and (max-width: 1189px) {
  .contact-wrapper {
      display: none;
  }
  li#menu-item-2308 {
      display: none;
  }
  .menu-container {
      width: 600px !important;
      float: none !important;
  }
  .menu-container nav {
    float: right !important;
  }
  .sf-menu li a, .sf-menu li a:visited {
      padding: 12px 16px !important;
  }
}
.hide-menu {
	display: none !important;
} 


@media only screen and (min-width: 1024px) and (max-width: 1400px) {
.contact-wrapper .number-wrapper img {
    height: 16px !important;
}
.contact-wrapper .number-wrapper a {
	font-size: 16px !important;
}
.contact-wrapper .number-label {
    font-size: 16px !important;
}
.sf-menu li a, .sf-menu li a {
    font-size: 12px !important;
}
}

@media only screen and (min-width: 1440px) {
.contact-wrapper .number-wrapper img {
    height: 18px !important;
}
.contact-wrapper .number-wrapper a {
	font-size: 18px !important;
}
.contact-wrapper .number-label {
    font-size: 18px !important;
}
.sf-menu li a, .sf-menu li a {
    font-size: 13px !important;
}
}@media screen and (max-width:1189px)
{
	/* --- site container --- */
	.site-container.boxed
	{
		max-width: 850px;
	}
	p.description,
	.description p
	{
		font-size: 14px;
		line-height: 24px;
	}
	.vc_col-sm-6.padding-left-right-100
	{
		padding: 0 50px !important;
	}
	.vc_col-sm-4.padding-left-right-100
	{
		padding: 0 30px !important;
	}
	.padding-bottom-50,
	.vc_column_container.padding-bottom-50
	{
		padding-bottom: 35px !important;
	}
	.padding-bottom-61
	{
		padding-bottom: 46px;
	}
	.padding-bottom-66
	{
		padding-bottom: 51px;
	}
	.padding-bottom-70
	{
		padding-bottom: 55px;
	}
	.padding-bottom-87
	{
		padding-bottom: 72px;
	}
	.padding-top-54
	{
		padding-top: 39px;
	}
	.padding-top-67
	{
		padding-top: 52px;
	}
	.padding-top-70
	{
		padding-top: 55px;
	}
	.margin-top-67
	{
		margin-top: 52px;
	}
	.margin-top-70
	{
		margin-top: 55px;
	}
	/* --- headers --- */
	h4
	{
		font-size: 14px;
		line-height: 24px;
	}
	/* --- containers --- */
	.header-top-bar,
	.header,
	.site-container .vc_row,
	.site-container .vc_row.full-width .vc_col-sm-12.wpb_column .vc_row,
	.vc_row.full-width>.vc_col-sm-12>.wpb_wrapper>.announcement
	{
		width: 750px;
	}
	.header-container
	{
		padding: 26px 0 13px;
	}
	.header .logo
	{
		width: auto;
		max-width: auto;
	}
	.header-container.sticky.move
	{
		padding: 20px 0 7px;
	}
	.boxed .header-container.sticky.move
	{
		max-width: 850px;
	}
	/* --- page header --- */
	.page-header-left
	{
		width: 300px;
	}
	.page-header-right
	{	
		width: 450px;
	}
	/* --- menu --- */
	.menu-container
	{
		float: left;
		clear: both;
		width: 100%;
		margin-top: 20px;
	}
	.menu-container nav
	{
		float: left;
	}
	.sf-menu li a, .sf-menu li a:visited
	{
		padding: 12px 0 12px 16px;
	}
	.header-container.sticky.move .menu-container
	{
		margin-top: 5px;
	}
	/* --- vertical menu --- */
	.vertical-menu li a
	{
		padding: 18px 10px 18px 11px;
	}
	/* --- page --- */
	.page-margin-top,
	.error404 .feature-item.feature-item-big h4.page-margin-top,
	.page-template-404 .feature-item.feature-item-big h4.page-margin-top
	{
		margin-top: 35px;
	}
	.page-margin-top-section
	{
		margin-top: 50px;
	}
	.page-padding-top
	{
		padding-top: 35px;
	}
	.page-padding-top-section
	{
		padding-top: 50px;
	}
	/* --- slider revolution --- */
	.tp-revslider-mainul .tp-parallax-wrap
	{
		top: auto !important;
		bottom: 50px !important;
	}
	.tp-revslider-mainul .tp-mask-wrap,
	.tp-revslider-mainul .tp-loop-wrap
	{
		position: relative !important;
	}
	.slider-content-box
	{
		max-width: 380px;
		margin-left: 50px;
		padding-bottom: 42px;
	}
	.slider-content-box h2
	{
		font-size: 21px;
		line-height: 32px;
		padding: 16px 25px 17px;
	}
	.slider-content-box p
	{
		font-size: 14px;
		line-height: 24px;
		padding: 19px 25px 36px;
	}
	.slider-content-box .more
	{
		margin-left: 25px;
	}
	/* --- page layout --- */
	.vc_row .vc_col-sm-6 
	{
		width: 360px;
	}
	.vc_row .vc_col-sm-4,
	.vc_row .vc_col-sm-8 .vc_col-sm-6
	{
		width: 230px;
	}
	.vc_row .vc_col-sm-8 .cost-calculator-box .vc_col-sm-6
	{
		width: 200px;
	}
	.vc_row .vc_col-sm-8
	{
		width: 490px;
	}
	.vc_row .vc_col-sm-4 .column-1-2
	{
		width: 100%;
		margin-left: 0;
	}
	.column-2-3 .column-1-3
	{
		width: 156px;
	}
	.vc_row .vc_col-sm-3,
	.vc_row .vc_col-sm-6 .vc_col-sm-6
	{
		width: 165px;
	}
	.vc_row .vc_col-sm-9
	{
		width: 555px;
	}
	.vc_row .vc_col-sm-9 .vc_col-sm-9
	{
		width: 412px;
	}
	.vc_row .vc_col-sm-9  .vc_col-sm-6
	{
		width: 262px;
	}
	.row-4-4
	{
		display: flex;
		display: -ms-flexbox;
		display: -webkit-flexbox;
		display: -webkit-flex;
		flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
	}
	.row-4-4.vc_row .vc_col-sm-3
	{
		width: 360px;
	}
	.row-4-4.vc_row .vc_col-sm-3:nth-child(odd)
	{
		margin-left: 0;
	}
	.row-4-4.vc_row .vc_col-sm-3:nth-child(n+3)
	{
		margin-top: 35px;
	}
	/* --- blog --- */
	.blog .post-content
	{
		width: 435px;
	}
	.row-4-4.vc_row .vc_col-sm-3 .blog.small .post-content
	{
		width: 250px;
	}
	.blog.three-columns .post-details li
	{
		padding: 10px;
	}
	.blog.three-columns .post-details li.date::before,
	.blog.small .post-image
	{
		display: none;
	}
	.row-4-4.vc_row .vc_col-sm-3 .blog.small .post-image
	{
		display: block;
	}
	.vc_row .vc_col-sm-6 .blog .post-content,
	.vc_row .blog .vc_col-sm-6 .post-content
	{
		width: 240px;
	}
	/* --- comments list --- */
	#comments-list .comment-details
	{
		width: 435px;
	}
	#comments-list .children .comment-details
	{
		width: 315px;
	}
	/* --- buttons ---*/
	h3 .more
	{
		margin-left: 30px;
	}
	/* --- services --- */
	.services-list li,
	.team-box
	{
		width: 250px;
	}
	.services-list.services-icons li
	{
		width: 360px;
		padding: 35px 35px 31px;	
	}
	.services-list.services-icons li .service-content
	{
		margin-left: 123px;
	}
	.services-list li h4.box-header::after,
	.team-box h4.box-header::after
	{
		margin-top: 15px;
	}
	.services-list li p,
	.team-box p
	{
		padding: 15px 15px 0;
	}
	/* --- projects --- */
	.projects-list.isotope li,
	.projects-list.isotope li>a,
	.projects-list.isotope a>img
	{
		width: 230px;
		/*height: auto;*/
		height: 153px;
	}
	.projects-list.isotope li:hover .view p.description
	{
		margin-bottom: 25px;
	}
	.projects-list.isotope .more
	{
		padding: 12px 14px 11px;
		font-size: 11px;
	}
	/* --- features --- */
	.feature-item p
	{
		margin-top: 16px;
	}
	.vc_row .vc_col-sm-4 .feature-item::before
	{
		margin-right: 15px;
	}
	.vc_row .vc_col-sm-4 .feature-item p
	{
		margin-left: 103px;
	}
	.vc_row .vc_col-sm-4 .feature-item.feature-item-big::before
	{
		margin-right: auto;
	}
	.vc_row .vc_col-sm-4 .feature-item.feature-item-big p
	{
		margin-left: auto;
	}
	/* --- contact details --- */
	.contact-details li
	{
		padding: 15px 12px;
	}
	.contact-details li::before
	{
		margin-right: 5px;
	}
	.contact-details li:last-child
	{
		border: none;
	}
	/* --- timeline --- */
	.timeline-content span.timeline-subtitle
	{
		margin-top: 5px;
	}
	/* --- testimonails --- */
	.testimonials-container .caroufredsel_wrapper_testimonials
	{
		width: 630px !important;
	}
	.testimonials-list li
	{
		width: 630px;
	}
	.testimonials-list p
	{
		font-size: 18px;
		padding: 29px 30px 0;
		line-height: 28px;
		font-weight: 400;
	}
	.vc_col-sm-6 .type-small .testimonials-list li
	{
		width: 360px;
	}
	.vc_col-sm-4 .type-small .testimonials-list li
	{
		width: 230px;
	}
	.vc_col-sm-4 .type-small .testimonials-list p
	{
		padding: 23px 30px 27px;
	}
	.vc_col-sm-4 .type-small .testimonials-list .author-details-box
	{
		margin-left: 10px;
		margin-top: 40px;
	}
	.vc_col-sm-4 .type-small .testimonials-list .ornament
	{
		margin-left: 39px;
		margin-right: 38px;
	}
	.vc_col-sm-4 .type-small .testimonials-list .ornament::before
	{
		width: 38px;
		height: 38px;
		font-size: 38px;
		line-height: 38px;
		left: -39px;
	}
	/* --- our clients --- */
	.our-clients-list li
	{
		width: 165px;
		height: 116px;
	}
	.our-clients-list.type-list li,
	.our-clients-list.type-list li .vertical-align-cell
	{
		height: 120px;
	}
	/* --- contact details --- */
	.contact-details-box:before
	{
		float: none;
		margin-left: auto;
		margin-right: auto;
	}
	.contact-details-box p
	{
		clear: both;
		text-align: center;
	}
	/* --- tabs navigation --- */
	.tabs .ui-tabs-panel p
	{
		padding: 24px 0 0; 
	}
	/* --- call to action --- */
	.call-to-action .more
	{
		display: block;
	}
	/* --- cost calculator --- */
	.ui-slider
	{
		width: 328px;
	}
	.cost-calculator-box .cost-slider-container
	{
		clear: both;
		margin-left: 0;
		margin-top: 10px;
	}
	.ui-selectmenu-button
	{
		width: 240px !important;
	}
	.contact-form .cost-calculator-box p
	{
		margin-top: 0;
		padding: 0;
	}
	.contact-form .cost-calculator-sum p
	{
		margin-top: 14px;
	}
	.cost-calculator-box input.big
	{
		width: 160px;
	}
}
@media screen and (max-width:767px)
{
	/* --- site container --- */
	.site-container.boxed
	{
		max-width: 562px;
	}
	/* --- headers --- */
	h2,
	.error404 .feature-item.feature-item-big h4,
	.page-template-404 .feature-item.feature-item-big h4
	{
		font-size: 24px;
		line-height: 36px;
	}
	h3
	{
		font-size: 18px;
		line-height: 28px;
	}
	/* --- containers --- */
	.header-top-bar,
	.header,
	.site-container .vc_row,
	.site-container .vc_row.full-width .vc_col-sm-12.wpb_column .vc_row,
	.vc_row.full-width>.vc_col-sm-12>.wpb_wrapper>.announcement,
	.menu-container,
	.blog.horizontal-carousel li.post,
	.vc_row .type-small .testimonials-list li
	{
		width: 462px;
	}
	.header-container,
	.header-container.sticky.move
	{
		padding: 26px 0;
	}
	.header .logo
	{
		width: 432px;
		max-width: 432px;
	}
	.re-smart-column .wpb_wrapper
	{
		width: auto !important;
		position: static !important;
	}
	.re-smart-column
	{
		height: auto !important;
	}
	/* --- page header --- */
	.page-header-left,
	.page-header-right
	{
		width: 100%;
	}
	.bread-crumb-container
	{
		float: left;
	}
	/* --- menu --- */
	.menu-container
	{
		margin-top: 0;
	}
	.mobile-menu-container
	{
		display: block;
	}
	.mobile-menu-container nav
	{
		float: none;
	}
	.header-container.sticky.move
	{
		position: static;
		top: auto;
		width: auto;
		box-shadow: none;
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
	}
	.sf-menu
	{
		display: none;
	}
	.header .mobile-menu-switch
	{
		display: table-cell;
	}
	.header-container.sticky.move .menu-container
	{
		margin-top: 0;
	}
	.menu-item-has-children
	{
		position: relative;
	}
	.menu-item-has-children a.template-arrow-menu
	{
		position: absolute;
		width: 48px;
		height: 48px;
		top: 0;
		right: 0;
		margin: 0;
		padding: 0;
		-webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		-o-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	.menu-item-has-children a.template-arrow-menu::before
	{
		position: absolute;
		left: 17px;
		top: 16px;
	}
	.menu-item-has-children a.template-arrow-menu:hover
	{
		text-decoration: none;
	}
	.collapsible-mobile-submenus .menu-item-has-children ul
	{
		display: none;
	}
	.collapsible-mobile-submenus .menu-item-has-children .menu-item-has-children ul
	{
		display: block;
	}
	/* --- vertical menu --- */
	.vertical-menu li a
	{
		padding: 18px 18px 18px 19px;
	}
	/* --- slider revolution --- */
	.tp-revslider-mainul .tp-parallax-wrap
	{
		bottom: 20px !important;
	}
	.slider-content-box
	{
		max-width: 300px;
		margin-left: 20px;
		padding-bottom: 0px;
	}
	.slider-content-box h2
	{
		font-size: 16px;
		font-weight: 500;
		line-height: 26px;
		padding: 11px 18px 11px;
	}
	.slider-content-box p
	{
		font-size: 13px;
		line-height: 21px;
		padding: 13px 18px 15px;
	}
	.slider-content-box .more
	{
		display: none;
	}
	/* --- page layout --- */
	.flex-box
	{
		display: block;
	}
	.flex-hide
	{
		display: inline;
	}
	.flex-box .wpb_column
	{
		background: none !important;
	}
	.vc_row .wpb_column
	{
		margin-top: 40px;
	}
	.vc_row .wpb_column:first-child
	{
		margin-top: 0;
	}
	.vc_row-fluid [class*="vc_col-sm"]
	{
		margin-left: 0;
	}
	.vc_row .vc_col-sm-6, .vc_row .vc_col-sm-4, .vc_row .vc_col-sm-8, .vc_row .vc_col-sm-3, .vc_row .vc_col-sm-9 , .columns.no-width .column-left, .columns.no-width .column-right, .row-4-4.vc_row .vc_col-sm-3,
	.site-container .vc_row.full-width.flex-box>.wpb_column
	{
		width: 100%;
	}
	.vc_row .vc_col-sm-8 .vc_col-sm-6,
	.vc_row .vc_col-sm-4 .column-1-2,
	.vc_row .vc_col-sm-9  .vc_col-sm-6,
	.vc_row .vc_col-sm-6 .vc_col-sm-6
	{
		width: 216px;
	}
	.vc_row .vc_col-sm-8 .cost-calculator-box .vc_col-sm-6
	{
		width: 186px;
	}
	.vc_row .vc_col-sm-8 .vc_col-sm-6,
	.vc_row .vc_col-sm-4 .column-1-2,
	.vc_row .vc_col-sm-9  .vc_col-sm-6,
	.vc_row .vc_col-sm-6 .vc_col-sm-6
	{
		margin-left: 30px;
		margin-top: 0;
	}
	.vc_row .vc_col-sm-8 .vc_col-sm-6:first-child,
	.vc_row .vc_col-sm-4 .column-1-2:first-child,
	.vc_row .vc_col-sm-9  .vc_col-sm-6:first-child,
	.vc_row .vc_col-sm-6 .vc_col-sm-6:first-child
	{
		margin-left: 0;
	}
	.column-2-3 .column-1-3,
	.column-1-3 .column-1-3
	{
		width: 147px;
	}
	.vc_row .vc_col-sm-3.column-right
	{
		clear: both;
	}
	/* --- blog --- */
	.vc_row .wpb_column .blog .post-content
	{
		width: 362px;
	}
	.blog .post-details
	{
		width: 70px;
	}
	.blog.two-columns > li.wpb_column
	{
		margin-top: 70px;
	}
	.blog.three-columns,
	.blog.three-columns > li.wpb_column,
	.layout-column .blog.three-columns>li
	{
		margin-top: 35px;
	}
	.blog.two-columns > li:first-child,
	.blog.three-columns > li:first-child,
	.layout-column .blog.three-columns>li:first-child
	{
		margin-top: 0;
	}
	.blog.three-columns .post-details li
	{
		padding: 10px 20px;
	}
	.blog.three-columns .post-details li.date::before
	{
		display: inline;
	}
	.row-4-4.vc_row .vc_col-sm-3 .blog.small .post-content,
	.vc_row .blog.small .post-content
	{
		width: 352px;
	}
	.blog.small .post-image
	{
		display: block;
	}
	.blog.horizontal-carousel li.post
	{
		float: left;
		margin-top: 0;
	}
	/* --- comments list --- */
	#comments-list .comment-details
	{
		width: 357px;
		margin-left: 15px;
	}
	#comments-list .children
	{
		margin-left: 45px;
	}
	#comments-list .children .comment-details
	{
		width: 312px;
	}
	/* --- announcement --- */
	.announcement .vc_row .vc_col-sm-3
	{
		width: 100%;
		text-align: center;
		margin-top: 40px;
		margin-bottom: 20px;
	}
	.announcement .vertical-align,
	.announcement .vertical-align-cell
	{
		display: block;
		height: auto;
	}
	/* --- services --- */
	.services-list li,
	.team-box
	{
		width: 231px;
	}
	.services-list.services-icons li
	{
		clear: both;
		width: 100%;
	}
	body .services-list.services-icons li:nth-child(even)
	{
		margin-top: 30px;
		margin-left: 0;
		margin-right: 0;
	}
	/* --- projects --- */
	.projects-list li
	{
		width: 50%;
	}
	.projects-list.isotope li,
	.projects-list.isotope li>a,
	.projects-list.isotope a>img
	{
		width: 216px;
		height: 144px;
	}
	.projects-list li .view
	{
		display: none;
	}
	/* --- features --- */
	.vc_row .vc_col-sm-4 .feature-item::before
	{
		margin-right: 30px;
	}
	.vc_row .vc_col-sm-4 .feature-item p
	{
		margin-left: 118px;
	}
	/* --- contact details --- */
	.contact-details li,
	.contact-details li:first-child
	{
		border: none;
	}
	/* --- slider control --- */
	.slider-control
	{
		padding: 10px;
	}
	/* --- tabs navigation --- */
	.ui-tabs-nav li
	{
		margin-left: 10px;
	}
	.ui-tabs-nav li a
	{
		min-width: 130px;
		padding: 0px 0 13px;
	}
	/* --- contact details --- */
	.header-top-bar .contact-details
	{
		float: none;
		display: table;
		margin-left: auto;
		margin-right: auto;
	}
	.contact-details li
	{
		padding: 15px 5px;
	}
	/* --- testimonials --- */
	.testimonials-container .caroufredsel_wrapper_testimonials
	{
		width: 366px !important;
		left: 48px !important;
	}
	.testimonials-list li
	{
		width: 366px;
	}
	.testimonials-list p
	{
		font-size: 16px;
		line-height: 26px;
	}
	.vc_row .type-small .testimonials-list p
	{
		padding: 33px 40px 37px;
	}
	.vc_row .type-small .testimonials-list .author-details-box
	{
		margin-left: 30px;
		margin-top: 50px;
	}
	.vc_row  .type-small .testimonials-list .ornament
	{
		margin-left: 44px;
		margin-right: 43px;
	}
	.vc_row  .type-small .testimonials-list .ornament::before
	{
		width: 48px;
		height: 48px;
		font-size: 48px;
		line-height: 48px;
		left: -44px;
	}
	/* --- our clients --- */
	.our-clients-list-container
	{
		width: 370px;
		margin-left: auto;
		margin-right: auto;
	}
	.our-clients-list-container.type-list
	{
		width: auto;
	}
	.our-clients-list li
	{
		width: 170px;
		height: 120px;
	}
	/* --- contact details --- */
	.contact-details-box::before
	{
		float: left;
		margin-left: auto;
		margin-right: 30px;
	}
	.contact-details-box p
	{
		clear: none;
		text-align: left;
	}
	/* --- social icons --- */
	/*.header-top-bar .social-icons
	{
		clear: both;
		float: none;
		display: table;
		margin-left: auto;
		margin-right: auto;
	}*/
	.header-top-bar .social-icons li,
	.header-top-bar .social-icons li:first-child
	{
		border: none;
	}
	/* --- search --- */
	.header-top-bar .template-search
	{
		border: none;
	}
	/* --- call to action --- */
	.call-to-action .more
	{
		display: inline;
	}
	/* --- accordion --- */
	.vc_row .vc_col-sm-9 .vc_col-sm-6 .accordion .ui-accordion-header,
	.vc_row .vc_col-sm-9 .vc_col-sm-6 .accordion  .ui-accordion-header.ui-state-active:hover
	{
		padding: 6px 5px;
	}
	.vc_row .vc_col-sm-9 .vc_col-sm-6 .accordion .ui-accordion-header:hover
	{
		padding-left: 10px;
		padding-right: 0;
	}
	/* --- cost calculator --- */
	.cost-calculator-box input.big
	{
		width: 133px;
	}
	.ui-slider
	{
		width: 300px;
	}
	.ui-selectmenu-button
	{
		width: 220px !important;
	}
	/* --- misc --- */
	.scroll-top.animated-element
	{
		right: 10px;
		bottom: 10px;
	}
}
@media screen and (max-width:479px)
{	
	/* --- site container --- */
	.site-container.boxed
	{
		max-width: 400px;
	}
	table td, table th
	{
		padding: 8px 10px;
	}
	/* --- headers --- */
	h2,
	.error404 .feature-item.feature-item-big h4,
	.page-template-404 .feature-item.feature-item-big h4
	{
		font-size: 21px;
		line-height: 32px;
	}
	h3
	{
		font-size: 16px;
		line-height: 26px;
	}
	/* --- header --- */
	.header-top-bar,
	.header,
	.site-container .vc_row,
	.site-container .vc_row.full-width .vc_col-sm-12.wpb_column .vc_row,
	.vc_row.full-width>.vc_col-sm-12>.wpb_wrapper>.announcement,
	.menu-container,
	.blog .post-details,
	.vc_row .wpb_column .blog .post-content,
	.blog.horizontal-carousel li.post,
	.vc_row .type-small .testimonials-list li
	{
		width: 300px;
	}
	.header-top-bar
	{
		display: none;
		padding-top: 10px;
	}
	.header-top-bar-container .header-toggle
	{
		display: block;
	}
	.header-top-bar .social-icons,
	.header-top-bar .search-container
	{	
		float: left;
	}
	.header .logo
	{
		width: 270px;
		max-width: 270px;
	}
	/* --- slider revolution --- */
	.tp-revslider-mainul .tp-parallax-wrap
	{
		bottom: 10px !important;
	}
	.slider-content-box
	{
		margin-left: 10px;
	}
	.slider-content-box h2
	{
		font-size: 14px;
		line-height: 24px;
		padding: 9px 15px 8px;
		border-bottom: none;
	}
	.slider-content-box p
	{
		display: none;
	}
	/* --- page layout --- */
	.vc_row.vc_row-fluid [class*="vc_col-sm"]
	{
		margin-top: 40px;
	}
	.vc_row.vc_row-fluid [class*="vc_col-sm"]:first-child
	{
		margin-top: 0;
	}
	.vc_row .vc_col-sm-8 .vc_col-sm-6,
	.vc_row .vc_col-sm-4 .column-1-2,
	.vc_row .vc_col-sm-9 .vc_col-sm-9,
	.vc_row .vc_col-sm-9 .vc_col-sm-6,
	.vc_row .vc_col-sm-6 .vc_col-sm-6,
	.vc_row .vc_col-sm-8 .cost-calculator-box .vc_col-sm-6
	{
		width: 100%;
	}
	.vc_row .vc_col-sm-8 .vc_col-sm-6, .vc_row .vc_col-sm-4 .column-1-2,
	.vc_row .vc_col-sm-9  .vc_col-sm-9,
	.vc_row .vc_col-sm-9  .vc_col-sm-6,
	.vc_row .vc_col-sm-6 .vc_col-sm-6
	{
		margin-left: 0;
		margin-top: 30px;
	}
	/* --- contact details --- */
	.contact-details li
	{
		padding: 5px;
	}
	/* --- social icons --- */
	.header-top-bar .social-icons li a,
	.header-top-bar .template-search
	{
		padding: 10px;
	}
	/* --- blog --- */
	.blog .post-details
	{
		margin-right: 0;
		border-bottom: 1px solid #E2E6E7;
		margin-bottom: 20px;
	}
	.blog .post-details li
	{
		float: left;
		border-top: none;
		padding: 10px 20px;
	}
	.blog .post-details li:first-child
	{
		padding-left: 0;
	}
	.blog .post-details li:last-child
	{
		border-right: none;
		padding-right: 0;
	}
	.blog .post-details li::before,
	.blog .post-details li.date:before
	{
		display: inline;
		margin-bottom: 0;
		margin-right: 10px;
	}
	.blog .post-details li.date h2
	{
		display: inline;
		margin: 0 2px;
		color: #999;
		font-size: 13px;
		font-weight: 500;
		line-height: 1;
	}
	.blog .post-details li.date h2::after
	{
		content: ",";
	}
	.blog.small .post-details
	{
		width: auto;
		border: none;
		margin-bottom: 0;
	}
	.blog.small .post-details li
	{
		float: none;
		width: auto;
	}
	.row-4-4.vc_row .vc_col-sm-3 .blog.small .post-content, 
	.vc_row .blog.small .post-content
	{
		width: 190px;
	}
	/* --- comments list --- */
	.comment-author-avatar
	{
		display: none;
	}
	#comments-list .comment-details
	{
		width: 300px;
		margin-left: 0;
	}
	#comments-list .children
	{
		margin-left: 15px;
	}
	#comments-list .children .comment-details
	{
		width: 285px;
	}
	/* --- timeline --- */
	.timeline-item .timeline-left
	{
		width: 130px;
		min-width: 130px;
	}
	.timeline-item label
	{
		max-width: 80px;
		padding: 4px 5px 6px;
	}
	.timeline-item .label-triangle
	{
		margin-right: 25px;
	}
	.timeline-content
	{
		padding-left: 25px;
	}
	.timeline-content span
	{
		float: left;
		clear: both;
	}
	.timeline-content span.timeline-title
	{
		margin-right: 0;
	}
	/* --- testimonials --- */
	.testimonials-container .caroufredsel_wrapper_testimonials
	{	
		width: 300px !important;
		left: 0 !important;
	}
	.testimonials-list li
	{
		width: 300px;
	}
	.testimonials-list p
	{
		/*padding: 29px 0 0;*/
	}
	.slider-control
	{
		top: 20px;
	}
	/* --- buttons --- */
	h3 .more
	{
		margin-left: 0;
	}
	.button-label
	{
		display: none;
	}
	/* --- services --- */
	.services-list li,
	.team-box
	{
		width: 300px;
	}
	.services-list li p,
	.team-box p
	{
		padding: 15px 10px 0;
	}
	.services-list.services-icons li
	{
		padding: 30px 30px 26px;
	}
	.services-list li .service-icon::before,
	.services-list.services-icons li .service-content
	{
		clear: both;
		margin-left: 0;
	}
	.services-list.services-icons li h4
	{
		margin-top: 0;
	}
	.services-list.services-icons li .service-content
	{
		float: left;
		margin-top: 24px;
	}
	/* --- projects --- */
	.projects-list.isotope,
	.projects-list.isotope li,
	.projects-list.isotope li>a,
	.projects-list.isotope a>img
	{
		width: 270px;
	}
	.projects-list.isotope li,
	.projects-list.isotope li>a,
	.projects-list.isotope a>img
	{
		height: 180px;
	}
	.projects-list.isotope
	{
		margin-left: auto;
		margin-right: auto;
	}
	.projects-list li:hover .view p.description
	{
		margin-bottom: 25px;
	}
	.projects-list .more
	{
		padding: 12px 14px 11px;
		font-size: 11px;
	}
	/* --- our clients --- */
	.our-clients-list-container
	{
		width: 300px;
	}
	.our-clients-list li
	{
		width: 145px;
		height: 102px;
		margin-right: 10px;
	}
	.our-clients-list.type-list li
	{
		width: 49%;
	}
	.our-clients-list.type-list li:nth-child(n+3)
	{
		margin-top: -1px;
	}
	/* --- contact details --- */
	.contact-details-box::before
	{
		margin-right: 10px;
	}
	.contact-details li
	{
		clear: both;
	}
	.header-top-bar .contact-details
	{
		display: block;
	}
	/* --- search --- */
	.search-form
	{
		left: 0;
		right: auto;
	}
	.search-container .template-search
	{
		padding-left: 5px;
	}
	/* --- tabs navigation --- */
	.ui-tabs-nav
	{
		width: 300px;
		margin-left: auto;
		margin-right: auto;
		text-align: left;
	}
	.small .ui-tabs-nav
	{
		text-align: center;
	}
	.ui-tabs-nav li
	{
		margin-left: 0;
		margin-right: 6px;
		margin-top: 10px;
	}
	.small .ui-tabs-nav li
	{
		margin-top: 0;
		margin-left: 0;
	}
	.ui-tabs-nav li a
	{
		padding: 5px 0 5px;
	}
	.ui-tabs-nav a::before
	{
		display: none;
	}
	.ui-tabs-nav li.ui-tabs-active:after
	{
		display: none;
	}
	/* --- accordion --- */
	.vc_row .vc_col-sm-9 .vc_col-sm-6 .accordion .ui-accordion-header,
	.vc_row .vc_col-sm-9 .vc_col-sm-6 .accordion  .ui-accordion-header.ui-state-active:hover,
	.accordion .ui-accordion-header,
	.accordion  .ui-accordion-header.ui-state-active:hover
	{
		padding: 16px 15px;
	}
	.vc_row .vc_col-sm-9 .vc_col-sm-6 .accordion .ui-accordion-header:hover,
	.accordion .ui-accordion-header:hover
	{
		padding-left: 25px;
		padding-right: 5px;
	}
	/* --- map --- */
	.column-2-3 #map
	{
		height: 300px;
	}
	/* --- cost calculator --- */
	.cost-calculator-box
	{
		padding: 15px;
	}
	.cost-calculator-box input.big
	{
		width: 238px;
		margin-top: 15px;
	}
	.ui-slider
	{
		width: 168px;
	}
	.ui-slider-handle .cost-slider-tooltip
	{
		top: 30px;
	}
	.ui-slider-handle .cost-slider-tooltip .value
	{
		padding: 7px 0;
	}
	.ui-selectmenu-button
	{
		width: 268px !important;
		margin-top: 15px;
	}
	.cost-calculator-box::before
	{
		display: none;
	}
}
@media screen and (max-device-width: 480px)
{
	body
	{
		-webkit-text-size-adjust: none;
	}
}@charset "UTF-8";

@font-face {
  font-family: "streamline-small";
  src:url("/wp-content/themes/renovate/fonts/streamline-small/fonts/streamline-small.eot?x21533");
  src:url("/wp-content/themes/renovate/fonts/streamline-small/fonts/streamline-small.eot?#iefix&x21533") format("embedded-opentype"),
    url("/wp-content/themes/renovate/fonts/streamline-small/fonts/streamline-small.woff?x21533") format("woff"),
    url("/wp-content/themes/renovate/fonts/streamline-small/fonts/streamline-small.ttf?x21533") format("truetype"),
    url("/wp-content/themes/renovate/fonts/streamline-small/fonts/streamline-small.svg#streamline-small") format("svg");
  font-weight: normal;
  font-style: normal;

}

[data-icon]:before {
  font-family: "streamline-small" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  vertical-align: middle;
  speak: none;
  line-height: 1;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="sl-small-"]:before,
[class*=" sl-small-"]:before {
  font-family: "streamline-small" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  vertical-align: middle;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.sl-small-helmet:before {
  content: "a";
  height: 48px;
  line-height: 46px;
}
.sl-small-wallet:before {
  content: "b";
  height: 48px;
  line-height: 52px;
}
.sl-small-roller:before {
  content: "c";
  height: 48px;
  line-height: 48px;
}
.sl-small-driller:before {
  content: "d";
  height: 48px;
  line-height: 38px;
}
.sl-small-bubble-check:before {
  content: "e";
  height: 48px;
  line-height: 48px;
}
.sl-small-shield:before {
  content: "f";
  height: 48px;
  line-height: 48px;
}
.sl-small-truck:before {
  content: "g";
  height: 48px;
  line-height: 34px;
}
.sl-small-house-1:before {
  content: "h";
  height: 48px;
  line-height: 38px;
}
.sl-small-eco:before {
  content: "i";
  height: 48px;
  line-height: 48px;
}
.sl-small-garage:before {
  content: "j";
  height: 48px;
  line-height: 38px;
}
.sl-small-conversation:before {
  content: "k";
  height: 48px;
  line-height: 48px;
}
.sl-small-phone:before {
  content: "l";
  height: 48px;
  line-height: 48px;
}
.sl-small-location:before {
  content: "m";
  height: 48px;
  line-height: 52px;
}
.sl-small-mail:before {
  content: "n";
  height: 48px;
  line-height: 38px;
}
.sl-small-wrench:before {
  content: "o";
  height: 48px;
  line-height: 48px;
}
.sl-small-measure:before {
  content: "p";
  height: 48px;
  line-height: 48px;
}
.sl-small-bucket:before {
  content: "q";
  height: 48px;
  line-height: 48px;
}
.sl-small-globe:before {
  content: "r";
  height: 48px;
  line-height: 48px;
}
.sl-small-house-2:before {
  content: "s";
  height: 48px;
  line-height: 44px;
}
.sl-small-briefcase:before {
  content: "t";
  height: 48px;
  line-height: 38px;
}
.sl-small-quote:before {
  content: "u";
  height: 48px;
  line-height: 52px;
}
.sl-small-clock:before {
  content: "v";
  height: 48px;
  line-height: 48px;
}
.sl-small-fax:before {
  content: "w";
  height: 48px;
  line-height: 44px;
}
.sl-small-key:before {
  content: "x";
  height: 48px;
  line-height: 48px;
}
.sl-small-pencil:before {
  content: "y";
  height: 48px;
  line-height: 44px;
}
.sl-small-hammer:before {
  content: "z";
  height: 48px;
  line-height: 46px;
}
.sl-small-wrenches:before {
  content: "A";
  height: 48px;
  line-height: 48px;
}
.sl-small-screwdriver:before {
  content: "B";
  height: 48px;
  line-height: 48px;
}
.sl-small-ruler:before {
  content: "C";
  height: 48px;
  line-height: 48px;
}
.sl-small-stationery:before {
  content: "D";
  height: 48px;
  line-height: 48px;
}
.sl-small-faq:before {
  content: "E";
  height: 48px;
  line-height: 44px;
}
.sl-small-bubble:before {
  content: "F";
  height: 48px;
  line-height: 48px;
}
.sl-small-person:before {
  content: "G";
  height: 48px;
  line-height: 48px;
}
.sl-small-team:before {
  content: "H";
  height: 48px;
  line-height: 38px;
}
.sl-small-camera:before {
  content: "I";
  height: 48px;
  line-height: 48px;
}
.sl-small-picture:before {
  content: "J";
  height: 48px;
  line-height: 44px;
}
.sl-small-cart-1:before {
  content: "K";
  height: 48px;
  line-height: 48px;
}
.sl-small-cart-2:before {
  content: "L";
  height: 48px;
  line-height: 48px;
}
.sl-small-photo:before {
  content: "M";
  height: 48px;
  line-height: 48px;
}
.sl-small-video:before {
  content: "N";
  height: 48px;
  line-height: 48px;
}
.sl-small-speaker:before {
  content: "O";
  height: 48px;
  line-height: 50px;
}
.sl-small-lock:before {
  content: "P";
  height: 48px;
  line-height: 48px;
}
.sl-small-trophy:before {
  content: "Q";
  height: 48px;
  line-height: 48px;
}
.sl-small-chat:before {
  content: "R";
  height: 48px;
  line-height: 48px;
}
.sl-small-list:before {
  content: "S";
  height: 48px;
  line-height: 48px;
}
.sl-small-poster:before {
  content: "T";
  height: 48px;
  line-height: 48px;
}
.sl-small-documents:before {
  content: "U";
  height: 48px;
  line-height: 48px;
}
.sl-small-forklift:before {
  content: "V";
  height: 48px;
  line-height: 38px;
}
.sl-small-building:before {
  content: "W";
  height: 48px;
  line-height: 48px;
}
.sl-small-fence:before {
  content: "X";
  height: 48px;
  line-height: 48px;
}
.sl-small-lab:before {
  content: "Y";
  height: 48px;
  line-height: 48px;
}
.sl-small-watering-can:before {
  content: "Z";
  height: 48px;
  line-height: 40px;
}
.sl-small-trowel:before {
  content: "0";
  height: 48px;
  line-height: 48px;
}
.sl-small-shovel:before {
  content: "1";
  height: 48px;
  line-height: 48px;
}
.sl-small-cone:before {
  content: "2";
  height: 48px;
  line-height: 48px;
}
.sl-small-lightbulb:before {
  content: "3";
  height: 48px;
  line-height: 48px;
}
.sl-small-door:before {
  content: "4";
  height: 48px;
  line-height: 48px;
}
.sl-small-bricks:before {
  content: "5";
  height: 48px;
  line-height: 34px;
}
.sl-small-brush-1:before {
  content: "6";
  height: 48px;
  line-height: 48px;
}
.sl-small-brush-2:before {
  content: "7";
  height: 48px;
  line-height: 48px;
}
.sl-small-percent:before {
  content: "8";
  height: 48px;
  line-height: 48px;
}
.sl-small-gears:before {
  content: "9";
  height: 48px;
  line-height: 48px;
}
.sl-small-tick:before {
  content: "!";
  height: 48px;
  line-height: 42px;
}
.sl-small-plan:before {
  content: "@";
  height: 48px;
  line-height: 48px;
}
.sl-small-megaphone:before {
  content: "#";
  height: 48px;
  line-height: 48px;
}
.sl-small-calculator:before {
  content: "$";
  height: 48px;
  line-height: 48px;
}
.sl-small-trolley:before {
  content: "%";
  height: 48px;
  line-height: 48px;
}
.sl-small-payment:before {
  content: "^";
  height: 48px;
  line-height: 48px;
}
.sl-small-construction:before {
  content: "&";
  height: 48px;
  line-height: 48px;
}
.sl-small-scissors:before {
  content: "*";
  height: 48px;
  line-height: 48px;
}@charset "UTF-8";

@font-face {
  font-family: "streamline-large";
  src:url("/wp-content/themes/renovate/fonts/streamline-large/fonts/streamline-large.eot?x21533");
  src:url("/wp-content/themes/renovate/fonts/streamline-large/fonts/streamline-large.eot?#iefix&x21533") format("embedded-opentype"),
    url("/wp-content/themes/renovate/fonts/streamline-large/fonts/streamline-large.woff?x21533") format("woff"),
    url("/wp-content/themes/renovate/fonts/streamline-large/fonts/streamline-large.ttf?x21533") format("truetype"),
    url("/wp-content/themes/renovate/fonts/streamline-large/fonts/streamline-large.svg#streamline-large") format("svg");
  font-weight: normal;
  font-style: normal;

}

[data-icon]:before {
  font-family: "streamline-large" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  vertical-align: middle;
  speak: none;
  line-height: 1;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="sl-large-"]:before,
[class*=" sl-large-"]:before {
  font-family: "streamline-large" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  vertical-align: middle;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.sl-large-helmet:before {
  content: "a";
  height: 60px;
  line-height: 58px;
}
.sl-large-wallet:before {
  content: "b";
  height: 60px;
  line-height: 64px;
}
.sl-large-roller:before {
  content: "c";
  height: 60px;
  line-height: 60px;
}
.sl-large-driller:before {
  content: "d";
  height: 60px;
  line-height: 60px;
}
.sl-large-bubble-check:before {
  content: "e";
  height: 60px;
  line-height: 60px;
}
.sl-large-shield:before {
  content: "f";
  height: 60px;
  line-height: 60px;
}
.sl-large-truck:before {
  content: "g";
  height: 60px;
  line-height: 42px;
}
.sl-large-house-1:before {
  content: "h";
  height: 60px;
  line-height: 54px;
}
.sl-large-eco:before {
  content: "i";
  height: 60px;
  line-height: 60px;
}
.sl-large-garage:before {
  content: "j";
  height: 60px;
  line-height: 54px;
}
.sl-large-conversation:before {
  content: "k";
  height: 60px;
  line-height: 60px;
}
.sl-large-phone:before {
  content: "l";
  height: 60px;
  line-height: 60px;
}
.sl-large-location:before {
  content: "m";
  height: 60px;
  line-height: 64px;
}
.sl-large-mail:before {
  content: "n";
  height: 60px;
  line-height: 60px;
}
.sl-large-wrench:before {
  content: "o";
  height: 60px;
  line-height: 60px;
}
.sl-large-measure:before {
  content: "p";
  height: 60px;
  line-height: 60px;
}
.sl-large-bucket:before {
  content: "q";
  height: 60px;
  line-height: 60px;
}
.sl-large-globe:before {
  content: "r";
  height: 60px;
  line-height: 60px;
}
.sl-large-house-2:before {
  content: "s";
  height: 60px;
  line-height: 60px;
}
.sl-large-briefcase:before {
  content: "t";
  height: 60px;
  line-height: 60px;
}
.sl-large-quote:before {
  content: "u";
  height: 60px;
  line-height: 60px;
}
.sl-large-clock:before {
  content: "v";
  height: 60px;
  line-height: 60px;
}
.sl-large-fax:before {
  content: "w";
  height: 60px;
  line-height: 56px;
}
.sl-large-key:before {
  content: "x";
  height: 60px;
  line-height: 60px;
}
.sl-large-pencil:before {
  content: "y";
  height: 60px;
  line-height: 56px;
}
.sl-large-hammer:before {
  content: "z";
  height: 60px;
  line-height: 58px;
}
.sl-large-wrenches:before {
  content: "A";
  height: 60px;
  line-height: 60px;
}
.sl-large-screwdriver:before {
  content: "B";
  height: 60px;
  line-height: 60px;
}
.sl-large-ruler:before {
  content: "C";
  height: 60px;
  line-height: 60px;
}
.sl-large-stationery:before {
  content: "D";
  height: 60px;
  line-height: 60px;
}
.sl-large-faq:before {
  content: "E";
  height: 60px;
  line-height: 58px;
}
.sl-large-bubble:before {
  content: "F";
  height: 60px;
  line-height: 60px;
}
.sl-large-person:before {
  content: "G";
  height: 60px;
  line-height: 60px;
}
.sl-large-team:before {
  content: "H";
  height: 60px;
  line-height: 50px;
}
.sl-large-camera:before {
  content: "I";
  height: 60px;
  line-height: 60px;
}
.sl-large-picture:before {
  content: "J";
  height: 60px;
  line-height: 56px;
}
.sl-large-cart-1:before {
  content: "K";
  height: 60px;
  line-height: 60px;
}
.sl-large-cart-2:before {
  content: "L";
  height: 60px;
  line-height: 60px;
}
.sl-large-photo:before {
  content: "M";
  height: 60px;
  line-height: 60px;
}
.sl-large-video:before {
  content: "N";
  height: 60px;
  line-height: 60px;
}
.sl-large-speaker:before {
  content: "O";
  height: 60px;
  line-height: 60px;
}
.sl-large-lock:before {
  content: "P";
  height: 60px;
  line-height: 60px;
}
.sl-large-trophy:before {
  content: "Q";
  height: 60px;
  line-height: 60px;
}
.sl-large-chat:before {
  content: "R";
  height: 60px;
  line-height: 60px;
}
.sl-large-list:before {
  content: "S";
  height: 60px;
  line-height: 60px;
}
.sl-large-poster:before {
  content: "T";
  height: 60px;
  line-height: 60px;
}
.sl-large-documents:before {
  content: "U";
  height: 60px;
  line-height: 60px;
}
.sl-large-forklift:before {
  content: "V";
  height: 60px;
  line-height: 44px;
}
.sl-large-building:before {
  content: "W";
  height: 60px;
  line-height: 60px;
}
.sl-large-fence:before {
  content: "X";
  height: 60px;
  line-height: 60px;
}
.sl-large-lab:before {
  content: "Y";
  height: 60px;
  line-height: 60px;
}
.sl-large-watering-can:before {
  content: "Z";
  height: 60px;
  line-height: 60px;
}
.sl-large-trowel:before {
  content: "0";
  height: 60px;
  line-height: 60px;
}
.sl-large-shovel:before {
  content: "1";
  height: 60px;
  line-height: 60px;
}
.sl-large-cone:before {
  content: "2";
  height: 60px;
  line-height: 60px;
}
.sl-large-lightbulb:before {
  content: "3";
  height: 60px;
  line-height: 60px;
}
.sl-large-door:before {
  content: "4";
  height: 60px;
  line-height: 60px;
}
.sl-large-bricks:before {
  content: "5";
  height: 60px;
  line-height: 60px;
}
.sl-large-brush-1:before {
  content: "6";
  height: 60px;
  line-height: 60px;
}
.sl-large-brush-2:before {
  content: "7";
  height: 60px;
  line-height: 60px;
}
.sl-large-percent:before {
  content: "8";
  height: 60px;
  line-height: 60px;
}
.sl-large-gears:before {
  content: "9";
  height: 60px;
  line-height: 60px;
}
.sl-large-tick:before {
  content: "!";
  height: 60px;
  line-height: 60px;
}
.sl-large-plan:before {
  content: "@";
  height: 60px;
  line-height: 60px;
}
.sl-large-megaphone:before {
  content: "#";
  height: 60px;
  line-height: 60px;
}
.sl-large-calculator:before {
  content: "$";
  height: 60px;
  line-height: 60px;
}
.sl-large-trolley:before {
  content: "%";
  height: 60px;
  line-height: 60px;
}
.sl-large-payment:before {
  content: "^";
  height: 60px;
  line-height: 60px;
}
.sl-large-construction:before {
  content: "&";
  height: 60px;
  line-height: 60px;
}
.sl-large-scissors:before {
  content: "*";
  height: 60px;
  line-height: 60px;
}@charset "UTF-8";

@font-face {
  font-family: "template";
  src:url("/wp-content/themes/renovate/fonts/template/fonts/template.eot?x21533");
  src:url("/wp-content/themes/renovate/fonts/template/fonts/template.eot?#iefix&x21533") format("embedded-opentype"),
    url("/wp-content/themes/renovate/fonts/template/fonts/template.woff?x21533") format("woff"),
    url("/wp-content/themes/renovate/fonts/template/fonts/template.ttf?x21533") format("truetype"),
    url("/wp-content/themes/renovate/fonts/template/fonts/template.svg#template") format("svg");
  font-weight: normal;
  font-style: normal;

}

[data-icon]:before {
  font-family: "template" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  vertical-align: middle;
  speak: none;
  line-height: 1;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="template-"]:before,
[class*=" template-"]:before {
  font-family: "template" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  vertical-align: middle;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.template-arrow-left-1:before {
  content: "a";
}
.template-arrow-right-1:before {
  content: "b";
}
.template-arrow-left-2:before {
  content: "c";
}
.template-arrow-right-2:before {
  content: "d";
}
.template-arrow-menu:before {
  content: "e";
}
.template-map-marker:before {
  content: "f";
}
.template-arrow-circle-down:before {
  content: "g";
}
.template-arrow-circle-right:before {
  content: "h";
}
.template-bullet:before {
  content: "i";
}
.template-search:before {
  content: "j";
}
.template-shopping-cart:before {
  content: "k";
}
.template-phone:before {
  content: "l";
}
.template-mail:before {
  content: "m";
}
.template-clock:before {
  content: "n";
}
.template-location:before {
  content: "o";
}
.template-eye:before {
  content: "p";
}
.template-bubble:before {
  content: "q";
}
.template-arrow-up:before {
  content: "r";
}
.template-calendar:before {
  content: "s";
}
.template-arrow-dropdown:before {
  content: "t";
}
@charset "UTF-8";

@font-face {
  font-family: "social";
  src:url("/wp-content/themes/renovate/fonts/social/fonts/social.eot?x21533");
  src:url("/wp-content/themes/renovate/fonts/social/fonts/social.eot?#iefix&x21533") format("embedded-opentype"),
    url("/wp-content/themes/renovate/fonts/social/fonts/social.woff?x21533") format("woff"),
    url("/wp-content/themes/renovate/fonts/social/fonts/social.ttf?x21533") format("truetype"),
    url("/wp-content/themes/renovate/fonts/social/fonts/social.svg#social") format("svg");
  font-weight: normal;
  font-style: normal;

}

[data-icon]:before {
  font-family: "social" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  vertical-align: middle;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="social-"]:before,
[class*=" social-"]:before {
  font-family: "social" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  vertical-align: middle;
  speak: none;
  line-height: 1;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.social-facebook:before {
  content: "a";
}
.social-twitter:before {
  content: "b";
}
.social-google-plus:before {
  content: "c";
}
.social-youtube:before {
  content: "d";
}
.social-linkedin:before {
  content: "e";
}
.social-pinterest:before {
  content: "f";
}
.social-dribble:before {
  content: "g";
}
.social-skype:before {
  content: "h";
}
.social-tumblr:before {
  content: "i";
}
.social-instagram:before {
  content: "j";
}
.social-xing:before {
  content: "k";
}
.social-flickr:before {
  content: "l";
}
.social-foursquare:before {
  content: "m";
}
.social-rss:before {
  content: "n";
}
.social-behance:before {
  content: "o";
}
.social-picasa:before {
  content: "p";
}
.social-stumbleupon:before {
  content: "r";
}
.social-vimeo:before {
  content: "s";
}
.social-houzz:before {
  content: "t";
}
.social-yelp:before {
  content: "q";
}
.social-github:before {
  content: "u";
}
.social-reddit:before {
  content: "v";
}
.social-soundcloud:before {
  content: "w";
}
.social-vk:before {
  content: "x";
}
.social-vine:before {
  content: "y";
}
.social-angies-list:before {
  content: "z";
}
.social-envato:before {
  content: "A";
}/* put here your custom css styles */

.bg-home {
    background-image: url("https://www.plateauelectrical.com.au/wp-content/uploads/2015/01/s961444532628031865_p45_i4_w1820-compressed-1800x600.jpg");
    background-size: cover;
    background-position: center;
}

.slider-content-box h1 {
    color: #FFF;
    border-bottom: 1px solid #F4BC16;
    padding: 21px 30px 20px;
    background: rgba(38, 38, 40, 0.68);
}

.slider-content-box h1 {
    border-color: #8dc63f;
}

.wpac,.wpac h1,.wpac h2,.wpac h3,.wpac h4,.wpac h5,.wpac h6,.wpac p,.wpac td,.wpac dl,.wpac tr,.wpac dt,.wpac ol,.wpac form,.wpac select,.wpac option,.wpac pre,.wpac div,.wpac table,.wpac th,.wpac tbody,.wpac tfoot,.wpac caption,.wpac thead,.wpac ul,.wpac li,.wpac address,.wpac blockquote,.wpac dd,.wpac fieldset,.wpac li,.wpac strong,.wpac legend,.wpac em,.wpac s,.wpac cite,.wpac span,.wpac input,.wpac sup,.wpac label,.wpac dfn,.wpac object,.wpac big,.wpac q,.wpac font,.wpac samp,.wpac acronym,.wpac small,.wpac img,.wpac strike,.wpac code,.wpac sub,.wpac ins,.wpac textarea,.wpac var,.wpac a,.wpac abbr,.wpac applet,.wpac del,.wpac kbd,.wpac tt,.wpac b,.wpac i,.wpac hr{background-attachment:scroll!important;background-color:transparent!important;background-image:none!important;background-position:0 0!important;background-repeat:repeat!important;border-color:black!important;border-color:currentColor!important;border-radius:0!important;border-style:none!important;border-width:medium!important;bottom:auto!important;clear:none!important;clip:auto!important;color:inherit!important;counter-increment:none!important;counter-reset:none!important;cursor:auto!important;direction:inherit!important;display:inline;float:none!important;font-family:inherit!important;font-size:inherit!important;font-style:inherit!important;font-variant:normal!important;font-weight:inherit!important;height:auto;left:auto!important;letter-spacing:normal!important;line-height:inherit!important;list-style-type:inherit!important;list-style-position:outside!important;list-style-image:none!important;margin:0!important;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;opacity:1;outline:invert none medium!important;overflow:visible!important;padding:0!important;position:static!important;quotes:"" ""!important;right:auto!important;table-layout:auto!important;text-align:inherit!important;text-decoration:inherit!important;text-indent:0!important;text-transform:none!important;top:auto!important;unicode-bidi:normal!important;vertical-align:baseline!important;visibility:inherit!important;white-space:normal!important;width:auto!important;word-spacing:normal!important;z-index:auto!important;-moz-border-radius:0!important;-webkit-border-radius:0!important;-moz-box-sizing:border-box!important;-webkit-box-sizing:border-box!important;box-sizing:border-box!important;text-shadow:none!important;-webkit-transition:none!important;transition:none!important;-webkit-box-shadow:none!important;box-shadow:none!important}.wpac,.wpac h3,.wpac h5,.wpac p,.wpac h1,.wpac dl,.wpac dt,.wpac h6,.wpac ol,.wpac form,.wpac select,.wpac option,.wpac pre,.wpac div,.wpac h2,.wpac caption,.wpac h4,.wpac ul,.wpac address,.wpac blockquote,.wpac dd,.wpac fieldset,.wpac textarea,.wpac hr{display:block}.wpac table{display:table}.wpac tbody{display:table-row-group}.wpac tr{display:table-row}.wpac td{display:table-cell}.wpac ul{list-style-type:none!important}.wpac li{display:list-item;min-height:auto!important;min-width:auto!important}.wpac a,.wpac a *,.wpac input[type=submit],.wpac input[type=radio],.wpac input[type=checkbox],.wpac select{cursor:pointer!important}.wpac a:hover{text-decoration:none!important}.wpac button,.wpac input[type=submit]{height:auto!important;text-align:center!important}.wpac input[type=hidden]{display:none}.wpac select{-webkit-appearance:menulist!important;-moz-appearance:menulist!important;appearance:menulist!important}.wpac input[type=checkbox]{-webkit-appearance:checkbox!important;-moz-appearance:checkbox!important;appearance:checkbox!important}.wpac input[type="checkbox"]:before,.wpac input[type="checkbox"]:after{content:none!important;border:0!important}.wpac input[type=radio]{-webkit-appearance:radio!important;-moz-appearance:radio!important;appearance:radio!important}.wpac input[type="radio"]:before,.wpac input[type="radio"]:after{content:none!important;border:0!important}.wpac li:before,.wpac li:after{content:""!important}.wpac input,.wpac select{vertical-align:middle!important}.wpac select,.wpac textarea,.wpac input{border:1px solid #ccc!important}.wpac table{border-collapse:collapse!important;border-spacing:0!important}.wpac *[dir=rtl]{direction:rtl!important}.wpac img{border:0!important}.wpac svg{vertical-align:middle!important;-moz-box-sizing:content-box!important;-webkit-box-sizing:content-box!important;box-sizing:content-box!important}.wpac{font-size:14px!important;line-height:20px!important;direction:ltr!important;text-align:left!important;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif!important;color:#333!important;font-style:normal!important;font-weight:normal!important;text-decoration:none!important;list-style-type:disc!important}.wpac .wp-sheet{position:fixed!important;bottom:0!important;right:0!important;height:100%!important;width:368px!important;z-index:1999999000!important;transition:all .2s ease-in-out!important}@media(max-width:460px){.wpac .wp-sheet{width:100%!important}}.wpac .wp-sheet-head{position:absolute!important;top:0!important;right:0!important;width:100%!important;height:48px!important;background:#fff!important;box-shadow:0 1px 2px 0 rgba(0,0,0,.12)!important;z-index:1999999002!important}.wpac .wp-sheet-head-inner{position:absolute!important;left:20px!important;top:0!important;width:100%!important;height:100%!important;line-height:48px!important;z-index:1999999000!important}.wpac .wp-sheet-head-close{position:relative!important;height:49px!important;float:right!important;color:#aaa!important;font-size:28px!important;line-height:48px!important;margin:0 20px 0 15px!important;z-index:1999999001!important;transition:all .2s ease-in-out!important}.wpac .wp-sheet-head-close:hover{color:#555!important}.wpac .wp-sheet-body{position:absolute!important;top:0!important;right:0!important;bottom:0!important;width:100%!important;background:rgba(250,250,251,.98)!important;border-left:1px solid #dadee2!important;box-shadow:0 0 4px 1px rgba(0,0,0,.08)!important;z-index:1999999000!important}.wpac .wp-sheet-content{position:absolute!important;top:0!important;right:0!important;bottom:0!important;width:100%!important;opacity:0!important;overflow-y:auto!important;z-index:1999999001!important;transition:all .2s ease-in-out!important;-webkit-transform:translateZ(0)!important}.wpac .wp-sheet-content.wp-sheet-ready{opacity:1.0!important}.wpac .wp-sheet-content-inner{position:relative!important;min-height:100%!important;margin:0 auto!important}.wpac .wp-sheet-footer{position:absolute!important;bottom:0!important;right:0!important;left:1px!important;width:100%!important;z-index:1999999002!important;background:rgba(250,250,251,.98)!important}.wp-gr .wp-google-badge{display:inline-block;font-family:Helvetica Neue,Helvetica,Arial,sans-serif!important;box-shadow:0 2px 5px 0 rgba(0,0,0,.26)!important;}.wp-gr .wp-google-badge-fixed{position:fixed!important;right:30px!important;bottom:30px!important;max-width:none!important;z-index:2147482999!important;box-shadow:0 2px 5px 0 rgba(0,0,0,.26)!important;}.wp-gr .wp-google-badge_left-fixed{position:fixed!important;left:30px!important;bottom:30px!important;max-width:none!important;z-index:2147482999!important}.wp-gr .wp-google-badge *{cursor:pointer!important}.wp-gr .wp-google-border{width:100%!important;height:6px!important;background:#4fce6a!important;border-radius:2px 2px 0 0!important;}.wp-gr .wp-google-badge-btn{position:relative!important;padding:10px!important;background:#fff!important;transition:all .2s ease-in-out!important;border-radius:2px!important;}.wp-gr .wp-google-badge-btn:hover{background:#f3f3f5!important}.wp-gr .wp-google-logo{position:absolute!important;top:10px!important}.wp-gr .wp-google-badge-score{display:inline-block;margin:0 0 0 4px!important;vertical-align:middle!important;}.wp-gr .wp-google-rating{color:#e7711b!important;font-size:20px!important;margin:0 6px 0 0!important;vertical-align:middle!important}.wp-gr .wp-google-stars .wp-star{padding:0 4px 0 0!important;line-height:22px!important}.wp-gr .wp-google-powered{margin:6px 0 0!important}.wp-gr .wp-google-form .wp-google-reviews{padding:16px 16px 0!important}.wp-gr .wp-google-review{margin-top:15px!important}.wp-gr .wp-google-left{display:table-cell!important;padding-right:10px!important;vertical-align:top!important}.wp-gr .wp-google-left img{border:none!important;float:left!important;height:50px!important;width:50px!important;margin-right:5px!important;border-radius:50%!important}.wp-gr .wp-google-reviews img{border-radius:50%!important}.wp-gr .wp-google-right{display:table-cell!important;vertical-align:top!important;width:10000px!important}.wp-gr .wp-google-place .wp-star svg{width:18px!important;height:18px!important}.wp-gr .wp-google-review .wp-star svg{width:16px!important;height:16px!important}.wp-gr .wp-google-name{color:black!important;font-size:100%!important;font-weight:bold!important;margin:0 0 2px!important;padding-right:6px!important;text-decoration:none!important}.wp-gr a.wp-google-name{color:#427fed!important;text-decoration:none!important}.wp-gr .wp-google-time{color:#999!important;font-size:13px!important}.wp-gr .wp-google-text{color:#222!important;font-size:13px!important;line-height:18px!important;max-width:100%!important;overflow:hidden!important;white-space:pre-wrap!important;word-break:break-word!important}.wp-gr .wp-google-text .wp-google-stars{padding-right:7px!important}.wp-gr .wp-more{display:none}.wp-gr .wp-more-toggle{color:#136aaf!important;cursor:pointer!important;text-decoration:underline!important}.wp-gr .wp-google-url{display:block;margin:10px 0!important;color:#2c7cff!important;text-align:center!important}.wp-gr .wp-google-form{position:fixed!important;bottom:0!important;right:0!important;height:100%!important;width:368px!important;z-index:2147483000!important}.wp-gr .wp-google-form.wp-google-form-left{left:0!important;}@media(max-width:460px){.wp-gr .wp-google-form{width:100%!important}}.wp-gr .wp-google-head{position:absolute!important;top:0!important;right:0!important;width:100%!important;height:80px!important;background:#fff!important;padding:10px 16px!important;overflow:hidden!important;box-shadow:0 1px 2px 0 rgba(0,0,0,.12)!important;z-index:2147483002!important}.wp-gr .wp-google-head-inner{z-index:2147483000!important;position:absolute!important;left:20px!important;top:20px!important;width:100%!important;height:100%!important;pointer-events:none!important}.wp-gr .wp-google-close{padding:0!important;cursor:pointer!important;outline:0!important;border:0!important;background:0 0!important;min-height:0!important;width:auto!important;float:right!important;font-size:32px!important;font-weight:500!important;line-height:.6!important;color:#999!important;-webkit-appearance:none!important}.wp-gr .wp-google-close:hover{color:#555!important}.wp-gr .wp-google-body{position:absolute!important;top:0!important;right:0!important;bottom:0!important;width:100%!important;background:rgba(250,250,251,.98)!important;border-left:1px solid #dadee2!important;box-shadow:0 0 4px 1px rgba(0,0,0,.08)!important;z-index:2147483000!important}.wp-gr .wp-google-content{position:absolute!important;top:0!important;right:0!important;bottom:0!important;width:100%!important;overflow-y:auto!important;z-index:2147483001!important;-webkit-transform:translateZ(0)!important}.wp-gr .wp-google-content{top:80px!important;bottom:48px!important}.wp-gr .wp-google-content-inner{position:relative!important;min-height:100%!important;margin:0 auto!important}.wp-gr .wp-google-footer{position:absolute!important;bottom:0!important;right:0!important;width:100%!important;height:48px!important;text-align:center!important;z-index:2147483002!important;background:#fff!important;box-shadow:0 -1px 2px 0 rgba(0,0,0,.06)!important;-moz-text-align-last:center!important;text-align-last:center!important}.wp-gr .wp-google-footer img{float:right!important;padding:16px!important}.wp-gr .wp-dark .wp-google-name{color:#eee!important}.wp-gr .wp-dark .wp-google-time{color:#bbb!important}.wp-gr .wp-dark .wp-google-text{color:#ececec!important}.wp-gr.wpac .wp-google-name{font-size:100%!important}.wp-gr.wpac .wp-google-hide{display:none}.wp-gr.wpac .wp-google-name a{color:#333!important;font-size:100%!important;text-decoration:none!important}.wp-gr.wpac .wp-google-left img{width:50px!important;height:50px!important;border-radius:50%!important}.wp-gr.wpac a.wp-google-name{color:#427fed!important;text-decoration:none!important}.wp-gr.wpac .wp-google-place .wp-star svg{width:18px;height:18px}.wp-gr.wpac .wp-google-review .wp-google-stars{display:inline-block;margin-right:4px!important}.wp-gr.wpac .wp-google-review .wp-star svg{width:16px;height:16px}.wp-gr.wpac .wp-dark .wp-google-name a{color:#eee!important}.wp-gr .wp-google-richsnippet{color:#999!important;font-size:12px!important;line-height:16px!important;margin-top:6px!important;border-top:1px solid #eee!important;padding-top:4px!important;}.grw-slider{position:relative}.grw-slider .swiper-wrapper{opacity:1;-moz-opacity:1;filter:alpha(opacity=1)}.grw-slider .grw-slider-prev,.grw-slider .grw-slider-next{position:absolute!important;top:50%!important;width:30px;height:30px;background:#eee;border-radius:50%;margin-top:-22px!important;z-index:10!important;cursor:pointer!important;-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.grw-slider .grw-slider-prev{left:-35px!important}.grw-slider .grw-slider-next{right:-35px!important}.grw-slider .grw-slider-prev span,.grw-slider .grw-slider-next span{position:absolute!important;top:48%!important;left:40%!important;color:#777!important;direction:ltr!important;font:normal 300 28px / 0 "Muli",Helvetica,Arial,Verdana,sans-serif!important}.grw-slider .grw-review{margin:20px 0 40px!important}.grw-slider .wp-google-feedback{position:relative!important;margin:2px!important;color:#777!important;font-size:18px!important;border:1px solid #ededed!important;background-color:#fafafa!important;border-radius:4px!important}.grw-slider .wp-google-feedback:before{position:absolute!important;bottom:-7px!important;left:35px!important;display:block!important;width:14px!important;height:14px!important;border:1px solid #ededed!important;border-top:none!important;border-left:none!important;background-color:#fafafa!important;content:""!important;-webkit-transform:rotate(45deg)!important;-ms-transform:rotate(45deg)!important;transform:rotate(45deg)!important}.grw-slider .wp-google-content2{position:static!important;height:150px!important;overflow-y:auto!important;font-size:14px!important;text-align:left!important;padding:0 2px 0 0!important;margin:20px 20px 20px 40px!important}.grw-slider .wp-google-content2::-webkit-scrollbar{width:4px!important}.grw-slider .wp-google-content2::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.3)!important;-webkit-border-radius:4px!important;border-radius:4px!important}.grw-slider .wp-google-content2::-webkit-scrollbar-thumb{-webkit-border-radius:10px!important;border-radius:10px!important;background:#ccc!important;-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.5)!important}.grw-slider .wp-google-content2::-webkit-scrollbar-thumb:window-inactive{background:#ccc!important}.grw-slider .wp-google-content2:before{bottom:47px!important;box-sizing:border-box!important;color:#bbb!important;content:'\201C'!important;display:block!important;height:96px!important;left:50px!important;position:absolute!important;right:515.391px!important;text-size-adjust:100%!important;top:20px!important;width:24.6094px!important;column-rule-color:#bbb!important;perspective-origin:12.2969px 48px!important;transform-origin:12.2969px 48px!important;border:0 none #bbb!important;font:normal normal normal normal 60px / 96px Georgia,serif!important;margin:-25px 0 0 -40px!important;outline:#bbb none 0!important}.grw-slider .wp-google-content2>svg{position:absolute!important;bottom:8px!important;right:8px!important;width:24px!important;height:24px!important;background:#fff!important;padding:2px!important;border-radius:50%!important}.grw-slider .wp-google-text{color:#777!important;line-height:22px!important}.grw-slider .wp-google-stars{display:inline-block!important;margin-right:4px!important}.grw-slider .wp-google-stars .wp-star{padding:0 4px 0 0!important;line-height:22px!important}.grw-slider .wp-google-stars .wp-star svg{width:18px!important;height:18px!important;vertical-align:middle!important}.grw-slider .wp-google-user{display:flex!important;position:relative!important;padding:20px!important}.grw-slider .wp-google-user img{width:50px!important;height:50px!important;padding:0!important;margin:0!important;border-radius:100%!important;box-shadow:0 0 1px #a9a9a9!important;vertical-align:middle!important;box-shadow:0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24)!important}.grw-slider .wp-google-info{margin:0 0 0 10px!important;text-align:left!important;vertical-align:middle!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}.grw-slider .wp-google-name{display:block!important;margin-bottom:3px!important;font-size:100%!important;font-weight:bold!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;color:#427fed!important;text-decoration:none!important;box-shadow:none!important}.grw-slider .wp-google-time{display:block!important;color:#999!important;font-size:13px!important;line-height:14px}.grw-slider .wp-more{display:none}.grw-slider .wp-more-toggle{color:#136aaf!important;cursor:pointer!important;text-decoration:underline!important}@media(max-width: 480px){.wp-google-badge.wp-google-badge-fixed.wp-google-badge-hide{display:none!important;}}@media(max-width: 480px){.wp-google-badge.wp-google-badge_left-fixed.wp-google-badge-hide{display:none!important;}}.mt-5 {
    margin-top:5px;
}
.mt-10 {
    margin-top:10px;
}
.mt-15 {
    margin-top:15px;
}
.mt-20 {
    margin-top:20px;
}

.home-hero {
    position: relative;
}

.hero-text {
    position: relative;
    z-index: 10;
}

.hero-img {
    position: absolute;
    top: 0;
}

.hero-text {
    position: relative;
    z-index: 10;
    padding: 5.5% 0;
}

.home-faqs .template-bullet:before {
    content: "j";
}
.none{
    display:none;
}

.call-to-action {
    display: none;
}
.re-action-button {
    display: none;
}
h6.box-header {
    display:none;
}
/* .bgl {
    background-image:url(https://www.plateauelectrical.com.au/wp-content/uploads/2015/05/image_07-627x500.jpg);
}*/