/**
 * 	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
 *	=Contact form
 *	=Countdown
 *	=Dividers
 *  =Dropcaps
 *	=Google Maps
 *	=Headlines
 *	=Icon Boxes
 *  =Image Box
 *	=Info Box
 *	=Milestones
 *  =Modal window
 *	=Our Process
 *	=Animated Timeline
 *	=Pie charts
 *	=Pricing Tables
 *	=Progress Bar
 *	=Revolution Slider
 *	=Shop
 *	=Search Results
 *	=Social Media
 *	=Tabs
 *	=Testimonials
 *	=Team Member
 *	=Portfolio Item
 *	=Portfolio Filter
 *	=Portfolio Pagination
 *	=Portfolio Grid
 *	=Portfolio Strip
 *	=Bx Slider 
 *	=Nouislider
 *
 */
 
/* ==========================================================================
   =Accordions and Toggles
   ========================================================================== */

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

	.accordion .accordion-item {
		background-color: #151515;
		color: #ffffff;
		display: block;
		font-size: 13px;
		font-weight: 500;
		margin-bottom: 10px;
		padding: 15px 30px 15px 20px;
		position: relative;
		text-transform: uppercase;
	}
	
	.accordion.accordion-style-2 .accordion-item {
		margin-bottom: 0;
		border-bottom: 1px solid #66A1F1;
	}
	
	.accordion.accordion-style-3 .accordion-item { 
		background-color: transparent; 
		color: #151515; 
	}
	
	.accordion.accordion-style-3 .accordion-item:before {
		position: absolute;
		left: 0;
		bottom: 0;
		content: "";
		width: 50px;
		height: 1px;
		background-color: #66a1f1;
		-webkit-transition: all .6s;
				transition: all .6s;
	}
	
	.accordion.accordion-style-3 .accordion-item.active:before { width: 100%; }
	
	.accordion-item:after {
		position: absolute;
		top: 15px;
		right: 15px;
		font-size: 18px;
		content: "+";
	}
	
	.accordion-item.active:after { content: "-"; }
	
	.accordion-item:hover,
	.accordion-item.active { text-decoration: none; }
	
	.accordion-item-content { 
		display: none; 
		padding: 15px 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 .toggle-item {
		background-color: #151515;
		color: #ffffff;
		display: block;
		font-size: 13px;
		font-weight: 500;
		margin-bottom: 10px;
		padding: 15px 30px 15px 20px;
		position: relative;
		text-transform: uppercase;
	}
	
	.toggle-style-2 .toggle-item {
		margin-bottom: 0;
		border-bottom: 1px solid #66A1F1;
	}
	
	.toggle.toggle-style-3 .toggle-item { 
		background-color: transparent; 
		color: #151515; 
	}
	
	.toggle.toggle-style-3 .toggle-item:before {
		position: absolute;
		left: 0;
		bottom: 0;
		content: "";
		width: 50px;
		height: 1px;
		background-color: #66a1f1;
		-webkit-transition: all .6s;
				transition: all .6s;
	}
	
	.toggle.toggle-style-3 .toggle-item.active:before { width: 100%; }
	
	.toggle-item:after {
		position: absolute;
		top: 15px;
		right: 15px;
		font-size: 18px;
		content: "+";
	}
	
	.toggle-item.active:after { content: "-"; }
	
	.toggle-item:hover,
	.toggle-item.active { text-decoration: none; }
	
	.toggle-item-content { 
		display: none; 
		padding: 15px 0; 
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.toggle-item-content:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}

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

	.alert {
		margin-bottom: 30px;
		padding: 15px 20px;
		color: #151515;
		background-color: #ffffff;
		opacity: 1;
		box-shadow: 0 2px 3px 2px rgba(0, 0, 0, 0.3);
		-webkit-transition: opacity 0.6s;
				transition: opacity 0.6s;
	}
	
	.alert.success,
	.alert.info,
	.alert.warning,
	.alert.error { 
		border: none;
		color: #ffffff;
	}

	.alert.success { background-color: #4CAF50; }
	
	.alert.info {background-color: #2196F3;}
	
	.alert.warning {background-color: #ff9800;}
	
	.alert.error { background-color: #f44336; }

	.closebtn {
		margin-left: 15px;
		color: #ffffff;
		float: right;
		font-size: 22px;
		line-height: 20px;
		cursor: pointer;
		-webkit-transition: 0.5s;
				transition: 0.5s;
	}
	
	.alert .closebtn { color: #151515; }

	.closebtn:hover { 
		color: black; 
		-webkit-transform: rotate(180deg);
			-ms-transform: rotate(180deg);
				transform: rotate(180deg);
	}
	
/* ==========================================================================
   =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;
		text-align: center;
	}
	
	.box  > *:last-child { margin-bottom: 0; } 

	.box.box-style-1 { border: 1px solid #f3f3f3; }
	
	.box.box-style-2 {
		overflow: hidden;
		background-size: cover;
		background-color: #f3f3f3;
		background-repeat: no-repeat;
		-webkit-transition: all .3s;
				transition: all .3s;
	}

	.box.box-style-2.text-light { 
		background-color: #151515;
		color: #ffffff;
	}
	
	.box.box-style-2.text-light * { color: #ffffff; }

	.boxes-section {}
	
	.boxes-section .box {
		position: relative;
		float: left;
		width: 33.333333%;
		margin-bottom: 0;
		padding: 50px 30px;
		box-sizing: border-box;
		-webkit-transition: all .3s linear;
				transition: all .3s linear;
	}
	
	.boxes-section .box-content {
		position: relative; 
		z-index: 2; 
	}
	
	.boxes-section .box .box-overlay-1,
	.boxes-section .box .box-overlay-2,
	.boxes-section .box .box-overlay-3 	{
		position: absolute;
		z-index: 1; 
		top: 0;
		right: 0; 
		bottom: 0;
		left: 0;
		background-color: #66A1F1;
	} 
	
	.boxes-section .box .box-overlay-1 { opacity: .5; }
	
	.boxes-section .box .box-overlay-2 { opacity: .7; }
	
	.boxes-section .box .box-overlay-3 { opacity: .9; }
	
	.boxes-section .widget { margin-bottom: 0; }
	
	.boxes-section .ewf_widget_contact_info.style-2 { box-shadow: none; }
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.box:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	.boxes-section:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	@media (min-width: 1200px) {
	
		.boxes-section .box { padding: 150px 100px; }
		
	}
	
	@media (max-width: 767px) {
		
		.box { 
			margin-bottom: 30px;
			padding: 50px 20px 50px 20px; 
		}
		
		.box:last-child { margin-bottom: 50px; }
		
		.boxes-section .box {
			float: none;
			width: 100%;
			margin-bottom: 0;
		}
		
	}
	
/* ==========================================================================
   =Buttons
   ========================================================================== */

/* =Default Button
   ========================================================================== */
   
	.btn { 
		position: relative;
		display: inline-block; 
		padding: 15px 30px; 
		margin: 0 0 20px 0;
		background-color: #66a1f1;
		color: #ffffff;
		line-height: 18px; 
		font-weight: 300;
		text-decoration: none !important;
		vertical-align: middle;
		cursor: pointer;
		text-align: center;
	}
	
	a.btn { color: #ffffff; }
	
	.btn:focus { outline: 0; }
	
	.btn-large { padding: 18px 40px; }
	
	.btn i,
	.btn-large i { 
		float: left; 
		margin: 2px 8px 0 -4px;
		font-size: 14px; 
		line-height: 14px; 
	}

	.btn:before,
	.btn:after {
	  content: "";
	  position: absolute;
	  height: 0;
	  width: 0;
	  border: 0px solid #66a1f1;
	}

	.btn:before {
	  top: -2px;
	  right: -2px;
	}

	.btn:after {
	  bottom: -2px;
	  left: -2px;
	}

	.btn:hover:before,
	.btn:hover:after {
	  width: 100%;
	  height: 100%;
	  border: 2px solid #66a1f1;
	}

	.btn:hover:before {
	  border-bottom-color: transparent;
	  border-right-color: transparent;
	  -webkit-transition: width 0.3s 0s, height 0.6s ;
			  transition: width 0.3s 0s, height 0.6s ;
	}

	.btn:hover:after {
	  border-top-color: transparent;
	  border-left-color: transparent;
	  -webkit-transition: width 0.3s , height 0.6s , border 0s ;
			  transition: width 0.3s , height 0.6s , border 0s ;
	}

	.btn:hover,
	a.btn:hover {
	  background: transparent;
	  color: #66a1f1;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.btn { padding: 10px 20px; }
		
	}

/* =Button alternative
   ========================================================================== */	
   
	.btn.alt { background-color: #ececee; }

	.btn.alt:before,
	.btn.alt:after { border: 0px solid #ececee; }

	.btn.alt:hover:before,
	.btn.alt:hover:after { border: 2px solid #ececee; }

	.btn.alt:hover:before {
	  border-bottom-color: transparent;
	  border-right-color: transparent;
	}

	.btn.alt:hover:after {
	  border-top-color: transparent;
	  border-left-color: transparent;
	}

	.btn.alt:hover {
	  background: transparent;
	  color: #ddd;
	}

/* =Colored Buttons
   ========================================================================== */
	
 	.btn.white { 
		background-color: #ffffff;
		color: #151515;
		border: 2px solid #66a1f1;
	}

	.btn.white:before,
	.btn.white:after { border: 0px solid #ffffff; }

	.btn.white:hover:before,
	.btn.white:hover:after { border: 2px solid #ffffff; }

	.btn.white:hover:before {
	  border-bottom-color: transparent;
	  border-right-color: transparent;
	}

	.btn.white:hover:after {
	  border-top-color: transparent;
	  border-left-color: transparent;
	}

	.btn.white:hover,
	a.btn.white:hover {
	  background: transparent;
	  color: #242424;
	}

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

	.callout { 
		position: relative;
		display: table;
		width: 100%;
		padding: 30px 0; 
	}
	
	.callout.style-2 { 
		display: block;
		text-align: center;
	}

	.callout-content > *:last-child,
	.callout-action > *:last-child { margin-bottom: 0; }

	/*
	 * 1. Clearfix hack 
	 */
	 
	.callout:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	.callout-content,
	.callout-action {
		display: table-cell;
		vertical-align: middle;
	}
	
	.callout-content { width: 70%; }
	
	.callout-action { width: 30%; }
	
	.callout-action .btn {
		margin: 0; 
	}
	
	.callout.style-2 .callout-content,
	.callout.style-2 .callout-action {
		display: block;
		width: 100%;
	}
	
	.callout.style-2 .callout-content { margin-bottom: 40px; }
	
	.callout-action { text-align: center; }
	
	.callout-content h3 { line-height: 24px; }
	
	@media (max-width: 767px) {
		
		.callout {
			display: block;
		}
		
		.callout-content,
		.callout-action {
			display: block;
			width: 100%;
		}
		
		.callout-content { 
			text-align: center; 
			margin-bottom: 26px; 
		}
		
		.callout-content h3 { line-height: 34px; }
		
	}
	
/* ==========================================================================
   =Clients
   ========================================================================== */	

	.clients-list {  
		display: block;
		margin: 80px 0;
		list-style-type: none;
	}
	
	.clients-list.clients-list-style-2 { margin: 0; }
	
		/*
	 * 1. Clearfix hack 
	 */
	 
	.clients-list:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	.clients-list li {
		float: left;
		width: 16.6667%;
		margin: 0;
		line-height: 150px;
		text-align: center;
	}
	
	.clients-list.clients-list-style-2 li { 
		box-sizing: border-box;
		border-right: 1px solid #fff; 
		background-color: #66A1F1;
	}
	
	.clients-list img {}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.clients-list li { line-height: 100px; }
		
	}
	
	@media (max-width: 767px) {
		
		.clients-list li {
			width: 50%;
			border-bottom: 1px solid #ffffff;
		}
		
	}

/* ==========================================================================
   =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 #ececee; }
	
	#contact-form #formstatus {}
		
	#contact-form textarea { margin-bottom: 50px; }	
	
	.contact-form-wrapper {
		display: flex; 
		align-items: center;
	}
	
	.contact-form-wrapper #contact-form { margin-bottom: 0; }
	
	/*
	 * 1. Clearfix hack 
	 */
	#contact-form:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
/* ==========================================================================
   =Countdown
   ========================================================================== */

	#defaultCountdown { 
		margin: 0 auto;
		padding-left: 20px;
		text-align: center;
	}

	.countdown-section {
		position: relative;
		display: inline-block;
		width: 90px;
		padding: 60px 0;
		margin-right: 50px;
		background-color: transparent;
		text-align: center;
	}
	
	.countdown-section:last-child { margin-right: 0; }
	
 	.countdown-amount {
		font-size: 42px;
		font-weight: 700;
		color: #ffffff;
	}
	
	.countdown-period { 
		display: block; 
		margin-top: 20px; 
		font-size: 16px;
		font-weight: 700;
	}

	/*
	 * 1. Clearfix hack 
	 */
	#defaultCountdown:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (min-width: 1200px) {
		
		.countdown-section {
			width: 90px;
			padding: 60px 0;
			margin-right: 50px;
		}
		
		.countdown-amount {
			font-size: 60px;
			font-weight: 700;
			color: #ffffff;
		}
		
	}

	@media (min-width: 768px) and (max-width: 991px) {
		
		.countdown-section { 
			width: 90px; 
			margin-right: 30px;
		}
		
	}
	
	@media (max-width: 767px) {
		
		#defaultCountdown { margin-top: 110px; }
		
		.countdown-section {
			display: block;
			width: 100%;
			margin: 0 auto 50px;
			padding: 0;
		}
		
		.countdown-section:last-child {
			margin-right: auto;
			margin-bottom: 0;
		}
		
		.countdown-amount { font-size: 30px; }
		
	}	
	
/* ==========================================================================
   =Dividers
   ========================================================================== */

	.divider { margin: 40px 0; }
	
	.divider.single-line { border-top: 1px solid #ececee; }
	
	.divider.logo { 
		position: relative;
		z-index: 1;
		border-top: 1px solid #ececee;
	}
	
	.divider.logo:before {
		position: absolute;
		z-index: 2;
		top: 50%;
		left: 50%;
		content: "";
		width: 50px;
		height: 50px;
		padding: 0 30px;
		background-image: url('../../assets/images/logo-default.png');
		background-repeat: no-repeat;
		background-color: #ffffff;
		background-position: center center;
		-webkit-transform : translateX(-50%) translateY(-50%);
			-ms-transform : translateX(-50%) translateY(-50%);
				transform : translateX(-50%) translateY(-50%);	
	}
	
	.divider.double-line { border-top: 4px double #ececee; }
	
	.divider.gradient { 
	  border: 0; 
	  height: 1px; 
	  background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
	  background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
	  background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
	  background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0); 
	}
	
	.divider.shadow {
		height: 10px;
		border: 0;
		box-shadow: 0 10px 10px -10px #8c8b8b inset;
	}

/* ==========================================================================
   =Dropcaps
   ========================================================================== */
   
	.dropcap {
		float: left;
		display: block;
		margin: 5px 10px 0 0;
		font-size: 34px;
		line-height: 34px;
	}
	
	.dropcap.dropcap-square {
		width: 34px;
		height: 34px;
		border-radius: 2px;
		background-color: #66a1f1;		
		color: #ffffff;
		font-size: 20px;		
		line-height: 34px;
		text-align: center;
	}
	
	.dropcap.dropcap-circle {
		width: 34px;
		height: 34px;
		border-radius: 50%;
		background-color: #66a1f1;		
		color: #ffffff;
		font-size: 20px;		
		line-height: 34px;
		text-align: center;
	}
	
	.dropcap.dropcap-border {
		width: 34px;
		height: 34px;
		border-radius: 50%;	
		font-size: 20px;		
		line-height: 34px;
		text-align: center;
		border: 2px solid #66a1f1;
	}
	
/* ==========================================================================
   =Google Maps
   ========================================================================== */
	 
	/**
	 * 1. needed so that Google Maps controls are not distorted
	 */
	
	.google-map  img { max-width: none; }	/* 1 */
	
	.map { margin-bottom: 40px; }
	
	.map.last { margin-bottom: 0; }
	
	@media (max-width: 767px) {

		.map { 
			height: 300px !important;
			padding: 0 20px; 
		}
		
		.row .map { padding: 0; }
		
	}

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

	.headline {  margin-bottom: 50px;  }
	
	.headline h1 {
		display: inline-block;
		position: relative;
		padding-bottom: 26px;
		
	}
	
	.headline h1:before {
		position: absolute;
		bottom: 0;
		content: "";
		width: 50px;
		height: 1px;
		background-color: #66a1f1;
	}
	
	.headline.headline-style-1 h1:before { left: 0; }
	
	.headline.headline-style-2 h1:before { right: 0; }
	
	@keyframes example {
		0% {left: 0;}
		50% {left: calc(100% - 50px);}
		100% {left: 0;}
	}
	
	.headline.headline-style-3 h1:before {
		left: 0;
		animation-name: example;
		animation-duration: 6s;
		animation-iteration-count: infinite;
	}
	
	.headline.headline-style-4 h1:before {
		left: 50%;
		-webkit-transform: translateX(-50%);
			-ms-transform: translateX(-50%);
				transform: translateX(-50%);
	}
	
/* ==========================================================================
   =Icon Boxes
   ========================================================================== */

/* =Icon Box 1
   ========================================================================== */
   
	.icon-box-1 { 
		position: relative; 
		margin-bottom: 26px;
		padding: 39px 39px 52px;
		-webkit-transition: all .3s linear;
			transition: all .3s linear;	
		border: 1px solid #ffffff;	
	}
	
	.icon-box-1:hover { border: 1px solid #eee; }
		
	.icon-box-1 > i { 
		float: left;
		display: block;  
		color: #151515;
		font-size: 42px;
		line-height: 42px; 
		-webkit-transition: all .3s linear;
			transition: all .3s linear;	
	} 
	
	.icon-box-1 > img {} 
	
	.icon-box-1 .icon-box-content { margin-left: 79px; }
	
	.icon-box-1 .icon-box-content > *:last-child { margin-bottom: 0; }

	.icon-box-1 .icon-box-content h4 { margin-bottom: 26px; }
	
	.icon-box-1 .icon-box-content h4 a { 
		position: relative;
		display: inline-block;
		padding-bottom: 20px;
		color: #151515; 
		-webkit-transition: all .3s linear;
				transition: all .3s linear;	
	}	
	
	.icon-box-1 .icon-box-content h4 a:hover { color: #151515; }
	
	.icon-box-1 .icon-box-content h4 a:before {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 50px;
		height: 1px;
		content: "";
		background-color: #66a1f1;
		-webkit-transition: all .3s linear;
				transition: all .3s linear;
		-webkit-transition-delay: .1s;
			transition-delay: .1s;	
	}
	
	.icon-box-1:hover .icon-box-content h4 a:before { width: 100%; }
	
	.icon-box-1 .btn { margin: 0; }
	
	@media (min-width: 1200px) {
	
		
	}
	
	@media (max-width: 991px) {
		
		.icon-box-1 > i { 
			float: none;
			margin-bottom: 30px;
			text-align: center;
		} 
		
		.icon-box-1 .icon-box-content { margin-left: 0; }
		
		.icon-box-1 .icon-box-content h4 { text-align: center; }

		.icon-box-1 .icon-box-content h4 a:before {
			left: 50%;
			-webkit-transform: translateX(-50%);
				-ms-transform: translateX(-50%);
					transform: translateX(-50%);
		}
		
	}

/* =Icon Box 2
   ========================================================================== */
   
	.icon-box-2 { 
		position: relative; 
		margin-bottom: 30px; 
	 	padding: 0 20px; 
		text-align: center;
		overflow: hidden;
		box-sizing: border-box;
		-webkit-transition: all .3s linear;
				transition: all .3s linear;
	}
	
	.icon-box-2 > i { 
		display: block;
		margin-bottom: 35px; 
		color: #151515;
		font-size: 50px;
	}

	.icon-box-2 > img {}
	
	.icon-box-2 .icon-box-content {}
	
	.icon-box-2 .icon-box-content > *:last-child { margin-bottom: 0; }
	
	.icon-box-2 .icon-box-content h4 { margin-bottom: 25px; }	
	
	.icon-box-2 .icon-box-content h4 a { 
		position: relative;
		display: inline-block;
		padding-bottom: 20px;
		color: #151515; 
		-webkit-transition: all .3s linear;
				transition: all .3s linear;	
	}	
	
	.icon-box-2 .icon-box-content h4 a:before {
		position: absolute;
		bottom: 0;
		left: 50%;
		width: 50px;
		height: 1px;
		content: "";
		background-color: #66a1f1;
		-webkit-transition: all .3s linear;
				transition: all .3s linear;	
		-webkit-transform : translateX(-50%);
			-ms-transform : translateX(-50%);
				transform : translateX(-50%);
	}
	
	.icon-box-2:hover .icon-box-content h4 a:before { width: 100%; }
	
	.icon-box-2 .icon-box-content p { margin-bottom: 0; }
	
	.icon-box-2 .icon-box-details {}
	
	
	@media (min-width: 1200px) {
	
		.icon-box-2 { padding: 0 40px; }
		
	}

/* =Icon Box 3
   ========================================================================== */
   
	.icon-box-3 { 
		position: relative; 
		box-sizing: border-box;
		margin-bottom: 50px;
		padding: 30px;
		-webkit-transition: all .3s linear;
				transition: all .3s linear;
	}	
	
	.icon-box-3:hover {
		background-color: #66a1f1;
		box-shadow: 0 2px 3px 2px rgba(0, 0, 0, 0.3);
		color: #ffffff;
	}
	
	.icon-box-3 > i { 
		float: left;
		margin-right: 20px;		 
		color: #151515;
		font-size: 50px;
		-webkit-transition: all .3s linear;
			transition: all .3s linear;
	} 
	
	.icon-box-3:hover > i { color: #ffffff; }
	
	.icon-box-3 > img {} 
	
	.icon-box-3 .icon-box-content {}
	
	.icon-box-3 .icon-box-content > *:last-child { margin-bottom: 0; }

	.icon-box-3 .icon-box-content h4 { margin-bottom: 25px; }
	
	.icon-box-3 .icon-box-content h4 a { 
		position: relative;
		display: inline-block;
		padding-bottom: 20px;
		color: #151515; 
		-webkit-transition: all .3s linear;
				transition: all .3s linear;	
	}	
	
	.icon-box-3:hover .icon-box-content h4 a { color: #ffffff; }
	
	.icon-box-3 .icon-box-content h4 a:hover { color: #ffffff; }
	
	.icon-box-3 .icon-box-content h4 a:before {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 50px;
		height: 1px;
		content: "";
		background-color: #66a1f1;
		-webkit-transition: all .3s linear;
				transition: all .3s linear;	
		-webkit-transition-delay: .1s;
			transition-delay: .1s;	
	}
	
	.icon-box-3:hover .icon-box-content h4 a:before {
		width: 100%;
		background-color: #ffffff;
	}
	
	.icon-box-3:hover .btn { 
		background-color: #ffffff;
		color: #66a1f1;
	}

	.icon-box-3 .btn:hover:before {
	  -webkit-transition: none ;
			  transition: none ;
	}

	.icon-box-3 .btn:hover:after {
	  -webkit-transition: none;
			  transition: none ;
	}

/* =Icon Box 4
   ========================================================================== */
   
	.icon-box-4 { 
		position: relative; 
		margin-bottom: 30px;
		border: 2px solid transparent;
	 	padding: 30px; 
		text-align: center;
		box-sizing: border-box;
		-webkit-transition: all .3s linear;
				transition: all .3s linear;
	}
	
	.icon-box-4:hover { border-color: #66a1f1; }
	
	.icon-box-4 > i { 
		display: block;
		margin-bottom: 35px; 
		color: #151515;
		font-size: 60px;
	}

	.icon-box-4 > img {}
	
	.icon-box-4 .icon-box-content {}
	
	.icon-box-4 .icon-box-content > *:last-child { margin-bottom: 0; }
	
	.icon-box-4 .icon-box-content h4 { margin-bottom: 25px; }	
	
	.icon-box-4 .icon-box-content h4 a { 
		position: relative;
		display: inline-block;
		padding-bottom: 20px;
		color: #151515; 
		-webkit-transition: all .3s linear;
				transition: all .3s linear;	
	}	
	
	.icon-box-4 .icon-box-content h4 a:before {
		position: absolute;
		bottom: 0;
		left: 50%;
		width: 50px;
		height: 1px;
		content: "";
		background-color: #66a1f1;
		-webkit-transition: all .3s linear;
				transition: all .3s linear;	
		-webkit-transform : translateX(-50%);
			-ms-transform : translateX(-50%);
				transform : translateX(-50%);
	}
	
	.icon-box-4:hover .icon-box-content h4 a:before { width: 100%; }
	
	.icon-box-4 .icon-box-content p { margin-bottom: 0; }
	
	.icon-box-4 .icon-box-details {}

/* =Icon Box 5
   ========================================================================== */
   
	.icon-box-5 { 
		position: relative; 
		margin-bottom: 30px;
		padding: 80px 20px 80px 20px;
		text-align: center;
		overflow: hidden;
		background-image: url('../../content/backgrounds/470x470-1.jpg');
		background-repeat: no-repeat;
		background-size: cover;
		-webkit-transition: all .3s linear;
				transition: all .3s linear;
	}	
	
	.icon-box-5 .icon-box-content {
		position: relative; 
		z-index: 2; 
	}
	
	.icon-box-5 .icon-box-overlay {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		right: 0;
		z-index: 1;
		content: "";
		-webkit-transition: all .3s linear;
				transition: all .3s linear;
	}
	
	.icon-box-5:hover .icon-box-overlay { background-color: rgba(102, 161, 241, .7); }
		
	.icon-box-5 > i { 
		position: relative;
		z-index: 2;
		display: block;
		margin-bottom: 70px;
		color: #ffffff;
		font-size: 60px;
	} 
	
	.icon-box-5 .icon-box-content { 
		color: #ffffff;	
		text-align: center; 
	}	
	
	.icon-box-5 .icon-box-content > *:last-child { margin-bottom: 0; }
	
	.icon-box-5 .icon-box-content h4 {
		position: relative;
		z-index: 2;
		margin-bottom: 26px;
	}

	.icon-box-5 .icon-box-content h4 a { color: #ffffff; }
	
	.icon-box-5 .icon-box-content p {
		position: relative;
		z-index: 2;
	}
	
	.icon-box-5:hover .icon-box-content p {
		opacity: 1;
		bottom: 10%;
	}
	
	.icon-box-5 .btn {
		position: relative;
		z-index: 2;
	}
	
	.icon-box-5:hover .btn { 
		background-color: #ffffff;
		color: #66a1f1;
	}

	.icon-box-5 .btn:hover:before {
	  -webkit-transition: none ;
			  transition: none ;
	}

	.icon-box-5 .btn:hover:after {
	  -webkit-transition: none;
			  transition: none ;
	}

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

	.image-box {
		overflow: hidden;
		padding: 30px;
		margin-bottom: 30px;	
		border: 2px solid #f3f3f3;
		box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.03);
		text-align: center;
	}
	
	.image-box.dark {
		background-color: #151515;
		color: #ffffff;
	}
	
	.image-box-img { 
		position: relative;
		margin: -30px -30px 30px; 
	}
	
	.image-box-img:before {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 0;
		height: 1px;
		content: "";
		background-color: #66A1F1;
		-webkit-transition: all .5s;
				transition: all .5s;
		-webkit-transform: translateX(-50%);
			-ms-transform: translateX(-50%);
				transform: translateX(-50%);		
	}
	
	.image-box:hover .image-box-img:before { width: 100px; } 

	.image-box-img  img {
		display: block;
		width: 100%;
	}
	
	.image-box > *:last-child { margin-bottom: 0; }
	
	.image-box-number {
		position: absolute;
		top: 30%;
		left: 50%; 
		color: #66A1F1;
		font-size: 30px;
		opacity: 0;
		-webkit-transition: all .5s;
				transition: all .5s;
		-webkit-transition-delay: .2s; 
		transition-delay: .2s;
		-webkit-transform: translateY(-100%) translateX(-50%);
			-ms-transform: translateY(-100%) translateX(-50%);
				transform: translateY(-100%) translateX(-50%);
	}
	
	.image-box:hover .image-box-number {
		top: 50%;
		opacity: 1;
	}

/* ==========================================================================
   =Info Box
   ========================================================================== */
	
	.info-box {
		position: relative;
		overflow: hidden;
		padding: 110px 0;
	}
	
	.info-box-1 {
		margin-bottom: 110px;
		padding: 145px 0 100px 0;
		background-color: #333333;
		color: #ffffff;
	}

	.info-box-img {
		position: absolute;
		z-index: 0;
		top: 0;
		width: 50%;
		height: 100%;
		background: no-repeat center center;
		background-size: cover;
	}
	
	.info-box-bg-left .info-box-img { left: 0; }

	.info-box-bg-right .info-box-img { right: 0; }
	
	.info-box-2  { background-color: #f1f1f1; }
	
	.info-box-img img { display: none; }
	
	.info-box-1 .headline h1,
	.info-box-1 h5,
	.info-box-1 .pie-chart .pie-chart-percent { color: #ffffff; }
	
	@media (max-width: 767px) {
		
		.info-box { padding: 50px 20px 20px 20px; } 
		
		.info-box-img,
		.info-box-1 .info-box-img, 
		.info-box-2 .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: 50px;
		}
		
		.info-box-1 img { margin: 40px 0; }
		
	}
   		
   
/* ==========================================================================
   =Milestones
   ========================================================================== */

	.milestone {
		position: relative;
		margin-bottom: 40px;
		text-align: center;
	}
	
	.milestone.milestone-boxed {
		padding: 30px;
		border: 2px solid #66A1F1;
		box-shadow: 0 0 1px 5px rgba(102, 161, 241, 0.4);	
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	.milestone:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	.milestone .milestone-content {
		font-size: 26px;
		line-height: 32px;
	}
	
	.milestone i {
		display: block;
		margin-bottom: 50px;
		font-size: 40px;
	}
	
	.milestone-value {
		display: block;
		margin-bottom: 26px;
		font-size: 56px;
		font-weight: 200;
		color: #151515;	
	}

	.milestone .milestone-description { 
		font-size: 14px;
		font-weight: 300;
		line-height: 26px;
		padding-bottom: 26px;
		position: relative;
		text-transform: uppercase;
	}
	
	.milestone .milestone-description:before {
		position: absolute;
		bottom: 0;
		left: 50%;
		content: "";
		width: 50px;
		height: 1px;
		background-color: #66a1f1;
		-webkit-transform: translateX(-50%);
			-moz-transform: translateX(-50%);
				transform: translateX(-50%);
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.milestone-value {
			font-size: 42px;
		}
		
	}
	
/* ==========================================================================
   =Modal window
   ========================================================================== */	
   
	.white-popup {
		position: relative;
		width: auto;
		max-width: 500px;
		padding: 20px;
		margin: 20px auto;
		background: #ffffff;
		text-align: center;
	}	
	
	.white-popup .btn { margin: 0; }
	
	.mfp-fade.mfp-bg {
	  opacity: 0;
	  -webkit-transition: all 0.2s ease-out;
	  -moz-transition: all 0.2s ease-out;
	  transition: all 0.2s ease-out;
	}
	
	.mfp-image-holder .mfp-close,
	.mfp-iframe-holder .mfp-close { background-color: transparent; }
	
	/* overlay animate in */
	.mfp-fade.mfp-bg.mfp-ready {
	  opacity: 0.8;
	}
	/* overlay animate out */
	.mfp-fade.mfp-bg.mfp-removing {
	  opacity: 0;
	}

	/* content at start */
	.mfp-fade.mfp-wrap .mfp-content {
	  opacity: 0;
	  -webkit-transition: all 0.3s ease-out;
		-moz-transition: all 0.3s ease-out;
			 transition: all 0.3s ease-out;
	  -webkit-transform: translateY(-200px);		
		 -ms-transform: translateY(-200px);		
			 transform: translateY(-200px);		
	}
	/* content animate it */
	.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	  opacity: 1;
	   -webkit-transform: translateY(0);
			-ms-transform: translateY(0);
				transform: translateY(0);
	}
	/* content animate out */
	.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	  opacity: 0;
	   -webkit-transform: translateY(-200px);		
		 -ms-transform: translateY(-200px);		
			 transform: translateY(-200px);
	}

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

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

	.horizontal-process-builder { 
		position: relative;
		margin-bottom: 40px;
		list-style: none;
		text-align: center; 
	}
	
	.horizontal-process-builder:before {
		position: absolute;
		z-index: 1;
		top: 60px;
		left: 130px;
		display: block;
		width: 75%;
		border-top: 1px solid #f3f3f3;
		content: "";
	}
	
	.horizontal-process-builder li { 
		float: left;
		width: 25%;  
		-webkit-transition: all 0.3s ease-in-out 0s;
				transition: all 0.3s ease-in-out 0s;
	}
	
	.horizontal-process-builder li i,
	.horizontal-process-builder li h1 {
		position: relative;
		z-index: 2;
		display: block;
		width: 120px; 
		height: 120px;
		overflow: hidden;   
		margin: 0 auto 20px;
		background-color: #66A1F1;
		background-clip: padding-box;
		color: #ffffff;
		font-size: 38px; 
		line-height: 120px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 
	}
	
	.process-description { padding: 20px; }
	
	.horizontal-process-builder li:hover i,
	.horizontal-process-builder li:hover h1 { 
		-webkit-transform: scale(1.05);
			-ms-transform: scale(1.05);
				transform: scale(1.05);
	}

	.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%; }

	/*
	 * 1. Clearfix hack 
	 */
	.horizontal-process-builder:after { /* 1 */
		visibility: hidden;
		display: block;
		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%; }
		
	}
	
/* ==========================================================================
   =Animated Timeline
   ========================================================================== */
   
	.timeline {
		margin-bottom: 50px;
		padding-left: 160px;
		position: relative;
		list-style: outside none none;
	}
	
	.timeline li { margin-bottom: 40px; }
	
	.timeline li:last-child {
		border-bottom: medium none;
		margin-bottom: 0;
	}
	
	.timeline-title {
		cursor: pointer;
		position: relative;
	}
	
	.timeline-title:before {
		display: block;
		position: absolute;
		left: -68px;
		top: 8px;
		content: "";
		width: 10px;
		height: 10px;
		background-color: #66a1f1;
		border-radius: 50%;
	}
	
	.timeline-title:after {
		position: absolute;
		top: 4px;
		left: -72px;
		display: block;
		width: 16px;
		height: 16px;
		border: 1px solid transparent;
		border-radius: 50%;
		content: "";
		-webkit-transition: all 0.3s ease 0s;
				transition: all 0.3s ease 0s;
	}
	
	.timeline-title h6 {
		position: absolute;
		left: -160px;
		display: inline-block;
		margin-bottom: 0;
	}
	
	.timeline-title h5 {
		display: inline-block;
		margin-bottom: 0;
		text-transform: uppercase;	
	}
	
	.timeline-content {
		display: none;
		padding-top: 30px;
		padding-right: 15px;
		position: relative;
	}
	
	.timeline-content:before {
		border-left: 1px solid #b0b0b0;
		content: "";
		display: block;
		height: 100%;
		left: -64px;
		position: absolute;
		top: 20px;
		-webkit-transition: all 0.3s ease 0s;
				transition: all 0.3s ease 0s;
	}
	
	.timeline-content i {
		background-color: #f85b38;
		border-radius: 30px;
		color: #ffffff;
		display: inline-block;
		font-size: 32px;
		height: 130px;
		line-height: 130px;
		margin-top: -20px;
		text-align: center;
		transform: rotate(15deg);
		width: 130px;
	}
	
	.timeline-title:hover:after, 
	.timeline-title.opened:after { border-color: #66a1f1; }
	
	@media (max-width: 767px) {
		
		.timeline-content i { margin-top: 0; }
		
		.timeline-title h6 { left: -140px; }
		
	}

/* ==========================================================================
   =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: #151515;
		text-align: center;
	}
	
	.pie-chart img {
		max-width: 100%;
		vertical-align: middle;
	}
	
	.pie-chart .pie-chart-custom-text { font-size: 18px; }
	
	.pie-chart .pie-chart-percent {
		font-size: 26px;
		font-weight: 200;
	}
	
	.pie-chart-description {
		display: block;
		font-size: 18px;
		text-align: center;
		font-weight: 300;
		margin-bottom: 26px;
	}

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

	.pricing-table {
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 40px 20px;
		border: 2px solid #f3f3f3;
		margin-bottom: 30px;
		text-align: center;
		-webkit-transition: all 0.5s;
				transition: all 0.5s;
	}
	
	.pricing-table.style-2 { padding: 0; }
	
	.pricing-table:hover {
		-webkit-transform: translateY(-10px);
			-ms-transform: translateY(-10px);
				transform: translateY(-10px);
	}

	.pricing-table-header {}
	
	.pricing-table.style-2 .pricing-table-header {
		position: relative;
		margin-bottom: 40px;
		padding: 80px 0 100px 0;
		background-image: url(../../content/backgrounds/470x470-1.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		color: #ffffff;
	}

	.pricing-table-header h4 {
		position: relative;
		padding-bottom: 26px;
		margin-bottom: 25px;
	}
	
	.pricing-table-header h1 { margin-bottom: 30px; font-size: 50px; }
	
	.pricing-table-header h1 sup { font-size: 18px; }
	
	.pricing-table-header h1 span { font-size: 24px; }
	
	.pricing-table.style-2 .pricing-table-header h4 { margin-bottom: 25px; }
	
	.pricing-table-header h4:before {
		position: absolute;
		bottom: 0;
		left: 50%;
		content: "";
		width: 0;
		height: 1px;
		background-color: #66A1F1;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
		-webkit-transform: translateX(-50%);
			-ms-transform: translateX(-50%);
				transform: translateX(-50%);
	}
	
	.pricing-table:hover .pricing-table-header h4:before { width: 80px; }
	
	.pricing-table.style-2 .pricing-table-header h4,
	.pricing-table.style-2 .pricing-table-header h1 { color: #ffffff; }
		
	.pricing-table-offer { margin-bottom: 30px; }
	
	.pricing-table.style-2 .pricing-table-offer { margin-bottom: 0; }
	
	.pricing-table-offer ul { list-style: none; }
	
	.pricing-table.style-2 .pricing-table-offer ul { 
		margin-bottom: 40px; 
		padding: 0 20px; 
	}
	
	.pricing-table-offer ul li { 
		border-top: 1px solid #f3f3f3; 
		padding: 10px 0; 
	}
	
	.pricing-table-offer ul li:first-child { border-top: none; }
	
	.pricing-table .btn { margin: 0; }
	
	.pricing-table.style-2 .btn {
		position: absolute;
		bottom: 30px;
		left: 50%;
		-webkit-transform: translateX(-50%);
			-ms-transform: translateX(-50%);
				transform: translateX(-50%);
	}
	
/* =Animated Tables
   ========================================================================== */

	.cd-pricing-container {}

	.cd-pricing-switcher { text-align: center; }

	.cd-pricing-switcher .fieldset {
		position: relative;
		display: inline-block;
		margin-bottom: 100px;
		background-color: #000;
	}

	.cd-pricing-switcher input[type="radio"] {
		position: absolute;
		opacity: 0;
	}

	.cd-pricing-switcher label {
		position: relative;
		z-index: 1;
		display: inline-block;
		width: 200px;
		height: 40px;
		top: 0;
		bottom: 0;
		float: left;
		border-right: none;
		cursor: pointer;
		color: #ffffff;
		text-transform: uppercase;
		font-size: 16px;
		font-style: normal;
		line-height: 40px; 
	}

	.cd-pricing-switcher input[type="radio"] + label {
		margin-bottom: 0;
		margin-left: 0;
		margin-right: 0;
	}

	.cd-pricing-switcher .cd-switch {
		/* floating background */
		position: absolute;
		top: 0;
		left: 0;
		height: 40px;
		width: 200px;
		background-color: #66A0F0;
		-webkit-transition: -webkit-transform 0.5s;
		-moz-transition: -moz-transform 0.5s;
		transition: transform 0.5s;
	}
	
	.cd-pricing-switcher input[type="radio"]:checked + label + .cd-switch,
	.cd-pricing-switcher input[type="radio"]:checked + label:nth-of-type(n) + .cd-switch {
		/* use label:nth-of-type(n) to fix a bug on safari with multiple adjacent-sibling selectors*/
		-webkit-transform: translateX(200px);
		-moz-transform: translateX(200px);
		-ms-transform: translateX(200px);
		-o-transform: translateX(200px);
		transform: translateX(200px);
	}

	.cd-pricing-list {}
	
	.cd-pricing-list .cd-pricing-list-item { position: relative; }

	.cd-pricing-wrapper {
		/* this is the item that rotates */
		position: relative;
		list-style-type: none;
	}
	.touch .cd-pricing-wrapper {
		/* fix a bug on IOS8 - rotating elements dissapear*/
		-webkit-perspective: 2000px;
		-moz-perspective: 2000px;
		perspective: 2000px;
	}
	
	.cd-pricing-wrapper.is-switched .is-visible {
		/* totate the tables - anticlockwise rotation */
		-webkit-transform: rotateY(180deg);
		-moz-transform: rotateY(180deg);
		-ms-transform: rotateY(180deg);
		-o-transform: rotateY(180deg);
		transform: rotateY(180deg);
		-webkit-animation: cd-rotate 0.5s;
		-moz-animation: cd-rotate 0.5s;
		animation: cd-rotate 0.5s;
	}
	.cd-pricing-wrapper.is-switched .is-hidden {
		/* totate the tables - anticlockwise rotation */
		-webkit-transform: rotateY(0);
		-moz-transform: rotateY(0);
		-ms-transform: rotateY(0);
		-o-transform: rotateY(0);
		transform: rotateY(0);
		-webkit-animation: cd-rotate-inverse 0.5s;
		-moz-animation: cd-rotate-inverse 0.5s;
		animation: cd-rotate-inverse 0.5s;
		opacity: 0;
	}
	
	.cd-pricing-wrapper.is-switched .is-selected {
		opacity: 1;
	}
	
	.cd-pricing-wrapper.is-switched.reverse-animation .is-visible {
		/* invert rotation direction - clockwise rotation */
		-webkit-transform: rotateY(-180deg);
		-moz-transform: rotateY(-180deg);
		-ms-transform: rotateY(-180deg);
		-o-transform: rotateY(-180deg);
		transform: rotateY(-180deg);
		-webkit-animation: cd-rotate-back 0.5s;
		-moz-animation: cd-rotate-back 0.5s;
		animation: cd-rotate-back 0.5s;
	}
	
	.cd-pricing-wrapper.is-switched.reverse-animation .is-hidden {
		/* invert rotation direction - clockwise rotation */
		-webkit-transform: rotateY(0);
		-moz-transform: rotateY(0);
		-ms-transform: rotateY(0);
		-o-transform: rotateY(0);
		transform: rotateY(0);
		-webkit-animation: cd-rotate-inverse-back 0.5s;
		-moz-animation: cd-rotate-inverse-back 0.5s;
		animation: cd-rotate-inverse-back 0.5s;
		opacity: 0;
	}
	
	.cd-pricing-wrapper.is-switched.reverse-animation .is-selected {
		opacity: 1;
	}
	
	.cd-pricing-wrapper > li {
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		/* Firefox bug - 3D CSS transform, jagged edges */
		outline: 1px solid transparent;
	}
	
	.cd-pricing-wrapper .is-visible {
		/* the front item, visible by default */
		position: relative;
		z-index: 5;
	}
	
	.cd-pricing-wrapper .is-hidden {
		/* the hidden items, right behind the front one */
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		z-index: 1;
		-webkit-transform: rotateY(180deg);
		-moz-transform: rotateY(180deg);
		-ms-transform: rotateY(180deg);
		-o-transform: rotateY(180deg);
		transform: rotateY(180deg);
	}
	
	.cd-pricing-wrapper .is-selected {
		/* the next item that will be visible */
		z-index: 3 !important;
	}

	.no-js .cd-pricing-wrapper .is-hidden {
		position: relative;
		-webkit-transform: rotateY(0);
		-moz-transform: rotateY(0);
		-ms-transform: rotateY(0);
		-o-transform: rotateY(0);
		transform: rotateY(0);
		margin-top: 1em;
	}
	
	/* xkeyframes  */

	@-webkit-keyframes cd-rotate {
		0% {
			-webkit-transform: perspective(2000px) rotateY(0);
		}
		70% {
			/* this creates the bounce effect */
			-webkit-transform: perspective(2000px) rotateY(200deg);
		}
		100% {
			-webkit-transform: perspective(2000px) rotateY(180deg);
		}
	}
	
	@-moz-keyframes cd-rotate {
		0% {
			-moz-transform: perspective(2000px) rotateY(0);
		}
			70% {
			/* this creates the bounce effect */
			-moz-transform: perspective(2000px) rotateY(200deg);
		}
		100% {
			-moz-transform: perspective(2000px) rotateY(180deg);
		}
	}
	
	@keyframes cd-rotate {
		0% {
			-webkit-transform: perspective(2000px) rotateY(0);
			-moz-transform: perspective(2000px) rotateY(0);
			-ms-transform: perspective(2000px) rotateY(0);
			-o-transform: perspective(2000px) rotateY(0);
			transform: perspective(2000px) rotateY(0);
		}
		70% {
			/* this creates the bounce effect */
			-webkit-transform: perspective(2000px) rotateY(200deg);
			-moz-transform: perspective(2000px) rotateY(200deg);
			-ms-transform: perspective(2000px) rotateY(200deg);
			-o-transform: perspective(2000px) rotateY(200deg);
			transform: perspective(2000px) rotateY(200deg);
		}
		100% {
			-webkit-transform: perspective(2000px) rotateY(180deg);
			-moz-transform: perspective(2000px) rotateY(180deg);
			-ms-transform: perspective(2000px) rotateY(180deg);
			-o-transform: perspective(2000px) rotateY(180deg);
			transform: perspective(2000px) rotateY(180deg);
		}
	}
	@-webkit-keyframes cd-rotate-inverse {
		0% {
			-webkit-transform: perspective(2000px) rotateY(-180deg);
		}
		70% {
			/* this creates the bounce effect */
			-webkit-transform: perspective(2000px) rotateY(20deg);
		}
		100% {
			-webkit-transform: perspective(2000px) rotateY(0);
		}
	}
	
	@-moz-keyframes cd-rotate-inverse {
		0% {
			-moz-transform: perspective(2000px) rotateY(-180deg);
		}
		70% {
			/* this creates the bounce effect */
			-moz-transform: perspective(2000px) rotateY(20deg);
		}
		100% {
			-moz-transform: perspective(2000px) rotateY(0);
		}
	}
	
	@keyframes cd-rotate-inverse {
		0% {
			-webkit-transform: perspective(2000px) rotateY(-180deg);
			-moz-transform: perspective(2000px) rotateY(-180deg);
			-ms-transform: perspective(2000px) rotateY(-180deg);
			-o-transform: perspective(2000px) rotateY(-180deg);
			transform: perspective(2000px) rotateY(-180deg);
		}
		70% {
			/* this creates the bounce effect */
			-webkit-transform: perspective(2000px) rotateY(20deg);
			-moz-transform: perspective(2000px) rotateY(20deg);
			-ms-transform: perspective(2000px) rotateY(20deg);
			-o-transform: perspective(2000px) rotateY(20deg);
			transform: perspective(2000px) rotateY(20deg);
		}
		100% {
			-webkit-transform: perspective(2000px) rotateY(0);
			-moz-transform: perspective(2000px) rotateY(0);
			-ms-transform: perspective(2000px) rotateY(0);
			-o-transform: perspective(2000px) rotateY(0);
			transform: perspective(2000px) rotateY(0);
		}
	}
	
	@-webkit-keyframes cd-rotate-back {
		0% {
			-webkit-transform: perspective(2000px) rotateY(0);
		}
		70% {
			/* this creates the bounce effect */
			-webkit-transform: perspective(2000px) rotateY(-200deg);
		}
		100% {
			-webkit-transform: perspective(2000px) rotateY(-180deg);
		}
	}
	
	@-moz-keyframes cd-rotate-back {
		0% {
			-moz-transform: perspective(2000px) rotateY(0);
		}
		70% {
			/* this creates the bounce effect */
			-moz-transform: perspective(2000px) rotateY(-200deg);
		}
		100% {
			-moz-transform: perspective(2000px) rotateY(-180deg);
		}
	}
	
	@keyframes cd-rotate-back {
		0% {
			-webkit-transform: perspective(2000px) rotateY(0);
			-moz-transform: perspective(2000px) rotateY(0);
			-ms-transform: perspective(2000px) rotateY(0);
			-o-transform: perspective(2000px) rotateY(0);
			transform: perspective(2000px) rotateY(0);
		}
		70% {
			/* this creates the bounce effect */
			-webkit-transform: perspective(2000px) rotateY(-200deg);
			-moz-transform: perspective(2000px) rotateY(-200deg);
			-ms-transform: perspective(2000px) rotateY(-200deg);
			-o-transform: perspective(2000px) rotateY(-200deg);
			transform: perspective(2000px) rotateY(-200deg);
		}
		100% {
			-webkit-transform: perspective(2000px) rotateY(-180deg);
			-moz-transform: perspective(2000px) rotateY(-180deg);
			-ms-transform: perspective(2000px) rotateY(-180deg);
			-o-transform: perspective(2000px) rotateY(-180deg);
			transform: perspective(2000px) rotateY(-180deg);
		}
	}
	
	@-webkit-keyframes cd-rotate-inverse-back {
		0% {
			-webkit-transform: perspective(2000px) rotateY(180deg);
		}
		70% {
			/* this creates the bounce effect */
			-webkit-transform: perspective(2000px) rotateY(-20deg);
		}
		100% {
			-webkit-transform: perspective(2000px) rotateY(0);
		}
	}
	
	@-moz-keyframes cd-rotate-inverse-back {
		0% {
			-moz-transform: perspective(2000px) rotateY(180deg);
		}
		70% {
			/* this creates the bounce effect */
			-moz-transform: perspective(2000px) rotateY(-20deg);
		}
		100% {
			-moz-transform: perspective(2000px) rotateY(0);
		}
	}
	
	@keyframes cd-rotate-inverse-back {
		0% {
			-webkit-transform: perspective(2000px) rotateY(180deg);
			-moz-transform: perspective(2000px) rotateY(180deg);
			-ms-transform: perspective(2000px) rotateY(180deg);
			-o-transform: perspective(2000px) rotateY(180deg);
			transform: perspective(2000px) rotateY(180deg);
		}
		70% {
			/* this creates the bounce effect */
			-webkit-transform: perspective(2000px) rotateY(-20deg);
			-moz-transform: perspective(2000px) rotateY(-20deg);
			-ms-transform: perspective(2000px) rotateY(-20deg);
			-o-transform: perspective(2000px) rotateY(-20deg);
			transform: perspective(2000px) rotateY(-20deg);
		}
		100% {
			-webkit-transform: perspective(2000px) rotateY(0);
			-moz-transform: perspective(2000px) rotateY(0);
			-ms-transform: perspective(2000px) rotateY(0);
			-o-transform: perspective(2000px) rotateY(0);
			transform: perspective(2000px) rotateY(0);
		}
	}
	
	@media (max-width: 767px) {
		
		.cd-pricing-switcher .fieldset { margin-bottom: 50px; }
		
		.cd-pricing-switcher label { width: 100px; }

		.cd-pricing-switcher .cd-switch { width: 100px; }
		
		.cd-pricing-switcher input[type="radio"]:checked + label + .cd-switch,
		.cd-pricing-switcher input[type="radio"]:checked + label:nth-of-type(n) + .cd-switch {
			-webkit-transform: translateX(100px);
			-moz-transform: translateX(100px);
			-ms-transform: translateX(100px);
			-o-transform: translateX(100px);
			transform: translateX(100px);
		}
		
		ul.cd-pricing-wrapper { margin-left: 0; }
		
	}

/* ==========================================================================
   =Progress Bar
   ========================================================================== */
   
	.progress-bar-description {
		display: block;
		margin-bottom: 13px;
		font-weight: 300;	
		overflow: visible;
		font-size: 14px;
		letter-spacing: 1px;
		text-transform: uppercase;
	}
	
	.progress-bar-style-2 { 
		position: relative;
		margin-bottom: 56px;
	}
	
	.progress-bar-style-3  { margin-bottom: 30px; }
	
	.progress-bar-style-2 .progress-bar-description {
		position: absolute;
		left: 20px;
		top: 50%;
		z-index: 1;
		color: #ffffff;
		font-size: 12px;
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
	}
	
	.progress-bar-style-3 .progress-bar-description { margin-bottom: 0px; }
	
	.progress-bar {
		position: relative;
		display: block;
		height: 3px;
		margin-bottom: 40px;
		background-color: #e8ecf6;
	}
	
	.progress-bar-style-2 .progress-bar { height: 20px; }
	
	.progress-bar .progress-bar-outer {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		background-color: #66a1f1; 
	}
	
	.progress-bar .progress-bar-outer .progress-bar-inner {
		position: absolute;
		z-index: 1;
		top: 0;
		left: 0;
		display: block;
		height: 100%;
		width: 100%;
	}
	
	.progress-bar .percentage {
		position: absolute;
		display: inline-block;
		right: 0;
		top: -35px;
		font-size: 12px;
		font-weight: 700;
		-webkit-transition: all .3s;
				transition: all .3s;
	}
	
	.progress-bar-style-2 .percentage {
		top: 100%;
		margin-top: 10px;
		padding: 7px;
		background-color: #444;
		color: #ffffff;
		font-size: 12px;
		font-weight: 300;
		line-height: 1;
	}
	
	.progress-bar-style-3 .percentage {
		right: 0;
		background: #444;
		font-size: 10px;
		font-weight: 300;
		padding: 7px;
		line-height: 1;
		border-radius: 3px;
		color: #ffffff;
	}
	
	.progress-bar-style-2 .percentage:before {
		position: absolute;
		bottom: 100%;
		left: 100%;
		content: "";
		width: 0; 
		height: 0;
		border-bottom: 10px solid #444;
		border-left: 10px solid transparent;
		-webkit-transform: translateX(-100%);
			-ms-transform: translateX(-100%);
				transform: translateX(-100%);
	}
	
	.progress-bar-style-3 .percentage:before {
		position: absolute;
		bottom: -5px;
		left: 50%;
		margin: 0 0 0 -5px;
		content: "";
		border-color: #444 transparent;
		border-style: solid;
		border-width: 5px 5px 0;
	}
	
	.progress-bar-inner:before {
		position: absolute;
		display: inline-block;
		z-index: 2;
		right: 0;
		top: 50%;
		content: "";
		width: 10px;
		height: 10px;
		background-color: #66a1f1; 
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
	}
	
	.progress-bar-style-2 .progress-bar-inner:before,
	.progress-bar-style-3 .progress-bar-inner:before { display: none; }

/* ==========================================================================
   =Revolution Slider
   ========================================================================== */
   
/* =Rev Slider Basics
   ========================================================================== */   
   
	.rev_slider_wrapper {}
	
	.tp-bannertimer {
		background: rgba(102, 161, 241, 0.3) none repeat scroll 0 0;
		height: 3px;
	}

/* =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.default .tp-bullet {
		width: 10px;
		height: 10px;
		background: #ffffff;
	}

	.tp-bullets.default .tp-bullet:hover,
	.tp-bullets.default .tp-bullet.selected { background: #66a1f1; }

/* =Rev Slider navigation
   ========================================================================== */
   
	.tp-leftarrow.default,
	.tp-rightarrow.default {
		width: 60px;
		height: 60px;
		opacity: 0.5;
		background-color: #111;
		-webkit-transition: all .3s;
				transition: all .3s;
	}

	.tp-leftarrow.default:hover,
	.tp-rightarrow.default:hover { opacity: 1; }
	
	.tp-leftarrow.default:before,
	.tp-rightarrow.default:before {
		font-family: "FontAwesome";
		color: #fff;
		font-size: 32px;
		line-height: 60px;
		-webkit-transition: color 0.3s;
				transition: color 0.3s;
	}
	
	.tp-leftarrow.default:before { content: "\f060"; }
	.tp-rightarrow.default:before { content: "\f061"; }

	@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: 20px !important; }
		
	}
	
/* =Rev Slider Typography
   ========================================================================== */	
   
   .tp-caption.NotGeneric-Title, .NotGeneric-Title {
		background-color: transparent;
		border-color: transparent;
		border-radius: 0;
		border-style: none;
		border-width: 0;
		color: rgba(255, 255, 255, 1);
		font-family: 'Libre Franklin', cursive;
		font-size: 30px;
		font-style: normal;
		font-weight: 300;
		line-height: 72px;
		padding: 10px 0;
		text-decoration: none;
	}
	
	.tp-caption.text {
		font: 24px 'Libre Franklin', sans-serif;
		font-weight: 300;
		color: #ffffff;
	}
	
	.tp-caption .btn { 
		margin-right: 20px;
		font-weight: 400 !important;
	}
	
	.tp-caption .btn:hover { color: #ffffff; }
	
/* ==========================================================================
   =Shop
   ========================================================================== */ 
	
	.woocommerce .products {
		display: block;
		margin-bottom: 30px;
		padding: 0;
		list-style-type: none;
	}
	
	.woocommerce .products:after { 
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	.woocommerce .products li.product {
		position: relative;
		box-sizing: border-box;
		float: left;
		margin-bottom: 50px;
		text-align: center;
		-webkit-transition: all .3s ease-in;
				transition: all .3s ease-in;
	}
	
	.woocommerce .products.two-cols li.product {
		width: 49%;
		margin-right: 1%;
	}
	
	.woocommerce .products li.product.product-category {
		width: 24%;
		margin: 0 1% 50px 0;
	}
	
	.woocommerce .products li.product.product-category:hover { background-color: #66A1F1; }
	
	.woocommerce .products li.product.product-category h4 { 
		margin-bottom: 30px; 
		-webkit-transition: all .3s;
				transition: all .3s;
	}
	
	.woocommerce .products li.product.product-category:hover h4 { color: #ffffff; }
	
	.woocommerce .products li.product .image-wrapper { 
		position: relative;
		z-index: 1;
		margin-bottom: 25px;
		-webkit-transition: all .3s;
				transition: all .3s;
	}
	
	.woocommerce .products li.product:hover .image-wrapper { background-color: #66A1F1; }
	
	.woocommerce .products li.product.product-category:hover .image-wrapper { background-color: transparent; }

	.woocommerce .products li.product .image-wrapper p { 
		position: absolute;
		bottom: 0;
		left: 50%;
		z-index: 2;
		margin-bottom: 0;
		opacity: 0; 
		color: #ffffff;
		-webkit-transition: all .3s ease-in;
				transition: all .3s ease-in;
		-webkit-transition-delay: .3s ;
				transition-delay: .3s ;
		-webkit-transform: translateX(-50%);		
			-ms-transform: translateX(-50%);		
				transform: translateX(-50%);		
	}
	
	.woocommerce .products li.product:hover .image-wrapper p { 
		opacity: 1; 
		bottom: 10px;
	}
	
	.woocommerce .products li.product .image-wrapper p i { font-size: 24px; }

	.woocommerce .products:after { 
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
	}

	.woocommerce ul.products li.product.last-product { margin-right: 0; }
	
	.woocommerce ul.products li.product img { width: 100%; }

	.woocommerce ul.products li.product a { text-decoration: none; }
	
	.woocommerce ul.products li.product > a:first-child { 
		display: block; 
		overflow: hidden;
	}
	
	.woocommerce ul.products li.product > a img {} 

	.woocommerce ul.products li.product h5 {
		margin-bottom: 26px;
		font-size: 18px; 
		font-weight: 500;
	}
	
	.woocommerce ul.products li.product .onsale,
	.woocommerce ul.products li.product .new {
		position: absolute;
		top: 0;
		right: 0;
		padding: 8px 20px;
		display: inline-block;
		font-size: 18px; 
		font-weight: 500;
		text-transform: uppercase;
		color: #ffffff;
		z-index: 2;
	}
	
	.woocommerce ul.products li.product .onsale { background-color: #fe0b55; }
	
	.woocommerce ul.products li.product .new { background-color: #1964ee; }
	
	.woocommerce ul.products li.product .price {
		display: block;
		margin-bottom: 40px;
		color: #66A1F1;
		font-size: 36px; 
		font-weight: 600;
		-webkit-transition: all .3s linear;
				transition: all .3s linear;
	}
	
	.woocommerce ul.products li.product .price ins {
		display: block;
		padding: 0;
		border: none;
		border-radius: 0;	
		background-color: transparent; 
	}
	
	.woocommerce ul.products li.product .price del {
		display: block;
		font-size: 18px ;
		font-weight: 600;
		color: #002568;
	}

	@media (max-width: 767px) {
		
		.woocommerce .products li.product.product-category {
			float: left;
			width: 49%;
			margin-right: 1%;
		}

		.woocommerce .products.two-cols li.product,
		.woocommerce .products.three-cols li.product,
		.woocommerce .products.four-cols li.product {
			width: 100%;
			margin-right: 0;
		}

	}	
	
/* =Shopping Cart Icon
	========================================================================== */	   

	.site-header-cart {
		position: absolute;
		display: block;
		width: 290px;
		box-sizing: border-box;
		margin-bottom: 0;
		list-style-type: none;
	}
	
	.site-header-cart ul { list-style-type: none; }
	
	.site-header-cart li {
		display: block;
		margin: 0;
	}
	
	.cart-header {
		color: #ffffff;
		background-color: #66A1F1;
		text-align: center;
		padding: 10px 0 !important;
	}
	
	.site-header-cart > li:nth-child(2) {
		position: relative;
		z-index: 1029;
		margin-top: 51px;
	}
	
	.site-header-cart .widget_shopping_cart {
		padding: 0 0 30px 0;
		box-sizing: border-box;
		background-color: #ffffff;
		box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.4);
		display: none;
	}

	.site-header-cart a.cart-contents {
		position: relative;
		display: block;
		float: right;
		height: auto;
		width: auto;
		line-height: 1.6;
	 	padding: 15px 30px 0px 0; 
	}
	
	.site-header-cart .cart-contents:after {
		position: absolute;
		left: -20px;
		top: 10px;
		width: 100%;
		content: "\e75a";
		font-family: 'iconfontcustom';
		text-align: center;
		font-size: 20px;
		color: #ffffff;
	}
	
	.header-style-2 .site-header-cart .cart-contents:after  { color: #151515; }
	
	.site-header-cart a.cart-contents .count {
		position: absolute;
		bottom: -12px;
		left: 0px;
		z-index: 3;
		background-color: #66A1F1;
		width: 18px;
		height: 18px;
		text-align: center;
		line-height: 18px;
		border-radius: 50%;
		color: #ffffff;
		text-decoration: none;
	}
	
	.site-header-cart > li .widget_shopping_cart_content p {
		padding: 0 10px;
		font-weight: 700;
		text-transform: uppercase;
	}

	.widget_shopping_cart.widget { 
		position: relative;
		margin-bottom: 0; 
	}
	
	.widget_shopping_cart .cart_list { padding: 0 10px; }
	
	.widget_shopping_cart .image-container { float: left; }
	
	.widget_shopping_cart .product-details {
		width: 120px;
		float: left;
	}
	
	.widget_shopping_cart .product-details a {
		display: block;
		color: #353636;
		font-weight: 900;
		text-transform: uppercase;
	}
	
	.widget_shopping_cart .product-details .quantity {
		display: block;
		font-size: 12px;
	}
	
	.widget_shopping_cart .mini_cart_item a.remove {
		display: inline-block;
		float: right;
		font-size: 20px;
		text-decoration: none;
		color: #ffffff;
		background-color: #66A1F1;
		padding: 2px 4px;
		line-height: 1;
	}
	
	.widget_shopping_cart .widget_shopping_cart_content p.total {
		margin-bottom: 15px;
		padding: 20px 10px;
		text-align: right;
		color: #353636;
		background-color: #d6dce1;
	}
	
	.widget_shopping_cart .widget_shopping_cart_content p.total .amount { margin-left: 20px; }
	
	.widget_shopping_cart .buttons { margin-bottom: 0; }
	
	.widget_shopping_cart .buttons .btn {
		margin: 0 5px 0 0;
		padding: 5px 25px;
		font-size: 12px;
		font-weight: 700;
	}

	.widget_shopping_cart .mini_cart_item:after { 
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (max-width: 767px) {
		
		.widget_shopping_cart.widget { left: 30px; }

	}
	
/* =Woocommerce Pagination
   ========================================================================== */	

	.woocommerce .woocommerce-pagination { 
		position: relative; 
		margin-bottom: 110px;
		float: right;
	}
	
	.woocommerce .page-numbers {
		margin: 0;
		list-style-type: none;
	}

	.woocommerce .page-numbers:after { 
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	.woocommerce .page-numbers li {
		float: left;
		display: block;
	}
	
	.woocommerce .page-numbers li .page-numbers {
		display: inline-block;
		width: 40px;
		height: 40px;
		margin-right: 10px;
		background-color: #bababa;
		color: #ffffff;
		text-align: center;
		font-size: 14px;
		font-weight: 700;
		line-height: 40px;
		-webkit-transition: all .3s;
				transition: all .3s;
	}
	
	.woocommerce .page-numbers li .page-numbers:hover, 
	.woocommerce .page-numbers li .page-numbers.current {
		text-decoration: none;
		background-color: #679DE8;
		color: #ffffff;
	}
	
	@media (max-width: 767px) {
		
		.woocommerce .woocommerce-pagination { 
			margin-bottom: 50px;
			float: none;
		}
		
		.woocommerce .page-numbers li .page-numbers { margin-right: 3px; }
		
	}

/* =Shop Single Product
   ========================================================================== */		
    
	.woocommerce .product.type-product { margin-bottom: 110px; }
	
	.woocommerce .product_title { 
		position: relative;
		margin-bottom: 26px;
		padding-bottom: 20px;
	}
	
	.woocommerce .product_title:before {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 50px;
		height: 1px;
		content: "";
		background-color: #66A1F1;
	}
	
 	.woocommerce .summary .amount {
		color: #66A1F1;
		font-size: 36px; 
		font-weight: 600;
	} 
	
	.woocommerce .summary .quantity { float: left; }
	
	.woocommerce .summary .quantity .qty {
		display: inline-block;
		width: 100px;
	}
	
	.woocommerce .qty:focus { padding:10px 0 10px 10px; }
	
	.woocommerce input[type="number"] { margin: 0; }
	
	.single_add_to_cart_button { 
		float: right;
		margin: 0;
	}
	
	.woocommerce .product .images {}
	
	.woocommerce .product .images .woocommerce-main-image img { margin-bottom: 30px; }
	
	.woocommerce #comments h2 { margin-bottom: 40px; }
	
	.woocommerce .commentlist { list-style-type: none; }
	
	.woocommerce .woocommerce-tabs { margin-bottom: 100px; }

/* =Shopping Cart
   ========================================================================== */	
   
	.woocommerce table.shop_table { 
		margin-bottom: 30px; 
		border-top: none; 
		border-left: none;
		border-right: none;
	}
	
	.woocommerce table.shop_table th { 
		height: 90px;
		text-align: center; 
		vertical-align: middle;
		text-transform: uppercase; 
		border-right: none;
		border-left: none;
		border-bottom: 2px solid #66A1F1;
	}
	
	.woocommerce table.shop_table tr:last-child td { border-bottom: none; }
	
	.woocommerce table.shop_table td { 
		padding: 30px 0;
		text-align: center;
		vertical-align: middle;
		border-right: none;
	}
	
	/*
	 * 1. Clearfix hack 
	*/
	.woocommerce table.shop_table tr:last-child td:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	.woocommerce table.shop_table td.product-name a { 
		color: #151515;
		-webkit-transition: all .3s;
				transition: all .3s;
	}
	
	.woocommerce table.shop_table td.product-name a:hover { 
		color: #66A1F1;
		text-decoration: none;
	}
	
	.woocommerce table .product-name { width: 15%; }
	
	.woocommerce table .product-thumbnail { width: 30%; }
	
	.woocommerce table .product-price { width: 15%; }
	
	.woocommerce table .product-quantity { width: 10%; }
	
	.woocommerce table .product-subtotal { width: 20%; }
	
	.woocommerce table .product-remove { width: 10%; }

	.woocommerce .quantity .qty {
		margin: 0 auto;
		text-align: center;
	}
	
	.woocommerce table .amount {}
	
	.woocommerce table.shop_table a.remove {
		color: #bababa;
		font-size: 26px;
		-webkit-transition: all .3s;
				transition: all .3s;
	}
	
	.woocommerce table.shop_table a.remove:hover { color: #66A1F1; }
	
	.woocommerce table.shop_table .actions .coupon {
		position: relative;
		width: 280px;
		float: left;
	}
	
	.woocommerce table.shop_table .actions .coupon input[type="text"] { 
		margin: 0;
		padding-right: 180px;
	}
	
	.woocommerce table.shop_table .actions .coupon input[type="submit"] {
		position: absolute;
		top: 0; 
		right: 0;
		margin: 0;
	}
	
	.woocommerce table.shop_table .actions > input[type="submit"] { margin: 0; float: right; }
	
	.woocommerce .cart-collaterals .cart_totals table {
		margin: 0 0 50px;
		padding: 0;
		border: none;
	}
	
	.woocommerce .cart-collaterals .cart_totals table  th,
	.woocommerce .cart-collaterals .cart_totals table  td {
		padding: 5px 0;
		height: auto;
		border: none;
	}
	
	.woocommerce .cart-collaterals .cart_totals table  th { 
		width: 70%;
	}
	
	.woocommerce .cart-collaterals .cart_totals table  td { text-align: right; }
	
	.woocommerce .cart-collaterals .wc-proceed-to-checkout { text-align: right; }
	
	.woocommerce .cart-collaterals .wc-proceed-to-checkout a { margin-bottom: 0; }
	
	.woocommerce .delivery-select {
		width: 80%;
		height: auto;
		float: left;
		margin-bottom: 50px;
		padding: 5px 0 5px 30px;
		font-weight: 700;
		text-transform: uppercase;
		color: #353636;	
	}
	
	.woocommerce .delivery-select option { padding: 5px 0 5px 30px; }

	.delivery-price {
		float: right;
		font-weight: 700;
		color: #353636;
		line-height: 50px;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
	
		
		.woocommerce table.shop_table td { padding: 20px 10px; }
		
		.woocommerce .quantity .qty { padding: 5px; }
		
	}
	
	@media only screen and (min-width: 480px) and (max-width: 767px) {
		
		.woocommerce table.shop_table th {
			border-width: 0 2px 2px 0;
			font-size: 10px;
			line-height: 20px;
		}
		
		.woocommerce table.shop_table td { padding: 0; }
		
	}	
	
	@media (max-width: 767px) {
	
		.woocommerce table.shop_table.cart { width: 767px; }
		
		.woocommerce table.shop_table td { padding: 10px; }
		
		.woocommerce table.shop_table td.actions { 
			padding-left: 0;
			text-align: left;
		}
		
		.woocommerce table.shop_table .actions .coupon,
		.woocommerce table.shop_table .actions > input[type="submit"] { float: none; }
		
		.woocommerce table.shop_table .actions .coupon { margin-bottom: 26px; }
		
		.woocommerce table.shop_table input[type="number"] {
			padding: 0;
			width: 50px;
		}
		
		.woocommerce .cart-collaterals { margin-top: 40px; }
		
		.woocommerce .cart-collaterals .cart_totals table  th { text-align: right; }

		.woocommerce .cart-collaterals .cart_totals table td,
		.woocommerce .cart-collaterals .wc-proceed-to-checkout { text-align: center; }

	}	
	
/* =Woocommerce Checkout
   ========================================================================== */		
	
	form.woocommerce-checkout { margin-bottom: 110px; }
	
	.woocommerce-checkout-review-order table.woocommerce-checkout-review-order-table {
		border-width: 0;
		margin-bottom: 110px;
	}
	
	.woocommerce-checkout-review-order  table.woocommerce-checkout-review-order-table th {}
	
	.woocommerce-checkout-review-order  table.woocommerce-checkout-review-order-table th:first-child { text-align: left; }
	
	.woocommerce-checkout-review-order  table.woocommerce-checkout-review-order-table th:last-child { text-align: right; }
	
	.woocommerce-checkout-review-order table th.product-name { width: 50%; }
	
	.woocommerce-checkout-review-order table td { width: 50%; }
	
	.woocommerce-checkout-review-order table.shop_table td { padding: 20px 0; }
	
	.woocommerce-checkout-review-order table.shop_table td:first-child { text-align: left; }
	
	.woocommerce-checkout-review-order table.shop_table td:last-child { text-align: right; }
	
	.woocommerce-checkout-review-order table.shop_table td .product-quantity { margin-left: 10px; }

	.woocommerce-checkout-review-order table.shop_table td .amount {}
	
	.woocommerce ul.wc_payment_methods { 
		margin-bottom: 50px;
		list-style-type: none; 
	}
	
	.woocommerce ul.wc_payment_methods label {
		position: relative;
		margin-right: 15px;
		border-right: none;
		font-size: 14px;
		line-height: 20px;
		font-style: normal;
		font-weight: 500;
	}
	
	.woocommerce ul.wc_payment_methods input[type="radio"] {
		position: relative;
		top: 3px;
	}	
	
	.payment_method_paypal img { float: right;}
	
	.woocommerce .payment_box.payment_method_cheque,
	.woocommerce .payment_box.payment_method_paypal { color: #151515; }
	
/* =Woocommerce Login
   ========================================================================== */	
	
	 #customer_login { margin-bottom: 110px; }
	
	.woocommerce #customer_login .form-wrapper {
		box-sizing: border-box;
		padding: 60px 50px 40px 50px;
	}
	
	.woocommerce #customer_login .form-wrapper { border: 2px solid #f3f3f3; }
	
	.woocommerce #customer_login .form-wrapper h4 {
		font-size: 24px; 
		font-weight: 700;
		text-transform: uppercase;
	}
	
	.woocommerce #customer_login .form-wrapper label { font-weight: 500; }
	
	@media (max-width: 767px) {
		
		.woocommerce #customer_login .form-wrapper {
			margin-bottom: 40px; 
			padding: 30px 20px 10px 20px;
		}
		
	}	
	
/* ==========================================================================
   =Social Media
   ========================================================================== */

	a.social-icon {
		float: left;
		display: block;
		width: 30px;
		padding: 2px;
		margin-right: 1px;
		margin-bottom: 1px;
		color: #444;
		text-align: center;
		-webkit-transition: all .3s linear;
				transition: all .3s linear;
	}
	
	a.social-icon:hover { background-color: #66A1F1; }

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

	a.social-icon i {
		font-size: 24px;
		line-height: 30px;
		-webkit-transition: all .3s linear;
				transition: all .3s linear;
	}
	
	a.social-icon:hover { text-decoration: none; }
	
	a.social-icon:hover i { color: #ffffff; }
	
	.social-list {
		display: block;
		margin: 0 auto;
		list-style-type: none;
	}
	
	.social-list li {
		float: left;
		display: block;
		width: 20%;
		margin-bottom: 0;
		box-sizing: border-box;
		border-right: 1px solid #fff;
	}
	
	.social-list li:last-child { border-right: none; }
	
	.social-list li a.social-icon {
		position: relative;
		float: none;
		width: 100%;
		padding: 50px 0;
		background-color: #66A1F1;
		text-align: center;
		opacity: 1;
		-webkit-transition: all .3s ease-in;
				transition: all .3s ease-in;
	}
	
	.social-list.alt li a.social-icon:before {
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		content: "";
		background: no-repeat center center;
		z-index: -2;
		opacity: 0;
		-webkit-transition: all .3s ease-in;
				transition: all .3s ease-in;
	}
	
	.social-list.alt li a.social-icon:after {
		position: absolute;
		z-index: -1;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		content: "";
		background-color: rgba(25, 100, 238, .8);
		-webkit-transition: all .3s ease-in;
				transition: all .3s ease-in;
	}

	.social-list li a.social-icon i { 
		font-size: 30px; 
		color: #ffffff;
		
		
		display: inline-block;
		  vertical-align: middle;
		  -webkit-transform: translateZ(0);
		  transform: translateZ(0);
		  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
		  -webkit-backface-visibility: hidden;
		  backface-visibility: hidden;
		  -moz-osx-font-smoothing: grayscale;
		  position: relative;
	}
	
	.social-list li a.social-icon:hover i {
		-webkit-animation-name: hvr-icon-down;
				animation-name: hvr-icon-down;
		-webkit-animation-duration: 0.75s;
				animation-duration: 0.75s;
		-webkit-animation-timing-function: ease-out;
				animation-timing-function: ease-out;
	}

	/* Icon Down Animation */
	@-webkit-keyframes hvr-icon-down {
	  0%,
	  50%,
	  100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	  }

	  25%,
	  75% {
		-webkit-transform: translateY(6px);
		transform: translateY(6px);
	  }
	}

	@keyframes hvr-icon-down {
	  0%,
	  50%,
	  100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	  }

	  25%,
	  75% {
		-webkit-transform: translateY(6px);
		transform: translateY(6px);
	  }
	}
	
		/*
	 * 1. Clearfix hack 
	 */
	.social-list:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (max-width: 767px) {
		
		.social-list li a.social-icon { padding: 30px 0; }
		
		.social-list li a.social-icon i { font-size: 20px; }
		
	}
	
/* ==========================================================================
   =Search Results
   ========================================================================== */	
   
    .search-result { margin-bottom: 80px; }
   
    .search-result h5 { margin-bottom: 26px; }
   
	.search-result a { 
		text-decoration: none;
		font-weight: 600; 
	}	

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

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

	.tabs-container .tabs-menu { 
		border-bottom: 2px solid #f3f3f3;
		margin-top: 10px; 
		margin-bottom: 0;
		list-style: none; 
	}
	
	.tabs-container .tabs-menu li { display: inline; }
	
	.tabs-container .tabs-menu li a { 
		float: left; 
		display: block;
		margin-right: 5px;
		padding: 10px 15px; 
		border: 2px solid #f3f3f3;	
		margin-bottom: -1px; 
		background-color: #151515;
		color: #ffffff;
		text-decoration: none;
		text-transform: uppercase;
		font-weight: 300;
	}
	
	.tabs-container.style-3 .tabs-menu li a { position: relative; }
	
	.tabs-container.style-3 .tabs-menu li a:before {
		position: absolute;
		bottom: 0;
		left: 50%;
		width: 0;
		height: 4px;
		content: "";
		background-color: #66A1F1;
		-webkit-transition: all .5s;
					transition: all .5s;
		-webkit-transform: translateX(-50%);
			-ms-transform: translateX(-50%);
				transform: translateX(-50%);
	}
	
	.tabs-container.style-2 .tabs-menu li a i {
		position: relative;
	 	top: 5px; 
		margin-right: 10px;
		font-size: 24px; 
		-webkit-transition: all .5s;
				transition: all .5s;
	}
	
	.tabs-container.style-3 .tabs-menu li a i {
		position: relative;
		display: block;
		margin-bottom: 26px;
		text-align: center;
		font-size: 24px; 
		opacity: 0;
		-webkit-transform: translateY(-50px);
			-ms-transform: translateY(-50px);
				transform: translateY(-50px);
		-webkit-transition: all .5s;
				transition: all .5s;
	}
	
	.tabs-container .tabs-menu li a:hover { text-decoration: none; }
	
	.tabs-container .tabs-menu li:first-child a { border-left: 2px solid #f3f3f3; }
	
	.tabs-container .tabs-menu li.active a {
		border-bottom-color: #ffffff; 
		background-color: #66A1F1;
		color: #ffffff;
	}
	
	.tabs-container.style-3 .tabs-menu li.active a {
		background-color: #ffffff;
		color: #151515;
	}
	
	.tabs-container.style-3 .tabs-menu li.active a i {
		transform: translateY(0px);
		opacity: 1;
	}
	
	.tabs-container.style-3 .tabs-menu li.active a:before {
		width: 100%;
	}

	.tabs-container .tabs {
		border: 2px solid #f3f3f3; 
		border-top: none;   
		margin-bottom: 30px;
	}
	
	.tabs-container .tab-content { padding: 25px; }
	
	/*
	 * 1. Clearfix hack 
	 */
	.tabs-container .tabs-menu:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (min-width: 1200px) {
	
		.tabs-container .tabs-menu li a { padding: 13px 26px; }
		
	}
	
/* ==========================================================================
   =Testimonials
   ========================================================================== */

	.testimonial { margin-bottom: 30px; }
	
	.testimonial blockquote { 
		position: relative; 
		margin-bottom: 26px;
		padding: 0 13px;
		
	}
	
	.testimonial blockquote h4 { 
		font-weight: 300;
		font-size: 16px;
		line-height: 26px;
		color: #666;
	}
	
	.testimonial.icon blockquote:after, 
	.testimonial.icon blockquote:before {
		position: absolute;
		font-family: 'FontAwesome';
		font-size: 20px;
	}
	
	.testimonial.icon blockquote:after {
		content: "\f10e";
		bottom: 0;
		right: 5px;
	}
	
	.testimonial.icon.dark-icon blockquote:before,
	.testimonial.icon.dark-icon blockquote:after { color: #151515; }
	
	.testimonial.icon.light-icon blockquote:before,
	.testimonial.icon.light-icon blockquote:after { color: #ffffff; }
	
	.testimonial.boxed-style-1 { 
		border-left: 2px solid #66A1F1;
		padding: 20px;
	}
	
	.testimonial.boxed-style-2 { 
		border-top: 2px solid #66A1F1;
		padding: 20px;
	}
	
	.testimonial.bg-dark { background-color: #151515; }
	
	.testimonial.bg-dark blockquote h4,
	.testimonial.bg-dark h5 { color: #ffffff; }
	
	.testimonial.bg-dark h5:before { background-color: #ffffff; } 
	
	.testimonial blockquote ~ h5 { margin-top: 13px; }

	.testimonial img { 
		float: left; 
		margin-right: 20px;
	}
	
	.testimonial h5 { 
		display: inline-block;
		float: right;
		position: relative;
		text-align: right; 
	}
	
	.testimonial h5:before {
		position: absolute;
		left: -60px;
		top: 50%;
		width: 50px;
		height: 1px;
		background-color: #151515;
		content: "";
	}
	
	.testimonial h5:before + span { margin-left: 20px; }
	
	.testimonial h5 span { color: #66A1F1; }
	
	.testimonial-slider .testimonial { margin-bottom: 0; }
	
	/*
	 * 1. Clearfix hack 
	 */
	.testimonial:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.testimonial h5:before { width: 30%; }
		
	}
	
	@media (max-width: 767px) {
		
		.testimonial blockquote { 
			padding: 0;
		}
		
		.testimonial.icon blockquote:after, 
		.testimonial.icon blockquote:before {
			display: none;
		}
		
	}

/* ==========================================================================
   =Team Member
   ========================================================================== */

	.team-member {
		position: relative;
		margin-bottom: 30px;
		text-align: center;
		overflow: hidden;
	}
	
	.team-member.style-2 {
		padding: 12px;
		border: 1px solid #f3f3f3;
		-webkit-transition: all .5s linear;
				transition: all .5s linear;
	} 
	
	.team-member.style-2:hover { border-color: #66a1f1; }
	
	.team-member .team-member-image {
		position: relative;
		text-align: center;
		overflow: hidden;
	}
	
	.team-member .team-member-image:before {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		content: "";
		background-color: #000000;
		opacity: 0;
		-webkit-transition: all .5s linear;
				transition: all .5s linear;
	}
	
	.team-member:hover .team-member-image:before { opacity: .7; }
	
	.team-member.style-5:hover .team-member-image:before { opacity: 0; }
	
	.team-member.style-3 .team-member-image:before {
		background: rgba(0, 0, 0, 0) linear-gradient(to top, rgba(30, 30, 30, 0.9) 0%, rgba(30, 30, 30, 0.7) 20%, rgba(30, 30, 30, 0.1) 100%) repeat scroll 0 0;
		opacity: 0;
	}
	
	.team-member.style-3:hover .team-member-image:before { opacity: 1; }
	
	.team-member img { 
		width: 100%; 
		-webkit-transition: all .5s linear;
				transition: all .5s linear;
	}
	
	.team-member.style-5 img {
		-webkit-transition: all .2s linear;
				transition: all .2s linear;
	}
	
	.team-member.style-4:hover img {
	  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0" /><feGaussianBlur stdDeviation="3" /></filter></svg>#filter');
	  filter: grayscale(30) blur(3px);
	  -webkit-filter: grayscale(30) blur(3px);
	  -webkit-transform: scale(1.1);
	  -ms-transform: scale(1.1);
		  transform: scale(1.1);
	}
	
	.team-member.style-5:hover img {
		-webkit-transform: translate3d(0,-30px,0);
			-ms-transform: translate3d(0,-30px,0);
				transform: translate3d(0,-30px,0);
	}
	
	.team-member .team-member-details {
		position: relative;
		padding: 30px 0;
		background-color: #151515;
	}
	
 	.team-member.style-2 .team-member-details { background-color: #ffffff; } 
	
	.team-member .team-member-details h3,
	.team-member .team-member-details p { color: #ffffff; }
	
	.team-member .team-member-details h3 {
		position: relative;
		padding-bottom: 26px;
		margin-bottom: 26px;
		-webkit-transition: all .3s linear;
				transition: all .3s linear;
	}
	
	.team-member.style-2 .team-member-details h3 { color: #151515; } 
	
	.team-member .team-member-details h3:after {
		position: absolute;
		left: 50%;
		bottom: 0;
		content: "";
		width: 50px;
		height: 1px;
		background-color: #66a1f1;
		-webkit-transform: translateX(-50%);
			-ms-transform: translateX(-50%);
				transform: translateX(-50%);
	}
	
	.team-member .team-member-details p {
		color: #66a1f1;
		margin: 0;
		text-transform: uppercase;
		font-size: 13px;
	}
	
	.team-member .social-media {
		position: absolute;
		bottom: 0;
		left: 50%;
		display: block;
		width: 100%;
		text-align: center;
		opacity: 0;
		-webkit-transition: all .3s linear;
				transition: all .3s linear;
		-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
				transform: translateY(0);
		-webkit-transform: translateX(-50%);
			-ms-transform: translateX(-50%);
				transform: translateX(-50%);
	}
	
	.team-member .social-icon { margin: 0 10px 0 0; }
	
	.team-member .social-icon i { font-size: 16px; }
	
	.team-member.style-5 .social-icon i {
		opacity: 0;
		-webkit-transition: all .3s linear;
				transition: all .3s linear;
	}
	
	.team-member.style-5:hover .social-icon i { opacity: 1; }
	
	.team-member.style-5:hover .social-icon:first-child i {
		-webkit-transition-delay: .3s;
				transition-delay: .3s;
	}
	
	.team-member.style-5:hover .social-icon:nth-child(2) i {
		-webkit-transition-delay: .4s;
				transition-delay: .4s;
	}
	
	.team-member.style-5:hover .social-icon:nth-child(3) i {
		-webkit-transition-delay: .5s;
				transition-delay: .5s;
	}
	
	.team-member.style-5:hover .social-icon:nth-child(4) i {
		-webkit-transition-delay: .6s;
				transition-delay: .6s;
	}
	
	.team-member.style-5 .social-media { 
		bottom: -40px;
		overflow: hidden;
		background-color: #151515;
		-webkit-transition: all .2s linear;
				transition: all .2s linear;
	}
	
	.team-member .social-media a.social-icon {
		float: none;
		display: inline-block;
		padding: 2px;
	}
	
	.team-member.style-4 .social-media a.social-icon { background-color: #151515; }
	
	.team-member .social-media a.social-icon:hover { background-color: #66a1f1; }
	
	.team-member .social-media a.social-icon i { color: #ffffff !important; }
	
	.team-member:hover .social-media {
		opacity: 1;
		bottom: 20%;
	}
	
	.team-member.style-5:hover .social-media { bottom: 0; }

/* ==========================================================================
   =Portfolio Item
   ========================================================================== */
	
	.portfolio-item { 
		position: relative; 
		margin-bottom: 30px;
		overflow: hidden;
	}
	
	.portfolio-item-preview { position: relative; }
	
	.portfolio-item-preview > img {
		display: block;
		width: 100%;
	}
	
	.portfolio-item-overlay {
		position: absolute; 
		top: 10%; 
		right: 10%; 
		bottom: 10%; 
		left: 10%; 
		opacity: 0;
		background-color: rgba(0,0,0, .5);
		border-bottom: 1px solid #66a1f1;
		border-top: 1px solid #66a1f1;
		-webkit-transform: scale(0,1);
			-ms-transform: scale(0,1);
				transform: scale(0,1);
		-webkit-transition: all .3s linear;
				transition: all .3s linear;
	}
	
	.portfolio-item:hover .portfolio-item-overlay {
		  opacity: 1;
		  -webkit-transform: scale(1);
			-ms-transform: scale(1);
					transform: scale(1);
	}
		
	.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 {
		position: relative;
		display: inline-block;
		padding: 20px; 
		margin: 0 5px;
	}
	
	.portfolio-item-overlay-actions .portfolio-item-zoom i {
		padding: 5px;
		color: #fff; 
		font-size: 24px; 
		border-radius: 50%;
		-webkit-transition: box-shadow .4s linear;
				transition: box-shadow .4s linear;
	}
	
	.portfolio-item-overlay-actions .portfolio-item-zoom i:hover {
		box-shadow: 0 0 1px 5px rgba(102, 161, 241, 0.4),
					0 0 1px 10px rgba(102, 161, 241, 0.3), 
					0 0 1px 15px rgba(102, 161, 241, 0.1);
	}

	.portfolio-item-overlay .portfolio-item-description {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		color: #ffffff;
		opacity: 0;
		text-align: center;
		-webkit-transition: all .3s linear;
				transition: all .3s linear;
		 -webkit-transition-delay: .3s;
				 transition-delay: .3s;		
	}
	
	.portfolio-item.no-image .portfolio-item-description {
		position: absolute;
		top: 50%;
		left: 50%; 
		color: #ffffff;
		-webkit-transform: translateX(-50%) translateY(-50%);
			-ms-transform: translateX(-50%) translateY(-50%);
				transform: translateX(-50%) translateY(-50%);
	}
	
	.portfolio-item.no-image .portfolio-item-description .headline h1 { color: #ffffff; }
	
	.portfolio-item.no-image .portfolio-item-description .headline { margin: 0; }
	
	.portfolio-item.no-image .portfolio-item-description .btn { margin: 0; }
	
	.portfolio-item:hover .portfolio-item-overlay .portfolio-item-description {
		bottom: 2%;
		opacity: 1;
	}
	
	.portfolio-item-description h3 { 
		margin-bottom: 0;
		font-size: 16px; 
	} 
	
	.portfolio-item-description h3 a { 
		color: #66a1f1;
		text-transform: uppercase;
	}
	
	.portfolio-item.no-image { background-color: #151515; }
	
	.portfolio-item-preview + .portfolio-item-description { 
		padding-top: 20px; 
		text-align: center; 
	}
	
	.single-project-details {
		display: block;
		list-style-type: none;
		margin: 0;
	}
	
	.single-project-details li {
		padding: 20px 0;
		margin: 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		font-size: 16px;
	}
	
	.single-project-details .project-category {
		float: left;
		font-weight: 700;
	}
	
	.single-project-details .project-detail {
		float: right;
		font-weight: 500;
	}
	
	.single-project-details a { color: #151515; }
	
/*
* 1. Clearfix hack 
*/
	.single-project-details li:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	.portfolio-single-nav {
		display: block;
		margin: 110px 0 0 0;
		list-style-type: none;
	}
	
	.portfolio-single-nav li {
		box-sizing: border-box;
		width: 33.3333%;
		float: left;
		margin: 0;
		text-align: center;
		background-color: #66A1F1;
		border-right: 1px solid #ffffff;
	}
	
	.portfolio-single-nav li:last-child { border-right: none; }
	
	.portfolio-single-nav li a {
		display: block;
		padding: 80px 0;
		color: #ffffff;
		font-size: 15px;
		font-weight: 500;
		text-transform: uppercase;
		letter-spacing: 1px;
		-webkit-transition: all .3s;
				transition: all .3s;
	}
	
	.portfolio-single-nav li a i {
		display: inline-block;
		-webkit-transition: all .3s;
				transition: all .3s;
	}
	
	.portfolio-single-nav li:first-child a:hover i {
		-webkit-transform: translateX(-20px);
			-ms-transform: translateX(-20px);
				transform: translateX(-20px);
	}
	
	.portfolio-single-nav li:last-child a:hover i {
		-webkit-transform: translateX(20px);
			-ms-transform: translateX(20px);
				transform: translateX(20px);
	}
	
	.portfolio-single-nav:after {
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}

	@media (min-width: 1200px) {

		.portfolio-item:hover .portfolio-item-overlay .portfolio-item-description { bottom: 5%; }
		
		.portfolio-item-description h3 { 
			margin-bottom: 8px;
			font-size: 20px; 
		} 
		
	}

	@media (min-width: 768px) and (max-width: 991px) {
		
		.portfolio-item-overlay-actions { top: 30%; }
		
	}
	
	@media (max-width: 767px) {
		
		.portfolio-single-nav li {
			width: 100%;
			float: none;
			margin: 0;
			border-right: none;
			border-bottom: 1px solid #ffffff;
		}
		
		.portfolio-single-nav li a { padding: 20px 0; }
		
		.portfolio-item.no-image .portfolio-item-description {
			position: relative;
			top: 0;
			left: 0;
			padding: 100px 0;
			text-align: center;
			-webkit-transform: none;
				-ms-transform: none;
					transform: none;
		}
		
	}
	
/* ==========================================================================
   =Portfolio Filter
   ========================================================================== */

	.portfolio-filter ul.menu__list {
		position: relative;
		margin: 50px 0 115px 0;
		padding: 0;
		list-style: none;
		text-align: center;
	}
	
	.portfolio-filter ul.menu__list.no-margin-top { margin-top: 0; }
	
	.portfolio-filter ul li.menu__item { 
		display: inline-block;
		margin-bottom: 0;
	}
	
	.portfolio-filter ul li:last-child { margin-right: 0; }
	
	.portfolio-filter ul li a.menu__link { 
		text-decoration: none;
		display: block;
		padding: 10px; 
		color: #151515;
		font-weight: 500;	
		font-size: 12px;
		letter-spacing: 1px;
		text-transform: uppercase;
	}

	/* Animated Filter */
	.menu--animated .menu__item {
		position: relative;
	}

	.menu--animated .menu__link {
		position: relative;
		display: block;
		min-width: 110px;
		text-align: center;
		-webkit-transition: color 0.2s;
				transition: color 0.2s;
	}


	.menu--animated .menu__item--current .menu__link {
		color: #66A1F1;
		-webkit-transition-duration: 0.4s;
		transition-duration: 0.4s;
	}

	.menu--animated .menu__item:before,
	.menu--animated .menu__item:after,
	.menu--animated .menu__link:before,
	.menu--animated .menu__link:after {
		content: '';
		position: absolute;
		background: #66A1F1;
		-webkit-transition: -webkit-transform 0.2s;
		transition: transform 0.2s;
	}

	.menu--animated .menu__item:before,
	.menu--animated .menu__item:after {
		top: 0;
		width: 2px;
		height: 100%;
		-webkit-transform: scale3d(1, 0, 1);
		transform: scale3d(1, 0, 1);
	}

	.menu--animated .menu__item:before {
		left: 0;
		-webkit-transform-origin: 50% 100%;
		transform-origin: 50% 100%;
	}

	.menu--animated .menu__item:after {
		right: 0;
		-webkit-transform-origin: 50% 0%;
		transform-origin: 50% 0%;
	}

	.menu--animated .menu__link:before,
	.menu--animated .menu__link:after {
		left: 0;
		width: 100%;
		height: 1px;
		-webkit-transform: scale3d(0, 1, 1);
		transform: scale3d(0, 1, 1);
	}

	.menu--animated .menu__link:before {
		top: 0;
		-webkit-transform-origin: 0 50%;
		transform-origin: 0 50%;
	}

	.menu--animated .menu__link:after {
		bottom: 0;
		-webkit-transform-origin: 100% 50%;
		transform-origin: 100% 50%;
	}

	.menu--animated .menu__item--current:before,
	.menu--animated .menu__item--current:after,
	.menu--animated .menu__item--current .menu__link:before,
	.menu--animated .menu__item--current .menu__link:after {
		-webkit-transform: scale3d(1, 1, 1);
				transform: scale3d(1, 1, 1);
		-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
		transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
								-webkit-transition-duration: 0.4s;
										transition-duration: 0.4s;
	}

	.menu--animated .menu__item--current:after {
		-webkit-transition-delay: 0s;
		transition-delay: 0s;
	}

	.menu--animated .menu__item--current .menu__link:before {
		-webkit-transition-delay: 0.2s;
		transition-delay: 0.2s;
	}

	.menu--animated .menu__item--current .menu__link:after {
		-webkit-transition-delay: 0.2s;
		transition-delay: 0.2s;
	}
		
	@media (max-width: 767px) {
		
		.portfolio-filter ul li.menu__item { display: block; }
		
	}

/* ==========================================================================
   =Portfolio Pagination
   ========================================================================== */
	
	.portfolio-pagination { margin-bottom: 120px; }

	/*
	 * 1. Clearfix hack 
	 */
	.portfolio-pagination:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}	
	
	.portfolio-pagination .nav-links {
		position: relative;
		text-align: center;
	}
	
	.portfolio-pagination .page-numbers,
	.portfolio-pagination .prev,
	.portfolio-pagination .next {
		position: relative;
		display: inline-block;
		box-sizing: border-box;
		width: 40px;
		color: #151515;
		text-align: center;
		font-size: 16px;
		line-height: 40px;
		-webkit-transition: all .5s;
				transition: all .5s;
	}
	
	.portfolio-pagination.style-2 .page-numbers,
	.portfolio-pagination.style-2 .prev,
	.portfolio-pagination.style-2 .next {
		background-color: #bababa;
		text-align: center;
	}
	
	.portfolio-pagination.style-3 .page-numbers,
	.portfolio-pagination.style-3 .prev,
	.portfolio-pagination.style-3 .next { border: 2px solid transparent; }
	
	.portfolio-pagination.style-4 .page-numbers:after,
	.portfolio-pagination.style-4 .prev:after,
	.portfolio-pagination.style-4 .next:after { 
		position: absolute;
		bottom: -30px;
		left: 50%;
		width: 40px;
		height: 1px;
		content: "";
		opacity: 0;
		background-color: #66A1F1;
		-webkit-transform: translateX(-50%);
			-ms-transform: translateX(-50%);
				transform: translateX(-50%);
		-webkit-transition: all .3s;
				transition: all .3s;		
	}
	
	.portfolio-pagination.style-4 .page-numbers:hover:after,
	.portfolio-pagination.style-4 .page-numbers.current:after {
		opacity: 1;
		bottom: -10px;
	}
	
	.portfolio-pagination .page-numbers:hover,
	.portfolio-pagination .page-numbers.current {
		text-decoration: none;
		color: #66A1F1;
	}

	.portfolio-pagination.style-2 .page-numbers:hover,
	.portfolio-pagination.style-2 .page-numbers.current {
		background-color: #66A1F1;
		color: #ffffff;
	}
	
	.portfolio-pagination.style-3 .page-numbers:hover,
	.portfolio-pagination.style-3 .page-numbers.current { border-color: #66A1F1; }

	.portfolio-pagination .current {
		display: inline-block;
		font-weight: 700;
	}

	.portfolio-pagination .prev:before,
	.portfolio-pagination .next:before {
		line-height: 40px;
		position: relative;
		font-family: "FontAwesome";
	}

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

	.portfolio-pagination .next:before { content: "\f105"; }	
	
	@media (max-width: 767px) {
		
		.portfolio-pagination .page-numbers,
		.portfolio-pagination .prev,
		.portfolio-pagination .next {
			width: 35px;
			height: 35px;
			font-size: 14px;
			line-height: 35px;
		}
		
		.portfolio-pagination .prev:before,
		.portfolio-pagination .next:before { line-height: 35px; }
		
	}
   
/* ==========================================================================
   =Portfolio Grid
   ========================================================================== */

    .portfolio-grid {
		margin-bottom: 110px;
		list-style: none;
	}
	
	.portfolio-grid.gutter { margin: -15px -15px 60px -15px; }
	
	.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.3333333333%; } 
	.portfolio-grid.four-cols .item { width: 25%; } 
	.portfolio-grid.five-cols .item { width: 25%; } 
	
	.portfolio-grid .item.width-1 { width: 12.5%; }
	.portfolio-grid .item.width-2 { width: 25%; }
	.portfolio-grid .item.width-3 { width: 50%; }
	
	/*
	 * 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.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%; }
		
		.portfolio-grid .item.width-1,
		.portfolio-grid .item.width-2,
		.portfolio-grid .item.width-3 { 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: block;
		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 60px; }
	
	.product-slider .bx-wrapper { margin-bottom: 0; }
   
	.bx-pager,
	.bx-controls-auto,
	.bx-controls-direction  { z-index: 10; }
   
/* =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-wrapper .bx-controls-auto { bottom: 0; }
	
	.testimonial-slider .bx-wrapper .bx-pager { text-align: center; }
	
	.bx-wrapper .bx-pager.bx-default-pager a {
		width: 10px;
		height: 10px;
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
		background-color: #ffffff;
		border-radius: 0;
		-webkit-transition: all .3s;
				transition: all .3s;
	}
	
	.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-color: #66A1F1;
		border-color: #66A1F1;
	}
	
/* =Bx Slider Dir Nav
   ========================================================================== */ 
   
	.bx-wrapper .bx-prev {
		left: 0;
		background: #66A1F1 url(../images/left.png) no-repeat center center;
	}

	.bx-wrapper .bx-next {
		right: 0;
		background: #66A1F1 url(../images/right.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 */	
	}	
	
	#product-slider-pager {
		margin-bottom: 30px;
		text-align: center;
	}
	
	#product-slider-pager a {
		display: inline-block;
		width: 25%;
		float: left;
		box-sizing: border-box;
	}
	
	#product-slider-pager:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	@media (max-width: 767px) {

		.bx-wrapper { margin-bottom: 0; }

	}
	
/* ==========================================================================
   =Nouislider
   ========================================================================== */
	
	.noUi-target {
		margin-bottom: 30px;
		background-color: #fafafa;
		border: none;
		border-radius: 0;
		box-shadow: none;
	}
	
	.noUi-horizontal { height: 4px; }
	
	.noUi-connect {
		background: #bababa none repeat scroll 0 0;
		box-shadow: none;
	}
	
	.noUi-handle:before,
	.noUi-handle:after { background-color: transparent; }
	
	.noUi-horizontal .noUi-handle {
		height: 18px;
		left: -17px;
		top: -8px;
		width: 18px;
	}
	
	.noUi-handle {
		background: #66a1f1;
		border: none;
		border-radius: 0;
		box-shadow: none;
		cursor: default;
	}
	
/* ==========================================================================
   =Fullwidth section
   ========================================================================== */

	.fullwidth-section.custom-color-selected {
		background-color: #333;
		color: #ffffff;
	}	
	
	.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 .btn:hover,
	.fullwidth-section.custom-color-selected .icon-box-1 > i,
	.fullwidth-section.custom-color-selected .icon-box-2 > i,
	.fullwidth-section.custom-color-selected .icon-box-3 > i,
	.fullwidth-section.custom-color-selected .icon-box-1 .icon-box-content h4 a,
	.fullwidth-section.custom-color-selected .icon-box-2 .icon-box-content h4 a,
	.fullwidth-section.custom-color-selected .icon-box-3 .icon-box-content h4 a,
	.fullwidth-section.custom-color-selected .icon-box-5 .icon-box-content h4 a:hover,
	.fullwidth-section.custom-color-selected ul.circle-2 li:before,
	.fullwidth-section.custom-color-selected .accordion.accordion-style-3 .accordion-item,
	.fullwidth-section.custom-color-selected .toggle.toggle-style-3 .toggle-item,
	.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 .radio:checked ~ .content p,
	.fullwidth-section.custom-color-selected .portfolio-filter ul li a.menu__link,
	.fullwidth-section.custom-color-selected .btn.white:hover { color: #ffffff; }				.fullwidth-section.custom-color-selected .accordion.accordion-style-3 .accordion-item { color: #000000; }
	
	.fullwidth-section.custom-color-selected a:hover,
	.fullwidth-section.custom-color-selected .icon-box-4 .icon-box-content a,
	.fullwidth-section.custom-color-selected ul.circle-2 li:hover:before { color: #66a1f1; }
	
	.fullwidth-section.custom-color-selected .pricing-table { background-color: #333; }
	
	.fullwidth-section.custom-color-selected .icon-box-4 .icon-box-content p,
	.fullwidth-section.custom-color-selected .btn.white { color: #151515; }

	.fullwidth-section.custom-color-selected .pie-chart { box-shadow: none; }
	
	.fullwidth-section.custom-color-selected #timeline label {
		border-bottom-color: #555;
		color: #ffffff;
	}
	
	.fullwidth-section.custom-color-selected .testimonial h5:before { background-color: #ffffff; }
	
	.fullwidth-section.custom-color-selected input[type="text"],
	.fullwidth-section.custom-color-selected input[type="password"],
	.fullwidth-section.custom-color-selected input[type="date"],
	.fullwidth-section.custom-color-selected input[type="datetime"],
	.fullwidth-section.custom-color-selected input[type="datetime-local"],
	.fullwidth-section.custom-color-selected input[type="month"],
	.fullwidth-section.custom-color-selected input[type="week"],
	.fullwidth-section.custom-color-selected input[type="email"],
	.fullwidth-section.custom-color-selected input[type="number"],
	.fullwidth-section.custom-color-selected input[type="search"],
	.fullwidth-section.custom-color-selected input[type="tel"],
	.fullwidth-section.custom-color-selected input[type="time"],
	.fullwidth-section.custom-color-selected input[type="url"],
	.fullwidth-section.custom-color-selected input[type="color"],
	.fullwidth-section.custom-color-selected textarea {
		border: 2px solid #ffffff;
		background-color: #ffffff;
	}

	#bg-1 {
		padding: 60px 0;
		background-image: url(../../content/backgrounds/1920x700-2.jpg);
		background-repeat: no-repeat;
		background-size: cover;
	}
	
	#bg-3 {
		margin-bottom: 0;
		padding: 100px 0 40px;
		background-image: url(../../content/backgrounds/1920x1200-1.jpg);
		background-repeat: no-repeat;
		background-size: cover;
	}
	
	#bg-4 {
		margin: 110px 0;
		padding: 110px 0 70px 0;
		background-image: url(../../content/backgrounds/industrial-floor-coatings.jpg);
		background-repeat: no-repeat;
		background-size: cover;
	}
	
	#bg-4 .milestone-value { color: #fff; }
	
	#bg-5 {
		margin: 110px 0;
		padding: 110px 0 80px 0;
		background-image: url('../../content/backgrounds/1920x1400-1.jpg');
		background-position: left bottom;
	}
	
	#bg-7 {
		margin-top: 110px;
		margin-bottom: 0;
		padding: 110px 0;
		background-image: url(../../content/backgrounds/1920x1200-5.jpg);
		background-repeat: no-repeat;
		background-size: cover;
	}
	
	#bg-7 .bx-wrapper { margin-bottom: 0; }
	
	#bg-8 {
		margin-top: 100px;
		margin-bottom: 0;
		padding: 110px 0 70px 0;
		background-color: #66A1F1;
	}
	
	#bg-8 .milestone-value { color: #fff; }
	
	#bg-9 {
		margin-bottom: 0;
		padding: 110px 0;
		background-image: url(../../content/backgrounds/1920x1200-4.jpg);
		background-repeat: no-repeat;
		background-size: cover;
	}
	
	#bg-10 {
		margin-bottom: 0;
		padding: 110px 0 50px 0;
		background-color: #f1f1f1;
	}
	
	#bg-10 .icon-box-1 { background-color: #ffffff; }

	#bg-11 {
		margin-bottom: 0;
		padding: 40px 0;
		background-color: #66a1f1;
	}

	#bg-12 {
		overflow: visible;
		margin-bottom: 0;
		padding: 0;
		background-color: #66A1F1;
	}
	
	#bg-14 {
		background-color: #E9E9E9;
		padding: 110px 0;
		margin-bottom: 110px;
	}
	
	#bg-15 {
		margin: 110px 0;
		padding: 110px 0;
		background-image: url(../../content/backgrounds/1920x1200-10.jpg);
		background-repeat: no-repeat;
		background-size: cover;
	}
	
	#bg-15 .milestone-value { color: #fff; }
	
	#bg-16 {
		margin-bottom: 0;
		padding: 100px 0 40px 0;
		background: linear-gradient(183deg,#000307, #66a1f1);
	}

	#bg-17 {
		margin-bottom: 0;
		padding: 70px 0;
		background: linear-gradient(183deg, #66a1f1, #000307);
	}
	
	#bg-17 .milestone-value { color: #fff; }
	
	#bg-19 {
		margin-bottom: 0;
		padding-bottom: 0;
		padding: 100px 0 0 0;
		background-color: #151515;
	}		#bg-19-custom {		margin-bottom: 0;		padding-bottom: 0;		padding: 10px 0 110px 0;		background-color: #ffffff;				color: #151515;	}		#bg-19-custom h1 {				color: #151515;	}
	
	#bg-19 .accordion { margin-bottom: 110px; }
	
	#bg-19 img {
		bottom: 0;
		display: inline-block;
		position: absolute;
	}
	
	#bg-20 {
		margin: 0;
		padding: 0;
		height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
		background-image: url(../../content/backgrounds/1920x1200-5.jpg);
		background-repeat: no-repeat;
		background-size: cover;
	}
	
	#bg-20 .social-icon {
		float: none;
		display: inline-block;
	}
	
	#bg-21 {
		margin: 110px 0;
		padding: 110px 0 0 0;
		background-color: #66A1F1;
	}
	
	#bg-21 img { margin-top: -110px; }
	
	#bg-11 .bx-wrapper,
	#bg-17 .bx-wrapper { margin-bottom: 0; }
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		#bg-19 img { width: 50%; }
		
	}

	@media (max-width: 767px) {
		
		#bg-3 { padding: 40px 0 20px 0; }

		#bg-19 img { position: relative; }
		
		#bg-20 {
			padding: 50px 0 0 0;
			height: auto;
			display: block;
		}
		
		#bg-21 { 
			margin: 20px 0;
			padding: 80px 0 50px 0; 
		}

	}
	
	
	
	
	
	
	
	
	
	