
/* ==========================================================================
   =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: #6d6d6d;
		font: 14px "PT Sans", Arial, sans-serif; 
		line-height: 24px;	
	}

	h1, 
	h2, 
	h3, 
	h4, 
	h5, 
	h6 {
		color: #313947;
	}
		
	h1 a, 
	h2 a, 
	h3 a, 
	h4 a, 
	h5 a, 
	h6 a { 
		color: #6d6d6d;
		font-weight: inherit; 
	}
	
	h1 {
		margin-bottom: 25px;	 
		font-size: 48px; 
		line-height: 64px;
		font-family: 'Open Sans', Arial, sans-serif;
		font-weight: 700;
	}
	
	h2 {
		margin-bottom: 20px; 	
		font-size: 36px; 
		line-height: 48px;
		font-family: 'Open Sans', Arial, sans-serif;
		font-weight: 700; 	
	}
	
	h3 {
		margin-bottom: 15px; 
		font-size: 24px; 
		line-height: 36px;
		font-weight: 700; 	
	}
	
	h4 {
		margin-bottom: 10px;
		font-size: 18px; 
		line-height: 27px;   
	}
	
	h5 { 
		margin-bottom: 7px;
		font-size: 16px; 
		line-height: 24px; 
	}
	
	h6 { 
		margin-bottom: 5px;
		font-size: 13px; 
		line-height: 24px; 
	}
	
	p { margin-bottom: 20px; }
	em { font-style: italic; }
	strong { font-weight: 700; }
	small { font-size: 90%; }
	
	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 {}
	
	blockquote span { 
		display: block;
		margin-top: 5px;
		color: #999999;  
	}
	
	blockquote span:before { content: "\2013 \00A0"; }

	hr { 
		height: 0; 
		border: solid #e0e0e0; 
		border-width: 1px 0 0 0;
		margin: 30px 0;
	}

	code, 
	pre { 
		border-radius: 3px;	
		font-family: Monaco, Menlo, Consolas, "Courier New", monospace;			
	}
	
	code { 
		padding: 1px 4px;
		border: 1px solid #e0e0e0;
		background-color: #f3f3f3;  
		color: #d50f25;  
	}
	
	pre { 
		overflow-x: auto; 
		display: block;
		padding: 20px;
		border: 1px solid #e0e0e0;   
		margin-bottom: 20px;
		white-space: pre-wrap;
		background-color: #f3f3f3; 
	}
	
	/* Typography Helper Classes */
	
	/**
	 * <div class="hr"></div> acts like an <hr />
	 */
	
	.hr { 
		border-top: 1px solid #e0e0e0;  
		margin: 30px 0;
	}
	
	.text-left { text-align: left; }
	.text-right { text-align: right; }
	.text-center { text-align: center; }
	
	.text-highlight { color: #7e6634; }

	.text-uppercase { text-transform: uppercase; }
	
	.mute{ color: #999; }
	
	p.last,
	h1.last,
	h2.last,
	h3.last,
	h4.last,
	h5.last,
	address.last { margin-bottom: 0; }
	
	@media (max-width: 767px) {
	
		/**
		 * 1. Hide background on mobile devices
		 */
	 
		body { 
			background: none; /* 1 */
			background-color: #fff; 
		}
		
		p.last, 
		h1.last, 
		h2.last, 
		h3.last, 
		h4.last, 
		h5.last, 
		address.last { margin-bottom: 20px; }
		
		.text-right { text-align: left; }

	}

/* ==========================================================================
   =Typography - Links
   ========================================================================== */
	
	a, 
	a:visited { 
		color: #7e6634; 
		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;
	}	
	
/* ==========================================================================
   =Typography - 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; }
	
	@media (max-width: 767px) {

		ul.last, 
		ol.last { margin-bottom: 20px; }
		
	}

/* ==========================================================================
   =Typography - Images
   ========================================================================== */
	
	img { 
		border: none; 
	}
	
	/* Images Helper Classes */
	
	.img-align-left { 
		float: left;
		margin: 5px 10px 0 0;  
	}
	
	.img-align-right { 
		float: right;
		margin: 5px 0 0 10px; 
	}

/* ==========================================================================
   =Typography - 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 #b4bfc3;
		text-align: center;
		vertical-align: top; 
	}
	
	table th { 
		border-top: none;
		background-color: #7e6634;
		color: #fff;
		font-size: 16px;
	}
	
	table thead th { vertical-align: bottom; }
	
/* ==========================================================================
   =Typography - Forms
   ========================================================================== */

	form {}
	
	fieldset {}
	
	form p {}
	
	label {
		display: block;
		margin-bottom: 5px;
	}

	label span { color: #d50f25; }
	
	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: 8px 15px;
		border: 1px solid #e0e0e0;
		border-radius: 2px;
		margin-bottom: 10px;
		background: #fff;
		color: #444;
		font: 13px "Open Sans", Arial, sans-serif; 
		line-height: 21px;	
	}
	
	input[type="text"]:focus,
	input[type="email"]:focus,
	input[type="url"]:focus,
	textarea:focus {
		border-color: #bbb;
		outline: 0;		
	}
	
	select { height: 40px; }
	
	select:focus {
	  outline: thin dotted #bbb;
	  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: #999;
	}
	
	input:-ms-input-placeholder,
	textarea:-ms-input-placeholder {
		color: #999;
	}
	
	input::-webkit-input-placeholder,
	textarea::-webkit-input-placeholder {
		color: #999;
	}

/* ==========================================================================
   =Misc
   ========================================================================== */
   
	.javascript-required,
	.modern-browser-required{
	    padding: 15px 0;
		background-color: #d50f25;
		color: #fff;
		text-align: center;
		font-weight: 700;
	}
   

/* ==========================================================================
   =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; }
		
	}

/*  -------------------------------------------------------------------------
	-custom grid
	------------------------------------------------------------------------- */
	.container-fluide {
		width: 95%;
	}

	.col-md-6 {
		width: 48.5%;
}

/* ==========================================================================
   =Mobile (Portrait and Landscape )
   ========================================================================== */

/* =Portrait and landscape
   ========================================================================== */
   
	@media (max-width: 767px) {
		
		.row { width: auto; }
		
		
		.row { padding: 0 20px; }
		
		.row .row { 
			width: auto; 
			padding: 0; 
			margin: 0; 
		}	
		
		.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; }
		
	}
	
/* =Landscape
   ========================================================================== */
	
	@media only screen and (min-width: 480px) and (max-width: 767px) {
		
		.row { padding: 0 40px; }
		
	}	
	
/* ==========================================================================
   =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 */
	}

 
/* ==========================================================================
   =Wrap
   ========================================================================== */

	#wrap {
		position: relative;
		background-color: #fff;
	}
	
	@media (max-width: 767px) {

		#wrap { border-top: 1px solid #7e6634; }

	}

/* ==========================================================================
	=Header Top
	========================================================================== */
   
	#header-top {
		padding: .5em 0;
		background-color: #222229;
		color: #fff;
	}
   
   	#header-top a, 
	#header-top h1,
	#header-top h2,
	#header-top h3,
	#header-top h4,
	#header-top h5,
	#header-top h6 { color: #fff; }
	
	#header-top .widget:last-child { margin-bottom: 0; }
	
	#header-top .ewf_widget_contact_info { float: right; }
	
	#header-top .ewf_widget_contact_info ul li {
		display: inline-block; 
		padding-bottom: 0;
		padding-left: 2em;
		margin-right: 1.5em;
		margin-bottom: 0;
	}
	
	#header-top .ewf_widget_contact_info ul li:last-child { margin-right: 0; }
	
	#header-top .ewf_widget_contact_info ul li span { border: none; }

	#header-top .ewf_widget_contact_info select {
		height: unset;
		padding: 2px 2px 0 2px;
		background: #ffffff00;
		color: white;
		border: unset;
		margin: 0;
	}

		#header-top .ewf_widget_contact_info select option {
			background: #222229;
		}

	#header-top { 
		margin-bottom: 0px; 	/* 1 */	
	}
   
	@media (min-width: 1400px) {
		#header-top {
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			z-index: 9999;
		}
	}

	@media (max-width: 767px) {

		#header-top { 
			font-size: 9px;
			padding: 0;
		}
		#header-top select {
			font-size: 9px!important;
		}

	}
   
/* ==========================================================================
   =Header 
   ========================================================================== */
   	
	#header {
		background: rgba(0, 0, 0, 0.9);
		color: white;
		border-top: solid 1px solid 1px rgb(25 25 25);
	}

	#header .container-fluide {
		display: grid;
		grid-template-columns: 9% 67% 24%;
	}

	.part1 {
		text-align: left;
	}

	.part2 {
		text-align: center;
	}

	.part3 {
		text-align: right;
	}

	/* ==========================================================================
   =Logo
   ========================================================================== */
	#logo {
		display: inline-block;
		/*padding: 40px 0 36px 0;*/
		padding: .25em 0 0 0;
		margin-left: 1em;
	}

	#logo img {
		max-height: 70px;
	}

	@media (min-width: 768px) and (max-width: 979px) {
		#logo img {
			max-height: 61px;
		}
	}

	@media (max-width: 767px) {
		#logo img {
			max-height: 52px;
		}
	}

	/* ==========================================================================
   =Menu 
   ========================================================================== */

	/* =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;
			}

		/**
 	 * 1. z-index is 1025 because the sticky menu is 1020
 	 */

		.sf-menu .sf-mega,
		.sf-menu li.dropdown ul,
                .sp-menu li.dropdown ul {
			position: absolute;
			z-index: 1025; /* 1 */
			top: 100%;
			left: 0;
			display: none;
		}

		.sf-menu li.dropdown,
                .sp-menu li.dropdown {
			position: relative;
		}

			.sf-menu li.dropdown ul ul,
                        .sp-menu li.dropdown ul ul {
				top: -1px;
				left: 100%;
			}

			.sf-menu li:hover > .sf-mega,
			.sf-menu li.sfHover > .sf-mega,
			.sf-menu li.dropdown:hover > ul,
                        .sp-menu li.dropdown:hover > ul,
			.sf-menu li.dropdown.sfHover > ul,
                        .sp-menu li.dropdown.sfHover > ul {
				display: block;
			}

	.sf-menu {
		display: inline-block;
	}

		/*#menu {
		float: unset;
	}*/

		/* =Menu Skin
   ========================================================================== */

		/*.sf-menu { float: right;} */

		.sf-menu a {
			display: block;
			font: 14px 'Open Sans', Arial, sans-serif;
			color: #888;
			text-decoration: none;
		}

		.sf-menu li.dropdown a,
                .sp-menu li.dropdown a {
			padding: 10px 15px;
		}

		.sf-menu li:last-child > a {
			border-bottom: none;
		}

		.sf-menu > li > a,
		.sf-menu > li.dropdown > a,
                .sp-menu > li.dropdown > a {
			padding: 50px 25px 51px 25px;
			border: none;
			color: #e9e8e2;
			font-size: 14px;
			border-top: 2px solid transparent;
			/*margin-top: -2px;*/
			margin-top: 0;
			margin-right: 5px;
		}

		.sf-menu > li a i {
			margin-right: 5px;
		}

		.sf-menu > li.current > a {
		}

		.sf-menu li.sfHover > a {
			color: #dcb203;
			text-decoration: none;
		}

		.sf-menu > li.current > a,
		.sf-menu > li.current.dropdown > a,
                .sp-menu > li.current.dropdown > a {
			border-top-color: #dcb203;
			background-color: #dcb20310;
			color: white;
		}

		.centre {
			text-align: center!important;
			/*margin-bottom: 3Opx!important;*/
		}

		/*.centre > span {
			margin: 30px auto 70px auto!important;
		}*/

	@media (min-width: 1653px) {

		.sf-menu > li > a,
		/*.sf-menu > li.dropdown > a { padding: 50px 30px 51px 30px; }*/
		.sf-menu > li.dropdown > a,
                .sp-menu > li.dropdown > a {
			padding: 2em 30px 1.8em 30px;
		}
	}

	@media (min-width: 1400px) and (max-width: 1652px) {
		.sf-menu > li > a,
		.sf-menu > li.dropdown > a,
                .sp-menu > li.dropdown > a {
			padding: 27px 19px 27px 19px;
			font-size: 13px;
		}
	}
        
        @media (min-width: 979px) and (max-width: 1399px) {
		.sf-menu > li > a,
		.sf-menu > li.dropdown > a,
                .sp-menu > li.dropdown > a {
			padding: 27px 10px 27px 10px;
			font-size: 13px;
		}
	}

	/* =DropDown
   ========================================================================== */

	/**
 	 * 1. allow long menu items to determine submenu width
 	 */

	.sf-menu li.dropdown ul, 
        .sp-menu li.dropdown ul {
		min-width: 180px; /* 1 */
		border: 1px solid rgba(0, 0, 0, 0.1);
		background-color: rgba(49, 57, 71, 0.9);
	}

		.sf-menu li.dropdown ul li a,
                .sp-menu li.dropdown ul li a {
			padding: 15px;
			color: #fff;
		}

			.sf-menu li.dropdown ul li a:hover,
                        .sp-menu li.dropdown ul li a:hover {
				color: #7e6634;
			}

	.sf-menu > li.dropdown > ul,
        .sp-menu > li.dropdown > ul {
		border-top: 3px solid #7e6634;
	}
        
        /*sp-menu*/
        .sp-menu .language .dropdown-menu {
            margin-left: 0;
        }
        .sp-menu .language .dropdown-menu li {
            padding-left: 1em!important;
        }
        .sp-menu li.dropdown ul {
            min-width: unset;
        }

	/* =Mega Menu Section
   ========================================================================== */

	.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-top: 3px solid #7e6634;
		margin-top: -3px;
		background-color: rgba(49, 57, 71, 0.9);
	}

		.sf-mega a {
			color: #fff;
		}

	.sf-mega-section {
		float: left;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		padding: 0 20px;
		color: #fff;
	}

		.sf-mega-section ul li a {
			padding: 15px 0;
		}

			.sf-mega-section ul li a:hover {
				color: #7e6634;
			}

		.sf-mega-section .btn {
			display: inline-block;
		}

	/**
 	 * 1. set mega menu section size, as a percentage of the mega menu width
 	 */

	.sf-mega.sf-mega-1-col .sf-mega-section {
		width: 100%;
	}
	/* 1 */

	.sf-mega.sf-mega-2-col .sf-mega-section {
		width: 50%;
	}

	.sf-mega.sf-mega-3-col .sf-mega-section {
		width: 33.3333333333%;
	}

	.sf-mega.sf-mega-4-col .sf-mega-section {
		width: 25%;
	}

	/* =Menu Arrows
   ========================================================================== */

	.sf-arrows .sf-with-ul:after {
		position: absolute;
		top: 50%;
		right: 0;
		width: 0;
		height: 0;
		display: none;
		border: 5px solid transparent;
		border-top-color: #fff;
		margin-top: 2px;
		content: "";
	}

	.sf-arrows ul li .sf-with-ul:after {
		display: block;
	}

	.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: #7e6634;
	}

	.sf-arrows ul .sf-with-ul:after {
		border-color: transparent;
		border-left-color: #999;
		margin-top: -5px;
		margin-right: 4px;
	}

	.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: #7e6634;
	}

	@media (min-width: 768px) and (max-width: 979px) {

		#menu,
		.menu-hide {
			display: none;
		}
	}

	@media (max-width: 767px) {

		#menu,
		.menu-hide {
			display: none;
		}
	}

	/* ==========================================================================
   =Mobile Menu 
   ========================================================================== */

	#mobile-menu {
		border-bottom: 1px solid #e0e0e0;
		margin-bottom: 0;
		background-color: rgba(49, 57, 71, 0.7);
	}

		#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;
			background-color: transparent;
		}

		#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 #e0e0e0;
			color: #fff;
			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;
			width: 70px;
			height: 100%;
			border-left: 1px solid #e0e0e0;
			color: #fff;
			font-size: 20px;
			line-height: 50px;
			text-align: center;
			cursor: pointer;
		}

			#mobile-menu .mobile-menu-submenu-arrow:hover {
				background-color: #7e6634;
			}

		#mobile-menu li a:hover {
		}

	#mobile-menu {
		display: none;
	}

	/* ==========================================================================
   =Mobile menu trigger
   ========================================================================== */

	#mobile-menu-trigger {
		float: right;
		display: none;
		font-size: 32px;
		color: #7c6432;
	}

	@media (min-width: 768px) and (max-width: 979px) {

		#mobile-menu-trigger {
			display: block;
			margin-top: 19px;
			margin-right: 0;
		}
	}

	@media (max-width: 767px) {

		#mobile-menu-trigger {
			position: absolute;
			top: -2px;
			right: 20px;
			display: block;
			padding: 10px;
			margin-top: 0;
			font-size: 22px;
		}
	}

	@media (max-width: 350px) {

		#mobile-menu-trigger {
			top: -6px;
			font-size: 18px;
		}
	}

	@media only screen and (min-width: 480px) and (max-width: 767px) {

		#mobile-menu-trigger {
			right: 30px;
		}
	}

	/* ==========================================================================
   =Custom search form 
   ========================================================================== */

	#custom-search-button + .sf-menu {
		margin-right: 60px;
	}

	#custom-search-button {
		position: absolute;
		top: 43px;
		right: 0;
		display: block;
		width: 32px;
		height: 32px;
		background: url(../images/bg-search.png) no-repeat center center;
		border: 1px solid #bebebe;
		border-radius: 3px;
	}

	/**
 	 * 1. z-index is 1030 because the dropdown menu has a z-index of 1025 
 	 */

	#custom-search-form {
		position: absolute;
		z-index: 1030; /* 1 */
		top: 97px;
		right: -10px;
		display: none;
	}

		#custom-search-form:before {
			position: absolute;
			z-index: 9;
			top: -9px;
			right: 20px;
			width: 0;
			height: 0;
			border-left: 7px solid transparent;
			border-right: 7px solid transparent;
			border-bottom: 10px solid #e0e0e0;
			content: "";
		}

		#custom-search-form:after {
			position: absolute;
			z-index: 10;
			top: -7px;
			right: 20px;
			width: 0;
			height: 0;
			border-left: 7px solid transparent;
			border-right: 7px solid transparent;
			border-bottom: 10px solid #fff;
			content: "";
		}

	#custom-search-submit {
		display: none;
	}

	#custom-search-form #s {
		width: 220px;
		padding: 8px 10px;
		border-radius: 0;
		background-color: #fff;
	}

		#custom-search-form #s:focus {
			border-color: #e0e0e0;
		}


	@media (min-width: 768px) and (max-width: 979px) {

		#custom-search-button {
			right: 50px;
		}

		#custom-search-form {
			right: 40px;
		}
	}

	@media (max-width: 767px) {

		#custom-search-button {
			display: none;
		}
	}

	/* ==========================================================================
   =Sticky Header
   ========================================================================== */

	@media (min-width: 1025px) {

		/**
 	 * We want to allow the header to be sticky on resolutions > 1024. In order to do this
	 * we position it absolute and when the sticky trigger point is reached we give the #header
     * the .stuck class	and change it's positioning to fixed
	 * 
	 * 1. This value should be the height of the #header 
	 * 2. This value should be the height of the #header-top	
 	 */

		/*#header-top { 
			margin-bottom: 0px;*/ /* 1 */
		/*}*/

		#header {
			position: absolute;
			top: 37px; /* 2 */
			right: 0;
			left: 0;
			margin: 0 auto;
			z-index: 999;
		}

			/**
		 * 1. The z-index has to be 1020 so it is bigger than the back to top buttons z-index that is 1010
		 */

			#header.stuck {
				position: fixed;
				z-index: 1020; /* 1 */
				top: 0;
				width: 100%;
				/*padding-top: 15px;*/
				box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
				margin: 0 auto;
				/*background-color: #fff;*/
				-webkit-transition: padding 0.3s;
				transition: padding 0.3s;
			}

				#header.stuck .part2,
				#header.stuck .part3 {
					padding-top: 15px;
				}

				#header.stuck #logo {
					padding: 10px 0;
				}

				#header.stuck .sf-menu > li > a,
				#header.stuck .sf-menu > li.dropdown > a {
					padding: 33px 25px;
					margin-top: -15px;
				}

				#header.stuck .sf-mega {
					margin-top: 0;
				}

				#header.stuck .sf-arrows .sf-with-ul:after {
					margin-top: -6px;
				}

				#header.stuck #custom-search-button {
					top: 12px;
				}

				#header.stuck #custom-search-form {
					top: 72px;
				}
	}
        
        @media (min-width: 979px) and (max-width: 1399px) {                
                #header.stuck .sf-menu > li > a,
		#header.stuck .sf-menu > li.dropdown > a {
			padding: 27px 10px 27px 10px;
			font-size: 13px;
		}
                
                #header .container-fluide {
			display: grid;
			grid-template-columns: 20% 60% 20%;
		}
	}
        
        @media (min-width: 1400px) and (max-width: 1652px) {
                #header.stuck .sf-menu > li > a,
		#header.stuck .sf-menu > li.dropdown > a {
			padding: 27px 19px 27px 19px;
			font-size: 13px;
		}
                
                #header .container-fluide {
			display: grid;
			grid-template-columns: 20% 60% 20%;
		}
	}

	@media (min-width: 1653px) {

		#header.stuck .sf-menu > li > a,
		#header.stuck .sf-menu > li.dropdown > a {
			padding: 33px 30px;
		}

		#header .container-fluide {
			display: grid;
			grid-template-columns: 20% 60% 20%;
		}
	}
        

	/* ==========================================================================
   =Content
   ========================================================================== */

	#content {
		padding-bottom: 50px;
	}

	/* ==========================================================================
   =Page Header
   ========================================================================== */

	#page-header {
	}

	#page-header {
		position: relative;
		padding: 55px 0;
		margin-bottom: 100px;
		background: no-repeat center center;
		color: #fff;
	}

		#page-header h3 {
			margin-bottom: 0;
			color: #fff;
			line-height: 24px;
			font-weight: 700;
			text-transform: lowercase;
		}

	#page-header-overlay {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: rgba(0, 33, 56, 0.75);
	}

	/* ==========================================================================
   =Footer Top
   ========================================================================== */

	#footer-top {
		background-color: #f9f9f9;
	}

	#footer-top-widget-area-1 {
	}

	/* ==========================================================================
   =Footer
   ========================================================================== */

	#footer {
		padding: 60px 0 30px 0;
		background-color: #7e6634;
		color: #fff;
	}

		#footer a,
		#footer h1,
		#footer h2,
		#footer h3,
		#footer h4,
		#footer h5,
		#footer h6 {
			color: #fff;
		}

		#footer .widget-title {
			text-transform: none;
		}

		#footer .widget {
			margin-bottom: 40px;
		}

	#footer-widget-area-1 {
	}

	#footer-widget-area-2 {
	}

	#footer-widget-area-3 {
	}

	#footer-widget-area-4 {
	}

	/* ==========================================================================
   =Footer Bottom
   ========================================================================== */

	#footer-bottom {
		padding: 20px 0;
		background-color: #0d131b;
		color: #fff;
	}

		#footer-bottom a,
		#footer-bottom h1,
		#footer-bottom h2,
		#footer-bottom h3,
		#footer-bottom h4,
		#footer-bottom h5,
		#footer-bottom h6 {
			color: #fff;
		}

		#footer-bottom .widget:last-child {
			margin-bottom: 0;
		}

		#footer-bottom .ewf_widget_social_media {
			float: right;
		}

	#footer-bottom-widget-area-1 {
	}

	#footer-bottom-widget-area-2 {
	}

	@media (max-width: 767px) {

		#footer-bottom .ewf_widget_social_media {
			float: none;
		}
	}

	/* ==========================================================================
   =Back to top
   ========================================================================== */

	#back-to-top {
		position: fixed;
		z-index: 1010;
		right: -40px;
		bottom: 20px;
		width: 40px;
		height: 40px;
		border-radius: 3px;
		background-color: #111;
		color: #fafafa;
		font-size: 30px;
		line-height: 40px;
		text-align: center;
		text-decoration: none;
		opacity: 0.5;
		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 {
			background-color: rgba(0, 0, 0, 0.7);
		}

			#back-to-top:hover i {
				color: #fff;
			}

		#back-to-top.visible {
			right: 40px;
		}

		#back-to-top.gone {
			right: -40px;
		}

	/* ==========================================================================
   #Slider
   ========================================================================== */

	.main-slider {
		position: relative;
		overflow: hidden;
		margin: 0 auto 60px 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;
			}

	/*.video-main-slider__slides {
		margin-top: -103vh;
	}*/

	@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: 300px;
			margin: 0 auto;
		}
	}

	@media (min-width: 992px) {
		.main-slider .main-slider__slides li .main-slider-slide__content {
			width: 940px;
			min-height: 350px;
		}
	}

	@media (min-width: 1200px) {
		.main-slider .main-slider__slides li .main-slider-slide__content {
			width: 1140px;
			min-height: 550px;
		}
	}

	@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 {
		color: #fff;
		font-size: 48px;
		line-height: 56px;
		font-weight: 800;
		text-transform: uppercase;
		position: relative;
	}

		.main-slider-slide__content h1:after {
			border-top: 2px solid #7e6634;
		}

		.main-slider-slide__content h1:after {
			display: block;
			width: 120px;
			border-top: 2px solid #dcb203;
			margin: 30px 0;
			content: "";
		}

	.main-slider-slide__content--align-center h1:after {
		margin: 30px auto;
	}

	.main-slider-slide__content h2 {
	}

	.main-slider-slide__content p {
		color: #fff;
		font: 18px/27px 'PT Sans', Arial, sans-serif;
	}

	.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: 10px;
			height: 10px;
			border: 0;
			border-radius: 50%;
			background-color: #7e6634;
			cursor: pointer;
			outline: none;
			color: transparent;
			font-size: 0;
			line-height: 0;
		}

		.main-slider .main-slider__pager .slick-dots li.slick-active button {
			background-color: #7e6634;
		}

	.main-slider .main-slider__arrows a {
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		color: #7e6634;
		font-size: 24px;
		text-decoration: none;
		background-color: #7e6634;
		padding: 4px;
		border-radius: 2px;
	}

		.main-slider .main-slider__arrows a:hover {
			color: #fff;
		}

	.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;
		}
	}

	#video-hero,
	#laptop-video-slider,
	#mobile-slider {
		display: none
	}

	#video-hero {
		max-height: 100vh;
		overflow: clip;
	}

	@media (min-width: 1024px) {
		/*#video-hero,
		#laptop-video-slider {
			display: block;
		}

		#laptop-img-slider {
			display: none;
		}*/

		#heroVideo {
			width: 100%;
		}

		.show-video {
			display: block!important;
		}

		.hide-video {
			display: none!important;
		}

		.video-main-slider__slides {
			margin-top: -509px;
		}
	}

	@media (min-width: 1024px) {
		.hero-image {
			background-position-y: -18px!important;
			min-height: 78vh!important;
		}
	}

	@media (min-width: 1200px) {
		.video-main-slider__slides {
			margin-top: -758px;
		}
	}

	.expert-h {
		color: white;
	}

	/* ==========================================================================
   =Accordions and Toogles
   ========================================================================== */

	/* =Accordion
   ========================================================================== */

	.accordion {
		margin-bottom: 50px;
	}

	.accordion-item {
		position: relative;
		display: block;
		padding: 20px 25px;
		border: 1px solid #e0e0e0;
		margin-bottom: 15px;
		font-size: 18px;
		line-height: 18px;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

	a.accordion-item {
		color: #6d6d6d;
	}

	.accordion-item:after {
		position: absolute;
		top: -1px;
		right: -1px;
		width: 60px;
		height: 60px;
		background-color: #7e6634;
		color: #fff;
		font-size: 18px;
		line-height: 60px;
		text-align: center;
		content: "+";
	}

	.accordion-item.active:after {
		content: "-";
	}

	.accordion-item:hover,
	.accordion-item.active {
		border-color: #3a4e6a;
		background-color: #3a4e6a;
		color: #fff;
		text-decoration: none;
	}

	.accordion-item-content {
		display: none;
		padding: 15px 60px 15px 25px;
	}

		/*
	 * 1. Clearfix hack 
	 */

		.accordion-item-content:after { /* 1 */
			visibility: hidden;
			display: block;
			height: 0;
			font-size: 0;
			content: " ";
			clear: both;
		}

	/* =Toogle
   ========================================================================== */

	.toggle {
		margin-bottom: 50px;
	}

	.toggle-item {
		position: relative;
		display: block;
		padding: 20px 25px;
		border: 1px solid #e0e0e0;
		margin-bottom: 15px;
		font-size: 18px;
		line-height: 18px;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

	a.toggle-item {
		color: #6d6d6d;
	}

	.toggle-item:after {
		position: absolute;
		top: -1px;
		right: -1px;
		width: 60px;
		height: 60px;
		background-color: #7e6634;
		color: #fff;
		font-size: 18px;
		line-height: 60px;
		text-align: center;
		content: "+";
	}

	.toggle-item.active:after {
		content: "-";
	}

	.toggle-item:hover,
	.toggle-item.active {
		border-color: #3a4e6a;
		background-color: #3a4e6a;
		color: #fff;
		text-decoration: none;
	}

	.toggle-item-content {
		display: none;
		padding: 15px 60px 15px 25px;
	}

		/*
	 * 1. Clearfix hack 
	 */

		.toggle-item-content:after { /* 1 */
			visibility: hidden;
			display: block;
			height: 0;
			font-size: 0;
			content: " ";
			clear: both;
		}

	@media (max-width: 767px) {


		.toggle-item-content,
		.accordion-item-content {
			padding: 15px 0;
		}
	}

	/* ==========================================================================
   =Alerts
   ========================================================================== */

	.alert {
		padding: 13px 15px;
		border: 1px solid #cdcdcd;
		margin-bottom: 30px;
		font-size: 18px;
		text-align: center;
	}

		.alert i {
			position: relative;
			top: 1px;
			margin-right: 7px;
			font-size: 20px;
		}

		.alert.info {
			background-color: #94cee4;
			color: #fff;
		}

		.alert.success {
			background-color: #7e6634;
			color: #fff;
		}

		.alert.error {
			background-color: #ff0030;
			color: #fff;
		}

		.alert.warning {
			background-color: #ff7992;
			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;
		}

	/* ==========================================================================
   =Buttons
   ========================================================================== */

	/* =Default Button
   ========================================================================== */

	.btn {
		display: inline-block;
		padding: 10px;
		border-bottom: 1px solid #7e6634;
		border-radius: 2px;
		margin: 0 5px 20px 0;
		background-color: #7e6634;
		color: #fff;
		font: 12px/12px 'Open Sans', Arial, sans-serif;
		text-decoration: none !important;
		vertical-align: middle;
		cursor: pointer;
		-webkit-transition: all 0.2s;
		transition: all 0.2s;
	}

	a.btn {
		color: #fff;
	}

	.btn:focus {
		outline: 0;
	}

	.btn-large {
		padding: 20px 25px;
		border-bottom-width: 2px;
		font-size: 18px;
		line-height: 18px;
	}

		.btn i,
		.btn-large i {
			float: left;
			margin: 2px 8px 0 -4px;
			font-size: 14px;
			line-height: 14px;
		}

	.btn:hover {
		border-bottom-color: #20252f;
		background-color: #7e6634;
	}

	/* =Colored Buttons
   ========================================================================== */

	.btn-white {
		border: 1px solid #7e6634;
		background-color: transparent;
		color: #7e6634;
	}

	a.btn-white {
		color: #7e6634;
	}

	.btn-white:hover {
		border-color: #7e6634;
		background-color: #7e6634;
		color: #fff;
	}

	.btn-white.alt {
		border-color: #6d6d6d;
	}

	a.btn-white.alt {
		color: #6d6d6d;
	}

	.btn-white.alt:hover {
		border-color: #7e6634;
		color: #fff;
	}

	.btn-black {
		border: 1px solid #7e6634;
		background-color: #7e6634;
		color: #fff;
	}

	a.btn-black {
		color: #fff;
	}

	.btn-black:hover {
		border-color: #7e6634;
		background-color: #7e6634;
		color: #fff;
	}

	.btn-download {
		background: #d3d3d314;
		border-bottom-color: darkgray;
		border-radius: 5px;
	}

	.btn-download:hover {
		background: darkgray!important;
	}

	/* ==========================================================================
   =Client logos
   ========================================================================== */

	.client-logos {
		padding: 40px 0;
		border: 1px solid #e0e0e0;
		margin-bottom: 20px;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

		.client-logos img {
			display: block;
			max-width: 100%;
			margin: 0 auto;
		}

		.client-logos:hover {
			background-color: #f9f9f9;
		}

	@media (min-width: 768px) and (max-width: 979px) {

		.client-logos {
			padding: 25px 0;
		}
	}

	/* ==========================================================================
   =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 */

	/**
 	 * FontAwesome lists
 	 *
	 * 1. Check list
	 * 2. Square check list
	 * 3. Fill circle list
	 * 4. Square list
	 * 5. Diamond list
	 *
	 */

	ul.check, /* 1 */
	ul.square-check, /* 2 */
	ul.fill-circle, /* 3 */
	ul.square, /* 4 */
	ul.diamond {
		list-style: none;
	}
		/* 5 */

		ul.check li:before,
		ul.square-check li:before {
			position: relative;
			top: -1px;
			margin-right: 15px;
			color: #7e6634;
			font-family: 'FontAwesome';
			font-size: 14px;
		}

		ul.check li:before {
			content: "";
		}

		ul.square-check li:before {
			top: 2px;
			font-size: 18px;
			content: "";
		}

		ul.fill-circle li:before {
			position: relative;
			top: -1px;
			display: inline-block;
			width: 8px;
			height: 8px;
			border-radius: 50%;
			margin-right: 15px;
			background-color: #7e6634;
			content: "";
		}

		ul.square li:before {
			position: relative;
			top: 4px;
			display: inline-block;
			width: 16px;
			height: 16px;
			border-radius: 3px;
			margin-right: 15px;
			background-color: #7e6634;
			content: "";
		}

		ul.diamond li:before {
			position: relative;
			top: 4px;
			display: inline-block;
			width: 16px;
			height: 16px;
			margin-right: 15px;
			background-color: #7e6634;
			content: "";
			-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
		}

		ul.check li,
		ul.square-check li,
		ul.fill-circle li,
		ul.square li {
			margin-bottom: 10px;
		}

		ul.diamond li {
			margin-bottom: 25px;
			font-size: 18px;
		}

			ul.check li:last-child,
			ul.square-check li:last-child,
			ul.fill-circle li:last-child,
			ul.square li:last-child,
			ul.diamond li:last-child {
				margin-bottom: 0;
			}


	/* ==========================================================================
   =Dividers
   ========================================================================== */

	.divider {
		margin: 30px 0;
	}

		.divider.single-line {
			border-top: 1px solid #e0e0e0;
		}

		.divider.double-line {
			border-top: 4px double #e0e0e0;
		}

		.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;
		}

	/* ==========================================================================
   =Google Maps
   ========================================================================== */

	/**
	 * 1. needed so that Google Maps controls are not distorted
	 */

	.google-map {
	}

		.google-map img {
			max-width: none;
		}
	/* 1 */

	.map {
		width: 100%;
		height: 680px;
		margin-bottom: 100px;
	}

	@media (max-width: 767px) {

		.map {
			height: 300px;
		}
	}

	/* ==========================================================================
   =Headlines
   ========================================================================== */

	.headline {
		margin: 50px 0 100px 0;
		text-align: center;
		text-transform: uppercase;
		word-wrap: break-word;
	}

		.headline h2,
		.headline h3 {
			margin-bottom: 0;
			font-weight: 800;
		}

			.headline h2:after,
			.headline h3:after {
				display: block;
				width: 35px;
				border-top: 2px solid #7e6634;
				margin: 3px auto 5px;
				content: "";
			}

	.headline-2 {
		margin-bottom: 20px;
		text-transform: uppercase;
		word-wrap: break-word;
	}

		.headline-2 h1 {
			font-weight: 800;
		}

			.headline-2 h1:after {
				display: block;
				width: 120px;
				border-top: 2px solid #7e6634;
				margin: 15px 0 20px 0;
				content: "";
			}

		.headline-2 h2 {
			margin-bottom: 0;
			font-weight: 800;
		}

			.headline-2 h2:after {
				display: block;
				width: 70px;
				border-top: 1px solid #7e6634;
				margin: 8px 0 10px 0;
				content: "";
			}

		.headline-2 h3 {
			font-weight: 700;
		}

		.headline-2 h3,
		.headline-2 h4 {
			margin-bottom: 0;
			text-transform: none;
		}

			.headline-2 h3:after,
			.headline-2 h4:after {
				display: block;
				width: 30px;
				border-top: 1px solid #7e6634;
				margin: 3px 0 5px 0;
				content: "";
			}


	/* ==========================================================================
   =Icon Boxes
   ========================================================================== */

	/* =Icon Box 1
   ========================================================================== */

	.icon-box-1 {
		position: relative;
		margin-bottom: 50px;
	}

		.icon-box-1 > span {
			float: left;
			display: block;
			width: 35px;
			height: 35px;
			background-color: #3a4e6a;
			color: #fff;
			text-align: center;
			-webkit-transition: all 0.2s;
			transition: all 0.2s;
		}

			.icon-box-1 > span i {
				display: inline-block;
				font-size: 18px;
				line-height: 35px;
				-webkit-transition: all 0.2s;
				transition: all 0.2s;
			}

		.icon-box-1 > img {
			float: left;
			display: block;
		}

		.icon-box-1 .icon-box-content {
			margin-left: 55px;
		}

		.icon-box-1:hover > span {
			background-color: #7e6634;
			-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
		}

			.icon-box-1:hover > span i {
				-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}

	/* =Icon Box 2
   ========================================================================== */

	.icon-box-2 {
		position: relative;
		margin-bottom: 50px;
		text-align: center;
	}

		.icon-box-2 > span {
			display: inline-block;
			width: 48px;
			height: 48px;
			border: 1px solid #e0e0e0;
			margin-bottom: 30px;
			text-align: center;
			-webkit-transition: all 0.2s;
			transition: all 0.2s;
		}

			.icon-box-2 > span i {
				display: inline-block;
				font-size: 25px;
				line-height: 48px;
				-webkit-transition: all 0.2s;
				transition: all 0.2s;
			}

		.icon-box-2 > img,
		.icon-box-2 > a > img {
			margin-bottom: 10px;
			max-width: 50%;
			max-height: 70px;
		}

		.icon-box-2 h4 {
			margin-bottom: 30px;
		}

		.icon-box-2 .btn {
			margin-top: 10px;
		}

		.icon-box-2 .icon-box-content {
		}

		.icon-box-2:hover > span {
			background-color: #7e6634;
			color: #fff;
			-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
		}

			.icon-box-2:hover > span i {
				-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}

	/* =Icon Box 3
   ========================================================================== */

	.icon-box-3 {
		position: relative;
		margin-bottom: 50px;
	}

		/**
	 * 1. Stop bg color from leaking outside the border	
	 */

		.icon-box-3 > span {
			position: absolute;
			z-index: 20;
			left: 50%;
			width: 60px;
			height: 60px;
			border: 1px solid #e0e0e0;
			margin-top: -30px;
			margin-left: -30px;
			background-color: #fff;
			text-align: center;
			-webkit-transition: all 0.2s;
			transition: all 0.2s;
		}

			.icon-box-3 > span i {
				display: inline-block;
				font-size: 32px;
				line-height: 60px;
				-webkit-transition: all 0.2s;
				transition: all 0.2s;
			}

		.icon-box-3 h4 {
			margin-bottom: 30px;
		}

		.icon-box-3 .btn {
			margin-top: 15px;
		}

		.icon-box-3 .icon-box-content {
			position: relative;
			z-index: 10;
			padding: 70px 40px 30px 40px;
			border: 1px solid #e0e0e0;
			border-radius: 3px;
			margin-top: 16px;
			text-align: center;
		}

		.icon-box-3:hover > span {
			background-color: #7e6634;
			color: #fff;
			-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
		}

			.icon-box-3:hover > span i {
				-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}

	/* =Icon Box 4
   ========================================================================== */

	.icon-box-4 {
		position: relative;
		margin-bottom: 50px;
	}

		.icon-box-4 > i {
			float: left;
			display: block;
			font-size: 32px;
			line-height: 32px;
			text-align: center;
		}

		.icon-box-4 > img {
			float: left;
			display: block;
		}

		.icon-box-4 h4 {
			margin-bottom: 15px;
			font-weight: 700;
		}

		.icon-box-4 .icon-box-content {
			margin-left: 55px;
		}

	/* ==========================================================================
   =Milestones
   ========================================================================== */

	.milestone {
		position: relative;
		margin-bottom: 50px;
	}

		/*
	 * 1. Clearfix hack 
	 */
		.milestone:after { /* 1 */
			visibility: hidden;
			display: block;
			height: 0;
			font-size: 0;
			content: " ";
			clear: both;
		}

		.milestone i {
			z-index: 20;
			margin-right: 10px;
			font-size: 32px;
		}

		.milestone .milestone-content {
			z-index: 10;
			color: #7e6634;
			font: 72px/85px 'Open Sans', Arial, sans-serif;
			font-weight: 600;
		}

		.milestone .milestone-description {
			font: 14px/24px 'PT Sans', Arial, sans-serif;
			font-weight: 400;
		}

			.milestone .milestone-description p:before {
				display: block;
				width: 40px;
				border-top: 2px solid #7e6634;
				margin-bottom: 10px;
				content: "";
			}


	/* ==========================================================================
   =Our Process
   ========================================================================== */

	/* =Horizontal process
   ========================================================================== */

	.horizontal-process-builder {
		position: relative;
		margin-bottom: 50px;
		list-style: none;
		text-align: center;
	}

		.horizontal-process-builder:before {
			position: absolute;
			z-index: 1;
			top: 60px;
			left: 135px;
			display: block;
			width: 74%;
			border-top: 1px solid #e0e0e0;
			content: "";
		}

		.horizontal-process-builder li {
			float: left;
			width: 25%;
		}

			.horizontal-process-builder li i,
			.horizontal-process-builder li h1,
			.horizontal-process-builder li img {
				position: relative;
				z-index: 2;
				display: block;
				width: 120px;
				height: 120px;
				overflow: hidden;
				border: 1px solid #e0e0e0;
				margin: 0 auto 20px;
				background-color: #fff;
				background-clip: padding-box;
				color: #111;
				font-size: 48px;
				line-height: 120px;
				-webkit-transition: all 0.3s;
				transition: all 0.3s;
			}

			.horizontal-process-builder li:hover i,
			.horizontal-process-builder li:hover h1 {
				background-color: #7e6634;
				color: #fff;
			}

		.horizontal-process-builder.three-items li {
			width: 33.3333333333%;
		}

		.horizontal-process-builder.four-items li {
			width: 25%;
		}

		.horizontal-process-builder.five-items li {
			width: 20%;
		}

	.process-description {
		padding: 0 10px;
	}

	@media (max-width: 767px) {

		.horizontal-process-builder li {
			float: none;
			width: 100%;
			margin-bottom: 40px;
		}

		.horizontal-process-builder:before {
			content: none;
		}

		.horizontal-process-builder.three-items li {
			width: 100%;
		}

		.horizontal-process-builder.four-items li {
			width: 100%;
		}

		.horizontal-process-builder.five-items li {
			width: 100%;
		}
	}

	/* ==========================================================================
   =Pie charts
   ========================================================================== */

	.pie-chart {
		position: relative;
		padding: 30px;
		border-radius: 50%;
		margin: 0 auto 40px auto;
		background-color: #7e6634;
		text-align: center;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

		.pie-chart canvas {
			position: absolute;
			z-index: 1;
			top: 30px;
			left: 30px;
		}

		.pie-chart i,
		.pie-chart .pie-chart-custom-text,
		.pie-chart .pie-chart-percent {
			position: absolute;
			z-index: 10;
			top: 30px;
			left: 0;
			display: block;
			width: 100%;
			color: #fff;
			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: 16px;
		}

	.pie-chart-description {
		display: block;
		margin-bottom: 50px;
		font-size: 14px;
		text-align: center;
	}

	.pie-chart:hover {
		background-color: #7e6634;
	}

	@media (min-width: 768px) and (max-width: 979px) {

		.pie-chart {
			padding: 0;
		}

			.pie-chart canvas {
				top: 0;
				left: 0;
			}

			.pie-chart i,
			.pie-chart .pie-chart-custom-text,
			.pie-chart .pie-chart-percent {
				top: 0;
			}
	}

	/* ==========================================================================
   =Pricing Tables
   ========================================================================== */

	.pricing-table {
		padding-bottom: 20px;
		margin-bottom: 50px;
		background-color: #f1f1f1;
		text-align: center;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

	.pricing-table-header {
		padding: 20px 0;
	}

		.pricing-table-header h4 {
			margin-bottom: 0;
			font-family: 'Open Sans', Arial, sans-serif;
			font-weight: 800;
			text-transform: uppercase;
		}

			.pricing-table-header h4:after {
				display: block;
				width: 30px;
				border-top: 1px solid #7e6634;
				margin: 5px auto;
				content: "";
			}

	.pricing-table h1 {
		padding: 40px 0 20px 0;
		margin-bottom: 0;
		background-color: #f9f9f9;
		font-size: 72px;
		line-height: 40px;
		font-weight: 700;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

		.pricing-table h1 span {
			margin-right: -15px;
			font-size: 36px;
			vertical-align: bottom;
		}

		.pricing-table h1 small {
			display: block;
			margin-left: 10px;
			font-size: 14px;
			font-weight: 400;
			text-transform: uppercase;
		}

	.pricing-table-offer {
	}

		.pricing-table-offer ul {
			list-style: none;
		}

			.pricing-table-offer ul li {
				border-top: 1px solid #fff;
				padding: 20px 0;
			}

				.pricing-table-offer ul li i {
					margin-right: 5px;
					font-size: 18px;
					vertical-align: text-bottom;
				}

				.pricing-table-offer ul li:first-child {
					border-top: none;
				}

	.pricing-table:hover {
		background-color: #7e6634;
		color: #fff;
	}

		.pricing-table:hover h1 {
			background-color: #7e6634;
			color: #fff;
		}

		.pricing-table:hover .pricing-table-header h4,
		.pricing-table:hover .pricing-table-header h6 {
			color: #fff;
		}

	.pricing-table.alt {
		background-color: #7e6634;
		color: #fff;
	}

		.pricing-table.alt h1 {
			background-color: #7e6634;
			color: #fff;
		}

		.pricing-table.alt .btn-white {
			border-color: #fff;
			color: #fff;
		}

		.pricing-table.alt .pricing-table-header h4,
		.pricing-table.alt .pricing-table-header h6 {
			color: #fff;
		}

			.pricing-table.alt .pricing-table-header h4:after {
				border-top-color: #7e6634;
			}

		.pricing-table.alt:hover {
			background-color: #7e6634;
		}

			.pricing-table.alt:hover h1 {
				background-color: #7e6634;
			}

		.pricing-table.alt .pricing-table-header h4:after {
			border-top-color: #7e6634;
		}

		.pricing-table.alt:hover .pricing-table-header h4:after {
			border-top-color: #7e6634;
		}

	/* ==========================================================================
   =Progress Bar
   ========================================================================== */

	.progress-bar-description {
		position: relative;
		display: block;
		margin-bottom: 15px;
		line-height: 14px;
	}

		.progress-bar-description span {
			position: absolute;
			z-index: 2;
			top: 36px;
			left: 0;
			margin-left: -35px;
			color: #fff;
		}

	.progress-bar {
		position: relative;
		z-index: 1;
		display: block;
		height: 27px;
		margin-bottom: 15px;
		background-color: #e0e0e0;
	}

		.progress-bar .progress-bar-outer {
			position: absolute;
			top: 0;
			left: 0;
			height: 100%;
			background-color: #7e6634;
		}

			.progress-bar .progress-bar-outer .progress-bar-inner {
				position: absolute;
				z-index: 1;
				overflow: hidden;
				top: 0;
				left: 0;
				display: block;
				height: 100%;
				width: 100%;
			}

	/* ==========================================================================
   =Social Media
   ========================================================================== */

	a.social-icon {
		float: left;
		display: block;
		width: 32px;
		height: 32px;
		border: 1px solid #7e6634;
		margin-right: 10px;
		margin-bottom: 1px;
		text-align: center;
	}

		a.social-icon:last-child {
			margin-right: 0;
		}

		a.social-icon i {
			font-size: 18px;
			line-height: 32px;
		}

		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.codepan-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.gitti-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 #e0e0e0;
		border-left: none;
		border-collapse: separate;
	}

		.table-bordered th,
		.table-bordered td {
			border-left: 1px solid #e0e0e0;
		}

		.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;
	}

	.table-striped tbody tr:nth-child(odd) td,
	.table-striped tbody tr:nth-child(odd) th {
		background-color: #f3f3f3;
	}

	@media (max-width: 480px) {

		/**
		 * Force table to not be like tables anymore
		 */

		table,
		thead,
		tbody,
		th,
		td,
		tr {
			display: block;
		}

		.table-bordered {
			border-top: none;
		}

		/**
		 * Hide table headers
		 */

		thead tr {
			position: absolute;
			top: -9999px;
			left: -9999px;
		}

		tr {
			border-top: 1px solid #bbb;
		}

		td:first-child {
			border-top: none !important;
		}
	}

	/* ==========================================================================
   =Tabs
   ========================================================================== */

	/* =Horizontal tabs
   ========================================================================== */

	/*
    *  1. Wraps around a horizontal tab group
	*/

	.tabs-container {
		margin-bottom: 50px;
	}
		/* 1 */

		.tabs-container .tabs-menu {
			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 25px;
					border-top: 3px solid #fff;
					border-right: 1px solid #fff;
					background-color: #7e6634;
					color: #fff;
					font-size: 16px;
					line-height: 16px;
					text-decoration: none;
					-webkit-transition: all 0.3s;
					transition: all 0.3s;
				}

				.tabs-container .tabs-menu li:last-child a {
					border-right: none;
				}

				.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-top-color: #7e6634;
					background-color: #7e6634;
				}

		.tabs-container .tabs {
			margin-bottom: 30px;
		}

		.tabs-container .tab-content {
			padding: 30px;
			border-radius: 0 0 2px 2px;
			background-color: #7e6634;
			color: #fff;
		}

			.tabs-container .tab-content h1,
			.tabs-container .tab-content h2,
			.tabs-container .tab-content h3,
			.tabs-container .tab-content h4,
			.tabs-container .tab-content h5,
			.tabs-container .tab-content h6 {
				color: #fff;
			}

			.tabs-container .tab-content p:last-child {
				margin-bottom: 0;
			}

			.tabs-container .tab-content img {
				float: left;
				margin-right: 30px;
			}

	/* =Vertical tabs
   ========================================================================== */

	.vertical-tabs-container {
		position: relative;
	}

		.vertical-tabs-container .tabs-menu {
			float: left;
			width: 269px;
			margin-bottom: 0;
			list-style: none;
		}

			.vertical-tabs-container .tabs-menu li a {
				display: block;
				padding: 20px 25px;
				border: 1px solid #e0e0e0;
				border-bottom: none;
				color: #6d6d6d;
				font-weight: 700;
				text-decoration: none;
				text-transform: uppercase;
				-webkit-transition: all 0.3s;
				transition: all 0.3s;
			}

			.vertical-tabs-container .tabs-menu li:last-child a {
				border-bottom: 1px solid #e0e0e0;
			}

			.vertical-tabs-container .tabs-menu li.active a,
			.vertical-tabs-container .tabs-menu li a:hover {
				background-color: #7e6634;
				color: #fff;
			}

		.vertical-tabs-container .tabs {
			margin-left: 270px;
		}

		.vertical-tabs-container .tab-content {
			padding: 15px 15px 15px 30px;
		}

	@media (min-width: 768px) and (max-width: 979px) {

		.tabs-container .tabs-menu li a {
			padding: 15px 12px;
			font-size: 14px;
		}
	}

	@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-top: none;
					border-right: none;
					margin: 0;
				}

					.tabs-container .tabs-menu li a:hover {
						text-decoration: none;
					}

				.tabs-container .tabs-menu li.active a {
					padding: 20px 25px;
					border-bottom-color: #bbb;
					margin: 0;
				}

		.tabs-container .tab-content img {
			float: none;
			margin-right: 0;
			margin-bottom: 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;
			margin-right: 0;
		}
	}

	/* ==========================================================================
   =Testimonials
   ========================================================================== */

	.testimonial {
		margin-bottom: 30px;
		text-align: center;
	}

		.testimonial span {
			position: relative;
			overflow: hidden;
			display: block;
			width: 140px;
			height: 140px;
			margin: 30px auto 70px auto;
			/*-webkit-transform: rotate(45deg);
			transform: rotate(45deg);*/
			border-radius: 50%;
		}

			.testimonial span img {
				display: block;
				height: 100%
				/*-webkit-transform: rotate(-45deg) translateY(-28px);
				transform: rotate(-45deg) translateY(-28px);*/
			}

		.testimonial > h4 {
			margin-bottom: 0;
			text-transform: uppercase;
		}

			.testimonial > h4:after {
				display: block;
				width: 30px;
				border-top: 1px solid #7e6634;
				margin: 5px auto;
				content: "";
			}

		.testimonial blockquote {
			margin: 20px 0 50px 0;
		}

		.testimonial.alt {
			text-align: left;
		}

			.testimonial.alt span {
				float: left;
				margin-right: 50px;
			}

			.testimonial.alt > h4:after {
				margin: 5px 0 5px 150px;
			}

	.testimonial-2 {
		margin-bottom: 30px;
	}

		.testimonial-2 blockquote {
			position: relative;
			padding: 15px 20px;
			border: 1px solid #7e6634;
			margin-bottom: 30px;
		}

			.testimonial-2 blockquote:before {
				position: absolute;
				bottom: -10px;
				left: 27px;
				width: 0;
				height: 0;
				border-left: 8px solid transparent;
				border-right: 8px solid transparent;
				border-top: 10px solid #7e6634;
				content: "";
				-moz-transform: scale(.9999);
			}

			.testimonial-2 blockquote:after {
				position: absolute;
				bottom: -8px;
				left: 28px;
				width: 0;
				height: 0;
				border-left: 7px solid transparent;
				border-right: 7px solid transparent;
				border-top: 8px solid #fff;
				content: "";
				-moz-transform: scale(.9999);
			}

			.testimonial-2 blockquote p:last-child {
				margin-bottom: 0;
			}

		.testimonial-2 span {
			position: relative;
			overflow: hidden;
			float: left;
			display: block;
			width: 50px;
			height: 50px;
			margin: 10px 30px 10px 10px;
			-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
		}

			.testimonial-2 span img {
				display: block;
				-webkit-transform: rotate(-45deg) translateY(-14px);
				transform: rotate(-45deg) translateY(-14px);
			}

		.testimonial-2 h5 {
			padding-top: 5px;
			margin-bottom: 0;
		}

		.testimonial-2 > h5:after {
			display: block;
			width: 30px;
			border-top: 1px solid #7e6634;
			margin: 5px 0 0 90px;
			content: "";
		}

	.testimonial-3 {
		margin-bottom: 40px;
	}

		.testimonial-3 img {
			margin-bottom: 20px;
		}

		.testimonial-3 > h4 {
			margin-bottom: 0;
			text-transform: uppercase;
		}

			.testimonial-3 > h4:after {
				display: block;
				width: 30px;
				border-top: 1px solid #7e6634;
				margin-top: 5px;
				content: "";
			}

		.testimonial-3 blockquote {
			margin-top: 20px;
		}

	/* ==========================================================================
   =Team Member
   ========================================================================== */

	.team-member {
		position: relative;
		overflow: hidden;
		padding-bottom: 30px;
		border: 1px solid #e0e0e0;
		border-radius: 2px;
		margin-bottom: 50px;
		text-align: center;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

	.team-member-preview {
		position: relative;
		margin-bottom: 20px;
	}

		.team-member-preview img {
			display: block;
			width: 100%;
			margin-bottom: 30px;
		}

	.team-member-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(79, 183, 255, 0.5);
		opacity: 0;
	}

	.team-member h4 {
		margin-bottom: 0;
		text-transform: uppercase;
	}

		.team-member h4:after {
			display: block;
			width: 30px;
			border-top: 1px solid #7e6634;
			margin: 5px auto;
			content: "";
		}

	.team-member .social-media a.social-icon {
		float: none;
		display: inline-block;
	}

	.team-member:hover {
		background-color: #7e6634;
	}

		.team-member:hover .team-member-overlay {
			opacity: 1;
		}

		.team-member:hover h4,
		.team-member:hover h6 {
			color: #fff;
		}

	.team-member .social-media {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		margin-left: 5px;
		opacity: 0;
		-webkit-transition: all 0.3s 0.1s;
		transition: all 0.3s 0.1s;
	}

		.team-member .social-media a {
			border-color: #fff;
			margin-right: 10px;
			background-color: #7e6634;
			color: #fff;
			-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
		}

			.team-member .social-media a i {
				-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}

	.team-member:hover .social-media {
		bottom: 110px;
		opacity: 1;
	}

	/* ==========================================================================
   =Timeline
   ========================================================================== */

	.vertical-timeline {
		margin-bottom: 50px;
		list-style: none;
	}

		.vertical-timeline li {
			position: relative;
		}

		.vertical-timeline h3 {
			margin-bottom: 0;
		}

	.left-side,
	.right-side {
		position: relative;
		float: left;
		width: 370px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		padding: 20px 25px;
		border-radius: 2px;
		margin-bottom: 50px;
		background-color: #f1f1f1;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

		.left-side:before,
		.right-side:before {
			position: absolute;
			top: 50%;
			width: 0;
			height: 0;
			border-top: 10px solid transparent;
			border-bottom: 10px solid transparent;
			margin-top: -15px;
			content: "";
			-moz-transform: scale(.9999);
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
		}

		.left-side:before {
			right: -10px;
			border-left: 10px solid #f1f1f1;
		}

		.right-side:before {
			left: -10px;
			border-right: 10px solid #f1f1f1;
		}

	.vertical-timeline li:nth-child(odd) .right-side,
	.vertical-timeline li:nth-child(even) .left-side,
	.vertical-timeline li:hover:nth-child(odd) .right-side,
	.vertical-timeline li:hover:nth-child(even) .left-side {
		background-color: transparent;
	}

		.vertical-timeline li:nth-child(odd) .right-side:before,
		.vertical-timeline li:nth-child(even) .left-side:before {
			display: none;
		}

	.left-side p:last-child,
	.right-side p:last-child {
		margin-bottom: 0;
	}

	.vertical-timeline li:hover .left-side,
	.vertical-timeline li:hover .right-side {
		background-color: #7e6634;
		color: #fff;
	}

		.vertical-timeline li:hover .left-side h4,
		.vertical-timeline li:hover .right-side h4 {
			color: #fff;
		}

		.vertical-timeline li:hover .left-side:before {
			border-left-color: #7e6634;
		}

		.vertical-timeline li:hover .right-side:before {
			border-right-color: #7e6634;
		}

	.separator {
		position: relative;
		float: left;
		width: 200px;
		margin-top: 20px;
	}

		.separator:before {
			position: absolute;
			top: 0;
			left: 50%;
			height: 100%;
			border-left: 1px solid #e0e0e0;
			content: "";
		}

	.vertical-timeline li:last-child .separator:before {
		display: none;
	}

	.separator span {
		display: block;
		width: 100px;
		height: 100px;
		margin: 0 auto;
		background-color: #7e6634;
		text-align: center;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

		.separator span i {
			display: inline-block;
			color: #fff;
			font-size: 50px;
			line-height: 100px;
			-webkit-transform: rotate(-45deg);
			transform: rotate(-45deg);
		}

	.vertical-timeline li:hover .separator span {
		background-color: #7e6634;
	}

	/*
	 * 1. Clearfix hack 
	 */

	.vertical-timeline li:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}

	@media (min-width: 1400px) {

		.left-side,
		.right-side {
			width: 485px;
		}
	}

	@media (min-width: 768px) and (max-width: 979px) {

		.left-side,
		.right-side {
			width: 300px;
		}

		.separator {
			width: 105px;
		}

			.separator span {
				width: 50px;
				height: 50px;
				margin-top: 35px;
			}

			.separator:before {
				top: 60px;
			}

			.separator span i {
				font-size: 24px;
				line-height: 50px;
			}
	}

	@media (max-width: 767px) {

		.left-side,
		.right-side {
			float: left;
			width: 100%;
			margin-top: 100px;
		}

			.left-side:before,
			.right-side:before {
				display: none;
			}

		.separator {
			position: absolute;
			top: -75px;
			left: 0;
			width: 100%;
			float: none;
		}

			.separator span {
				width: 75px;
				height: 75px;
				margin-top: 50px;
			}

			.separator:before {
				display: none;
			}

			.separator span i {
				font-size: 42px;
				line-height: 75px;
			}

		.vertical-timeline li:nth-child(odd) .right-side,
		.vertical-timeline li:nth-child(even) .left-side {
			display: none;
		}
	}

	/* ==========================================================================
   =Personal info
   ========================================================================== */

	.personal-info {
		list-style: none;
	}

		.personal-info li {
			padding-bottom: 10px;
			border-bottom: 1px solid #e0e0e0;
			margin-bottom: 10px;
		}

			.personal-info li:last-child {
				padding-bottom: 0;
				border: none;
				margin-bottom: 0;
			}

	/* ==========================================================================
   =Portfolio Item
   ========================================================================== */

	.portfolio-item {
		position: relative;
		overflow: hidden;
		border: 1px solid #e0e0e0;
		border-radius: 2px;
		margin-bottom: 50px;
	}

	.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(79, 183, 255, 0.5);
		opacity: 0;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

	.portfolio-item:hover .portfolio-item-overlay {
		opacity: 1;
	}

	.portfolio-item-overlay-actions {
		position: absolute;
		z-index: 2;
		bottom: -100px;
		width: 100%;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		margin-top: -30px;
		text-align: center;
		opacity: 0;
		-webkit-transition: all 0.3s 0.2s;
		transition: all 0.3s 0.2s;
	}

		.portfolio-item-overlay-actions .portfolio-item-zoom,
		.portfolio-item-overlay-actions .portfolio-item-link {
			display: inline-block;
			width: 32px;
			height: 32px;
			border: 1px solid #fff;
			margin: 0 5px;
			background-color: #7e6634;
			color: #fff;
			font-size: 20px;
			line-height: 32px;
			text-decoration: none;
			-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
		}

			.portfolio-item-overlay-actions .portfolio-item-zoom span,
			.portfolio-item-overlay-actions .portfolio-item-link span {
				display: inline-block;
				-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}

			.portfolio-item-overlay-actions .portfolio-item-zoom i,
			.portfolio-item-overlay-actions .portfolio-item-link i {
				display: inline-block;
				color: #fff;
				font-size: 14px;
				line-height: 32px;
				-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}

			.portfolio-item-overlay-actions .portfolio-item-zoom:hover,
			.portfolio-item-overlay-actions .portfolio-item-link:hover {
				background-color: #7e6634;
			}

	.portfolio-item-description {
		padding: 35px 15px;
		background-color: #fff;
		font-family: 'Open Sans', Arial, sans-serif;
		text-align: center;
		text-transform: uppercase;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

		.portfolio-item-description h4 {
			margin: 15px 0;
		}

		.portfolio-item-description h5 {
			margin-bottom: 0;
		}

	.portfolio-strip.masonry .portfolio-item-description h6 {
		display: none;
	}

	.portfolio-item-description h6:before {
		display: block;
		width: 20px;
		border-top: 1px solid #7e6634;
		margin: -5px auto 5px auto;
		content: "";
	}

	.portfolio-item:hover .portfolio-item-description {
		background-color: #7e6634;
	}

		.portfolio-item:hover .portfolio-item-description h4,
		.portfolio-item:hover .portfolio-item-description h5,
		.portfolio-item:hover .portfolio-item-description h6 {
			color: #fff;
		}

	.portfolio-item:hover .portfolio-item-overlay-actions {
		bottom: -17px;
		opacity: 1;
	}

	/* ==========================================================================
   =Portfolio Filter
   ========================================================================== */

	.portfolio-filter ul {
		margin-bottom: 70px;
		list-style: none;
	}

		.portfolio-filter ul li {
			display: inline-block;
			margin-right: 5px;
		}

			.portfolio-filter ul li:last-child {
				margin-right: 0;
			}

			.portfolio-filter ul li a {
				display: inline-block;
				padding: 3px 12px;
				border: 1px solid #e0e0e0;
				border-radius: 2px;
				color: #6d6d6d;
				text-decoration: none;
				-webkit-transition: all 0.3s;
				transition: all 0.3s;
			}

				.portfolio-filter ul li a:hover,
				.portfolio-filter ul li a.active {
					background-color: #7e6634;
					color: #fff;
				}

	@media (max-width: 767px) {

		.portfolio-filter ul li {
			display: block;
			margin-bottom: 10px;
		}

			.portfolio-filter ul li:last-child {
				margin-bottom: 0;
			}
	}

	/* ==========================================================================
   =Portfolio Pagination
   ========================================================================== */

	.pagination {
		margin-bottom: 50px;
		list-style: none;
	}

		.pagination li {
			float: left;
		}

		.pagination a {
			display: block;
			padding: 4px 12px;
			border: 1px solid #e0e0e0;
			border-radius: 2px;
			margin-right: 10px;
			margin-bottom: 2px;
			color: #6d6d6d;
			text-decoration: none;
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
		}

		.pagination li:last-child a {
			margin-right: 0;
		}

		.pagination li a:hover,
		.pagination li.current a {
			color: #fff;
			background-color: #7e6634;
		}

	/* ==========================================================================
   =Portfolio Columns
   ========================================================================== */

	.portfolio-columns {
		margin: -10px -10px 40px -10px;
		list-style: none;
	}

		.portfolio-columns .item {
			float: left;
			width: 33.3333333333%;
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
			box-sizing: border-box;
			padding: 10px;
		}

			.portfolio-columns .item .portfolio-item {
				margin-bottom: 0;
			}

		.portfolio-columns.tree-cols .item {
			width: 33.3333333333%;
		}

		.portfolio-columns.four-cols .item {
			width: 25%;
		}

	@media (min-width: 1400px) {

		.portfolio-columns {
			margin: -15px -15px 40px -15px;
		}

			.portfolio-columns .item,
			.portfolio-columns.tree-cols .item,
			.portfolio-columns.four-cols .item {
				padding: 15px;
			}
	}

	@media (min-width: 768px) and (max-width: 979px) {

		.portfolio-columns {
			margin: -7.5px -7.5px 40px -7.5px;
		}

			.portfolio-columns .item,
			.portfolio-columns.tree-cols .item,
			.portfolio-columns.four-cols .item {
				width: 33.3333333333%;
				padding: 7.5px;
			}
	}

	@media (max-width: 767px) {

		.portfolio-columns .item,
		.portfolio-columns.tree-cols .item,
		.portfolio-columns.four-cols .item {
			float: none;
			width: 100%;
		}
	}

	/* ==========================================================================
   =Portfolio Grid
   ========================================================================== */

	.portfolio-grid {
		margin-bottom: 30px;
		list-style: none;
	}

		.portfolio-grid .item {
			float: left;
			width: 25%;
		}

		.portfolio-grid .portfolio-item {
			margin-bottom: 0;
		}

	@media (min-width: 1400px) {

		.portfolio-grid .item {
			width: 20%;
		}
	}

	@media (min-width: 768px) and (max-width: 979px) {

		.portfolio-grid .item {
			width: 33.3333333333%;
		}
	}

	@media (max-width: 767px) {

		.portfolio-grid .item {
			float: none;
			width: 100%;
		}
	}

	@media only screen and (min-width: 480px) and (max-width: 767px) {

		.portfolio-grid .item {
			float: left;
			width: 50%;
		}
	}

	/* ==========================================================================
   =Portfolio Strip
   ========================================================================== */

	.portfolio-strip {
		margin-bottom: 50px;
		list-style: none;
	}

		.portfolio-strip .item {
			float: left;
			width: 25%;
		}

		.portfolio-strip.masonry .item {
			width: 33.33333%;
		}

		.portfolio-strip .item:last-child {
			display: none;
		}

		.portfolio-strip.masonry .item:last-child {
			display: block;
		}

		.portfolio-strip .portfolio-item {
			border: none;
			border-radius: 0;
			margin-bottom: 0;
		}

		.portfolio-strip .portfolio-item-preview img {
			-webkit-transition: all 0.5s;
			transition: all 0.5s;
		}

		.portfolio-strip .portfolio-item:hover .portfolio-item-preview > img {
			-webkit-transform: translateY(-107px);
			-ms-transform: translateY(-107px);
			transform: translateY(-107px);
		}

		.portfolio-strip .portfolio-item-description {
			position: absolute;
			z-index: 1;
			right: 0;
			bottom: 0;
			left: 0;
			padding: 40px 0 20px 0;
			opacity: 0;
			-webkit-transform: rotatex(90deg);
			-ms-transform: rotateX(90deg);
			transform: rotateX(90deg);
			-webkit-transform-origin: bottom center;
			-ms-transform-origin: bottom center;
			transform-origin: bottom center;
			-webkit-transition: transform 0.5s;
			transition: transform 0.5s;
		}

		.portfolio-strip .portfolio-item .portfolio-item-overlay-actions {
			bottom: 10px;
		}

		.portfolio-strip .portfolio-item:hover .portfolio-item-description {
			opacity: 1;
			-webkit-transform: rotateX(0);
			-ms-transform: rotateX(0);
			transform: rotateX(0);
		}

		.portfolio-strip .portfolio-item:hover .portfolio-item-overlay-actions {
			bottom: 100px;
		}

	@media (min-width: 1400px) {

		.portfolio-strip .item {
			width: 20%;
		}

		.portfolio-strip.masonry .item {
			width: 25%;
		}

		.portfolio-strip .item:last-child {
			display: block;
		}
	}

	@media (min-width: 768px) and (max-width: 979px) {

		.portfolio-strip .item,
		.portfolio-strip.masonry .item {
			width: 33.3333333333%;
		}

			.portfolio-strip .item:last-child {
				display: block;
			}
	}

	@media (max-width: 767px) {

		.portfolio-strip .item,
		.portfolio-strip.masonry .item {
			float: none;
			width: 100%;
		}

			.portfolio-strip .item:last-child {
				display: block;
			}
	}

	@media only screen and (min-width: 480px) and (max-width: 767px) {

		.portfolio-strip .item,
		.portfolio-strip.masonry .item {
			float: left;
			width: 50%;
		}
	}

	/* ==========================================================================
   =Contact form
   ========================================================================== */

	#contact-form {
		overflow: hidden;
		margin-bottom: 30px;
	}

		#contact-form fieldset {
		}

	label.validation-error {
		color: #d50f25;
	}

	input.validation-error,
	textarea.validation-error,
	select.validation-error {
		border: 1px solid #e0e0e0;
	}

	#contact-form #formstatus {
	}

	#contact-form textarea {
	}

	#contact-form #submit {
		border: none;
	}

	/* ==========================================================================
   =Blog
   ========================================================================== */

	.blog-post {
		position: relative;
		overflow: hidden;
		padding: 0 30px 10px 30px;
		border: 1px solid #e0e0e0;
		margin-bottom: 50px;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

	.blog-post-title {
		margin: 30px 0 25px 0;
	}

		.blog-post-title:after {
			display: block;
			width: 50px;
			border-top: 1px solid #7e6634;
			content: "";
		}

		.blog-post-title a {
			color: #6d6d6d;
		}

	.blog-post-thumb {
		position: relative;
		overflow: hidden;
		margin: 0 -30px;
	}

		.blog-post-thumb img {
			display: block;
			width: 100%;
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
		}

	.blog-post:hover .blog-post-thumb img {
		margin-bottom: -52px;
	}

	.blog-post-info {
		position: absolute;
		top: 30px;
		left: 30px;
		padding: 12px 17px 10px 17px;
		border-radius: 2px;
		background-color: #7e6634;
		color: #fff;
		font-size: 23px;
		line-height: 20px;
		text-align: center;
	}

		.blog-post-info small {
			display: block;
			font-size: 13px;
			text-transform: uppercase;
		}

	.blog-post-readmore {
	}

	.blog-post .btn {
		opacity: 0;
		position: absolute;
		bottom: -20px;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

	.blog-post:hover .btn {
		bottom: 10px;
		opacity: 1;
	}

	.blog-post:hover {
		padding-bottom: 62px;
		background-color: #7e6634;
		color: #fff;
	}

		.blog-post:hover a {
			color: #fff;
		}

	.blog-post-slider .blog-post {
		padding: 0;
		border: none;
	}

	.blog-post-slider .blog-post-thumb {
		margin: 0;
		margin-bottom: 20px;
	}

	.blog-post-slider .blog-post:hover .blog-post-thumb img {
		margin-bottom: 0;
	}

	.blog-post-slider .blog-post-title {
		margin-top: 0;
	}

	.blog-post-slider .blog-post .btn {
		position: relative;
		bottom: 0;
		opacity: 1;
	}

	.blog-post-slider .blog-post:hover {
		background-color: transparent;
		color: #6d6d6d;
	}

		.blog-post-slider .blog-post:hover a {
			color: #6d6d6d;
		}

		.blog-post-slider .blog-post:hover .btn {
			color: #fff;
		}

	.blog-post.alt {
		padding: 0;
		border: none;
	}

		.blog-post.alt:hover {
			background-color: transparent;
			color: #6d6d6d;
		}

			.blog-post.alt:hover a {
				color: #6d6d6d;
			}

			.blog-post.alt:hover .btn {
				color: #fff;
			}

		.blog-post.alt .blog-post-info {
			position: relative;
			top: 0;
			left: 0;
			float: left;
		}

		.blog-post.alt .blog-post-title {
			margin: 0 0 50px 75px;
		}

			.blog-post.alt .blog-post-title:after {
				content: none;
			}

			.blog-post.alt .blog-post-title h4 {
				margin-bottom: 0;
			}

				.blog-post.alt .blog-post-title h4:after {
					display: block;
					width: 50px;
					border-top: 1px solid #7e6634;
					margin: 5px 0;
					content: "";
				}

	.blog-post blockquote {
		position: relative;
		overflow: hidden;
		padding: 40px 40px 40px 150px;
		margin-bottom: 20px;
		background-color: #f7f7f7;
	}

		.blog-post blockquote:before {
			position: absolute;
			top: -35px;
			left: 35px;
			color: #7e6634;
			font-size: 250px;
			line-height: 250px;
			content: "\201c";
		}

		.blog-post blockquote p:last-child {
			margin-bottom: 0;
		}

	@media (min-width: 768px) and (max-width: 979px) {

		.blog-post blockquote {
			padding-left: 40px;
		}

			.blog-post blockquote:before {
				top: 0;
				left: 0;
				font-size: 100px;
				line-height: 100px;
			}
	}

	@media (max-width: 767px) {

		.blog-post blockquote {
			padding: 30px;
		}

			.blog-post blockquote:before {
				top: 0;
				left: 0;
				font-size: 100px;
				line-height: 100px;
			}
	}

	/* ==========================================================================
   =Fullwidth Section
   ========================================================================== */

	/**
 	 * Full width section
 	 *
	 * 1. background-image must be supplied using inline css as it is different for every .fullwidth-section
	 *
	 */

	.fullwidth-section {
		position: relative;
		overflow: hidden;
		z-index: 0;
		padding: 50px 0;
		margin-bottom: 50px;
		color: #fff;
		background-color: #245dc1;
		background-attachment: scroll;
		background-repeat: no-repeat; /* 1 */
		background-position: 50% 0;
	}

	.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-color: rgba(0, 33, 56, 0.8);
	}

	.fullwidth-section-video {
		position: absolute;
		overflow: hidden;
		z-index: 1;
		top: 0;
		width: 100%;
		height: 100%;
	}

	.parallax.parallax-enabled {
		background-attachment: fixed !important;
		-webkit-background-size: cover;
		background-size: cover;
	}


	.horizontal-parallax {
		background-repeat: repeat-x;
	}

	.animated-parallax {
		background-repeat: repeat-x;
	}

	.fullwidth-section,
	.fullwidth-section a,
	.fullwidth-section h1,
	.fullwidth-section h2,
	.fullwidth-section h3,
	.fullwidth-section h4,
	.fullwidth-section h5,
	.fullwidth-section h6,
	.fullwidth-section .btn-white,
	.fullwidth-section .btn-white.alt,
	.fullwidth-section a.toggle-item,
	.fullwidth-section a.accordion-item,
	.fullwidth-section ul.check li:before,
	.fullwidth-section ul.square-check li:before,
	.fullwidth-section .icon-box-3:hover > span i,
	.fullwidth-section .milestone .milestone-content,
	.fullwidth-section .vertical-tabs-container .tabs-menu li a {
		color: #fff;
	}

		.fullwidth-section ul.square li:before,
		.fullwidth-section ul.fill-circle li:before {
			background-color: #fff;
		}

		.fullwidth-section .icon-box-3 > span i {
			color: #191919;
		}

		.fullwidth-section .btn-white.alt {
			border-color: #fff;
		}

		.fullwidth-section .pie-chart {
			margin-bottom: 20px;
			background-color: transparent;
		}

		.fullwidth-section .pricing-table {
			background-color: #7e6634
		}

			.fullwidth-section .pricing-table h1 {
				background-color: #7e6634;
			}

		.fullwidth-section .pricing-table-header h4:after {
			border-top-color: #7e6634;
		}

		.fullwidth-section .pricing-table:hover {
			background-color: #7e6634;
		}

			.fullwidth-section .pricing-table:hover h1 {
				background-color: #7e6634;
			}

		.fullwidth-section .pricing-table .pricing-table-header h4:after {
			border-top-color: #7e6634;
		}

		.fullwidth-section .pricing-table:hover .pricing-table-header h4:after {
			border-top-color: #7e6634;
		}

		.fullwidth-section .tabs-container .tabs-menu li a {
			border-top: none;
		}


	/* Fullwidth section backgrounds */

	#portfolio {
		padding: 50px 0 80px 0;
		background-color: #f7f7f7;
	}

	#features {
		padding-top: 50px;
		background-color: #f7f7f7;
	}

	#services {
		padding: 50px 0;
		margin-top: 50px;
		background-color: #f7f7f7;
	}

	#subscribe {
		padding: 50px 0 80px 0;
		margin: 100px 0 -50px 0;
		background-color: #f7f7f7;
	}

		#subscribe .headline {
			margin-bottom: 50px;
		}

		#subscribe .ewf_widget_newsletter {
			margin-top: 60px;
			margin-bottom: 0;
		}

	#bg-1 {
		margin-top: 50px;
		margin-bottom: 0;
		background: url(../../content/backgrounds/1920x1600.jpg) no-repeat center center;
	}

	#bg-2 {
		padding: 100px 0 60px 0;
		margin-bottom: 0;
		background-image: url(../../content/backgrounds/1920x1200-1.jpg);
	}

	#bg-3 {
		padding: 100px 0;
		background-image: url(../../content/backgrounds/1920x1200-2.jpg);
	}

	#bg-4 {
		padding-bottom: 30px;
		margin: 50px 0 -50px 0;
		background-image: url(../../content/backgrounds/1920x800-1.jpg);
	}

		#bg-4 h3 {
			margin-top: 10px;
		}

	#bg-5 {
		padding: 220px 0 200px 0;
		margin-top: 80px;
		background-image: url(../../content/backgrounds/1920x1000-1.jpg);
		color: #6d6d6d;
	}

		#bg-5.fullwidth-section h1,
		#bg-5.fullwidth-section h2,
		#bg-5.fullwidth-section h3,
		#bg-5.fullwidth-section h4,
		#bg-5.fullwidth-section h5,
		#bg-5.fullwidth-section h6 {
			color: #7e6634;
		}

	#bg-6 {
		padding-top: 90px;
		padding-bottom: 0;
		margin-top: 80px;
		background-image: url(../../content/backgrounds/1920x1200-3.jpg);
	}

	#bg-7 {
		padding-bottom: 350px;
		margin: 70px 0 -50px 0;
		background: #f7f7f7 url(../../content/backgrounds/1920x320.png) no-repeat bottom center;
		color: #6d6d6d;
	}

		#bg-7.fullwidth-section a,
		#bg-7.fullwidth-section h1,
		#bg-7.fullwidth-section h2,
		#bg-7.fullwidth-section h3,
		#bg-7.fullwidth-section h4,
		#bg-7.fullwidth-section h5,
		#bg-7.fullwidth-section h6 {
			color: #7e6634;
		}

	#bg-8 {
		padding: 100px 0 80px 0;
		margin-top: 80px;
		background-image: url(../../content/backgrounds/1715x850.jpg);
	}

	#bg-9 {
		padding-bottom: 30px;
		background-image: url(../../content/backgrounds/1920x800-2.jpg);
	}

	#bg-10 {
		padding: 100px 0 80px 0;
		margin-top: 80px;
		background-image: url(../../content/backgrounds/1920x850.jpg);
	}

	#bg-11 {
		padding-bottom: 30px;
		margin: 80px 0 -50px 0;
		background-image: url(../../content/backgrounds/1920x800-2.jpg);
	}

		#bg-11 h3 {
			margin-top: 10px;
		}

	#bg-12 {
		background-image: url(../../content/backgrounds/1920x1200-4.jpg);
	}

	#bg-13 {
		padding: 120px 0 100px 0;
		margin-top: 50px;
		background-image: url(../../content/backgrounds/1920x1000-2.jpg);
	}

	#bg-14 {
		padding: 70px 0 110px 0;
		margin-top: 50px;
		background-image: url(../../content/backgrounds/1920x2000.jpg);
	}

	#bg-15 {
		padding: 70px 0 20px 0;
		margin-top: 80px;
		background-image: url(../../content/backgrounds/1920x1000-3.jpg);
	}

	#bg-16 {
		padding: 260px 0 240px 0;
		margin-bottom: -50px;
		background-image: url(../../content/backgrounds/1920x1200-5.jpg);
	}

	@media (max-width: 767px) {

		.fullwidth-section {
			-webkit-background-size: cover;
			background-size: cover;
		}

		#bg-7.fullwidth-section {
			-webkit-background-size: auto;
			background-size: auto;
		}
	}

	/* ==========================================================================
   =WordPress Default Classes
   ========================================================================== */

	.ewf-inline-style {
		display: none;
	}

	.wp-caption {
	}

	.wp-caption-text {
	}

	.sticky {
	}

	.gallery-caption {
	}

	.alignright {
	}

	.alignleft {
	}

	.aligncenter {
	}

	.alignnone {
		margin: 5px 20px 20px 0;
	}

	.aligncenter,
	div.aligncenter {
		display: block;
		margin: 5px auto;
	}

	.alignright {
		float: right;
		margin: 5px 0 20px 20px;
	}

	.alignleft {
		float: left;
		margin: 5px 20px 20px 0;
	}

	.aligncenter {
		display: block;
		margin: 5px auto;
	}

	a img.alignright {
		float: right;
		margin: 5px 0 20px 20px;
	}

	a img.alignnone {
		margin: 5px 20px 20px 0;
	}

	a img.alignleft {
		float: left;
		margin: 5px 20px 20px 0;
	}

	a img.aligncenter {
		display: block;
		margin-right: auto;
		margin-left: auto;
	}

	/**
 	 * 1. Image does not overflow the content area
 	 */

	.wp-caption {
		max-width: 96%; /* 1 */
		padding: 5px 3px 10px;
		border: 1px solid #e0e0e0;
		background: #fff;
		text-align: center;
	}

		.wp-caption.alignnone {
			margin: 5px 20px 20px 0;
		}

		.wp-caption.alignleft {
			margin: 5px 20px 20px 0;
		}

		.wp-caption.alignright {
			margin: 5px 0 20px 20px;
		}

		.wp-caption img {
			max-width: 98.5%;
			width: auto;
			height: auto;
			padding: 0;
			border: none;
			margin: 0;
		}

		.wp-caption p.wp-caption-text {
			padding: 0 4px 5px 4px;
			margin: 0;
			font-size: 11px;
			line-height: 17px;
		}

	/* ==========================================================================
   =WordPress Widgets
   ========================================================================== */

	/* =Widgets default
   ========================================================================== */

	.widget {
		margin-bottom: 60px;
	}

	.widget-title {
		margin-bottom: 40px;
		line-height: 18px;
		font-weight: 700;
		text-transform: uppercase;
	}

		.widget-title:after {
			display: block;
			width: 30px;
			border-top: 1px solid #7e6634;
			margin-top: 10px;
			content: "";
		}

	/* =Text Widget
   ========================================================================== */

	.widget_text {
	}

	.textwidget {
	}

	/* =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;
		background: url(../images/bg-search.png) no-repeat center center;
		vertical-align: inherit;
	}

	/* =Recent Entries Widget
   ========================================================================== */

	.widget_recent_entries {
	}

		.widget_recent_entries ul {
			margin-bottom: 0;
			list-style: none;
		}

			.widget_recent_entries ul li {
				margin-bottom: 30px;
			}

				.widget_recent_entries ul li:last-child {
					margin-bottom: 0;
				}

				.widget_recent_entries ul li > a {
					color: #7e6634;
					font-weight: 700;
				}

				.widget_recent_entries ul li img {
					float: left;
					margin-right: 10px;
				}

				.widget_recent_entries ul li .post-date a {
					color: #6d6d6d;
				}

	.ewf_widget_social_media {
	}

	/*
	 * 1. Clearfix hack 
	 */

	.widget_recent_entries ul li:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}

	@media (min-width: 1400px) {

		.widget_recent_entries ul li img {
			margin-right: 30px;
		}
	}

	@media (min-width: 768px) and (max-width: 979px) {

		.widget_recent_entries ul li img {
			display: none;
		}
	}

	/* =Pages Widget
   ========================================================================== */

	.widget_pages {
	}

		.widget_pages ul {
			margin-bottom: 0;
			list-style: none;
		}

			.widget_pages ul li {
			}

		.widget_pages li a {
			display: block;
			padding-bottom: 20px;
			border-bottom: 1px solid #e0e0e0;
			margin-bottom: 20px;
			color: #6d6d6d;
			font-size: 16px;
		}

		.widget_pages li:last-child a {
			padding-bottom: 0;
			border-bottom: none;
			margin-bottom: 0;
		}

		.widget_pages li a:hover {
			border-bottom-color: #7e6634;
			color: #7e6634;
			text-decoration: none;
		}

	/* =Archive Widget
   ========================================================================== */

	.widget_archive {
	}

		.widget_archive ul {
			margin-bottom: 0;
			list-style: none;
		}

			.widget_archive ul li {
			}

		.widget_archive li a {
			display: block;
			padding-bottom: 20px;
			border-bottom: 1px solid #e0e0e0;
			margin-bottom: 20px;
			color: #6d6d6d;
			font-size: 16px;
		}

		.widget_archive li:last-child a {
			padding-bottom: 0;
			border-bottom: none;
			margin-bottom: 0;
		}

		.widget_archive li a:hover {
			border-bottom-color: #7e6634;
			color: #7e6634;
			text-decoration: none;
		}

	/* =Categories Widget
   ========================================================================== */

	.widget_categories {
	}

		.widget_categories ul {
			margin-bottom: 0;
			list-style: none;
		}

			.widget_categories ul li {
			}

		.widget_categories li a {
			display: block;
			padding-bottom: 20px;
			border-bottom: 1px solid #e0e0e0;
			margin-bottom: 20px;
			color: #6d6d6d;
			font-size: 16px;
		}

		.widget_categories li:last-child a {
			padding-bottom: 0;
			border-bottom: none;
			margin-bottom: 0;
		}

		.widget_categories li a:hover {
			border-bottom-color: #7e6634;
			color: #7e6634;
			text-decoration: none;
		}

		.widget_categories ul ul.children {
		}

		.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 {
			}

		.widget_meta li a {
			display: block;
			padding-bottom: 20px;
			border-bottom: 1px solid #e0e0e0;
			margin-bottom: 20px;
			color: #6d6d6d;
			font-size: 16px;
		}

		.widget_meta li:last-child a {
			padding-bottom: 0;
			border-bottom: none;
			margin-bottom: 0;
		}

		.widget_meta li a:hover {
			border-bottom-color: #7e6634;
			color: #7e6634;
			text-decoration: none;
		}

	/* =Recent Comments Widget
   ========================================================================== */

	.widget_recent_comments {
	}

	#recentcomments {
		list-style: none;
	}

		#recentcomments li {
		}

			#recentcomments li a {
			}

	.recentcomments {
	}

	/* =Tag Cloud Widget
   ========================================================================== */

	.widget_tag_cloud {
	}

		.widget_tag_cloud a {
			display: inline-block;
			padding: 3px 10px;
			border: 1px solid #e0e0e0;
			border-radius: 2px;
			margin: 0 5px 8px 0;
			color: #6d6d6d;
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
		}

			.widget_tag_cloud a:hover {
				border-color: #7e6634;
				color: #7e6634;
				text-decoration: none;
			}

			.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 #next a {
		}

	#wp-calendar #prev a {
	}

	/* =Nav Menu Widget
   ========================================================================== */

	.widget_nav_menu {
	}

		.widget_nav_menu ul {
			margin-bottom: 0;
			list-style: none;
		}

			.widget_nav_menu ul li {
			}

		.widget_nav_menu li a {
			display: block;
			padding-bottom: 20px;
			border-bottom: 1px solid #e0e0e0;
			margin-bottom: 20px;
			color: #6d6d6d;
			font-size: 16px;
		}

		.widget_nav_menu li:last-child a {
			padding-bottom: 0;
			border-bottom: none;
			margin-bottom: 0;
		}

		.widget_nav_menu li a:hover {
			border-bottom-color: #7e6634;
			color: #7e6634;
			text-decoration: none;
		}

	/* =RSS Widget
   ========================================================================== */

	.widget_rss {
	}

		.widget_rss ul {
			list-style: none;
		}

	/* ==========================================================================
   =WordPress Custom Widgets
   ========================================================================== */

	/* =EWF Twitter widget
   ========================================================================== */

	.ewf_widget_latest_tweets {
	}

	.ewf-tweet-list .tweet {
		word-wrap: break-word;
	}

	.ewf-tweet-list ul {
		list-style: none;
	}

	.ewf-tweet-list .interact {
		text-align: center;
	}

		.ewf-tweet-list .interact a {
			margin-right: 10px;
		}

			.ewf-tweet-list .interact a:last-child {
				margin-right: 0;
			}

	/* =EWF Flickr widget
   ========================================================================== */

	.ewf_widget_flickr {
	}

	.flickr-feed {
	}

		.flickr-feed .flickr_badge_image {
			display: inline;
		}

		.flickr-feed img {
			width: 68px;
			height: auto;
			padding-right: 5px;
			border: none;
		}

	@media (min-width: 1400px) {

		.flickr-feed img {
			padding: 0 20px 15px 0;
		}
	}

	/* =EWF 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: 50px;
				margin-bottom: 25px;
			}

				.ewf_widget_contact_info ul li:last-child {
					margin-bottom: 0;
				}

				.ewf_widget_contact_info ul li span {
					position: absolute;
					top: 0;
					left: 0;
					width: 25px;
					height: 25px;
					border: 1px solid #7e6634;
					text-align: center;
					-webkit-transform: rotate(45deg);
					transform: rotate(45deg);
				}

					.ewf_widget_contact_info ul li span i {
						display: inline-block;
						line-height: 25px;
						-webkit-transform: rotate(-45deg);
						transform: rotate(-45deg);
					}

				.ewf_widget_contact_info ul li a {
					color: #6d6d6d;
				}

	/* =EWF Newsletter subscribe widget
   ========================================================================== */

	.ewf_widget_newsletter {
	}

	#newsletter-subscribe-form {
		position: relative;
	}

		#newsletter-subscribe-form input[type="text"] {
			width: 100%;
			height: 45px;
			margin-bottom: 0;
		}

		#newsletter-subscribe-form input[type="submit"] {
			position: absolute;
			top: 0;
			right: -1px;
			height: 45px;
			padding: 11px 25px;
			border: none;
			margin: 0;
		}

			#newsletter-subscribe-form input[type="submit"]:hover {
				background-color: #7e6634;
			}

	/* =EWF Latest posts widget
   ========================================================================== */

	.ewf_widget_latest_posts {
	}

		.ewf_widget_latest_posts ul {
			list-style: none;
		}

			.ewf_widget_latest_posts ul li {
				margin-bottom: 40px;
			}

				.ewf_widget_latest_posts ul li:last-child {
					margin-bottom: 0;
				}

				.ewf_widget_latest_posts ul li img {
					float: left;
					margin-right: 30px;
				}

				.ewf_widget_latest_posts ul li .title {
					color: #7e6634;
					font-size: 18px;
				}

					.ewf_widget_latest_posts ul li .title:after {
						position: relative;
						left: 100px;
						display: block;
						width: 20px;
						border-top: 1px solid #7e6634;
						margin: 5px 0;
						content: "";
					}

				.ewf_widget_latest_posts ul li .date {
				}

				.ewf_widget_latest_posts ul li p {
					margin-left: 100px;
				}

				/*
	 * 1. Clearfix hack 
	 */

				.ewf_widget_latest_posts ul li:after { /* 1 */
					visibility: hidden;
					display: block;
					height: 0;
					font-size: 0;
					content: " ";
					clear: both;
				}

	/* =EWF Navigation widget
   ========================================================================== */

	.ewf_widget_navigation {
	}

		.ewf_widget_navigation ul {
			margin-bottom: 0;
			list-style: none;
		}

			.ewf_widget_navigation ul li {
			}

		.ewf_widget_navigation li a {
			display: block;
			padding-bottom: 20px;
			border-bottom: 1px solid #e0e0e0;
			margin-bottom: 20px;
			color: #6d6d6d;
			font-size: 16px;
		}

		.ewf_widget_navigation li:last-child a {
			padding-bottom: 0;
			border-bottom: none;
			margin-bottom: 0;
		}

		.ewf_widget_navigation li a:hover {
			border-bottom-color: #7e6634;
			color: #7e6634;
			text-decoration: none;
		}

	.fullwidth-section .ewf_widget_navigation ul {
		margin-top: 40px;
	}

		.fullwidth-section .ewf_widget_navigation ul li {
			display: inline-block;
		}

	.fullwidth-section .ewf_widget_navigation li a {
		padding: 5px 20px;
		border: 1px solid transparent;
		color: #fff;
	}

		.fullwidth-section .ewf_widget_navigation li a:hover {
			border-color: #fff;
		}

	@media (max-width: 767px) {

		.fullwidth-section .ewf_widget_navigation ul li {
			display: block;
		}

			.fullwidth-section .ewf_widget_navigation ul li a {
				display: inline-block;
			}
	}

	/* =EWF Social media widget
   ========================================================================== */

	.ewf_widget_social_media {
	}

		/*
	 * 1. Clearfix hack 
	 */

		.ewf_widget_social_media:after { /* 1 */
			visibility: hidden;
			display: block;
			height: 0;
			font-size: 0;
			content: " ";
			clear: both;
		}

	/* ==========================================================================
   =WordPress Comments
   ========================================================================== */

	.comments-title {
		font-size: 20px;
		font-weight: 800;
		text-transform: uppercase;
	}

		.comments-title:after {
			display: block;
			width: 35px;
			border-top: 1px solid #7e6634;
			margin-top: 5px;
			content: "";
		}

	.comment-reply-title {
	}

	.commentlist .reply {
	}

		.commentlist .reply a {
			display: inline-block;
			padding: 8px 10px;
			border-radius: 2px;
			border-bottom: 1px solid #3382b8;
			margin: 10px 5px 20px 0;
			background-color: #7e6634;
			color: #fff;
			font: 12px/12px 'Open Sans', Arial, sans-serif;
			text-decoration: none;
			cursor: pointer;
			-webkit-transition: all 0.2s;
			transition: all 0.2s;
		}

			.commentlist .reply a:hover {
				border-bottom-color: #20252f;
				background-color: #7e6634;
			}

	.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 {
		}

		.commentlist .vcard img.avatar {
			float: left;
			margin-right: 30px;
		}

		.commentlist .vcard cite.fn a.url {
			color: #7e6634;
			font-size: 18px;
		}

			.commentlist .vcard cite.fn a.url:after {
				position: relative;
				left: 110px;
				display: block;
				width: 30px;
				border-top: 1px solid #7e6634;
				margin: 5px 0;
				content: "";
			}

	.commentlist .comment-meta {
	}

		.commentlist .comment-meta a {
			display: inline-block;
			margin-bottom: 50px;
			color: #6d6d6d;
			font-size: 12px;
			font-style: italic;
		}

	.commentlist .commentmetadata {
	}

		.commentlist .commentmetadata a {
		}

	.commentlist .parent {
	}

	.commentlist .comment {
	}

	.commentlist .children {
	}

	.commentlist .pingback {
	}

	.commentlist .bypostauthor {
	}

	.commentlist .comment-author {
	}

	.commentlist .comment-author-admin {
	}

	.commentlist {
		margin: 60px 0;
		list-style: none;
	}

		.commentlist li {
			padding: 50px 0 20px 0;
			border-top: 1px solid #e0e0e0;
		}

		.commentlist > li:first-child {
			padding-top: 0;
			border-top: none;
		}

		.commentlist li p {
		}

		.commentlist li ul {
			margin-left: 80px;
			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 {
				}

	#cancel-comment-reply {
	}

		#cancel-comment-reply a {
		}

	@media (max-width: 767px) {

		.commentlist li ul {
			margin-left: 30px;
		}
	}

	/* ==========================================================================
   =WordPress Comment Form
   ========================================================================== */

	.section-heading {
		font-size: 20px;
		font-weight: 800;
		text-transform: uppercase;
	}

		.section-heading:after {
			display: block;
			width: 35px;
			border-top: 1px solid #7e6634;
			margin-top: 5px;
			content: "";
		}

	.nocomments {
		display: none;
	}

	.must-log-in {
		display: none;
	}

	.logged-in-as {
		display: none;
	}

	.nav-previous {
		display: none;
	}

	.nav-next {
		display: none;
	}

	#commentform {
		margin-top: 60px;
	}

	.comment-notes {
		display: none;
	}

	.comment-form-author {
	}

		.comment-form-author label {
			display: none;
		}

		.comment-form-author input#author {
		}

	.comment-form-email {
	}

		.comment-form-email label {
			display: none;
		}

		.comment-form-email input#email {
		}

	.comment-form-url {
	}

		.comment-form-url label {
			display: none;
		}

		.comment-form-url input#url {
		}

	#commentform .required {
	}

	.comment-form-comment {
	}

		.comment-form-comment label {
			display: none;
		}

		.comment-form-comment textarea#comment {
		}

	.form-allowed-tags {
		display: none;
	}

		.form-allowed-tags code {
		}

	.form-submit {
	}

	#commentform #submit {
		border: none;
	}
		

/*Modification MIA*/
.wrapper {
	/* display: inline-block; */
	width: 100%;
	height: 130px;
	background-color: #30343e;
	display: flex;
	align-items: center;
	justify-content: center;
}

.button-wrap {
	display: inline-block;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	height: 75px;
	width: 75px;
	margin: auto 4em;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 10px 10px rgb(0, 0, 0, 0.1);
	transition: all 0.4s ease-out;
}

	.button-wrap:hover {
		border: 1px solid transparent;
		transition: all 0.3s ease-out;
	}

.icon-wrap {
	color: rgba(255, 255, 255, 0.2);
}

.wrapper .button-wrap:hover {
	width: 160px;
}


.wrapper .button-wrap .icon-wrap {
	display: inline-block;
	height: 75px;
	width: 75px;
	text-align: center;
	border-radius: 50px;
	box-sizing: border-box;
	line-height: 70px;
	transition: all 0.4s ease-out;
}


.wrapper .button-wrap:nth-child(1):hover .icon-wrap {
	background: #4267b2;
}

.wrapper .button-wrap:nth-child(2):hover .icon-wrap {
	background: #1da1f2;
}

.wrapper .button-wrap:nth-child(3):hover .icon-wrap {
	background: #e1306c;
}

.wrapper .button-wrap:nth-child(4):hover .icon-wrap {
	background: #ff0000cb;
}

.wrapper .button-wrap .icon-wrap i {
	font-size: 40px;
	line-height: 75px;
	transition: all 0.4s ease-out;
	color: #969694;
}

.wrapper {
	/* text-shadow: 1px 1px 6px rgb(0 0 0 / 40%) */
}

	.wrapper.button-wrap. span {
		font-size: 25px;
		line-height: 75px;
		font-weight: 600;
		/* margin-left: 10px; */
		transition: all 0.4s ease-out;
	}

	.wrapper .button-wrap:nth-child(1) span {
		color: #4267B2;
		text-shadow: 1px 1px 6px rgb(0 0 0 / 40%);
		font-weight: bold;
	}

	.wrapper .button-wrap:nth-child(2) span {
		color: #1DA1F2;
		text-shadow: 1px 1px 6px rgb(0 0 0 / 40%);
		font-weight: bold;
	}

	.wrapper .button-wrap:nth-child(3) span {
		color: #E1306C;
		text-shadow: 1px 1px 6px rgb(0 0 0 / 40%);
		font-weight: bold;
	}

	.wrapper .button-wrap:nth-child(4) span {
		color: #ff0000cb;
		text-shadow: 1px 1px 6px rgb(0 0 0 / 40%);
		font-weight: bold;
	}

.partenaires {
	background: #1e2129;
	width: auto;
	/*height: 380px;*/
}

.partenaires {
	text-align: center;
	padding: auto;
	padding-top: 4em;
}

.img-ressources {
	padding-top: 3em;
}

.img-ressourcesliste {
	margin: auto 0.3em;
}

.img-ressourcesliste2 {
	margin-top: 2em;
}

.publier {
	text-decoration: none;
	color: white!important;
	margin: auto 1.5em;
}

.documents {
	text-decoration: none;
	color: white!important;
	margin: auto 1.5em;
}

.expert {
	text-decoration: none;
	color: white!important;
	margin: auto 1.5em;
}

.opportunites {
	text-decoration: none;
	color: white!important;
	margin: auto 1.5em;
}

.aide {
	text-decoration: none;
	color: white!important;
	margin: auto 1.5em;
}

.contacts {
	text-decoration: none;
	color: white!important;
	margin: auto 1.5em;
}

.copiryght {
	text-align: center;
	margin: auto;
}

.divcopyright {
	background-color: #1b1d25;
	height: 55px;
	margin: auto;
	padding: auto;
	display: flex;
	justify-content: center;
	color: #7f7e7e;
	font-size: 13px;
}

.bx-wrapper .bx-controls-direction a {
	background-color: #7e6634!important;
}

.main-slider .main-slider__arrows a {
	color: lightgray;
}
