/**
 * Name: elements.css
 *
 *	T.O.C
 *	
 *	#Accordions & Toggles
 *  #Alerts
 *  #Animations
 *  #Back to top
 *	#Buttons
 *	#Callout Boxes
 *	#Custom Lists
 *	#Dividers
 *  #Fullwidth Section
 *	#Google Maps
 *  #Headlines
 *	#Icon Boxes
 *	#Milestones
 *	#Our Process
 *	#Pie charts
 *	#Pricing Tables
 *	#ProgressBars
 *	#SocialMedia
 *	#Styled Tables
 *	#Tabs
 *	#Testimonials
 *	#Timeline
 *  #WordPress Widgets
 *  #WordPress Comments
 *  #WordPress Comment Form
 */

/* ==========================================================================
   #Accordions & Toggles
   ========================================================================== */

	.wpb_accordion_section { border-top:1px solid #cdcdcd;  }
	.wpb_accordion_section { border-top:1px solid #cdcdcd; }
	
	.wpb_accordion_header { padding-left: 20px !important; }
	
	.wpb_content_element .wpb_accordion_wrapper .wpb_accordion_header { background-color:#fff !important; }
	.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tab, 
	.wpb_content_element .wpb_accordion_wrapper .wpb_accordion_content { padding: 5px 20px 20px 20px; }
	.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header {
		font-family: inherit;
		font-size: inherit;
		font-weight: inherit;
		letter-spacing: inherit;
		line-height: inherit;
		margin: 0 0 1px;
		padding: 0;
		position: relative;
		text-transform: none;
	}
	.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header a {
		padding: 20px;
	}
	.wpb_accordion .wpb_accordion_wrapper .ui-state-default .ui-icon, 
	.wpb_accordion .wpb_accordion_wrapper .ui-state-active .ui-icon {
		background-repeat: no-repeat;
		display: block;
		height: 18px;
		position: absolute;
		left: 0px;
		top: 26px !important;
		width: 18px;
	}
	.wpb_accordion .wpb_accordion_wrapper .ui-state-active .ui-icon {
	
	}

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

	.alert {
		padding: 13px 15px;
		border: 1px solid #cdcdcd;
		margin-bottom: 30px;
		font-size: 18px;
		text-align: center;
	}
	
	.alert i {
		position: relative;
		top: 1px;
		margin-right: 7px;
		font-size: 20px;
	}
	
	.alert.info {
		background-color: #94cee4;
		color: #fff;
	}
	
	.alert.success {
		background-color: #289ccb;
		color: #fff;
	}
	
	.alert.error {
		background-color: #ff0030;
		color: #fff;
	}
	
	.alert.warning {
		background-color: #ff7992;
		color: #fff;
	}
	
/* ==========================================================================
   #Animations
   ========================================================================== */
   
   .animate {
		-webkit-animation-duration: 1s;
			  animation-duration: 1s;
		-webkit-animation-fill-mode: both;
			  animation-fill-mode: both;
		visibility: hidden;
	}

	.animate.visible { visibility: visible; }
	
	.animate.hidden { visibility: hidden; }
   
/* ==========================================================================
   #Back to top
   ========================================================================== */

	#back-to-top {
		position: fixed;
		z-index: 1000;
		right: -40px;
		bottom: 20px;
		width: 40px;
		height: 40px;
		background-color: #747474;
		color: #fafafa;
		font-size: 30px;
		text-align: center;					
		opacity: 0.5;
		cursor: pointer;
		border-radius: 3px;
		-webkit-transition: all 0.4s ease 0s;
				transition: all 0.4s ease 0s;
	}
	
	#back-to-top i {
		font-size: 21px;
		line-height: 37px;
		font-weight: normal;
		vertical-align: top;
		-webkit-transition: all 0.4s ease 0s;
				transition: all 0.4s ease 0s;
	}
	
	#back-to-top:hover {
		background-color: rgba(0, 0, 0, 0.7);
	}
	
	#back-to-top:hover i {
		color: #fff;
	}
	
	#back-to-top.visible {
		right: 40px;
	}
	
	#back-to-top.gone {
		right: -40px;
	}

/* ==========================================================================
   #Buttons
   ========================================================================== */

	.btn { 
		display: inline-block; 
		padding: 10px 25px; 
		border: 1px solid #cdcdcd;
		margin: 0 5px 20px 0;
		background-color: #fff;
		color: #818181;
		line-height: 18px; 
		text-decoration: none !important;
		vertical-align: middle;
		cursor: pointer;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 	
	}
	
	a.btn { color: #818181; }
	
	.btn:focus { outline: 0; }
	
	.btn-large {
		padding: 17px 45px;
		font-size: 18px;
	}
	
	.btn i,
	.btn-large i { 
		float: left; 
		margin: 2px 8px 0 -4px;
		font-size: 16px; 
		line-height: 16px; 
	}
	
	.btn:hover { 
		border-color: #289ccb;
		background-color: #289ccb;
		color: #fff;
	}
	
	/* Colors Button */
	
	.btn-blue {
		border-color: #289ccb;
		background-color: #289ccb;
		color: #fff;
	}
	
	a.btn-blue { color: #fff; }
	
	.btn-blue:hover {
		border-color: #0f5066;
		background-color: #0f5066;
	}
	
/* ==========================================================================
   #Callout Boxes
   ========================================================================== */

	.callout-box {
		padding: 30px 0;
		margin-bottom: 50px;
		background-color: #333;
	}
	
	.callout-box p { margin-bottom: 0; }
	
	/**
 	 * Callout box with one background image
 	 *
	 * 1. background-image must be supplied using inline css as it is different for every .callout-box
	 *
	 */
	 
	.callout-box.bg-img {
		background-repeat: no-repeat; /* 1 */ 
		background-position: center center;
		-webkit-background-size: cover;
				background-size: cover;
		color: #fff;
	}
	
	/**
 	 * Callout box with repeating background image
 	 *
	 * 1. background-image must be supplied using inline css as it is different for every .callout-box
	 *
	 */
	 
	.callout-box.bg-pattern {
		background: repeat top left; /* 1 */	
		color: #fff;
	}
	
	.callout-box.bordered {
		border: 1px solid #efefef;
		background-color: #f5f5f5;
	}
	
	/**
 	 * Callout box grid system
 	 *
	 * 1. overwriting inherited .row width to 100% in order to make it fluid
	 *
	 */
	
	.callout-box .row { 
		width: 100%; /* 1 */ 
	}
	
	.callout-box .span1,
	.callout-box .span2,
	.callout-box .span3,
	.callout-box .span4,
	.callout-box .span5,
	.callout-box .span6,
	.callout-box .span7,
	.callout-box .span8,
	.callout-box .span9,
	.callout-box .span10,
	.callout-box .span11,
	.callout-box .span12 {
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 0 10px;
		margin: 0;	
	}
	
	.callout-box .span12 { width: 100%; }
	.callout-box .span11 { width: 91.6666666667%; }
	.callout-box .span10 { width: 83.3333333333%; }
	.callout-box  .span9 { width: 75%; }
	.callout-box  .span8 { width: 66.6666666667%; }
	.callout-box  .span7 { width: 58.3333333333%; }
	.callout-box  .span6 { width: 50%; }
	.callout-box  .span5 { width: 41.6666666667%; }
	.callout-box  .span4 { width: 33.3333333333%; }
	.callout-box  .span3 { width: 25%; }
	.callout-box  .span2 { width: 16.66666666666667%; }
	.callout-box  .span1 { width: 8.333333333333333%; }
  
	@media (max-width: 767px) {
	
		.callout-box .span1,
		.callout-box .span2,
		.callout-box .span3,
		.callout-box .span4,
		.callout-box .span5,
		.callout-box .span6,
		.callout-box .span7,
		.callout-box .span8,
		.callout-box .span9,
		.callout-box .span10,
		.callout-box .span11,
		.callout-box .span12 { width: 100%; }
	  
	}

/* ==========================================================================
   #Custom Lists
   ========================================================================== */

	/**
 	 * Custom lists
 	 *
	 * 1. unstyled list
	 * 2. list with squares for bullets
	 * 3. list with discs for bullets
	 *
	 */
	 
	ul.unstyled { list-style-type: none; } /* 1 */
	ul.square { list-style-type: square; } /* 2 */
	ul.circle { list-style-type: circle; } /* 3 */
	
	/**
 	 * FontAwesome lists
 	 *
	 * 1. Check list
	 * 2. Fill circle list
	 *
	 */
	 
	ul.check,									/* 1 */
	ul.fill-circle { list-style: none; }		/* 2 */

	ul.check li:before,
	ul.fill-circle li:before { 
		position: relative;
		top: -1px;
		width: auto;
		height: auto;
		margin-right: 10px;
		color: #289ccb;
		font-family: 'FontAwesome';
		font-size: 14px;
		font-style: normal;
	}
	
	ul.fill-circle li:before {
		top: -2px;
		font-size: 8px; 
	}
	
	ul.check li:before { content: ""; }	
	ul.fill-circle li:before { content: ""; }
	
	ul.check li,
	ul.fill-circle li { margin-bottom: 10px; }
	
	ul.check li:last-child,
	ul.fill-circle li:last-child { margin-bottom: 0; }

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

	.divider { margin: 30px 0; }
	
	.divider.single-line { border-top: 1px solid #e9e9e9; }
	
	.divider.double-line { border-top: 4px double #e9e9e9; }
	
	.divider.single-dotted {
		 height: 1px;
		 background: url(../images/bg-single-dotted.gif) repeat-x top left ;  
	}
	
	.divider.double-dotted { 
		height: 4px;
		background: url(../images/bg-double-dotted.gif) repeat-x top left; 
	}	

/* ==========================================================================
   #Fullwidth Section
   ========================================================================== */
   
    /**
 	 * Full width section
 	 *
	 * 1. background-image must be supplied using inline css as it is different for every .fullwidth-section
	 *
	 */
	 
   .ewf-full-width-section {
		
		overflow: hidden;
		position: relative;
		z-index: 0;	
		/*
		background-attachment: scroll;
		background-repeat: no-repeat; 
		background-position: 50% 0;
		-webkit-background-size: cover;
				background-size: cover;			
		*/
	}

	.row-overlay-inner {
		position: relative;
		z-index: 3;
	}
   
   	.row-overlay.ewf-row-overlay-pattern {
		position: absolute;
		z-index: 2;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #289ccb;
		opacity: 0.6;
	}
	
	.fullwidth-section-video {
		position: absolute;
		z-index: 1;
		top: 0;
		overflow: hidden;
		width: 100%;
		height: 100%;
	}
	
	
	.parallax {
		overflow: hidden;
		position: relative;
		z-index: 0;	
		background-attachment: scroll;
		background-repeat: no-repeat; /* 1 */ 
		background-position: 50% 0;
		-webkit-background-size: cover;
				background-size: cover;			
	}
	
	.parallax.parallax-enabled { 
		background-attachment: fixed !important;
		/* if parallax then we don't want it to cover */
		-webkit-background-size: cover;
				background-size: cover;
		
	}
	
	
	.fit-vids-style { display:none; } /* ytplayer fix */
	
	.fullwidth-section .callout-box {
		padding: 0;
		margin-bottom: 0;
		background-color: transparent;
	}
	
	.fullwidth-section .callout-box .btn { margin-top: 40px; }
	
	/* Overwite element color in fullwidth-section */
	
	.ewf-full-width-section .btn { color: #289ccb; }
	
	.ewf-full-width-section a,
	.ewf-full-width-section ul.check li:before,
	.ewf-full-width-section ul.fill-circle li:before,
	.ewf-full-width-section .btn:hover,
	.ewf-full-width-section .btn-blue { color: #fff; }

	.ewf-full-width-section .accordion-item-toggle,
	.ewf-full-width-section .toggle-item-toggle,
	.ewf-full-width-section .btn { border-color: #fff; }

	.ewf-full-width-section .process-builder li i,
	.ewf-full-width-section .process-builder li h1 { outline: none; }

	.ewf-full-width-section .headline:before {
		left: 0;
		width: 40%;
		border-color: #fff;
	}

	.ewf-full-width-section .headline:after {
		right: 0;
		left: auto;
		width: 40%;
		border-color: #fff;
	}

	.ewf-full-width-section .headline h1 { background-color: transparent; }


	@media (min-width: 768px) and (max-width: 979px) {
		
		.ewf-full-width-section .headline:before,
		.ewf-full-width-section .headline:after { width: 35%; }

		
	}

	@media (max-width: 767px) {
				
		.ewf-full-width-section .headline:before,
		.ewf-full-width-section .headline:after { content: none; }
		
	}
   
/* ==========================================================================
   #Google Maps
   ========================================================================== */

	.map {
		position: relative;		
		margin: 50px 0;  
	}

	.google-map { 
		width: 100%; 
		height: 560px;	
		border: 1px solid #cdcdcd;	
	}	
	
	.google-map  img { max-width: none; } 
	
	.contact {
		position: absolute;
		top: 50px;
		left: 150px;
		padding: 40px 150px 20px 50px;
		border: 1px solid #cdcdcd;
		background-color: #fff;
	}
	
	.contact:before {
		position: absolute;
		z-index: 2;
		bottom: -35px;
		left: 50%;
		width: 0; 
		height: 0; 
		border-left: 20px solid transparent; 
		border-right: 20px solid transparent; 
		border-top: 35px solid #fff;
		margin-left: -10px;
		content: "";
	}
	
	.contact:after {
		position: absolute;
		z-index: 1;
		bottom: -36px;
		left: 50%;
		width: 0; 
		height: 0; 
		border-left: 18px solid transparent; 
		border-right: 18px solid transparent; 
		border-top: 35px solid #cdcdcd;
		margin-left: -9px;
		content: "";
	}
	
	@media (max-width: 767px) {
		
		.contact {
			position: relative;
			top: 0;
			left: 0;
			padding: 30px 15px 10px 15px;
			border: none;
		}
		
		.contact:before,
		.contact:after { display: none; }
		
	}

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

	.headline {
		position: relative;
		margin: 50px 0 100px 0;
		text-align: center;		
	}
	
	.headline:before,
	.headline:after {
		position: absolute;
		z-index: 1;
		top: 19px;
		left: 0;
		right: 0;
		height: 10px;
		border-top: 1px solid #cdcdcd;
		border-bottom: 1px solid #cdcdcd;
		content: "";
	}
	
	.headline h1 {
		position: relative;
		z-index: 2;
		display: inline-block;
		padding: 0 25px;
		margin-bottom: 0;
		background-color: #fff;
	}
	
	.title {
		font-size: 50px;
		line-height: 50px;
	}
	
	.title-error {
		color: #289ccb;
		font-size: 172px;
		line-height: 200px;
		font-weight: 700;
	}
	
	@media (max-width: 767px) {
	
		.headline { margin-bottom: 50px; }
	
	}

/* ==========================================================================
   #Icon Boxes
   ========================================================================== */

/* Icon Box 1
   ========================================================================== */
   
	.icon-box-1 { 
		position: relative; 
		margin: 50px 0; 
	}
		
	.icon-box-1 > i { 
		float: left;
		display: block;  
		font-size: 48px; 
		line-height: 68px;
		color: #289ccb;	
	} 
	
	.icon-box-1 h3 { margin-bottom: 15px; }
	
	.icon-box-1 .icon-box-content { margin-left: 85px; }

/* Icon Box 2
   ========================================================================== */
   
	.icon-box-2 { 
		position: relative; 
		margin: 50px 0;
		text-align: center;		
	}
		
	.icon-box-2 > i { 
		display: block;
		margin-bottom: 15px; 
		font-size: 48px;
		color: #289ccb;
	}
	
	.icon-box-2 > img {
		max-width: 100%;
		margin-bottom: 30px;
	}
	
	.icon-box-2 h3 { 
		margin-bottom: 20px;
		line-height: 24px;
	}
	
	.icon-box-2 h3 small {
		font-size: 14px;
		color: #289ccb;	
	}
	
	.icon-box-2 .icon-box-content {}
	
/* Icon Box 3
   ========================================================================== */
   
	.icon-box-3 { position: relative; }
		
	.icon-box-3 > i { 
		float: left;
		display: block;  
		font-size: 75px; 
		line-height: 75px;	
	} 
	
	.icon-box-3 .icon-box-content { margin-left: 105px; }
	.icon-box-3 .icon-box-content h4 { padding-top: 7px; }
	
	@media (max-width: 767px) {
		
		
		.icon-box-3 > i { margin-right: 20px; }
		.icon-box-3 .icon-box-content { margin-left: 0; }
		
	}
	

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

	.milestone {
		position: relative;
		margin-bottom: 50px;
		text-align: center;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	.milestone:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;		
	}
	
	.milestone i {
		z-index: 20;
		font-size: 32px;
	}
	
	.milestone .milestone-content {
		z-index: 10;
		color: #222222;
		font-size: 48px;
		line-height: 48px;
		font-weight: 600;
	}
	
	.milestone .milestone-description {
		margin-top: 35px;
		color: #289ccb;
		font-size: 18px; 
		line-height: 24px;
	}

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

	.process-builder { 
		position: relative;
		margin-bottom: 40px;
		list-style: none;
		text-align: center; 
	}
	
	.process-builder:before {
		position: absolute;
		z-index: 1;
		top: 70px;
		left: 130px;
		display: block;
		width: 75%;
		border-top: 1px solid #cdcdcd;
		content: "";
	}
	
	.process-builder li { 
		float: left;
		width: 25%;  
	}
	
	.process-builder li i,
	.process-builder li h1 {
		position: relative;
		z-index: 2;
		display: block;
		width: 140px; 
		height: 140px;
		overflow: hidden;  
		border: 1px solid #d7d7d7;
		border-radius: 50%;
		outline: 10px solid #fff;
		margin: 0 auto 20px;
		background-color: #fff;
		font-size: 48px; 
		line-height: 140px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 
	}
	
	.process-description {
		padding: 0 20px;
		text-align: left; 
	}
	
	.process-description h2 { line-height: 24px; }
	.process-description small { font-size: 14px; }
	
	.process-builder li:hover i,
	.process-builder li:hover h1 {
		background-color: #289ccb;
		color: #fff;
	}
	
	/* Number of Items */
	
	.process-builder.three-items li { width: 33.3333333333%; }
	.process-builder.four-items li { width: 25%; }
	.process-builder.five-items li { width: 20%; }
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.process-builder:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	@media (min-width: 1400px) {
		
		.process-description { padding: 0 50px; }
		
	}
	
	@media (max-width: 767px) {
		
		.process-builder li { 
			float: none;
			width: 100%;
			margin-bottom: 40px; 
		}
		
		.process-builder:before { content: none; }
		
		.process-builder.three-items li { width: 100%; }
		.process-builder.four-items li { width: 100%; }
		.process-builder.five-items li { width: 100%; }
		
		.process-description { text-align: center; }
		
	}

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

	.pie-chart {
		position: relative;	
		margin: 0 auto;
		padding: 30px 0;
		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: 10;
		top: -10px;
		left: 0;
		display: block;
		width: 100%;
		text-align: center;
	}
	
	.pie-chart img {
		max-width: 100%;
		vertical-align: middle;
	}
	
	.pie-chart .pie-chart-custom-text { font-size: 18px; }
	
	.pie-chart .pie-chart-percent {
		font-size: 48px;
		font-weight: 600;
	}
	
	.pie-chart-description {
		position: absolute;
		top: 30px;
		left: 0;
		display: block;
		width: 100%;
		font-size: 18px;
		font-weight: 600;
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.pie-chart .pie-chart-percent { font-size: 38px; }
		.pie-chart-description { top: 20px; }
		
	}

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

	.pricing-table {
		padding: 0 20px;
		border: 1px solid #cdcdcd;
		margin-bottom: 50px;
		text-align: center;
		-webkit-transition: background-color 0.3s ease 0s;
				transition: background-color 0.3s ease 0s;
	}
	
	.pricing-table .btn { margin-bottom: -20px; }

	.pricing-table-header {
		padding: 20px 0;	
		margin: 0 -20px 45px -20px;
		background-color: #289ccb;
		color: #fff;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	.pricing-table-header h1,
	.pricing-table-header h3 { margin-bottom: 0; }
		
	.pricing-table-offer {}
	
	.pricing-table-offer ul {
		margin-bottom: 30px;
		list-style: none; 
	}
	
	.pricing-table-offer ul li { margin-bottom: 20px; }
	.pricing-table-offer ul li:last-child { margin-bottom: 0; }
	
	.pricing-table:hover .pricing-table-header { background-color: #0f5066; }

/* ==========================================================================
   #ProgressBars
   ========================================================================== */

	.progress-bar-description {
		display: block;
		margin-bottom: 15px;
		line-height: 14px;
	}
	
	.progress-bar-description.alt {
		text-align:right;
	}
	
	.progress-bar {
		position: relative;
		display: block;
		height: 20px;
		margin-bottom: 15px;
		background-color: #cdcdcd;
	}
	
	.progress-bar .progress-bar-outer {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		background-color: #289ccb;
	}
	
	.progress-bar.alt .progress-bar-outer {
		right: 0;
		left: auto;
	}
	
	.progress-bar .progress-bar-outer .progress-bar-inner {
		position: absolute;
		z-index: 1;
		top: 0;
		left: 0;
		display: block;
		overflow: hidden;
		height: 100%;
		width: 100%;
	}
	
	@media (max-width: 767px) {
	
		.progress-bar.alt .progress-bar-outer { 
			right: auto; 
			left: 0;
		}
		
	}

/* ==========================================================================
   #SocialMedia
   ========================================================================== */

	a.social-icon {
		float: left;
		display: block;
		margin-right: 10px;
		margin-bottom: 1px;
		color: #289ccb;
		text-align: center;
	}

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

	a.social-icon i {
		font-size: 18px;
		line-height: 30px;
	}
	
	a.social-icon:hover { text-decoration: none; }
	
	a.facebook-icon:hover { color: #0e59a0 !important; }
	a.twitter-icon:hover { color: #0f5066 !important; }
	a.dribble-icon:hover { color: #ea73a0 !important; }
	a.pinterest-icon:hover { color: #d73532 !important; }
	a.googleplus-icon:hover { color: #282927 !important; }
	a.tumblr-icon:hover { color: #586980 !important; }
	a.instagram-icon:hover { color: #82685a !important; }
	a.rss-icon:hover { color: #f79638 !important; }
	a.linkedin-icon:hover { color: #018faf !important; }
	a.skype-icon:hover { color: #00b0f6 !important; }
	a.flickr-icon:hover { color: #0061db !important; }
	a.vimeo-icon:hover { color: #63879c !important; }
	a.github-icon:hover { color: #3b3b3b !important; }
	a.youtube-icon:hover { color: #cc181e !important; }
	a.windows-icon:hover { color: #6dc2e9 !important; }
	a.dropbox-icon:hover { color: #007ee5 !important; }
	a.xing-icon:hover { color: #026566 !important; }	
	a.adn-icon:hover { color: #1ea076 !important; }
	a.android-icon:hover { color: #98cb02 !important; }
	a.apple-icon:hover { color: #000000 !important; }
	a.behance-icon:hover { color: #2d9ad2 !important; }
	a.bitbucket-icon:hover { color: #214f81 !important; }
	a.bitcoin-icon:hover { color: #f7931b !important; }
	a.codepan-icon:hover { color: #000000 !important; }
	a.css3-icon:hover { color: #3289ce !important; }
	a.delicious-icon:hover { color: #3399fe !important; }
	a.deviantart-icon:hover { color: #c8da30 !important; }
	a.digg-icon:hover { color: #0080c2 !important; }
	a.drupal-icon:hover { color: #0077b9 !important; }
	a.empire-icon:hover { color: #000000 !important; }
	a.foursquare-icon:hover { color: #daecb0 !important; }
	a.git-icon:hover { color: #f34f29 !important; }
	a.gitti-icon:hover { color: #634c3e !important; }
	a.hacker-news-icon:hover { color: #f18642 !important; }
	a.html5-icon:hover { color: #e54c1f !important; }
	a.joomla-icon:hover { color: #016fb9 !important; }
	a.jsfiddle-icon:hover { color: #4679a4 !important; }
	a.linux-icon:hover { color: #fece0e !important; }
	a.maxcdn-icon:hover { color: #f36f20 !important; }
	a.openid-icon:hover { color: #fe6101 !important; }
	a.pagelines-icon:hover { color: #3783e3 !important; }
	a.pied-piper-icon:hover { color: #0c7b48 !important; }
	a.qq-icon:hover { color: #23286c !important; }
	a.rebel-icon:hover { color: #000000 !important; }
	a.reddit-icon:hover { color: #cee3f8 !important; }
	a.renren-icon:hover { color: #0d81e4 !important; }
	a.share-icon:hover { color: #252525 !important; }
	a.slack-icon:hover { color: #453744 !important; }
	a.soundcloud-icon:hover { color: #fe4e00 !important; }
	a.spotify-icon:hover { color: #80bb41 !important; }
	a.stack-exchange-icon:hover { color: #265a93 !important; }
	a.stackoverflow-icon:hover { color: #fea501 !important; }
	a.steam-icon:hover { color: #191919 !important; }
	a.stumbleupon-icon:hover { color: #f04f23 !important; }
	a.tencent-weibo-icon:hover { color: #0063a7 !important; }
	a.trello-icon:hover { color: #226784 !important; }
	a.vine-icon:hover { color: #00b081 !important; }
	a.vk-icon:hover { color: #50769d !important; }
	a.wechat-icon:hover { color: #a4dc31 !important; }
	a.weibo-icon:hover { color: #d82828 !important; }
	a.wordpress-icon:hover { color: #454442 !important; }
	a.yahoo-icon:hover { color: #4b04a8 !important; }

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

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

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

	@media (max-width: 480px) {
	
		/**
		 * Force table to not be like tables anymore
		 */
		 
		table, 
		thead, 
		tbody, 
		th, 
		td, 
		tr { 
			display: block;
		}
		
		/**
		 * Hide table headers
		 */
	
		thead tr { 
			position: absolute;
			top: -9999px;
			left: -9999px;
		}
		
		.table-bordered { border-top: none; }
		tr { border-top: 1px solid #555; }
		
		td:first-child { border-top: none !important; }
	  
	}

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

	.wpb_tabs_nav  {
		border-bottom: 1px solid #cdcdcd !important;
		margin-bottom: 10px;
	}
	
	.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav a {
		background-color: #0f5066 !important;
		border-left: none !important;
		color: #fff;
		display: block;
		float: left;
		letter-spacing: 1px;
		margin-bottom: -1px !important;
		margin-right: 1px;
		padding: 10px 13px !important;
		text-decoration: none;
	}
	
	.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav:first-child a {
		border-left: 1px solid #cdcdcd !important;
	}
	
	
	.wpb_content_element .wpb_tabs_nav li.ui-tabs-active a {
		border: 1px solid #cdcdcd;
		border-bottom-color: #fff;
		background-color: #289ccb !important;
		color: #fff !important;
	}
	
	.wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab{
		margin: 0 !important;
		padding: 25px !important;
		border: 1px solid #cdcdcd !important; 
		border-top: none !important;   
		background-color: transparent !important;
	}	

	
/* ==========================================================================
   #Testimonials
   ========================================================================== */

	.testimonial { margin-bottom: 30px; }
	.testimonial h3 { margin-bottom: 0; }
	
	.testimonial blockquote { 
		position: relative; 
		margin-bottom: 20px;  
	}
	
	.testimonial blockquote p { font-style: normal; }

	.testimonial img { 
		float: left;
		max-width: 100%; 
		-webkit-border-radius: 50%;
				border-radius: 50%;
		margin-right: 30px;  
	}
	
	/*
	 * 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: 979px) {
		
		.testimonial img { 
			float: none;
			margin-right: 0;
			margin-bottom: 15px;
		}
		
	}
	
	@media (max-width: 767px) {
		
		.testimonial img { 
			float: none;
			margin-right: 0;
			margin-bottom: 15px;
		}
		
	}
	
/* ==========================================================================
   #Timeline
   ========================================================================== */

	.timeline {
		margin-bottom: 50px;
		list-style: none; 
	}
	
	.timeline li {}
	
	.timeline h3 { margin-bottom: 0; }
	
	.left-side,
	.right-side {
		float: left;  
		width: 420px; 
		-webkit-box-sizing: border-box; 
		   -moz-box-sizing: border-box; 
				box-sizing: border-box; 
		padding: 0 20px 20px 20px; 
	}
	
	.left-side { text-align: right; }
	.right-side { text-align: left; }
	
	.separator {
		position: relative; 
		float: left;
		width: 80px;  
		margin-bottom: -15px;
	}
	
	.separator:before {
		position: absolute;
		top: 0;
		left: 50%;
		height: 100%;
		border-left: 2px solid #289ccb;
		content: "";
	}
	
	.separator:after {
		position: absolute;
		top: 30%;
		left: 50%;
		width: 18px;
		height: 18px;
		border: 1px solid #289ccb;
		border-radius: 50%;
		margin-left: -9px;
		background-color: #289ccb;
		content: "";
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.timeline li:hover .separator:after { background-color: #fff; }
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.timeline li:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	@media (min-width: 1400px) {
		
		.left-side,
		.right-side { width: 535px; }
		
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.left-side,
		.right-side { width: 345px; }
		
		.separator { width: 15px; }
		
	}
	
	@media (max-width: 767px) {
		
		.timeline li { 
			padding: 40px 0 20px 0; 
			border-bottom: 1px solid #289ccb; 
		}
		
		.timeline li:last-child { border-bottom: none; }
			
		.left-side,
		.right-side { 
			width: 100%;
			text-align: left;
		}
		
		.separator { display: none; }
		
	}

/* ==========================================================================
   #WordPress Default Classes
   ========================================================================== */
   
    .ewf-inline-style { display:none; }
	.wp-caption {}
	.wp-caption-text {}
	.sticky {} 
	.gallery-caption  {}
	.alignright  {}
	.alignleft  {}
	.aligncenter  {}
	.bypostauthor {}
	
	.alignnone {
		margin: 5px 20px 20px 0;
	}

	.aligncenter,
	div.aligncenter {
		display: block;
		margin: 5px auto 5px auto;
	}

	.alignright {
		float:right;
		margin: 5px 0 20px 20px;
	}

	.alignleft {
		float: left;
		margin: 5px 20px 20px 0;
	}

	.aligncenter {
		display: block;
		margin: 5px auto 5px auto;
	}

	a img.alignright {
		float: right;
		margin: 5px 0 20px 20px;
	}

	a img.alignnone {
		margin: 5px 20px 20px 0;
	}

	a img.alignleft {
		float: left;
		margin: 5px 20px 20px 0;
	}

	a img.aligncenter {
		display: block;
		margin-left: auto;
		margin-right: auto
	}

	.wp-caption {
		background: #fff;
		border: 1px solid #f0f0f0;
		max-width: 96%; /* Image does not overflow the content area */
		padding: 5px 3px 10px;
		text-align: center;
	}

	.wp-caption.alignnone {
		margin: 5px 20px 20px 0;
	}

	.wp-caption.alignleft {
		margin: 5px 20px 20px 0;
	}

	.wp-caption.alignright {
		margin: 5px 0 20px 20px;
	}

	.wp-caption img {
		border: 0 none;
		height: auto;
		margin: 0;
		max-width: 98.5%;
		padding: 0;
		width: auto;
	}

	.wp-caption p.wp-caption-text {
		font-size: 11px;
		line-height: 17px;
		margin: 0;
		padding: 0 4px 5px;
	}
	
/* ==========================================================================
   #WordPress Widgets
   ========================================================================== */
	
	/* WordPress Widget Defaults */
	
	.widget { margin-bottom: 100px; }
	
	#header-top .widget:last-child{ margin-bottom:0; }
	#footer .widget:last-child{ margin-bottom:0; }
	#footer-bottom .widget:last-child{ margin-bottom:0; }
	
	.widget-title {
		position: relative;
		margin-bottom: 20px;
		line-height: 18px;  
		font-weight: 600;
	}
	
	.widget-title span {
		position: relative;
		z-index: 2;
		padding-right: 15px;
		background-color: #fff;
	}
	
	.widget-title:before {
		position: absolute;
		z-index: 1;
		top: 4px;
		right: 0;
		left: 0;
		height: 10px;
		border-top: 1px solid #cdcdcd;
		border-bottom: 1px solid #cdcdcd;
		content: "";
	}
	
	/* Text Widget */
	
	.widget_text {}
	
	.textwidget {}
	
	/* Search Widget */
	
	.widget_search {}
	
	#searchform { position: relative; }
	
	.screen-reader-text { display: none; }
	
	#s { 
		display: inline-block; 
		width: 100%; 
		-webkit-box-sizing: border-box; 
		   -moz-box-sizing: border-box; 
		   		box-sizing: border-box; 
	}
	
	#searchsubmit {
		position: absolute;
		top: 0;
		right: 0;
		height: 38px;
		padding: 6px 15px;
	}

	/* Recent Entries Widget */
	
	.ewf_widget_latest_posts {}
	
	.ewf_widget_latest_posts ul {
		margin-bottom: 0;
		list-style: none;
	}
	
	.ewf_widget_latest_posts ul li { margin-bottom: 20px; }
	.ewf_widget_latest_posts ul li:last-child { margin-bottom: 0; }
	
	.ewf_widget_latest_posts ul li a { color: #818181; }
	
	.ewf_widget_latest_posts ul li img { 
		float: left;
		margin: 5px 10px 0 0;
	}
	
	.ewf_widget_latest_posts ul li .post-author { 
		display: block;
		color: #289ccb;
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.ewf_widget_latest_posts ul li:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.ewf_widget_latest_posts ul li img { display: none; }
		
	}
	
	/* Pages Widget */
	
	.widget_pages {}
	
	.widget_pages ul {
		margin-bottom: 0;
		list-style: none;
	}
	
	.widget_pages ul li {}
	
	.widget_pages ul li a { color: #818181; }
	.widget_pages ul li a:hover { color: #289ccb; }
	
	/* Archive Widget */
	
	.widget_archive {}
	
	.widget_archive ul {
		margin-bottom: 0;
		list-style: none;
	}
	
	.widget_archive ul li {} 
	
	.widget_archive ul li  a { color: #818181; }
	.widget_archive ul li a:hover { color: #289ccb; }
	
	.widget_archive select {}
	
	.widget_archive option {}	
	
	/* Categories Widget */
	
	.widget_categories {}
	
	.widget_categories ul {
		margin-bottom: 0;
		list-style: none;
	}
	
	.widget_categories ul li {} 
	
	.widget_categories ul ul.children {}
	
	.widget_categories ul li a { color: #818181; }
	.widget_categories ul li a:hover { color: #289ccb; }
	
	.widget_categories select{}
	
	.widget_categories select#cat {}
	
	.widget_categories select.postform {}
	
	.widget_categories option {}
	
	.widget_categories .level-0 {}
	
	.widget_categories .level-1 {}
	
	.widget_categories .level-2 {}
	
	.widget_categories .level-3 {}
	
	/* Meta Widget */
	
	.widget_meta {}
	
	.widget_meta ul {
		margin-bottom: 0;
		list-style: none;
	}
	
	.widget_meta ul li {}
	
	.widget_meta ul li a { color: #818181; }
	.widget_meta ul li a:hover { color: #289ccb; }
	
	/* Recent Comments Widget */
	
	.widget_recent_comments {}
	
	#recentcomments {
		margin-bottom: 0;
		list-style: none;
	}
	
	#recentcomments li {}
	
	#recentcomments li a {}
	
	.recentcomments {}
	
	/* Tag Cloud Widget  */
	
	.widget_tag_cloud {}
	
	.widget_tag_cloud a {
		display: inline-block;
		padding: 5px 10px;
		border: 1px solid #cdcdcd;
		margin: 0 2px 5px 0;
		color: #818181;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.widget_tag_cloud a:hover {
		border-color: #289ccb;
		background-color: #289ccb;
		color: #fff;
	}
	
	.widget_tag_cloud a:after {}
	
	.widget_tag_cloud a:before {}
	
	/* Calendar Widget */
	
	.widget_calendar {}
	
	#calendar_wrap {}
	
	#calendar_wrap th {}
	
	#calendar_wrap td {}
	
	#wp-calendar tr td {}
	
	#wp-calendar caption {}
	
	#wp-calendar a {}
	
	#wp-calendar #today {}
	
	#wp-calendar #prev {}
	
	#wp-calendar #next {}
	
	#wp-calendar #next a {}
	
	#wp-calendar #prev a {}
	
	/* Custom Menu Widget */
	
	.widget_nav_menu {}	
	
	.widget_nav_menu .menu {
		margin-bottom: 0;
		list-style: none;
	}
	
	.widget_nav_menu .menu li a { color: #818181; }
	.widget_nav_menu .menu li a:hover { color: #289ccb; }
	
	#footer-bottom .widget_nav_menu { float: right; }
	#footer-bottom .widget_nav_menu .menu li { 
		display: inline-block; 
		margin-right: 20px;
	}
	#footer-bottom .widget_nav_menu .menu li:last-child { margin-right:0; }
	
	/* RSS Widget */
	
	.widget_rss {}
	
	.widget_rss ul {
		margin-bottom: 0;
		list-style: none;
	}
	
/* =EWF Twitter widget
   ========================================================================== */
	
	.ewf_widget_latest_tweets{}
	
	.ewf-tweet-list .tweet { word-wrap: break-word; }
	
	.ewf-tweet-list ul { list-style: none; }
	
	.ewf-tweet-list .interact { text-align: center; }
	
	.ewf-tweet-list .interact a { margin-right: 10px; }
	
	.ewf-tweet-list .interact a:last-child { margin-right: 0; }
	
/* =EWF Flickr widget
   ========================================================================== */
	
	.ewf_widget_flickr {}
	
	.flickr-feed {}
	
	.flickr-feed .flickr_badge_image { display: inline; }
	
	.flickr-feed img { 
		width: 75px; 
		height: auto;
		padding: 0 10px 5px 0;  
		border: none;
	}
	
	@media (min-width: 768px) and (max-width: 979px) {
		
		.flickr-feed img { width: 70px; }
		
	}
	
/* Custom - Contact Info Widget */	
	
	.ewf_widget_contact_info {}
	
	.ewf_widget_contact_info ul {
		margin-bottom: 0;
		list-style: none;
	}
	
	.ewf_widget_contact_info ul li {
		position: relative;
		padding-left: 30px;
		margin-bottom: 10px; 
	}
	
	.ewf_widget_contact_info ul li:last-child { margin-bottom: 0; }
	
	.ewf_widget_contact_info ul li i {
		position: absolute;
		top: 7px;
		left: 0;
	}
	
	.ewf_widget_contact_info ul li a { color: #818181; }
	
/* Custom - Newsletter Subscribe Widget */

	.ewf_widget_newsletter {}
	
	#newsletter-subscribe-form { position: relative; }
	
	#newsletter-subscribe-form input[type="text"] { width: 100%; }
	
	#newsletter-subscribe-form input[type="submit"] {
		padding: 11px 25px;
		margin: 0;
	}
	
/* Custom - Navigation Widget */
	
	.ewf_widget_navigation {}
	
	.ewf_widget_navigation ul {  
		margin-bottom: 30px; 
		list-style-type: none; 
		list-style-position: outside; 
	}
	
	.ewf_widget_navigation li { border-bottom: 1px solid #d7d7d7; }
	
	.ewf_widget_navigation li:last-child { border-bottom: none; }
	
	.ewf_widget_navigation li a { 
		display: block; 
		padding: 10px 0; 
		color: #818181;
	}
	
	.ewf_widget_navigation li a:hover {
		color: #289ccb; 
		text-decoration: none; 
	}

/* Custom - Social Media Widget */
	
	.ewf_widget_social_media {}
	
	.ewf_widget_social_media a.social-icon {
		width: 37px;
		height: 37px;
		border-radius: 50%;
		background-color: #e9e9e9;
		color: #289ccb;
	}
	
	.ewf_widget_social_media a.social-icon i {
		font-size: 22px;
		line-height: 37px; 
	}
	
	/*
	 * 1. Clearfix hack 
	 */
	 
	.ewf_widget_social_media:after { /* 1 */
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}	

/* ==========================================================================
   #WordPress Comments
   ========================================================================== */
   
	.comments-title { 
		position: relative;
		font-weight: 600;
	}
	
	.comments-title:before {
		position: absolute;
		top: 10px;
		left: 140px;
		right: 0;
		height: 7px;
		border-top: 1px solid #cdcdcd;
		border-bottom: 1px solid #cdcdcd;
		content: "";
	}
	
	.comment-body { margin-bottom: 40px; }
	
	.comment-reply-title {}
	
	.commentlist .reply { text-align: right; }
	.commentlist .reply a {}
	
	.commentlist .alt {}
	.commentlist .odd {}
	.commentlist .even {}
	.commentlist .thread-alt {}
	.commentlist .thread-odd {}
	.commentlist .thread-even {}
	.commentlist li ul.children .alt {}
	.commentlist li ul.children .odd {}
	.commentlist li ul.children .even {}
	
	.commentlist .vcard {}
	.commentlist .vcard cite.fn {}
	.commentlist .vcard span.says { display: none; }
	
	.commentlist .vcard img.photo {
		float: left;
		display: block;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		border: 10px solid #289ccb;
		border-radius: 50%;
	}
	
	.commentlist .vcard img.avatar {}
	
	.commentlist .vcard cite.fn a.url { 
		margin-left: 30px;
		color: #818181;
		font-weight: 600;
	}
	
	.commentlist .comment-meta { margin: 0 0 10px 110px; } 
	.commentlist .comment-meta a { color: #818181; }
	.commentlist .commentmetadata {}
	.commentlist .commentmetadata a {}
	
	.commentlist .parent {}
	.commentlist .comment {}
	.commentlist .children {}
	.commentlist .pingback {}
	.commentlist .bypostauthor {}
	.commentlist .comment-author {}
	.commentlist .comment-author-admin {}
	
	.commentlist {
		margin: 100px 0 50px 0;
		list-style: none; 
	}
	
	.commentlist li {}
	.commentlist li p { margin-left: 110px; }
	
	.commentlist li ul {
		margin-left: 0;
		list-style: none; 
	}
	
	.commentlist li ul.children li {}
	.commentlist li ul.children li.alt {}
	.commentlist li ul.children li.byuser {}
	.commentlist li ul.children li.comment {}
	.commentlist li ul.children li.bypostauthor {}
	.commentlist li ul.children li.comment-author-admin {}
	
	#cancel-comment-reply {}
	
	#cancel-comment-reply a {}
	
	@media (max-width: 767px) {
		
		.commentlist li p,
		.commentlist .comment-meta,
		.commentlist .vcard cite.fn a.url { margin-left: 0; }
		
		.commentlist .vcard img.photo { 
			float: none;
			margin-bottom: 15px;
		}
		
		.commentlist .reply { text-align: left; }
		
	}
	
/* ==========================================================================
   #WordPress Comment Form
   ========================================================================== */	
   
	/* Blog Post Comment Form */

	.nocomments { display: none; }
	
	.must-log-in { display: none; }
	
	.logged-in-as { display: none; }
	
	.nav-previous,
	.nav-next {  }
	
	.section-heading { 
		position: relative;
		font-weight: 600;
	}
	
	.section-heading:before {
		position: absolute;
		top: 10px;
		left: 170px;
		right: 0;
		height: 7px;
		border-top: 1px solid #cdcdcd;
		border-bottom: 1px solid #cdcdcd;
		content: "";
	}

	/* Comment Form */

	#commentform { margin: 50px 0; }
	
	/* Comment notes */
	
	.comment-notes { display: none; }
	
	/* Comment author field. */
	
	.comment-form-author { }
	
	.comment-form-author label { display: none; }
	
	.comment-form-author input#author { }

	/* Comment email field. */
	
	.comment-form-email { }
	
	.comment-form-email label { display: none; }
	
	.comment-form-email input#email { }

	/* Comment URL field. */
	
	.comment-form-url { }
	
	.comment-form-url label { display: none; }
	
	.comment-form-url input#url { }

	/* Required (*) text. */
	
	#commentform .required { }

	/* Comment form comment. */
	
	.comment-form-comment { }
	
	.comment-form-comment label { display: none; }
	
	.comment-form-comment textarea#comment { }

	/* Allowed tags paragraph. */
	
	.form-allowed-tags { display: none; }
	
	.form-allowed-tags code { }

	/* Paragraph that wraps the submit button and hidden comment ID fields. */
	
	.form-submit { text-align: right; }

	/* Submit button. */
	
	#commentform #submit { margin-right: 0; }  
	
/* ==========================================================================
   #Revolution Slider
   ========================================================================== */	

   .wpb_revslider_element.wpb_content_element { margin-bottom: 0; }
   
   .fullwidthbanner-container {
		position: relative;
		width: 100% !important;
		max-height: 750px !important;
		overflow: hidden;
		padding: 0;
		margin-bottom: 50px; 
	}

	.fullwidthbanner-container .fullwidthbanner {
		position: relative;
		width: 100% !important;
		max-height: 750px !important;
	}

	.fullwidthbanner-container ul { list-style: none; }
	.fullwidthbanner-container ul li { overflow: visible !important; }

	.caption.text {
		width: 500px;
		padding: 30px 40px;
		border-radius: 5px;
		background-color: rgba(255, 255, 255, 0.7);
	}

	.caption.text i {
		float: left;
		margin-right: 40px;
		color: #259fc8;
		font-size: 50px;
		line-height: 50px;
	}

	.caption.text.alt { 
		background-color: rgba(95, 178, 173, 0.7);
		color: #fff;
	}

	.caption.text.alt-2 {
		background-color: rgba(40, 156, 203, 0.7);
		color: #fff;
	}

	.caption.text.alt i,
	.caption.text.alt-2 i { color: #fff; }

	.caption.title {
		color: #434343;
		font-size: 36px; 
	}

	.caption.title.alt { color: #fff; }

	.caption.text-3 {
		width: 860px;
		padding: 40px;
		background-color: rgba(255, 255, 255, 0.7);
		color: #434343;
		font-size: 18px;
		line-height: 30px;
	}	

	.caption .btn {
		border-color: #fff;
		background-color: transparent;
		color: #fff;
	}

	.caption .btn-blue { 
		border-color: #289ccb;
		background-color: #289ccb;
		
	}

	.caption .btn:hover {
		background-color: rgba(0, 0, 0, 0.5);
		color: #fff;
	}

	.tp-bullets.simplebullets.round .bullet {
		width: 8px;
		height: 8px;
		border: 1px solid #289ccb;
		border-radius: 50%;
		margin: 0 3px;
		background: #fff;
	}

	.tp-bullets.simplebullets.round .bullet.selected { background: #289ccb; }

	.tp-leftarrow.default,
	.tp-rightarrow.default {
		width: 26px;
		height: 46px;
		opacity: 0.5;
	}

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

	.tp-leftarrow.default { background: url(../images/prev.png) no-repeat center center; }
	.tp-rightarrow.default { background: url(../images/next.png) no-repeat center center; }

	@media (min-width: 1400px) {
		
		.caption.text-3 { width: 1020px; }
		
	}

	@media (min-width: 768px) and (max-width: 979px) {
		
		.caption.text { width: 350px; }
		
		.caption.text i { 
			font-size: 30px;
			line-height: 30px;
		}
		
		.caption.text-3 { width: 650px; }
		
		.caption .btn {
			padding: 12px 35px;
			font-size: 14px;
			line-height: 14px;
		}
		
	}

	@media (max-width: 767px) {
		
		.caption.text { width: 140px; }
		
		.caption.text i {
			margin-right: 5px;
			font-size: 16px;
			line-height: 16px;
		}
		
		.caption.text-3 { width: 100%; }
		
		.caption .btn {
			padding: 3px 10px;
			font-size: 7px;
			line-height: 7px;
		}
		
	}
   
/* ==========================================================================
   #Contact Form 7
   ========================================================================== */	   
   
   .wpcf7-form p {  }
   
	.wpcf7-form input[type="text"],
	.wpcf7-form input[type="email"],	
	.wpcf7-form textarea {
		width: 100%;
		line-height: 20px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;	
		padding: 10px 10px;
		border: 1px solid #cdcdcd;
		margin: 0 0 20px;
		resize: none;		
	}
	
	.wpcf7-form-control-wrap{
		display: block !important;	
	}

	.wpcf7-form input[type="submit"] {
		cursor: pointer;
		display: inline-block;
		line-height: 18px;
		background-color: #289ccb;
		border-color: #289ccb;
		color: #fff;
		margin-top: 0;
		text-decoration: none !important;
	}	

	.wpcf7-form input[type="text"]:focus,
	.wpcf7-form input[type="email"]:focus,
	.wpcf7-form input[type="url"]:focus,
	.wpcf7-form textarea:focus {	
		border-color: #289ccb;
  		outline: none;	
	}
	
	div.wpcf7-response-output {
		margin: 0 !important;
		padding: 5px !important;
	}

	div.wpcf7-validation-errors {
		border: none;
	}	
	