/**
 * Name: pearl.css
 *
 *	T.O.C
 *	
 *	#CssReset
 *	#Typography
 *		#Links
 *		#Lists
 *		#Images
 *		#Tables
 *		#Forms
 *		#Misc
 *	
 *	#Base Grid
 *  #Large Display
 *	#Tablet (Portrait)
 *  #Mobile (Portrait and landscape)
 *  #Align
 *	#Responsive Images and embeds
 *	#Clearing
 *  #ResponsiveFormInputs 
 *	
 *	#General Layout 
 *		#Header
 *		#Content
 *		#Footer
 *	#Page Styles
 *		#Index
 *		#About
 *		#Services
 *		#Portfolio
 *		#Blog
 *		#Contact
 *		#Page 404
 *	#Responsive
 *		#Large Display
 *		#Smaller then 1024px width	
 *		#Tablet (Portrait)
 *		#Mobile (Portrait and Landscape )
 *		#Mobile ( Landscape ) 
 *	
 *  #Main Slider
 *	#Accordions
 *  #Alerts
 *  #Animations
 *  #Back to top
 *	#Buttons
 *	#Callout Boxes
 *	#Custom Lists
 *	#Dividers
 *  #Fullwidth Section
 *	#Google Maps
 *  #Headlines
 *	#Icon Boxes
 *	#Milestones
 *	#Our Process
 *	#Pie charts
 *	#Pricing Tables
 *	#ProgressBars
 *	#SocialMedia
 *	#Styled Tables
 *	#Tabs
 *	#Testimonials
 *  #WordPress Widgets
 *  #WordPress Comments
 *  #WordPress Comment Form 
 */
 
 
/* ==========================================================================
   #CssReset
   ========================================================================== */

	html, body, div, span, applet, object, iframe,
	h1, h2, h3, h4, h5, h6, p, blockquote, pre,
	a, abbr, acronym, address, big, cite, code,
	del, dfn, em, img, ins, kbd, q, s, samp,
	small, strike, strong, sub, sup, tt, var,
	b, u, i, center,
	dl, dt, dd, ol, ul, li,
	fieldset, form, label, legend,
	table, caption, tbody, tfoot, thead, tr, th, td,
	article, aside, canvas, details, embed, 
	figure, figcaption, footer, header, hgroup, 
	menu, nav, output, ruby, section, summary,
	time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline;
	}
	
	/* HTML5 display-role reset for older browsers */
	
	article, 
	aside, 
	details, 
	figcaption, 
	figure, 
	footer, 
	header, 
	hgroup, 
	menu, 
	nav, 
	section {
		display: block;
	}
	
	body {
		line-height: 1;
	}
	
	ol, 
	ul {
		list-style: none;
	}
	
	blockquote, 
	q {
		quotes: none;
	}
	
	blockquote:before, 
	blockquote:after,
	q:before, 
	q:after {
		content: '';
		content: none;
	}
	
	table {
		border-collapse: collapse;
		border-spacing: 0;
	}
	
	/**
	 * 1. Always force vertical scroll
	 * 2. Prevent iOS text size adjust after orientation change, without disabling user zoom.
	 * 3. For animations
	 */
	
	html { 
		font-size: 100%; 
		overflow-y: scroll; /* 1  */ 
		-ms-text-size-adjust: 100%; /* 2 */
    	-webkit-text-size-adjust: 100%; /* 2 */
		-webkit-font-smoothing: antialiased; 
		overflow-x: hidden; /* 3 */
	}

/* ==========================================================================
   #Typography
   ========================================================================== */
   
   /**
	 * 1. For animations
	 */
	 
	body {
		overflow-x: hidden; /* 1 */
		background-color: #fff;
		color: #5e5e5e;
		font: 14px 'Open Sans', Arial, sans-serif;
		line-height: 24px;
		font-weight: 300;	
	}
	
	h1, 
	h2, 
	h3, 
	h4, 
	h5, 
	h6 {
		color: #5e5e5e;
		font-family: 'Open Sans', Arial, sans-serif;
		font-weight: 400;
	}
		
	h1 a, 
	h2 a, 
	h3 a, 
	h4 a, 
	h5 a, 
	h6 a { 
		font-weight: inherit; 
	}
	
	h1 {
		margin-bottom: 14px; 	 
		font-size: 30px; 
		line-height: 36px; 
	}
	
	h2 { 
		margin-bottom: 10px;	
		font-size: 24px; 
		line-height: 40px;  
	}
	
	h3 { 
		margin-bottom: 8px;
		font-size: 18px; 
		line-height: 24px;   
	}
	
	h4 {
		margin-bottom: 4px; 
		font-size: 16px; 
		line-height: 30px;   
	}
	
	h5 { 
		font-size: 14px; 
		line-height: 24px; 
	}
	
	h6 { 
		font-size: 12px; 
		line-height: 21px; 
	}
	
	p { margin-bottom: 20px; }
	em { font-style: italic; }
	strong { font-weight: 600; }
	small { font-size: 70%; }
	
	sub { 
		vertical-align: sub; 
		font-size: 75%; 
	}
	
	sup { 
		vertical-align: super; 
		font-size: 75%; 
	}
	
	abbr[title] {  
		border-bottom: 1px dotted #999; 
		cursor: help;
	}
	
	address { 
		display: block; 
		margin-bottom: 20px; 
	}
	
	blockquote {}
	
	blockquote p { font-style: italic; }
	
	blockquote span { 
		display: block;
		margin-top: 5px;
		color: #999999;  
	}
	
	blockquote span:before { content: "\2013 \00A0"; }

	hr { 
		height: 0; 
		border: solid #efefef; 
		border-width: 1px 0 0 0;
		margin: 30px 0;
	}

	code, 
	pre { 
		-webkit-border-radius: 3px;
			    border-radius: 3px;	
		font-family: Monaco, Menlo, Consolas, "Courier New", monospace;			
	}
	
	code { 
		padding: 1px 4px;
		border: 1px solid #e1e1e8;
		background-color: #f7f7f7;  
		color: #d14;  
	}
	
	pre { 
		overflow-x: auto; 
		display: block;
		padding: 20px;
		border: 1px solid #e1e1e8;   
		margin-bottom: 20px;
		white-space: pre-wrap;
		background-color: #f7f7f7; 
	}
	
	/* Typography Helper Classes */
	
	/**
	 * <div class="hr"></div> acts like an <hr />
	 */
	
	.hr { 
		border-top: 1px solid #efefef;  
		margin: 30px 0;
	}
	
	.text-left { text-align: left; }
	.text-right { text-align: right; }
	.text-center { text-align: center; }
	
	.text-highlight { color: #c39d62; }

	.text-uppercase { text-transform: uppercase; }
	
	.mute{ color: #aaa; }
	
	p.last,
	h1.last,
	h2.last,
	h3.last,
	h4.last,
	h5.last,
	address.last { margin-bottom: 0; }
	
/* #Links
   ========================================================================== */
	
	a, 
	a:visited { 
		color: #c39d62; 
		text-decoration: none; 
	}
	
   /**
	* 1. Remove the gray background color from active links in IE 10.
	*/
	
	a:active {
 		background: transparent; /* 1 */
	}
	
	a:hover, 
	a:focus {
		outline: 0; 
		text-decoration: underline;
	}	
	
/* #Lists
   ========================================================================== */
	
	ul, 
	ol { 
		margin-bottom: 20px;
		list-style-position: inside; 
	}
	
	ul ul, 
	ul ol, 
	ol ol, 
	ol ul { 
		margin-bottom: 0; 
		margin-left: 30px; 
	}
	
	li {}
	
	ul { list-style-type: disc; }
	ol { list-style-type: decimal; }
	
	/* List Helper Classes */

	ul.last,
	ol.last { margin-bottom: 0; }

/* #Images
   ========================================================================== */
	
	img { 
		border: none; 
		max-width: 100%;
		height: auto;
	}
	
	/* Images Helper Classes */
	
	.img-align-left { 
		float: left;
		margin: 5px 10px 0 0;  
	}
	
	.img-align-right { 
		float: right;
		margin: 5px 0 0 10px; 
	}

/* #Tables
   ========================================================================== */

	table { 
		width: 100%;
		margin-bottom: 20px; 
		border-collapse: collapse; 
		border-spacing: 0; 
		background-color: transparent; 
	}
	
	caption { 
		margin: 20px 0;
		text-align: center; 
	}

	table th, 
	table td {
		padding: 15px 8px; 
		border-top: 1px solid #acacac;
		text-align: center;
		vertical-align: top; 
	}
	
	table th { 
		border-top: none;
		background-color: #c39d62;
		color: #fff;
		font-size: 16px;
		font-weight: 700;
	}
	
	table thead th { vertical-align: bottom; }
	
/* #Forms
   ========================================================================== */

	form {}
	
	fieldset {}
	
	form p {}
	
	label {
		display: block;
		margin-bottom: 5px;
	}

	label span { color: #ff0000; }
	
	select,
	button,
	input[type="button"],
	input[type="reset"],
	input[type="submit"],
	input[type="radio"],
	input[type="checkbox"] { cursor: pointer; }
	
	/*
	 * 1. stop safari from overwriting input styles
	 */	
	
	input,
	textarea,
	select {
		-webkit-appearance: none; /* 1 */
		display: block;		
		max-width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 10px;
		border: 1px solid #acacac;
		 -webkit-border-radius: 10px;
				 border-radius: 10px;
		margin-bottom: 10px;
		background: transparent;
		color: #666;
		font: 12px 'Open Sans', Arial, sans-serif;		 
	}
	
	input[type="text"]:focus,
	input[type="email"]:focus,
	input[type="url"]:focus,
	textarea:focus {
		border-color: #888;
		outline: 0;	
	}
	
	select { 
		height: 40px;
		border-radius: 5px;
	}
	
	select:focus {
	  outline: thin dotted #333;
	  outline: 5px auto -webkit-focus-ring-color;
	  outline-offset: -2px;
	}
	
	textarea { 
		min-height: 100px; 
		overflow: auto; 
	}

	.radio,
	.checkbox {
		min-height: 18px;
		padding-left: 18px;
	}
	
	.radio input[type="radio"],
	.checkbox input[type="checkbox"] {
		float: left;
		margin-left: -18px;
	}
	
	input:-moz-placeholder,
	textarea:-moz-placeholder {
		color: #ccc;
	}
	
	input:-ms-input-placeholder,
	textarea:-ms-input-placeholder {
		color: #ccc;
	}
	
	input::-webkit-input-placeholder,
	textarea::-webkit-input-placeholder {
		color: #ccc;
	}

/* #Misc
   ========================================================================== */
   
   .javascript-required {
	    padding: 15px 0;
		background-color: #f00;
		color: #fff;
		text-align:center;
		font-weight: bold;
	}
   

/* ==========================================================================
   #Base Grid
   ========================================================================== */

	.row { 
		position: relative; 
		width: 940px; 
		margin: 0 auto;
	}
	
	.row .row { 
		width: auto; 
		margin: 0;
	 }

 	.span1, 
	.span2, 
	.span3, 
	.span4, 
	.span5, 
	.span6, 
	.span7, 
	.span8, 
	.span9, 
	.span10, 
	.span11, 
	.span12 { float: left; }

	.span1 { 
		width: 60px;  
		margin-left: 20px; 
	}
	
	.span2 { 
		width: 140px; 
		margin-left: 20px; 
	}
	
	.span3 { 
		width: 220px; 
		margin-left: 20px; 
	}
	
	.span4 { 
		width: 300px;
		margin-left: 20px; 
	}
	
	.span5 { 
		width: 380px; 
		margin-left: 20px; 
	}
	
	.span6 { 
		width: 460px; 
		margin-left: 20px; 
	}
	
	.span7 { 
		width: 540px; 
		margin-left: 20px; 
	}
	
	.span8 { 
		width: 620px; 
		margin-left: 20px; 
	}
	
	.span9 { 
		width: 700px; 
		margin-left: 20px; 
	}
	
	.span10 { 
		width: 780px; 
		margin-left: 20px; 
	}
	
	.span11 { 
		width: 860px; 
		margin-left: 20px; 
	}
	
	.span12 { 
		width: 940px; 
		margin-left: 20px; 
	}
	
	.span1:first-child, 
	.span2:first-child, 
	.span3:first-child, 
	.span4:first-child, 
	.span5:first-child, 
	.span6:first-child, 
	.span7:first-child, 
	.span8:first-child, 
	.span9:first-child, 
	.span10:first-child, 
	.span11:first-child, 
	.span12:first-child { margin-left: 0; }
 
	.visible-phone { display: none !important; }
	.visible-tablet { display: none !important; }
	.hidden-desktop { display: none !important; }
	.visible-desktop { display: inherit !important; } 

/* ==========================================================================
   #Large Display
   ========================================================================== */

	@media (min-width: 1400px) {
	
		.row { width: 1170px; }
	
		.span1 { 
			width: 70px;  
			margin-left: 30px; 
		}
		
		.span2 { 
			width: 170px; 
			margin-left: 30px; 
		}
		
		.span3 { 
			width: 270px; 
			margin-left: 30px; 
		}
		
		.span4 { 
			width: 370px; 
			margin-left: 30px; 
		}
		
		.span5 { 
			width: 470px; 
			margin-left: 30px; 
		}
		
		.span6 { 
			width: 570px; 
			margin-left: 30px; 
		}
		
		.span7 { 
			width: 670px; 
			margin-left: 30px; 
		}
		
		.span8 { 
			width: 770px; 
			margin-left: 30px; 
		}
		
		.span9 { 
			width: 870px; 
			margin-left: 30px; 
		}
		
		.span10 { 
			width: 970px;
			margin-left: 30px;
		}
		
		.span11 { 
			width: 1070px; 
			margin-left: 30px; 
		}
		
		.span12 { 
			width: 1170px;
			margin-left: 30px; 
		}
		
	}
 
/* ==========================================================================
   #Tablet (Portrait)
   ========================================================================== */

	@media (min-width: 768px) and (max-width: 979px) {
		
		.row { width: 705px; }
	
		.span1 { 
			width: 45px;  
			margin-left: 15px; 
		}
		
		.span2 { 
			width: 105px; 
			margin-left: 15px; 
		}
		
		.span3 { 
			width: 165px; 
			margin-left: 15px; 
		}
		
		.span4 { 
			width: 225px; 
			margin-left: 15px; 
		}
		
		.span5 { 
			width: 285px; 
			margin-left: 15px; 
		}
		
		.span6 { 
			width: 345px; 
			margin-left: 15px; 
		}
		
		.span7 { 
			width: 405px; 
			margin-left: 15px; 
		}
		
		.span8 { 
			width: 465px; 
			margin-left: 15px; 
		}
		
		.span9 { 
			width: 525px; 
			margin-left: 15px; 
		}
		
		.span10 { 
			width: 585px;
			margin-left: 15px; 
		}
		
		.span11 { 
			width: 645px; 
			margin-left: 15px; 
		}
		
		.span12 { 
			width: 705px;
			margin-left: 15px; 
		}
		
		.hidden-desktop { display: inherit !important; } 
		.visible-desktop { display: none !important; }
		.visible-tablet { display: inherit !important; } 
		.hidden-tablet { display: none !important; }
		
	}

/* ==========================================================================
   #Mobile (Portrait and Landscape )
   ========================================================================== */

	@media (max-width: 767px) {
		
		.row { width: auto; }
		
		.span1,
		.span2,
		.span3,
		.span4,
		.span5,
		.span6,
		.span7,
		.span8,
		.span9,
		.span10,
		.span11,
		.span12 { 
			float: none;
			display: block;
			width: 100%;
			-webkit-box-sizing: border-box;
			   -moz-box-sizing: border-box;
					box-sizing: border-box;
			margin-left: 0;
		}
		
		.hidden-desktop { display: inherit !important; }
		.visible-desktop { display: none !important; }
		.visible-phone { display: inherit !important; }
		.hidden-phone { display: none !important; }
		
	}
	
/* ==========================================================================
   #Align
   ========================================================================== */

	.float-left { float: left; }
	.float-right { float: right; }

/* ==========================================================================
   #Responsive Images and Embeds
   ========================================================================== */

	.responsive-img { 
		max-width: 100%; 
		height: auto; 
	}
	
	/**
 	 * 1. 16/9 ratio
 	 */
	 
	.responsive-embed {
		position: relative;
		overflow: hidden;
		height: 0;
		padding: 0;
		padding-bottom: 56.25%; /* 1 */	
		margin-bottom: 20px;
	}

	.responsive-embed iframe,
	.responsive-embed object,
	.responsive-embed embed {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

/* ==========================================================================
   #Clearing
   ========================================================================== */

	/**
 	 * Automatically Clear Fix rows
 	 */
	 
	.row:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}

	/**
 	 * Clear Fix hack
	 * Usage:  add  class="fixed"  to div's that have floated elements in them
 	 */
	 
	.fixed:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}
	
	/**
 	 * Clear content
	 * Usage:  <br class="clear"> 
 	 */	
	 
	.clear {
      clear: both;
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0;
	} 
	
/* ==========================================================================
   #ResponsiveFormInputs
   ========================================================================== */
	
	/**
	 * 1. Reset float inherited from .span*	
 	 * 2. Reset margin-left inherited from .span*
 	 */
	 
	input.span1,
	textarea.span1,
	select.span1,
	input.span2,
	textarea.span2,
	select.span2,
	input.span3,
	textarea.span3,
	select.span3,
	input.span4,
	textarea.span4,
	select.span4,
	input.span5,
	textarea.span5,
	select.span5,
	input.span6,
	textarea.span6,
	select.span6,
	input.span7,
	textarea.span7,
	select.span7,
	input.span8,
	textarea.span8,
	select.span8,
	input.span9,
	textarea.span9,
	select.span9,
	input.span10,
	textarea.span10,
	select.span10,
	input.span11,
	textarea.span11,
	select.span11,
	input.span12,
	textarea.span12,
	select.span12 {
		float: none; 	/* 1 */
		margin-left: 0; /* 2 */
	}


/* ==========================================================================
   #General Layout 
   ========================================================================== */

	#wrap {
		position: relative;
		background-color:#fff;
		border-top: 5px solid #c39d62;
	}
	
/* #Header
   ========================================================================== */	
   	
	#header-top {
		padding: 12px 0;
		background-color: #c39d62;
		color: #fff;
	}
	
	#header-top h1,
	#header-top h2,
	#header-top h3,
	#header-top h4,
	#header-top h5,
	#header-top h6 { color: #fff; }
	
	#header { padding-top: 30px; }
	
	@media (min-width: 1024px) {
	
		.stuck {
			position: fixed !important;
			z-index: 1010;
			top: 0;
			width: 100% !important;
		}
		
		#header.stuck {
			padding: 10px 0;
			-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
					box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
			background: none repeat scroll 0 0 #fff !important;
		}
		
		#header.stuck #logo { max-width: 40%; }
		#header.stuck .sf-menu { margin-top: 10px; }
		
		#header.stuck .sf-menu .sf-mega,
		#header.stuck .sf-menu li.dropdown ul { margin-top: 10px; }
		
		#header.stuck #custom-search-form { top: 5px; }
		
		#header.stuck .sf-menu > li > a,
		#header.stuck .sf-menu > li.dropdown > a { padding-bottom: 15px; }
		
	}
	
	/* Logo */

	#logo { 
		display: block;
	}
	
	#logo img { display: block; }
		
	/* Menu basics */

	.sf-menu,
	.sf-menu ul {
		padding: 0;
		margin: 0;
		list-style: none;
	}
	
	.sf-menu > li { float: left; }

	.sf-menu > li > a {
		position: relative;
		display: block;
	}
	
	.sf-menu .sf-mega,
	.sf-menu li.dropdown ul {
		position: absolute;
		z-index: 210;
		top: 100%;
		left: 0;
		display: none;
	}
	
	.sf-menu li.dropdown ul { padding: 0 15px; }
	
	.sf-menu li.dropdown { position: relative; }
	
	.sf-menu li.dropdown ul ul {
		top: -1px;
		left: 100%;
		border-radius: 7px;
		margin-left: 15px;
	}
	
	.sf-menu li:hover > .sf-mega,
	.sf-menu li.sfHover > .sf-mega,
	.sf-menu li.dropdown:hover > ul,
	.sf-menu li.dropdown.sfHover > ul { display: block; }

	/* Menu Skin */
	
	.sf-menu { 
		float: right;
		/*width: 100%;*/
		margin-top: 17px;
	} 
	
	.sf-menu a {
		display: block;
		padding: 10px 0px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.15);
		font: 14px 'Open Sans', Arial, sans-serif;
		font-weight: 300;
		color: #5e5e5e; 
		text-decoration: none;
	}
	
	.sf-menu > li > a span {
		padding: 7px 20px; 
		border-radius: 7px; 
		font-weight: bold;

	}
	
	.sf-menu li.dropdown a { padding: 10px 0; }
	.sf-menu li:last-child > a { border-bottom: none; }
	
	.sf-menu > li > a,
	.sf-menu > li.dropdown > a {
		padding: 6px 0 55px 0;
		border: none;
		color: #5e5e5e;
		font-size: 14px;
	}
	
	.sf-menu > li a i { margin-right: 5px; }
	
	.sf-menu > li.current > a,
	.sf-menu li.sfHover > a,
	.sf-menu a:hover,
	.sf-menu li.sfHover a:hover {
		color: #000;
		text-decoration: none;	
	}
	
	.sf-menu > li.current > a span,
	.sf-menu > li.current > a:hover span {
		background-color: #c39d62;
		color: #fff;
	}

	/**
 	 * 1. allow long menu items to determine submenu width
 	 */
	
	.sf-menu li.dropdown ul {
		min-width: 180px; /* 1 */
		border: 1px solid rgba(0, 0, 0, 0.1);	
		background-color: #fff;			
	}

	.sf-menu > li.dropdown > ul { border-radius: 7px; }
	
	.sf-menu > li.dropdown ul li a:hover { color: #c39d62; }
	
	.sf-menu > li.dropdown ul li a:before {
		position: relative;
		top: -1px;
		margin-right: 15px;
		font-family: 'iconfontcustom';
		font-size: 7px;
		content: "\e997";
	}	
		
	/* mega menu dropdown */
	
	.sf-mega {
		width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 15px 0;
		border: 1px solid rgba(0, 0, 0, 0.1);
		border-radius: 7px;
		background-color: #fff;
	}
	
	.sf-mega-section {
		float: left;
		min-width: 155px;
		width: 25%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 0 20px;
		border-right: 1px solid #efefef;
	}
	
	.sf-mega-section:last-child { border-right: none; }

	/* arrows */
	
	/* styling for both css and generated arrows */
	
	.sf-arrows .sf-with-ul:after {
		position: absolute;
		top: 50%;
		right: 0;
		height: 0;
		width: 0;
		/* order of following 3 rules important for fallbacks to work */
		border: 5px solid transparent;
		border-top-color: rgba(0, 0, 0, 0.5);
		margin-top: -3px;
		content: "";
	}
		
	.sf-arrows > li > .sf-with-ul:focus:after,
	.sf-arrows > li:hover > .sf-with-ul:after,
	.sf-arrows > .sfHover > .sf-with-ul:after {
		border-top-color: rgba(0, 0, 0, 0.7); 
	}
	
	/* styling for right-facing arrows */
	
	.sf-arrows ul .sf-with-ul:after {
		border-color: transparent;
		border-left-color: rgba(0 ,0, 0, 0.5);
		margin-top: -5px;
		margin-right: -3px;
	}
	
	.sf-arrows ul li > .sf-with-ul:focus:after,
	.sf-arrows ul li:hover > .sf-with-ul:after,
	.sf-arrows ul .sfHover > .sf-with-ul:after {
		border-left-color: rgba(0, 0, 0, 0.7);
	}
	
	/* Mobile Menu  */
			
	#mobile-menu {
		z-index: 20;
		border-bottom: 1px solid #efefef;
		margin-bottom: 0;
	}
	
	#mobile-menu li {	
		display: block;
		margin: 0;
	}
		
	#mobile-menu > li > ul, 
	#mobile-menu > li > ul > li > ul {
		display: none;
		margin-left: 0;
	}
	
	#mobile-menu .sf-mega {
		display: none;
		padding: 0;
		border: none;
		margin: 0;
	}
	
	#mobile-menu .sf-mega-section {
		float: none;
		width: 100%;
		padding: 0;
		border: none;
	}
	
	#mobile-menu .sf-mega-section ul { margin-left: 0; }

	#mobile-menu li a {
		position: relative;
		display: block;
		padding: 15px 25px;
		border-top: 1px solid #efefef;
		color: #333;
		font-size: 13px;
		text-align: left;
		text-decoration: none;
	}
	
	#mobile-menu ul a { padding-left: 45px; }
	
	#mobile-menu ul li ul a  { padding-left: 65px; }
	
	#mobile-menu .mobile-menu-submenu-arrow {
		position: absolute;
		top: 0;
		right: 0;
		height: 100%;
		width: 70px;
		border-left: 1px solid #efefef;
		color: #333;
		font-size: 20px;
		line-height: 50px;
		text-align: center;
		cursor: pointer;
	}
	
	#mobile-menu .mobile-menu-submenu-arrow:hover { 
		background-color: #c39d62;
		color: #fff;
	}
	
	#mobile-menu li a:hover {}
	
	#mobile-menu { display: none; }
	
	/* Mobile menu trigger  */
				
	#mobile-menu-trigger { 
		float: right;
		display: none;
		margin-top: 17px;  
		color: #c39d62;
		font-size: 28px;
		text-decoration: none;
	}				

	#mobile-menu-trigger:hover {
		text-decoration: none;
	}
 	
	/* Custom Search Form */
	
	#custom-search-form {
		position: absolute;
		top: 13px;
		right: 0;
		z-index: 15;
	}
	
	#custom-search-form + .sf-menu { 
		margin-right: 40px;
	}
	
	#custom-search-form #s {
		height: 40px;
		width: 34px;
		background: #fff url(../images/bg-search-2.png) no-repeat 6px 10px;
		border: none;
	    color: #333;
		border-radius: 3px;
	   
	}
	
	#custom-search-form #s:hover { cursor: pointer; }
	
	#custom-search-form #s.open {
	    padding-left: 30px;
	    border: 1px solid #999;
	}
	
	
/* #Content
   ========================================================================== */
   		
	#content { 
		min-height: 300px; 
		padding-bottom: 50px;  
	}

	/* Page Header */
	
	#page-header {
		padding: 35px 0;
		border-top: 1px solid #c39d62;
		border-bottom: 1px solid #c39d62;
		margin-bottom: 100px;
	}
	
	#page-header h3 {
		padding-top: 10px;
		margin-bottom: 0;
		text-transform: uppercase;
	}
	
	#page-header i {
		float: left;
		padding: 10px;
		border-radius: 10px;
		margin-right: 25px;
		background-color: #c39d62;
		color: #fff;
		font-size: 25px;
	}
	
	.bordered {
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 30px 20px;
		border: 1px solid #d7d7d7;
		border-radius: 10px;
		margin-top: 75px;
	}
	
	.bordered p:last-child { margin-bottom: 0; }
	
	.bordered .img-align-left,
	.bordered .img-align-right { 
		float: none;
		display: block;
		margin: 0 auto 30px;
	}
			
/* #Footer
   ========================================================================== */		
		
	#footer {}
	
	#footer-top {
		padding: 40px 0; 
		background-color: #c39d62;
		color: #fff;
	}
	
	#footer-top h1,
	#footer-top h2,
	#footer-top h3,
	#footer-top h4,
	#footer-top h5,
	#footer-top h6 { color: #fff; }
	
	#footer-middle {
		padding: 100px 0 70px 0;
		background-color: #ebebeb; 
	}
	
	#footer-bottom {
		padding: 30px 0;
		background-color: #c2c2c2; 
	}
	
	.alternative #footer-middle { 
		background-color: #1d1d1d; 
		color: #fff;	
	}
	
	.alternative #footer-middle a { color: #fff; }
	
	.alternative #footer-bottom { 
		background-color: #181818;
		color: #c39d62;
	}
	
	.alternative #footer-bottom a { color: #c39d62; }
			
/* ==========================================================================
   #Page Styles
   ========================================================================== */
   
/* #Index
   ========================================================================== */
   
   	/* Client Logos */
	
	.client-logos {
		margin-top: 75px;
		margin-bottom: 0;
		list-style: none;
		text-align: center; 
	}
	
	.client-logos li { 
		display: inline-block;
		margin: 0 3px;
	}
	
	/* Testimonial Slider 2 */
	
	.testimonial-slider-2 {
		border-radius: 10px;
		margin-bottom: 20px;
		background-color: #c39d62;
		color: #fff;
	}
	
	.testimonial-slider-2 blockquote {
		position: relative;
		padding: 25px 30px 0 0;
		text-indent: 30px;
	}
	
	.testimonial-slider-2 blockquote:before {
		position: absolute;
		top: 30px;
		left: -40px;
		font-size: 80px;
		font-style: italic;
		content: "\201C";
	}
	
	.testimonial-slider-2 blockquote h3 {
		color: #fff;
		text-indent: 0;
	}
	
	.testimonial-slider-2 blockquote h3 span {
		display: inline;
		color: #fff;
	}
	
	.testimonial-slider-2 blockquote h3 span:before { content: none; }
   
/* #About
   ========================================================================== */
   
   	/* Team member */
	
	.team-member {
		padding: 30px;
		margin: 80px 0 100px 0;
		background: url(../images/bg-team-member.png) no-repeat center center;
		color: #fff;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.team-member h1 {
		margin-bottom: 20px;
		color: #fff;
		text-align: center;
	}
	
	.team-member h3 {
		color: #fff;
		text-align: center;
		text-transform: uppercase;
	}
	
	.team-member img {
		display: block;
		max-width: 100%;
		border: 2px solid #fff;
		border-radius: 50%;
		margin: 0 auto 35px;
	}
	
	.team-member .social-media {
		padding: 15px 0;
		border-top: 1px solid rgba(255, 255, 255, 0.5);
		border-bottom: 1px solid rgba(255, 255, 255, 0.5);
		margin: 30px -30px;
		text-align: center;
	}
	
	.team-member .social-media a.social-icon {
		float: none;
		display: inline-block;
		color: #fff;
	}
	
	.team-member:hover { background: url(../images/bg-team-member-hover.png) no-repeat center center; }
	
	.team-member.alt {
		border: 1px solid #959595;
		background: transparent;
		color: #5e5e5e; 
	}
	
	.team-member.alt .social-media { border-color: #959595;  }
	
	.team-member.alt h1,
	.team-member.alt h3,
	.team-member.alt .social-media a.social-icon { color: #5e5e5e; }
	
	.team-member.alt:hover { 
		background-color: #c39d62;
		color: #fff;
	}
	
	.team-member.alt:hover .social-media { border-color: #fff;  }
	
	.team-member.alt:hover h1,
	.team-member.alt:hover h3,
	.team-member.alt:hover .social-media a.social-icon { color: #fff; }

/* #Services
   ========================================================================== */
      
/* #Portfolio
   ========================================================================== */
   
    /* Isotope */
	
	.portfolio-items { 
		margin-bottom: 40px;
		list-style: none; 
	}
	
	.portfolio-items li {
		float: left;
		width: 25%;
	}
   
   	/* Portfolio Strip */
	
	.portfolio-strip {
		margin: 50px 0 100px 0;
		list-style: none; 
	}
	
	.portfolio-strip.border {
		border-top: 15px solid #c39d62; 
		margin-top: 0;
	}
	
	.portfolio-strip li {
		float: left;
		width: 25%; 
	}
	
	.portfolio-strip li:last-child { display: none; }
	
	/* Portfolio Grid */
	
	.portfolio-grid { list-style: none; }
	
	.portfolio-grid li {
		float: left;
		width: 25%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 0 15px;
	}
	
	.portfolio-items.portfolio-grid li { margin-bottom: 100px; }
   
    /* Portfolio Item */
	
	.portfolio-item { 
		position: relative; 
		margin-bottom: 30px;
	}
	
	.portfolio-strip li .portfolio-item,
	.portfolio-grid li .portfolio-item	{ margin-bottom: 0; }
	
	.portfolio-item-preview { position: relative; }
	
	.portfolio-item-preview > img {
		display: block;
		width: 100%;
	}
		
	.portfolio-item-overlay {
		position: absolute; 
		top: 0;
		right: 0; 
		bottom: 0;  
		left: 0; 
		background-color: rgba(255, 255, 255, 0.8);
		opacity: 0; 
		-webkit-transition: opacity 0.5s; 
			 -o-transition: opacity 0.5s;
				transition: opacity 0.5s;
	}
			
	.portfolio-item-overlay-actions {
		position: absolute;
		top: 50%;
		width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		text-align: center;
	}
			
	.portfolio-item-overlay-actions .portfolio-item-zoom,
	.portfolio-item-overlay-actions .portfolio-item-link {
		display: inline-block;
		width: 40px;
		height: 40px;
		border: 1px solid #5e5e5e;
		border-radius: 50%;
		margin: 0 5px; 
		color: #5e5e5e;
		text-align: center;
		text-decoration: none;
	}
				
	.portfolio-item-overlay-actions .portfolio-item-zoom i,
	.portfolio-item-overlay-actions .portfolio-item-link i {
		font-size: 20px; 
		line-height: 40px; 
	}
	
	.portfolio-item-overlay-actions .portfolio-item-zoom:hover,
	.portfolio-item-overlay-actions .portfolio-item-link:hover {
		background-color: #5e5e5e;
		color: #fff;
	}
					
	.portfolio-item-description { 
		position: absolute; 
		top: 35%; 
		right: 0; 
		left: 0; 
		color: #fff;
		text-align: center; 
		opacity: 0;
		-webkit-transition: opacity 0.5s; 
			 -o-transition: opacity 0.5s;
				transition: opacity 0.5s;
	}
	
	.portfolio-item-description h3 { text-transform: uppercase; }
	
	.portfolio-item:hover .portfolio-item-overlay,
	.portfolio-item:hover .portfolio-item-description { opacity: 1; }
	
	.portfolio-grid .portfolio-item-description {
		position: relative;
		padding: 25px 0;
		background-color: #fff;
		opacity: 1;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.portfolio-grid .portfolio-item-description p { 
		margin-bottom: 0;
		font-weight: 400;
	}
	
	.portfolio-grid .portfolio-item-description a { color: #5e5e5e; }
	
	.portfolio-grid .portfolio-item:hover .portfolio-item-description { background-color: #c39d62; }
	.portfolio-grid .portfolio-item:hover .portfolio-item-description .text-highlight { color: #fff; }
	.portfolio-grid .portfolio-item:hover .portfolio-item-description a { color: #fff; }
	
	.portfolio-item-2 { margin-bottom: 100px; }
	
	.portfolio-item-2 h3 {
		margin-bottom: 20px;
		font-weight: 600;
	}
	
	.portfolio-item-2 h3 a { color: #5e5e5e; }
	
	.portfolio-item-2 .portfolio-item-preview { position: relative; }
	
	.portfolio-item-2 .portfolio-item-overlay {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: rgba(255, 255, 255, 0.8);
		opacity: 0; 
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.portfolio-item-2 .portfolio-item-overlay-actions {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		margin-top: -20px;
		-webkit-transition: top 0.3s;
				transition: top 0.3s;
	}
	
	.portfolio-item-2 .portfolio-item-preview:hover .portfolio-item-overlay { opacity: 1; }
	.portfolio-item-2 .portfolio-item-preview:hover .portfolio-item-overlay-actions { top: 50%; }
				
	/* Portfolio Pagination */
	
	.pagination {
		float: right;
		margin-bottom: 50px;
		list-style: none; 
	}
	
	.pagination li { display: inline-block; }

	.pagination a { 
		display: block; 
		padding: 7px 13px; 
		border: 1px solid #acacac;
		border-radius: 5px;
		color: #5e5e5e;
		font-size: 18px;
	}
	
	.pagination li.current a,
	.pagination li a:hover 	{
		border-color: #c39d62;
		color: #c39d62;  
	}
		
	.pagination li a:hover { 
		text-decoration: none;
	}

	/* Portfolio filter */
	
	.portfolio-filter ul {
		margin: 0 auto 50px;
		list-style: none;
	}
	
	.portfolio-filter ul li { 
		display: inline-block;
		margin-right: 15px;
	}
	
	.portfolio-filter ul li:last-child { margin-right: 0; }
	
	.portfolio-filter ul li a {
		display: block;
		padding: 10px 35px;
		border: 1px solid #c2c2c2;
		border-radius: 7px;
		color: #5e5e5e;
		font-weight: 400;
		text-align: center;
		text-decoration: none;
	}
	
	.portfolio-filter ul li a:hover,
	.portfolio-filter ul li a.active {
		border-color: #c39d62;
		background-color: #c39d62;
		color: #fff; 
	}	
	
/* #Blog
   ========================================================================== */
   
	/* Blog Post */
	
	.blog-post {
		margin-bottom: 50px; 
	}
	
	.blog-post-title {}
	
	.blog-post-title h2 {
		margin-bottom: 5px;
		font-weight: 600;
	}
	
	.blog-post-title h2 a { color: #5e5e5e; }
	
	.blog-post-title h3 {
		padding: 7px 0 10px 0;
		border-top: 1px solid #d7d7d7;
		border-bottom: 1px solid #d7d7d7;
		margin-bottom: 10px;
	}
	
	.blog-post-title h3 a {
		color: #c39d62;
		font-weight: 600;
	}
	
	.blog-post-title p i {
		color: #c39d62; 	
	}
	
	.blog-post-title p a {
		color: #5e5e5e;
		font-weight: 600;
	}
	
	.blog-post-thumb { margin-bottom: 30px; }
	
	.blog-post-thumb img {
		display: block;
		width: 100%;
	}
	
	.blog-post-info {}
	
	.blog-post-readmore {}
   
/* #Contact
   ========================================================================== */
   
	/* Contact Form */
  
	#contact-form { 
		overflow: hidden; 
		margin-top: 60px; 
	}
	
	#contact-form fieldset { margin: 0; }
	
	input.validation-error,
	textarea.validation-error,
	select.validation-error { border :1px solid #e1a1a1; }
	
	label.validation-error { 
		color: #b55454;
		display: block;
	}
	
	#contact-form #formstatus {}
		
	#contact-form textarea,
	#contact-form input { border-radius: 0; }
	
	#contact-form label {
		display: inline-block;
		margin-bottom: 0;
		margin-left: 10px;
	}	 
	
	#contact-form label i {
		margin-right: 5px;
		color: #c39d62;
		font-size: 16px;
		vertical-align: middle;
	}
	
	#contact-form input,
	#contact-form textarea { 
		display: inline-block;
		border-radius: 0;
		margin-bottom: 0;
	}
	
/* #Page 404
   ========================================================================== */
 	
	h1.error {
		margin-top: 100px;
		margin-bottom: 0;
		color: #8e71b5;
		font-size: 172px;
		line-height: 172px;
		font-weight: 300;
		text-align: center;
	}
	
	h2.error {
		margin-bottom: 100px;
		font-size: 30px;
		font-weight: 300;
		text-align: center;
		text-transform: uppercase;
	}
	
/* ==========================================================================
   #Responsive
   ========================================================================== */
   
/* #Large Display
   ========================================================================== */
   	
	@media (min-width: 1400px) {
		
		#wrap {}
		
		.bordered .img-align-right {
			float: right; 
			margin: -31px -21px -31px 30px; 
		}
		
		.bordered .img-align-left { 
			float: left;
			margin: -31px 30px -31px -21px; 
		}
		
		/* Index */
		
		.client-logos li { margin: 0 20px; }
		
		.testimonial-slider-2 blockquote { padding-top: 70px; }
		.testimonial-slider-2 blockquote:before { top: 55px; }
		
		/* Portfolio */
		
		.portfolio-strip li { width: 20%; }
		
		.portfolio-strip li:last-child { display: block; }
		
	}

/* #Smaller then 1024px width
   ========================================================================== */
	
	@media (max-width: 1024px) {

		#wrap {border-top: 5px solid #c39d62; }
		
		#header {}
		
		#content {}
		
		#footer {}
		
	}

/* #Tablet (Portrait)
   ========================================================================== */

	@media (min-width: 768px) and (max-width: 979px) {
		
		#wrap {}
		
		#header { padding-bottom: 30px; }
		
		#menu { display: none; }
		
		#mobile-menu-trigger { 
			display: block;
			margin-right: 10px;
		}
		
		#custom-search-form { right: 65px; }	
		
		#content {}
		
		#footer {}
		
		/* Index */
		
		.testimonial-slider-2 blockquote { padding-bottom: 10px; }
		
		/* Portfolio */
		
		.portfolio-strip li { width: 33.3333333333%; }
		.portfolio-strip li:last-child { display: block; }
		
		.portfolio-filter ul li { margin-right: 10px; }
		.portfolio-filter ul li a { padding: 10px 30px; }

	}
	
/* #Mobile (Portrait and Landscape )
   ========================================================================== */
	
	@media (max-width: 767px) {
	
		body { 
			background: none; 
			background-color: #fff; 
		}
		
		#wrap { border-top: 5px solid #c39d62; }
		
		#header-top { display: none; }
		
		#header { padding-bottom: 30px; }	
		
		#logo {}
		
		#menu { display: none; }
		
		#mobile-menu-trigger { 
			position: absolute;
			top: 7px;
			right: 10px;
			display: block;
			padding: 10px;
			margin-top: 0;
		}
		
		#custom-search-form { display: none; }
		
		#content {}
		
		/* Index */
		
		.client-logos { 
			margin-top: 0;
			margin-bottom: 30px;
		}
		
		.client-logos li { 
			display: block;
			margin: 5px 0;
		}
		
		.testimonial-slider-2 blockquote { padding-bottom: 10px; }
		
		/* Portfolio */
		
		.portfolio-items li {
			float: none;
			width: 100%;
		}
		
		#footer{}	

		.row { padding: 0 40px; }
		
		.row .row { 
			width: auto; 
			padding: 0; 
			margin: 0; 
		}
		
		p.last, 
		h1.last, 
		h2.last, 
		h3.last, 
		h4.last, 
		h5.last, 
		address.last, 
		ul.last, 
		ol.last { margin-bottom: 20px; }
		
		.text-right{ text-align: left; }
		
		/* Services */
		
		#diagram { margin-bottom: 30px; }
		
		/* Portfolio */
		
		.portfolio-strip li {
			float: none;
			width: 100%; 
		}
		
		.portfolio-grid li {
			float: none;
			width: 100%;
			padding: 10px 0;
		}
		
		.portfolio-strip li:last-child { display: block; }
		
		.portfolio-filter ul li { 
			display: block;
			margin: 5px 0 5px 0;
		}
		
		.pagination { float: none; }
		
		.portfolio-item-2 .portfolio-item-preview { margin-bottom: 30px; }
		.portfolio-item-2 .btn { margin-top: 30px; }
		
		/* Contact */
		
		#contact-form { margin-bottom: 50px; }
		
		/* Page 404 */
		
		h1.error { 
			font-size: 100px;
			line-height: 100px;
		}

	}
	
/* #Mobile ( Landscape )
  ========================================================================== */

	@media only screen and (min-width: 480px) and (max-width: 767px) {
		
		.row { padding: 0 40px; }
		
		#mobile-menu-trigger { right: 30px; }
		
		/* Portfolio */
		
		.portfolio-items li {
			float: left;
			width: 50%;
		}
		
		.portfolio-strip li {
			float: left;
			width: 50%; 
		}
		
		.portfolio-grid li {
			float: left;
			width: 50%;
			padding: 10px; 
		}
		
	}	

/* ==========================================================================
   #Slider
   ========================================================================== */
   
	.main-slider {
		position: relative;
		overflow: hidden;
		margin: 0 auto 50px auto;
	}

	.main-slider .main-slider__slides {
		margin-bottom: 0;
		list-style: none;
		position: relative;
	}

	.main-slider .main-slider__slides li {
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		position: relative;
		padding: 50px 30px;
		min-height: 250px;
	}

	@media (min-width: 768px) {
		.main-slider .main-slider__slides li {
			padding: 75px 15px;
		}
	}

	@media (min-width: 992px) {
		.main-slider .main-slider__slides li {
			padding: 75px 20px;
		}
	}

	@media (min-width: 1200px) {
		.main-slider .main-slider__slides li {
			padding: 100px 30px;
		}
	}

	.main-slider .main-slider__slides li .main-slider-slide__overlay {
		position: absolute;
		z-index: 1;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: rgba(0, 0, 0, 0.25);
	}

	.main-slider .main-slider__slides li .main-slider-slide__content {
		position: relative;
		z-index: 2;
	}

	@media (min-width: 768px) {
		.main-slider .main-slider__slides li .main-slider-slide__content {
			width: 730px;
			min-height: 250px;
			margin: 0 auto;
		}
	}

	@media (min-width: 992px) {
		.main-slider .main-slider__slides li .main-slider-slide__content {
			width: 940px;
			min-height: 380px;
		}
	}

	@media (min-width: 1200px) {
		.main-slider .main-slider__slides li .main-slider-slide__content {
			width: 1140px;
			min-height: 480px;
		}
	}

	@media (min-width: 768px) {
		.main-slider-slide__content--align-center {
			text-align: center;
		}
		.main-slider-slide__content--align-right {
			text-align: right;
		}
	}

	.main-slider .main-slider-slide__content-wrap *:last-child {
		margin-bottom: 0;
	}

	@media (min-width: 768px) {
		.main-slider-slide__content--valign-middle .main-slider-slide__content-wrap {
			position: absolute;
			top: 50%;
			width: 100%;
			-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
			transform: translateY(-50%);
		}
		.main-slider-slide__content--valign-bottom .main-slider-slide__content-wrap {
			position: absolute;
			bottom: 0;
			width: 100%;
		}
	}
	
	.main-slider-slide__content h1 {
		
	}
	
	.main-slider-slide__content h2{
		
	}
	
	.main-slider-slide__content p{}
	
	.main-slider-slide__content .btn {}

	.main-slider .main-slider__pager {
		position: absolute;
		width: 100%;
		bottom: 0;
		padding: 15px;
		z-index: 3;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

	@media (min-width: 768px) {
		.main-slider .main-slider__pager {
			left: 50%;
			bottom: 10px;
			padding: 15px 0;
			width: 730px;
			-webkit-transform: translateX(-50%);
			-ms-transform: translateX(-50%);
			transform: translateX(-50%);
		}
	}

	@media (min-width: 992px) {
		.main-slider .main-slider__pager {
			width: 940px;
			bottom: 15px;
		}
	}

	@media (min-width: 1200px) {
		.main-slider .main-slider__pager {
			width: 1140px;
		}
	}

	@media (min-width: 1400px) {
		.main-slider .main-slider__pager {
			bottom: 25px;
		}
	}

	.main-slider .main-slider__pager .slick-dots {
		list-style: none;
		margin-bottom: 0;
	}

	.main-slider .main-slider__pager .slick-dots:after {
		display: block;
		visibility: hidden;
		height: 0;
		font-size: 0;
		content: ' ';
		clear: both;
	}

	.main-slider .main-slider__pager.main-slider__pager--align-left .slick-dots {
		text-align: left;
	}

	.main-slider .main-slider__pager.main-slider__pager--align-center .slick-dots {
		text-align: center;
	}

	.main-slider .main-slider__pager.main-slider__pager--align-right .slick-dots {
		text-align: right;
	}

	.main-slider .main-slider__pager .slick-dots li {
		position: relative;
		z-index: 2;
		display: inline-block;
		border-radius: 50%;
		padding: 1px;
		margin-right: 3px;
	}

	.main-slider .main-slider__pager .slick-dots li:last-child {
		margin-right: 0;
	}

	.main-slider .main-slider__pager .slick-dots li button {
		display: block;
		padding: 0;
		width: 15px;
		height: 15px;
		border-radius: 50%;
		border: 1px solid #ffffff;
		cursor: pointer;
		outline: none;
		color: transparent;
		background-color: transparent;
		font-size: 0;
		line-height: 0;
	}

	.main-slider .main-slider__pager .slick-dots li.slick-active button {
		background-color: #ffffff;
	}

	.main-slider .main-slider__arrows a {
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		color: #ffffff;
		font-size: 24px;
		text-decoration: none;
	}

	.main-slider .main-slider__arrows a:hover {
		color: #ffffff;
	}

	.main-slider .main-slider__arrows .slick-prev {
		left: 5px;
	}

	.main-slider .main-slider__arrows .slick-next {
		right: 5px;
	}

	@media (min-width: 767px) {
		.main-slider .main-slider__arrows a {
			font-size: 30px;
		}
	}

	@media (min-width: 992px) {
		.main-slider .main-slider__arrows .slick-prev {
			left: 10px;
		}
		.main-slider .main-slider__arrows .slick-next {
			right: 10px;
		}
	}

	@media (min-width: 1400px) {
		.main-slider .main-slider__arrows .slick-prev {
			left: 25px;
		}
		.main-slider .main-slider__arrows .slick-next {
			right: 25px;
		}
	}
	
/* ==========================================================================
   #Accordions
   ========================================================================== */

	/* Accordion */
	
	.accordion,
	.toggle { margin: 50px 0; }

	.accordion-item,
	.toggle-item { margin-bottom: 10px; }

	.accordion-item-toggle,
	.toggle-item-toggle {
		position: relative;
		display: block;
		padding: 10px 20px;
		border: 1px solid #cdcdcd;
		color: #5e5e5e;
		font-size: 16px;
		font-weight: 600;
		text-transform: uppercase;
	}
	
	a.accordion-item-toggle,
	a.toggle-item-toggle { color: #5e5e5e; }
	
	.accordion-item-toggle:after,
	.toggle-item-toggle:after {
		position: absolute;
		top: 10px;
		right: 15px;
		color: #898989;
		font-family: 'iconfontcustom';
		font-size: 18px;
		content: "\e807";
	}
	
	.accordion-item-toggle.active:after,
	.toggle-item-toggle.active:after {
		color: #fff;
		content: "\e891"; 
	}
	
	.accordion-item-toggle:hover:after,
	.toggle-item-toggle:hover:after { color: #fff; }
	
	.accordion-item-toggle:hover,
	.accordion-item-toggle.active,
	.toggle-item-toggle:hover,
	.toggle-item-toggle.active {
		border-color: #c39d62;
		background-color: #c39d62;
		color: #fff;
		text-decoration: none; 
	}
	
	.accordion-item-content,
	.toggle-item-content { 
		display: none; 
		padding: 15px 25px 5px 25px; 
	}
	
	.accordion-item-content p:last-child,
	.toggle-item-content p:last-child { margin-bottom: 0; }
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.accordion-item-content:after,
	.toggle-item-content:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	.accordion.alt,
	.toggle.alt { margin-top: 0; }
	
	.accordion.alt .accordion-item-toggle,
	.toggle.alt .toggle-item-toggle {
		padding: 10px;
		border-width: 0 0 1px 0;
		text-transform: none;
	}
	
	.accordion.alt .accordion-item-toggle:hover,
	.accordion.alt .accordion-item-toggle.active,
	.toggle.alt .toggle-item-toggle:hover,
	.toggle.alt .toggle-item-toggle.active {
		border-bottom-color: #cdcdcd;
		background-color: transparent;
		color: #5e5e5e;
	}
	
	.accordion.alt .accordion-item-toggle:after,
	.toggle.alt .toggle-item-toggle:after {
		color: #c39d62;
		content: "\e997";
	}
	
	.accordion.alt .accordion-item-toggle.active:after,
	.toggle.alt .toggle-item-toggle.active:after {
		color: #c39d62;
		content: "\e997"; 
	}
	
	.accordion.alt .accordion-item-content,
	.toggle.alt .toggle-item-content { padding: 20px 0 5px 0; }

/* ==========================================================================
   #Alerts
   ========================================================================== */

	.alert {
		padding: 12px 15px;
		border: 1px solid #c2c2c2;
		border-radius: 5px;
		margin-bottom: 30px;
		color: #818181;
		font-size: 16px;
		text-align: center;
	}
	
	.alert i {
		position: relative;
		top: 1px;
		margin-right: 7px;
		color: #c39d62;
		font-size: 25px;
		vertical-align: text-bottom;
	}
	
	.alert.info {
		border: 1px solid #50364b;
		background: #50364b;
		background: linear-gradient(90deg, #50364b, #7e588b, #17103a);
		background: -webkit-linear-gradient(90deg, #50364b, #7e588b, #17103a);
		color: #fff;
	}
	
	.alert.info i { color: #fff; }
	
	.alert.success {
		border: 1px solid #9a6e7f;
		background: #9a6e7f;
		background: linear-gradient(90deg, #9a6e7f, #c99097, #b97d89);
		background: -webkit-linear-gradient(90deg, #9a6e7f, #c99097, #b97d89);
		color: #fff;
	}
	
	.alert.success i { color: #fff; }
	
	.alert.error {
		border: 1px solid #c39d62;
		background-color: #c39d62;
		color: #fff;
	}
	
	.alert.error i { color: #fff; }
	
	.alert.warning {
		border: 1px solid #5a2a42;
		background: #5a2a42;
		background: linear-gradient(90deg, #5a2a42, #8a6382, #a86a83);
		background: -webkit-linear-gradient(90deg, #5a2a42, #8a6382, #a86a83);
		color: #fff;
	}
	
	.alert.warning i { color: #fff; }
	
/* ==========================================================================
   #Animations
   ========================================================================== */
   
   .animate {
		-webkit-animation-duration: 1s;
			  animation-duration: 1s;
		-webkit-animation-fill-mode: both;
			  animation-fill-mode: both;
		visibility: hidden;
	}

	.animate.visible { visibility: visible; }
	
	.animate.hidden { visibility: hidden; }
   
/* ==========================================================================
   #Back to top
   ========================================================================== */

	#back-to-top {
		position: fixed;
		z-index: 1000;
		right: -40px;
		bottom: 20px;
		width: 40px;
		height: 40px;
		border-radius: 7px;
		background-color: #c39d62;
		color: #fafafa;
		font-size: 30px;
		line-height: 40px;
		text-align: center;					
		opacity: 0.5;
		text-decoration: none;
		cursor: pointer;
		-webkit-transition: all 0.4s ease 0s;
				transition: all 0.4s ease 0s;
	}
	
	#back-to-top i {
		font-size: 28px;
		line-height: 40px;
		font-weight: normal;
		vertical-align: top;
		-webkit-transition: all 0.4s ease 0s;
				transition: all 0.4s ease 0s;
	}
	
	#back-to-top:hover {
		opacity: 0.8;
	}
	
	#back-to-top:hover i {
		color: #fff;
	}
	
	#back-to-top.visible {
		right: 40px;
	}
	
	#back-to-top.gone {
		right: -40px;
	}

/* ==========================================================================
   #Buttons
   ========================================================================== */

	.btn { 
		display: inline-block; 
		padding: 8px 20px; 
		border: 1px solid #acacac;
		border-radius: 7px;
		margin: 0 5px 20px 0;
		color: #5e5e5e;
		line-height: 18px;
		vertical-align: middle;
		text-decoration: none !important;
		cursor: pointer;
		-webkit-transition: all 0.3s;
			 -o-transition: all 0.3s;
				transition: all 0.3s;		
	}
	
	a.btn { color: #5e5e5e; }
	
	.btn:focus { outline: 0; }
	
	.btn-large {
		padding: 12px 35px;
		border-radius: 10px;
	}
	
	.btn i,
	.btn-large i {
		display: inline-block; 
		margin: 0 -8px 0 2px;
		color: #c39d62;
		font-size: 22px; 
		line-height: 22px; 
		vertical-align: middle;
	}
	
	.btn:hover {
		border-color: #c39d62; 
		background: #c39d62; 
		color: #fff; 
	}
	
	.btn:hover i,
	.btn-large:hover i { color: #fff; }
	
	/* Alternative Button */
	
	.btn.alt {
		border-color: #c39d62;
		background-color: #c39d62;
		color: #fff;
	}
	
	.btn.alt i,
	.btn-large.alt i { color: #fff; }
	
	.btn.alt:hover {
		border-color: #9a6e7f;
		background-color: #9a6e7f; 
	}
	
/* ==========================================================================
   #Callout Boxes
   ========================================================================== */

	.callout-box {
		padding: 30px 20px;
		margin-bottom: 30px;
		background-color: #333;
		color: #fff;
	}
	
	.callout-box,
	.callout-box h1,
	.callout-box h2,
	.callout-box h3,
	.callout-box h4,
	.callout-box h5,
	.callout-box h6,
	.callout-box a { color: #fff; }
	
	.callout-box .btn { border-color: #fff; }
	
	/**
 	 * Callout box with one background image
 	 *
	 * 1. background-image must be supplied using inline css as it is different for every .callout-box
	 *
	 */
	 
	.callout-box.bg-img {
		background-repeat: no-repeat; /* 1 */ 
		background-position: center center;
		-webkit-background-size: cover;
				background-size: cover;
		color: #fff;
	}
	
	/**
 	 * Callout box with repeating background image
 	 *
	 * 1. background-image must be supplied using inline css as it is different for every .callout-box
	 *
	 */
	 
	.callout-box.bg-pattern {
		background: repeat top left; /* 1 */	
		color: #fff;
	}
	
	.callout-box.bordered {
		border: 1px solid #efefef;
		background-color: #f5f5f5;
	}
	
	/**
 	 * Callout box grid system
 	 *
	 * 1. overwriting inherited .row width to 100% in order to make it fluid
	 *
	 */
	
	.callout-box .row { 
		width: 100%; /* 1 */ 
	}
	
	.callout-box .span1,
	.callout-box .span2,
	.callout-box .span3,
	.callout-box .span4,
	.callout-box .span5,
	.callout-box .span6,
	.callout-box .span7,
	.callout-box .span8,
	.callout-box .span9,
	.callout-box .span10,
	.callout-box .span11,
	.callout-box .span12 {
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 0 10px;
		margin: 0;	
	}
	
	.callout-box .span12 { width: 100%; }
	.callout-box .span11 { width: 91.6666666667%; }
	.callout-box .span10 { width: 83.3333333333%; }
	.callout-box  .span9 { width: 75%; }
	.callout-box  .span8 { width: 66.6666666667%; }
	.callout-box  .span7 { width: 58.3333333333%; }
	.callout-box  .span6 { width: 50%; }
	.callout-box  .span5 { width: 41.6666666667%; }
	.callout-box  .span4 { width: 33.3333333333%; }
	.callout-box  .span3 { width: 25%; }
	.callout-box  .span2 { width: 16.66666666666667%; }
	.callout-box  .span1 { width: 8.333333333333333%; }
  
	@media (max-width: 767px) {
	
		.callout-box .span1,
		.callout-box .span2,
		.callout-box .span3,
		.callout-box .span4,
		.callout-box .span5,
		.callout-box .span6,
		.callout-box .span7,
		.callout-box .span8,
		.callout-box .span9,
		.callout-box .span10,
		.callout-box .span11,
		.callout-box .span12 { width: 100%; }
	  
	}

/* ==========================================================================
   #Custom Lists
   ========================================================================== */

	/**
 	 * Custom lists
 	 *
	 * 1. unstyled list
	 * 2. list with squares for bullets
	 * 3. list with discs for bullets
	 *
	 */
	 
	ul.unstyled { list-style-type: none; } /* 1 */
	ul.square { list-style-type: square; } /* 2 */
	ul.circle { list-style-type: circle; } /* 3 */
	
	/**
 	 * iconfontcustom lists
 	 *
	 * 1. Check list
	 * 2. Fill circle list
	 * 3. Arrow list
	 *
	 */
	 
	ul.check,								/* 1 */
	ul.fill-circle,							/* 2 */
	ul.arrow { list-style: none; }			/* 3 */		
	
	ul.check li:before,
	ul.fill-circle li:before,
	ul.arrow li:before { 
		position: relative;
		top: -1px;
		width: auto;
		height: auto;
		margin-right: 10px;
		color: #c39d62;
		font-family: 'iconfontcustom';
		font-style: normal;
		vertical-align: middle;
	}
	
	ul.check li:before {
		font-size: 13px;
		content: "\ea9f";
	}
	
	ul.fill-circle li:before {
		font-size: 7px;
		content: "\e98e";
	}
	
	ul.arrow li:before {
		font-size: 16px;
		content: "\e997"; 
	}
	
	ul.check li,
	ul.fill-circle li,
	ul.arrow li { margin-bottom: 10px; }	
	
	ul.check li:last-child,
	ul.fill-circle li:last-child,
	ul.arrow li:last-child { margin-bottom: 0; }	

/* ==========================================================================
   #Dividers
   ========================================================================== */

	.divider { margin: 50px 0 100px; }
	
	.divider.single-line { border-top: 1px solid #aeaeae; }
	
	.divider.double-line { border-top: 4px double #aeaeae; }
	
	.divider.single-dotted {
		 height: 1px;
		 background: url(../images/bg-single-dotted.gif) repeat-x top left ;  
	}
	
	.divider.double-dotted { 
		height: 4px;
		background: url(../images/bg-double-dotted.gif) repeat-x top left; 
	}	

/* ==========================================================================
   #Fullwidth Section
   ========================================================================== */
   
    /**
 	 * Full width section
 	 *
	 * 1. background-image must be supplied using inline css as it is different for every .fullwidth-section
	 *
	 */
	 
   .fullwidth-section {
		overflow: hidden;
		position: relative;
		z-index: 0;	
		padding: 50px 0 35px 0;
		margin: 50px 0;
		background-color: #ebebeb;
		background-attachment: scroll;
		background-repeat: no-repeat; /* 1 */ 
		background-position: 50% 0;
		-webkit-background-size: cover;
				background-size: cover;			
	}

	.fullwidth-section-content {
		position: relative;
		z-index: 3;
	}
   
   	.fullwidth-section-overlay {
		position: absolute;
		z-index: 2;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-repeat: repeat;
		background-position: 0 0;	
	}
	
	.fullwidth-section-video {
		position: absolute;
		z-index: 1;
		top: 0;
		overflow: hidden;
		width: 100%;
		height: 100%;
	}
	
	.parallax.parallax-enabled { 
		background-attachment: fixed !important;
		/* if parallax then we don't want it to cover */
		-webkit-background-size: cover;
				background-size: cover;
		
	}
	
	#bg-1 {
		padding: 60px 0 20px;
		margin-bottom: 100px;
		background-image: url(../../content/backgrounds/1920x1000-1.jpg);
	}
	
	#bg-2 {
		padding: 0;
		margin-bottom: 0;
		background-image: url(../../content/backgrounds/1920x500.jpg);
	}
	
	#bg-3 {
		border-top: 1px solid #d7d7d7;
		border-bottom: 1px solid #d7d7d7;
		margin-bottom: -50px;
	}
	
	#bg-3 a { color: #5e5e5e; }
	
	#bg-4 {
		margin-top: 0;
		margin-bottom: 100px;
		background-color: #c39d62; 
	}
	
	#bg-4 .btn:hover { background-color: #9a6e7f; }
	
	#bg-4 .client-logos { margin-top: 0; }
	
	#bg-5 {
		padding: 75px 0 20px 0;
		margin-top: 0;
		margin-bottom: 70px;
		background-image: url(../../content/backgrounds/1920x1000-2.jpg);
	}
	
	#bg-6 {
		border-top: 1px solid #d7d7d7;
		border-bottom: 1px solid #d7d7d7;
		margin-bottom: 100px;
	}
	
	#bg-7 {
		padding: 100px 0 80px 0;
		border-top: 1px solid #d7d7d7;
		border-bottom: 1px solid #d7d7d7;
		margin-top: 0;
		margin-bottom: 100px;
	}
	
	#bg-8 {
		padding: 100px 0;
		border-top: 1px solid #d7d7d7;
		border-bottom: 1px solid #d7d7d7;
		margin: 0;
	}
	
	#bg-9 {
		margin-top: 0;
		margin-bottom: 100px;
		background-image: url(../../content/backgrounds/1920x300-1.jpg); 
	}
	
	#bg-10 {
		padding: 100px 0 70px 0;
		border-top: 1px solid #bb7278;
		border-bottom: 1px solid #bb7278;
		margin: 100px 0;
		background-color: #c39d62; 
	}
	
	#bg-11 {
		padding: 100px 0;
		margin: 70px 0 100px 0;
		background: #f09a9c;
		background: linear-gradient(145deg, #f09a9c, #f08c7f, #d36163, #f08c7f, #d36163);
		background: -webkit-linear-gradient(145deg, #f09a9c, #f08c7f, #d36163, #f08c7f, #d36163);
		color: #fff;
	}
	
	#bg-11 h1 { 
		color: #fff;
		font-size: 36px;
	} 
	
	#bg-11 h2 {
		margin-bottom: 20px;
		color: #fff;
		text-transform: uppercase;
	}
	
	#bg-12 {
		padding-top: 100px;
		padding-bottom: 0;
		border-top: 1px solid #d7d7d7;
		border-bottom: 1px solid #d7d7d7;
		margin-top: 100px;
		margin-bottom: 0;
	}
	
	#bg-12 img { margin: 90px 0 -7px 0; }
	
	#bg-13 {
		padding: 30px 0 5px 0;
		margin-top: 0;
		margin-bottom: 100px;
		background-image: url(../../content/backgrounds/1920x300-2.jpg); 
	}
	
	#bg-14 {
		padding: 85px 0 55px 0;
		margin: 100px 0;
		background-image: url(../../content/backgrounds/1920x1000-3.jpg); 
		color: #5e5e5e;
	}
	
	#bg-14 .arrow { margin-top: 70px; }
	
	#bg-15 {
		padding-top: 100px;
		border-top: 1px solid #d7d7d7;
		border-bottom: 1px solid #d7d7d7;
		margin-bottom: -50px;
	}
	
	.fit-vids-style { display: none; } /* adaugat de ytplayer */
	
	/* Overwite element color when in fullwidth-section */
	
	.parallax,
	.parallax h1,
	.parallax h2,
	.parallax h3,
	.parallax h4,
	.parallax h5,
	.parallax h6,
	.parallax .accordion-item-toggle,
	.parallax .toggle-item-toggle,
	.parallax .accordion-item-toggle:after,
	.parallax .toggle-item-toggle:after,
	.parallax .accordion.alt .accordion-item-toggle:hover,
	.parallax .accordion.alt .accordion-item-toggle.active,
	.parallax .toggle.alt .toggle-item-toggle:hover,
	.parallax .toggle.alt .toggle-item-toggle.active,
	.parallax .btn,
	.parallax ul.check li:before,
	.parallax ul.fill-circle li:before,
	.parallax ul.arrow li:before,
	.parallax .icon-box-1 h2 a,
	.parallax .icon-box-1 h3 a,
	.parallax .icon-box-2 h3 a,
	.parallax .icon-box-3 h3 a,
	.parallax .icon-box-5 h3 a,
	.parallax .icon-box-1 i,
	.parallax .icon-box-2 i,
	.parallax .icon-box-3 i,
	.parallax .icon-box-4 i,
	.parallax .icon-box-5 i,
	.parallax .milestone .milestone-description,
	.parallax .milestone i,
	.parallax .milestone .milestone-content,
	.parallax .vertical-process-builder h3 a,
	.parallax a.social-icon i,
	.parallax .vertical-tabs-container .tabs-menu li a,
	.parallax .tabs-container .tabs-menu li a,
	.parallax .testimonial-author h3,
	.fullwidth-section .testimonial-author h3,
	.parallax .testimonial blockquote h3,
	.fullwidth-section .testimonial blockquote h3,
	.parallax .ewf_widget_twitter a { color: #fff; }
	
	.parallax .icon-box-5,
	.parallax .icon-box-5:hover {
		border-color: #fff;
		background-color: rgba(255, 255, 255, 0.25); 
	}
	
	.parallax .testimonial-author,
	.fullwidth-section .testimonial-author {
		padding: 60px 40px 30px 40px; 
		background: rgba(255, 255, 255, 0.3);
		color: #fff;
	}
	
	.parallax .testimonial blockquote,
	.fullwidth-section .testimonial blockquote { padding-top: 155px; }
	
	.parallax .testimonial,
	.fullwidth-section .testimonial { margin-bottom: 0; }
	
	.parallax .milestone.alt,
	.parallax .bordered,
	.fullwidth-section .bordered { border-color: #fff; }
	
	.parallax .horizontal-process-builder ul li span { outline: none; }
	
	.parallax .tabs-container .tabs-menu li.active a { border-bottom: none; }
	
	.parallax .testimonial,
	.fullwidth-section .testimonial { border: none; }
	
	.parallax .milestone .milestone-content { line-height: 60px; }
	
	.fullwidth-section .callout-box {
		padding: 0;
		margin-bottom: 0;
		background-color: transparent;
	}
	
	.parallax .widget:last-child { margin-bottom: 0; }
	
	.bg-features-slider {
		position: absolute;
		top: 50px;
		left: 50%;
		margin-left: -110px;
	}
	
	@media (min-width: 1400px) {
		
		#bg-12 img { margin-top: 0; }
		
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
			
		#bg-4 .client-logos li:last-child { display: none; }
		
		#bg-12 img { margin-top: 220px; }
		
		#bg-14 .arrow { margin-top: 30px; }
		
	}

	@media (max-width: 767px) {
		
		#bg-2 { margin-top: 100px; }
		
		.parallax .tabs-container .tabs-menu li.active a { border-bottom: 1px solid #c39d62; }
		
		.parallax .testimonial blockquote,
		.fullwidth-section .testimonial blockquote { padding: 30px 0; }
		
		.bg-features-slider { display: none; }
		
		#bg-12 img { margin-top: 0; }
		
		#bg-14 .arrow { margin-top: 0; }
		
	}
   
/* ==========================================================================
   #Google Maps
   ========================================================================== */

	.google-map { 
		width: 100%; 
		min-height: 900px;
		margin-top: 40px;		
	}
	
	.map { 
		position: relative;
		margin-bottom: 30px;
	}
	
	.map-content-wrapper {
		position: absolute;
		bottom: 20px;
		max-height: 700px;
		overflow: hidden;
		margin: 100px 0;
	}
	
	.map-content {
		padding: 100px 50px;
		background-color: #fff;
	}
	
	.map-content.alt { padding: 100px 35px; }
	
	.map-content .social-media { margin: 100px 0; }
	.map-content .ewf_widget_contact_info { margin-bottom: 30px; }
	
	#show-map,
	#show-contact {
		position: absolute;
		bottom: 20px;
		left: 50%;
		margin-left: -50px;
	}
	
	@media (min-width: 1400px) {
		
		.map-content { padding: 100px 100px 130px 100px; }
		
		.map-content .social-media { margin: 100px 0 25px 0; }
		.map-content .ewf_widget_contact_info { margin-bottom: 70px; }
		
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.map-content { padding: 50px; }
		.map-content.alt { padding: 50px 15px 40px 15px; }
		
		.map-content-wrapper { max-height: 630px; }
		.map-content .social-media { margin: 70px 0 25px 0; }
		
	}
	
	@media (max-width: 767px) { 
	
		.map-content-wrapper { 
			position: relative;
			max-height: 100%;
		}
		
		.map-content,
		.map-content.alt { padding: 0 } 
		
		.map-content .social-media { margin: 0; }
		
		#show-map,
		#show-contact { display: none; } 
		
	}

/* ==========================================================================
   #Headlines
   ========================================================================== */

	.headline { margin-bottom: 60px; }
	
	.headline h1 { 
		margin-bottom: 0;
		font-weight: 600;
		text-transform: uppercase;
	}
	
	.headline h3 { margin-bottom: 0; }

/* ==========================================================================
   #Icon Boxes
   ========================================================================== */
/* Icon Box 1
   ========================================================================== */
   
	.icon-box-1 { 
		position: relative; 
		margin: 50px 0;
		text-align: center; 
	}
		
	.icon-box-1 > i { 
		display: block;
		margin-bottom: 35px; 
		color: #c39d62; 
		font-size: 50px;
	}
	
	.icon-box-1 > img { margin-bottom: 35px; }
	
	.icon-box-1 h2 { margin-bottom: 15px; }
	.icon-box-1 h3 { margin-bottom: 20px; }
	
	.icon-box-1 h2 a,
	.icon-box-1 h3 a { 
		color: #c39d62;
		font-weight: 600;
	}
	
	.icon-box-1 h2 a:hover,
	.icon-box-1 h3 a:hover {
		color: #c39d62;
		text-decoration: none;
	}
	
	.icon-box-1 .btn { margin-top: 20px; }
	
	.icon-box-1 .icon-box-content {}

/* Icon Box 2
   ========================================================================== */
   
	.icon-box-2 { 
		position: relative; 
		margin-bottom: 100px;
	}
		
	.icon-box-2 > i { 
		float: left;
		display: block;
		margin-top: 25px;  
		font-size: 50px;
		color: #c39d62; 
	} 
	
	.icon-box-2 > .icon-box-image {
		position: relative;
		overflow: hidden;
		float: left; 
		border-radius: 50%;
		margin-top: -15px; 
	}
	
	.icon-box-2 > .icon-box-image img { 
		display: block;
		border-radius: 50%;
	}
	
	.icon-box-2 > .icon-box-image .overlay {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		border: 10px solid rgba(255, 255, 255, 0.5);
		border-radius: 50%;
	} 
	
	.icon-box-2 h3 a { 
		color: #5e5e5e;
		font-weight: 600;
	}
	
	.icon-box-2 h3 a:hover {
		color: #c39d62;
		text-decoration: none;
	}
	
	.icon-box-2 .icon-box-content { margin-left: 85px; }
	
	.icon-box-2 > .icon-box-image + .icon-box-content { margin-left: 200px; }
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.icon-box-2 > .icon-box-image + .icon-box-content { margin-left: 170px; }		
		
	}
	
	@media (max-width: 767px) {
		
		.icon-box-2 > .icon-box-image { 
			float: none;
			display: inline-block;
			margin-bottom: 20px;
		}
		
		.icon-box-2 > .icon-box-image + .icon-box-content { margin-left: 0; }	
		
	}


/* Icon Box 3
   ========================================================================== */
   
	.icon-box-3 { 
		position: relative; 
		margin-bottom: 30px;
	}
		
	.icon-box-3 > i { 
		float: left;
		display: block;
		margin-top: 50px;  
		font-size: 40px;
		color: #c39d62; 
	} 
	
	.icon-box-3 > img { 
		float: left; 
		display: block;
		margin-top: 50px;   
	} 
	
	.icon-box-3 h3 a { 
		color: #5e5e5e;
		font-weight: 600;
	}
	
	.icon-box-3 h3 a:hover {
		color: #c39d62;
		text-decoration: none;
	}
	
	.icon-box-3 .btn { margin-top: 20px; }
	
	.icon-box-3 .icon-box-content { margin-left: 85px; }

/* Icon Box 4
   ========================================================================== */
   
	.icon-box-4 { 
		position: relative; 
		margin-bottom: 30px;
	}
		
	.icon-box-4 > i { 
		float: left;
		display: block;
		margin-top: 10px;  
		font-size: 50px; 
	} 
	
	.icon-box-4 > img { 
		float: left; 
		display: block;
		margin-top: 10px;     
	} 
	
	.icon-box-4 h2 { 
		margin-bottom: 0;
		font-weight: 600;
	}
	
	.icon-box-4 .icon-box-content { margin-left: 85px; }

/* Icon Box 5
   ========================================================================== */
   
	.icon-box-5 { 
		position: relative;
		padding: 40px 20px 30px 20px;
		border: 1px solid #a1a1a1;
		border-radius: 10px;
		margin-bottom: 30px;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
		
	.icon-box-5 > i { 
		display: block;
		margin-bottom: 35px; 
		color: #c39d62; 
		font-size: 50px;
	}
	
	.icon-box-5 > img { margin-bottom: 35px; }
	
	.icon-box-5 h3 a { 
		color: #5e5e5e;
		font-weight: 600;
	}
	
	.icon-box-5 h3 a:hover { text-decoration: none; }
	
	.icon-box-5 p { text-align: left; }
	.icon-box-5 p:last-child { margin-bottom: 0; }
	
	.icon-box-5 .icon-box-content {}
	
	.icon-box-5:hover {
		background-color: #c39d62;
		border-color: #c39d62;
		color: #fff;
	}
	
	.icon-box-5:hover  i,
	.icon-box-5:hover h3 a { color: #fff; }

/* ==========================================================================
   #Milestones
   ========================================================================== */

	.milestone {
		position: relative;
		margin-bottom: 30px;
		text-align: center;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	.milestone:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	.milestone i {
		z-index: 20;
		display: block;
		margin-bottom: 25px;
		font-size: 50px;
		color: #c39d62;
	}
	
	.milestone .milestone-content {
		z-index: 10;
		color: #c39d62;
		font-size: 72px;
		line-height: 65px;
	}
	
	.milestone .milestone-description { 
		color: #5e5e5e;
		font-size: 18px;
		line-height: 26px;
	}
	
	.milestone .milestone-value {
		display: inline-block;
		margin-bottom: 15px; 
	}
	
	.milestone.alt {
		padding: 20px 0 15px 0;
		border: 1px solid #a1a1a1;
		border-radius: 10px;
	}
	
	.milestone .milestone-content { 
		font-size: 60px;
		line-height: 73px;
	}
	
	.milestone.alt .milestone-content {
		font-size: 48px;
		line-height: 54px;
	}
	
	.milestone.alt-2 { position: relative; }
	
	.milestone.alt-2 img { display: block; }
	
	.milestone.alt-2 .overlay {
		position: absolute;
		z-index: 2;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: url(../../content/index/milestone-slider/overlay.png) no-repeat center center; 
	}
	
	.milestone.alt-2:hover .overlay { background-image: url(../../content/index/milestone-slider/overlay-hover.png); }
	
	.milestone.alt-2 .milestone-content {
		position: absolute;
		z-index: 3;
		right: 0;
		bottom: 30px;
		left: 0;
		color: #fff;
		font-size: 30px;
		line-height: 30px;
		font-weight: 600;
	}
	
	.milestone.alt-2 .milestone-description {
		display: inline-block;
		color: #fff;
		font-size: 30px;
		font-weight: 300;
		text-transform: uppercase;
	}

/* ==========================================================================
   #Our Process
   ========================================================================== */

	/* Horizontal Process Builder */
	
	.horizontal-process-builder { 
		margin-bottom: 40px;
		font-weight: 400;
	}
		
	.horizontal-process-builder ul:before {
		position: absolute;
		top: 70px;
		left: 85px;
		display: block;
		width: 75%;
		height: 0;
		border-top: 1px solid #bfbfbf;
		content: "";
	}
	.horizontal-process-builder ul {
		position: relative;
		list-style: none; 
	}
	
	.horizontal-process-builder ul li { 
		float: left;
		width: 25%;
		text-align: center;  
	}
	
	.horizontal-process-builder ul li i,
	.horizontal-process-builder ul li span > span {
		display: block;
		width: 60px; 
		height: 60px;
		border: 1px solid #cfcfcf;
		border-radius: 50%;
		outline: 0;
		margin: 35px auto 0;
		color: #a5a5a5;
		font-size: 32px; 
		line-height: 60px; 
	}
	
	.horizontal-process-builder ul li span { 
		position: relative; 
		display: inline-block;
		overflow: hidden;  
		width: 135px; 
		height: 135px;
		border: 1px solid #bfbfbf;
		border-radius: 30px; 
		-webkit-border-radius: 50%;
				border-radius: 50%;
		outline: 10px solid #fff; 
		margin-bottom: 40px; 
		background-color: #fff;
		background-clip: padding-box;
		text-align: center; 
	}
	
	.horizontal-process-builder ul li:hover span { 
		background: #9e679e; 
		background: linear-gradient(#9e679e, #e96873); 
		background: -webkit-linear-gradient(#9e679e, #e96873); 
	}
	
	.horizontal-process-builder ul li:hover span > span,
	.horizontal-process-builder ul li:hover i {
		border-color: #fff;
		color: #fff; 
	}
	
	.horizontal-process-builder ul li h5 { 
		margin-bottom: 35px;
		font-weight: 600;
	}
		
	.horizontal-process-builder.three-items ul li { width: 33.3333333333%; }
	.horizontal-process-builder.four-items ul li { width: 25%; }
	.horizontal-process-builder.five-items ul li { width: 20%; }
	
	.horizontal-process-builder.three-items ul:before {
		left: 125px;
		width: 72%;
	}
	
	.horizontal-process-builder.four-items ul:before {
		left: 85px;
		width: 75%;
	}
	
	.horizontal-process-builder.five-items ul:before {
		left: 85px;
		width: 84%;
	}
	
	.horizontal-process-builder .process-description { 
		padding-right: 20px; 
		text-align: left;
	}
	
	/* Vertical Process Builder */
	
	.vertical-process-builder {
		margin-bottom: 50px;
		list-style: none;
	}
	
	.vertical-process-builder h3 { margin-bottom: 0; }
	
	.vertical-process-builder h3 a {
		color: #c39d62;
		font-weight: 600;
		text-decoration: none;
	}
	
	.vertical-process-builder li {
		position: relative;
		margin-bottom: 100px;
	}
	
	.vertical-process-builder li:last-child { margin-bottom: 0; }
	
	.vertical-process-builder li:after {
		position: absolute;
		bottom: -80px;
		left: 36px;
		height: 56px;
		border-left: 1px solid #eaeaea;
		content: "";
	}
	
	.vertical-process-builder li:last-child:after { border: none; }
	
	.vertical-process-builder li h1,
	.vertical-process-builder li i {
		float: left;
		display: block;
		width: 72px;
		height: 72px;
		-webkit-border-radius: 50%;
				border-radius: 50%;
		margin-top: 7px;
		background-color: #c39d62;
		color: #fff; 
		font-size: 36px;
		line-height: 72px;
		text-align: center;
		-webkit-transition: backgroud-color 0.3s;
				transition: backgroud-color 0.3s;
	}
	
	.vertical-process-builder-content { margin-left: 100px; }
	
	.vertical-process-builder li:hover h1,
	.vertical-process-builder li:hover i { background-color: #9e679e; }

	@media (min-width: 768px) and (max-width: 979px) {
	
		.horizontal-process-builder ul:before { 
			top: 52px; 
			left: 70px; 
		}
		
		.horizontal-process-builder ul li span > span,
		.horizontal-process-builder ul li i {
			margin: 20px auto;
			font-size: 30px; 
			line-height: 60px; 
		}
		
		.horizontal-process-builder ul li span { 
			width: 100px; 
			height: 100px; 
		}
		
		.vertical-process-builder li:after { height: 105px; }
	
	}
	
	@media (max-width: 767px) {
	
		.horizontal-process-builder ul li { 
			float: none; 
			width: auto;
			text-align: center;
			margin-bottom: 50px;
		}
		
		.horizontal-process-builder ul li:last-child { margin-bottom: 0; }
		
		.horizontal-process-builder ul:before { border-top: none; }
		
		.horizontal-process-builder.three-items ul li,
		.horizontal-process-builder.four-items ul li,
		.horizontal-process-builder.five-items ul li { width: auto; }
		
		.vertical-process-builder li { margin-bottom: 30px; }
		.vertical-process-builder li:after { display: none; }
	  
	}

/* ==========================================================================
   #Pie charts
   ========================================================================== */

	.pie-chart {
		position: relative;	
		margin: 0 auto 45px auto;
		text-align: center;
	}
	
	.pie-chart canvas {
		position: absolute;
		z-index: 1;
		top: 0;
		left: 0;
	}
	
	.pie-chart i, 
	.pie-chart .pie-chart-custom-text, 
	.pie-chart .pie-chart-percent {
		position: absolute;
		z-index: 10;
		top: 0;
		left: 0;
		display: block;
		width: 100%;
		text-align: center;
	}
	
	.pie-chart img {
		max-width: 100%;
		vertical-align: middle;
	}
	
	.pie-chart .pie-chart-custom-text { font-size: 18px; }
	
	.pie-chart .pie-chart-percent { font-size: 50px; }
	
	.pie-chart-description {
		display: block;
		margin-bottom: 50px;
		font-size: 24px;
		text-align: center;
		font-weight: 400;
	}
	
	.pie-chart-description i { margin-right: 10px; }

/* ==========================================================================
   #Pricing Tables
   ========================================================================== */

	.pricing-table {
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 60px 30px 55px 30px;
		border: 1px solid #adadad;
		border-radius: 10px;
		margin-bottom: 30px;
		text-align: center;
		-webkit-transition: background-color 0.3s ease 0s;
				transition: background-color 0.3s ease 0s;
	}

	.pricing-table-header {	margin-bottom: 20px; }
	
	.pricing-table h2 {
		margin-bottom: 55px;
		font-weight: 600;
		text-transform: uppercase;
	}
	
	.pricing-table-header i { font-size: 36px; }
	
	.pricing-table-header h1 {
		padding: 10px 0;
		margin-bottom: 0;
		color: #d9a9bf;
		font-size: 72px;
		font-weight: 300;
	}
	
	.pricing-table-header h1 sup {
		margin-left: -15px;
		font-size: 36px; 
	}
	
	.pricing-table-header h1 sub {
		margin-left: -25px;
		font-size: 30px;
		vertical-align: baseline;
	}
	
	.pricing-table .btn { margin-bottom: 0; }

	.pricing-table-header h4 {}
		
	.pricing-table-offer {}
	
	.pricing-table-offer ul { 
		list-style: none;
		margin-bottom: 45px;
	}
	
	.pricing-table-offer ul li { 
		border-top: 1px solid #c2c2c2; 
		padding: 12px 0; 
	}
	
	.pricing-table-offer ul li:first-child { border-top: none; }
	
	.pricing-table p { text-align: left; }
	
	.pricing-table.alt { border: none; }
	
	.pricing-table.alt h2 { margin-bottom: 15px; }
	
	.pricing-table.alt .pricing-table-header {
		padding: 20px;
		border-radius: 10px;
		margin: 0 -30px 20px -30px;
		background: #e2b6c9;
		background: linear-gradient(45deg, #e2b6c9, #b597c9);
		background: -webkit-linear-gradient(45deg, #e2b6c9, #b597c9);
	}
	
	.pricing-table.alt .pricing-table-header > div {
		padding-top: 15px;
		border: 1px solid #fff;
		border-radius: 10px;
	}
	
	.pricing-table.alt .pricing-table-header h1,
	.pricing-table.alt .pricing-table-header i { color: #fff; }
	
	.pricing-table.alt p { margin: 0 -30px 50px -30px; }
	
	.pricing-table.alt .pricing-table-offer ul { margin-bottom: 10px; }
	
	@media (min-width: 1400px) {
		
		.pricing-table { padding: 60px 45px 30px 45px; }
		
		.pricing-table.alt .pricing-table-header { margin: 0 -45px 20px -45px; }
		.pricing-table.alt p { margin: 0 -45px 50px -45px; }	
		
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.pricing-table { padding: 60px 10px 30px 10px; }
		.pricing-table-header h1 { font-size: 60px; }
		
		.pricing-table.alt .pricing-table-header { margin: 0 -10px 20px -10px; }
		.pricing-table.alt .pricing-table-header > div { padding-bottom: 10px; }
		.pricing-table.alt p { margin: 0 -10px 50px -10px; }	
		
	}

/* ==========================================================================
   #ProgressBars
   ========================================================================== */

	.progress-bar-description {
		position: relative;
		display: block;
		margin-bottom: 10px;
		line-height: 14px;
		font-weight: 400;
	}
	
	.progress-bar-description span {
		position: absolute;
		top: 0;
		left: 0;
		margin-left: -25px;
	}
	
	.progress-bar {
		position: relative;
		display: block;
		height: 7px;
		margin-bottom: 40px;
		background-color: #dbdbdb;
	}
	
	.progress-bar .progress-bar-outer {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		background: #cf859c;
		background: linear-gradient(90deg, #cf859c, #faacb9);
		background: -webkit-linear-gradient(90deg, #cf859c, #faacb9);
	}
	
	.progress-bar .progress-bar-outer .progress-bar-inner {
		position: absolute;
		z-index: 1;
		top: 0;
		left: 0;
		display: block;
		overflow: hidden;
		height: 100%;
		width: 100%;
	}

/* ==========================================================================
   #SocialMedia
   ========================================================================== */

	a.social-icon {
		float: left;
		display: block;
		width: 24px;
		border-radius: 3px;
		margin-right: 10px;
		margin-bottom: 1px;
		color: #5f5f5f;
		text-align: center;
	}

	a.social-icon:last-child { margin-right: 0; }

	a.social-icon i {
		font-size: 15px;
		line-height: 24px;
	}
	
	a.social-icon:hover {
		color: #fff;
		text-decoration: none; 
	}
	
	a.facebook-icon:hover { background-color: #0e59a0 !important; }
	a.twitter-icon:hover { background-color: #0ea4ff !important; }
	a.dribble-icon:hover { background-color: #ea73a0 !important; }
	a.pinterest-icon:hover { background-color: #d73532 !important; }
	a.googleplus-icon:hover { background-color: #282927 !important; }
	a.tumblr-icon:hover { background-color: #586980 !important; }
	a.instagram-icon:hover { background-color: #82685a !important; }
	a.rss-icon:hover { background-color: #f79638 !important; }
	a.linkedin-icon:hover { background-color: #018faf !important; }
	a.skype-icon:hover { background-color: #00b0f6 !important; }
	a.flickr-icon:hover { background-color: #0061db !important; }
	a.vimeo-icon:hover { background-color: #63879c !important; }
	a.github-icon:hover { background-color: #3b3b3b !important; }
	a.youtube-icon:hover { background-color: #cc181e !important; }
	a.windows-icon:hover { background-color: #6dc2e9 !important; }
	a.dropbox-icon:hover { background-color: #007ee5 !important; }
	a.xing-icon:hover { background-color: #026566 !important; }	
	a.adn-icon:hover { background-color: #1ea076 !important; }
	a.android-icon:hover { background-color: #98cb02 !important; }
	a.apple-icon:hover { background-color: #000000 !important; }
	a.behance-icon:hover { background-color: #2d9ad2 !important; }
	a.bitbucket-icon:hover { background-color: #214f81 !important; }
	a.bitcoin-icon:hover { background-color: #f7931b !important; }
	a.codepen-icon:hover { background-color: #000000 !important; }
	a.css3-icon:hover { background-color: #3289ce !important; }
	a.delicious-icon:hover { background-color: #3399fe !important; }
	a.deviantart-icon:hover { background-color: #c8da30 !important; }
	a.digg-icon:hover { background-color: #0080c2 !important; }
	a.drupal-icon:hover { background-color: #0077b9 !important; }
	a.empire-icon:hover { background-color: #000000 !important; }
	a.foursquare-icon:hover { background-color: #daecb0 !important; }
	a.git-icon:hover { background-color: #f34f29 !important; }
	a.gittip-icon:hover { background-color: #634c3e !important; }
	a.hacker-news-icon:hover { background-color: #f18642 !important; }
	a.html5-icon:hover { background-color: #e54c1f !important; }
	a.joomla-icon:hover { background-color: #016fb9 !important; }
	a.jsfiddle-icon:hover { background-color: #4679a4 !important; }
	a.linux-icon:hover { background-color: #fece0e !important; }
	a.maxcdn-icon:hover { background-color: #f36f20 !important; }
	a.openid-icon:hover { background-color: #fe6101 !important; }
	a.pagelines-icon:hover { background-color: #3783e3 !important; }
	a.pied-piper-icon:hover { background-color: #0c7b48 !important; }
	a.qq-icon:hover { background-color: #23286c !important; }
	a.rebel-icon:hover { background-color: #000000 !important; }
	a.reddit-icon:hover { background-color: #cee3f8 !important; }
	a.renren-icon:hover { background-color: #0d81e4 !important; }
	a.share-icon:hover { background-color: #252525 !important; }
	a.slack-icon:hover { background-color: #453744 !important; }
	a.soundcloud-icon:hover { background-color: #fe4e00 !important; }
	a.spotify-icon:hover { background-color: #80bb41 !important; }
	a.stack-exchange-icon:hover { background-color: #265a93 !important; }
	a.stackoverflow-icon:hover { background-color: #fea501 !important; }
	a.steam-icon:hover { background-color: #191919 !important; }
	a.stumbleupon-icon:hover { background-color: #f04f23 !important; }
	a.tencent-weibo-icon:hover { background-color: #0063a7 !important; }
	a.trello-icon:hover { background-color: #226784 !important; }
	a.vine-icon:hover { background-color: #00b081 !important; }
	a.vk-icon:hover { background-color: #50769d !important; }
	a.wechat-icon:hover { background-color: #a4dc31 !important; }
	a.weibo-icon:hover { background-color: #d82828 !important; }
	a.wordpress-icon:hover { background-color: #454442 !important; }
	a.yahoo-icon:hover { background-color: #4b04a8 !important; }

/* ==========================================================================
   #Styled Tables
   ========================================================================== */

	.table-bordered { 
		border: 1px solid #acacac;
		border-left: none; 
		border-collapse: separate; 
	}
	
	.table-bordered th { border-left: 1px solid #fff; } 
	.table-bordered th:first-child { border-left: none; }
	.table-bordered td { border-left: 1px solid #acacac; }
	
	.table-bordered caption + thead tr:first-child th,
	.table-bordered caption + tbody tr:first-child th,
	.table-bordered caption + tbody tr:first-child td,
	.table-bordered colgroup + thead tr:first-child th,
	.table-bordered colgroup + tbody tr:first-child th,
	.table-bordered colgroup + tbody tr:first-child td,
	.table-bordered thead:first-child tr:first-child th,
	.table-bordered tbody:first-child tr:first-child th,
	.table-bordered tbody:first-child tr:first-child td { border-top: none; }

	.table-condensed th,
	.table-condensed td { padding: 4px 8px; }	

	@media (max-width: 480px) {
	
		/**
		 * Force table to not be like tables anymore
		 */
		 
		table, 
		thead, 
		tbody, 
		th, 
		td, 
		tr { display: block; }
		
		/**
		 * Hide table headers
		 */
	
		thead tr { 
			position: absolute;
			top: -9999px;
			left: -9999px;
		}
		
		.table-bordered { border-top: none; }
		tr { border-top: 2px solid #acacac; }
		
		td:first-child { border-top: none !important; }
	  
	}

/* ==========================================================================
   #Tabs
   ========================================================================== */

	/* Horizontal tabs */
		
   /*
    *  1. Wraps around a horizontal tab group
	*/
   
	.tabs-container {} /* 1 */

	.tabs-container .tabs-menu { 
		border-bottom: 1px solid #c39d62;
		margin-top: 10px; 
		margin-bottom: 0;
		list-style: none; 
	}
	
	.tabs-container .tabs-menu li { display: inline; }
	
	.tabs-container .tabs-menu li a { 
		float: left; 
		display: block;
		padding: 20px 35px; 
		border: 1px solid #acacac;
		border-bottom: none;
		border-top-left-radius: 10px;	
		border-top-right-radius: 10px;	
		margin: 0 3px -1px 0;
		color: #5e5e5e;
		font-size: 18px;
		font-weight: 400;
		text-decoration: none;
	}
	
	.tabs-container .tabs-menu li:last-child a { margin-right: 0; }
	
	.tabs-container .tabs-menu li a:hover { text-decoration: none; }
	
	.tabs-container .tabs-menu li a:hover,
	.tabs-container .tabs-menu li.active a {
		border: 1px solid #c39d62;
		border-bottom: 1px solid #fff;
		color: #c39d62; 
	}
	
	.tabs-container .tabs { margin-bottom: 30px; }
	
	.tabs-container .tab-content { 
		padding: 80px 10px 10px 10px;
	}
	
	.tabs-container .tab-content h3 {
		margin-bottom: 25px;
	}
	
	.tabs-container .tab-content img {
		float: left;
		display: block;
		border-radius: 5px;
		margin-right: 30px;
	}
	
	.tabs-container.alt .tabs-menu {
		border-bottom: none; 
	}
	
	.tabs-container.alt .tabs-menu li a {
		padding: 5px 25px; 
		border-bottom: 1px solid #acacac;
		border-radius: 10px;
		margin-right: 20px;
		font-weight: 600;
	}
	
	.tabs-container.alt .tabs-menu li:last-child a { margin-right: 0; }
	
	.tabs-container.alt .tab-content { padding: 50px 0 10px 0; }
	
	.tabs-container.alt .tabs-menu li a:hover,
	.tabs-container.alt .tabs-menu li.active a {
		border-bottom-color: #c39d62;
		background-color: #c39d62;
		color: #fff; 
	}
	
	/* Vertical tabs */
	
	.vertical-tabs-container {
		position: relative;
		overflow: hidden;
		border: 1px solid #acacac;
		border-radius: 10px;
		margin-bottom: 30px;
	}
	
	.vertical-tabs-container .tabs-menu { 
		float: left;
		width: 179px;
		margin-bottom: 0;
		list-style: none;
	}
	
	.vertical-tabs-container .tabs-menu li a { 
		display: block;
		padding: 15px 25px; 
		border-right: 1px solid #acacac;	
		border-bottom: 1px solid #acacac;
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;
		margin-right: -1px; 
		color: #5e5e5e;
		font-size: 18px;
		text-decoration: none;
	}
	
	.vertical-tabs-container .tabs-menu li a:hover,
	.vertical-tabs-container .tabs-menu li.active a {
		border-right-color: #fff;
		background-color: #c39d62;
		color: #fff;
	}
	
	.vertical-tabs-container .tabs { margin-left: 180px; }
	
	.vertical-tabs-container .tab-content { padding: 25px; }
	
	@media (min-width: 768px) and (max-width: 979px) {
	
		.tabs-container .tabs-menu li a { padding: 10px 15px; }
		
		.tabs-container.alt .tabs-menu li a {
			padding: 5px 10px;
			margin-right: 10px; 
		}	
	
	}
	
	@media (max-width: 767px) {
	
		.tabs-container .tabs-menu { border-bottom: none; }
		
		.tabs-container .tabs-menu li { display: block; }
	
		.tabs-container .tabs-menu li a { 
			float: none; 
			display: block;
			padding: 20px 25px;
			border: 1px solid #acacac;
			border-top: none;
			border-radius: 10px;
			margin: 0;
		}
		
		.tabs-container .tabs-menu li a:hover { text-decoration: none; }
		
		.tabs-container .tabs-menu li:first-child a { border-top: 1px solid #acacac; }
		
		.tabs-container .tabs-menu li.active a {  
			padding: 20px 25px;
			border-bottom-color: #c39d62;
			margin: 0; 
		}
		
		.tabs-container .tabs-menu li.active:first-child a { border-top-color: #c39d62; }
		
		.tabs-container .tabs-menu li a { margin-right: 0; }
		
		.tabs-container.alt .tabs-menu li a {
			display: block;
			padding: 10px;
			margin-right: 0;
			text-align: center;
		}
		
		.tabs-container .tab-content img {
			float: none;
			margin: 0 auto 20px;
		}
		
		.vertical-tabs-container .tabs-menu { 
			float: none;
			width: 100%;
		}
		
		.vertical-tabs-container .tabs { margin-left: 0; }
		
		.vertical-tabs-container .tabs-menu li a { 
			padding: 20px 25px;
			border-right: none;
			border-radius: 0;
			margin-right: 0;
		}		
	  
	}
	
/* ==========================================================================
   #Testimonials
   ========================================================================== */

	.testimonial {
		border-top: 1px solid #aeaeae;
		border-bottom: 1px solid #aeaeae;
		margin-bottom: 30px; 
	}
	
	.testimonial-author {
		float: left;
		padding: 60px 10px 40px 10px;
		margin-right: 30px;
		background: #fdf7f9;
		background: linear-gradient(105deg, #fdf7f9 30%, #decabf);
		background: -webkit-linear-gradient(105deg, #fdf7f9 30%, #decabf);
		text-align: center;
	}
	
	.testimonial-author img {
		border: 2px solid #fff;
		border-radius: 50%; 
		margin-bottom: 20px;
	}
	
	.testimonial-author h3,
	.testimonial-author p { margin-bottom: 0; }
	
	.testimonial-author h3 { font-weight: 600; }
	
	.testimonial blockquote { 
		position: relative; 
		padding-top: 85px;
		margin-bottom: 0;  
	}
	
	.testimonial blockquote p { font-style: normal; }
	
	.testimonial h5 { margin-top: 40px; }
	
	@media (max-width: 767px) {
		
		.testimonial-author { 
			float: none;
			margin-right: 0;
		}
		
		.testimonial blockquote { padding-top: 20px; }
		
	}
	
/* ==========================================================================
   #WordPress Widgets
   ========================================================================== */
	
	/* WordPress Widget Defaults */
	
	.widget { margin-bottom: 70px; }
	
	.widget-title { 
		margin-bottom: 70px;
		line-height: 24px;
		font-weight: 600;
		text-transform: uppercase;
	}
	
	#footer .widget-title {
		margin: 10px 0 60px 0;
		font-size: 18px;
		line-height: 18px;
	}
	
	#header-top .widget:last-child,
	#footer-top .widget:last-child,
	#footer-bottom .widget:last-child { margin-bottom: 0; }
	
	#footer .widget { margin-bottom: 40px; }
	
	.alternative #footer-middle .widget-title { color: #fff; }
	
	/* Text Widget */
	
	.widget_text {}
	
	.textwidget {}
	
	#footer-top-widget-area-1 .widget_text h2 {
		margin-bottom: 0;
		font-weight: 300; 
	}
	
	#footer-top-widget-area-1 .widget_text h2 i {
		font-size: 48px;
		vertical-align: middle;
	}
	
	@media (max-width: 767px) {
		
		#footer .widget-title { margin-bottom: 30px; }
		
		#header-top .widget:last-child,
		#footer-top .widget:last-child,
		#footer-bottom .widget:last-child { margin: 15px 0; }
		
	}
	
	/* Search Widget */
	
	.widget_search {}
	
	#searchform { position: relative; }
	
	.screen-reader-text { display: none; }
	
	#s { 
		display:inline-block; 
		width: 100%; 
		-webkit-box-sizing: border-box; 
		   -moz-box-sizing: border-box; 
		   		box-sizing: border-box; 
	}
	
	#searchsubmit {
		position: absolute;
		top: 0;
		right: 0;
		border: none;
		margin-right: 0;
		background: url(../images/bg-search.png) no-repeat center center;
	}

	/* Recent Entries Widget */
	
	.widget_recent_entries {}
	
	.widget_recent_entries ul { list-style: none; }
	
	.widget_recent_entries ul li { margin-bottom: 35px; }
	.widget_recent_entries ul li:last-child { margin-bottom: 0; }
	
	.widget_recent_entries ul li img {
		float: left;
		border: 7px solid #cfd4d3;
		border-radius: 50%;
		margin-right: 15px;
	}
	
	.widget_recent_entries ul li a {
		display: block;
		color: #c39d62;
	}
	
	.widget_recent_entries ul li .post-date {}
	
	/* Pages Widget */
	
	.widget_pages {}
	
	.widget_pages ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.widget_pages ul li { border-bottom: 1px solid #d7d7d7; } 
	
	.widget_pages a {
		display: inline-block;
		padding: 8px 0 8px 25px;
		color: #5e5e5e;
	}
	
	.widget_pages a:before {
		margin-right: 15px;
		color: #c39d62;
		font-family: "iconfontcustom";
		font-size: 18px;
		content: "\e997";
	}
	
	.widget_pages a:hover { text-decoration: none; }
	
	/* Archive Widget */
	
	.widget_archive {}
	
	.widget_archive ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.widget_archive ul li { border-bottom: 1px solid #d7d7d7; } 
	
	.widget_archive a {
		display: inline-block;
		padding: 8px 0 8px 25px;
		color: #5e5e5e;
	}
	
	.widget_archive a:before {
		margin-right: 15px;
		color: #c39d62;
		font-family: "iconfontcustom";
		font-size: 18px;
		content: "\e997";
	}
	
	.widget_archive a:hover { text-decoration: none; }
	
	.widget_archive select {}
	
	.widget_archive option {}	
	
	/* Categories Widget */
	
	.widget_categories {}
	
	.widget_categories ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.widget_categories ul li { border-bottom: 1px solid #d7d7d7; } 
	
	.widget_categories ul ul.children {}
	
	.widget_categories a {
		display: inline-block;
		padding: 8px 0 8px 25px;
		color: #5e5e5e;
	}
	
	.widget_categories a:before {
		margin-right: 15px;
		color: #c39d62;
		font-family: "iconfontcustom";
		font-size: 18px;
		content: "\e997";
	}
	
	.widget_categories a:hover { text-decoration: none; }
	
	.widget_categories select{}
	
	.widget_categories select#cat {}
	
	.widget_categories select.postform {}
	
	.widget_categories option {}
	
	.widget_categories .level-0 {}
	
	.widget_categories .level-1 {}
	
	.widget_categories .level-2 {}
	
	.widget_categories .level-3 {}
	
	/* Meta Widget */
	
	.widget_meta {}
	
	.widget_meta ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.widget_meta ul li { border-bottom: 1px solid #d7d7d7; } 
	
	.widget_meta a {
		display: inline-block;
		padding: 8px 0 8px 25px;
		color: #5e5e5e;
	}
	
	.widget_meta a:before {
		margin-right: 15px;
		color: #c39d62;
		font-family: "iconfontcustom";
		font-size: 18px;
		content: "\e997";
	}
	
	.widget_meta a:hover { text-decoration: none; }
	
	/* Recent Comments Widget */
	
	.widget_recent_comments {}
	
	#recentcomments { list-style: none; }
	
	#recentcomments li {}
	
	#recentcomments li a { color: #c39d62; }
	
	.recentcomments {}
	
	/* Tag Cloud Widget  */
	
	.widget_tag_cloud {}
	
	.widget_tag_cloud a {
		display: inline-block;
		padding: 3px 5px;
		border: 1px solid #cecece;
		border-radius: 5px;
		margin: 0 3px 5px 0;
		color: #5e5e5e;
	}
	
	.widget_tag_cloud a:after {}
	
	.widget_tag_cloud a:before {}
	
	/* Calendar Widget */
	
	.widget_calendar {}
	
	#calendar_wrap {}
	
	#calendar_wrap th {}
	
	#calendar_wrap td {}
	
	#wp-calendar tr td {}
	
	#wp-calendar caption {}
	
	#wp-calendar a {}
	
	#wp-calendar #today {}
	
	#wp-calendar #prev {}
	
	#wp-calendar #next {}
	
	#wp-calendar #prev a,
	#wp-calendar #next a { color: #5e5e5e; }
	
	/* Custom Menu Widget */
	
	.widget_nav_menu {}	
	
	.widget_nav_menu .menu { list-style:none; }

	.widget_nav_menu .menu {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.widget_nav_menu .menu li { border-bottom: 1px solid #d7d7d7; } 
	
	.widget_nav_menu .menu li a {
		display: inline-block;
		padding: 8px 0 8px 25px;
		color: #5e5e5e;
	}
	
	.widget_nav_menu .menu li a:before {
		margin-right: 15px;
		color: #c39d62;
		font-family: "iconfontcustom";
		font-size: 18px;
		content: "\e997";
	}
	
	.widget_nav_menu .menu li a:hover { text-decoration: none; }
	
	/* RSS Widget */
	
	.widget_rss {}
	
	.widget_rss a { color: #5e5e5e; }
	
	.widget_rss ul { list-style: none; }	
	
	/* EWF Navigation */
	
	.ewf_widget_navigation {}
	
	.ewf_widget_navigation ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.ewf_widget_navigation ul li { border-bottom: 1px solid #d7d7d7; } 
	
	.ewf_widget_navigation a {
		display: inline-block;
		padding: 8px 0 8px 25px;
		color: #5e5e5e;
	}
	
	.ewf_widget_navigation a:before {
		margin-right: 15px;
		color: #c39d62;
		font-family: "iconfontcustom";
		font-size: 18px;
		content: "\e997";
	}
	
	.ewf_widget_navigation a:hover { text-decoration: none; }
	
	#footer-bottom .ewf_widget_navigation ul { float: right; }
	
	#footer-bottom .ewf_widget_navigation ul li { 
		display: inline-block;
		border-bottom: none;
		margin-right: 30px;
	}
	
	#footer-bottom .ewf_widget_navigation ul li:last-child { margin-right: 0; }
	
	#footer-bottom .ewf_widget_navigation a { padding: 0; }
	#footer-bottom .ewf_widget_navigation a:before { content: none; }
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		#footer-bottom .ewf_widget_navigation ul li { margin-right: 10px; }
		
	}
	
	@media (max-width: 767px) {
		
		#footer-bottom .ewf_widget_navigation ul { float: none; }
		
	}
	
	/* Custom - EWF Flickr Widget */
	
	.ewf_widget_flickr {}
	
	#flickr-feed {}
	
	#flickr-feed .flickr_badge_image { display: inline; }
	
	#flickr-feed img { 
		width: 85px; 
		height: auto;
		border: none;
		padding: 8px 15px 0 0; 
	}
	
	#footer #flickr-feed img {
		width: 68px;
		padding-top: 0;
		padding-right: 5px;
	}
	
	@media (min-width: 1400px) {
		
		#flickr-feed img { width: 105px; }
		
		#footer #flickr-feed img { width: 85px; }
		
	}

	/* Custom - Twitter Widget */
	
	.ewf_widget_twitter {}
	
	.ewf_widget_twitter a { color: #5e5e5e; }
	
	.ewf_widget_twitter h2 {
		float: left;
		margin-right: 30px;
	}
	
	.ewf_widget_twitter h2 i { 
		font-size: 48px;
		vertical-align: middle;
	}
	
	#tweet {}
	
	#tweet ul { 
		margin-bottom: 0;
		list-style: none;  
	}
	
	#tweet .tweet { word-wrap: break-word; }
	
	#tweet .interact { display: none; }
	
	@media (max-width: 767px) {
		
		.ewf_widget_twitter h2 { 
			float: none;
			margin-right: 0;
		}
		
	}
	
	/* Custom - Popular Posts Widget */	
	
	.ewf_widget_popular_posts {}
	
	.ewf_widget_popular_posts ul {
		margin-bottom: 0;
		list-style: none;
	}
	
	.ewf_widget_popular_posts ul li { margin-bottom: 30px; }
	.ewf_widget_popular_posts ul li:last-child { margin-bottom: 0; }
	
	.ewf_widget_popular_posts ul li img {
		float: left;
		margin-right: 10px;
	}
	
	.ewf_widget_popular_posts ul li a { 
		display: block;
		color: #5e5e5e;
	}
	
	.ewf_widget_popular_posts ul li span { color: #c39d62; }
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		#footer .ewf_widget_popular_posts ul li img { float: none; }
		
	}
	
	/* Custom - Contact Info Widget */	
	
	.ewf_widget_contact_info {}
	
	.ewf_widget_contact_info ul {
		margin-bottom: 0;
		list-style: none;
	}
	
	.ewf_widget_contact_info ul li {
		position: relative;
		padding-left: 30px;
		margin-bottom: 10px; 
	}
	
	.ewf_widget_contact_info ul li:last-child { margin-bottom: 0; }
	
	.ewf_widget_contact_info ul li i {
		position: absolute;
		top: 6px;
		left: 0;
		color: #c39d62; 
	}
	
	.ewf_widget_contact_info ul li a { color: #5e5e5e; }
	
	#header-top .ewf_widget_contact_info ul li {
		display: inline-block;
		margin-right: 20px;
		margin-bottom: 0;
	}
	
	#header-top .ewf_widget_contact_info ul li:last-child { margin-right: 0; }
	
	#header-top .ewf_widget_contact_info ul li i,
	#header-top .ewf_widget_contact_info ul li a { color: #fff; }
	
	/* Custom - Newsletter Subscribe Widget */
	
	#newsletter-subscribe-form { position: relative; }
	
	#newsletter-subscribe-form input[type="text"] { width: 100%; }
	
	#newsletter-subscribe-form input[type="submit"] {
		position: absolute;
		top: 0;
		right: 0;
		margin-right: 0;
		border-radius: 0 10px 10px 0;
	}
	
	#footer-top #newsletter-subscribe-form { margin-top: 5px; }
	
	#footer-top #newsletter-subscribe-form input[type="text"] {
		height: 37px; 
		border-color: #fff;
		margin-bottom: 0;
		color: #fff;
		font-size: 12px;
	}
	
	#footer-top #newsletter-subscribe-form input[type="submit"] {
		height: 37px;
		padding: 0 10px;
		border-color: #fff;
		margin-bottom: 0;
		background-color: #fff;
		font-size: 12px;
		line-height: 24px;
		text-transform: uppercase;
	}
	
	#footer-top #newsletter-subscribe-form input[type="submit"]:hover {
		background: #9a6e7f; 
		color: #fff;
	}
	
	/* Custom - Social Media Widget */
	
	.ewf_widget_social_media {}
	
	#header-top .ewf_widget_social_media { float: right; }
	#header-top .ewf_widget_social_media a.social-icon { color: #fff; }
	
	.alternative #footer-middle .ewf_widget_social_media .widget-title { margin-bottom: 20px; }
	
	@media (max-width: 767px) {
				
		#header-top .ewf_widget_social_media { float: none; }
		
	}
	
	/* Custom - Related Posts Widget */
	
	.widget_related_posts {}
	
	.widget_related_posts ul {
		padding: 35px 0 10px 0;
		border-top: 1px solid #d7d7d7;
		border-bottom: 1px solid #d7d7d7;
		list-style: none; 
	}
	
	.widget_related_posts ul li {
		position: relative; 
		float:left;
		width: 25%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 0 25px;
		color: #c39d62;
	}
	
	.widget_related_posts ul li i {
		position: absolute;
		top: 0;
		left: 0;
		font-size: 24px;
	}
	
	.widget_related_posts ul li a { color: #5e5e5e; }
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.widget_related_posts ul:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.widget_related_posts ul li { width: 50%; }
		
	}
	
	@media (max-width: 767px) {
		
		.widget_related_posts ul li { width: 100%; }
		
	}

/* ==========================================================================
   #WordPress Comments
   ========================================================================== */
   
	.comments-title {
		font-weight: 600;
		text-transform: uppercase;
	}
	
	.comment-reply-title {}
	
	.commentlist .reply { 
		position: absolute;
		top: 0;
		right: 0; 
	}
	
	.commentlist .reply a { 
		color: #c39d62;
		font-weight: 600;
	}
	
	.commentlist .alt {}
	.commentlist .odd {}
	.commentlist .even {}
	.commentlist .thread-alt {}
	.commentlist .thread-odd {}
	.commentlist .thread-even {}
	.commentlist li ul.children .alt {}
	.commentlist li ul.children .odd {}
	.commentlist li ul.children .even {}
	
	.commentlist .vcard {}
	.commentlist .vcard cite.fn {}
	.commentlist .vcard span.says { display: none; }
	
	.commentlist .vcard img.photo {
		float: left;
		border-radius: 50%;
	}
	
	.commentlist .vcard img.avatar {}
	
	.commentlist .vcard cite.fn a.url {
		float: left;
		margin-left: 20px;
		color: #5e5e5e;
		font-weight: 600;
	}
	
	.commentlist .comment-meta {
		margin: 0 70px 10px 0; 
		text-align: right; 
	} 
	
	.commentlist .comment-meta a {
		color: #5e5e5e;
		font-weight: 600;
	}
	
	.commentlist .commentmetadata {}
	.commentlist .commentmetadata a {}
	
	.commentlist .parent {}
	.commentlist .comment {}
	.commentlist .children {}
	.commentlist .pingback {}
	.commentlist .bypostauthor {}
	.commentlist .comment-author {}
	.commentlist .comment-author-admin {}
	
	.commentlist {
		margin: 55px 0 100px 0;
		list-style: none; 
	}
	
	.commentlist li {}
	.commentlist li p { margin-left: 100px; }
	
	.commentlist li ul {
		margin-left: 100px;
		list-style: none; 
	}
	
	.commentlist li ul.children li {}
	.commentlist li ul.children li.alt {}
	.commentlist li ul.children li.byuser {}
	.commentlist li ul.children li.comment {}
	.commentlist li ul.children li.bypostauthor {}
	.commentlist li ul.children li.comment-author-admin {}
	
	.commentlist li .comment-body { 
		position: relative;
		margin-bottom: 40px;
	}
	
	#cancel-comment-reply {}
	
	#cancel-comment-reply a {}
	
	@media (max-width: 767px) {
		
		.commentlist .vcard img.photo { 
			float: none;
			display: block;
			margin-bottom: 20px;
		}
		
		.commentlist .vcard cite.fn a.url { 
			float: none;
			margin-left: 0;
		}
		
		.commentlist .comment-meta {
			margin-right: 0;
			margin-bottom: 20px;
			text-align: left; 
		}
		
		.commentlist li p { margin-left: 0; }
		
		.commentlist .reply { position: relative; }
		
		.commentlist li ul { margin-left: 30px; }
		
	}
	
/* ==========================================================================
   #WordPress Comment Form
   ========================================================================== */	
   
	/* Blog Post Comment Form */
	
	.section-heading {
		font-weight: 600;
		text-transform: uppercase;
	}
	
	.nav-previous,
	.nav-next{ display: none; }

	.nocomments { display: none; }
	
	.must-log-in { display: none; }
	
	.logged-in-as { display: none; }

	/* Comment Form */

	#commentform { margin: 60px 0; }
	
	#commentform p { margin-bottom: 15px; }
	
	#commentform label {
		display: inline-block;
		margin-bottom: 0;
		margin-left: 10px;
	}
	
	#commentform label i {
		margin-right: 10px;
		color: #c39d62;
		font-size: 18px;
		vertical-align: middle;
	}
	
	#commentform input,
	#commentform textarea { 
		display: inline-block;
		border-radius: 0;
		margin-bottom: 0;
	}
	
	/* Comment notes */
	
	.comment-notes { display: none; }
	
	/* Comment author field. */
	
	.comment-form-author { }
	
	.coment-form-author label { }
	
	.comment-form-author input#author { }

	/* Comment email field. */
	
	.comment-form-email { }
	
	.comment-form-email label { }
	
	.comment-form-email input#email { }

	/* Comment URL field. */
	
	.comment-form-url { }
	
	.comment-form-url label { }
	
	.comment-form-url input#url { }

	/* Required (*) text. */
	
	#commentform .required { }

	/* Comment form comment. */
	
	.comment-form-comment { }
	
	.comment-form-comment label { display: none !important; }
	
	.comment-form-comment textarea#comment { }

	/* Allowed tags paragraph. */
	
	.form-allowed-tags { display: none; }
	
	.form-allowed-tags code { }

	/* Paragraph that wraps the submit button and hidden comment ID fields. */
	
	.form-submit {}

	/* Submit button. */
	
	#commentform #submit {
		padding: 10px 50px;
		border: none;
		background-color: #c39d62;
		color: #fff;
	}
	
	#commentform #submit:hover { background-color: #9a6e7f; }	