/**
 * 	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
 *  =Info box 
 *	=Milestones
 *  =Modal window
 *	=Our Process
 *	=Pie charts
 *	=Pricing Tables
 *	=Progress Bar
 *	=Revolution Slider
 *	=Social Media
 *	=Tabs
 *	=Testimonials
 *	=Team Member
 *  =Timeline
 *	=Portfolio Item
 *	=Portfolio Filter
 *	=Portfolio Pagination
 *	=Portfolio Grid
 *	=Portfolio Strip
 *	=Bx Slider 
 *
 */
 
/* ==========================================================================
   =Accordions and Toggles
   ========================================================================== */

/* =Accordion
   ========================================================================== */
	
	.accordion { margin-bottom: 30px; }

	.accordion-item {
		position: relative;
		display: block;
		padding: 15px 25px;
		margin-bottom: 15px;
		background-color: #f4f4f4;
		color: #000;
		font-family: "Raleway", Arial, sans-serif;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	a.accordion-item { color: #000; }
	
	.accordion-item:after {
		position: absolute;
		top: 15px;
		right: 15px;
		font-size: 18px;
		content: "+";
	}
	
	.accordion-item.active:after { content: "-"; }
	
	.accordion-item:hover,
	.accordion-item.active {
		background-color: #00c5e9;
		color: #fff;
		text-decoration: none;
	}
	
	.accordion-item-content { 
		display: none; 
		padding: 15px 0 30px 0; 
	}
	
	.accordion-item-content > *:last-child { margin-bottom: 0; }
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.accordion-item-content:after { /* 1 */
		visibility: hidden;
		display: table;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
/* =Toggle
   ========================================================================== */
	
	.toggle { margin-bottom: 30px; }

	.toggle-item {
		position: relative;
		display: block;
		padding: 15px 25px;
		margin-bottom: 15px;
		background-color: #f4f4f4;
		color: #000;
		font-family: "Raleway", Arial, sans-serif;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	a.toggle-item { color: #000; }
	
	.toggle-item:after {
		position: absolute;
		top: 15px;
		right: 15px;
		font-size: 18px;
		content: "+";
	}
	
	.toggle-item.active:after { content: "-"; }
	
	.toggle-item:hover,
	.toggle-item.active {
		background-color: #00c5e9;
		color: #fff;
		text-decoration: none;
	}
	
	.toggle-item-content { 
		display: none; 
		padding: 15px 0 30px 0; 
	}
	
	.toggle-item-content > *:last-child { margin-bottom: 0; }
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.toggle-item-content:after { /* 1 */
		visibility: hidden;
		display: table;
		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: #000;
		color: #fff;
	}
	
	.alert.success { 
		background-color: #00c5e9;
		color: #fff;
	}
	
	.alert.error { 
		background-color: #ff3225;
		color: #fff;
	}
	
	.alert.warning { 
		background-color: #5c5f96;
		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 #d7d7d7;
	}

	.box.box-style-2 { 
		background-color: #f4f4f4;
		color: #7c7c7c;
	}
   
	/*
	 * 1. Clearfix hack 
	 */
	 
	.box:after { /* 1 */
		visibility: hidden;
		display: table;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
/* ==========================================================================
   =Buttons
   ========================================================================== */

/* =Default Button
   ========================================================================== */
   
	.btn { 
		display: inline-block; 
		padding: 15px 35px; 
		border-radius: 20px;
		margin: 0 5px 20px 0;
		background-color: #00c5e9;
		color: #fff;
		font-family: "Raleway", Arial, sans-serif;
		font-size: 15px;
		line-height: 18px; 
		text-decoration: none !important;
		vertical-align: middle;
		cursor: pointer;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 	
	}
	
	a.btn { color: #fff; }
	
	.btn:focus { outline: 0; }
	
	.btn-large {
		padding: 20px 40px;
		font-size: 18px;
	}
	
	.btn i,
	.btn-large i { 
		float: left; 
		margin: 2px 8px 0 -4px;
		font-size: 14px;
		line-height: 14px; 
	}
	
	.btn:hover {
		border-radius: 0;
		background: #5c5f96;
	}

/* =Colored Buttons
   ========================================================================== */
	
	.btn-alt {
		background-color: #5c5f96;
		color: #fff;
	}
	
	a.btn-alt { color: #fff; }
	.btn-alt:hover { background: #00c5e9; }
	
	.btn-black {
		background-color: #5d6167;
		color: #fff;
	}
	
	a.btn-black { color: #fff; }
	.btn-black:hover { background: #00c5e9; }

/* ==========================================================================
   =Callouts
   ========================================================================== */

	.callout {
		padding: 30px 0;
		margin-bottom: 30px;
	}	

	.callout-content {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	
	.callout-action { text-align: right; }
	
	.callout-content > *:last-child,
	.callout-action > *:last-child {
		margin-bottom: 0; 
	}

	/*
	 * 1. Clearfix hack 
	 */
	 
	.callout:after { /* 1 */
		visibility: hidden;
		display: table;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	@media (max-width: 767px) {
		
		.callout-action { text-align: left; }
		
	}
   
/* ==========================================================================
   =Contact form
   ========================================================================== */
  
	#contact-form { 
		overflow: hidden; 
		margin-bottom: 100px; 
	}
	
	#contact-form p { margin-bottom: 30px; }
	
	#contact-form fieldset {}
	
	label.validation-error { color: #ff433e; }
	
	input.validation-error,
	textarea.validation-error,
	select.validation-error { border: 1px solid #d7d7d7; }
	
	#contact-form #formstatus {}
		
	#contact-form textarea {}	
	
	/*
	 * 1. Clearfix hack 
	 */
	#contact-form:after { /* 1 */
		visibility: hidden;
		display: table;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}

/* ==========================================================================
   =Countdown
   ========================================================================== */
	
	#countdown { 
		margin: 100px 0;
		font-family: 'Raleway', Arial, sans-serif;
	}
	
	.is-countdown {
		border: none;
		background-color: transparent; 
	}
	
	.countdown-amount {
		font-size: 60px;
		line-height: 100px;
	}
	
	.countdown-period { 
		font-size: 14px;
		text-transform: uppercase;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	#countdown:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (max-width: 767px) {
		
		.countdown-amount {
			font-size: 32px;
			line-height: 48px;
		}
		
		.countdown-period { font-size: 12px; }
		
	}

/* ==========================================================================
   =Dividers
   ========================================================================== */

	.divider { margin: 50px 0 80px 0; }
	
	.divider.single-line { border-top: 1px solid #d7d7d7; }
	
	.divider.double-line { border-top: 4px double #d7d7d7; }
	
	.divider.thick-line { border-top: 5px solid #d7d7d7; }

/* ==========================================================================
   =Dropcaps
   ========================================================================== */
   
	.dropcap {
		float: left;
		display: block;
		margin: 5px 10px 0 0;
		font-size: 38px;
		line-height: 38px;
	}
	
	.dropcap.dropcap-square {
		width: 38px;
		height: 38px;
		border-radius: 2px;
		background-color: #00c5e9;		
		color: #ffffff;
		font-size: 20px;		
		line-height: 38px;
		text-align: center;
		
	}
	
	.dropcap.dropcap-circle {
		width: 38px;
		height: 38px;
		border-radius: 50%;
		background-color: #00c5e9;		
		color: #ffffff;
		font-size: 20px;		
		line-height: 38px;
		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; }
	
	.gmap_marker { 
		padding: 20px 20px 10px 20px;
		color: #000;
		font-family: "Raleway", Arial, sans-serif;
	}
	
	.gmap_marker img {
		float: left;
		display: block;
		padding-right: 20px;
		border-right: 2px solid #00c5e9;
		margin-right: 20px;
	}
	
	.gmap_marker p { 
		float: left;
		padding-left: 30px;
		margin-top: 15px;
	}
	
	.gmap_marker i {
		margin-left: -30px;
		margin-right: 10px;
		color: #00c5e9;
		font-size: 20px;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	.gmap_marker:after { /* 1 */
		visibility: hidden;
		display: table;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (max-width: 767px) {

		.map { padding: 0 20px; }
		.row .map { padding: 0; }
		
		.gmap_marker { padding: 0; }
		
		.gmap_marker img { 
			display: none;
		}
		
		.gmap_marker p {
			float: none;
		}
		
	}

/* ==========================================================================
   =Headlines
   ========================================================================== */

	.headline {
		margin-bottom: 100px;
		text-align: center;
	}
	
	.headline h2 { color: #00c5e9; }
	.headline h4 { color: #7c7c7c; }
	
/* ==========================================================================
   =Icon Boxes
   ========================================================================== */

/* =Icon Box 1
   ========================================================================== */
   
	.icon-box-1 { 
		position: relative; 
		margin-bottom: 50px; 
	}
		
	.icon-box-1 > i { 
		float: left;
		display: block;
		color: #00c5e9;
		font-size: 32px; 
		line-height: 32px; 
		-webkit-transition: color 0.3s;
				transition: color 0.3s;
	} 
	
	.icon-box-1 h4 {
		margin-bottom: 20px;
		font-weight: 700;
	}
	
	.icon-box-1 h4 a { 
		color: #000;
		-webkit-transition: color 0.3s;
				transition: color 0.3s;
	}
	
	.icon-box-1 h4 a:hover {
		color: #00c5e9;
		text-decoration: none;
	}
	
	.icon-box-1:hover > i { color: #5c5f96; }
	
	.icon-box-1 .icon-box-content { margin-left: 65px; }

/* =Icon Box 2
   ========================================================================== */
   
	.icon-box-2 { 
		position: relative; 
		margin-bottom: 75px;
		text-align: center;
	}
		
	.icon-box-2 > i { 
		display: block;
		margin-bottom: 50px; 
		color: #00c5e9; 
		font-size: 32px;
		-webkit-transition: color 0.3s;
				transition: color 0.3s;
	}
	
	.icon-box-2 h4 {
		margin-bottom: 20px;
		font-weight: 700;
	}
	
	.icon-box-2 h4 a { 
		color: #000;
		-webkit-transition: color 0.3s;
				transition: color 0.3s;
	}
	
	.icon-box-2 h4 a:hover {
		color: #00c5e9;
		text-decoration: none;
	}
	
	.icon-box-2:hover > i { color: #5c5f96; }
	
	.icon-box-2 .icon-box-content {}	

/* =Icon Box 3
   ========================================================================== */
   
	.icon-box-3 { 
		position: relative; 
		margin-bottom: 50px; 
	}	
	
	.icon-box-3 > i { 
		float: left;
		margin-right: 40px;	
		color: #00c5e9; 	 
		font-size: 32px;
		-webkit-transition: color 0.3s;
				transition: color 0.3s;
	} 
	
	.icon-box-3 h4 {
		margin-bottom: 20px;
		font-weight: 700;
	}
	
	.icon-box-3 h4 a { 
		color: #000;
		-webkit-transition: color 0.3s;
				transition: color 0.3s;
	}
	
	.icon-box-3 h4 a:hover {
		color: #00c5e9;
		text-decoration: none;
	}
	
	.icon-box-3:hover > i { color: #5c5f96; }
	
	.icon-box-3 .icon-box-content {}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.icon-box-3 > i {
			float: none;
			display: block;
			margin-bottom: 15px;
		}
		
	}

/* ==========================================================================
   =Image Box
   ========================================================================== */

	.image-box {
		overflow: hidden;
		padding: 30px;
		margin-bottom: 50px;	
		border: 1px solid #d7d7d7;
		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; }

/* ==========================================================================
   =Info box
   ========================================================================== */
   	
	.info-box {
		position: relative;
		overflow: hidden;
		padding: 200px 0;
		margin-top: 50px;
		box-shadow: inset 0 30px 30px 0 rgba(0, 0, 0, 0.1);
	}
	
	.info-box-img {
		position: absolute;
		z-index: 0;
		top: 0;
		width: 50%;
		height: 100%;
		box-shadow: inset 0 30px 30px 0 rgba(0, 0, 0, 0.1);
		background: no-repeat center left;
	}
	
	.info-box-bg-left .info-box-img { left: -30px; }
	.info-box-bg-right .info-box-img { right: -30px; }
	
	.info-box-img img { display: none; }
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.info-box { padding: 100px 0 80px 0; }
		
	}
	
	@media (max-width: 767px) {
		
		.info-box { padding: 100px 0 80px 0; }
		
		.info-box-img {
			position: relative;
			width: 100%;
			background: none !important;		 
		}
		
		.info-box-bg-left .info-box-img { left: 0; }
		.info-box-bg-right .info-box-img { right: 0; }
		
		.info-box-img img { 
			display: block;
			width: 100%;
			margin-bottom: 20px;
		}
		
	}
   
/* ==========================================================================
   =Milestones
   ========================================================================== */

	.milestone {
		position: relative;
		margin-bottom: 30px;
		text-align: center;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	.milestone:after { /* 1 */
		visibility: hidden;
		display: table;
		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;
		color: #000;
		font-family: "Raleway", Arial, sans-serif;
		font-size: 60px;
		line-height: 100px;
	}
	
	.milestone .milestone-description { 
		font-size: 14px; 
		line-height: 24px;
		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:before {
		position: absolute;
		z-index: 1;
		top: 40px;
		left: 0;
		display: block;
		width: 100%;
		border-top: 2px solid #5c5f96;
		content: "";
	}
	
	.horizontal-process-builder li { 
		float: left;
		width: 25%;  
	}
	
	.horizontal-process-builder li i,
	.horizontal-process-builder li h1, 
	.horizontal-process-builder li img {
		position: relative;
		z-index: 2;
		display: block;
		width: 80px; 
		height: 80px;
		overflow: hidden;  
		border-radius: 50%;
		margin: 0 auto 20px;
		background-color: #5c5f96;
		background-clip: padding-box;
		color: #fff;
		font-size: 24px; 
		line-height: 80px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 
	}
	
	.horizontal-process-builder li:hover i,
	.horizontal-process-builder li:hover h1, 
	.horizontal-process-builder li:hover img { 
		background-color: #00c5e9;
		box-shadow: 7px 10px 20px 0 rgba(0, 0, 0, 0.3);
		-webkit-transform: scale(1.2);
			-ms-transform: scale(1.2);
				transform: scale(1.2);
	}

	.horizontal-process-builder.three-items li { width: 33.3333333333%; }
	.horizontal-process-builder.four-items li { width: 25%; }
	.horizontal-process-builder.five-items li { width: 20%; }
	
	.process-description {
		margin-top: 50px; 
		font-size: 18px;
		line-height: 34px;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	.horizontal-process-builder:after { /* 1 */
		visibility: hidden;
		display: table;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (max-width: 767px) {
		
		.horizontal-process-builder li { 
			float: none;
			width: 100%;
			margin-bottom: 40px; 
		}
		
		.horizontal-process-builder:before { content: none; }
		
		.horizontal-process-builder.three-items li { width: 100%; }
		.horizontal-process-builder.four-items li { width: 100%; }
		.horizontal-process-builder.five-items li { width: 100%; }
		
	}

/* ==========================================================================
   =Pie charts
   ========================================================================== */

	.pie-chart {
		position: relative;	
		margin: 0 auto 30px;
		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: #000;
		font-family: "Raleway", Arial, sans-serif;
		text-align: center;
	}
	
	.pie-chart img {
		max-width: 100%;
		vertical-align: middle;
	}
	
	.pie-chart .pie-chart-custom-text {
		position: absolute;
		top: 50px;
		left: 0;
		right: 0;
		font-size: 14px; 
	}
	
	.pie-chart .pie-chart-percent { font-size: 48px; }
	
	.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;
		padding: 35px 0 15px 0;
		border: 1px solid #d7d7d7;
		border-radius: 20px;
		box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.2);
		margin-bottom: 30px;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	.pricing-table-header {}

	.pricing-table-header h1 {
		padding: 40px 0 30px 0;
		margin-top: 10px;
		margin-bottom: 0;
		background-color: #00c5e9;
		color: #fff;
		font-size: 72px;
		line-height: 40px;
	}
	
	.pricing-table-header h1 sub {
		margin-right: -15px;
		font-size: 30px;
		vertical-align: text-bottom;
	}
	
	.pricing-table-header h1 small {
		display: block;
		font-size: 18px;
	}

	.pricing-table-header h3 { margin-bottom: 0; }
		
	.pricing-table-offer {
		padding: 40px 0;
		border-bottom: 1px solid #d7d7d7;
		margin-bottom: 35px;
		box-shadow: inset 0 20px 30px -10px rgba(0, 0, 0, 0.2);
		background-color: #f4f4f4;
		color: #7c7c7c;
	}
	
	.pricing-table-offer > *:last-child { margin-bottom: 0; }
	
	.pricing-table-offer ul {
		font-family: "Raleway", Arial, sans-serif;
		font-size: 16px;
		list-style: none;
	}
	
	.pricing-table-offer ul li { margin-bottom: 10px; }
	.pricing-table-offer ul li:last-child { margin-bottom: 0; }
	
	.pricing-table:hover {
		-webkit-transform: scale(1.05);
			-ms-transform: scale(1.05);
				transform: scale(1.05);
	}

/* ==========================================================================
   =Progress Bar
   ========================================================================== */

	.progress-bar-description {
		display: block;
		margin-bottom: 18px;
		line-height: 14px;	
	}
	
	.progress-bar {
		position: relative;
		display: block;
		height: 7px;
		margin-bottom: 18px;
		background-color: #d7d7d7;
	}
	
	.progress-percentage {
		position: absolute;
		top: -37px;
		right: 0;
	}
	
	.progress-bar .progress-bar-outer {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		background-color: #00c5e9;
	}
	
	.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: 600px !important; /* 1 */
		border-bottom: 5px solid #000;
		margin-bottom: 60px; 
	}

	.slider-revolution.fullwidthbanner-container .fullwidthbanner {
		max-height: 600px !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: 10px;
		height: 10px;
		border-radius: 50%;
		margin: 0 3px;
		background: #000;
	}

	.tp-bullets.simplebullets.round .bullet.selected { background: #00c5e9; }

/* =Rev Slider navigation
   ========================================================================== */

	.tp-leftarrow.default,
	.tp-rightarrow.default {
		width: 40px;
		height: 40px;
		border-radius: 10px;
		opacity: 0.5;
	}

	.tp-leftarrow.default:hover,
	.tp-rightarrow.default:hover { opacity: 1; }

	.tp-leftarrow.default { background: #00c5e9 url(../images/left.png) no-repeat center center; }
	.tp-rightarrow.default { background: #00c5e9 url(../images/right.png) no-repeat center center; }

/* =Rev Slider bannertimer
   ========================================================================== */
   
	.tp-bannertimer { background: #00c5e9; }
	
	.tp-bannertimer.tp-bottom { bottom: -5px; }

/* =Rev Slider Typography
   ========================================================================== */
   
   .caption.title {
		color: #000;
		font-family: "Raleway", Arial, sans-serif;
		font-size: 60px;
		font-weight: 700;
	}
   
   	.caption.subtitle {
		color: #000;
		font-family: "Raleway", Arial, sans-serif;
		font-size: 36px;
		font-weight: 700;
	}
	
	.caption.text { color: #000; }
	
	.caption .btn:hover { color: #fff; }

	@media (min-width: 768px) and (max-width: 991px) {
		
		.tp-leftarrow.default,
		.tp-rightarrow.default { display: none; }
		
		.caption .btn {
			padding: 8px 20px;
			font-size: 12px;
		}
		
	}

	@media (max-width: 767px) {
		
		.tp-leftarrow.default,
		.tp-rightarrow.default { display: none; }
		
		.tp-bullets { bottom: 0 !important; }
		
		.caption .btn {
			padding: 3px 8px;
			font-size: 6px;
			line-height: 10px;
		}
		
	}
	
/* ==========================================================================
   =Social Media
   ========================================================================== */

	a.social-icon {
		display: inline-block;
		margin-right: 25px;
		margin-bottom: 1px;
		color: #7c7c7c;
		text-align: center;
	}

	a.social-icon:last-child { margin-right: 0; }

	a.social-icon i {
		font-size: 18px;
		line-height: 30px;
	}
	
	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: #d95232 !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 { 
		margin-top: 10px; 
		margin-bottom: 0;
		list-style: none; 
	}
	
	.tabs-container .tabs-menu li { display: inline-block; }
	
	.tabs-container .tabs-menu li a { 
		float: left; 
		display: block;
		padding: 15px 35px; 	 
		background-color: #f4f4f4;
		color: #000;
		text-decoration: none;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.tabs-container .tabs-menu li a:hover { text-decoration: none; }
	
	.tabs-container .tabs-menu li a:hover,
	.tabs-container .tabs-menu li.active a { 
		background-color: #00c5e9;
		color: #fff; 
	}
	
	.tabs-container .tabs { margin-bottom: 30px; }
	
	.tabs-container .tab-content { padding-top: 50px; }
	
	/*
	 * 1. Clearfix hack 
	 */
	.tabs-container .tabs-menu:after { /* 1 */
		visibility: hidden;
		display: table;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.tabs-container .tabs-menu li a { padding: 10px 20px; }
		
	}
	
	@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 #d7d7d7;
			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 #d7d7d7; }
		
		.tabs-container .tabs-menu li.active a {  
			padding: 20px 25px;
			border-bottom-color: #bbb;
			margin: 0;
			background-color: #00c5e9;
			color: #fff; 
		}	
	  
	}
	
/* ==========================================================================
   =Testimonials
   ========================================================================== */

	.testimonial { margin: 50px 0; }
	
	.testimonial blockquote {
		position: relative;
		padding: 80px 100px;
		border-radius: 0;
		margin-bottom: 50px;
		box-shadow: none;
		background-color: #f4f4f4;
	}
	
	.testimonial blockquote:before {
		position: absolute;
		top: 0;
		left: 50%;
		display: block;
		width: 70px;
		height: 70px;
		border: 10px solid #fff;
		border-radius: 50%;
		background-color: #00c5e9;
		color: #fff;
		font-family: "Raleway", Arial, sans-serif;
		font-size: 72px;
		line-height: 110px;
		content: "\201c";
		-webkit-transform: translate(-50%,-50%);
			-ms-transform: translate(-50%,-50%);
				transform: translate(-50%,-50%);
	}
	
	.testimonial blockquote:after {
		position: absolute;
		bottom: -30px;
		left: 0;
		width: 0; 
		height: 0;
		border-top: 30px solid #f4f4f4; 
		border-right: 50px solid transparent;
		content: "";
	}
	
	.testimonial img {
		float: left;
		margin-right: 50px;
	}
	
	.testimonial > h3 {
		padding-top: 70px;
		margin-bottom: 0;
		color: #00c5e9;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	.testimonial:after { /* 1 */
		visibility: hidden;
		display: table;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (max-width: 767px) {
		
		.testimonial blockquote { padding: 50px 20px; }
		
		.testimonial img { float: none; }
		
		.testimonial > h3 { padding-top: 20px; }
		
	}
	
/* ==========================================================================
   =Team Member
   ========================================================================== */

	.team-member {
		margin-bottom: 50px;
	}
	
	.team-member-img {
		position: relative;
		margin-bottom: 30px;	
	}
	
	.team-member-img img {
		display: block;
		width: 100%;
	}
	
	.team-member-overlay {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: rgba(0, 197, 233, 0.75);	
		color: #fff;
		opacity: 0;
		-webkit-transform: scale(0);
			-ms-transform: scale(0);
				transform: scale(0);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.team-member-overlay a {
		position: absolute;
		top: 50%;
		left: 50%;
		color: #fff;
		font-size: 22px;
		text-decoration: none;
		-webkit-transform: translate(-50%,-50%);
			-ms-transform: translate(-50%,-50%);
				transform: translate(-50%,-50%);
	}
	
	.team-member h3 { margin-bottom: 0; }
	.team-member h6 { margin-bottom: 30px; }
	
	.team-member .social-media {
		padding-top: 20px;
		border-top: 1px solid #d7d7d7;
		margin-top: 40px;
	}
	
	.team-member:hover .team-member-overlay {
		opacity: 1;
		-webkit-transform: scale(1);
			-ms-transform: scale(1);
				transform: scale(1);
	}
	
/* ==========================================================================
   =Timeline
   ========================================================================== */
	
	.timeline {
		position: relative;
		padding-top: 100px; 
		margin-bottom: 100px;
		list-style: none;
	}
	
	.timeline:before {
		position: absolute;
		top: 10px;
		left: 50%;
		height: 100%;
		border-left: 1px solid #d6d6d6;
		content: "";
	}
	
	.timeline li { position: relative; }
	
	.timeline li:before {
		position: absolute;
		top: 0;
		left: 50%;
		display: block;
		width: 23px;
		height: 23px;
		border-radius: 50%;
		background-color: #00c5e9;
		content: "";
		-webkit-transform: translateX(-50%);
			-ms-transform: translateX(-50%);
				transform: translateX(-50%);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.left-side,
	.right-side {
		position: relative;
		float: left;  
		width: 50%;
		min-height: 1px;
		-webkit-box-sizing: border-box; 
		   -moz-box-sizing: border-box; 
				box-sizing: border-box; 
	}
	
	.left-side { padding-right: 100px; }
	.right-side { padding-left: 100px; }
	
	.timeline li h3 {
		-webkit-transition: color 0.3s;
				transition: color 0.3s;
	}
	
	.timeline li:hover h3 { color: #00c5e9; }
	
	.timeline li:hover:before {
		width: 29px;
		height: 29px;
		box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.2);	
	}
	
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.timeline li:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.left-side { padding-right: 50px; }
		.right-side { padding-left: 50px; }
		
	}
	
	@media (max-width: 767px) {
		
		.left-side,
		.right-side {
			float: left;
			width: 100%;
		}
		
		.left-side { padding-right: 0; }
		.right-side { padding-left: 0; }
		
		.timeline:before, 
		.timeline li:before { display: none; }
		
		.timeline li { margin-bottom: 50px; }
		.timeline li:last-child { margin-bottom: 0; }
		
	}
		
/* ==========================================================================
   =Portfolio Item
   ========================================================================== */
	
	.portfolio-item { 
		position: relative; 
		overflow: hidden;
		margin-bottom: 30px;
	}
	
	.portfolio-item-preview { position: relative; }
	
	.portfolio-item-preview > img {
		display: block;
		width: 100%;
	}
	
	.portfolio-item-overlay {
		position: absolute; 
		top: 0;
		right: 0; 
		left: 0;
		bottom: 0;
		margin: 25px;
		box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2);
		background-color: #00c5e9;
		opacity: 0;
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.portfolio-item:hover .portfolio-item-overlay { 
		opacity: 1;
		-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
				transform: translateY(0);
	}	
		
	.portfolio-item-overlay-actions {
		position: absolute;
		top: 50%;
		width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		text-align: center;
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
	}
	
	.portfolio-item-overlay-actions .portfolio-item-zoom {
		display: inline-block;
		padding: 10px;
	}
	
	.portfolio-item-overlay-actions .portfolio-item-zoom i {
		color: #fff; 
		font-size: 32px;  
	}
	
	.portfolio-item-description h4 {
		margin-bottom: 0;
		font-weight: 700; 
	}
	
	.portfolio-item-description h6 {
		margin-bottom: 20px;
		color: #00c5e9;
		font-size: 12px;
		font-weight: 700;
	}
	
	.portfolio-item-description h4 a { color: #000; }
	
	.portfolio-item-description h4 a:hover { 
		color: #00c5e9;
		text-decoration: none;
	}
	
	.portfolio-item-preview + .portfolio-item-description {
		margin: 30px 0;
		text-align: center;
	}
	
	@media (min-width: 1200px) {
		
		.portfolio-item-overlay { margin: 50px; }				
		
	}
	
	@media (max-width: 767px) {
		
		.portfolio-item-description { margin-top: 30px; }
		
	}
	
/* ==========================================================================
   =Portfolio Filter
   ========================================================================== */
	
	.portfolio-filter ul {
		margin-bottom: 80px;
		list-style: none;
	}
	
	.portfolio-filter ul li { 
		display: inline-block;
		margin-right: 40px;
	}
	
	.portfolio-filter ul li:last-child { margin-right: 0; }
	
	.portfolio-filter ul li a { 
		color: #000;
		font-family: "Raleway", Arial, sans-serif;
		font-size: 18px;
		text-decoration: none;
		-webkit-transition: color 0.3s;
				transition: color 0.3s;
	}
	
	.portfolio-filter ul li a:hover,
	.portfolio-filter ul li a.active { color: #00c5e9; }	
	
	@media (max-width: 767px) {
		
		.portfolio-filter ul li { 
			display: block;
			margin-bottom: 15px;
		}
		
		.portfolio-filter ul li:last-child { margin-bottom: 0; }
		
	}

/* ==========================================================================
   =Portfolio Pagination
   ========================================================================== */
	
	.portfolio-pagination { margin-bottom: 50px; }

	/*
	 * 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: 36px;
		height: 36px;
		border: 2px solid #00c5e9;
		border-radius: 10px;
		margin-right: 5px;
		font-family: "Raleway", Arial, sans-serif;
		font-size: 15px;
		line-height: 36px;
		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 {
		background-color: #00c5e9;
		color: #fff;
	}

	.portfolio-pagination .current {}
	
	.portfolio-pagination .page-numbers.dots { border: none; }
	
	.portfolio-pagination .page-numbers.dots:hover {
		background-color: transparent;
		color: #00c5e9;
	}

	.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-bottom: 100px;
		list-style: none;
	}
	
	.portfolio-grid.gutter { margin: -15px -15px 60px -15px; }
	
	.portfolio-grid.gutter .portfolio-item-preview + .portfolio-item-description { margin-bottom: 0; }
	
	.portfolio-grid .item {
		float: left;
		width: 33.33333%;
		-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 { width: 33.333333%; } 
	.portfolio-grid.four-cols .item { width: 25%; } 
	.portfolio-grid.five-cols .item { width: 25%; } 
	
	/*
	 * 1. Clearfix hack 
	 */
	.portfolio-grid:after { /* 1 */
		visibility: hidden;
		display: table;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (min-width: 1200px) {
		
		.portfolio-grid.five-cols .item { width: 20%; } 
		
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.portfolio-grid.four-cols .item,
		.portfolio-grid.five-cols .item { width: 33.33333%; } 
		
	}
	
	@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%; }
		
	}
	
	@media only screen and (min-width: 480px) and (max-width: 767px) {
		
		.portfolio-grid .item {
			float: left;
			width: 50%; 
		}
		
		.portfolio-grid.three-cols .item,
		.portfolio-grid.four-cols .item,
		.portfolio-grid.five-cols .item { 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; } 
	
	/*
	 * 1. Clearfix hack 
	 */
	.portfolio-strip:after { /* 1 */
		visibility: hidden;
		display: table;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@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%; 
		}
		
	}
	
/* ==========================================================================
   =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 { background-color: #00c5e9; }
	
	.bx-wrapper .bx-pager,
	.bx-wrapper .bx-controls-auto { bottom: 30px; }
	
/* =Bx Slider Dir Nav
   ========================================================================== */ 
   
	.bx-wrapper .bx-prev {
		left: 0;
		background: #000 url(../images/left.png) no-repeat center center;
	}

	.bx-wrapper .bx-next {
		right: 0;
		background: #000 url(../images/right.png) no-repeat center center;
	}
	
	.bx-wrapper .bx-prev:hover, 
	.bx-wrapper .bx-next:hover { 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 */	
	}	
	
	.testimonial-slider .bx-wrapper .bx-pager { text-align: right; }
	
/* ==========================================================================
   =Fullwidth Section
   ========================================================================== */
   
   	.fullwidth-section.custom-color-selected {
		background-color: #333;
		color: #fff;
	}

	.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 ul.check li:before,
	.fullwidth-section.custom-color-selected ul.fill-circle li:before, 
	.fullwidth-section.custom-color-selected .icon-box-1 h4 a,
	.fullwidth-section.custom-color-selected .icon-box-2 h4 a,
	.fullwidth-section.custom-color-selected .icon-box-3 h4 a, 
	.fullwidth-section.custom-color-selected .milestone .milestone-content, 
	.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 a.social-icon, 
	.fullwidth-section.custom-color-selected .portfolio-filter ul li a, 
	.fullwidth-section.custom-color-selected .widget_categories a, 
	.fullwidth-section.custom-color-selected .widget_pages a, 
	.fullwidth-section.custom-color-selected .widget_archive a, 
	.fullwidth-section.custom-color-selected .widget_meta a, 
	.fullwidth-section.custom-color-selected .widget_nav_menu a, 
	.fullwidth-section.custom-color-selected .ewf_widget_latest_posts ul li .title, 
	.fullwidth-section.custom-color-selected .ewf-tweet-list:before, 
	.fullwidth-section.custom-color-selected .ewf-tweet-list .interact a { color: inherit; }
	
	.fullwidth-section.custom-color-selected .widget_nav_menu a:before,
	.fullwidth-section.custom-color-selected .widget_meta a:before,
	.fullwidth-section.custom-color-selected .widget_pages a:before,
	.fullwidth-section.custom-color-selected .widget_archive a:before,
	.fullwidth-section.custom-color-selected .widget_categories a:before { border-left-color: inherit; }
	
	.fullwidth-section.custom-color-selected .portfolio-filter ul li a.active,
	.fullwidth-section.custom-color-selected .portfolio-filter ul li a:hover,
	.fullwidth-section.custom-color-selected .headline h2,
	.fullwidth-section .testimonial > h2 { color: #00c5e9; }
	
	.fullwidth-section .testimonial blockquote {
		background-color: #fff;
		color: #000;
	}
	
	.fullwidth-section .testimonial blockquote:after { border-top-color: #fff; }
	
	.fullwidth-section .testimonial blockquote:before { border: none; }
	
	.error-section {
		padding-top: 150px;
		margin-top: 150px;
	}
	
	.error-section img { margin-top: -30%; }
	
	#bg-1 {
		padding: 100px 0 80px 0;
		background-image: url(../../content/backgrounds/1920x1080-1.jpg);
	}
	
	#bg-2 {
		padding: 100px 0 40px 0;
		margin-top: 30px;
		background-image: url(../../content/backgrounds/1920x1080-2.jpg);
	}
	
	#bg-3 {
		overflow: visible;
		padding-top: 0;
		padding-bottom: 100px;
		margin-top: 330px;
		margin-bottom: -50px;
		background-color: #00c5e9;
	}
	
	#bg-3 img { margin-top: -25%; }
	
	#bg-4 {
		padding: 140px 0 120px 0;
		margin-top: 50px;
		margin-bottom: 0;
		background-image: url(../../content/backgrounds/1920x1080-3.jpg);
	}
	
	#bg-5 {
		padding-top: 60px;
		background-color: #00c5e9; 
	}
	
	#bg-6 {
		padding: 140px 0 110px 0;
		margin-top: 50px;
		background-image: url(../../content/backgrounds/1920x1080-4.jpg);
	}
	
	#bg-7 {
		min-height: 675px;
		margin-top: 80px;
		background-image: url(../../content/backgrounds/1920x1080-5.jpg); 
	}
	
	#bg-8 {
		overflow: visible;
		padding-top: 100px;
		padding-bottom: 0;
		margin-top: 70px;
		margin-bottom: -50px;
		background-image: url(../../content/backgrounds/1920x1080-6.jpg); 
		color: #000;
	}
	
	#bg-9 {
		padding: 230px 0 200px 0;
		margin-top: 80px;
		background-image: url(../../content/backgrounds/1920x1080-7.jpg); 
	}
	
	#bg-10 {
		padding: 140px 0 100px 0;
		margin-top: 50px;
		background-image: url(../../content/backgrounds/1920x1200.jpg); 
	}
	
	#bg-11 {
		padding: 100px 0 70px 0;
		margin-top: 80px;
		margin-bottom: 0;
		background-image: url(../../content/backgrounds/1920x1080-8.jpg); 
	}
	
	#bg-12 { 
		margin-bottom: 0;
		background-color: #5c5f96;
	}
	
	#bg-13 {
		padding: 100px 0;
		margin-bottom: 0;
		background-color: #00c5e9;
	}
	
	#bg-14 {
		margin-bottom: -50px;
		background-color: #000;
	}
	
	#bg-15 {
		padding-top: 80px;
		margin: 100px 0 -50px 0;
		background-image: url(../../content/backgrounds/1920x1080-9.jpg); 
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		#bg-3 { margin-top: 200px; }
		
	}
	
	@media (max-width: 767px) {
		
		#bg-3 { margin-top: 100px; }
		
	}