/**
 * 	Name: elements.css
 *
 *	T.O.C
 *	
 *	=Accordions
 *	=Alerts
 *	=Animations
 *	=Buttons
 *	=Custom Lists
 *	=Dividers
 *	=Google Maps
 *	=Headlines
 *	=Icon Boxes
 *	=Milestones
 *	=Our Process
 *	=Pie charts
 *	=Pricing Tables
 *	=Progress Bar
 *	=Shopping
 *	=Social Media
 *	=Styled Tables
 *	=Tabs
 *	=Testimonials
 *	=Portfolio Item
 *	=Portfolio Filter
 *	=Portfolio Pagination
 *	=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 Instagram widget
 *		=nfw Facebook 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
 *
 */

 
/* ==========================================================================
   =Accordions and Toogles
   ========================================================================== */

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

	.wpb_content_element .wpb_accordion_header a {
		position: relative;
		display: block;
		padding: 10px 10px 10px 50px !important;
		border-bottom: 1px solid #ebebeb !important;
		color: #1c1c1c;
		font-family: "Prata", Arial, sans-serif;
		font-size: 12px;
		font-weight: 700;
	}
        
        .wpb_content_element .wpb_accordion_header {
             background-color: transparent !important;
        }
	
	.wpb_content_element .wpb_accordion_header a:after {
		position: absolute;
		top: 10px;
		left: 20px;
		font-size: 18px;
		content: "+";
	}
        
        .wpb_accordion .wpb_accordion_wrapper .ui-state-default .ui-icon, 
        .wpb_accordion .wpb_accordion_wrapper .ui-state-active .ui-icon {
                background-image: none !important;
        }
	
	.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 { text-decoration: none; }
	
	.wpb_accordion .wpb_wrapper .wpb_wrapper { 
		padding: 10px 10px 10px 35px; 
	}
		
	.accordion-item-content p:last-child { margin-bottom: 0; }
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.wpb_accordion .wpb_wrapper .wpb_wrapper:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}

/* ==========================================================================
   =Alerts
   ========================================================================== */

	.alert {
		padding: 13px 15px;
		border: 1px solid #a0a0a0;
		border-radius: 3px;
		margin-bottom: 30px;
	}
	
	.alert i {
		position: relative;
		top: 1px;
		margin-right: 7px;
		font-size: 16px;
	}
	
	.alert.info {
		border: 1px solid #86cde3;
		background-color: #cce9f2;
		color: #3194b1;
	}
	
	.alert.success {
		border: 1px solid #b3cda1;
		background-color: #d8f1c6;
		color: #749958;
	}
	
	.alert.error {
		border: 1px solid #e1a1a1;
		background-color: #f9d9d9;
		color: #b55454;
	}
	
	.alert.warning {
		border: 1px solid #d1c9ae;
		background-color: #fbf4dd;
		color: #978c68;
	}
	
/* ==========================================================================
   =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
   ========================================================================== */
	
	#commentform #submit, .btn {
		position: relative;
		overflow: hidden;
		z-index: 2;
		display: inline-block;
		padding: 5px 25px;
		border: 2px solid #1c1c1c;
		border-radius: 20px;
		margin: 0 5px 20px 0;
		background-color: #1c1c1c;
		color: #fff;
		font-size: 12px;
		line-height: 18px;
		vertical-align: middle;
		text-decoration: none !important;
		text-transform: uppercase;
		cursor: pointer;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 	
	}
	
	#commentform #submit:after, .btn:after {
		position: absolute;
		z-index: -1;
		top: 0;
		left: 51%;
		width: 0;
		height: 100%;
		background-color: #fff;
		color: #1c1c1c;
		opacity: 0;
		content: "";
		-webkit-transform: translateX(-51%);
			-ms-transform: translateX(-51%);
				transform: translateX(-51%);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	a.btn { color: #fff; }
	
	#commentform #submit:focus, .btn:focus { outline: 0; }
	
	#commentform #submit:hover:after, .btn:hover:after {
		width: 100%; 
		opacity: 1; 
	}
	
	#commentform #submit:hover, .btn:hover {
		background-color: transparent; 
		color: #1c1c1c;
	}

	.btn-large { padding: 12px 35px; }
	
	.btn i,
	.btn-large i { 
		float: left; 
		margin: 2px 8px 0 -4px;
		font-size: 14px; 
		line-height: 14px; 
	}
	
	.btn.alt { 
		background-color: transparent;
		color: #1c1c1c;
	}
	
	.btn.alt:after { background-color: #1c1c1c; }
	.btn.alt:hover { color: #fff; }

/* =Colored Buttons
   ========================================================================== */
	
	.btn-white {
		border: 1px solid #a0a0a0;
		background-color: #f3f3f3;
		color: #1c1c1c;
	}
	
	a.btn-white { color: #1c1c1c; }
	.btn-white:hover { background: #f0f0f0; }
	
	.btn-black {
		border: 1px solid #464646;
		background-color: #464646;
		color: #fff;
	}
	
	a.btn-black { color: #fff; }
	.btn-black:hover { background: #535353; }
	
	.btn-blue {
		border: 1px solid #1f70ad;
		background-color: #2778c8;
		color: #fff;
	}
	
	a.btn-blue { color: #fff; }
	.btn-blue:hover { background: #287fc8; }

	.btn-red {
		border: 1px solid #b23730;
		background-color: #c74039;
		color: #fff;
	}
	
	a.btn-red { color: #fff; }
	.btn-red:hover { background: #ce4640; }

	.btn-green {
		border: 1px solid #819633;
		background-color: #8da046;
		color: #fff;
	}
	
	a.btn-green{ color: #fff; }
	.btn-green:hover { background: #93a749; }

/* ==========================================================================
   =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. Fill circle
	 *
	 */
	 
	ul.check,									/* 1 */
	ul.fill-circle { list-style: none;  }		/* 2 */
	
	ul.fill-circle li:before { 
		position: relative;
		top: -1px;
		width: auto;
		height: auto;
		margin-right: 15px;
		font-family: 'FontAwesome';
		font-size: 8px;
		font-style: normal;
	}
	
	ul.check li:before {
		display: inline-block;
		width: 16px;
		height: 16px;
		border: 1px solid #1c1c1c;
		margin-right: 15px;
		font-family: 'FontAwesome';
		font-size: 10px;
		line-height: 16px;
		letter-spacing: 0;
		text-align: center;
	}
	
	ul.check li:before { content: ""; }
	ul.fill-circle li:before { content: ""; }

/* ==========================================================================
   =Dividers
   ========================================================================== */

	.divider { margin: 30px 0; }
	
	.divider.single-line { border-top: 1px solid #a0a0a0; }
	
	.divider.double-line { border-top: 4px double #a0a0a0; }
	
	.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 {
		width: 100%; 
		height: 400px;
	}
	
	.google-map  img { max-width: none; }	/* 1 */
	
	.map { margin-bottom: 40px; }
	
	@media (max-width: 767px) {

		.map { padding: 0 20px; }
		.row .map { padding: 0; }
		
	}

/* ==========================================================================
   =Headlines
   ========================================================================== */

	.headline {
		position: relative;
		margin-bottom: 70px;
		text-align: center;
	}
	
	.headline h1:after {
		position: absolute;
		top: 3px;
		left: 50%;
		display: block;
		height: 55px;
		border-left: 1px solid #808080; 
		content: "";
		-webkit-transform: rotate(45deg);
			-ms-transform: rotate(45deg);
				transform: rotate(45deg);
	}
	
	.headline h1 {
		padding-left: 15px;
		margin-bottom: 0;
		text-transform: uppercase;
		letter-spacing: 15px;
	}
	
	.headline:before,
	.headline:after {
		display: block;
		width: 50px;
		border-top: 2px solid #1c1c1c;
		margin: 0 auto;
		content: "";
	}
	
	.subheadline { 
		margin-bottom: 12px;
		text-align: center;
	}
	
	.subheadline:after {
		display: block;
		width: 50px;
		border-top: 2px solid #1c1c1c;
		margin: 0 auto;
		content: "";
	}
	
	.subheadline h4 {
		margin-bottom: 12px;
		text-transform: uppercase;
		letter-spacing: 7px;
	}
	
	@media (max-width: 767px) {
		
		.headline h1 {
			padding-left: 8px;
			font-size: 32px;
			letter-spacing: 8px;
		}
		
	}
	
/* ==========================================================================
   =Icon Boxes
   ========================================================================== */

/* =Icon Box 1
   ========================================================================== */
   
	.icon-box-1 { 
		position: relative;
		padding: 40px 30px;
		border: 1px solid #a0a0a0; 
		margin-bottom: 30px;
		text-align: center; 
	}
		
	.icon-box-1 > i { 
		display: block;  
		font-size: 50px;
		margin-bottom: 10px;
	}
	
	.icon-box-1 > img { margin-bottom: 10px; }
	
	.icon-box-1 h4 { margin-bottom: 20px; }
	
	.icon-box-1 .icon-box-content {}
	
	.icon-box-1 .icon-box-content .btn { margin-bottom: 0; }

/* ==========================================================================
   =Milestones
   ========================================================================== */

	.milestone {
		position: relative;
		padding: 40px 15px;
		border: 1px solid transparent;
		margin-bottom: 30px;
		text-align: center;
		-webkit-transition: border-color 0.3s;
				transition: border-color 0.3s;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	.milestone:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	.milestone i {
		z-index: 2;
		margin-right: 10px;
		font-size: 32px;
	}
	
	.milestone .milestone-content {
		z-index: 1;
		font-family: "Prata", Arial, sans-serif;
		font-size: 72px;
		line-height: 94px;
	}
	
	.milestone .milestone-description {
		font-family: "PT Sans Narrow", Arial, sans-serif; 
		font-size: 14px; 
		line-height: 27px;
	}
	
	.milestone .milestone-description h4 { margin-bottom: 20px; }
	.milestone .milestone-description p { margin-bottom: 0; }
	
	.milestone:hover { border-color: #a0a0a0; }

/* ==========================================================================
   =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: 60px;
		left: 130px;
		display: block;
		width: 75%;
		border-top: 1px solid #a0a0a0;
		content: "";
	}
	
	.horizontal-process-builder li { 
		float: left;
		width: 25%;  
	}
	
	.horizontal-process-builder li i,
	.horizontal-process-builder li h1 {
		position: relative;
		z-index: 2;
		display: block;
		width: 120px; 
		height: 120px;
		overflow: hidden;  
		border: 1px solid #a0a0a0;
		border-radius: 50%;
		outline: 5px solid #fff;
		margin: 0 auto 20px;
		background-color: #fff;
		background-clip: padding-box;
		color: #1c1c1c;
		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: #f3f3f3;
	}

	.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%; }
	
	@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 20px 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: 2;
		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-family: "Prata", Arial, sans-serif;
		font-size: 24px;
		font-weight: 700;
	}
	
	.pie-chart-description {
		display: block;
		font-size: 12px;
		text-align: center;
	}

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

	.pricing-table {
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 50px 30px;
		border: 1px solid #a0a0a0;
		margin-bottom: 30px;
		text-align: center;
		-webkit-transition: border-color 0.3s;
				transition: border-color 0.3s;
	}

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

	.pricing-table-header h2 {
		margin-bottom: 30px;
		font-size: 36px;
		text-transform: uppercase;
	}
	
	.pricing-table-header h1 {
		margin-bottom: 0;
		font-size: 72px;
	}
	
	.pricing-table-header h1 sup {
		margin-right: -10px;
		font-size: 24px;
		vertical-align: text-top; 
	}
	
	.pricing-table-header h1 sub {
		margin-left: -15px;
		font-size: 14px;
		vertical-align: baseline;
	}

	.pricing-table-header h4 {}
		
	.pricing-table-offer {}
	
	.pricing-table-offer ul { list-style: none; }
	
	.pricing-table-offer ul li:after {
		display: block;
		width: 50%;
		margin: 10px auto;
		border-bottom: 1px solid #a0a0a0;
		content: "";
	}
	
	.pricing-table-offer ul li:last-child:after { border-bottom: none; }
	
	.pricing-table:hover { border-color: #1c1c1c; }
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.pricing-table-header h1 { font-size: 64px; }
		
	}

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

	.progress-bar-description {
		position: relative;
		display: block;
		margin-bottom: 20px;
		font-family: "Prata", Arial, sans-serif;
		line-height: 14px;
	}
	
	.progress-bar-description span {
		position: absolute;
		top: 0;
		left: 0;
		font-family: "PT Sans Narrow", Arial, sans-serif;
	}
	
	.progress-bar {
		position: relative;
		display: block;
		height: 4px;
		margin-bottom: 20px;
		background-color: #f3f3f3;
	}
	
	.progress-bar .progress-bar-outer {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		background-color: #1c1c1c;
	}
	
	.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%;
	}

/* ==========================================================================
   =Shopping
   ========================================================================== */
   
   	ul.products {
		margin: -15px -15px 70px -15px;
		list-style: none;
	}
	
	ul.products li.product {
		float: left;
		width: 25%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 15px;
		text-align: center;
	}
	
	ul.products.four-cols li.product { width: 25%; }
	ul.products.three-cols li.product { width: 33.3333333333333%; }
	
	ul.products li.product a {
		color: #1c1c1c; 
		text-decoration: none;
	}
	
	ul.products li.product img {
		width: 100%; 
		border: 1px solid #e0e0e0;
		margin-bottom: 25px;
	}
	
	ul.products li.product h4 small {
		display: block;
		font-family: "PT Sans Narrow", Arial, sans-serif; 
		text-transform: uppercase;
	}
	
        .woocommerce ul.products li.product .star-rating {
                margin-left: auto;
                margin-right: auto;
        }

	ul.products li.product h5.price { margin-bottom: 20px; }
	
	ul.products li.product .btn {
		margin: 0;
		color: #fff;
	}
	
	ul.products li.product .btn:hover { color: #1c1c1c; }
			
	
	.product { margin-bottom: 100px; }
	
	.product .images {
		overflow: hidden;
		float: left;
		width: 41.66666667%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		border: 1px solid #e0e0e0;
		margin-bottom: 40px;	
	}
	
	.product .summary {
		float: left;
		width: 58.33333333%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding-left: 30px;
		margin-bottom: 40px;
	}
	
	.product .summary h3 { margin-bottom: 20px; }
	
	.product .summary h3 small {
		display: block;
		font-family: "PT Sans Narrow", Arial, sans-serif; 
		font-size: 14px;
		letter-spacing: 5px;
		text-transform: uppercase;
	}
	
	.product .summary select {
		width: 50%;
		margin: 20px 0;
		text-transform: uppercase;
	}
	
	.product .summary .widget_tag_cloud { margin: 40px 0; }
	
	.product .summary h3.price {
		display: inline-block;
		margin-right: 30px;
		vertical-align: middle;
	}
	
	.product .summary .social-media { margin-top: 30px; }
	
	/*
	 * 1. Clearfix hack 
	 */
	
	.product:after { 	/* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	.woocommerce-tabs { margin-bottom: 100px; }
	
	.shop_table {
		font-family: "Prata", Arial, sans-serif;
		font-size: 16px;
	}
	
	.shop_table th,
	.shop_table td {
		padding: 40px 10px; 
		border-top: none;
		vertical-align: middle;
	}
	
	.shop_table thead th,
	.shop_table thead td { padding: 10px; }
	
	.shop_table th {
		color: #808080;
		font-weight: 400;
	}
	
	.shop_table tr { border-bottom: 1px solid #e0e0e0; }
	
	.shop_table tr:last-child { border-bottom: none; }
	
	.shop_table a { color: #1c1c1c; }
	
	.shop_table td.actions { text-align: right; }
	
	.coupon {
		float: left;
		width: 50%;
		text-align: left;
	}
	
	.coupon label { display: none; }
	
	.coupon input { display: inline-block; }
	
	.coupon input[type="submit"] {
		position: relative;
		top: 9px;
		margin-left: 20px;
	}
	
	.shop_table td.actions > input[type="submit"] { margin-top: 9px; }
	
	.shop_table tfoot { border-top: 1px solid #e0e0e0; }
	
	.cart-collaterals {}
	
	.cart_totals {
		float: right;
		width: 35%;
	}
	
	.cart_totals h3 { margin-bottom: 20px; }
	
	.cart_totals table {
		font-family: "Prata", Arial, sans-serif;
		font-size: 16px;
	}
	
	.cart_totals table th,
	.cart_totals table td {
		padding: 20px 10px;
		border-top: 1px solid #e0e0e0;
		font-weight: 400; 
	}
	
	.cart_totals table td { text-align: right; }
	
	.login { margin-bottom: 50px; }
	
	.login input[type="text"],
	.login input[type="password"] { 
		width: 100%;
		padding: 10px 20px;
		margin: 20px 0;
	}
	
	.login input[type="checkbox"] { display: inline-block; }
	
	.login input[type="submit"] {
		margin-right: 30px;
		vertical-align: inherit; 
	}
	
	.login label { display: inline-block; }
	
	.login .lost_password {
		margin-left: 30px;
		display: inline-block; 
	}
	
	.login .lost_password a { color: #1c1c1c; }
	
	#customer_details { margin-bottom: 50px; }
	
	.checkout input[type="text"],
	.checkout input[type="password"],
	.checkout select {
		width: 100%;
		margin: 20px 0;
	}
	
	.checkout input[type="checkbox"] { 
		display: inline-block;
		margin-bottom: 20px;
	}
	
	.checkout label { 
		display: inline-block; 
		padding-left: 5px; 
	}
	
	.payment_methods {
		list-style: none;
		margin: 40px 0;
	}
	
	.payment_methods li input[type="radio"] { display: inline-block; }
	
	.payment_methods li label { 
		display: inline-block; 
		padding-left: 5px; 
		font-size: 16px;
	}
	
	@media (max-width: 767px) {
		
		ul.products li.product,
		ul.products.four-cols li.product,
		ul.products.three-cols li.product { 
			float: none;
			width: 100%;
		}
		
		.product .images,
		.product .summary {
			float: none;
			width: 100%;
		}
		
		.product .summary { padding-left: 0; }
		
		.shop_table tr { border-bottom: none; }
		
		.shop_table th,
		.shop_table td { padding: 10px; }
		
		.shop_table td.actions { text-align: left; }
		
		.shop_table tfoot tr:first-child th { padding-top: 50px; }
		
		.coupon {
			float: none;
			width: 100%;
		}
		
		.coupon input[type="submit"] { margin-left: 0; }
		
		.cart_totals {
			float: none;
			width: 100%;
		}
		
		.cart_totals table tr { border-top: none; }
		
		.cart_totals table td { text-align: left; }
		
		.login label { display: block; }
		
		.login .lost_password { margin-left: 0; }
		
	}

/* ==========================================================================
   =Social Media
   ========================================================================== */
	
	a.social-icon {
		display: inline-block;
		width: 25px;
		height: 25px;
		border: 2px solid #1c1c1c;
		border-radius: 50%;
		margin-right: 25px;
		margin-bottom: 1px;
		color: #1c1c1c;
		text-align: center;
		letter-spacing: 0;
	}

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

	a.social-icon i {
		font-size: 14px;
		line-height: 25px;
	}
	
	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; }
	
	@media (max-width: 767px) {
		
		a.social-icon { margin-right: 10px; }
		
	}

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

	.table-bordered { 
		border: 1px solid #a0a0a0; 
		border-left: none; 
		border-collapse: separate; 		
	}
	
	.table-bordered th, 
	.table-bordered td { border-left: 1px solid #a0a0a0; }
	
	.table-bordered caption + thead tr:first-child th,
	.table-bordered caption + tbody tr:first-child th,
	.table-bordered caption + tbody tr:first-child td,
	.table-bordered colgroup + thead tr:first-child th,
	.table-bordered colgroup + tbody tr:first-child th,
	.table-bordered colgroup + tbody tr:first-child td,
	.table-bordered thead:first-child tr:first-child th,
	.table-bordered tbody:first-child tr:first-child th,
	.table-bordered tbody:first-child tr:first-child td { border-top: none; }

	.table-condensed th,
	.table-condensed td { padding: 4px 8px; }

	@media (max-width: 480px) {
	
		/**
		 * Force table to not be like tables anymore
		 */
		 
		table, 
		thead, 
		tbody,
		tfoot, 
		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 {} /* 1 */

	.wpb_content_element .wpb_tabs_nav { 
		border-bottom: 1px solid #e0e0e0 !important;
		margin-top: 10px !important; 
		margin-bottom: 0;
	}
	
	.tabs-container .tabs-menu li { display: inline; }
	
	.wpb_content_element .wpb_tabs_nav li a { 
		float: left; 
		display: block;
		padding: 10px 15px !important; 
		border: 1px solid transparent !important;	
		margin-bottom: -1px; 
		color: #1c1c1c;
		font-family: "Prata", Arial, sans-serif;
		text-decoration: none;
	}
	
	.tabs-container .tabs-menu li a:hover { text-decoration: none; }
	
	.wpb_content_element .wpb_tabs_nav li.ui-tabs-active a {
		border-color: #e0e0e0 !important;
		border-bottom-color: #fff !important; 
		background-color: #fff !important;
		color: #1c1c1c; 
	}
	
	.wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab {
		border: 1px solid #e0e0e0 !important; 
		border-top: none !important;   
		margin-bottom: 30px;
	}
	
        .wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab {
		padding: 25px 35px !important;
		background-color: #fff !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;
			border: 1px solid #e0e0e0;
			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 #e0e0e0; }
		
		.wpb_content_element .wpb_tabs_nav li.ui-tabs-active a {  
			padding: 20px 25px;
			border-bottom-color: #bbb;
			margin: 0;
			background-color: #fff;
			color: #1c1c1c; 
		}
	  
	}
	
/* ==========================================================================
   =Testimonials
   ========================================================================== */

	.testimonial { 
		margin-bottom: 30px;
		text-align: center;
	}
	
	.testimonial blockquote { 
		position: relative; 
		margin-bottom: 20px;  
	}
	
	.testimonial blockquote:before {
		display: block;
		margin-bottom: -25px;
		color: #808080;
		font-family: "Prata", Arial, sans-serif;
		font-size: 72px;
		line-height: 72px;
		content: "\201c";
	}
	
	.testimonial blockquote p { 
		margin-bottom: 0; 
		font-style: normal; 
	}

	.testimonial img { 
		float: left; 
		border-radius: 50%;  
		margin-right: 20px;
	}
	
	.testimonial h5 { margin-top: 40px; }
	
	.testimonial a {}
	
	.testimonial h5 span { color: #999; }
	
		
/* ==========================================================================
   =Portfolio Pagination
   ========================================================================== */
	
	.pagination { 
		list-style: none;
		text-align: center;
	}
	
	.pagination li { display: inline-block; }

	.pagination a { 
		display: block;
		width: 30px;
		height: 30px; 
		border: 2px solid #1c1c1c;
		border-radius: 50%;
		margin-right: 10px;
		margin-bottom: 2px;
		color: #1c1c1c;
		font-family: "Prata", Arial, sans-serif;
		line-height: 30px;
		letter-spacing: 0;
		text-align: center;
		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 { 
		background-color: #1c1c1c;
		color: #fff;
	}	

/* ==========================================================================
   =Portfolio Columns
   ========================================================================== */
	
	.portfolio-columns {
		margin: -15px -15px 15px -15px;
		list-style: none;
	}
	
	.portfolio-columns .item {
		float: left;
		width: 25%;
		-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: 1200px) {
			
		.portfolio-columns .item {}
		
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.portfolio-columns .item { 
			width: 33.3333333333%;
			padding: 7.5px;
		}
		
	}
	
	@media (max-width: 767px) {
		
		.portfolio-columns .item {
			float: none;
			width: 100%; 
		}
		
	}

	@media only screen and (min-width: 480px) and (max-width: 767px) {
		
		.portfolio-columns .item {
			float: left;
			width: 50%; 
		}
		
	}
   
/* ==========================================================================
   =Portfolio Grid
   ========================================================================== */

   .portfolio-grid {
		margin: -15px -15px 100px -15px;
		list-style: none;
	}
	
	.portfolio-grid .item {
		float: left;
		width: 25%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 15px;
	}
	
	.portfolio-grid .portfolio-item { margin-bottom: 0; } 
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.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: 1200px) {
		
		.portfolio-strip .item { width: 20%; }
		.portfolio-strip .item:last-child { display: block; } 
		
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.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 {}
	
	label.validation-error { color: #d50f25; }
	
	input.validation-error,
	textarea.validation-error,
	select.validation-error { border: 1px solid #a0a0a0; }
	
	#contact-form #formstatus {}
		
	#contact-form textarea {}	  
	         
/* ==========================================================================
   =Blog
   ========================================================================== */

	.blog-post { 
		margin-bottom: 100px;
		text-align: center;
	}
	
	.blog-post-title {
		width: 85%;
		margin: 0 auto 40px auto;
	}
	
	.blog-post-title h2 { margin: 20px 0; }
	
	.blog-post-title h2 a { color: #1c1c1c; }
	
	.blog-post-title h2:before,
	.blog-post-title h2:after {
		display: block;
		width: 25px;
		border-top: 2px solid #1c1c1c;
		margin: 5px auto;
		content: "";
	}
	
	.blog-post-title h6 { 
		text-transform: uppercase;
		color: #808080;
	}
	
	.blog-post-title h6 a { color: #808080; } 
	
	.blog-post-thumb { margin-bottom: 45px; }
	
	.blog-post-thumb img {
		max-width: 100%;
		height: auto;
		display: block;
	}
	
	.blog-post-thumb blockquote {
		padding: 100px 50px 80px 50px;
		background-color: #1c1c1c;
		color: #fff;
		text-align: center;
		text-transform: uppercase;
	}
	
	.blog-post-thumb blockquote:before {
		display: block;
		font-size: 140px;
		line-height: 80px;
		font-weight: 700;
		content: "\201c";
	}
	
	.blog-post-thumb blockquote h1 {
		margin-bottom: 40px;
		font-size: 60px;
		line-height: 72px;
		font-weight: 700;
	}
	
	.blog-post-thumb blockquote h3:before,
	.blog-post-thumb blockquote h3:after {
		margin: 0 5px;
		content: "-"; 
	}
	
	.blog-post-info {
		width: 85%;
		margin: 0 auto;
	}
	
	.blog-post-info .btn { margin: 20px 0 40px 0; }
	
	.blog-post-info blockquote {
		position: relative;
		padding-top: 50px;
		margin: 50px 0; 
	}
	
	.blog-post-info blockquote:before {
		position: absolute;
		top: 0;
		left: 50%;
		display: block;
		margin-left: -15px;
		color: #808080;
		font-size: 100px;
		line-height: 60px;
		content: "\201c";
	}		
	
	.blog-post-readmore {}
	
	
	.blog-post-2 {
		padding: 80px 0;
		text-align: center; 
	}
	
	.blog-post-2.with-image { 
		background: no-repeat center center;
		color: #fff;
	}		
	
	.blog-post-2 .blog-post-title { 
		width: 75%;
		margin: 0 auto;
	}
        
	.blog-post-2 .btn {
            margin-top: 40px;
            margin-bottom: 0;
        }
        
	.blog-post-2.with-image .btn {
		border-color: #fff;
		background-color: transparent;
	}
	
	.blog-post-2.with-image .blog-post-title h2 a,
	.blog-post-2.with-image .blog-post-title h6,
	.blog-post-2.with-image .blog-post-title h6 a { color: #fff; }
	
	.blog-post-2.with-image .blog-post-title h2:before,
	.blog-post-2.with-image .blog-post-title h2:after { border-color: #fff; }
	
	@media (max-width: 767px) {
		
		.blog-post-title { width: 100%; }
		
		.blog-post-info { width: 100%; }
		
		.blog-post-thumb blockquote { padding: 100px 15px 80px 15px;  }
		
		.blog-post-thumb blockquote h1 {
			font-size: 28px;
			line-height: 42px;
		}
		
		
		.blog-post-2 .blog-post-title { width: 100%; }
		
	}

/* ==========================================================================
   =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: 30px 0;
		margin-bottom: 30px;
		color: #fff;
		background-color: #333;
		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-repeat: repeat;
		background-position: 0 0;	
	}
	
	.fullwidth-section-video {
		position: absolute;
		overflow: hidden;
		z-index: 1;
		top: 0;
		width: 100%;
		height: 100%;
	}
	
	/**
 	 *
	 * 1. We add background-size cover so the parallax looks ok if you provide smaller images
	 *
	 */
	
	.parallax.parallax-enabled { 
		background-attachment: fixed !important;
		-webkit-background-size: cover;
				background-size: cover;	/* 1 */
	}
	

	.horizontal-parallax { background-repeat: repeat-x; }
	
	.animated-parallax { background-repeat: repeat-x; }
	
	
	.fullwidth-section a,
	.fullwidth-section .tabs-container .tabs-menu li a,
	.fullwidth-section .portfolio-filter ul li a  { color: #fff; }
	
	.fullwidth-section .btn.alt { 
		border-color: #fff;
		color: #fff;
	}
	
	.fullwidth-section .btn.alt:hover { border-color: #1c1c1c; }
	
	.fullwidth-section ul.check li:before,
	.fullwidth-section .headline h1:before,
	.fullwidth-section .headline h1:after,
	.fullwidth-section .pricing-table:hover,
	.fullwidth-section a.social-icon,
	.fullwidth-section .blog-post-title h2:before,
	.fullwidth-section .blog-post-title h2:after { border-color: #fff; }
	
	.fullwidth-section .horizontal-process-builder li i,
	.fullwidth-section .horizontal-process-builder li h1 { outline: 0; }
	
	.fullwidth-section .tabs-container .tab-content,
	.fullwidth-section .tabs-container .tabs-menu li.active a { color: #1c1c1c; }
	
	
	/* Backgrounds for fullwidth section */
	
	#bg-video {
		padding: 400px 0 250px 0;
		margin-top: 30px;
		margin: 0;
	}
	
	
	@media (max-width: 767px) {

		.fullwidth-section {
			-webkit-background-size: cover;
					background-size: cover;		
		}
		
	}
	
/* ==========================================================================
   =WordPress Default Classes
   ========================================================================== */
   
    .nfw-inline-style { display: none; }
	
	.wp-caption {}
	
	.wp-caption-text {}
	
	.sticky {
		padding: 10px;
		border: 1px solid #a0a0a0;
		background-color: #f3f3f3;
	}
	
	.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 #a0a0a0;
		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: 45px;
		line-height: 24px;
		text-transform: uppercase;  
	}
	
	#footer .widget:last-child { margin-bottom: 0; }
	
/* =Text Widget
   ========================================================================== */
	
	.widget_text {}
	
	.textwidget {}
	
	.copyright {
		width: 35%;
		padding: 60px 0;
		margin: 0 auto;
		background-color: #050912;
		color: #fff;
		text-align: center;
	}
	
	.copyright h1 { 
		font-family: "Sacramento", Arial, sans-serif;
		line-height: 27px;
	}
	
	.copyright h1 small { font-size: 24px; }
	
	.copyright i {
		margin-bottom: 20px;
		font-size: 14px; 
	}
	
	.copyright p { margin-bottom: 0; }
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.copyright { width: 50%; }
		
	}
	
	@media (max-width: 767px) {
		
		.copyright { width: 100%; }
		
	}
	
	
/* =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;
		margin-bottom: 0;
	}
	
	#searchsubmit {
		position: absolute;
		top: 0;
		right: 5px;
		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 a { color: #1c1c1c; }
	
	.widget_recent_entries ul li .post-date { color: #808080; }
	
/* =Pages Widget
   ========================================================================== */
	
	.widget_pages {}
	
	.widget_pages ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.widget_pages ul li {} 
	
	.widget_pages ul li a { 
		color: #808080;
		font-family: "Prata", Arial, sans-serif;
		font-size: 12px;
	}
	
	.widget_pages ul li a:before {
		position: relative;
		top: -3px;
		margin-right: 10px;
		font-family: 'FontAwesome';
		font-size: 6px;
		font-style: normal;
		content:  "";
	}
	
	.widget_pages ul li a:hover { 
		color: #1c1c1c;
		text-decoration: none;
	}
	
/* =Archive Widget
   ========================================================================== */
	
	.widget_archive {}
	
	.widget_archive ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.widget_archive ul li {} 
	
	.widget_archive ul li a { 
		color: #808080;
		font-family: "Prata", Arial, sans-serif;
		font-size: 12px;
	}
	
	.widget_archive ul li a:before {
		position: relative;
		top: -3px;
		margin-right: 10px;
		font-family: 'FontAwesome';
		font-size: 6px;
		font-style: normal;
		content:  "";
	}
	
	.widget_archive ul li a:hover { 
		color: #1c1c1c;
		text-decoration: none;
	}
	
	.widget_archive select {}
	
	.widget_archive option {}	
	
/* =Categories Widget
   ========================================================================== */
	
	.widget_categories {}
	
	.widget_categories ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.widget_categories ul li { margin-bottom: 10px; } 
	.widget_categories ul li:last-child { margin-bottom: 0; } 
	
	.widget_categories a {
		color: #808080;
		font-family: "Prata", Arial, sans-serif;
		font-size: 12px;
		text-transform: uppercase;
	}
	
	.widget_categories a:hover {
		color: #1c1c1c;
		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 ul li a { 
		color: #808080;
		font-family: "Prata", Arial, sans-serif;
		font-size: 12px;
	}
	
	.widget_meta ul li a:before {
		position: relative;
		top: -3px;
		margin-right: 10px;
		font-family: 'FontAwesome';
		font-size: 6px;
		font-style: normal;
		content:  "";
	}
	
	.widget_meta ul li a:hover { 
		color: #1c1c1c;
		text-decoration: none;
	}
	
/* =Recent Comments Widget
   ========================================================================== */
	
	.widget_recent_comments {}
	
	#recentcomments {
		margin-bottom: 0;
		list-style: none;
	}
	
	#recentcomments li {}
	
	#recentcomments li a { color: #808080; }
	
	.recentcomments {}
	
/* =Tag Cloud Widget
   ========================================================================== */
	
	.widget_tag_cloud {}
	
	.widget_tag_cloud a {
		position: relative;
		overflow: hidden;
		z-index: 2;
		display: inline-block;
		padding: 3px 15px;
		border: 2px solid #1c1c1c;
		border-radius: 20px;
		margin-bottom: 10px;
		background-color: #1c1c1c;
		color: #fff;
		font-size: 12px;
		line-height: 18px;
		vertical-align: middle;
		text-decoration: none;
		text-transform: uppercase;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 	
	}
	
	.widget_tag_cloud a:after {
		position: absolute;
		z-index: -1;
		top: 0;
		left: 51%;
		width: 0;
		height: 100%;
		background-color: #fff;
		color: #1c1c1c;
		opacity: 0;
		content: "";
		-webkit-transform: translateX(-51%);
			-ms-transform: translateX(-51%);
				transform: translateX(-51%);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.widget_tag_cloud a:hover:after {
		width: 100%; 
		opacity: 1; 
	}
	
	.widget_tag_cloud a:hover {
		background-color: transparent; 
		color: #1c1c1c;
	}
	
/* =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 ul li a { 
		color: #808080;
		font-family: "Prata", Arial, sans-serif;
		font-size: 12px;
	}
	
	.widget_nav_menu ul li a:before {
		position: relative;
		top: -3px;
		margin-right: 10px;
		font-family: 'FontAwesome';
		font-size: 6px;
		font-style: normal;
		content:  "";
	}
	
	.widget_nav_menu ul li a:hover { 
		color: #1c1c1c;
		text-decoration: none;
	}
	
/* =RSS Widget
   ========================================================================== */
	
	.widget_rss {}
	
	.widget_rss ul {
		margin-bottom: 0;
		list-style: none;
	}	
	
/* ==========================================================================
   =WordPress Custom Widgets
   ========================================================================== */
   
/* =nfw Twitter widget
   ========================================================================== */
	
	.nfw_widget_latest_tweets {}
	
	.nfw-tweet-list .tweet {
		font-size: 16px;
		text-align: center;
		word-wrap: break-word; 
	}
	
	.nfw-tweet-list ul { list-style: none; }
	
	.nfw-tweet-list .interact { 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 {
		float: left;
		display: block; 
		width: 71px; 
		height: auto;
		padding: 0 2px 2px 0; 
		border: none;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	
	.flickr-feed:after { 	/* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	@media (min-width: 1200px) {
		
		.flickr-feed img { width: 88px; }
		
	}
	
/* =nfw Instagram widget
   ========================================================================== */
   
   	.nfw_widget_instagram { position: relative; }
	
	.instagram-details {
		display: table-cell;
		width: 50%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding-right: 30px;
		text-align: center;
		vertical-align: middle;
	}
	
	#instafeed { margin: -15px; }
	
	.instagram-details + #instafeed {
		display: table-cell;
		width: 50%;
	}
	
	#instafeed a {
		float: left;
		display: block;
		width: 50%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 15px;
	}
	
	#instafeed a img {
		display: block; 
		width: 100%;
		height: auto;		
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	
	#instafeed:after { 	/* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
        
        @media (min-width: 1280px) {
            .instagram-details {padding-top:12%;}
        }
        @media (min-width: 980px ) and (max-width: 1279px) {
            .instagram-details {padding-top:6%;}
        }
	
	@media (max-width: 767px) {
		
		.instagram-details {
			display: block;
			width: 100%;
			padding-right: 0;
		}
		
		.instagram-details + #instafeed {
			display: block;
			width: 100%;
			margin: 0;
		}
		
	}
	
/* =nfw Facebook widget
   ========================================================================== */
	
	.nfw_widget_facebook {}

/* =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 {
		position: relative;
		margin-bottom: 10px; 
	}
	
	.nfw_widget_contact_info ul li:last-child { margin-bottom: 0; }
	
	.nfw_widget_contact_info ul li i {
		position: absolute;
		top: 7px;
		left: 0;
	}
	
/* =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 { background-color: #fff; }

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

	.nfw_widget_latest_posts {}
	
	.nfw_widget_latest_posts ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.nfw_widget_latest_posts ul li { margin-bottom: 30px; }
	.nfw_widget_latest_posts ul li:last-child { margin-bottom: 0; }
	
	.nfw_widget_latest_posts ul li img { 
		float: left;
		margin: 5px 10px 0 0;
	}
	
	.nfw_widget_latest_posts ul li .title {
		color: #1c1c1c;
		font-family: "Prata", Arial, sans-serif;
		text-transform: uppercase;
	}	

	/*
	 * 1. Clearfix hack 
	 */
	 
	.nfw_widget_latest_posts ul li:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
/* =nfw Navigation widget
   ========================================================================== */
	
	.nfw_widget_navigation {}
	
	.nfw_widget_navigation ul {
		margin-bottom: 0;
		list-style: none; 
	}
	
	.nfw_widget_navigation ul li { margin-bottom: 10px; } 
	.nfw_widget_navigation ul li:last-child { margin-bottom: 0; } 
	
	.nfw_widget_navigation a {
		color: #808080;
		font-family: "Prata", Arial, sans-serif;
		font-size: 12px;
		text-transform: uppercase;
	}
	
	.nfw_widget_navigation a:hover {
		color: #1c1c1c;
		text-decoration: none;
	}

/* =nfw Social media widget
   ========================================================================== */
	
	.nfw_widget_social_media {}
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.nfw_widget_social_media:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}	

/* ==========================================================================
   =WordPress Comments
   ========================================================================== */
   
	.comments-title { text-transform: uppercase; }
	
	.comment-reply-title {}
	
	.commentlist .reply {}
	
	.commentlist .reply a {}

	.commentlist .reply a {
		position: relative;
		overflow: hidden;
		z-index: 2;
		display: inline-block;
		padding: 5px 25px;
		border: 2px solid #1c1c1c;
		border-radius: 20px;
		background-color: #1c1c1c;
		color: #fff;
		font-size: 12px;
		line-height: 18px;
		vertical-align: middle;
		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;
		left: 51%;
		width: 0;
		height: 100%;
		background-color: #fff;
		color: #1c1c1c;
		opacity: 0;
		content: "";
		-webkit-transform: translateX(-51%);
			-ms-transform: translateX(-51%);
				transform: translateX(-51%);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.commentlist .reply a:hover:after {
		width: 100%; 
		opacity: 1; 
	}
	
	.commentlist .reply a:hover {
		background-color: transparent; 
		color: #1c1c1c;
	}
	
	.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 {
		position: absolute;
		top: 0;
		left: 0;
		border-radius: 50%;
	}
	
	.commentlist .vcard cite.fn a.url {
		color: #1c1c1c;
		font-family: "Prata", Arial, sans-serif;
		font-size: 16px;
		text-transform: uppercase;
	}
	
	.commentlist .comment-meta { margin-bottom: 25px; }
	
	.commentlist .comment-meta a {
		color: #1c1c1c;
		font-size: 12px;
		text-transform: uppercase;
	}
	
	.commentlist .commentmetadata {}
	
	.commentlist .commentmetadata a {}
	
	.commentlist .parent {}
	
	.commentlist .comment {}
	
	.commentlist .children {}
	
	.commentlist .pingback {}
        
        .pingback .comment-body { margin-bottom: 0; }
	
	.commentlist .bypostauthor {}
	
	.commentlist .comment-author {}
	
	.commentlist .comment-author-admin {}
	
	.commentlist {
		margin: 30px 0 90px 0;
		list-style: none; 
	}
	
	.commentlist li {}
	
	.commentlist li .comment-body {
		position: relative;
		padding: 15px 0 0 110px;
		margin-bottom: 75px; 
	}
	
	.commentlist li p {}
	
	.commentlist li ul.children {
		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 {}
        
        .comments-nav.navigation { margin-bottom: 70px; }
        
        .comments-nav.navigation .nav-previous,
        .comments-nav.navigation .nav-previous {
                margin-right: 20px;
                float: left;
        }
	
	@media (max-width: 767px) {
		
		.commentlist .vcard img.avatar { 
			position: relative;
			display: block;
			margin-bottom: 15px;
		}
		
		.commentlist li .comment-body { padding: 0; }
		
	}
	
/* ==========================================================================
   =WordPress Comment Form
   ========================================================================== */	
   
	.section-heading { text-transform: uppercase; }
	
	.nocomments {}
	
	.must-log-in {}
	
	.logged-in-as {}

	#commentform { margin: 40px 0; }
	
	.comment-notes {}
	
	.comment-form-author {}
	
	.comment-form-author label {}
	
	.comment-form-author input#author { padding: 10px; }
	
	.comment-form-email {}
	
	.comment-form-email label {}
	
	.comment-form-email input#email { padding: 10px; } 
	
	.comment-form-url {}
	
	.comment-form-url label {}
	
	.comment-form-url input#url { padding: 10px; }
	
	#commentform .required {}
	
	.comment-form-comment {}
	
	.comment-form-comment label {}
	
	.comment-form-comment textarea#comment { padding: 10px; }
	
	.form-allowed-tags {}
	
	.form-allowed-tags code {}
	
	.form-submit {}
	
	#commentform #submit {}
	