/**
 * 	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
 *	=Clients logos
 *	=Countdown
 *	=Dividers
 *  =Dropcaps
 *	=Galleries
 *	=Google Maps
 *	=Headlines
 *	=Icon Boxes
 *  =Image Box
 *	=Milestones
 *  =Modal window
 *	=Our Process
 *	=Pie charts
 *	=Pricing Tables
 *	=Progress Bar
 *	=Social Media
 *	=Tabs
 *	=Testimonials
 *	=Team Member
 *	=Bx Slider
 *	=Custom Colors selected
 *
 */

/* ==========================================================================
   =Accordions and Toggles
   ========================================================================== */

	.vc_tta.vc_tta-accordion .vc_tta-panel .vc_tta-panel-title > a {
		position: relative;
		display: block;
		padding: 15px 25px;
		margin-bottom: 15px;
		background-color: #f1f1f1 !important;
		color: #505050 !important;
		font-weight: 700;
		text-transform: uppercase;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	.vc_tta.vc_tta-accordion .vc_tta-panel .vc_tta-panel-title > a span {
		font: 14px "Open Sans", Arial, sans-serif !important;
		font-weight: 700 !important;
	}

	.vc_tta.vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading { background-color: transparent; }

	.vc_tta.vc_tta-accordion.vc_tta .vc_tta-controls-icon:before,
	.vc_tta.vc_tta-accordion.vc_tta .vc_tta-controls-icon:after {
		border-color: #505050 !important;
		border-width: 1px !important;
	}

	.vc_tta.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-controls-icon:before,
	.vc_tta.vc_tta-accordion .vc_tta-panel:hover .vc_tta-controls-icon:before,
	.vc_tta.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-controls-icon:after,
	.vc_tta.vc_tta-accordion .vc_tta-panel:hover .vc_tta-controls-icon:after {
		border-color: #fff !important;
	}

	.vc_tta.vc_tta-accordion .vc_tta-controls-icon {
		height: 10px !important;
		width: 10px !important;
	}

	.vc_tta.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-title > a,
	.vc_tta.vc_tta-accordion .vc_tta-panel .vc_tta-panel-title > a:hover {
		background-color: #0084b4 !important;
		border-color: #0084b4 !important;
		color: #fff !important;
		text-decoration: none;
	}

	.vc_tta.vc_tta-accordion .vc_tta-panels .vc_tta-panel-body {
		padding: 20px 0 35px 0 !important;
	}

	.vc_tta.vc_tta-accordion .vc_tta-panel .vc_tta-panel-body,
	.vc_tta.vc_tta-accordion .vc_tta-panel .vc_tta-panel-body:after,
	.vc_tta.vc_tta-accordion .vc_tta-panel .vc_tta-panel-body:before {
		border-color: transparent !important;
	}

	.vc_tta.vc_tta-accordion .vc_tta-panel,
	.vc_tta.vc_tta-accordion .vc_tta-panel .vc_tta-panel-body,
	.vc_tta.vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading:focus,
	.vc_tta.vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading:hover,
	.vc_tta.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-heading,
	.vc_tta.vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading {
		background-color: transparent !important;
	}

	.vc_tta.vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-panel-heading,
	.vc_tta.vc_tta-accordion .vc_tta-panel .vc_tta-panel-heading { border-color: transparent !important; }

/* ==========================================================================
   =Alerts
   ========================================================================== */

	.alert {
		padding: 15px 25px;
		border: 2px solid #e1e1e1;
		margin-bottom: 30px;
		background-color: #fff;
		color: #505050;
		text-align: center;
	}

	.alert i {
		position: relative;
		top: 1px;
		margin-right: 7px;
		font-size: 16px;
	}

	.alert.info {
		border-color: #e1e1e1;
		background-color: #e1e1e1;
		color: #505050;
	}

	.alert.success {
		border-color: #0084b4;
		background-color: #0084b4;
		color: #fff;
	}

	.alert.error {
		border-color: #ff0030;
		background-color: #ff0030;
		color: #fff;
	}

	.alert.warning {
		border-color: #202020;
		background-color: #202020;
		color: #fff;
	}

	h1.error {
		margin-bottom: 50px;
		color: #0084b4;
		font-size: 112px;
		line-height: 112px;
		font-weight: 700;
		text-align: center;
	}

/* ==========================================================================
   =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;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	.box .btn { margin-top: 15px; }

	.box > img {
		display: block;
		margin-bottom: 20px;
	}

	.box  > *:last-child { margin-bottom: 0; }

	.box.box-style-1 { border: 2px solid #0084b4; }

	.box.box-style-2 {
		background-color: #0084b4;
		color: #fff;
	}

	.box.box-style-2 .btn-white {
		border-color: #fff;
		color: #fff;
	}

	.box.box-style-2 a,
	.box.box-style-2 h1,
	.box.box-style-2 h2,
	.box.box-style-2 h3,
	.box.box-style-2 h4,
	.box.box-style-2 h5,
	.box.box-style-2 h6 { color: #fff; }

	.box.box-style-2 h1 {
		margin-bottom: 0;
		font-weight: 700;
		text-transform: uppercase;
	}

	.box.box-style-2 h1 small {
		font-size: 18px;
		font-weight: 800;
	}

	.box.box-style-2 .icon-box-1 > i { color: #fff; }

	.boxes-wrapper { margin: 50px 0 100px 0; }

	.boxes-wrapper .box {
		display: table-cell;
		width: 33.33333%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 30px 30px 50px 30px;
		margin-bottom: 0;
	}

	.box:hover {
		box-shadow: 0 0 30px 30px rgba(0, 0, 0, 0.2);
		-webkit-transform: scale(1.05);
			-ms-transform: scale(1.05);
				transform: scale(1.05);
	}

	/*
	 * 1. Clearfix hack
	 */

	.boxes-wrapper:after,
	.box:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}

	@media (min-width: 1400px) {

		.box > img {
			float: left;
			margin-right: 20px;
		}

		.boxes-wrapper .box { padding: 70px 70px 70px 150px; }

		.boxes-wrapper .box .icon-box-1 { margin-left: -65px; }

		/* .box.box-style-2 h1 { margin-left: -95px; } */

	}

	@media (min-width: 768px) and (max-width: 991px) {

		.boxes-wrapper .box {
			display: block;
			width: 100%;
		}

		.box > img {
			float: left;
			margin-right: 20px;
		}

		.boxes-wrapper .box { padding: 70px 70px 70px 150px; }

		.boxes-wrapper .box .icon-box-1 { margin-left: -65px; }

		.box.box-style-2 h1 { margin-left: -95px; }

	}

	@media (max-width: 767px) {

		.boxes-wrapper .box {
			display: block;
			width: 100%;
			padding: 25px 25px 40px 25px;
		}

	}

/* ==========================================================================
   =Buttons
   ========================================================================== */

/* =Default Button
   ========================================================================== */

	.btn {
		display: inline-block;
		padding: 10px 25px;
		border: 2px solid #0084b4;
		margin: 0 5px 20px 0;
		background-color: #0084b4;
		color: #fff;
		line-height: 18px;
		font-weight: 800;
		letter-spacing: 1px;
		text-decoration: none !important;
		text-transform: uppercase;
		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: 15px 35px;
		font-size: 20px;
	}

	.btn i,
	.btn-large i {
		float: left;
		margin: 2px 8px 0 -4px;
	}

	.btn:hover {
		-webkit-transform: scale(1.1);
			-ms-transform: scale(1.1);
				transform: scale(1.1);
	}

/* =Colored Buttons
   ========================================================================== */

	.btn-white {
		border-color: #0084b4;
		background-color: transparent;
		color: #0084b4;
	}

	a.btn-white { color: #0084b4; }

	.btn-white-2 {
		border-color: #202020;
		background-color: #fff;
		color: #202020;
	}

	a.btn-white-2 { color: #202020; }

	.btn-black {
		border-color: #202020;
		background-color: #202020;
		color: #fff;
	}

	a.btn-black { color: #fff; }

/* ==========================================================================
   =Callouts
   ========================================================================== */

	.callout {
		padding: 30px 0;
		margin-bottom: 30px;
	}

	.callout-content h2 { margin-bottom: 0; }

	.callout-content > *:last-child,
	.callout-action > *:last-child {
		margin-bottom: 0;
	}

	.callout-action {
		padding-top: 30px;
		text-align: right;
	}

	.callout-2 {
		position: relative;
		padding: 35px 50px;
		margin-bottom: 30px;
		background-color: #f1f1f1;
	}

	.callout-2 .callout-content {
		padding-left: 140px;
		color: #505050;
	}

	.callout-2 .callout-content > i {
		position: absolute;
		top: -35px;
		bottom: -35px;
		left: -35px;
		display: block;
		width: 140px;
		background-color: #0084b4;
		color: #fff;
		font-size: 32px;
		line-height: 140px;
		text-align: center;
	}

	.callout-2 .callout-action { padding-top: 10px; }

	/*
	 * 1. Clearfix hack
	 */

	.callout:after,
	.callout-2:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}

	@media (min-width: 768px) and (max-width: 991px) {

		.callout-2 { padding: 35px 10px; }

		.callout-2 .callout-content > i {
			left: -10px;
			width: 80px;
		}

		.callout-2 .callout-content { padding-left: 100px; }

	}

	@media (max-width: 767px) {

		.callout-2 .callout-content > i {
			position: relative;
			left: 0;
			width: 100%;
		}

		.callout-2 .callout-content {
			padding-top: 35px;
			padding-left: 0;
		}

	}

/* ==========================================================================
   =Clients logos
   ========================================================================== */

	.clients-logos {
		margin-bottom: 50px;
		list-style: none;
	}

	.clients-logos li a {
		float: left;
		width: 20%;
		padding: 25px 0;
		opacity: 0.5;
		-webkit-transition: opacity 0.3s;
				transition: opacity 0.3s;
	}

	.clients-logos li a.active,
	.clients-logos li a:hover { opacity: 1; }

	/*
	 * 1. Clearfix hack
	 */

	.clients-logos:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}

	@media (max-width: 767px) {

		.clients-logos li a { width: 50%; }

	}

/* ==========================================================================
   =Countdown
   ========================================================================== */

	#countdown {
		margin: 140px 0 120px;
		text-align: center;
	}

	.countdown-section {
		position: relative;
		float: left;
		width: 25%;
	}

	.countdown-section:after {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		border-right: 2px solid #b8b8b8;
		content: "";
		-webkit-transform: rotate(45deg);
			-ms-transform: rotate(45deg);
				transform: rotate(45deg);
	}

	.countdown-section:last-child:after { content: none; }

	.countdown-amount {
		display: block;
		font-size: 92px;
		line-height: 98px;
		font-weight: 600;
		color: #202020;
	}

	.countdown-period {
		color: #0084b4;
		font-weight: 800;
		text-transform: uppercase;
	}

	/*
	 * 1. Clearfix hack
	 */
	#countdown:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}

	@media (min-width: 768px) and (max-width: 991px) {

		.countdown-amount {
			font-size: 72px;
			line-height: 78px;
		}

	}

	@media (max-width: 767px) {

		.countdown-amount {
			font-size: 32px;
			line-height: 48px;
		}

		.countdown-section:after { content: none; }

	}

/* ==========================================================================
   =Dividers
   ========================================================================== */

	.divider { margin: 50px 0; }

	.divider.single-line { border-top: 2px solid #898989; }

	.divider.double-line { border-top: 6px double #898989; }

/* ==========================================================================
   =Dropcaps
   ========================================================================== */

	p.dropcap,
	p.dropcap-square,
	p.dropcap-circle {
		display: block !important;
	}

	p.dropcap::first-letter,
	p.dropcap-square::first-letter,
	p.dropcap-circle::first-letter {
		float: left;
		display: block;
		margin: 15px 10px 0 0;
		font-size: 34px;
		line-height: 42px;
		color: inherit;
	}

	p.dropcap-square::first-letter {
		margin-top: 5px;
		padding: 15px;
		background-color: #0084b4;
		color: #ffffff;
		font-size: 22px;
		line-height: 42px;
		text-align: center;

	}

	p.dropcap-circle::first-letter {
		margin-top: 5px;
		padding: 15px;
		border-radius: 50%;
		background-color: #0084b4;
		color: #ffffff;
		font-size: 22px;
		line-height: 42px;
		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: 100px; }

	@media (max-width: 767px) {

		.map { padding: 0 20px; }
		.row .map { padding: 0; }

	}

/* ==========================================================================
   =Headlines
   ========================================================================== */

	.headline {
		padding-top: 35px;
		margin-bottom: 100px;
		background: url(../images/bg-headline.png) no-repeat center top;
		text-align: center;
	}

	.headline h2 {
		margin-bottom: 0;
		text-transform: uppercase;
	}

/* ==========================================================================
   =Icon Boxes
   ========================================================================== */

/* =Icon Box 1
   ========================================================================== */

	.icon-box-1 {
		position: relative;
		margin-bottom: 50px;
	}

	.icon-box-1 > i {
		float: left;
		display: block;
		color: #b8b8b8;
		font-size: 32px;
		line-height: 48px;
		-webkit-transition: color 0.3s;
				transition: color 0.3s;
	}

	.icon-box-1 h5 {
		margin-bottom: 20px;
		text-transform: uppercase;
	}

	.icon-box-1 h6 {
		margin-bottom: 15px;
		text-transform: uppercase;
	}

	.icon-box-1 .icon-box-content { margin-left: 65px; }

	.icon-box-1:hover > i { color: #0084b4; }

/* =Icon Box 2
   ========================================================================== */

	.icon-box-2 {
		position: relative;
		margin-bottom: 50px;
		text-align: center;
	}

	.icon-box-2 > i {
		display: block;
		width: 85px;
		height: 85px;
		border-radius: 50%;
		margin: 0 auto 20px auto;
		background-color: #b8b8b8;
		color: #fff;
		font-size: 32px;
		line-height: 85px;
		text-align: center;
		-webkit-transition: background-color 0.3s;
				transition: background-color 0.3s;
	}

	.icon-box-2 h5 {
		margin-bottom: 20px;
		text-transform: uppercase;
	}

	.icon-box-2 .icon-box-content {}

	.icon-box-2:hover > i { background-color: #0084b4; }

/* =Icon Box 3
   ========================================================================== */

	.icon-box-3 {
		position: relative;
		margin-bottom: 50px;
		text-align: right;
	}

	.icon-box-3 > i {
		float: right;
		display: block;
		margin-left: 40px;
		color: #b8b8b8;
		font-size: 32px;
		line-height: 48px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	.icon-box-3 h6 {
		padding-top: 20px;
		margin-bottom: 10px;
		text-transform: uppercase;
	}

	.icon-box-3 .icon-box-content { margin-right: 65px; }

	.icon-box-3:hover > i {
		color: #0084b4;
		-webkit-transform: scale(1.2);
			-ms-transform: scale(1.2);
				transform: scale(1.2);
	}

	@media (min-width: 768px) and (max-width: 991px) {

		.icon-box-3 > i { float: none; }

	}


/* =Icon Box 4
   ========================================================================== */

	.icon-box-4 {
		position: relative;
		margin-bottom: 50px;
	}

	.icon-box-4 > i {
		float: left;
		display: block;
		margin-right: 40px;
		color: #b8b8b8;
		font-size: 32px;
		line-height: 48px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	.icon-box-4 h6 {
		padding-top: 20px;
		margin-bottom: 10px;
		text-transform: uppercase;
		-webkit-transition: color 0.3s;
				transition: color 0.3s;
	}

	.icon-box-4 .icon-box-content { margin-left: 65px; }

	.icon-box-4:hover > i {
		color: #0084b4;
		-webkit-transform: scale(1.2);
			-ms-transform: scale(1.2);
				transform: scale(1.2);
	}

	@media (min-width: 768px) and (max-width: 991px) {

		.icon-box-4 > i { float: none; }

	}

/* ==========================================================================
   =Image Box
   ========================================================================== */

	.image-box {
		overflow: hidden;
		margin-bottom: 50px;
	}

	.image-box-img { margin-bottom: 35px; }

	.image-box-img img {
		display: block;
		max-width: 100%;
	}

	.image-box h5 {
		margin-bottom: 20px;
		text-transform: uppercase;
	}

	.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-size: 48px;
		line-height: 40px;
		font-weight: 600;
	}

	.milestone .milestone-description {
		font-size: 14px;
		font-weight: 800;
		text-transform: uppercase;
	}

/* ==========================================================================
   =Modal window
   ========================================================================== */

	.white-popup {
		position: relative;
		width: auto;
		max-width: 500px;
		padding: 20px;
		margin: 20px auto;
		background: #fff;
	}

/* ==========================================================================
   =Our Process
   ========================================================================== */
/* =Vertical process
   ========================================================================== */

	.vertical-process-builder {
		position: relative;
		margin-bottom: 50px;
		list-style: none;
	}

	.vertical-process-builder:before {
		position: absolute;
		z-index: 1;
		top: 0;
		left: 16px;
		display: block;
		height: 100%;
		border-left: 2px solid #e1e1e1;
		content: "";
	}

	.vertical-process-builder li {
		position: relative;
		margin-bottom: 30px;
	}

	.vertical-process-builder li i,
	.vertical-process-builder li h5 {
		position: absolute;
		z-index: 2;
		top: 50%;
		left: 0;
		display: block;
		width: 50px;
		height: 50px;
		overflow: hidden;
		border: 2px solid #e1e1e1;
		border-radius: 50%;
		margin-left: -10px;
		background-color: #fff;
		background-clip: padding-box;
		color: #505050;
		line-height: 50px;
		text-align: center;
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	.vertical-process-builder li i { font-size: 18px; }

	.vertical-process-builder .process-description {
		position: relative;
		padding: 40px 45px;
		margin-left: 80px;
		background-color: #f1f1f1;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	.vertical-process-builder .process-description:before {
		position: absolute;
		top: 50%;
		left: -10px;
		width: 0;
		height: 0;
		border-top: 7px solid transparent;
		border-right: 10px solid #f1f1f1;
		border-bottom: 7px solid transparent;
		content: "";
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	.vertical-process-builder .process-description h6 {
		text-transform: uppercase;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	.vertical-process-builder .process-description *:last-child { margin-bottom: 0; }

	.vertical-process-builder li:hover i,
	.vertical-process-builder li:hover h5 {
		border-color: #0084b4;
		color: #0084b4;
	}

	.vertical-process-builder li:hover .process-description {
		background-color: #0084b4;
		color: #fff;
	}

	.vertical-process-builder li:hover .process-description h6 { color: #fff; }

	.vertical-process-builder li:hover .process-description:before { border-right-color: #0084b4; }

	@media (max-width: 767px) {

		.vertical-process-builder .process-description {
			padding: 20px;
			margin-left: 60px;
		}

	}

/* ==========================================================================
   =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%;
		text-align: center;
	}

	.pie-chart img {
		max-width:100%;
		vertical-align: middle;
	}

	.pie-chart .pie-chart-custom-text { font-size: 18px; }

	.pie-chart .pie-chart-percent {
		color: #0084b4;
		font-size: 36px;
	}

	.pie-chart-description {
		display: block;
		margin-bottom: 30px;
		font-size: 14px;
		font-weight: 600;
		text-align: center;
		text-transform: uppercase;
	}

/* ==========================================================================
   =Pricing Tables
   ========================================================================== */

	.pricing-table {
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 40px 20px;
		border: 2px solid #e1e1e1;
		margin-bottom: 30px;
		text-align: center;
		-webkit-transition: border-color 0.3s;
				transition: border-color 0.3s;
	}

	.pricing-table-header {}

	.pricing-table-header h1 {
		margin-bottom: 0;
		font-size: 60px;
		line-height: 90px;
		font-weight: 700;
		text-transform: uppercase;
		-webkit-transition: color 0.3s;
				transition: color 0.3s;

	}

	.pricing-table-header h1 small {
		margin-left: -20px;
		font-size: 14px;
		letter-spacing: 0.25px;
	}

	.pricing-table-header h4 {
		padding-bottom: 30px;
		border-bottom: 2px solid #e1e1e1;
		margin-bottom: 15px;
		text-transform: uppercase;
		-webkit-transition: color 0.3s;
				transition: color 0.3s;
	}

	.pricing-table-offer { margin-bottom: 30px; }

	.pricing-table-offer ul { list-style: none; }

	.pricing-table-offer ul li {
		border-top: 1px solid #e1e1e1;
		padding: 10px 0;
	}

	.pricing-table-offer ul li:first-child { border-top: none; }

	.pricing-table .btn { margin-bottom: 0; }

	.pricing-table:hover { border-color: #0084b4; }

	.pricing-table:hover .pricing-table-header h1,
	.pricing-table:hover .pricing-table-header h4 { color: #0084b4; }

/* ==========================================================================
   =Progress Bar
   ========================================================================== */

	.progress-bar-description {
		display: block;
		margin-bottom: 10px;
		color: #202020;
		line-height: 14px;
		font-weight: 800;
		text-transform: uppercase;
	}

	.progress-bar {
		position: relative;
		display: block;
		height: 8px;
		border-radius: 10px;
		margin-bottom: 30px;
		background-color: #e1e1e1;
	}

	.progress-bar .progress-bar-outer {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		border-radius: 10px 0 0 10px;
		background-color: #0084b4;
	}

	.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%;
	}

	.progress-percentage {
		position: absolute;
		top: -30px;
		right: 0;
		color: #202020;
		font-weight: 800;
	}

/* ==========================================================================
   =Social Media
   ========================================================================== */

	a.social-icon {
		display: inline-block;
		margin-right: 30px;
		color: #505050;
		text-align: center;
	}

	a.social-icon:last-child { margin-right: 0; }

	a.social-icon i {
		font-size: 18px;
		line-height: 32px;
	}

	a.social-icon:hover { text-decoration: none; }

	a.facebook-icon:hover { color: #0e59a0 !important; }
	a.twitter-icon:hover { color: #0ea4ff !important; }
	a.dribbble-icon:hover { color: #ea73a0 !important; }
	a.pinterest-icon:hover { color: #d73532 !important; }
	a.google-plus-icon:hover { color: #dc4a38 !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-square-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.codepen-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.gittip-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.stack-overflow-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
   ========================================================================== */

	.vc_tta.vc_tta-tabs .vc_tta-tabs-list {
		margin: 0 0 40px 0 !important;
		padding: 0;
	}

	.vc_tta.vc_tta-tabs .vc_tta-tab { margin: 0 !important; }

	.vc_tta.vc_tta-tabs .vc_tta-tab > a {
		border: medium solid transparent;
		padding: 15px 35px !important;
		margin-right: 5px;
		border-color: transparent !important;
		background-color: #f1f1f1 !important;
		color: #202020 !important;
		font-weight: 700;
		text-decoration: none;
		text-transform: uppercase;
		font-family: "Open Sans";
		font-style: normal;
		font-weight: 700;
		font-size: 14px;
		border-top-right-radius: 0 !important;
		border-top-left-radius: 0 !important;
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}

	.vc_tta.vc_tta-tabs .vc_tta-tab > a:hover,
	.vc_tta.vc_tta-tabs .vc_tta-tab.vc_active > a {
		background-color: #0084b4 !important;
		color: #ffffff !important;
	}

	.vc_tta.vc_tta-tabs .vc_tta-panels,
	.vc_tta.vc_tta-tabs .vc_tta-panels:after,
	.vc_tta.vc_tta-tabs .vc_tta-panels:before { border-color: transparent !important; }

	.vc_tta.vc_tta-tabs .vc_tta-panel-body { padding: 0 !important; }

	.vc_tta.vc_tta-tabs .vc_tta-panels .vc_tta-panel-body {
		background-color: transparent !important;
		border-color: transparent !important;
	}


/* ==========================================================================
   =Testimonials
   ========================================================================== */

	.testimonial {
		margin-bottom: 30px;
		text-align: center;
	}

	.testimonial:after {
		display: inline-block;
		margin-top: 30px;
		font-family: "FontAwesome";
		font-size: 24px;
		content: "\f10d";
	}

	.testimonial blockquote { margin-bottom: 50px; }

	.testimonial blockquote h3 { font-weight: 600; }

	.testimonial > img {
		border-radius: 50%;
		margin-bottom: 50px;
	}

	.testimonial > h5 {
		color: #0084b4;
		text-transform: uppercase;
	}

	.testimonial > h6 {
		font-weight: 600;
		font-style: italic;
	}

/* ==========================================================================
   =Team Member
   ========================================================================== */

	.team-member {
		position: relative;
		overflow: hidden;
		margin-bottom: 50px;
		text-align: center;
		-webkit-transition: box-shadow 0.3s;
				transition: box-shadow 0.3s;
	}

	.team-member img {
		display: block;
		width: 100%;
	}

	.team-member-description {
		position: absolute;
		bottom: 0;
		right: 0;
		left: 0;
		padding: 25px 15px;
		background-color: rgba(0, 132, 180, 0.9);
		-webkit-transition: bottom 0.3s;
				transition: bottom 0.3s;
	}

	.team-member-description h5 {
		margin-bottom: 0;
		color: #fff;
		font-weight: 700;
		text-transform: uppercase;
	}

	.team-member-description h6 {
		color: #fff;
		font-weight: 600;
	}

	.team-member .social-media {
		position: absolute;
		bottom: -72px;
		right: 0;
		left: 0;
		padding: 20px;
		background-color: #202020;
		-webkit-transition: bottom 0.3s;
				transition: bottom 0.3s;
	}

	.team-member .social-media a.social-icon { color: #fff; }

	.team-member:hover { box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.2); }

	.team-member:hover .social-media { bottom: 0; }

	.team-member:hover .team-member-description { bottom: 72px; }

	@media (min-width: 768px) and (max-width: 991px) {

		.team-member .social-media a.social-icon { margin-right: 12px; }
		.team-member .social-media a.social-icon:last-child { margin-right: 0; }

		.team-member .social-media a.social-icon i { font-size: 16px;  }

	}

/* ==========================================================================
   =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,
	.bx-wrapper .bx-pager.bx-default-pager a:focus {
		width: 7px;
		height: 7px;
		border-radius: 50%;
		background: #898989;
	}

	.bx-wrapper .bx-pager.bx-default-pager a:hover,
	.bx-wrapper .bx-pager.bx-default-pager a.active {
		background: #0084b4;
	}

	.bx-wrapper .bx-pager,
	.bx-wrapper .bx-controls-auto { bottom: 30px; }

/* =Bx Slider Dir Nav
   ========================================================================== */

	.bx-wrapper .bx-prev {
		left: 20px;
		background: #202020;
	}

	.bx-wrapper .bx-next {
		right: 20px;
		background: #202020;
	}

	.bx-wrapper .bx-prev:before { content: "\f060"; }
	.bx-wrapper .bx-next:before { content: "\f061"; }

	/*
	 * 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: 52px;
		height: 52px;
		overflow: hidden;
		z-index: 1000; /* 1 */
		margin-top: -26px;
		text-decoration: none;
		text-indent: 0;
		opacity: 0.5;
		-webkit-transition: opacity 0.3s;
				transition: opacity 0.3s;
	}

	.bx-wrapper .bx-controls-direction a:before {
		margin: 0 17px;
		font-family: "FontAwesome";
		color: #b8b8b8;
		font-size: 20px;
		line-height: 50px;
	}

	.bx-wrapper .bx-controls-direction a:hover { opacity: 1; }

	.blog-post-slider {
		padding: 35px 50px;
		background-color: #000;
	}

	.blog-post-slider .post-header { padding: 0; }

	.blog-post-slider .bx-wrapper { margin-bottom: 0; }

	.blog-post-slider .post { margin-bottom: 0; }

	.blog-post-slider .bx-wrapper .bx-pager,
	.blog-post-slider .bx-wrapper .bx-controls-auto { bottom: -80px; }

	.blog-post-slider-2 .bx-wrapper .bx-prev { left: -100px; }
	.blog-post-slider-2 .bx-wrapper .bx-next { right: -100px; }

	.clients-logos-slider { margin-bottom: 100px; }

	.clients-logos-slider h5 { margin-bottom: 20px; }

	.clients-logos-slider .social-media { padding-top: 50px; }

	.features-slider {
		padding: 90px 0;
		margin-right: -32px;
		text-align: right;
	}

	.features-slider-text { padding-top: 45px; }

	.features-slider img {
		display: inline-block;
		margin-top: 10px;
		margin-right: 15px;
	}

	.features-slider .bx-wrapper { margin-bottom: 0; }

	.features-slider .bx-wrapper .bx-pager,
	.features-slider .bx-wrapper .bx-controls-auto {
		bottom: -115px;
		right: 0;
		width: auto;
		margin-right: 73px;
		text-align: right;
	}

	.testimonial-slider { margin-bottom: 100px; }

	.testimonial-slider img { margin: 0 auto 50px auto; }

	.testimonial-slider .bx-wrapper .bx-pager,
	.testimonial-slider .bx-wrapper .bx-controls-auto { bottom: -30px; }

	@media (min-width: 1200px) {

		.features-slider { margin-right: -15px; }

		.features-slider img { margin-top: 0; }

	}

	@media (min-width: 768px) and (max-width: 991px) {

		.blog-post-slider { padding: 20px; }

		.features-slider { margin-right: -50px; }

		.features-slider img { margin-top: 35px; }

	}

	@media (max-width: 767px) {

		.blog-post-slider { padding: 20px; }

		.features-slider {
			margin-right: 0;
			margin-bottom: 100px;
			background: none !important;
		}

		.features-slider img { margin-top: 35px; }

	}

/* ==========================================================================
   =Custom Color Selected
   ========================================================================== */

   	.custom-color-selected {}

	.custom-color-selected a,
	.custom-color-selected h1,
	.custom-color-selected h2,
	.custom-color-selected h3,
	.custom-color-selected h4,
	.custom-color-selected h5,
	.custom-color-selected h6,
	.custom-color-selected .pie-chart .pie-chart-percent,
	.custom-color-selected .progress-bar-description,
	.custom-color-selected .progress-percentage,
	.custom-color-selected .portfolio-pagination .page-numbers.dots,
	.custom-color-selected .stone_widget_latest_posts ul li .title,
	.custom-color-selected .icon-box-1 > i { color: inherit !important; }

	.custom-color-selected .divider,
	.custom-color-selected .btn-white { border-color: inherit !important; }

	.custom-color-selected .stone_widget_contact_info ul li {
		padding-bottom: 0;
		border-bottom: none;
	}

	.custom-color-selected .vc_tta-panel-body { background-color: inherit !important; }
