/**
 * 	Name: elements.css
 *
 *	T.O.C
 *	
 *	=Accordions
 *	=Alerts
 *	=Animations
 *	=Buttons
 *	=Custom Lists
 *	=CV Section
 *	=Dividers
 *	=Google Maps
 *	=Headlines
 *	=Icon Boxes
 *	=Milestones
 *	=Our Process
 *	=Pie charts
 *	=Pricing Tables
 *	=Profile summary
 *	=Progress Bar
 *	=Social Media
 *	=Styled Tables
 *	=Tabs
 *	=Testimonials
 *	=Portfolio Item
 *	=Portfolio Filter
 *	=Portfolio pagination
 *	=Portfolio Isotope
 *	=Portfolio Grid
 *	=Portfolio Strip
 *	=Contact form
 *	=Blog
 *	=Fullwidth Section
 *	=WordPress Default Classes
 *	=WordPress Widgets
 *		=Widgets default
 *		=Text Widget
 *		=Search Widget
 *		=Recent Entries Widget
 *		=Pages Widget
 *		=Archive Widget
 *		=Categories Widget
 *		=Meta Widget
 *		=Recent Comments Widget
 *		=Tag Cloud Widget
 *		=Calendar Widget
 *		=Nav Menu Widget
 *		=RSS Widget
 *	=WordPress Custom Widgets
 *		=nfw Twitter widget
 *		=nfw Flickr widget
 *		=nfw Contact Info widget
 *		=nfw Newsletter subscribe widget
 *		=nfw Latest posts widget
 *		=nfw Navigation widget
 *		=nfw Social media widget
 *	=WordPress Comments
 *	=WordPress Comment Form
 *
 */


/* ==========================================================================
    =Accordion
   ========================================================================== */
	.wpb_accordion_wrapper { margin-bottom: 50px; }

        .wpb_content_element .wpb_accordion_header a {
		position: relative;
		display: block;
		padding: 13px 20px 13px 70px !important;
		margin-bottom: 2px;
		background-color: #f4f4f4 !important;
		font-size: 16px;
		font-weight: 400;
                color: #191919;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
        
        .wpb_content_element .wpb_accordion_header a:nth-of-type(even) { background-color: #fff !important; }
        
        .wpb_accordion .wpb_accordion_wrapper .ui-state-active .ui-icon:before {
          content: "" !important;
        }
	
        .wpb_content_element .wpb_accordion_header a:after {
		position: absolute;
		top: 0;
		left: 0;
		width: 51px;
		height: 51px;
		border-right: 2px solid #fff !important;
		background-color: #191919 !important;
		color: #fff;
		font-size: 26px;
		line-height: 50px;
		text-align: center;
		content: "+";
	}
	
        .wpb_content_element .wpb_accordion_header.ui-accordion-header-active a:after {
            content: "-"; 
        }
	
        .wpb_content_element .wpb_accordion_header a:hover,
        .wpb_content_element .wpb_accordion_header.ui-accordion-header-active a {
		background-color: #191919 !important;
		color: #fff !important;
		text-decoration: none; 
	}
	
        .wpb_content_element .wpb_accordion_wrapper .wpb_accordion_content { 
		display: none; 
		padding: 20px 15px 20px 70px; 
	}
	
	.wpb_content_element .wpb_accordion_wrapper .wpb_accordion_content p:last-child { margin-bottom: 0; }
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.wpb_content_element .wpb_accordion_wrapper .wpb_accordion_content:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
/* ==========================================================================
   =Alerts
   ========================================================================== */

	.alert {
		padding: 13px 15px;
		border: 2px solid #191919;
		border-radius: 3px;
		margin-bottom: 30px;
		font-weight: 400;
	}
	
	.alert i {
		position: relative;
		top: 1px;
		margin-right: 7px;
		font-size: 16px;
	}
	
	.alert.info {
		border: 2px solid #3aa5ff;
		color: #3aa5ff;
	}
	
	.alert.success {
		border: 2px solid #68ac49;
		color: #68ac49;
	}
	
	.alert.error {
		border: 2px solid #ff0000;
		color: #ff0000;
	}
	
	.alert.warning {
		border: 2px solid #d4ae61;
		color: #d4ae61;
	}
	
/* ==========================================================================
   =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 {
		position: relative;
		z-index: 2;
		display: inline-block; 
		padding: 7px 20px;
		border: 2px solid #191919;
		border-radius: 2px;
		margin: 0 5px 20px 0;
		background-color: #fff;
		color: #191919;
		font-size: 12px;
		line-height: 18px;
		font-weight: 800; 
		text-decoration: none !important;
		text-transform: uppercase;
		cursor: pointer;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 	
	}
	
	.btn:after {
		position: absolute;
		z-index: -1;
		top: 0;
		right: 0;
		left: 0;
		height: 0;
		background-color: #191919;
		color: #fff;
		content: "";
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	a.btn { color: #191919; }
	
	.btn:focus { outline: 0; }
	
	.btn:hover:after { height: 100%; }
	
	.btn:hover {
		background-color: #fff; 
		color: #fff;
	}
	
	.btn-large {
		padding: 12px 25px;
		font-size: 14px;
	}
	
	.btn-small{
		padding: 5px 15px;
		font-size: 10px;
	}
	
/* =Alternative button
   ========================================================================== */
	
	.btn.alt:after {
		background-color: #d4ae60;
		color: #fff;
	}
	
	.btn.alt:hover { border-color: #d4ae60; }
	
/* =Download button
   ========================================================================== */
	
	a.btn-download {
		position: fixed;
		top: 50%;
		left: 0;
		display: none;
		padding: 40px;
		margin-left: -90px;
		margin-top: -50px;
		background-color: #d4ae60;
		color: #fff;
		font-size: 18px;
		font-weight: 800;
		text-decoration: none;
		text-transform: uppercase;
		-webkit-transform: rotate(-90deg);
			-ms-transform: rotate(-90deg);
				transform: rotate(-90deg);	
	}
	
	@media (min-width: 1200px) {
		
		a.btn-download { display: block; }
		
	}
	
/* ==========================================================================
   =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 */
	
	/**
 	 * Icon font custom lists
 	 *
	 * 1. Check list
	 *
	 */
	 
	ul.check { list-style: none; }			/* 1 */
	
	ul.check li { margin-bottom: 10px; } 
	
	ul.check li:last-child { margin-bottom: 0; } 
	
	ul.check li:before { 
		position: relative;
		top: 2px;
		display: inline-block;
		width: 22px;
		height: 22px;
		margin-right: 15px;
		background-color: #f6f6f6;
		color: #d4ae60;
		font-family: 'iconfontcustom';
		font-size: 16px;
		line-height: 22px;
		font-style: normal;
		text-align: center;
	}
	
	ul.check li:before { content: ""; }
	
	.service-list { list-style: none; }
	
	.service-list li { margin-bottom: 5px; }
	.service-list li:last-child { margin-bottom: 0; }
	
	.service-list li a {
		font-weight: 800;
		color: #8c8c8c;
		text-transform: uppercase;
	}
	
	.service-list li a:hover {
		color: #191919;
		text-decoration: none;
	}

/* ==========================================================================
   =CV Section
   ========================================================================== */
	
	.cv-section { 
		padding: 50px 25px 50px 65px;
		-webkit-transition: background-color 0.3s;
				transition: background-color 0.3s;
	}
	
	.period {
		float: left;
		padding: 15px 20px;
		margin: 0 35px 15px -65px;
		background-color: #191919;
		color: #fff;
		font-weight: 400;
		-webkit-transition: background-color 0.3s;
				transition: background-color 0.3s;
	}
	
	.cv-section h3 {
		margin-bottom: 45px;
		font-size: 19px;
		line-height: 29px;
		font-weight: 600; 
	}
	
	.cv-section h3 small {
		display: block;
		font-size: 14px;
		font-weight: 300;
		text-transform: none;
	}
	
	.cv-section p:last-child { margin-bottom: 0; }
	
	.cv-section:hover { background-color: #f3f3f3; }
	.cv-section:hover .period { background-color: #d4ae60; }
	
	@media (max-width: 767px) {
		
		.cv-section { padding: 25px; }
		
		.period {
			float: none;
			display: inline-block;
			margin-left: -25px;
		}
		
	}
	
/* ==========================================================================
   =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.png) repeat-x top left ;  
	}
	
	.divider.double-dotted { 
		height: 4px;
		background: url(../images/bg-double-dotted.png) 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: 400px; 
		margin-bottom: 30px; 
	}

/* ==========================================================================
   =Headlines
   ========================================================================== */
	
	.headline {
		margin-bottom: 75px;
		text-align: center;
	}
	
	.headline h1 {
		display: inline-block;
		margin-bottom: 0
	}
	
	.headline h1:before {
		display: block;
		width: 15px;
		height: 6px;
		background-color: #d4ae60;
		content: "";
	}
	
	.subheadline { margin-bottom: 30px; }
	
	.subheadline h3 { 
		margin-bottom: 0;
		letter-spacing: 3.5px;
	}
	
	.subheadline h3:after {
		display: block;
		width: 15px;
		height: 6px;
		margin-top: 5px;
		background-color: #d4ae60;
		content: "";
	}
	
	.title { margin-bottom: 30px; }
	
	.title h3 {
		display: inline-block;
		margin-bottom: 0;
		font-weight: 700;
	}
	
	.title h3:before {
		display: block;
		width: 15px;
		height: 6px;
		background-color: #d4ae60;
		content: "";
	}
	
	.big {
		font-size: 365px;
		line-height: 255px;
		color: #d5d4d4;
		text-align: center;
	}
	
	.dropcap:first-letter {
		float: left;
		margin: 7px 5px -5px 0;
		color: #191919;
		font-size: 50px;
		font-weight: 800;
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.big {
			font-size: 280px;
			line-height: 200px;
		}
		
	}
	
	@media (max-width: 767px) {
		
		.big {
			margin-bottom: 50px;
			font-size: 200px;
			line-height: 100px;
		}
		
	}
	
/* ==========================================================================
   =Icon Boxes
   ========================================================================== */

/* =Icon Box 1
   ========================================================================== */
   
	.icon-box-1 { 
		position: relative; 
		margin-bottom: 50px; 
		color: #8c8c8c;
	}
		
	.icon-box-1 > i { 
		float: left;
		display: block;  
		font-size: 32px; 
		line-height: 32px; 
	} 
	
	.icon-box-1 > h1 {
		float: left;
		font-size: 72px;
		line-height: 72px;
	}
	
	.icon-box-1 > img { 
		float: left; 
		display: block; 
	} 
	
	.icon-box-1 h3:after {
		display: block;
		width: 15px;
		height: 6px;
		margin-top: 5px;
		background-color: #8c8c8c;
		content: "";
	}
	
	.icon-box-1 h3 a:hover { text-decoration: none; }
	
	.icon-box-1 .icon-box-content { margin-left: 65px; }

/* =Icon Box 2
   ========================================================================== */
   
	.icon-box-2 { 
		position: relative; 
		margin: 30px 0 50px 0;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 
	}	
	
	/**
	 * 1. Stop bg color from leaking outside the border	
	 */
	
	.icon-box-2 > i {
		position: absolute;	 
		z-index: 20; 
		left: 50%; 
		width: 60px; 
		height: 60px;
		margin-top: -30px; 
		margin-left: -30px;
		background-color: #191919;		
		color: #fff;
		font-size: 25px;
		line-height: 60px;
		text-align: center; 
		-webkit-transition: background-color 0.3s;
				transition: background-color 0.3s; 
	}
	 
	.icon-box-2 .icon-box-content { 
		position: relative;
		z-index: 10;
		padding: 60px 20px 30px 20px;
		border: 2px solid #8c8c8c;  
		margin-top: 16px;
		text-align: center; 
	}
	
	.icon-box-2 h4 { 
		margin-bottom: 30px;
		letter-spacing: 3px;
	}
	
	.icon-box-2:hover {
		background-color: #191919;
		color: #fff;
	}
	
	.icon-box-2:hover a { color: #fff; }
	
	.icon-box-2:hover > i { background-color: #d4ae60; }
	
/* =Large icon
   ========================================================================== */
   	
	.large-icon {
		font-size: 60px;
		line-height: 60px;
	}
	
/* ==========================================================================
   =Milestones
   ========================================================================== */

	.milestone {
		position: relative;
		margin-bottom: 30px;
		text-align: center;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	.milestone:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	.milestone i {
		float: left;
		z-index: 20;
		margin-right: 10px;
		font-size: 32px;
	}
	
	.milestone .milestone-content {
		z-index: 10;
		font-size: 72px;
		line-height: 55px;
		font-weight: 700;
	}
	
	.milestone .milestone-value {
		display: inline-block; 
		font-family: "Raleway", Arial, Helvetica, sans-serif;
	}
	
	.milestone .milestone-value:before {
		display: block;
		width: 20px;
		height: 8px;
		margin-bottom: 10px;
		background-color: #d4ae60;
		content: "";
	}
	
	.milestone .milestone-description {
		display: inline-block;
		font-size: 18px; 
		line-height: 24px;
		font-weight: 800;
		text-transform: uppercase;
	}

/* ==========================================================================
   =Our Process
   ========================================================================== */

/* =Horizontal process
   ========================================================================== */

	.horizontal-process-builder { 
		position: relative;
		margin-bottom: 40px;
		list-style: none;
		text-align: center; 
	}
	
	.horizontal-process-builder:before {
		position: absolute;
		z-index: 1;
		top: 120px;
		left: 137px;
		display: block;
		width: 75%;
		border-top: 5px dotted #e0e0e0;
		content: "";
	}
	
	.horizontal-process-builder li { 
		float: left;
		width: 25%;  
	}
	
	.horizontal-process-builder li h3 { 
		margin-bottom: 20px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.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: 2px solid #191919;
		border-radius: 50%;
		outline: 20px solid #fff;
		margin: 0 auto 30px;
		background-color: #fff;
		background-clip: padding-box;
		color: #191919;
		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,
	.horizontal-process-builder li:hover img {
		border-color: #d4ae60;
		color: #d4ae60;
		-webkit-transform: scale(1.05);
			-ms-transform: scale(1.05);
				transform: scale(1.05);
	}
	
	.horizontal-process-builder li:hover h3 { color: #d4ae60; }

	.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 15px;
		font-weight: 400;
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.horizontal-process-builder:before {
			top: 100px;
			left: 110px;
		}
		
		.horizontal-process-builder li i,
		.horizontal-process-builder li h1,
		.horizontal-process-builder li img {
			width: 90px; 
			height: 90px;
			font-size: 42px; 
			line-height: 90px;
		}
		
	}
	
	@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;	
		margin: 0 auto 30px auto;
		text-align: center;
	}
	
	.pie-chart canvas {
		position: absolute;
		z-index: 1;
		top: 0;
		left: 0;
	}
	
	.pie-chart i, 
	.pie-chart .pie-chart-custom-text, 
	.pie-chart .pie-chart-percent {
		position: absolute;
		z-index: 10;
		top: 0;
		left: 0;
		display: block;
		width: 100%;
		text-align: center;
	}
	
	.pie-chart img {
		max-width: 100%;
		vertical-align: middle;
	}
	
	.pie-chart .pie-chart-custom-text {
		font-size: 18px;
	}
	
	.pie-chart .pie-chart-percent {
		font-size: 18px;
		font-weight: 700;
	}
	
	.pie-chart-description {
		display: block;
		font-size: 14px;
		text-align: center;
	}
	
	.pie-chart-description h5 { margin-bottom: 20px; }

/* ==========================================================================
   =Pricing Tables
   ========================================================================== */

	.pricing-table {
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 60px 20px 40px 20px;
		border: 2px solid #191919;
		margin-bottom: 50px;
		text-align: center;
		text-transform: uppercase;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.pricing-table .btn { margin-bottom: 0; }

	.pricing-table-header {	margin-bottom: 20px; }

	.pricing-table-header h2 { margin-bottom: 15px; }
	
	.pricing-table-header h1 {
		padding: 10px 0;
		margin-bottom: 0;
		font-size: 100px;
		line-height: 60px;
	}
	
	.pricing-table-header h1 small {
		display: block;
		font-size: 14px;
		font-weight: 400;
		letter-spacing: 3px;
	}
	
	.pricing-table-header h4 {}
		
	.pricing-table-offer {}
	
	.pricing-table-offer ul {
		margin-bottom: 50px;
		list-style: none; 
	}
	
	.pricing-table-offer ul li:before {
		display: block;
		width: 15px;
		height: 5px;
		margin: 10px auto;
		background-color: #8c8c8c;
		content: "";
	}
	
	.pricing-table-offer ul li:first-child:before { display: none; }
	
	.pricing-table:hover {
		background-color: #191919;
		color: #fff;
	}
	
	.pricing-table:hover h2 { color: #d4ae60; }
	
	.pricing-table:hover .btn {
		border-color: #d4ae60;
		background-color: transparent;
		color: #d4ae60;
	}
	
	.pricing-table:hover .btn:after { background-color: #d4ae60; }
	.pricing-table:hover .btn:hover { color: #fff; }
	
	.pricing-table:hover ul li:before { background-color: #d4ae60; }

/* ==========================================================================
   =Profile summary
   ========================================================================== */
	
	.profile-summary-box {
		position: relative;
		padding: 230px 0;
		background: url(../../_content/backgrounds/1920x1280.jpg) no-repeat center center;
		-webkit-background-size: cover;
				background-size: cover;
	}
	
	.profile-summary-box .btn {
		position: absolute;
		bottom: 40px;
		left: 50%;
		background-color: transparent;
		-webkit-transform: translateX(-50%);
			-ms-transform: translateX(-50%);
				transform: translateX(-50%);
	}
	
	.profile-summary {
		position: relative;
		z-index: 2;
	}
	
	.header-style-2 .profile-summary {
		bottom: -60px;
		color: #fff;
	}
	
	.header-style-2 .profile-summary.no-img { bottom: 0; }
	
	.header-style-3 .profile-summary {
		top: 50%;
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
	}
	
	
	.profile-summary img { 
		border: 5px solid #fff;
		float: left;
		margin-right: 50px;
	}
	
	.profile-summary h1 {
		margin-bottom: 0;
		font-size: 60px;
		line-height: 72px; 
	}
	
	.profile-summary h2 {
		margin-bottom: 0;
		font-size: 36px;
		font-weight: 700;
	}
	
	.header-style-2 .profile-summary h2 { margin-top: 40px; }
	
	.profile-summary h3 {
		margin-bottom: 0;
		font-weight: 700;
	}
	
	.video-section {
		position: absolute;
		overflow: hidden;
		z-index: 1;
		top: 0;
		width: 100%;
		height: 100%;
	}
	
	@media (min-width: 768px) and (max-width: 979px) {

		.profile-summary img { width: 200px; }
		
		.profile-summary h1 {
			font-size: 32px;
			line-height: 48px; 
		}
	
		.profile-summary h2 {
			font-size: 24px;
			line-height: 32px;
		}
		
		.header-style-2 .profile-summary h2 { margin-top: 17px; }
	
		.profile-summary h3 { font-size: 16px; }
		
	}

	@media (max-width: 767px) {
		
		.header-style-2 .profile-summary { 
			bottom: 0;
			padding-bottom: 50px;
		}
		
		.profile-summary h1 {
			font-size: 32px;
			line-height: 48px; 
		}
	
		.profile-summary h2 {
			font-size: 24px;
			line-height: 32px;
		}
	
		.profile-summary h3 { font-size: 16px; }
		
		.profile-summary img { 
			float: none;
			width: 160px;
			margin-right: 0;
		}
		
	}

/* ==========================================================================
   =Progress Bar
   ========================================================================== */

	.progress-bar-description {
		position: relative;
		display: block;
		margin-bottom: 20px;
		font-weight: 700;
		line-height: 14px;
		text-transform: uppercase;
	}
	
	.progress-bar-description span {
		position: absolute;
		top: 0;
		right: 0;
		margin-left: -30px;
	}
	
	.progress-bar {
		position: relative;
		display: block;
		height: 15px;
		margin-bottom: 40px;
		background-color: #191919;
	}
	
	.progress-bar .progress-bar-outer {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		background-color: #d4ae60;
	}
	
	.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: 28px;
		height: 28px;
		border: 2px solid #191919;
		border-radius: 2px;
		margin-right: 10px;
		margin-bottom: 10px;
		color: #191919;
		text-align: center;
	}

	a.social-icon:last-child { margin-right: 0; }

	a.social-icon i {
		font-size: 16px;
		line-height: 28px;
	}
	
	a.social-icon:hover { text-decoration: none; }
	
	a.facebook-icon:hover { color: #0e59a0 !important; }
	a.twitter-icon:hover { color: #0ea4ff !important; }
	a.dribble-icon:hover { color: #ea73a0 !important; }
	a.pinterest-icon:hover { color: #d73532 !important; }
	a.googleplus-icon:hover { color: #282927 !important; }
	a.tumblr-icon:hover { color: #586980 !important; }
	a.instagram-icon:hover { color: #82685a !important; }
	a.rss-icon:hover { color: #f79638 !important; }
	a.linkedin-icon:hover { color: #018faf !important; }
	a.skype-icon:hover { color: #00b0f6 !important; }
	a.flickr-icon:hover { color: #0061db !important; }
	a.vimeo-icon:hover { color: #63879c !important; }
	a.github-icon:hover { color: #3b3b3b !important; }
	a.youtube-icon:hover { color: #cc181e !important; }
	a.windows-icon:hover { color: #6dc2e9 !important; }
	a.dropbox-icon:hover { color: #007ee5 !important; }
	a.xing-icon:hover { color: #026566 !important; }	
	a.adn-icon:hover { color: #1ea076 !important; }
	a.android-icon:hover { color: #98cb02 !important; }
	a.apple-icon:hover { color: #000000 !important; }
	a.behance-icon:hover { color: #2d9ad2 !important; }
	a.bitbucket-icon:hover { color: #214f81 !important; }
	a.bitcoin-icon:hover { color: #f7931b !important; }
	a.codepan-icon:hover { color: #000000 !important; }
	a.css3-icon:hover { color: #3289ce !important; }
	a.delicious-icon:hover { color: #3399fe !important; }
	a.deviantart-icon:hover { color: #c8da30 !important; }
	a.digg-icon:hover { color: #0080c2 !important; }
	a.drupal-icon:hover { color: #0077b9 !important; }
	a.empire-icon:hover { color: #000000 !important; }
	a.foursquare-icon:hover { color: #daecb0 !important; }
	a.git-icon:hover { color: #f34f29 !important; }
	a.gitti-icon:hover { color: #634c3e !important; }
	a.hacker-news-icon:hover { color: #f18642 !important; }
	a.html5-icon:hover { color: #e54c1f !important; }
	a.joomla-icon:hover { color: #016fb9 !important; }
	a.jsfiddle-icon:hover { color: #4679a4 !important; }
	a.linux-icon:hover { color: #fece0e !important; }
	a.maxcdn-icon:hover { color: #f36f20 !important; }
	a.openid-icon:hover { color: #fe6101 !important; }
	a.pagelines-icon:hover { color: #3783e3 !important; }
	a.pied-piper-icon:hover { color: #0c7b48 !important; }
	a.qq-icon:hover { color: #23286c !important; }
	a.rebel-icon:hover { color: #000000 !important; }
	a.reddit-icon:hover { color: #cee3f8 !important; }
	a.renren-icon:hover { color: #0d81e4 !important; }
	a.share-icon:hover { color: #252525 !important; }
	a.slack-icon:hover { color: #453744 !important; }
	a.soundcloud-icon:hover { color: #fe4e00 !important; }
	a.spotify-icon:hover { color: #80bb41 !important; }
	a.stack-exchange-icon:hover { color: #265a93 !important; }
	a.stackoverflow-icon:hover { color: #fea501 !important; }
	a.steam-icon:hover { color: #191919 !important; }
	a.stumbleupon-icon:hover { color: #f04f23 !important; }
	a.tencent-weibo-icon:hover { color: #0063a7 !important; }
	a.trello-icon:hover { color: #226784 !important; }
	a.vine-icon:hover { color: #00b081 !important; }
	a.vk-icon:hover { color: #50769d !important; }
	a.wechat-icon:hover { color: #a4dc31 !important; }
	a.weibo-icon:hover { color: #d82828 !important; }
	a.wordpress-icon:hover { color: #454442 !important; }
	a.yahoo-icon:hover { color: #4b04a8 !important; }

/* ==========================================================================
   =Styled Tables
   ========================================================================== */

	.table-bordered { 
		border: 1px solid #191919; 
		border-left: none; 
		border-collapse: separate; 		
	}
	
	.table-bordered th, 
	.table-bordered td { border-left: 1px solid #191919; }
	
	.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 #191919; }
		
		td:first-child { border-top: none !important; }
	  
	}

/* ==========================================================================
   =Tabs
   ========================================================================== */

/* =Horizontal tabs
   ========================================================================== */
		
   /*
    *  1. Wraps around a horizontal tab group
	*/
   
	.tabs-container {} /* 1 */

	.wpb_content_element .wpb_tabs_nav { 
		margin-top: 10px !important; 
		margin-bottom: 0;
	}
	
	.wpb_content_element .wpb_tabs_nav li { display: inline-block; }
	
	.wpb_content_element .wpb_tabs_nav li a { 
		float: left; 
		display: block;
		padding: 8px 20px 10px 20px !important;
		border-top: 2px solid #f6f6f6 !important;
		background-color: #f6f6f6 !important;
		color: #191919;
		font-weight: 900;
		text-decoration: none;
		text-transform: uppercase;
	}
        
	.wpb_content_element .wpb_tabs_nav li a:hover  {
		border-top-color: #d4ae60 !important; 
		text-decoration: none; 
	}
	
	.wpb_content_element .wpb_tabs_nav li.ui-tabs-active a {
		border-top-color: #d4ae60 !important; 
		background-color: transparent !important; 
	}
	
	.tabs-container .tabs {
		border-top: none;   
		margin-bottom: 30px !important;
	}
	
	.wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab { padding: 40px !important; }
        
        .wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab,
        .wpb_content_element .wpb_tabs_nav li.ui-tabs-active
        { background-color: transparent !important; }
	
	@media (max-width: 767px) {
	
		.wpb_content_element .wpb_tabs_nav { border-bottom: none; }
		
		.wpb_content_element .wpb_tabs_nav li { display: block; }
	
		.wpb_content_element .wpb_tabs_nav li a { 
			float: none; 
			display: block;
			padding: 20px 25px !important;
			border: 1px solid #d4ae60 !important;
			border-top: none;
			margin: 0;
		}
		
		.wpb_content_element .wpb_tabs_nav li a:hover { text-decoration: none; }
		
		.wpb_content_element .wpb_tabs_nav li:first-child a { border-top: 1px solid #d4ae60 !important; }
		
		.wpb_content_element .wpb_tabs_nav li.ui-tabs-active a {  
			padding: 20px 25px !important;
			margin: 0;
			background-color: #fff; 
		}
		
		.wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab { padding: 15px !important; }
	  
	}
	
/* ==========================================================================
   =Testimonials
   ========================================================================== */

	.testimonial {
		width: 75%; 
		margin: 0 auto 30px auto; 
		text-align: center;
	}
	
	.testimonial blockquote {
		margin-bottom: 20px;
		font-size: 16px;
		line-height: 27px;
	}
	
	.testimonial blockquote:after {
		font-family: "FontAwesome";
		font-size: 40px;
		line-height: 40px;
		content: "";
	}

	.testimonial img { 
		border-radius: 50%;
		margin-bottom: 30px;  
	}
	
	.testimonial h3 { 
		line-height: 24px;
		letter-spacing: 3px;
	}
	
	.testimonial h3 small {
		font-size: 12px;
		font-weight: 300;
	}
	
/* ==========================================================================
   =Portfolio Item
   ========================================================================== */
	
	.portfolio-isotope { margin-bottom: 50px; }
	
	.portfolio-item { 
		position: relative; 
		margin-bottom: 50px;
	}
	
	.portfolio-isotope .portfolio-item { margin-bottom: 0; }
		
	.portfolio-item-preview { position: relative; }
		
	.portfolio-item-preview > img {
		display: block;
		width: 100%;
	}
	
	.portfolio-item-overlay {
		position: absolute; 
		top: 0; 
		right: 0; 
		bottom: 0; 
		left: 0; 
		background-color: rgba(0, 0, 0, 0.7);
		opacity: 0;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
			
	.portfolio-item-overlay-actions {
		position: absolute;
		top: 0%;
		width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		margin-top: -12px;
		text-align: center;
		opacity: 0;
		-webkit-transition: all 0.3s 0.35s;
				transition: all 0.3s 0.35s;
	}
			
	.portfolio-item-overlay-actions .portfolio-item-zoom {
		display: inline-block;
		color: #fff; 
		text-align: center;
		text-decoration: none; 
	}
				
	.portfolio-item-overlay-actions i {
		color: #fff; 
		font-size: 32px; 
		line-height: 32px;
	}
	
	.portfolio-item-description {
		position: absolute;
		bottom: 30px;
		left: 0;
		color: #fff;
		opacity: 0;
		font-weight: 300;
		text-transform: uppercase;
		-webkit-transition: all 0.3s 0.25s;
				transition: all 0.3s 0.25s;
	}
	
	.portfolio-item-description h3 {
		margin-bottom: 0;
		font-weight: 700;
	}
	
	.portfolio-item-description h3:before {
		display: block;
		width: 15px;
		height: 5px;
		margin-bottom: 7px;
		background-color: #d4ae60;
		content: "";
	}
				
	.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
	
	.portfolio-item-description h3 a { color: #fff; }
	
	.portfolio-item:hover .portfolio-item-overlay-actions { 
		top: 50%;
		opacity: 1;
	}
	
	.portfolio-item:hover .portfolio-item-description {
		left: 50px;
		opacity: 1;
	}
	
	.portfolio-item-2 { margin-bottom: 40px; }
	
	.portfolio-item-2 img {
		display: block;
		width: 100%;
	}
	
	.portfolio-item-2 .title { margin-top: 30px; }
	
/* ==========================================================================
   =Portfolio Filter
   ========================================================================== */
	
	.portfolio-filter ul {
		margin-bottom: 90px;
		list-style: none;
		text-align: center;
	}
	
	.portfolio-filter ul li { 
		display: inline-block;
		margin-right: 15px;
	}
	
	.portfolio-filter ul li:last-child { margin-right: 0; }
	
	.portfolio-filter ul li a {
		position: relative;
		z-index: 2;
		display: inline-block; 
		padding: 4px 20px;
		border: 2px solid #191919;
		border-radius: 2px;
		background-color: #fff;
		color: #191919;
		font-size: 12px;
		font-weight: 700; 
		text-decoration: none;
		text-transform: uppercase;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 	
	}
	
	.portfolio-filter ul li a:after {
		position: absolute;
		z-index: -1;
		top: 0;
		right: 0;
		left: 0;
		height: 0;
		background-color: #d4ae60;
		color: #fff;
		content: "";
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}	
	
	.portfolio-filter ul li a:hover:after,
	.portfolio-filter ul li a.active:after { height: 100%; }
	
	.portfolio-filter ul li a:hover,
	.portfolio-filter ul li a.active {
		border-color: #d4ae60;
		background-color: #fff; 
		color: #fff;
	}
	
	@media (max-width: 767px) {
		
		.portfolio-filter ul li {
			display: block;
			margin-right: 0;
			margin-bottom: 10px;
		}
		
		.portfolio-filter ul li:last-child { margin-bottom: 0; }
		
		.portfolio-filter ul li a { display: block; }
		
	}

/* ==========================================================================
   =Portfolio Pagination
   ========================================================================== */
	
	.pagination {
		margin-bottom: 30px;
		list-style: none;
	}
	
	.pagination li { 
		display: inline-block;
		margin-right: 7px;
	}
	
	.pagination li:last-child { margin-right: 0; }
	
	.pagination li a {
		position: relative;
		z-index: 2;
		display: inline-block; 
		padding: 3px 11px;
		border: 2px solid #191919;
		border-radius: 2px;
		background-color: #fff;
		color: #191919;
		font-weight: 700;
		text-decoration: none;
		text-transform: uppercase;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 	
	}
	
	.pagination li a:after {
		position: absolute;
		z-index: -1;
		top: 0;
		right: 0;
		left: 0;
		height: 0;
		background-color: #d4ae60;
		color: #fff;
		content: "";
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}	
	
	.pagination li a:hover:after,
	.pagination li.current a:after { height: 100%; }
	
	.pagination li a:hover,
	.pagination li.current a {
		border-color: #d4ae60;
		background-color: #fff; 
		color: #fff;
	}

/* ==========================================================================
   =Portfolio Columns
   ========================================================================== */
	
	.portfolio-columns {
		margin: -10px -10px 80px -10px;
		list-style: none;
	}
	
	.portfolio-columns .item {
		float: left;
		width: 33.33333%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 10px;
		
	}
	
	.portfolio-columns .item .portfolio-item { margin-bottom: 0; }
	
	@media (min-width: 1400px) {
			
		.portfolio-columns .item {}
		
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.portfolio-columns .item { 
			width: 50%;
		}
		
	}
	
	@media (max-width: 767px) {
		
		.portfolio-columns .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: 30px;
		list-style: none;
	}
	
	.portfolio-strip .item {
		float: left;
		width: 25%;
	}
	
	.portfolio-strip .item:last-child { display: none; }
	
	.portfolio-strip .portfolio-item { margin-bottom: 0; } 
	
	@media (min-width: 1400px) {
		
		.portfolio-strip .item { width: 20%; }
		.portfolio-strip .item:last-child { display: block; } 
		
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.portfolio-strip .item { width: 33.3333333333%; }
		.portfolio-strip .item:last-child { display: block; } 
		
	}
	
	@media (max-width: 767px) {
		
		.portfolio-strip .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 {
			float: left;
			width: 50%; 
		}
		
	}
   
/* ==========================================================================
   =Contact form
   ========================================================================== */
  
	#contact-form { 
		overflow: hidden; 
		margin-bottom: 30px; 
	}
	
	#contact-form fieldset {}
	
	#contact-form input[type="text"],
	#contact-form textarea {
		border: none;
		border-bottom: 2px solid #8c8c8c;
		border-radius: 0;
	}
	
	#contact-form input[type="text"]:focus,
	#contact-form textarea:focus { border-bottom-color: #191919; }
	
	#contact-form input[type="submit"]:hover { background-color: #191919; }
	
	label.validation-error { color: #d50f25; }
	
	input.validation-error,
	textarea.validation-error,
	select.validation-error { border: 1px solid #e0e0e0; }
	
	#contact-form #formstatus {}  

        
        .wpcf7-form { 
		overflow: hidden; 
		margin-bottom: 30px; 
	}
        
        .wpcf7-form textarea,
	.wpcf7-form input[type="text"],
        .wpcf7-form input[type="email"]
        {
		border: none;
		border-bottom: 2px solid #8c8c8c;
		border-radius: 0;
	}
        
        .wpcf7-form input[type="text"]:focus,
        .wpcf7-form input[type="email"]:focus,
	.wpcf7-form textarea:focus { border-bottom-color: #191919; }
        
        .wpcf7-form .wpcf7-submit:hover { background-color: #191919; }
	         
/* ==========================================================================
   =Blog
   ========================================================================== */

	.blog-post { margin-bottom: 50px; }
	
	.blog-post-title {
		font-weight: 700;
		text-transform: uppercase; 
	}
	
	.blog-post-title i {
		float: left;
		display: block;
		width: 44px;
		height: 44px;
		border: 2px solid #4b4b4b;
		border-radius: 2px;
		font-size: 25px;
		line-height: 44px;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.blog-post-title p,
	.blog-post-title h4 { margin-left: 70px; }
	
	.blog-post-title h4 {
		margin-bottom: 10px;
		letter-spacing: 2px;
	}
	
	.blog-post-thumb { 
		position: relative;
		margin-bottom: 40px;
	}
	
	.blog-post-thumb img { display: block; }
	
	.blog-post-thumb-overlay {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: rgba(25, 25, 25, 0.5);
		opacity: 0;
		-webkit-transition: opacity 0.3s;
				transition: opacity 0.3s;
	}
	
	.blog-post-info {
		position: relative;
		float: left;
		margin-right: 15px;
		text-align: center;
	}
	
	.blog-post-thumb .blog-post-info {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		float: none;
		margin-right: 0;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.blog-post-info h2 {
		width: 53px;
		height: 50px;
		padding-top: 3px;
		border: 2px solid #d4ae60;
		border-radius: 3px;
		background-color: #d4ae60;
		color: #fff;
		font-weight: 700;
		line-height: 30px;
	}
	
	.blog-post-thumb .blog-post-info h2 {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 70px;
		height: 60px;
		padding-top: 10px;
		border-color: #191919;
		background-color: transparent;
		color: #191919;
		-webkit-transform: translateY(-50%) translateX(-50%);
				transform: translateY(-50%) translateX(-50%);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.blog-post-info h2 small {
		display: block;
		font-size: 14px;
		line-height: 14px;
		text-transform: uppercase;
	}
	
	.blog-post blockquote {
		position: relative;
		padding-left: 150px;
		margin: 40px 0;
	}
	
	.blog-post blockquote:before {
		position: absolute;
		top: 50%;
		left: 50px;
		color: #d4ae60;
		font-family: "FontAwesome";
		font-size: 48px;
		line-height: 48px;
		content: "";
		-webkit-transform: translateY(-50%);
				transform: translateY(-50%);
	}
	
	.blog-post-readmore {}
	
	.blog-post:hover .blog-post-info h2 {
		border-color: #d4ae60;
		background-color: #d4ae60;
		color: #fff;
	}
	
	.blog-post:hover .blog-post-title i {
		border-color: #d4ae60;
		background-color: #d4ae60;
		color: #fff;
	}
	
	.blog-post:hover .blog-post-thumb-overlay { opacity: 1; }
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.blog-post-title i { display: none; }
		
		.blog-post-title p,
		.blog-post-title h4 { margin-left: 0; }
		
	}
	
	@media (max-width: 767px) {
		
		.blog-post blockquote { padding-left: 40px; }
		
		.blog-post blockquote:before { display: none; }
		
	}
	
/* ==========================================================================
   =WordPress Default Classes
   ========================================================================== */
   
    .nfw-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: 50px; }
	
	.widget-title { 
		margin-bottom: 45px;
		line-height: 18px;
		font-weight: 800;
		text-transform: uppercase;
	}
	
	.widget-title:before {
		display: block;
		width: 15px;
		height: 5px;
		margin-bottom: 10px;
		background-color: #d4ae60;
		content: "";
	}
	
	#footer .widget:last-child { margin-bottom: 0; }
	
/* =Text Widget
   ========================================================================== */
	
	.widget_text {}
	
	.textwidget {}
	
/* =Search Widget
   ========================================================================== */
	
	#searchform { position: relative; }
	
	.screen-reader-text { display: none; }
	
	#searchform #s { 
		display: inline-block; 
		width: 100%;
		height: 42px;
		-webkit-box-sizing: border-box; 
		   -moz-box-sizing: border-box; 
		   		box-sizing: border-box; 
	}
	
	#searchsubmit {
		position: absolute;
		top: 0;
		right: 0;
		height: 42px;
		padding: 8px 15px;
		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 {}
	
	.widget_recent_entries ul li img { 
		float: left;
		margin-right: 20px;
	}	
	
	.widget_recent_entries ul li > a { 
		color: #191919;
		font-weight: 800;
		text-transform: uppercase;
	}
	
	.widget_recent_entries ul li > a:hover {
		color: #d4ae60;
		text-decoration: none;
	}
	
	.widget_recent_entries ul li .post-date {}
	
	@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;
		margin-left: 20px;
		list-style: none; 
	}
	
	.widget_pages ul li {
		margin-bottom: 15px;
		font-weight: 700;
		text-transform: uppercase;
	}
	
	.widget_pages ul li:last-child { margin-bottom: 0; }
	
	.widget_pages a { color: #191919; }
	
	.widget_pages a:hover { 
		color: #d4ae60;
		text-decoration: none;
	}
	
/* =Archive Widget
   ========================================================================== */
	
	.widget_archive {}
	
	.widget_archive ul {
		margin-bottom: 0;
		margin-left: 20px;
		list-style: none; 
	}
	
	.widget_archive ul li {
		margin-bottom: 15px;
		font-weight: 700;
		text-transform: uppercase;
	}
	
	.widget_archive ul li:last-child { margin-bottom: 0; }
	
	.widget_archive a { color: #191919; }
	
	.widget_archive a:hover { 
		color: #d4ae60;
		text-decoration: none;
	}
	
/* =Categories Widget
   ========================================================================== */
	
	.widget_categories {}
	
	.widget_categories ul {
		margin-bottom: 0;
		margin-left: 20px;
		list-style: none; 
	}
	
	.widget_categories ul li {
		margin-bottom: 15px;
		font-weight: 700;
		text-transform: uppercase;
	}
	
	.widget_categories ul li:last-child { margin-bottom: 0; }
	
	.widget_categories a { color: #191919; }
	
	.widget_categories a:hover { 
		color: #d4ae60;
		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;
		margin-left: 20px;
		list-style: none; 
	}
	
	.widget_meta ul li {
		margin-bottom: 15px;
		font-weight: 700;
		text-transform: uppercase;
	}
	
	.widget_meta ul li:last-child { margin-bottom: 0; }
	
	.widget_meta a { color: #191919; }
	
	.widget_meta a:hover { 
		color: #d4ae60;
		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 {
		position: relative;
		z-index: 2;
		display: inline-block; 
		padding: 7px 15px;
		border: 2px solid #191919;
		border-radius: 2px;
		margin: 0 10px 10px 0;
		background-color: #fff;
		color: #191919;
		font-size: 12px;
		line-height: 18px;
		text-decoration: none;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 	
	}
	
	.widget_tag_cloud a:after {
		position: absolute;
		z-index: -1;
		top: 0;
		right: 0;
		left: 0;
		height: 0;
		background-color: #d4ae60;
		color: #fff;
		content: "";
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.widget_tag_cloud a:hover:after { height: 100%; }
	
	.widget_tag_cloud a:hover {
		border-color: #d4ae60;
		background-color: #fff; 
		color: #fff;
	}
	
/* =Calendar Widget
   ========================================================================== */
	
	.widget_calendar {}
	
	#calendar_wrap {
		position: relative;
		padding-top: 20px;
		margin-bottom: 0;
		text-align: center;
	}
	
	#calendar_wrap caption {
		font-size: 18px;
		font-weight: 800;
		text-transform: uppercase;
	}
	
	#calendar_wrap th {
		color: #d4ae60;
		font-size: 18px;
		font-weight: 800;
	}
	
	#calendar_wrap td {}
	
	#wp-calendar tr td {
		font-size: 16px;
		font-weight: 400;
	}
	
	#wp-calendar #today { 
		background-color: #d4ae60;
		color: #fff;
	}
	
	#wp-calendar #prev {}
	
	#wp-calendar #next {}
	
	#wp-calendar #next a {}
	
	#wp-calendar #prev a {}
	
	#next-mounth a,
	#prev-mounth a {
		font-size: 14px;
		font-weight: 700;
		text-decoration: none;
	} 
	
/* =Nav Menu Widget
   ========================================================================== */
	
	.widget_nav_menu {}	
	
	.widget_nav_menu ul {
		margin-bottom: 0;
		margin-left: 20px;
		list-style: none; 
	}
	
	.widget_nav_menu ul li {
		margin-bottom: 15px;
		font-weight: 700;
		text-transform: uppercase;
	}
	
	.widget_nav_menu ul li:last-child { margin-bottom: 0; }
	
	.widget_nav_menu a { color: #191919; }
	
	.widget_nav_menu a:hover { 
		color: #d4ae60;
		text-decoration: none;
	}
	
/* =RSS Widget
   ========================================================================== */
	
	.widget_rss {}
	
	.widget_rss ul { list-style: none; }	
	
/* ==========================================================================
   =WordPress Custom Widgets
   ========================================================================== */
   
/* =nfw Twitter widget
   ========================================================================== */
	
	.nfw_widget_latest_tweets {}
	
	.nfw-tweet-list {
		padding: 20px;
		border: 2px solid #191919;
		border-radius: 3px;
	}
	
	.nfw-tweet-list:before {
		color: #0ea4ff;
		font-family: "FontAwesome";
		font-size: 28px;
		content: "";
	}
	
	.nfw-tweet-list .tweet { word-wrap: break-word; }
	
	.nfw-tweet-list ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.nfw-tweet-list .interact {
		margin-bottom: 0;
		text-align: center;
	}
	
	.nfw-tweet-list .interact a { margin-right: 10px; }
	
	.nfw-tweet-list .interact a:last-child { margin-right: 0; }
	
/* =nfw Flickr widget
   ========================================================================== */
	
	.nfw_widget_flickr {}
	
	.flickr-feed {}
	
	.flickr-feed .flickr_badge_image { display: inline; }
	
	.flickr-feed img { 
		width: 70px; 
		height: auto;
		padding: 0 20px 15px 0; 
		border: none;
	}
	
/* =nfw Contact Info widget
   ========================================================================== */	
	
	.nfw_widget_contact_info {}
	
	.nfw_widget_contact_info ul {
		margin-bottom: 0;
		list-style: none;
	}
	
	.nfw_widget_contact_info ul li { margin-bottom: 10px; }
	
	.nfw_widget_contact_info ul li:last-child { margin-bottom: 0; }
	
	.nfw_widget_contact_info ul li a {}
	
/* =nfw Newsletter subscribe widget
   ========================================================================== */

	.nfw_widget_newsletter {}
	
	#newsletter-subscribe-form {}
	
	#newsletter-subscribe-form input[type="text"] { width: 100%; }
	
	#newsletter-subscribe-form input[type="submit"] { margin: 0; }
	
	#newsletter-subscribe-form input[type="submit"]:hover {
		border-color: #d4ae60;
		background-color: #d4ae60; 
	}

/* =nfw Latest posts widget
   ========================================================================== */

	.widget_nfw_posts_widget {}
	
	.widget_nfw_posts_widget ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.widget_nfw_posts_widget img { 
		float: left;
		display: block;
		margin-right: 30px;
	}
	
	.widget_nfw_posts_widget .title {
		margin-left: 130px;
		font-weight: 800;
		text-transform: uppercase;
	}	
	
	.widget_nfw_posts_widget .title a { color: #191919; }
	
	.widget_nfw_posts_widget .title a:hover { 
		color: #d4ae60;
		text-decoration: none;
	}
	
	.widget_nfw_posts_widget .post-details { 
		font-weight: 700;
		text-transform: uppercase;
	}
	
	#footer-wrapper .widget_nfw_posts_widget .post-details { background-color: #5c5a69; }
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.widget_nfw_posts_widget img { 
			float: none;
			margin-right: 0;
			margin-bottom: 10px;
		}
		
		.widget_nfw_posts_widget .title { margin-left: 0; }
		
	}
	
	@media (max-width: 767px) {
		
		.widget_nfw_posts_widget img { 
			float: none;
			margin-right: 0;
			margin-bottom: 10px;
		}
		
		.widget_nfw_posts_widget .title { margin-left: 0; }
		
	}
	
/* =nfw Navigation widget
   ========================================================================== */
	
	.nfw_widget_navigation {}
	
	.nfw_widget_navigation ul {
		margin-bottom: 0;
		margin-left: 20px;
		list-style: none; 
	}
	
	.nfw_widget_navigation ul li {
		margin-bottom: 15px;
		font-weight: 700;
		text-transform: uppercase;
	}
	
	.nfw_widget_navigation ul li:last-child { margin-bottom: 0; }
	
	.nfw_widget_navigation a { color: #191919; }
	
	.nfw_widget_navigation a:hover { 
		color: #d4ae60;
		text-decoration: none;
	}

/* =nfw Social media widget
   ========================================================================== */
	
	.nfw_widget_social_media {}
	
	#footer .nfw_widget_social_media { float: right; }
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.nfw_widget_social_media:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}	
	
	@media (max-width: 767px) {
		
		#footer .nfw_widget_social_media { float: none; }
		
	}
	
/* ==========================================================================
   =WordPress Comments
   ========================================================================== */
	
	.comments-title { 
		margin-bottom: 45px;
		font-weight: 800;
		text-transform: uppercase;
	}
	
	.comments-title:before {
		display: block;
		width: 15px;
		height: 5px;
		margin-bottom: 10px;
		background-color: #d4ae60;
		content: "";
	}
	
	.comment-reply-title {}
	
	.commentlist .reply {}
	
	.commentlist .reply a {
		position: relative;
		z-index: 2;
		display: inline-block; 
		padding: 5px 30px;
		border: 2px solid #191919;
		border-radius: 2px;
		margin-left: 100px;
		background-color: #fff;
		color: #191919;
		font-size: 10px;
		line-height: 18px;
		font-weight: 800;
		text-decoration: none;
		text-transform: uppercase;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 	
	}
	
	.commentlist .reply a:after {
		position: absolute;
		z-index: -1;
		top: 0;
		right: 0;
		left: 0;
		height: 0;
		background-color: #d4ae60;
		color: #fff;
		content: "";
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.commentlist .reply a:hover:after { height: 100%; }
	
	.commentlist .reply a:hover {
		border-color: #d4ae60;
		background-color: #fff; 
		color: #fff;
	}
	
	.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 b.fn {}
	
	.commentlist .vcard span.says { display: none; }
	
	.commentlist .vcard img.photo {
		float: left;
		display: block;
		border-radius: 50%;
		margin-right: 20px;
	}
	
	.commentlist .vcard img.avatar {}
	
	.commentlist .vcard b.fn {
		color: #191919;
		font-size: 16px;
		font-weight: 800;
		text-transform: uppercase;
	}
	
	.commentlist .vcard b.fn:hover {
		color: #d4ae60;
		text-decoration: none;
	}
	
	.commentlist .comment-meta { margin-bottom: 20px; }
	
	.commentlist .comment-meta a {
		color: #191919;
		font-size: 12px;
		text-transform: uppercase;
	}
	
	.commentlist .commentmetadata {}
	
	.commentlist .commentmetadata a {}
	
	.commentlist .parent {}
	
	.commentlist .comment {}
	
	.commentlist .children {}
	
	.commentlist .pingback {}
	
	.commentlist .bypostauthor {}
	
	.commentlist .comment-author {}
	
	.commentlist .comment-author-admin {}
	
	.commentlist {
		margin-bottom: 100px;
		list-style: none;
	}
	
	.commentlist li { margin-bottom: 50px; }
	
	.commentlist li p { margin-left: 100px; }
	
	.commentlist li ul {
		margin-top: 50px;
		margin-left: 0;
		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 .vcard img.photo {
			float: none;
			margin-right: 0;
			margin-bottom: 20px;
		}
		
		.commentlist li p,
		.commentlist .reply a { margin-left: 0; }
		
	}
	
/* ==========================================================================
   =WordPress Comment Form
   ========================================================================== */	
	
	.section-heading { 
		margin-bottom: 45px;
		font-weight: 800;
		text-transform: uppercase;
	}
	
	.section-heading:before {
		display: block;
		width: 15px;
		height: 5px;
		margin-bottom: 10px;
		background-color: #d4ae60;
		content: "";
	}
	
	.nav-previous { display: none; }
	
	.nav-next{ display: none; }
	
	.nocomments { display: none; }
	
	.must-log-in { display: none; }
	
	.logged-in-as { display: none; }

	#commentform {}
	
	.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 {}
	
	#commentform #submit:hover {
		border-color: #d4ae60;
		background-color: #d4ae60;
	}
	