/**
 * 	Name: components.css
 *
 *  Styling for the components that create the page content: accordion, tabs, pie charts etc.
 *
 *  T.O.C
 *
 *	=Accordions and Toggles
 *	=Alerts
 *	=Animations
 *  =Boxes
 *	=Buttons
 *  =Callout
 *	=Contact form
 *  =Countdown
 *	=Dividers
 *  =Dropcaps
 *	=Galleries
 *	=Google Maps
 *	=Headlines
 *	=Icon Boxes
 *  =Image Box
 *	=Milestones
 *  =Modal window
 *	=Our Process
 *	=Pie charts
 *	=Pricing Tables
 *	=Progress Bar
 *	=Revolution Slider
 *	=Social Media
 *	=Tabs
 *	=Testimonials
 *	=Team Member
 *	=Portfolio Item
 *	=Portfolio Filter
 *	=Portfolio Pagination
 *	=Portfolio Grid
 *	=Portfolio Strip
 *	=Bx Slider 
 *  =Woocommerce
 *  =Fullwidth Section
 *
 */
 
/* ==========================================================================
   =Accordions and Toggles
   ========================================================================== */

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

	.accordion-item {
		position: relative;
		display: block;
		padding: 12px 20px;
		margin-bottom: 25px;
		background-color: #63c92a;
		color: #fff;
		font-size: 12px;
		font-weight: 400;
		letter-spacing: 3px;
		text-transform: uppercase;
		-webkit-transition: background-color 0.3s;
				transition: background-color 0.3s;
	}
	
	a.accordion-item { color: #fff; }
	
	.accordion-item:after {
		position: absolute;
		top: 12px;
		right: 15px;
		font-size: 18px;
		content: "+";
	}
	
	.accordion-item.active:after { content: "-"; }
	
	.accordion-item:hover,
	.accordion-item.active {
		background-color: #3d0b4e; 
		text-decoration: none; 
	}
	
	.accordion-item-content { 
		display: none; 
		padding: 5px 20px 30px 20px; 
	}
	
	.accordion-item-content > *:last-child { margin-bottom: 0; }
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.accordion-item-content:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
/* =Toggle
   ========================================================================== */
	
	.toggle { margin-bottom: 30px; }
	
	.toggle-item {
		position: relative;
		display: block;
		padding: 12px 20px;
		margin-bottom: 25px;
		background-color: #63c92a;
		color: #fff;
		font-size: 12px;
		font-weight: 400;
		letter-spacing: 3px;
		text-transform: uppercase;
		-webkit-transition: background-color 0.3s;
				transition: background-color 0.3s;
	}
	
	a.toggle-item { color: #fff; }
	
	.toggle-item:after {
		position: absolute;
		top: 12px;
		right: 15px;
		font-size: 18px;
		content: "+";
	}
	
	.toggle-item.active:after { content: "-"; }
	
	.toggle-item:hover,
	.toggle-item.active {
		background-color: #3d0b4e; 
		text-decoration: none; 
	}
	
	.toggle-item-content { 
		display: none; 
		padding: 5px 20px 30px 20px; 
	}
	
	.toggle-item-content > *:last-child { margin-bottom: 0; }
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.toggle-item-content:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}

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

	.alert {
		padding: 15px 15px 15px 30px;
		margin-bottom: 30px;
		background-color: #f4f4f4;
		color: #000;
	}
	
	.alert i {
		position: relative;
		top: 2px;
		margin-right: 10px;
		font-size: 20px;
	}
	
	.alert.info {
		background-color: #3a3a3a;
		color: #fff;
	}
	
	.alert.success { 
		background-color: #63c92a;
		color: #fff;
	}
	
	.alert.error { 
		background-color: #ff3225;
		color: #fff;
	}
	
	.alert.warning { 
		background-color: #3d0b4e;
		color: #fff;
	}
	
/* ==========================================================================
   =Animations
   ========================================================================== */
   
   .animate {
		-webkit-animation-duration: 1s;
				animation-duration: 1s;
		-webkit-animation-fill-mode: both;
				animation-fill-mode: both;
		visibility: hidden;
	}

	.animate.visible { visibility: visible; }
	.animate.hidden { visibility: hidden; }

/* ==========================================================================
   =Boxes
   ========================================================================== */

	.box { 
		padding: 30px; 
		margin-bottom: 30px;
	}
	
	.box  > *:last-child { margin-bottom: 0; } 

	.box.box-style-1 {
		border-radius: 2px;
		border: 1px solid #e0e0e0;
	}

	.box.box-style-2 { 
		background-color: #f3f3f3;
		color: #353535;
	}
   
	/*
	 * 1. Clearfix hack 
	 */
	 
	.box:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
/* ==========================================================================
   =Buttons
   ========================================================================== */

/* =Default Button
   ========================================================================== */
   
	.btn {
		position: relative;
		z-index: 2;
		display: inline-block; 
		padding: 10px 13px 10px 15px; 
		margin: 0 5px 20px 0;
		background-color: #63c92a;
		color: #fff;
		font-family: 'Montserrat', Arial, sans-serif;
		font-size: 10px;
		line-height: 18px;
		letter-spacing: 2px;
		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: #3d0b4e;
		content: "";
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	a.btn { color: #fff; }
	
	.btn:focus { outline: 0; }
	
	.btn:hover:after { height: 100%; }

	.btn-large {
		padding: 12px 24px;
		font-size: 13px;
	}
	
	.btn i,
	.btn-large i { 
		float: left; 
		margin: 2px 8px 0 -4px;
		font-size: 14px; 
		line-height: 14px; 
	}

/* ==========================================================================
   =Callouts
   ========================================================================== */

	.callout {
		padding: 30px 0;
		margin-bottom: 30px;
	}	

	.callout-content > *:last-child,
	.callout-action > *:last-child {
		margin-bottom: 0; 
	}
	
	.callout-content { padding-top: 10px; }
	
	.callout-action { text-align: right; }

	/*
	 * 1. Clearfix hack 
	 */
	 
	.callout:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
   
/* ==========================================================================
   =Contact form
   ========================================================================== */
  
	#contact-form { 
		overflow: hidden; 
		margin-bottom: 30px; 
	}
	
	#contact-form fieldset {}
	
	label.validation-error { color: #d50f25; }
	
	input.validation-error,
	textarea.validation-error,
	select.validation-error { border: 1px solid #e0e0e0; }
	
	#contact-form #formstatus {}
		
	#contact-form textarea {}	
	
	/*
	 * 1. Clearfix hack 
	 */
	#contact-form:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}

/* ==========================================================================
   =Countdown
   ========================================================================== */
	
	#countdown { margin-top: 60px; }
	
	.countdown-amount {
		display: block;
		font-size: 36px;
		line-height: 48px;
		font-weight: 700;
	}
	
	.countdown-period {
		display: block;
		margin-bottom: 40px;
		font-size: 14px;
		font-weight: 700;
		text-transform: uppercase;
	}
	
/* ==========================================================================
   =Dividers
   ========================================================================== */

	.divider { margin: 30px 0; }
	
	.divider.single-line { border-top: 1px solid #e0e0e0; }
	
	.divider.double-line { border-top: 4px double #e0e0e0; }

/* ==========================================================================
   =Dropcaps
   ========================================================================== */
   
	.dropcap {
		float: left;
		display: block;
		margin: 5px 10px 0 0;
		font-size: 34px;
		line-height: 34px;
	}
	
	.dropcap.dropcap-square {
		width: 42px;
		height: 42px;
		border-radius: 2px;
		background-color: #63c92a;		
		color: #ffffff;
		font-size: 20px;		
		line-height: 42px;
		letter-spacing: 0;
		text-align: center;
		
	}
	
	.dropcap.dropcap-circle {
		width: 42px;
		height: 42px;
		border-radius: 50%;
		background-color: #63c92a;		
		color: #ffffff;
		font-size: 20px;		
		line-height: 42px;
		letter-spacing: 0;
		text-align: center;
	}
   
/* ==========================================================================
   =Galleries
   ========================================================================== */
	
	
	
/* ==========================================================================
   =Google Maps
   ========================================================================== */

	.google-map {
		width: 100%; 
		height: 400px;
	}
	
	/**
	 * 1. needed so that Google Maps controls are not distorted
	 */
	
	.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 {
		margin-bottom: 70px;
		text-align: center;
	}
	
	.headline:after {
		display: block;
		width: 25px;
		border-bottom: 4px solid #63c92a;
		margin: 10px auto 0 auto;
		content: "";
	}
	
	.headline h1 {
		margin-bottom: 5px;
		color: #3d0b4e;
		font-family: 'Pacifico', Arial, sans-serif;
		letter-spacing: 0;
		text-transform: none;
	}
	
	.headline-2 { margin-bottom: 20px; }
	
	.headline-2:after {
		display: block;
		width: 20px;
		border-bottom: 2px solid #63c92a;
		content: "";
	}
	
	.headline-2 h3 {
		margin-bottom: 5px;
		color: #3d0b4e;
		letter-spacing: 2px;
	}
	
/* ==========================================================================
   =Icon Boxes
   ========================================================================== */
   
/* =Icon Box 1
   ========================================================================== */
   
	.icon-box-1 { 
		position: relative;
		margin-bottom: 30px;
		text-align: center; 
	}
		
	.icon-box-1 > span { 
		display: inline-block;
		padding: 10px;
		border-radius: 50%;
		margin-bottom: 35px;
		background-color: #63c92a;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.icon-box-1 > span i { 
		display: block;
		width: 60px;
		height: 60px;
		border: 1px solid #fff;
		border-radius: 50%;
		background-color: #63c92a;
		color: #fff; 
		font-size: 25px;
		line-height: 60px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.icon-box-1 h5 { margin-bottom: 20px; }
	
	.icon-box-1 .icon-box-content {}	
	
	.icon-box-1:hover > span, 
	.icon-box-1:hover > span i { 
		background-color: #3d0b4e;
		-webkit-transform: scale(1.1);
			-ms-transform: scale(1.1);
				transform: scale(1.1);
	}
	
/* =Icon Box 2
   ========================================================================== */
	
	.icon-box-2 { 
		position: relative; 
		margin-bottom: 50px; 
	}
		
	.icon-box-2 > i { 
		float: left;
		display: inline-block;
		width: 72px;
		height: 72px;
		border-radius: 50%;
		background-color: #63c92a;
		color: #fff;
		font-size: 32px; 
		line-height: 72px;
		text-align: center;
		-webkit-transition: background-color 0.3s;
				transition: background-color 0.3s;
	}
	
	.icon-box-2 h6 {
		padding-top: 15px;
		margin-bottom: 25px;
		font-family: "Open Sans", Arial, sans-serif;
		font-weight: 600;
		letter-spacing: 3px;
	}
	
	.icon-box-2 h6 a {
		color: #3a3a3a;
	}
	
	.icon-box-2 h6 a:hover {
		color: #63c92a;
	}
	
	.icon-box-2 .icon-box-content { margin-left: 100px; }
	
	.icon-box-2:hover > i { background-color: #3d0b4e; }
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.icon-box-2 > i { float: none; }
		
		.icon-box-2 .icon-box-content { margin-left: 0; }
		
	}
	
/* =Icon Box 3
   ========================================================================== */
	
	.icon-box-3 { 
		position: relative; 
		margin-bottom: 50px;
		text-align: right; 
	}
		
	.icon-box-3 > i { 
		float: right;
		display: inline-block;
		width: 72px;
		height: 72px;
		border-radius: 50%;
		background-color: #63c92a;
		color: #fff;
		font-size: 32px; 
		line-height: 72px;
		text-align: center;
		-webkit-transition: background-color 0.3s;
				transition: background-color 0.3s;
	}
	
	.icon-box-3 h6 {
		padding-top: 15px;
		margin-bottom: 25px;
		font-family: "Open Sans", Arial, sans-serif;
		font-weight: 600;
		letter-spacing: 3px;
	}
	
	.icon-box-3 h6 a {
		color: #3a3a3a;
	}
	
	.icon-box-3 h6 a:hover {
		color: #63c92a;
	}
	
	.icon-box-3 .icon-box-content { margin-right: 100px; }
	
	.icon-box-3:hover > i { background-color: #3d0b4e; }
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.icon-box-3 > i { float: none; }
		
		.icon-box-3 .icon-box-content { margin-right: 0; }
		
	}
	
/* =Icon Box 4
   ========================================================================== */
   
	.icon-box-4 { 
		position: relative; 
		margin-bottom: 20px; 
	}
		
	.icon-box-4 > i {
		position: absolute;
		top: 50%;
		left: 0;
		display: block; 
		font-size: 32px; 
		line-height: 32px; 
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
	}
	
	.icon-box-4 .icon-box-content { margin-left: 70px; }
	
	.icon-box-4 .icon-box-content > :last-child { margin-bottom: 0; }
	
/* =Icon Box 5
   ========================================================================== */
	
	.icon-box-5 { 
		position: relative; 
		margin-bottom: 30px; 
	}
		
	.icon-box-5 > span {
		float: left; 
		display: inline-block;
		padding: 10px;
		border-radius: 50%;
		margin: 15px 0 35px 0;
		background-color: #63c92a;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.icon-box-5 > span i { 
		display: block;
		width: 60px;
		height: 60px;
		border: 1px solid #fff;
		border-radius: 50%;
		background-color: #63c92a;
		color: #fff; 
		font-size: 25px;
		line-height: 60px;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.icon-box-5 h5 { margin-bottom: 20px; }
	
	.icon-box-5 .icon-box-content { margin-left: 100px; }
	
	.icon-box-5:hover > span, 
	.icon-box-5:hover > span i { background-color: #3d0b4e; }
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.icon-box-5 > span { float: none; }
		
		.icon-box-5 .icon-box-content { margin-left: 0; }
		
	}

/* ==========================================================================
   =Image Box
   ========================================================================== */

	.image-box {
		overflow: hidden;
		padding: 30px;
		margin-bottom: 30px;	
		border: 1px solid #e0e0e0;
		box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.03);
	}
	
	.image-box-img { margin: -30px -30px 30px; }
	
	.image-box-img  img {
		display: block;
		width: 100%;
	}
	
	.image-box > *:last-child { margin-bottom: 0; }
   
/* ==========================================================================
   =Milestones
   ========================================================================== */

	.milestone {
		position: relative;
		margin-bottom: 30px;
		text-align: center;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	.milestone:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	.milestone i {
		z-index: 2;
		margin-right: 10px;
		font-size: 32px;
	}
	
	.milestone .milestone-content {
		z-index: 1;
		font-family: 'Montserrat', Arial, sans-serif;
		font-size: 60px;
		line-height: 100px;
	}
	
	.milestone .milestone-description { 
		font-family: 'Open Sans', Arial, sans-serif;
		font-size: 14px; 
		line-height: 21px;
		text-transform: uppercase;
	}

/* ==========================================================================
   =Modal window
   ========================================================================== */	
   
	.white-popup {
		position: relative;
		width: auto;
		max-width: 500px;
		padding: 20px;
		margin: 20px auto;
		background: #fff;
	}
	
/* ==========================================================================
   =Our Process
   ========================================================================== */

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

	.horizontal-process-builder { 
		position: relative;
		margin-bottom: 40px;
		list-style: none;
		text-align: center; 
	}
	
	.horizontal-process-builder li { 
		float: left;
		width: 25%;  
	}
	
	.horizontal-process-builder li h1 {
		display: inline-block;
		font-family: 'Open Sans', Arial, sans-serif;
		font-size: 48px;
		font-weight: 300;
	}
	
	.horizontal-process-builder li i {
		display: inline-block;
		width: 100px;
		height: 100px;
		background-color: #63c92a;
		color: #fff;
		font-size: 32px;
		line-height: 100px;
		text-align: center;
		vertical-align: text-bottom;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	.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%; }
	
	.horizontal-process-builder li:hover i { background-color: #3d0b4e; }
	
	/*
	 * 1. Clearfix hack 
	 */
	.horizontal-process-builder:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.horizontal-process-builder li h1 { font-size: 32px; }
		
		.horizontal-process-builder li i {
			width: 75px;
			height: 75px;
			font-size: 24px;
			line-height: 75px;
		}
		
	}
	
	@media (max-width: 767px) {
		
		.horizontal-process-builder li { margin-bottom: 40px; }
		
		.horizontal-process-builder:before { content: none; }
		
		.horizontal-process-builder.three-items li,
		.horizontal-process-builder.four-items li,
		.horizontal-process-builder.five-items li { width: 33.3333333333%; }
		
		.horizontal-process-builder li h1 {
			display: block;
			font-size: 32px; 
		}
		
		.horizontal-process-builder li i {
			width: 75px;
			height: 75px;
			font-size: 24px;
			line-height: 75px;
		}
		
	}

/* ==========================================================================
   =Pie charts
   ========================================================================== */

	.pie-chart {
		position: relative;	
		margin: 0 auto 30px;
		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%;
		color: #3d0b4e;
		font-family: "Montserrat", Arial, sans-serif;
		text-align: center;
	}
	
	.pie-chart img {
		max-width: 100%;
		vertical-align: middle;
	}
	
	.pie-chart .pie-chart-custom-text {
		position: absolute;
		top: 45px;
		left: 0;
		right: 0;
		font-size: 14px; 
	}
	
	.pie-chart .pie-chart-percent { font-size: 48px; }
	
	.pie-chart .pie-chart-percent > span { margin-right: -10px; }
	
	.pie-chart-description {
		display: block;
		font-size: 12px;
		text-align: center;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.pie-chart .pie-chart-percent { font-size: 32px; }
		
		.pie-chart .pie-chart-custom-text { top: 30px; }
		
	}
	
/* ==========================================================================
   =Pricing Tables
   ========================================================================== */

	.pricing-table {
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		margin-bottom: 30px;
		padding: 60px 20px;
		background-color: #f3f3f3;
		color: #3a3a3a;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

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

	.pricing-table-header h1 {
		padding: 20px 0;
		margin: 0 -20px 0 -20px;
		background-color: #63c92a;
		color: #fff;
		font-family: "Open Sans", Arial, sans-serif;
		font-weight: 700;
	}
	
	.pricing-table-header h1 small {
		font-size: 18px;
		letter-spacing: 3px;
		vertical-align: middle;
	}

	.pricing-table-header h3 {
		margin-bottom: 45px;
		letter-spacing: 2px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
		
	.pricing-table-offer { margin-bottom: 50px; }
	
	.pricing-table-offer ul { list-style: none; }
	
	.pricing-table-offer ul li {
		margin-bottom: 20px;
		font-weight: 400;
		letter-spacing: 3px;
		text-transform: uppercase; 
	}
	
	.pricing-table-offer ul li:last-child { margin-bottom: 0; }
	
	.pricing-table-offer ul li:after {
		display: block;
		width: 20px;
		border-top: 1px solid #3d0b4e;
		margin: 20px auto 0;
		content: "";
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.pricing-table-offer ul li:last-child:after { content: none; }
	
	.pricing-table .btn { margin-bottom: 0; }

	.pricing-table:hover {
		background-color: #3d0b4e;
		color: #fff;
	}
	
	.pricing-table:hover .pricing-table-header h3 {
		color: #fff; 
		font-size: 24px;
	}
	
	.pricing-table:hover .pricing-table-offer ul li:after { border-color: #fff; }

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

	.progress-bar-description {
		display: inline-block;
		margin-bottom: 25px;
		color: #3d0b4e;
		font-family: 'Montserrat', Arial, sans-serif;
		font-weight: 700;
		letter-spacing: 1px;
		text-transform: uppercase;		
	}
	
	.progress-percentage {
		position: absolute;
		top: -50px;
		right: 0;
		color: #3d0b4e;
		font-family: 'Montserrat', Arial, sans-serif;
		font-weight: 700;
		letter-spacing: 1px;
	}
	
	.progress-bar {
		position: relative;
		display: block;
		height: 4px;
		margin-bottom: 30px;
		background-color: #e0e0e0;
	}
	
	.progress-bar .progress-bar-outer {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		background-color: #63c92a;
	}
	
	.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%;
	}

/* ==========================================================================
   =Revolution Slider
   ========================================================================== */
   
/* =Rev Slider Basics
   ========================================================================== */   
   
	.fullwidthbanner-container {
		position: relative;
		overflow: hidden;
		width: 100% !important;
		padding: 0;
		margin: 0; 
	}

	.fullwidthbanner-container ul { list-style: none; }

	.fullwidthbanner-container .fullwidthbanner {
		position: relative;
		width: 100% !important;
	}
	
	/**
 	 * 1. We apply the max-height using an extra class to make the transition to WP more easy
	 *    If we apply the max-heigh directly to .fullwidthbanner-container, in WP, it would overwrite the height setting you make in the plugin
 	 */
	
	.slider-revolution.fullwidthbanner-container {
		max-height: 830px !important; /* 1 */
		margin-bottom: 200px; 
	}

	.slider-revolution.fullwidthbanner-container .fullwidthbanner {
		max-height: 830px !important; /* 1 */
	}

/* =Rev Slider Pager
   ========================================================================== */

   /**
 	 * 1. changing the z-index from 1000 so that the bullets don't go over the sticky menu
 	 */
   
	.tp-bullets { 
		z-index: 100; /* 1 */
	}
	   
	.tp-bullets.simplebullets.round .bullet {
		width: 7px;
		height: 7px;
		border: 2px solid #63c92a;
		border-radius: 50%;
		margin: 0 3px;
		background: #fff;
	}

	.tp-bullets.simplebullets.round .bullet.selected { background: #63c92a; }

/* =Rev Slider navigation
   ========================================================================== */

	.tp-leftarrow.default,
	.tp-rightarrow.default {
		width: 48px;
		height: 48px;
		border-radius: 50%;
		opacity: 0.5;
	}

	.tp-leftarrow.default:hover,
	.tp-rightarrow.default:hover { opacity: 1; }

	.tp-leftarrow.default { background: #63c92a url(../images/left.png) no-repeat center center; }
	.tp-rightarrow.default { background: #63c92a url(../images/right.png) no-repeat center center; }
	
/* =Rev Slider typography
   ========================================================================== */
   
   	.caption.title {
		color: #fff;
		font-family: 'Pacifico', Arial, sans-serif;
		font-size: 182px;
		letter-spacing: 0;
		text-shadow: 6px 3px 20px rgba(0, 0, 0, 0.5);
	}
	
	.caption.title-2 {
		max-width: 100% !important;
		padding: 40px 20px;
		background-color: #63c92a;
		color: #fff;
		font-size: 72px;
		font-weight: 600;
		letter-spacing: 5px;
		text-transform: uppercase;
 		-webkit-transform: rotate(-15deg) !important;
			-ms-transform: rotate(-15deg) !important;
				transform: rotate(-15deg) !important;
	}
	
	.caption.title-3 {
		color: #fff;
		font-size: 72px;
		font-weight: 600;
		letter-spacing: 5px;
		text-transform: uppercase;
	}
	
	.caption.subtitle {
		color: #63c92a;
		font-family: 'Pacifico', Arial, sans-serif;
		font-size: 26px;
		letter-spacing: 0;
	}
	
	.caption.subtitle-2 {
		color: #3d0b4e;
		font-size: 40px;
		font-weight: 700;
		letter-spacing: 5px;
		text-transform: uppercase;
	}
	
	.caption .btn:hover { color: #fff; }

	@media (min-width: 768px) and (max-width: 991px) {
		
		.tp-leftarrow.default,
		.tp-rightarrow.default { display: none; }
		
	}

	@media (max-width: 767px) {
		
		.tp-leftarrow.default,
		.tp-rightarrow.default { display: none; }
		
		.tp-bullets { bottom: -60px !important; }
		
		.caption .btn {
			padding: 3px 10px;
			font-size: 6px;
		}
		
	}
	
/* ==========================================================================
   =Social Media
   ========================================================================== */

	a.social-icon {
		display: inline-block;
		width: 20px;
		height: 20px;
		border: 1px solid #3a3a3a;
		border-radius: 50%;
		margin: 5px 10px;
		color: #3a3a3a;
		line-height: 18px;
		letter-spacing: 0;
		text-align: center;
	}

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

	a.social-icon i {
		font-size: 12px;
		line-height: 20px;
		letter-spacing: 0;
	}
	
	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; }

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

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

	.tabs-container .tabs-menu { 
		border-bottom: 1px solid #63c92a;
		margin-top: 10px; 
		margin-bottom: 0;
		list-style: none; 
	}
	
	.tabs-container.alt .tabs-menu { border-bottom-color: #3d0b4e; }
	
	.tabs-container .tabs-menu li { display: inline; }
	
	.tabs-container .tabs-menu li a { 
		float: left; 
		display: block;
		padding: 12px 25px;
		border: 1px solid;
		border-color: #f3f3f3 #fff;
		background-color: #f3f3f3;
		color: #3a3a3a;
		font-size: 13px;
		font-weight: 600;
		letter-spacing: 3px;
		text-decoration: none;
		text-transform: uppercase;
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}
	
	.tabs-container.alt .tabs-menu li a {
		background-color: #63c92a;
		color: #fff;
	}
	
	.tabs-container .tabs-menu li a:hover { text-decoration: none; }
	
	.tabs-container .tabs-menu li a:hover,
	.tabs-container .tabs-menu li.active a {
		border-top-width: 2px;
		border-color: #63c92a;
		border-bottom-color: #fff;
		margin-bottom: -1px;
		background-color: #fff;
	}
	
	.tabs-container.alt .tabs-menu li a:hover,
	.tabs-container.alt .tabs-menu li.active a {
		border-color: #3d0b4e;
		border-top-color: #63c92a;
		background-color: #3d0b4e;
	}
		
	.tabs-container .tabs {
		border: 1px solid #63c92a; 
		border-top: none;   
		margin-bottom: 30px;
		background-color: #fff;
		color: #3a3a3a;
	}
	
	.tabs-container.alt .tabs {
		border-color: #3d0b4e; 
		background-color: #3d0b4e;
		color: #fff;
	}
	
	.tabs-container .tab-content { padding: 40px; }
	
	.tabs-container .tab-content :last-child { margin-bottom: 0; }
	
	/*
	 * 1. Clearfix hack 
	 */
	.tabs-container .tabs-menu:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.tabs-container .tabs-menu li a { 
			padding: 8px 15px;
			font-size: 12px;
			letter-spacing: 1px;
		}
		
	}
	
	@media (max-width: 767px) {
	
		.tabs-container .tabs-menu { border-bottom: none; }
		
		.tabs-container .tabs-menu li { display: block; }
	
		.tabs-container .tabs-menu li a { 
			float: none; 
			display: block;
			padding: 20px 25px;
			border: 1px solid #63c92a;
			border-top: none;
			margin: 0;
		}
		
		.tabs-container .tabs-menu li a:hover { text-decoration: none; }
		
		.tabs-container .tabs-menu li:first-child a { border-top: 1px solid #63c92a; }
		
		.tabs-container .tabs-menu li a:hover,
		.tabs-container .tabs-menu li.active a {  
			padding: 20px 25px;
			margin: 0;
			background-color: #63c92a;
			color: #fff; 
		}		
	  
	}
	
/* ==========================================================================
   =Testimonials
   ========================================================================== */

	.testimonial { 
		margin-bottom: 30px;
		text-align: center;
	}
	
	.testimonial:before {
		display: inline-block;
		margin-bottom: 30px;
		color: #63c92a;
		font-family: 'Montserrat', Arial, sans-serif;
		font-size: 56px;
		content: "\201c";
	}
	
	.testimonial blockquote {
		margin-bottom: 60px;
		font-size: 18px;
		line-height: 38px;
	}
	
	.testimonial img {
		display: inline-block;
		margin-bottom: 55px;
		border-radius: 50%;
	}
	
	.testimonial h3 {
		font-weight: 400;
		letter-spacing: 3px;
	}
	
	.testimonial h5 {
		color: #63c92a;
		font-weight: 400;
		letter-spacing: 2px;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	.testimonial:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
/* ==========================================================================
   =Team Member
   ========================================================================== */

	.team-member { margin-bottom: 30px; }
	
	.team-member-preview {
		position: relative;
		margin-bottom: 40px;
	}
	
	.team-member-preview img {
		display: block;
		width: 100%;
	}
	
	.team-member h4 { letter-spacing: 3px; }
	
	.team-member .social-media {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		padding: 50px 0;
		background-color: #63c92a;
		opacity: 0;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.team-member .social-media a.social-icon {
		float: none;
		display: inline-block;
		border-color: #fff;
		color: #fff;
	}
	
	.team-member:hover .social-media { opacity: 1; }
	
	@media (min-width: 768px) and (max-width: 991px) {
			
		.team-member .social-media { padding: 20px 0; }
		
		.team-member .social-media a.social-icon { margin: 0 5px; }
			
	}
	
/* ==========================================================================
   =Portfolio Item
   ========================================================================== */
	
	.portfolio-item { 
		position: relative; 
		margin-bottom: 30px;
	}
	
	.portfolio-item-preview{ 
		position: relative; 
		overflow: hidden;
	}
		
	.portfolio-item-preview > img {
		display: block;
		width: 100%;
		-webkit-transition: all 0.5s; 
				transition: all 0.5s;
	}
		
	.portfolio-item-overlay {}
			
	.portfolio-item-overlay-actions {
		position: absolute;
		top: 0;
		width: 100%;
		text-align: center;
		opacity: 0;
		-webkit-transition: all 0.3s; 
				transition: all 0.3s;
	}
	
	.portfolio-item-overlay-actions a {
		display: inline-block;
		width: 32px;
		height: 32px;
		border: 2px solid #fff;
		border-radius: 50%;
		background-color: #63c92a;
		color: #fff;
		font-size: 24px;
		line-height: 32px;
		font-weight: 600;
		text-align: center;
		text-decoration: none;
		-webkit-transition: all 0.3s; 
				transition: all 0.3s;
	}
	
	.portfolio-item-overlay-actions a:hover { background-color: #3d0b4e; }
	
	.portfolio-item-description {
		padding: 40px 20px;
		text-align: center;
		-webkit-transition: transform 0.5s; 
				transition: transform 0.5s;
	}
	
	.portfolio-item-description h3 { 
		margin-bottom: 0;
		letter-spacing: 3px;
	}
	
	.portfolio-item-description a { 
		color: #353535;
		-webkit-transition: all 0.3s; 
				transition: all 0.3s;
	}
	
	.portfolio-item-description a:hover { color: #63c92a; }
	
	.portfolio-item-overlay + .portfolio-item-description { 
		position: absolute;
		right: 0;
		bottom: 0; 
		left: 0;
		opacity: 0;
		background-color: #fff;
		-webkit-transform: rotateX(90deg);
			-ms-transform: rotateX(90deg);
				transform: rotateX(90deg);
		-webkit-transform-origin: bottom center;
			-ms-transform-origin: bottom center;
			 	transform-origin: bottom center;
	}
	
	.portfolio-item:hover .portfolio-item-preview > img { 
		-webkit-transform: translateY(-40px);
			-ms-transform: translateY(-40px);
				transform: translateY(-40px); 
	}
	
	.portfolio-item:hover .portfolio-item-overlay + .portfolio-item-description {
		opacity: 1;
		-webkit-transform: rotateX(0);
			-ms-transform: rotateX(0);
				transform: rotateX(0);	
	}
	
	.portfolio-item:hover .portfolio-item-description {
		-webkit-transform: translateY(-40px);
			-ms-transform: translateY(-40px);
				transform: translateY(-40px); 
	}
	
	.portfolio-item:hover .portfolio-item-overlay-actions {
		top: 30%;
		opacity: 1;
	}
	
/* ==========================================================================
   =Portfolio Filter
   ========================================================================== */
	
	.portfolio-filter ul {
		margin-bottom: 20px;
		list-style: none;
		text-align: center;
	}
	
	.portfolio-filter ul li { 
		display: inline-block;
		margin-right: 20px;
	}
	
	.portfolio-filter ul li:last-child { margin-right: 0; }
	
	.portfolio-filter ul li a { 
		color: #3a3a3a;
		font-size: 13px;
		font-weight: 600;
		letter-spacing: 3px;
		text-decoration: none;
		text-transform: uppercase;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.portfolio-filter ul li a:hover,
	.portfolio-filter ul li a.active { color: #63c92a; }	
	
	@media (max-width: 767px) {
		
		.portfolio-filter ul li { 
			display: block;
			margin: 5px 0;
		}
		
	}

/* ==========================================================================
   =Portfolio Pagination
   ========================================================================== */
	
	.portfolio-pagination { 
		margin-bottom: 50px;
		text-align: center;
	}

	/*
	 * 1. Clearfix hack 
	 */
	.portfolio-pagination:after { /* 1 */
		visibility: hidden;
		display: table;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}	
	
	.portfolio-pagination .nav-links {}

	.portfolio-pagination .page-numbers {
		display: inline-block;
		width: 26px;
		height: 26px;
		border: 1px solid #fff;
		outline: 4px solid #63c92a;
		margin-right: 20px;
		background-color: #63c92a;
		color: #fff;
		font-size: 12px;
		line-height: 26px;
		text-align: center;
		text-decoration: none;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.portfolio-pagination .page-numbers:last-child { margin-right: 0; }

	.portfolio-pagination .page-numbers:hover,
	.portfolio-pagination .page-numbers.current {
		outline-color: #3d0b4e;
		background-color: #3d0b4e;
	}

	.portfolio-pagination .current {}
	
	.portfolio-pagination .page-numbers.dots { 
		border: none;
		background-color: transparent;
		color: #3a3a3a;
		outline: none;
	}

	.portfolio-pagination .prev,
	.portfolio-pagination .next {}

	.portfolio-pagination .prev:before,
	.portfolio-pagination .next:before { font-family: "FontAwesome"; }

	.portfolio-pagination .prev:hover,
	.portfolio-pagination .prev:focus,
	.portfolio-pagination .next:hover,
	.portfolio-pagination .next:focus {}

	.portfolio-pagination .prev {}

	.portfolio-pagination .prev:before { content: "\f104"; }

	.portfolio-pagination .next {}

	.portfolio-pagination .next:before { content: "\f105"; }
   
/* ==========================================================================
   =Portfolio Grid
   ========================================================================== */

   .portfolio-grid {
		margin: 70px 0 100px 0;
		list-style: none;
	}
	
	.portfolio-grid.gutter { margin: 55px -15px 60px -15px; }
	
	.portfolio-grid .item {
		float: left;
		width: 33.333333%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
	}
	
	.portfolio-grid.gutter .item { padding: 15px; }
	
	.portfolio-grid .portfolio-item { margin-bottom: 0; }
	
	.portfolio-grid.three-cols .item,
	.portfolio-grid.four-cols .item { width: 33.333333%; }  
	
	/*
	 * 1. Clearfix hack 
	 */
	.portfolio-grid:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (min-width: 1200px) {
		
		.portfolio-grid.four-cols .item { width: 25%; } 
		
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.portfolio-grid .item { width: 50%; } 
		
		.portfolio-grid.three-cols .item,
		.portfolio-grid.four-cols .item { width: 50%; } 
		
	}
	
	@media (max-width: 767px) {
		
		.portfolio-grid .item {
			float: none;
			width: 100%; 
		}
		
		.portfolio-grid.three-cols .item,
		.portfolio-grid.four-cols .item,
		.portfolio-grid.five-cols .item { width: 100%; }
		
	}
   
/* ==========================================================================
   =Portfolio Strip
   ========================================================================== */
   
   .portfolio-strip {
		margin: 80px 0 100px 0;
		list-style: none;
	}
	
	.portfolio-strip .item {
		float: left;
		width: 33.333333%;
	}
	
	.portfolio-strip .item:last-child { display: none; }
	
	.portfolio-strip .portfolio-item { margin-bottom: 0; } 
	
	/*
	 * 1. Clearfix hack 
	 */
	.portfolio-strip:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (min-width: 1200px) {
		
		.portfolio-strip .item { width: 25%; }
		
		.portfolio-strip .item:last-child { display: block; } 
		
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.portfolio-strip .item { width: 50%; }
		.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; } 
		
	}
	
/* ==========================================================================
   =Bx Slider
   ========================================================================== */
   
/* =Bx Slider reset
   ========================================================================== */
   
	.bx-wrapper { margin: 0 auto 40px; }
   
	.bx-pager,
	.bx-controls-auto,
	.bx-controls-direction  { z-index: 100; }
   
/* =Bx Slider theme
   ========================================================================== */   
   
   .bx-wrapper {		
		border: none;
		-webkit-box-shadow: none;
		   -moz-box-shadow: none;
				box-shadow: none;		
		background: none;
	}

/* =Bx Slider Pager
   ========================================================================== */ 
	
	.bx-wrapper .bx-pager.bx-default-pager a {
		width: 7px;
		height: 7px;
		border: 2px solid #63c92a;
		border-radius: 50%;
		margin: 0 3px;
		background: #fff;
	}
	
	.bx-wrapper .bx-pager.bx-default-pager a:hover,
	.bx-wrapper .bx-pager.bx-default-pager a.active,
	.bx-wrapper .bx-pager.bx-default-pager a:focus {
		background: #63c92a;
	}
	
	.bx-wrapper .bx-pager,
	.bx-wrapper .bx-controls-auto { bottom: -30px; }
	
/* =Bx Slider Dir Nav
   ========================================================================== */ 
   
	.bx-wrapper .bx-prev {
		left: -80px;
		background: url(../images/left-2.png) no-repeat center center;
	}

	.bx-wrapper .bx-next {
		right: -80px;
		background: url(../images/right-2.png) no-repeat center center;
	}
	
	.bx-wrapper .bx-prev:hover, 
	.bx-wrapper .bx-next:hover, 
	.bx-wrapper .bx-prev:focus, 
	.bx-wrapper .bx-next:focus { background-position: center center; }
	
	/*
	 * 1. We are changing the original z-index from 9999 to 1000 so that it doesn't overlap other elements that need to be above this one
	 */
	.bx-wrapper .bx-controls-direction a {
		width: 48px;
		height: 48px;
		z-index: 1000; /* 1 */
		border: 2px solid #353535;
		border-radius: 50%;
		margin-top: -48px;
		opacity: 0.5;
	}	
	
	.bx-wrapper .bx-controls-direction a:hover { opacity: 1; } 
	
	.testimonial-slider .bx-viewport { padding-top: 10px; }
	
	.testimonial-slider .bx-wrapper .bx-pager.bx-default-pager a { display: none; }
	
	.images-slider-controls {
		margin-bottom: 30px;
		font-size: 26px;
		text-align: center;
	}
	
	.images-slider-controls span:hover { opacity: 0.7; }
	
	.text-slider .headline-2 h3 { letter-spacing: 2px; }
	
	.text-slider-controls {
		margin: 50px 0 20px 0;
		font-size: 18px;
		text-align: center;
	}
	
	.text-slider-controls span {
		display: inline-block;
		width: 36px;
		height: 36px;
		border: 2px solid #353535;
		border-radius: 50%;
		line-height: 34px;
	}
	
	.text-slider-controls span:hover { opacity: 0.7; }
	
	.features-slider h1 {
		color: #3d0b4e;
		font-family: 'Pacifico', Arial, sans-serif;
		letter-spacing: 0;
		text-transform: none;
	}
	
	.features-slider-controls {
		margin-top: 50px;
		list-style: none;
	}
	
	.features-slider-controls li {
		float: left;
		width: 20%;
		text-align: center;
	}
	
	.features-slider-controls li a i {
		position: relative;
		display: inline-block;
		width: 95px;
		height: 95px;
		background-color: #63c92a;
		color: #fff;
		font-size: 32px;
		line-height: 95px;
	}
	
	.features-slider-controls li a i:after {
		position: absolute;
		top: -8px;
		left: 50%;
		width: 0; 
		height: 0; 
		border-left: 5px solid transparent; 
		border-right: 5px solid transparent; 
		border-bottom: 8px solid #63c92a;
		content: "";
		opacity: 0;
		-webkit-transform: translateX(-50%);
			-ms-transform: translateX(-50%);
				transform: translateX(-50%);
	}
	
	.features-slider-controls li a.active i:after,
	.features-slider-controls li a:hover i:after { opacity: 1; }
	
	.horizontal-process-builder li a { text-decoration: none; }
	.horizontal-process-builder li a.active i { background-color: #3d0b4e; }
	
	.process-builder-slider {
		width: 75%;
		margin: 80px auto 0 auto;
		text-align: center;
	}
	
	.portfolio-slider { margin-bottom: 100px; }
	
	.portfolio-slider .bx-wrapper .bx-controls-direction a { display: none; }
	
	.products-slider { margin-bottom: 100px; }
	
	.products-slider .bx-wrapper .bx-controls-direction a { display: none; }
	
	@media (min-width: 1400px) {
		
		.bx-wrapper .bx-prev { left: -130px; }
		.bx-wrapper .bx-next { right: -130px; }
		
		.portfolio-slider .bx-wrapper .bx-controls-direction a { display: block; }
		
		.portfolio-slider .bx-wrapper .bx-pager.bx-default-pager a { display: none; }
		
		.products-slider { margin-bottom: 50px; }
		
		.products-slider .bx-wrapper .bx-controls-direction a { display: block; }
		
		.products-slider .bx-wrapper .bx-pager.bx-default-pager a { display: none; }
		
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.testimonial-slider .bx-wrapper .bx-pager.bx-default-pager a { display: block; }
		 
		.testimonial-slider .bx-wrapper .bx-controls-direction a { display: none; }
		
	}
	
	@media (max-width: 767px) {
		
		.testimonial-slider .bx-wrapper .bx-pager.bx-default-pager a { display: block; }
		 
		.testimonial-slider .bx-wrapper .bx-controls-direction a { display: none; }
		
		.features-slider-controls li { 
			width: 33.3333%;
			margin: 10px 0;
		}
		
		.process-builder-slider { width: 100%; }
		
	}
	
/* ==========================================================================
   =Woocommerce
   ========================================================================== */
   	
	ul.products {
		margin: -15px -15px 70px -15px;
		list-style: none;
	}
	
	ul.products li.product {
		float: left;
		width: 33.3333333333%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 15px;
	}
	
	ul.products.four-cols li.product { width: 33.3333333333333%; }
	ul.products.three-cols li.product { width: 33.3333333333333%; }
	
	ul.products li .product-wrap {
		position: relative;
		padding: 20px 15px;
		border: 1px solid #e0e0e0;
		-webkit-transition: border-color 0.3s;
				transition: border-color 0.3s;
	}
	
	ul.products li.product a { text-decoration: none; }
	
	ul.products li.product img {
		display: block;
		margin: 0 auto 25px auto;
	}
	
	ul.products li.product h5 {
		margin-bottom: 20px;
		padding-right: 50px;
		color: #3d0b4e;
		text-transform: none;
	}
	
	ul.products li.product .price {
		position: absolute;
		right: 20px;
		bottom: 70px;
		color: #3d0b4e;
		letter-spacing: 0;
	}
	
	ul.products li.product .add_to_cart_button,
	ul.products li.product .add_to_wishlist {
		display: inline-block;
		color: #3a3a3a;
		letter-spacing: 0;
	}
	
	ul.products li.product .add_to_cart_button:hover,
	ul.products li.product .add_to_wishlist:hover { color: #63c92a; }
	
	ul.products li.product .add_to_wishlist {
		padding-right: 10px;
		border-right: 1px solid #e0e0e0;
		margin-right: 5px;
	}
	
	ul.products li.product .add_to_wishlist:before {
		margin-right: 5px;
		color: #63c92a;
		font-family: "FontAwesome";
		content: "\f004";

	}
	
	ul.products li.product .add_to_cart_button:before {
		margin-right: 5px;
		color: #63c92a;
		font-family: "FontAwesome";
		content: "\f07a";
	}
	
	ul.products li.product:hover .product-wrap { border-color: #63c92a; }
	
	/*
	 * 1. Clearfix hack 
	 */
	ul.products:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	
	.product-pagination { 
		margin-bottom: 100px;
		text-align: center;
	}

	/*
	 * 1. Clearfix hack 
	 */
	.product-pagination:after { /* 1 */
		visibility: hidden;
		display: table;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}	
	
	.product-pagination .nav-links {}

	.product-pagination .page-numbers {
		display: inline-block;
		width: 26px;
		height: 26px;
		border: 1px solid #fff;
		outline: 4px solid #63c92a;
		margin-right: 20px;
		background-color: #63c92a;
		color: #fff;
		font-size: 12px;
		line-height: 26px;
		text-align: center;
		text-decoration: none;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.product-pagination .page-numbers:last-child { margin-right: 0; }

	.product-pagination .page-numbers:hover,
	.product-pagination .page-numbers.current {
		outline-color: #3d0b4e;
		background-color: #3d0b4e;
	}

	.product-pagination .current {}
	
	.product-pagination .page-numbers.dots { 
		border: none;
		background-color: transparent;
		color: #3a3a3a;
		outline: none;
	}

	.product-pagination .prev,
	.product-pagination .next {}

	.product-pagination .prev:before,
	.product-pagination .next:before { font-family: "FontAwesome"; }

	.product-pagination .prev:hover,
	.product-pagination .prev:focus,
	.product-pagination .next:hover,
	.product-pagination .next:focus {}

	.product-pagination .prev {}

	.product-pagination .prev:before { content: "\f104"; }

	.product-pagination .next {}

	.product-pagination .next:before { content: "\f105"; }
	
	@media (min-width: 1200px) {
		
		ul.products.four-cols li.product { width: 25%; }	
		
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		ul.products li.product .add_to_wishlist {
			padding-right: 0;
			border-right: none;
			margin-right: 0;
		}
		
		ul.products li.product h5 { 
			padding-right: 0;
			margin-bottom: 10px;
		}
		
		ul.products li.product .price {
			position: relative;
			right: auto;
			bottom: auto;
		}
		
	}
	
	@media (max-width: 767px) {
		
		ul.products li.product {
			float: none;
			width: 100%;
		}
		
		ul.products.three-cols li.product,
		ul.products.four-cols li.product { width: 100%; }	
		
	}
	
/* ==========================================================================
   =Fullwidth Section
   ========================================================================== */
   
   	.fullwidth-section.custom-color-selected {
		background-color: #333;
		color: #fff;
	}
	
	.fullwidth-section.custom-color-selected a,
	.fullwidth-section.custom-color-selected h1,
	.fullwidth-section.custom-color-selected h2,
	.fullwidth-section.custom-color-selected h3,
	.fullwidth-section.custom-color-selected h4,
	.fullwidth-section.custom-color-selected h5,
	.fullwidth-section.custom-color-selected h6, 
	.fullwidth-section.custom-color-selected .pie-chart i, 
	.fullwidth-section.custom-color-selected .pie-chart .pie-chart-custom-text, 
	.fullwidth-section.custom-color-selected .pie-chart .pie-chart-percent, 
	.fullwidth-section.custom-color-selected .progress-bar-description, 
	.fullwidth-section.custom-color-selected .progress-percentage, 
	.fullwidth-section.custom-color-selected .portfolio-pagination .page-numbers.dots, 
	.fullwidth-section.custom-color-selected .ewf_widget_latest_posts ul li .title, 
	.fullwidth-section.custom-color-selected .features-slider h1 { color: inherit; }
	
	.fullwidth-section.custom-color-selected ul.check li:before, 
	.fullwidth-section.custom-color-selected .headline-2:after, 
	.fullwidth-section.custom-color-selected a.social-icon, 
	.fullwidth-section.custom-color-selected .text-slider-controls span { border-color: inherit; }
	
	.fullwidth-section.custom-color-selected .pricing-table-header h1, 
	.fullwidth-section.custom-color-selected .pricing-table .btn { color: #fff; }
	
	.fullwidth-section.custom-color-selected .portfolio-item-description a { color: #353535; }
	.fullwidth-section.custom-color-selected .portfolio-item-description a:hover { color: #63c92a; }
	
	.fullwidth-section.custom-color-selected .bx-wrapper .bx-prev { background: url(../images/left.png) no-repeat center center; }
	.fullwidth-section.custom-color-selected .bx-wrapper .bx-next { background: url(../images/right.png) no-repeat center center; }
	
	.fullwidth-section.custom-color-selected .bx-wrapper .bx-controls-direction a { border-color: #fff; }
	
	
	#bg-1 {
		padding: 250px 0 230px 0;
		margin-top: 70px;
		background: url(../../content/backgrounds/1920x1080-1.jpg) no-repeat center center;
	}
	
	#bg-1:before {
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 50%;
		border-top: 1px solid #63c92a;
		content: "";
	}
	
	#bg-1:after {
		position: absolute;
		bottom: 0;
		right: 0;
		display: block;
		width: 50%;
		border-top: 1px solid #63c92a;
		content: "";
	}
	
	#bg-2 {
		padding: 170px 0 100px 0;
		margin-top: 100px;
		background-color: #fff;
	}
	
	#bg-2:before {
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 50%;
		border-top: 1px solid #63c92a;
		content: "";
	}
	
	#bg-2:after {
		position: absolute;
		bottom: 0;
		right: 0;
		display: block;
		width: 50%;
		border-top: 1px solid #63c92a;
		content: "";
	}
	
	#bg-3 {
		padding: 170px 0 100px 0;
		margin-top: 50px;
		background-image: url(../../content/backgrounds/1920x1080-2.jpg);
	}
	
	#bg-4 {
		padding: 170px 0 100px 0;
		margin-top: 80px;
		background-image: url(../../content/backgrounds/1920x1080-3.jpg);
	}
	
	#bg-5 {
		padding: 120px 0 90px 0;
		margin-top: 100px;
		background-image: url(../../content/backgrounds/1920x1400.jpg);
	}
	
	#bg-6 {
		padding: 100px 0 60px 0;
		margin: 50px 0 -100px 0;
	}
	
	#bg-7 {
		padding: 170px 0 100px 0;
		margin-top: 80px;
		background-image: url(../../content/backgrounds/1920x1080-4.jpg);
	}
	
	#bg-8 {
		padding: 100px 0 60px 0;
		margin: 80px 0 -100px 0;
		background-color: #63c92a;
	}
	
	#bg-9 {
		padding: 180px 0;
		margin-top: 70px;
		background-image: url(../../content/backgrounds/1920x1080-5.jpg);
	}
	
	#bg-10 {
		padding: 120px 0 100px 0;
		margin: 80px 0 -100px 0;
	}
	
	#bg-11 {
		padding: 250px 0 140px 0;
		margin-top: 100px;
		background-image: url(../../content/backgrounds/1920x1080-6.jpg);
	}
	
	#bg-12 {
		padding: 120px 0 280px 0;
		margin: 80px 0 -100px 0;
		background-image: url(../../content/backgrounds/1920x1080-7.jpg);
	}
	
	#bg-13 {
		padding: 230px 0 200px 0;
		margin-top: 80px;
		background-image: url(../../content/backgrounds/1920x1080-8.jpg);
	}
	
	#bg-14 {
		z-index: 1;
		overflow: visible;
		padding-top: 70px;
		padding-bottom: 0;
		margin-top: 80px;
	}
	
	#bg-14 h1 {
		font-family: 'Pacifico', Arial, sans-serif;
		letter-spacing: 0;
		text-transform: none;
	}
	
	#bg-15 {
		margin-top: -120px;
		margin-bottom: 0;
		background-color: #63c92a;
	}
	
	#bg-16 {
		padding: 240px 0 220px 0;
		margin-bottom: -100px;
		background-image: url(../../content/backgrounds/1920x1080-9.jpg);
	}
	
	#bg-17 {
		padding-top: 60px;
		padding-bottom: 0;
		margin-top: 50px;
		margin-bottom: 0;
		background-color: #1fc0f0;
	}
	
	#bg-18 {
		overflow: visible;
		padding-top: 0;
		padding-bottom: 70px;
		margin: 30px 0 -100px;;
		background-image: url(../../content/backgrounds/1920x1080-10.jpg);
	}
	
	#bg-18 img { margin-top: -30px; }
	
	#bg-19 {
		padding: 250px 0 80px 0;
		margin-bottom: -100px;
		background: url(../../content/backgrounds/1920x530.jpg) no-repeat bottom center;
	}
	
	@media (min-width: 1200px) {

		#bg-14 img { margin-bottom: -108px; }
	
	}