/*
 *
 *		CUSTOM.CSS
 *
 *	+ TYPOGRAPHY
 *  + HEADLINE
 *	+ ALERTS
 *	+ LISTS
 *	+ BUTTONS
 *	+ ACCORDION
 *  + TABS
 *	+ GOOGLE MAPS
 *  + SOCIAL MEDIA
 *  + PROCESS STEPS
 *	+ PIE CHARTS
 *	+ PROGRESS BARS
 *  + COUNTER
 *	+ PRICE PLAN
 *  + TESTIMONIALS
 *  + ISOTOPE
 *  + FILTER
 *  + PAGINATION
 *  + BREADCRUMB
 *  + LOGOS
 *  + TIMELINE
 *	+ INFO BOX
 *  + FULL SECTIONS
 *  + VIDEO PLAYER
 *  + GO TOP
 *	+ SLIDERS
 *	+ ANIMATIONS
 *	+ WIDGETS
 *  + RESPONSIVE
 *	 - LARGE DISPLAY (>1200px)
 *	 - SMALL DISPLAY (TABLETS)
 *	 - EXTRA SMALL DISPLAY (PHONES PORTRAIT)
 *	 - EXTRA SMALL DISPLAY (PHONES LANDSCAPE)
 */
	
/***********************************************************************************
 *	+ TYPOGRAPHY
 ***********************************************************************************/

body {
	overflow-x: hidden;
	color: #fff;
	font: 13px/24px "OpenSansRegular", "OpenSansBold", Arial, sans-serif;
	letter-spacing: 1px;
}
	
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		margin: 0;
		font-weight: 400;
		text-transform: uppercase;
		font-weight: 800;
	}
	
	h1 {
		font-size: 36px;
		line-height: 48px;
		letter-spacing: 4.5px;
		margin-bottom: 16px;
	}
	
	h2 {
		font-size: 24px;
		line-height: 36px;
		letter-spacing: 4px;
		margin-bottom: 14px;
	}
	
	h3 {
		font-size: 18px;
		line-height: 27px;
		letter-spacing: 3.5px;
		margin-bottom: 12px;
	}
	
	h4 {
		font-size: 13px;
		line-height: 20px;
		letter-spacing: 3px;
		margin-bottom: 10px;
	}
	
	h5 {
		font-size: 12px;
		line-height: 18px;
		letter-spacing: 2.5px;
		margin-bottom: 8px;
	}
	
	h6 {
		font-size: 10px;
		line-height: 15px;
		letter-spacing: 2px;
		margin-bottom: 6px;
	}
	
	h1 a, 
	h2 a, 
	h3 a, 
	h4 a, 
	h5 a, 
	h6 a { 
		color: #3b3e43;
		text-decoration: none;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	h1 a:hover, 
	h2 a:hover, 
	h3 a:hover, 
	h4 a:hover, 
	h5 a:hover, 
	h6 a:hover {
		text-decoration: none;
	}
	
	p { 
		margin-bottom: 20px; 
	}
	
	blockquote {
		border-left: none;
		padding: 0;
		font-size: 18px;
		line-height: 27px;
		color: #bca480;
	}
	
	blockquote:before {
		font-family: "FontAwesome";
		content: "";
		font-size: 22px;
		line-height: 22px;
		display: block;
		margin-bottom: 15px;
	}
	
	blockquote p {
		font-style: italic;
	}
	
	a {
		color: #39b54a;
	}
	
	a:hover,
	a:focus { 
		outline: 0;
		color: #39b54a;
	}
	
	img {
		max-width: 100%; 
	}
	
	ul {
		padding: 0;
	}
	
	ul ul {
		margin-left: 20px;
	}
	
	.last { 
		margin-bottom: 0; 
	}
	
	.hr {
		margin: 30px 0;
		border-top: 1px solid #000;
	}
	
	.text-primary {
		color: #bca480;
	}
	
	label {
		font-weight: normal;
	}
	
	input,
	select,
	textarea {
		display: block;		
		max-width: 100%;
		padding: 5px 10px;
		border: 1px solid #ccc;
		background-color: transparent;
		-webkit-appearance: none;
	}
	
	input[type="text"]:focus,
	input[type="text"]:focus,
	input[type="text"]:focus,
	input[type="url"]:focus,
	textarea:focus {
		border-color: #000;
	}

/***********************************************************************************
 *	+ HEADLINE
 ***********************************************************************************/
	
	/* STYLE 1 */
	.headline.style-1 {
		margin-bottom: 50px;
	}
	
	.headline.style-1 h4 {
		font-weight: 600;
		margin-bottom: 0;
	}
	
	.headline.style-1 h2 {
		font-weight: 700;
	}
	
	/* STYLE 2 */
	.headline.style-2 {
		margin-bottom: 20px;
		text-align: center;
	}
	
	.headline.style-2 i {
		font-size: 25px;
		line-height: 25px;
		margin-bottom: 15px;
		color: #bca480;
	}
	
	.headline.style-2 h2 {
		margin-bottom: 0;
		font-weight: 400;
	}
	
	
	/* STYLE 3 */
	.headline.style-3 {
		margin-bottom: 70px;
		text-align: center;
	}
	
	.headline.style-3 h5 {
		margin-bottom: 0;
		color: #39b54a;
	}

	/* STYLE 4 */
	.headline.style-4 {
		margin-bottom: 70px;
		text-align: left;
	}
	
/***********************************************************************************
 *	+ ALERTS
 ***********************************************************************************/
 	
	.alert {
		position: relative;
		text-transform: uppercase;
		font-weight: 600;
		border: none;
		border-radius: 0;
		color: #fff;
		margin-bottom: 30px;
		padding-right: 55px;
	}
	
	.alert:after {
		position: absolute;
		top: 0;
		right: 0;
		width: 55px;
		height: 100%;
		line-height: 55px;
		text-align: center;
		border-left: 1px solid #fff;
		content: "x";
	}
	
	.alert i {
		font-size: 18px;
		line-height: 20px;
		margin-right: 15px;
	}
	
	.alert.alert-info {
		background-color: #3b3e44;
	}
	
	.alert.alert-danger {
		background-color: #9e0b0f;
	}
	
	.alert.alert-success {
		background-color: #bca480;
	}
	
	.alert.alert-warning {
		background-color: #fff;
		color: #3b3e43;
		border: 1px solid #3b3e44;
	}
	
	.alert.alert-warning:after {
		border-color: #3b3e44;
	}
	
/***********************************************************************************
 *	+ LISTS
 ***********************************************************************************/
 
 	.check-list,
	.circle-list { 
		list-style: none;
		margin-bottom: 20px;
	}
	
	.check-list li:before {
		font-family: "FontAwesome";
		content: "";
		margin-right: 10px;
		width: 16px;
		height: 16px;
		display: inline-block;
		text-align: center;
		padding-left: 1px;
		border: 1px solid #3b3e43;
		font-size: 9px;
		line-height: 15px;
	}
	
	.circle-list li:before {
		font-family: "FontAwesome";
		content: "";
		margin-right: 10px;
		display: inline-block;
		font-size: 7px;
		line-height: 16px;
		position: relative;
		top: -2px;
	}
	
/***********************************************************************************
 *	+ BUTTONS
 ***********************************************************************************/
 	
	.btn {
		position: relative;
		z-index: 2;
		margin-bottom: 20px;
		border-radius: 5px;
		text-transform: uppercase;
		font-size: 12px;
		line-height: 12px;
		padding: 15px 20px;
		overflow: hidden;
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}
	
	.btn:after {
		position: absolute;
		z-index: -1;
		top: 0;
		left: 50%;
		width: 0;
		height: 100%;
		opacity: 0;
		content: "";
		-webkit-transform: translateX(-50%);
			-ms-transform: translateX(-50%);
				transform: translateX(-50%);
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}
	
	.btn:hover:after {
		width: 101%; 
		opacity: 1; 
	}
	
	.btn:hover {
		background-color: transparent; 
	}
	
	.btn:focus {
		outline: 0;
	}
	
	.btn i {
		display: inline-block;
		line-height: 43px;
		text-align: center; 
		border-left: 1px solid #fff;
		padding-left: 20px;
		margin: -15px 0 -15px 20px;
	}
	
	/* DEFAULT BUTTON */
	.btn-default {
		border: 1px solid #39b54a;
		background-color: #39b54a;
		color: #fff;
	}
	
	.btn-default:after {
		background-color: #42a33c;
	}
	
	.btn-default:hover {
		border-color: #42a33c;
		background-color: #39b54a; 
		color: #fff;
	}
	
	.btn-default:focus {
		background-color: #39b54a;
		color: #fff; 
	}
	
	/* BLACK BUTTON */
	.btn-black {
		border: 1px solid #3b3e43;
		background-color: #3b3e43;
		color: #fff;
	}
	
	.btn-black:after {
		background-color: #bca480;
	}
	
	.btn-black:hover {
		border-color: #bca480;
		background-color: #3b3e43; 
		color: #fff;
	}
	
	.btn-black:focus {
		color: #fff;
	}
	
	/* WHITE BUTTON */
	.btn-white {
		border: 1px solid #bca480;
		background-color: transparent;
	}
	
	.btn-white i {
		border-left-color: #bca480;
	}
	
	.btn-white:after {
		background-color: #bca480;
	}
	
	.btn-white:hover {
		border-color: #bca480;
		background-color: transparent; 
		color: #fff;
	}
	
	.btn-white:hover i {
		border-left-color: #fff;
	}

/***********************************************************************************
 *	+ ACCORDION
 ***********************************************************************************/
 	
	#accordion {
		margin-bottom: 30px;
	}
	
	.panel {
		box-shadow: none;
		background-color: transparent;
	}
	
	.panel-heading {
		border: none;
		border-radius: 0;
		background-color: transparent;
		padding: 0;
	}
	
	.panel-title a,
	.panel-title a:focus {
		display: block;
		text-decoration: none;
		border-top: 1px solid #d7d7d7;
		padding: 20px 0 17px;
		font-size: 13px;
		line-height: 13px;
		font-weight: 600;
		color: #3b3e43;
	}
	
	.panel-title a:before {
		font-family: "FontAwesome";
		content: "";
		color: #bca480;
		font-size: 20px;
		margin: 0 20px;
		font-weight: 400; 
	}
	
	.panel-title a[aria-expanded="true"] {
		color: #bca480;
	}
	
	.panel-title a[aria-expanded="true"]:before {
		content: "";
	}
	
	.panel-group .panel-heading + .panel-collapse > .list-group, 
	.panel-group .panel-heading + .panel-collapse > .panel-body {
		border: none;
		padding: 0;
		padding-left: 55px;
	}

/***********************************************************************************
 *	+ TABS
 ***********************************************************************************/
 	
	/* HORIZONTAL TABS */
	.nav-tabs > li > a {
		border-radius: 2px;
		color: #fff;
		border-color: transparent;
		text-transform: uppercase;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.nav-tabs > li > a:hover,
	.nav-tabs > li > a:focus {
		background-color: transparent;
		border-color: transparent;
		color: #ffefc0;
	}
	
	.nav-tabs > li.active > a,
	.nav-tabs > li.active > a:hover,
	.nav-tabs > li.active > a:focus {
		color: #ffefc0;
		background-color:#42a33c;
	}
	
	.tab-content {
		margin: 40px 0;
	}
	
	.tab-content img {
		float: left;
		display: block;
		margin-right: 20px;
	}
	
	/* VERTICAL TABS */
	.vertical-tabs {
		margin-bottom: 30px;
	}
	
	.vertical-tabs .nav-tabs {
		float: left;
		width: 200px;
		border-bottom: none;
	}
	
	.vertical-tabs .nav-tabs li {
		float: none;
	}
	
	.vertical-tabs .nav-tabs > li > a {
		margin-right: 0;
		border: 1px solid transparent;
		border-right: none;
	}
	
	.vertical-tabs .nav-tabs > li:first-child > a {
		border-top: none;
	}
	
	.vertical-tabs .nav-tabs > li.active > a {
		border-color: #d7d7d7;
		border-right: none;
	}
	
	.vertical-tabs .tab-content {
		border-left: 1px solid #d7d7d7;
		margin-top: 0;
		margin-left: 199px;
		padding: 10px 10px 10px 40px;
	}
	
	.vertical-tabs .tab-content img {
		float: none;
		margin-right: 0;
	}

/***********************************************************************************
 *	+ GOOGLE MAPS
 ***********************************************************************************/
 
 	.map {
		margin-bottom: 100px;
		height: 650px;
	}
	
	.map img { 
		max-width: none; 
	}
	
/***********************************************************************************
 *	+ SOCIAL MEDIA
 ***********************************************************************************/
	
	.social-media {
		margin-bottom: 20px;
	}
	
	.social-media a {
		font-size: 24px;
		line-height: 24px;
		color: #acacac;
		text-decoration: none;
		margin-right: 10px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.social-media a:hover {
		color: #bca480;
	}
	
	.social-media a:last-child {
		margin-right: 0;
	}
	
	.social-media a.facebook:hover { color: #3b5998 !important; }
	.social-media a.twitter:hover { color: #5ea9dd !important; }
	.social-media a.google:hover { color: #c63427 !important; }
	.social-media a.linkedin:hover { color: #0077b5 !important; }
	.social-media a.android:hover { color: #a4c639 !important; }
	.social-media a.apple:hover { color: #d6d7cf !important; }
	.social-media a.dribbble:hover { color: #e04c86 !important; }
	.social-media a.dropbox:hover { color: #007ee6 !important; }
	.social-media a.flickr:hover { color: #0062dd !important; }
	.social-media a.instagram:hover { color: #f6086a !important; }
	.social-media a.linux:hover { color: #000000 !important; }
	.social-media a.pinterest:hover { color: #f71819 !important; }
	.social-media a.reddit:hover { color: #ff4500 !important; }
	.social-media a.share:hover { color: #010101 !important; }
	.social-media a.skype:hover { color: #00abeb !important; }
	.social-media a.tumblr:hover { color: #34465d !important; }
	.social-media a.vimeo:hover { color: #1ca7cc !important; }
	.social-media a.vine:hover { color: #02c594 !important; }
	.social-media a.vk:hover { color: #4c75a3 !important; }
	.social-media a.whatsapp:hover { color: #11ae09 !important; }
	.social-media a.windows:hover { color: #00abf3 !important; }
	.social-media a.weibo:hover { color: #d52b2b !important; }
	.social-media a.wordpress:hover { color: #464646 !important; }
	.social-media a.yahoo:hover { color: #44029a !important; }
	.social-media a.youtube:hover { color: #e22d24 !important; }
	.social-media a.telegram:hover { color: #2fa6dd !important; }
	
/***********************************************************************************
 *	+ PROCESS STEPS
 ***********************************************************************************/
 	
	.process-steps {
		position: relative;
		margin: 15px 0 30px;
	}
	
	.process-steps:before {
		display: block;
		border-top: 1px solid #d7d7d7;
		content: "";
		position: absolute;
		top: 42.5px;
		left: 0;
		right: 0;
		width: 80%;
		z-index: 1;
		margin: 0 auto;
	}
	
	.process-steps .step {
		position: relative;
		z-index: 2;
		float: left;
		width: 20%;
		text-align: center;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.process-steps.process-6-steps .step {
		width: 16.66666%;
	}
	
	.process-steps.process-5-steps .step {
		width: 20%;
	}
	
	.process-steps.process-4-steps .step {
		width: 25%;
	}
	
	.process-steps .step i {
		border: 1px solid #3b3e43;
		border-radius: 50%;
		display: block;
		width: 85px;
		height: 85px;
		font-size: 26px;
		line-height: 85px;
		margin: 0 auto;
		background-color: #fff;
		outline: 10px solid #fff;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.process-steps .step-details {
		margin-top: 20px;
	}
	
	.process-steps .step-details h5 {
		font-weight: 400;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.process-steps .step:hover {
		-webkit-transform: scale(1.2);
			-ms-transform: scale(1.2);
				transform: scale(1.2);
	}
	
	.process-steps .step:hover i {
		border-color: #bca480;
		color: #bca480;
	}
	
	.process-steps .step:hover h5 {
		color: #bca480;
	}
	
/***********************************************************************************
 *	+ PIE CHARTS
 ***********************************************************************************/
	
	.pie-chart {
		position: relative;
		text-align: center;
		margin-bottom: 20px;
	}
	
	.pie-chart canvas {
		max-width: 100%;
	}
	
	.pie-chart-details {
		position: absolute;
		top: 50%;
		left: 0;
		width: 100%;
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
	}
	
	.pie-chart-details h1 {
		font-size: 36px;
		line-height: 60px;
		font-weight: 300;
		text-transform: uppercase;
	}
	
	.pie-chart-details h1 small {
		display: block;
		font-size: 14px;
		font-weight: 700;
		color: #bca480;
	}
	
	
	/* LEGEND */
	.legend {
		list-style: none;
		font-size: 11px;
		text-transform: uppercase;
	}
	
	.legend li:before {
		display: inline-block;
		width: 18px;
		height: 18px;
		margin-right: 15px;
		content: "";
		vertical-align: middle;
	}
	
	.legend li:nth-child(1):before {
		background-color: #3b3e43;
	}
	
	.legend li:nth-child(2):before {
		background-color: #a2a5ab;
	}
	
	.legend li:nth-child(3):before {
		background-color: #bca480;
	}
	
	.legend li:nth-child(4):before {
		background-color: #efdbbd;
	}
	
	
	.chart-container {
		margin-bottom: 30px;
	}
	
/***********************************************************************************
 *	+ PROGRESS BARS
 ***********************************************************************************/
 
 	.progress {
		box-shadow: none;
		border-radius: 0;
		background-color: #d7d7d7;
		height: 3px;
		margin-bottom: 10px;
	}
	
	.progress-bar {
		background-color: #3b3e43;
	}
	
	.progress-bar-title {
		position: relative;
		margin-bottom: 30px;
	}
	
	.progress-bar-title h5 {
		font-weight: 600;
	}
	
	.progress-bar-title span {
		position: absolute;
		top: 0;
		left: 0;
		-webkit-transform: translateX(-100%);
			-ms-transform: translateX(-100%);
				transform: translateX(-100%);
	}
	
/***********************************************************************************
 *	+ COUNTER
 ***********************************************************************************/
	
	.counter {
		margin-bottom: 30px;
		color: #bca480;
		text-align: center;
	}
	
	.counter i {
		font-size: 32px;
		line-height: 32px;
	}
	
	.counter-value {
		font-size: 72px;
		line-height: 96px;
		letter-spacing: 10px;
		font-weight: 300;
	}
	
	.counter-details {
		text-transform: uppercase;
		font-weight: 700;
	}
	
/***********************************************************************************
 *	+ PRICE PLAN
 ***********************************************************************************/
 
 	.price-plan {
		position: relative;
		margin-bottom: 50px;
		border: 1px solid #d7d7d7;
		padding: 40px;
		text-align: center;
		-webkit-transition: all 0.5s;
				transition: all 0.5s;
	}
	
	.price-plan:before,
	.price-plan:after {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		content: "";
		-webkit-transition: all 0.5s;
				transition: all 0.5s;
	}
	
	.price-plan:before {
		border-right: 1px solid #bca480;
		border-left: 1px solid #bca480;
		-webkit-transform: scaleY(0);
			-ms-transform: scaleY(0);
				transform: scaleY(0);
		-webkit-transform-origin: 100% 0;
			-ms-transform-origin: 100% 0;
				transform-origin: 100% 0;
	}
	
	.price-plan:after {
		border-top: 1px solid #bca480;
		border-bottom: 1px solid #bca480;
		-webkit-transform: scaleX(0);
			-ms-transform: scaleX(0);
				transform: scaleX(0);
		-webkit-transform-origin: 0 100%;
			-ms-transform-origin: 0 100%;
				transform-origin: 0 100%;
	}
	
	.price-plan-heading {
		margin-bottom: 40px;
		color: #bca480;
	}
	
	.price-plan-heading i {
		font-size: 38px;
		line-height: 38px;
		margin-bottom: 15px
	}
	
	.price-plan-heading h3 {
		font-weight: 600;
	}
	
	.price-plan-heading h3:after {
		content: "";
		border-bottom: 1px solid #bca480;
		display: block;
		width: 40px;
		margin: 15px auto;
	}
	
	.price-plan-heading h1 {
		font-size: 60px;
		line-height: 72px;
		font-weight: 300;
		margin-bottom: 0;	
	}
	
	.price-plan-heading h1 sup {
		font-size: 24px;
		vertical-align: super;
	}
	
	.price-plan-heading h1 small {
		display: block;
		color: #d7d7d7;
		font-size: 13px;
		font-weight: 400;
		letter-spacing: 1px;
		text-transform: none;	
	}
	
	.price-plan ul {
		list-style: none;
		text-transform: uppercase;
		margin-bottom: 40px;
	}
	
	.price-plan ul li {
		border-top: 1px solid #d7d7d7;
		padding: 10px 0;
	}
	
	.price-plan ul li:last-child {
		border-bottom: 1px solid #d7d7d7;
	}
	
	.price-plan .btn {
		margin-bottom: 0;
	}
	
	.price-plan:hover {
		border-color: transparent;
	}
	
	.price-plan:hover:before {
		-webkit-transform: scaleY(1); 
			-ms-transform: scaleY(1); 
				transform: scaleY(1); 
	}
	.price-plan:hover:after {
		-webkit-transform: scaleX(1);
			-ms-transform: scaleX(1);
				transform: scaleX(1);
	}

/***********************************************************************************
 *	+ TESTIMONIALS
 ***********************************************************************************/
 
	.testimonial {
		margin-bottom: 30px;
		text-align: center;
	}
	
	.testimonial blockquote {
		border: none;
		padding: 0;
		font-size: 14px;
		line-height: 24px;
		width: 70%;
		margin: 0 auto 40px;
		color: #3b3e43;
	}
	
	.testimonial blockquote:before {
		content: none;
	}
	
	.testimonial blockquote p {
		font-style: normal;
	}
	
	.testimonial h5 {
		color: #bca480;
		font-weight: 400;
	}
	
	.testimonial h5:before {
		content: "-";
		margin-right: 5px;
	}
	
	.testimonial img {
		border-radius: 50%;
		margin-top: 20px;
	}
	
	
	/* TESTIMONIAL WITH BACKGROUND */
	.testimonial.with-background {
		padding: 70px 40px; 
		background: #3b3e43 no-repeat center center;
		color: #fff;
	}
	
	.testimonial.with-background blockquote {
		width: 100%;
		color: #fff;
	}

/***********************************************************************************
 *	+ ISOTOPE
 ***********************************************************************************/
 	
	.isotope {
		margin: -15px -15px 30px; 
	}
	
	.isotope.no-space {
		margin: 0;
		margin-bottom: 30px;
	}
	
	.isotope .isotope-item {
		float: left;
		width: 25%;
		padding: 15px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
	}
	
	.isotope.no-space .isotope-item {
		padding: 0;
	}
	
	.isotope.col-3 .isotope-item {
		width: 33.333333%;
	}
	
	.isotope.col-4 .isotope-item {
		width: 25%;
	}
	
	.isotope.col-5 .isotope-item {
		width: 25%;
	}
	
/***********************************************************************************
 *	+ FILTER
 ***********************************************************************************/
 
 	.filter {
		list-style: none;
		text-align: center;
		margin-bottom: 100px;
	}
	
	.filter li {
		line-height: 13px;
		display: inline-block;
		text-transform: capitalize;
		margin-right: 20px;
		padding-right: 20px;
	}
	
	.filter li:last-child {
		margin-right: 0;
		padding-right: 0;
		border-right: none;
	}
	
	.filter li a {
		text-decoration: none;
		font-weight: 600;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

/***********************************************************************************
 *	+ PAGINATION
 ***********************************************************************************/
 
 	.pagination {
		display: block;
		margin-bottom: 50px;
	}
	
	/*.pagination > li:last-child > a,
	.pagination > li:first-child > a {
		border-radius: 0;
	}*/
	
	.pagination li {
		display: inline-block;
		margin-right: 5px;
	}
	
	.pagination li:last-child {
		margin-right: 0;
	}
	
	.pagination li a {
		display: block;
		width: 32px;
		border-radius: 5px;
		height: 32px;
		font-size: 14px;
		font-weight: bold;
		line-height: 32px;
		padding: 0;
		text-align: center;
		border: none;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	/*.pagination > li > a:hover,
	.pagination > li.active > a,
	.pagination > li.active > a:hover {
		background-color: #bca480;	
		color: #fff;
	}*/
	
/***********************************************************************************
 *	+ BREADCRUMB
 ***********************************************************************************/
 	
	.breadcrumb {
		background-color: transparent;
		text-align: left;
		margin: 0;
		padding: 0;
		letter-spacing: 3px;
	}

	.breadcrumb li span {
		font-weight: bold;
	}
	
	.breadcrumb li a {
		color: #3b3e43;
		font-weight: bold;
	}
	
	.breadcrumb li a:hover {
		text-decoration: none;
		color: #39b54a;
	}
	
	.breadcrumb li.active {
		color: #39b54a;
	}
	
/***********************************************************************************
 *	+ LOGOS
 ***********************************************************************************/
	
	.logos {
		list-style: none;
		margin: 0 -25px 20px -25px;
	}
	
	.logos li {
		float: left;
		width: 20%;
		padding: 0 25px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
	}
	
	.logos li:last-child {
		margin-right: 0;
	}
	
	.logos li img {
		display: block;
		max-width: 100%;
		margin: 0 auto;
	}

/***********************************************************************************
 *	+ TIMELINE
 ***********************************************************************************/
	
	.timeline {
		margin-bottom: 50px;
	}
	
	.timeline-item {
		position: relative;
		padding-bottom: 80px;
		margin-bottom: 20px;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.timeline-item:after {
		content: "";
		border-left: 1px solid #3b3e43;
		height: 65px;
		position: absolute;
		bottom: 0;
		left: 50%;
	}
	
	.timeline-item:last-child {
		margin-bottom: 0;
		padding-bottom: 0;
	}
	
	.timeline-item:last-child:after {
		display: none;
	}
	
	.timeline-item h4 {
		font-weight: 600;
		margin-bottom: 5px;
	}
	
	.timeline-item h2 {
		font-weight: 700;
		margin-bottom: 5px;
	}
	
	.timeline-item h2 a {
		display: block;
	}
	
	.timeline-item h2 a:after, 
	.timeline-item h2 a:before {
		position: relative;
		top: -5px;
		margin: 0 15px;
		display: inline-block;
		width: 6px;
		height: 6px;
		border-radius: 50%;
		background-color: #bca480;
		content: "";
	}
	
	.timeline-item:hover {
		-webkit-transform: scale(1.1);
			-ms-transform: scale(1.1);
				transform: scale(1.1);
	}

/***********************************************************************************
 *	+ INFO BOX
 ***********************************************************************************/
	
	.info-box {
		padding: 100px 0 80px;
		background: url(../../images/backgrounds/bg-1.jpg) no-repeat center center;
		text-align: center;
		margin: 70px 0 100px;
	}
		
/***********************************************************************************
 *	+ FULL SECTIONS
 ***********************************************************************************/

.full-section {
	position: relative;
	z-index: 0;
	margin-bottom: 100px;
	/*padding: 29px 0;*/
	background: #fff no-repeat center center;
	color: #39b54a;
	background-size: cover;
}

	.full-section .sparagraph{
		color:#3b3e43;
	}
	
	.full-section-content {
		position: relative;
		z-index: 2;
	}
	
	#video-section .full-section-content {
		position: absolute;
		top: 50%;
		left: 0;
		right: 0;
		padding: 0;
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
	}
	
	.full-screen .full-section-content {
		position: absolute;
		top: 50%;
		left: 0;
		right: 0;
		padding: 0;
		-webkit-transform: translateY(-15%);
			-ms-transform: translateY(-15%);
				transform: translateY(-15%);
	}
	
	#video-section.full-screen .full-section-content {
		-webkit-transform: translateY(-15%);
			-ms-transform: translateY(-15%);
				transform: translateY(-15%);
	}
	
	.parallax { 
		background-attachment: fixed !important;
		-webkit-background-size: cover !important;
				background-size: cover !important;	
	}
	
	
	/* ELEMENTS STYLE IN FULL SECTION */
	.full-section h1 a, 
	.full-section h2 a, 
	.full-section h3 a, 
	.full-section h4 a, 
	.full-section h5 a, 
	.full-section h6 a,
	.full-section .nav-tabs > li > a,
	.full-section .panel-title a:focus,
	.full-section .process-steps .step:hover i {
		color: #bca480;
	}
	
	.full-section h1 a:hover, 
	.full-section h2 a:hover, 
	.full-section h3 a:hover, 
	.full-section h4 a:hover, 
	.full-section h5 a:hover, 
	.full-section h6 a:hover,
	.full-section .counter-value,
	.full-section .testimonial blockquote,
	.full-section .panel-title a[aria-expanded="true"] { 
		color: #fff;
	}
	
	.full-section .process-steps .step i {
		outline: 0;
		color: #fff;
		background-color: #3b3e43;
		border-color: #fff;
	}
	
	.full-section .process-steps .step:hover i {
		border-color: #bca480;
	}
	
	.full-section .widget-twitter {
		margin-bottom: 0;
	}
	
	
	/* BACKROUNDS AND STYLE FOR FULL SECTIONS */
	#section-1 {
		padding-top: 100px;
		margin-top: 50px;
		background-image: url(../../images/backgrounds/bg-2.jpg);
	}
	
	#section-2 {
		padding: 0;
		border-top: 1px solid #bca480;
		border-bottom: 1px solid #bca480;
		background-color: #bca480;
		margin-bottom: 0;
		margin-top: 50px;
	}
	
	#section-3 {
		background-image: url(../../images/backgrounds/bg-7.jpg);
		margin-top: 50px;
		padding: 120px 0 90px;
	}
	
	#section-4 {
		background-image: url(../../images/backgrounds/bg-3.jpg);
		margin-bottom: 0;
		margin-top: 50px;
		padding: 85px 0 45px;
	}
	
	#section-5 {
		margin-top: 50px;
		background-image: url(../../images/backgrounds/bg-4.jpg);
		padding: 85px 0 70px;
	}
	
	#section-6 {
		margin-top: 50px;
		background-color: #f4f4f4;
		padding: 85px 0 65px;
	}
	
	#section-7 {
		margin-top: 80px;
		background-image: url(../../images/backgrounds/bg-5.jpg);
		padding: 100px 0 70px;
	}
	
	#section-8 {
		background-color: #2b2e31;
		margin-bottom: 0;
		margin-top: 50px;
		padding: 80px 0;
	}
	
	#section-9 {
		background-image: url(../../images/backgrounds/bg-7.jpg);
		margin-top: 60px;
		padding: 120px 0 90px;
	}
	
	#section-10 {
		background-color: #3b3e43;
		padding: 50px 0 30px;
	}
	
	
	#section-11 {
		margin-top: 50px;
		background-image: url(../../images/backgrounds/bg-5.jpg);
		padding: 100px 0 70px;
	}
	
	#section-12 {
		margin-top: 50px;
		margin-bottom: 0;
		background-color: #f4f4f4;
		padding: 85px 0 65px;
	}

	#section-c1 {
		padding-top: 100px;
		margin-top: 50px;
		/*background-image: url(../../images/bg/bgfather.jpg);*/
	}

/***********************************************************************************
 *	+ VIDEO PLAYER
 ***********************************************************************************/	
	
	#youtube-video-section {
		position: absolute;
		overflow: hidden;
		z-index: 1;
		top: 0;
		width: 100%;
		height: 100%;
	}
	
	#video-section,
	#home-video-section {
		padding: 0;
		height: 635px;
	}
	
	.youtube-player {
		display: none;
	}
	
	.mb_YTVPBar .buttonBar {
		top: -200px;
	}
	
	.full-screen .mb_YTVPBar .buttonBar {
		top: -100px;
	}
	
/***********************************************************************************
 *	+ GO TOP
 ***********************************************************************************/
	
	#go-top {
		z-index: 99999;
		display: none;
		position: fixed;
		bottom: 25px;
		right: 25px;
		font-size: 48px;
		line-height: 48px;
		text-decoration: none;
		cursor: pointer;
		color: #0084ff;
		text-align: center;
		background:#ffefc0;
		border-radius: 50px;
		padding:10px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	#go-top:hover {
		opacity: 0.7;
	}
	
/***********************************************************************************
 *	+ SLIDERS
 ***********************************************************************************/
 	
	/* REVOLUTION SLIDER*/
	.bannercontainer {
		width: 100%;
		position: relative;
		padding: 0;
		margin-bottom: 100px;
    }
     
    .banner{
		width: 100%;
		position: relative;
    }
	
	.tp-leftarrow.default,
	.tp-rightarrow.default {
		width: 36px;
		height: 36px;
		background: #bca480 no-repeat center center;
	}
	
	.tp-leftarrow.default:hover,
	.tp-rightarrow.default:hover {
		background-color: #3b3e43;
	}
	
	.tp-leftarrow.default {
		background-image: url(../../images/backgrounds/prev.png);
	}
	
	.tp-rightarrow.default {
		background-image: url(../../images/backgrounds/next.png);
	}
	
	.tp-bullets.simplebullets.round .bullet {
		width: 8px;
		height: 8px;
		background: #bca480;
		border: 1px solid #bca480;
		border-radius: 50%;
		margin: 0 3px;
	}
	
	.tp-bullets.simplebullets.round .bullet:hover,
	.tp-bullets.simplebullets.round .bullet.selected { background-color: #fff; }
	
	
	.tp-caption.title {
		font-size: 24px;
		line-height: 30px;
		font-weight: 700;
		color: #bca480;
		text-transform: uppercase;
	}
	
	.tp-caption.title-white {
		font-size: 48px;
		line-height: 60px;
		font-weight: 700;
		color: #fff;
		text-transform: uppercase;
	}
	
	.tp-caption.title:after {
		content: "";
		border-bottom: 1px solid #bca480;
		width: 15px;
		display: block;
		margin-top: 15px;
	}
	
	.tp-caption.text {
		font-size: 13px;
		line-height: 24px;
		font-weight: 300;
	}
	
	.tp-caption.text-white {
		font-size: 13px;
		line-height: 24px;
		font-weight: 300;
		color: #fff;
	}
	
	.tp-caption.social-icon a {
		font-size: 20px;
		line-height: 10px;
		color: #bca480;
		padding-right: 10px;
		border-right: 1px solid #bca480;
	}
	
	.tp-caption.social-icon:last-child a {
		border-right: none;
	}
	
	.tp-caption.social-icon a:hover {
		color: #3b3e43;
	}
	
	.tp-caption .btn,
	.tp-caption .btn:hover {
		color: #fff;
	}
	
	
	/* BxSLIDER */
	.bx-wrapper .bx-viewport {
		left: 0;
		border: none;
		background: transparent;
		-webkit-box-shadow: none;
				box-shadow: none;
	}
	
	.bx-wrapper .bx-pager,
	.bx-wrapper .bx-controls-auto {
		bottom: 20px;
	}	
	
	.bx-wrapper .bx-controls-direction a {
		background-color: #bca480;
	}
	
	.bx-wrapper .bx-controls-direction a:hover {
		background-color: #3b3e43;
	}
	
	.bx-wrapper .bx-prev {
		left: 0;
		background: url(../../images/backgrounds/prev.png) no-repeat center center;
	}
	
	.bx-wrapper .bx-next {
		right: 0; 
		background: url(../../images/backgrounds/next.png) no-repeat center center;
	}
	
	.bx-wrapper .bx-prev:hover,
	.bx-wrapper .bx-prev:focus,
	.bx-wrapper .bx-next:hover,
	.bx-wrapper .bx-next:focus {
		background-position: center center;
	}
	
	.bx-wrapper .bx-pager.bx-default-pager a {
		width: 8px;
		height: 8px;
		border: 1px solid #bca480;
		background-color: #bca480;
	}
	
	.bx-wrapper .bx-pager.bx-default-pager a:hover,
	.bx-wrapper .bx-pager.bx-default-pager a.active {
		background-color: #fff;
	}
	
	
	/* INFO SLIDER */
	.info-slider .bx-wrapper .bx-pager {
		text-align: left;
		bottom: -20px;
	}
	
	
	/* TESTIMONIAL SLIDER */
	.testimonial-slider #thumb-pager {
		text-align: center;
	}
	
	.testimonial-slider #thumb-pager a {
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.testimonial-slider #thumb-pager a:hover,
	.testimonial-slider #thumb-pager a.active {
		opacity: 0.5;
	}
	
	.testimonial-slider .bx-wrapper {
		margin-bottom: 40px;
	}
	
	.testimonial-slider-2 .bx-wrapper .bx-pager {
		bottom: -40px;
	}
	
	.testimonial-slider-2 .testimonial blockquote {
		width: 100%; 
	}
	
	
	/* PROJECT SLIDER */
	#project-slider-control a {
		display: block;
		float: left;
		width: 25%;
		background-color: #fff;
		text-transform: uppercase;
		text-align: center;
		border-right: 1px solid #bca480;
		text-decoration: none;
		padding: 40px 0;
		font-size: 14px;
		line-height: 14px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	#project-slider-control a:first-child {
		border-left: 1px solid #bca480;
	}
	
	#project-slider-control a:hover,
	#project-slider-control a.active {
		background-color: transparent;
		color: #fff;
	}
	
	.project-slider {
		max-width: 1920px;
		margin: 0 auto;
		text-align: center;
	}
	
	.project-slider .bx-wrapper {
		margin-bottom: 0;
	}
	
	.project-slider .bx-wrapper img {
		margin: 0 auto;
	}
	
	.slide-description {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 50%;
		-webkit-transform: translate(-50%,-50%);
			-ms-transform: translate(-50%,-50%);
				transform: translate(-50%,-50%);
	}
	
	.slide-description h1 { font-weight: 400; }
	.slide-description h4 { font-weight: 700; }
	
	.slide-description h4,
	.slide-description .btn {
		margin-bottom: 0;
	}
	
	
	/* IMAGES SLIDER */
	.images-slider .bx-wrapper .bx-pager {
		bottom: -50px;
	}
	
	.images-slider-2 {
		margin-bottom: 100px;
	}
	
	
	/* TWITTER SLIDER */
	#twitter-slider-controls { 
		margin-top: 13px; 
	}
	
	#twitter-slider-prev,
	#twitter-slider-next { 
		display: block;
	}
	
	#twitter-slider-prev a,
	#twitter-slider-next a { 
		text-decoration: none;
		color: #fff;
		font-size: 18px;
	}
	
/***********************************************************************************
 *	+ ANIMATIONS
 ***********************************************************************************/
	
	.wow {
		visibility: hidden;
	}
	
	.wow.animated {
		visibility: visible;
	}
	
/***********************************************************************************
 *	+ WIDGETS
 ***********************************************************************************/
 	
	.widget {
		margin-bottom: 75px;
	}
	
	.widget-title {
		font-size: 18px;
		line-height: 18px;
		font-weight: 700;
		text-transform: uppercase;
		margin-bottom: 50px;
	}
	
	.widget-title:after {
		content: "";
		display: block;
		width: 45px;
		margin-top: 15px;
	}
	
	/* WIDGET TEXT */
	/*.widget-text {}*/
	
	
	/* WIDGET SERACH */
	/*.widget-search {}*/
	
	.widget-search form {
		position: relative;
	}
	
	.widget-search input[type="text"] {
		width: 100%;
		height: 35px;
	}
	
	.widget-search input[type="submit"] {
		height: 35px;
		border: none;
		position: absolute;
		top: 0;
		right: 0;
		background: url(../../images/backgrounds/search.png) no-repeat center center;
	}
	
	
	/* WIDGET CATEGORIES */
	/*.widget-categories {}*/
	
	.widget-categories ul {
		list-style: none;
		margin-bottom: 0;
	}
	
	.widget-categories ul li {
		border-bottom: 1px solid #d7d7d7;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	
	.widget-categories ul li:last-child {
		margin-bottom: 0;
	}
	
	.widget-categories ul li a {
		font-weight: 600;
		text-transform: uppercase;
		color: #3b3e43;
	}
	
	.widget-categories ul li a:hover {
		color: #bca480;
		text-decoration: none;
	}
	
	
	/* WIDGET CATEGORIES DROPDOWN */
	/*.widget-categories-dropdown {}*/
	
	
	/* WIDGET ARCHIVES */
	/*.widget-archives {}*/
	
	.widget-archives ul {
		list-style: none;
		margin-bottom: 0;
	}
	
	.widget-archives ul li {
		border-bottom: 1px solid #d7d7d7;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	
	.widget-archives ul li:last-child {
		margin-bottom: 0;
	}
	
	.widget-archives ul li a {
		font-weight: 600;
		text-transform: uppercase;
		color: #3b3e43;
	}
	
	.widget-archives ul li a:hover {
		color: #bca480;
		text-decoration: none;
	}
	
	
	/* WIDGET ARCHIVES DROPDOWN */
	/*.widget-archives-dropdown {}*/
	
	
	/* WIDGET PAGES */
	/*.widget-pages {}*/
	
	.widget-pages ul {
		list-style: none;
		margin-bottom: 0;
	}
	
	.widget-pages ul li {
		border-bottom: 1px solid #d7d7d7;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	
	.widget-pages ul li:last-child {
		margin-bottom: 0;
	}
	
	.widget-pages ul li a {
		font-weight: 600;
		text-transform: uppercase;
		color: #3b3e43;
	}
	
	.widget-pages ul li a:hover {
		color: #bca480;
		text-decoration: none;
	}
	
	
	/* WIDGET METADATA */
	/*.widget-metadata {}*/
	
	.widget-metadata ul {
		list-style: none;
		margin-bottom: 0;
	}
	
	.widget-metadata ul li {
		border-bottom: 1px solid #d7d7d7;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	
	.widget-metadata ul li:last-child {
		margin-bottom: 0;
	}
	
	.widget-metadata ul li a {
		font-weight: 600;
		text-transform: uppercase;
		color: #3b3e43;
	}
	
	.widget-metadata ul li a:hover {
		color: #bca480;
		text-decoration: none;
	}
	
	
	/* WIDGET TAGS */
	/*.widget-tags {}*/
	
	.widget-tags a {
		position: relative;
		z-index: 2;
		border-radius: 0;
		text-transform: uppercase;
		font-size: 12px;
		line-height: 12px;
		padding: 10px 15px;
		border: 1px solid #bca480;
		overflow: hidden;
		display: inline-block;
		text-decoration: none;
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}
	
	.widget-tags a:after {
		position: absolute;
		z-index: -1;
		top: 0;
		left: 50%;
		width: 0;
		height: 100%;
		opacity: 0;
		content: "";
		background-color: #bca480;
		-webkit-transform: translateX(-50%);
			-ms-transform: translateX(-50%);
				transform: translateX(-50%);
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}
	
	.widget-tags a:hover:after {
		width: 101%; 
		opacity: 1;
	}
	
	.widget-tags a:hover {
		background-color: transparent; 
		color: #fff;
	}
	
	
	/* WIDGET NEWSLETTER */
	/*.widget-newsletter {}*/
	
	.widget-newsletter form {
		position: relative;
		margin-bottom: 5px;
	}
	
	.widget-newsletter input[type="text"] {
		width: 100%;
		height: 40px;
	}
	
	.widget-newsletter input[type="submit"] {
		position: absolute;
		top: 0;
		right: 0;
		height: 40px;
		background: url(../../images/icons/arrow-1.png) no-repeat center center;
		border: none;
	}
	
	.widget-newsletter input[type="submit"]:hover {
		background-color: #39b54a;
		border-radius: 0 5px 5px 0;
	}

	.widget-newsletter h3{
		color:#3b3e43;
	}
	
	/*.widget-newsletter p {
		margin-bottom: 0;
		font-style: italic;
		font-size: 10px;
		line-height: 18px;
		font-weight: 300;
		color: #acacac;
	}*/
	
	
	/* WIDGET RECENT POSTS */
	/*.widget-recent-posts {}*/
	
	.widget-recent-posts ul {
		list-style: none;
		margin-bottom: 0;
	}
	
	.widget-recent-posts ul li {
		border-bottom: 1px solid #d7d7d7;
		margin-bottom: 15px;
	}
	
	.widget-recent-posts ul li:last-child {
		margin-bottom: 0;
	}
	
	.widget-recent-posts ul li img {
		float: left;
		display: block;
		margin-right: 20px;
		margin-bottom: 15px;
	}
	
	.widget-recent-posts ul li .post-title {
		text-transform: uppercase;
		color: #3b3e43;
		font-weight: 600;
	}
	
	.widget-recent-posts ul li .post-title:hover {
		color: #bca480;
		text-decoration: none;
	}
	
	.widget-recent-posts ul li .post-date {
		margin-bottom: 15px;
		font-size: 10px;
		line-height: 16px;
		color: #acacac;
		text-transform: uppercase;
		font-weight: 600;
	}
	
	.widget-recent-posts ul li:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}
	
	
	/* WIDGET LATEST NEWS */
	/*.widget-latest-news {}*/
	
	.widget-latest-news ul {
		list-style: none;
		margin-bottom: 0;
	}
	
	.widget-latest-news ul li {
		margin-bottom: 40px;
	}
	
	.widget-latest-news ul li:last-child {
		margin-bottom: 0;
	}
	
	.widget-latest-news ul li img {
		float: left;
		display: block;
		margin-right: 20px;
	}
	
	.widget-latest-news ul li .news-title {
		border-bottom: 1px solid #d7d7d7;
		margin-bottom: 0;
		line-height: 20px;
		margin-left: 100px;
		margin-bottom: 5px;
		padding-bottom: 8px;
	}
	
	.widget-latest-news ul li .news-title a {
		color: #3b3e43;
		font-weight: 600;
	}
	
	.widget-latest-news ul li .news-title:hover a {
		color: #bca480;
		text-decoration: none;
	}
	
	.widget-latest-news ul li .news-date {
		margin-bottom: 15px;
		font-size: 11px;
		color: #acacac;
		text-transform: uppercase;
		font-weight: 600;
	}
	
	.widget-latest-news ul li:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}
	
	
	/* WIDGET RECENT COMMENTS */
	/*.widget-recent-comments {}*/
	
	.widget-recent-comments ul {
		list-style: none;
		margin-bottom: 0;
	}
	
	
	/* WIDGET CALENDAR */
	/*.widget-calendar {}*/
	
	.widget-calendar table {
		width: 100%;
		text-align: center;
	}
	
	.widget-calendar table th, 
	.widget-calendar table td {
		padding: 5px;
		border-top: 1px solid #3b3e43;
		border-left: 1px solid #3b3e43;
		text-align: center;
	}
	
	.widget-calendar table th:last-child, 
	.widget-calendar table td:last-child {
		border-right: 1px solid #3b3e43;
	}
	
	.widget-calendar table tr:last-child td {
		border-bottom: 1px solid #3b3e43;
	}
	
	.widget-calendar table tfoot td,
	.widget-calendar table tfoot td:last-child,
	.widget-calendar table tfoot tr:last-child td {
		border: none;
	}
	
	.widget-calendar table td#today {
		background-color: #bca480;
		color: #fff;
	}
	
	
	/* WIDGET FLICKR */
	/*.widget-flickr {}*/
	
	.flickr-photos {
		margin-bottom: 25px;
	}
	
	.flickr_badge_image {
		float: left;
		padding: 1px;
	}
	
	.flickr_badge_image img {
		width: 85px;
		height: auto;
	}
	
	.flickr-photos:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}
	
	.widget-flickr p {
		margin-bottom: 0;
		font-style: italic;
		font-size: 10px;
		line-height: 18px;
		font-weight: 300;
		color: #acacac;
	}
	
	
	/* WIDGET CONTACT */
	/*.widget-contact {}*/
	
	.widget-contact ul {
		list-style: none;
		margin-bottom: 0;
	}
	
	.widget-contact ul li {
		margin-bottom: 25px;
		border-bottom: 1px solid #d7d7d7;
		padding-bottom: 25px;
	}
	
	.widget-contact ul li:last-child {
		margin-bottom: 0;
		border-bottom: none;
		padding-bottom: 0;
	}
	
	.widget-contact ul li span {
		color: #bca480;
		text-transform: uppercase;
		font-size: 14px;
		font-weight: 600;
		display: block;
	}
	
	
	/* WIDGET SOCIAL */
	/*.widget-social {}*/
	
	.widget-social .social-media {
		margin-bottom: 0;
	}
	
	
	/* WIDGET TABS */
	/*.widget-tab {}*/
	
	.widget-tab .widget {
		margin-bottom: 0;
	}
	
	
	/* WIDGET TWITTER */
	.widget-twitter {
		position: relative;
		padding-left: 40px;
	}
	
	.widget-twitter:before {
		position: absolute;
		top: 0;
		left: 0;
		font-family: "FontAwesome";
		font-size: 22px;
		line-height: 22px;
		color: #bca480;
		content: "";
	}
	
	.widget-twitter .tweet {
		font-style: italic;
	}

/***********************************************************************************
 *	+ RESPONSIVE
 ***********************************************************************************/
/***********************************************************************************
 *	- LARGE DISPLAY (>1200px)
 ***********************************************************************************/

	@media (min-width: 1200px) {
		
		.info-slider .bx-wrapper .bx-pager {
			bottom: 0;
		}
		
		.isotope.col-5 .isotope-item {
			width: 20%;
		}
			
	}
	
/***********************************************************************************
 *	- SMALL DISPLAY (TABLETS)
 ***********************************************************************************/
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.counter-value {
			font-size: 58px;
			line-height: 72px;
		}
		
		.isotope .isotope-item,
		.isotope.col-3 .isotope-item,
		.isotope.col-4 .isotope-item {
			width: 50%;
		}
		
		.isotope.col-5 .isotope-item {
			width: 33.33333333333%;
		}
		
		.vertical-tabs .nav-tabs {
			width: 150px;
		}
		
		.vertical-tabs .tab-content {
			margin-left: 149px;
			padding-left: 20px;
		}
		
		.widget-latest-news ul li img {
			float: none;
			margin-right: 0;
			margin-bottom: 10px;
		}
		
		.widget-latest-news ul li .news-title {
			margin-left: 0;
		}
		
		.tp-rightarrow,
		.tp-leftarrow {
			display: none;
		}
		
		.tp-caption.title:after {
			margin-top: 10px;
		}
		
		.tp-caption.social-icon a {
			font-size: 14px;
			line-height: 10px;
		}
		
		.tp-caption .btn {
			font-size: 10px;
			line-height: 10px;
			padding: 7px 10px;
		}
		
		.tp-caption .btn i {
			padding-left: 10px;
		}
		
		#project-slider-control a {
			padding: 20px 0;
		}
		
		.slide-description {
			width: 80%; 
		}
		
		.widget-recent-posts ul li img {
			float: none;
			margin-right: 0;
			margin-bottom: 10px;
		}
		
		.widget-tab .nav-tabs > li {
			float: none;
			margin-bottom: 0;
		}
		
		.widget-tab .nav-tabs > li > a {
			border: 1px solid #d7d7d7;
			border-bottom: none;
			border-radius: 0;
			margin-right: 0;
		}
		
		.widget-tab .nav-tabs > li > a:hover {
			border-color: #d7d7d7;
		}
	
	}
	
/***********************************************************************************
 *	- EXTRA SMALL DISPLAY (PHONES PORTRAIT)
 ***********************************************************************************/
 
	@media (max-width: 767px) {
		
		.last {
			margin-bottom: 20px;
		}
		
		.panel-group .panel-heading + .panel-collapse > .list-group, 
		.panel-group .panel-heading + .panel-collapse > .panel-body {
			padding-left: 0;
		}
		
		.logos li {
			float: none;
			width: 100%;
		}
		
		.process-steps::before {
			border: none;
		}
		
		.process-steps .step {
			float: none;
			width: 100%;
			margin-bottom: 30px;
		}
		
		.process-steps .step:last-child {
			margin-bottom: 0;
		}
		
		.process-steps.process-6-steps .step,
		.process-steps.process-5-steps .step,
		.process-steps.process-4-steps .step {
			width: 100%;
		}
		
		.filter li {
			display: block;
			border-right: none;
			margin-right: 0;
			padding-right: 0;
		}
		
		.filter li a {
			display: block;
			padding: 5px 0;
		}
		
		.isotope .isotope-item {
			float: none;
			width: 100%;
		}
		
		.isotope.col-3 .isotope-item,
		.isotope.col-4 .isotope-item,
		.isotope.col-5 .isotope-item {
			width: 100%;
		}
		
		.testimonial blockquote {
			width: 100%; 
		}
		
		.map {
			height: 400px;
		}
		
		.nav-tabs > li {
			float: none;
			margin-bottom: 0;
		}
		
		.nav-tabs > li > a {
			border: 1px solid #d7d7d7;
			border-bottom: none;
			border-radius: 0;
			margin-right: 0;
		}
		
		.nav-tabs > li > a:hover {
			border-color: #d7d7d7;
		}
		
		.tab-content img {
			float: none;
			margin-right: 0;
			margin-bottom: 15px;
		}
		
		.vertical-tabs .nav-tabs {
			float: none;
			width: 100%;
		}
		
		.vertical-tabs .nav-tabs > li > a,
		.vertical-tabs .nav-tabs > li.active > a {
			border: 1px solid #d7d7d7;
			border-bottom: none;
		}
		
		.vertical-tabs .nav-tabs > li:first-child > a {
			border-top: 1px solid #d7d7d7;
		}
		
		.vertical-tabs .nav-tabs > li:last-child > a {
			border-bottom: 1px solid #d7d7d7;
		}
		
		.vertical-tabs .tab-content {
			margin-left: 0;
			padding: 20px;
			border-left: none;
		}
		
		.timeline-item h2 a:after, 
		.timeline-item h2 a:before {
			display: none;
		}
		
		.full-screen {
			height: auto !important;
		}
		
		.full-screen .full-section-content {
			position: relative;
			top: 0;
			padding: 60px 0 20px;
			-webkit-transform: translateY(0);
				-ms-transform: translateY(0);
					transform: translateY(0);
		}
		
		.full-screen .banner-fullscreen {
			height: 300px !important;
		}
		
		.full-screen#video-section {
			height: 750px !important;
		}
		
		.tp-rightarrow,
		.tp-leftarrow {
			display: none;
		}
		
		.tp-caption.title:after {
			margin-top: 5px;
		}
		
		.tp-caption.social-icon a {
			font-size: 10px;
			line-height: 5px;
			border-right: none;
		}
		
		.tp-caption .btn {
			font-size: 5px;
			line-height: 5px;
			padding: 1px 3px;
		}
		
		.tp-caption .btn i {
			padding-left: 3px;
		}
		
		.info-slider .bx-wrapper .bx-pager {
			bottom: -60px;
		}
		
		#project-slider-control a {
			float: none;
			width: 100%;
			padding: 20px 0;
			border-left: 1px solid #bca480;
			border-bottom: 1px solid #bca480;
		}
		
		#project-slider-control a:last-child {
			border-bottom: none;
		}
		
		.slide-description {
			width: 100%;
		}
		
		.slide-description p,
		.slide-description h1,
		.slide-description h4 {
			display: none;
		}
			
	}

/***********************************************************************************
 *	- EXTRA SMALL DISPLAY (PHONES LANDSCAPE)
 ***********************************************************************************/
 
 	@media only screen and (min-width: 480px) and (max-width: 767px) {
		
		.isotope.col-5 .isotope-item {
			float: left;
			width: 50%;
		}
		
	}

/***********************************************************************************
 *	- CUSTOM STYLE
 ***********************************************************************************/

	.language{
		display:inline-block;
	}
	.top-container{
		position:relative;
		top:50px;
	}

	fieldset ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
		color: #8cd488;
		opacity: 1; /* Firefox */
	}
	
	fieldset :-ms-input-placeholder { /* Internet Explorer 10-11 */
		color: #8cd488;
	}
	
	fieldset ::-ms-input-placeholder { /* Microsoft Edge */
		color: #8cd488;
	}

	.mb-0{
		margin-bottom:0px;
	}
	.mb-8{
		margin-bottom:8px;
	}
	.mb-10{
		margin-bottom:10px;
	}
	.mb-20{
		margin-bottom:20px;
	}
	.mb-30{
		margin-bottom:30px;
	}
	.mb-50{
		margin-bottom:50px;
	}
	.mb-60{
		margin-bottom:60px;
	}
	.mb-100{
		margin-bottom:100px;
	}
	.mt-10{
		margin-top:10px;
	}
	.mt-20{
		margin-top:20px;
	}
	.mt-30{
		margin-top:30px;
	}
	.mt-40{
		margin-top:40px;
	}
	.mt-50{
		margin-top:50px;
	}
	.mt-60{
		margin-top:60px;
	}
	.pdl-0{
		padding-left:0;
	}
	.pdr-0{
		padding-right:0;
	}
	.pdl-15{
		padding-left:15px;
	}
	.pdr-15{
		padding-right:15px;
	}
	.pdb-20{
		padding-bottom:20px;
	}
	.pdb-30{
		padding-bottom:30px;
	}
	.pdb-40{
		padding-bottom:40px;
	}
	.pdb-50{
		padding-bottom:50px;
	}
	.pdb-60{
		padding-bottom:60px;
	}
	.pdb-80{
		padding-bottom:80px;
	}
	.pdt-20{
		padding-top:20px;
	}
	.pdt-30{
		padding-top:30px;
	}
	.pdt-40{
		padding-top:40px;
	}
	.pdt-50{
		padding-top:50px;
	}
	.pdt-60{
		padding-top:60px;
	}
	.pdt-80{
		padding-top:80px;
	}
	

	.services-boxes-content h2{
		font-size:16px;
	}
	.services-boxes-content h2 a{
		color:#fff;
	}
	.services-boxes-content a{
		color:#ffefc0;
	}

	.bradius{
		border-radius: 10px;
	}

.full-section .wrapper-bgwide {
	position: relative;
	/*right: 20%;*/
}

@media only screen and (min-width: 767px) {

	.full-section .wrapper-bgwide {
		right: 20%;
	}
}
	.full-section p{
		color:#3b3e43;
	}
	.full-section strong{
		text-transform: uppercase;
		color:#39b54a;
	}
	.full-section .bgt-title{
		font-size:24px;
		text-transform: capitalize;
		margin-bottom:0px;
		color:#3b3e43;
	}
	.full-section .bgt-paragraph{
		font-size:16px;
	}

	.widget-posts img{
		/*float:left;
		display:block;*/
		margin-right:20px;
		margin-bottom:30px;
	}
	.widget-posts h5{
		margin-bottom:15px;
	}
	.widget-posts h5 a{
		color:#fff;
		font-size:16px;
		text-transform: capitalize;
	}
	.widget-posts h5 a:hover{
		color:#ffefc0;
	}

	.post-item-thumbnail{
		position:relative;
	}
	.post-item-thumbnail img{
		display:block;
		/*width:100%;
		height: auto;*/
		border-radius:5px;
	}
	.post-item-hover {
		position: absolute;
		top: 0;
		left: 0; 
		right: 0;
		bottom: 0;
		background-color: rgba(66, 163, 60, 0.5);
		opacity: 0;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.post-item-hover a.zoom-action {
		position: absolute;
		top: 0;
		left: 50%;
		font-size: 24px;
		line-height: 24px;
		color: #fff;
		opacity: 0;
		-webkit-transform: translate(-50%,-50%);
			-ms-transform: translate(-50%,-50%);
				transform: translate(-50%,-50%);
		-webkit-transition: top 0.3s 0.2s, opacity 0.3s 0.2s;
				transition: top 0.3s 0.2s, opacity 0.3s 0.2s;
	}
	
	.post-item:hover .post-item-hover .zoom-action {
		opacity: 1;
		top: 50%;
	}
	
	.post-item:hover .post-item-hover {
		opacity: 1;
		margin: 20px;
	}

	/*************FOR POSTS*************/
	.widget-default-posts h5{
		margin-bottom:5px;
	}
	.widget-default-posts h5 a{
		text-transform: capitalize;
	}
	.widget-default-posts .post-date{
		font-size:10px;
		line-height: 14px;
		margin-bottom:0;
	}
	.widget-default-posts .post-category{
		font-size:12px;
		line-height: 14px;
		margin-top:5px;
	}
	.widget-default-posts .pitem-1:hover .post-item-hover{
		margin:10px;
	}
	
	/******************Post Category Color************/
	.categorycolor-1{
		color:#fcffb1;
	}

	/***********WIDGET POSTS TITLE***************/
	.recposts-color-1 .widget-title:after,
	.topviewpost-color-1 .widget-title:after {
		border-bottom: 2px solid #b9e6ff;
	}

	.recposts-color-2 .widget-title:after,
	.topviewpost-color-2 .widget-title:after {
		border-bottom: 2px solid #e5ffd6;
	}

	.recposts-color-3 .widget-title:after,
	.topviewpost-color-3 .widget-title:after {
		border-bottom: 2px solid #fcffb1;
	}

	.recposts-color-4 .widget-title:after,
	.topviewpost-color-4 .widget-title:after {
		border-bottom: 2px solid #983b04;
	}

	.recposts-color-5 .widget-title:after,
	.topviewpost-color-5 .widget-title:after {
		border-bottom: 2px solid #fcffb1;
	}

	.recposts-color-6 .widget-title:after,
	.topviewpost-color-6 .widget-title:after {
		border-bottom: 2px solid #fcffb1;
	}

	.recposts-color-7 .widget-title:after,
	.topviewpost-color-7 .widget-title:after {
		border-bottom: 2px solid #fcffb1;
	}

	.recposts-color-8 .widget-title:after,
	.topviewpost-color-8 .widget-title:after {
		border-bottom: 2px solid #fcffb1;
	}

	.recposts-color-9 .widget-title:after,
	.topviewpost-color-9 .widget-title:after {
		border-bottom: 2px solid #fcffb1;
	}

	.recposts-color-10 .widget-title:after,
	.topviewpost-color-10 .widget-title:after {
		border-bottom: 2px solid #fcffb1;
	}

	/***********CHANGE ON IMAGE BY PAGES*************/
	.recposts-color-1 h5 a,
	.topviewpost-color-1 h5 a{
		color:#fff;
	}
	.recposts-color-1 h5 a:hover,
	.topviewpost-color-1 h5 a:hover{
		color:#caffd1;
	}
	.recposts-color-1 .post-date,
	.topviewpost-color-1 .post-date{
		color:#b9e6ff;
	}

	.recposts-color-2 h5 a,
	.topviewpost-color-2 h5 a{
		color:#fff;
	}
	.recposts-color-2 h5 a:hover,
	.topviewpost-color-2 h5 a:hover{
		color:#caffad;
	}
	.recposts-color-2 .post-date,
	.topviewpost-color-2 .post-date{
		color:#e5ffd6;
	}

	.recposts-color-3 h5 a,
	.topviewpost-color-3 h5 a{
		color:#fff;
	}
	.recposts-color-3 h5 a:hover,
	.topviewpost-color-3 h5 a:hover{
		color:#fcffb1;
	}
	.recposts-color-3 .post-date,
	.topviewpost-color-3 .post-date{
		color:#ffe8dc;
	}

	/********************/
	.recposts-color-4 h3,
	.topviewpost-color-4 h3{
		color:#393c4a;
	}
	/********************/
	.recposts-color-4 h5 a,
	.topviewpost-color-4 h5 a{
		color:#393c4a;
	}
	.recposts-color-4 h5 a:hover,
	.topviewpost-color-4 h5 a:hover{
		color:#983b04;
	}
	.recposts-color-4 .post-date,
	.topviewpost-color-4 .post-date{
		color:#393c4a;
	}

	.recposts-color-5 h5 a,
	.topviewpost-color-5 h5 a{
		color:#fff;
	}
	.recposts-color-5 h5 a:hover,
	.topviewpost-color-5 h5 a:hover{
		color:#fcffb1;
	}
	.recposts-color-5 .post-date,
	.topviewpost-color-5 .post-date{
		color:#efd5ff;
	}

	.recposts-color-6 h5 a,
	.topviewpost-color-6 h5 a{
		color:#fff;
	}
	.recposts-color-6 h5 a:hover,
	.topviewpost-color-6 h5 a:hover{
		color:#fcffb1;
	}
	.recposts-color-6 .post-date,
	.topviewpost-color-6 .post-date{
		color:#ffd5e1;
	}

	.recposts-color-7 h5 a,
	.topviewpost-color-7 h5 a{
		color:#fff;
	}
	.recposts-color-7 h5 a:hover,
	.topviewpost-color-7 h5 a:hover{
		color:#fcffb1;
	}
	.recposts-color-7 .post-date,
	.topviewpost-color-7 .post-date{
		color:#ffc9dc;
	}

	.recposts-color-8 h5 a,
	.topviewpost-color-8 h5 a{
		color:#fff;
	}
	.recposts-color-8 h5 a:hover,
	.topviewpost-color-8 h5 a:hover{
		color:#fcffb1;
	}
	.recposts-color-8 .post-date,
	.topviewpost-color-8 .post-date{
		color:#b9d6ff;
	}

	.recposts-color-9 h5 a,
	.topviewpost-color-9 h5 a{
		color:#fff;
	}
	.recposts-color-9 h5 a:hover,
	.topviewpost-color-9 h5 a:hover{
		color:#fcffb1;
	}
	.recposts-color-9 .post-date,
	.topviewpost-color-9 .post-date{
		color:#e0daff;
	}

	.recposts-color-10 h5 a,
	.topviewpost-color-10 h5 a{
		color:#fff;
	}
	.recposts-color-10 h5 a:hover,
	.topviewpost-color-10 h5 a:hover{
		color:#fcffb1;
	}
	.recposts-color-10 .post-date,
	.topviewpost-color-10 .post-date{
		color:#ffeedb;
	}

	/**********CHANGE BORDER BOTTOM*************/
	.borderbottom-1{
		border-bottom:1px solid #b9e6ff;
		margin:15px 0;
	}
	.borderbottom-2{
		border-bottom:1px solid #e5ffd6;
		margin:15px 0;
	}
	.borderbottom-3{
		border-bottom:1px solid #ffe8dc;
		margin:15px 0;
	}
	.borderbottom-4{
		border-bottom:1px solid #393c4a;
		margin:15px 0;
	}
	.borderbottom-5{
		border-bottom:1px solid #efd5ff;
		margin:15px 0;
	}
	.borderbottom-6{
		border-bottom:1px solid #ffd5e1;
		margin:15px 0;
	}
	.borderbottom-7{
		border-bottom:1px solid #ffc9dc;
		margin:15px 0;
	}
	.borderbottom-8{
		border-bottom:1px solid #b9d6ff;
		margin:15px 0;
	}
	.borderbottom-9{
		border-bottom:1px solid #e0daff;
		margin:15px 0;
	}
	.borderbottom-10{
		border-bottom:1px solid #ffeedb;
		margin:15px 0;
	}

	.custom-section{
		margin-bottom:60px;
	}
	.custom-section .post-item .post-item-hover .zoom-action:hover{
		color:#fcffb1;
	}

	#section-bg1{
		background-color:rgb(214, 255, 211, 1);
	}

	.button-contact{
		position:relative;
		top:22px;
		text-align: center;
	}
	/**************CHANGE FOOTER BACKGROUND*************/
	.bgc-footer-1{
		background-color: #d6ffd3;
	}
	.bgc-footer-2{
		background-color: #b9e6ff;
	}
	.bgc-footer-3{
		background-color: #e5ffd6;
	}
	.bgc-footer-4{
		background-color: #ffe8dc;
	}
	.bgc-footer-5{
		background-color: #fff3d2;
	}
	.bgc-footer-6{
		background-color: #efd5ff;
	}
	.bgc-footer-7{
		background-color: #ffd5e1;
	}
	.bgc-footer-8{
		background-color: #ffc9dc;
	}
	.bgc-footer-9{
		background-color: #b9d6ff;
	}
	.bgc-footer-10{
		background-color: #e0daff;
	}
	.bgc-footer-11{
		background-color: #ffeedb;
	}
	.bgc-footer-12{
		background-color: #eff9ef;
	}

	#footer .widget:last-child{
		margin-bottom:30px;
	}
	#footer p{
		color:#3b3e43;
		margin-bottom:10px;
	}

	#footer .widget-newsletter p {
		margin-bottom:20px;
	}

	.widget-newsletter input{
		border:1px solid #3b3e43;
		border-radius: 5px;
	}
	.widget-newsletter fieldset ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
		color: #959595;
		opacity: 1; /* Firefox */
	}
	
	.widget-newsletter fieldset :-ms-input-placeholder { /* Internet Explorer 10-11 */
		color: #959595;
	}
	
	.widget-newsletter fieldset ::-ms-input-placeholder { /* Microsoft Edge */
		color: #959595;
	}

	/********************BG COLOR*****************/
	.bgcolor-1{
		background-color: #42a33c;
	}
	.bgcolor-2{
		background-color: #61acd6;
	}
	.bgcolor-3{
		background-color: #75bf4c;
	}
	.bgcolor-4{
		background-color: #f69664;
	}
	.bgcolor-5{
		background-color: #f5bd28;
	}
	.bgcolor-6{
		background-color: #8e56af;
	}
	.bgcolor-7{
		background-color: #a82048;
	}
	.bgcolor-8{
		background-color: #fa6e9f;
	}
	.bgcolor-9{
		background-color: #2d5d9f;
	}
	.bgcolor-10{
		background-color: #a699e8;
	}
	.bgcolor-11{
		background-color: #9b590d;
	}
	.bgcolor-12{
		background-color: #ffffff;
	}

	/********************BG IMAGE*****************/
	.bgfimage-1{
		background-image:url(../../images/bg/shome.jpg);
	}
	.bgfimage-2{
		background-image:url(../../images/bg/bgwhealth.jpg);
	}
	.bgfimage-3{
		background-image:url(../../images/bg/bgwnutrition.jpg);
	}
	.bgfimage-4{
		background-image:url(../../images/bg/bgwsports.jpg);
	}
	.bgfimage-5{
		background-image:url(../../images/bg/bgwspecialman.jpg);
	}
	.bgfimage-6{
		background-image:url(../../images/bg/bgwspirituality.jpg);
	}
	.bgfimage-7{
		background-image:url(../../images/bg/bgwliveproject.jpg);
	}
	.bgfimage-8{
		background-image:url(../../images/bg/bgwchallenges.jpg);
	}
	.bgfimage-9{
		background-image:url(../../images/bg/bgwstrmanag.jpg);
	}
	.bgfimage-10{
		background-image:url(../../images/bg/bgwproduct-services.jpg);
	}
	.bgfimage-11{
		background-image:url(../../images/bg/bgwbecomeafather.jpg);
	}
	.bgfimage-12{
		background-image:url(../../images/bg/bgwcontactus.jpg);
	}

	/********************Padding BG***************/
	.padding-1{
		/*padding: 165px 0 135px;*/
		padding:140px 0;
	}
	.padding-2,
	.padding-3,
	.padding-4,
	.padding-5,
	.padding-6,
	.padding-7,
	.padding-8,
	.padding-9,
	.padding-10,
	.padding-11,
	.padding-12{
		padding:72px 0;
	}

	/*****************Color Tab Category***************/
	.fcolor-1:last-child,
	.fcolor-2:last-child,
	.fcolor-3:last-child,
	.fcolor-4:last-child,
	.fcolor-5:last-child,
	.fcolor-6:last-child,
	.fcolor-7:last-child,
	.fcolor-8:last-child,
	.fcolor-9:last-child{
		margin-bottom:30px;
	}
	.fcolor-1 li,
	.fcolor-2 li,
	.fcolor-3 li,
	.fcolor-5 li,
	.fcolor-6 li,
	.fcolor-7 li,
	.fcolor-8 li,
	.fcolor-9 li{
		border-right: 1px solid #fff;
	}
	.fcolor-4 li{
		border-right: 1px solid #393c4a;
	}
	.fcolor-1 li a,
	.fcolor-2 li a,
	.fcolor-3 li a,
	.fcolor-5 li a,
	.fcolor-6 li a,
	.fcolor-7 li a,
	.fcolor-8 li a,
	.fcolor-9 li a{
		color: #fff;
	}
	.fcolor-4 li a{
		color: #393c4a;
	}
	.fcolor-1 li a:hover,
	.fcolor-1 li a.active {
		color: #caffd1;
	}
	.fcolor-2 li a:hover,
	.fcolor-2 li a.active {
		color: #caffad;
	}
	.fcolor-3 li a:hover,
	.fcolor-3 li a.active {
		color: #fcffb1;
	}
	.fcolor-4 li a:hover,
	.fcolor-4 li a.active {
		color: #983b04;
	}
	.fcolor-5 li a:hover,
	.fcolor-5 li a.active {
		color: #fcffb1;
	}
	.fcolor-6 li a:hover,
	.fcolor-6 li a.active {
		color: #fcffb1;
	}
	.fcolor-7 li a:hover,
	.fcolor-7 li a.active {
		color: #fcffb1;
	}
	.fcolor-8 li a:hover,
	.fcolor-8 li a.active {
		color: #fcffb1;
	}
	.fcolor-9 li a:hover,
	.fcolor-9 li a.active {
		color: #fcffb1;
	}

	/*****************Category Search***************/
	.con-search{
		padding:0 20%;
	}
	.widget-sdefault:last-child{
		margin-bottom:100px;
	}

	.widget-sdefault form {
		position: relative;
		margin-bottom: 5px;
	}

	.widget-sdefault input[type="text"] {
		width: 100%;
		height: 40px;
	}
	
	.widget-sdefault input[type="submit"] {
		position: absolute;
		top: 0;
		right: 0;
		height: 40px;
		background: url(../../images/icons/search-3.png) no-repeat center center;
		border: none;
	}
	
	.widget-sdefault input[type="submit"]:hover {
		border-radius: 0 5px 5px 0;
	}

	.widget-sdefault input{
		border-radius: 5px;
	}

	/****************Color of Search Could be Changed***************/

	.widget-search-1 input[type="text"] {
		outline-color:#caffd1;
	}
	.widget-search-1 input[type="submit"]:hover {
		background-color: #caffd1;
	}
	.widget-search-1 input{
		border:1px solid #b9e6ff;
	}
	.widget-search-1 fieldset ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
		color: #b9e6ff;
		opacity: 1; /* Firefox */
	}
	.widget-search-1 fieldset :-ms-input-placeholder { /* Internet Explorer 10-11 */
		color: #b9e6ff;
	}
	.widget-search-1 fieldset ::-ms-input-placeholder { /* Microsoft Edge */
		color: #b9e6ff;
	}
	.widget-search-1 input[type="submit"] {
		background-image: url(../../images/icons/search-3.png);
	}
	.widget-search-1 input[type="submit"]:hover {
		background-image: url(../../images/icons/search-3-1-hover.png);
	}

	.widget-search-2 input[type="text"] {
		outline-color:#caffad;
	}
	.widget-search-2 input[type="submit"]:hover {
		background-color: #caffad;
	}
	.widget-search-2 input{
		border:1px solid #caffad;
	}
	.widget-search-2 fieldset ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
		color: #caffad;
		opacity: 1; /* Firefox */
	}
	.widget-search-2 fieldset :-ms-input-placeholder { /* Internet Explorer 10-11 */
		color: #caffad;
	}
	.widget-search-2 fieldset ::-ms-input-placeholder { /* Microsoft Edge */
		color: #caffad;
	}
	.widget-search-2 input[type="submit"] {
		background-image: url(../../images/icons/search-4.png);
	}
	.widget-search-2 input[type="submit"]:hover {
		background-image: url(../../images/icons/search-3-1-hover.png);
	}

	.widget-search-3 input[type="text"] {
		outline-color:#fcffb1;
	}
	.widget-search-3 input[type="submit"]:hover {
		background-color: #ffe8dc;
	}
	.widget-search-3 input{
		border:1px solid #ffe8dc;
	}
	.widget-search-3 fieldset ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
		color: #ffe8dc;
		opacity: 1; /* Firefox */
	}
	.widget-search-3 fieldset :-ms-input-placeholder { /* Internet Explorer 10-11 */
		color: #ffe8dc;
	}
	.widget-search-3 fieldset ::-ms-input-placeholder { /* Microsoft Edge */
		color: #ffe8dc;
	}
	.widget-search-3 input[type="submit"] {
		background-image: url(../../images/icons/search-5.png);
	}
	.widget-search-3 input[type="submit"]:hover {
		background-image: url(../../images/icons/search-3-1-hover.png);
	}

	.widget-search-4 input[type="text"] {
		outline-color:#fff3d2;
	}
	.widget-search-4 input[type="submit"]:hover {
		background-color: #393c4a;
	}
	.widget-search-4 input{
		border:1px solid #393c4a;
	}
	.widget-search-4 fieldset ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
		color: #393c4a;
		opacity: 1; /* Firefox */
	}
	.widget-search-4 fieldset :-ms-input-placeholder { /* Internet Explorer 10-11 */
		color: #393c4a;
	}
	.widget-search-4 fieldset ::-ms-input-placeholder { /* Microsoft Edge */
		color: #393c4a;
	}
	.widget-search-4 input[type="submit"] {
		background-image: url(../../images/icons/search-6.png);
	}
	.widget-search-4 input[type="submit"]:hover {
		background-image: url(../../images/icons/search-3-6-hover.png);
	}

	.widget-search-5 input[type="text"] {
		outline-color:#efd5ff;
	}
	.widget-search-5 input[type="submit"]:hover {
		background-color: #efd5ff;
	}
	.widget-search-5 input{
		border:1px solid #efd5ff;
	}
	.widget-search-5 fieldset ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
		color: #efd5ff;
		opacity: 1; /* Firefox */
	}
	.widget-search-5 fieldset :-ms-input-placeholder { /* Internet Explorer 10-11 */
		color: #efd5ff;
	}
	.widget-search-5 fieldset ::-ms-input-placeholder { /* Microsoft Edge */
		color: #efd5ff;
	}
	.widget-search-5 input[type="submit"] {
		background-image: url(../../images/icons/search-7.png);
	}
	.widget-search-5 input[type="submit"]:hover {
		background-image: url(../../images/icons/search-3-7-hover.png);
	}

	.widget-search-6 input[type="text"] {
		outline-color:#ffd5e1;
	}
	.widget-search-6 input[type="submit"]:hover {
		background-color: #ffd5e1;
	}
	.widget-search-6 input{
		border:1px solid #ffd5e1;
	}
	.widget-search-6 fieldset ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
		color: #ffd5e1;
		opacity: 1; /* Firefox */
	}
	.widget-search-6 fieldset :-ms-input-placeholder { /* Internet Explorer 10-11 */
		color: #ffd5e1;
	}
	.widget-search-6 fieldset ::-ms-input-placeholder { /* Microsoft Edge */
		color: #ffd5e1;
	}
	.widget-search-6 input[type="submit"] {
		background-image: url(../../images/icons/search-8.png);
	}
	.widget-search-6 input[type="submit"]:hover {
		background-image: url(../../images/icons/search-3-8-hover.png);
	}

	.widget-search-7 input[type="text"] {
		outline-color:#ffc9dc;
	}
	.widget-search-7 input[type="submit"]:hover {
		background-color: #ffc9dc;
	}
	.widget-search-7 input{
		border:1px solid #ffc9dc;
	}
	.widget-search-7 fieldset ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
		color: #ffc9dc;
		opacity: 1; /* Firefox */
	}
	.widget-search-7 fieldset :-ms-input-placeholder { /* Internet Explorer 10-11 */
		color: #ffc9dc;
	}
	.widget-search-7 fieldset ::-ms-input-placeholder { /* Microsoft Edge */
		color: #ffc9dc;
	}
	.widget-search-7 input[type="submit"] {
		background-image: url(../../images/icons/search-9.png);
	}
	.widget-search-7 input[type="submit"]:hover {
		background-image: url(../../images/icons/search-3-9-hover.png);
	}

	.widget-search-8 input[type="text"] {
		outline-color:#b9d6ff;
	}
	.widget-search-8 input[type="submit"]:hover {
		background-color: #b9d6ff;
	}
	.widget-search-8 input{
		border:1px solid #b9d6ff;
	}
	.widget-search-8 fieldset ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
		color: #b9d6ff;
		opacity: 1; /* Firefox */
	}
	.widget-search-8 fieldset :-ms-input-placeholder { /* Internet Explorer 10-11 */
		color: #b9d6ff;
	}
	.widget-search-8 fieldset ::-ms-input-placeholder { /* Microsoft Edge */
		color: #b9d6ff;
	}
	.widget-search-8 input[type="submit"] {
		background-image: url(../../images/icons/search-10.png);
	}
	.widget-search-8 input[type="submit"]:hover {
		background-image: url(../../images/icons/search-3-10-hover.png);
	}

	.widget-search-9 input[type="text"] {
		outline-color:#e0daff;
	}
	.widget-search-9 input[type="submit"]:hover {
		background-color: #e0daff;
	}
	.widget-search-9 input{
		border:1px solid #e0daff;
	}
	.widget-search-9 fieldset ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
		color: #e0daff;
		opacity: 1; /* Firefox */
	}
	.widget-search-9 fieldset :-ms-input-placeholder { /* Internet Explorer 10-11 */
		color: #e0daff;
	}
	.widget-search-9 fieldset ::-ms-input-placeholder { /* Microsoft Edge */
		color: #e0daff;
	}
	.widget-search-9 input[type="submit"] {
		background-image: url(../../images/icons/search-11.png);
	}
	.widget-search-9 input[type="submit"]:hover {
		background-image: url(../../images/icons/search-3-11-hover.png);
	}

	.widget-search-10 input[type="text"] {
		outline-color:#ffeedb;
	}
	.widget-search-10 input[type="submit"]:hover {
		background-color: #ffeedb;
	}
	.widget-search-10 input{
		border:1px solid #ffeedb;
	}
	.widget-search-10 fieldset ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
		color: #ffeedb;
		opacity: 1; /* Firefox */
	}
	.widget-search-10 fieldset :-ms-input-placeholder { /* Internet Explorer 10-11 */
		color: #ffeedb;
	}
	.widget-search-10 fieldset ::-ms-input-placeholder { /* Microsoft Edge */
		color: #ffeedb;
	}
	.widget-search-10 input[type="submit"] {
		background-image: url(../../images/icons/search-12.png);
	}
	.widget-search-10 input[type="submit"]:hover {
		background-image: url(../../images/icons/search-3-12-hover.png);
	}

	/*****************PAGE CHANING******************/
	.defaultblog h5 a:hover{
		color:#ffefc0;
	}
	.defaultblog .post-item-hover {
		color: #ffefc0;
	}
	.defaultblog .post-item .post-item-hover .zoom-action:hover {
		color: #ffefc0;
	}

	.healthpageblog h5 a:hover{
		color:#caffd1;
	}
	.healthpageblog .post-item-hover {
		color: #caffd1;
	}
	.healthpageblog .post-item .post-item-hover .zoom-action:hover {
		color: #caffd1;
	}
	.healthpageblog strong{
		margin-bottom:5px;
		display:block;
		color:#b9e6ff;
	}

	.nutrpageblog h5 a:hover{
		color:#caffad;
	}
	.nutrpageblog .post-item-hover {
		color: #caffad;
	}
	.nutrpageblog .post-item .post-item-hover .zoom-action:hover {
		color: #caffad;
	}
	.nutrpageblog strong{
		margin-bottom:5px;
		display:block;
		color: #e5ffd6;
	}

	.sportspageblog h5 a:hover{
		color:#fcffb1;
	}
	.sportspageblog .post-item-hover {
		color: #fcffb1;
	}
	.sportspageblog .post-item .post-item-hover .zoom-action:hover {
		color: #fcffb1;
	}
	.sportspageblog strong{
		margin-bottom:5px;
		display:block;
		color: #ffe8dc;
	}

	.specmanpageblog h5 a:hover{
		color:#983b04;
	}
	.specmanpageblog .post-item-hover {
		color: #983b04;
	}
	.specmanpageblog .post-item .post-item-hover .zoom-action:hover {
		color: #fff3d2;
	}
	.specmanpageblog strong{
		margin-bottom:5px;
		display:block;
		color: #983b04;
	}

	.spiritpageblog h5 a:hover{
		color:#fcffb1;
	}
	.spiritpageblog .post-item-hover {
		color: #fcffb1;
	}
	.spiritpageblog .post-item .post-item-hover .zoom-action:hover {
		color: #fcffb1;
	}
	.spiritpageblog strong{
		margin-bottom:5px;
		display:block;
		color: #efd5ff;
	}

	.liveprojpageblog h5 a:hover{
		color:#fcffb1;
	}
	.liveprojpageblog .post-item-hover {
		color: #fcffb1;
	}
	.liveprojpageblog .post-item .post-item-hover .zoom-action:hover {
		color: #fcffb1;
	}
	.liveprojpageblog strong{
		margin-bottom:5px;
		display:block;
		color: #ffd5e1;
	}

	.challengespageblog h5 a:hover{
		color:#fcffb1;
	}
	.challengespageblog .post-item-hover {
		color: #fcffb1;
	}
	.challengespageblog .post-item .post-item-hover .zoom-action:hover {
		color: #fcffb1;
	}
	.challengespageblog strong{
		margin-bottom:5px;
		display:block;
		color: #ffc9dc;
	}

	.strmanagpageblog h5 a:hover{
		color:#fcffb1;
	}
	.strmanagpageblog .post-item-hover {
		color: #fcffb1;
	}
	.strmanagpageblog .post-item .post-item-hover .zoom-action:hover {
		color: #fcffb1;
	}
	.strmanagpageblog strong{
		margin-bottom:5px;
		display:block;
		color: #b9d6ff;
	}

	.latprodpageblog h5 a:hover{
		color:#fcffb1;
	}
	.latprodpageblog .post-item-hover {
		color: #fcffb1;
	}
	.latprodpageblog .post-item .post-item-hover .zoom-action:hover {
		color: #fcffb1;
	}
	.latprodpageblog strong{
		margin-bottom:5px;
		display:block;
		color: #e0daff;
	}

	.beafatherpageblog h5 a:hover{
		color:#fcffb1;
	}
	.beafatherpageblog .post-item-hover {
		color: #fcffb1;
	}
	.beafatherpageblog .post-item .post-item-hover .zoom-action:hover {
		color: #fcffb1;
	}
	.beafatherpageblog strong{
		margin-bottom:5px;
		display:block;
		color: #ffeedb;
	}

	/*************PAGINATION COLOR CHANGING***************/
	.pagin-color-1 li a {
		background-color: #b9e6ff;
		color: #61acd6;
	}
	.pagin-color-1 > li > a:hover,
	.pagin-color-1 > li.active > a,
	.pagin-color-1 > li.active > a:hover {
		background-color: #caffd1;
		color: #39b54a;
	}

	.pagin-color-2 li a {
		background-color: #fff;
		color: #75bf4c;
	}
	.pagin-color-2 > li > a:hover,
	.pagin-color-2 > li.active > a,
	.pagin-color-2 > li.active > a:hover {
		background-color: #e5ffd6;
		color: #39b54a;
	}

	.pagin-color-3 li a {
		background-color: #ffe8dc;
		color: #f69664;
	}
	.pagin-color-3 > li > a:hover,
	.pagin-color-3 > li.active > a,
	.pagin-color-3 > li.active > a:hover {
		background-color: #39b54a;
		color: #fcffb1;
	}

	.pagin-color-4 li a {
		background-color: #fff3d2;
		color: #983b04;
	}
	.pagin-color-4 > li > a:hover,
	.pagin-color-4 > li.active > a,
	.pagin-color-4 > li.active > a:hover {
		background-color: #983b04;
		color: #fff3d2;
	}

	.pagin-color-5 li a {
		background-color: #efd5ff;
		color: #8e56af;
	}
	.pagin-color-5 > li > a:hover,
	.pagin-color-5 > li.active > a,
	.pagin-color-5 > li.active > a:hover {
		background-color: #39b54a;
		color: #fcffb1;
	}

	.pagin-color-6 li a {
		background-color: #ffd5e1;
		color: #a82048;
	}
	.pagin-color-6 > li > a:hover,
	.pagin-color-6 > li.active > a,
	.pagin-color-6 > li.active > a:hover {
		background-color: #39b54a;
		color: #fcffb1;
	}

	.pagin-color-7 li a {
		background-color: #ffc9dc;
		color: #fa6e9f;
	}
	.pagin-color-7 > li > a:hover,
	.pagin-color-7 > li.active > a,
	.pagin-color-7 > li.active > a:hover {
		background-color: #39b54a;
		color: #fcffb1;
	}

	.pagin-color-8 li a {
		background-color: #b9d6ff;
		color: #2d5d9f;
	}
	.pagin-color-8 > li > a:hover,
	.pagin-color-8 > li.active > a,
	.pagin-color-8 > li.active > a:hover {
		background-color: #39b54a;
		color: #fcffb1;
	}

	.pagin-color-9 li a {
		background-color: #e0daff;
		color: #a699e8;
	}
	.pagin-color-9 > li > a:hover,
	.pagin-color-9 > li.active > a,
	.pagin-color-9 > li.active > a:hover {
		background-color: #39b54a;
		color: #fcffb1;
	}

	.pagin-color-10 li a {
		background-color: #ffeedb;
		color: #9b590d;
	}
	.pagin-color-10 > li > a:hover,
	.pagin-color-10 > li.active > a,
	.pagin-color-10 > li.active > a:hover {
		background-color: #39b54a;
		color: #fcffb1;
	}

	/******************COLOR ON TITLE PAGE************/
	.color-1{
		color:#393c4a;
	}
	.colorpage-1 h5 a{
		color:#393c4a;
	}
	.colorpage-1 p{
		color:#393c4a;
	}

	/***************BLOG DETAIL*************/
	.bad-color-1 h4{
		color:#b9e6ff;
	}
	.bad-color-1 p span{
		color:#b9e6ff;
	}
	.baa-color-1{
		border: 1px solid #b9e6ff;
	}
	.baa-color-1 .blog-article-author-details h4 {
		color:#fff;
	}
	.baa-color-1 .blog-article-author-details strong {
		color:#b9e6ff;
	}

	.bad-color-2 h4{
		color:#e5ffd6;
	}
	.bad-color-2 p span{
		color:#e5ffd6;
	}
	.baa-color-2{
		border: 1px solid #e5ffd6;
	}
	.baa-color-2 .blog-article-author-details h4 {
		color:#fff;
	}
	.baa-color-2 .blog-article-author-details strong {
		color:#e5ffd6;
	}

	.bad-color-3 h4{
		color:#ffe8dc;
	}
	.bad-color-3 p span{
		color:#ffe8dc;
	}
	.baa-color-3{
		border: 1px solid #ffe8dc;
	}
	.baa-color-3 .blog-article-author-details h4 {
		color:#fff;
	}
	.baa-color-3 .blog-article-author-details strong {
		color:#ffe8dc;
	}

	.bad-color-4 h4{
		color:#393c4a;
	}
	/****************/
	.bas-color-1 p{
		color:#393c4a;
	}
	.bad-color-4 h2{
		color:#393c4a;
	}
	.bad-color-4 i{
		color:#393c4a;
	}
	/****************/
	.bad-color-4 p span{
		color:#983b04;
	}
	.baa-color-4{
		border: 1px solid #393c4a;
	}
	.baa-color-4 .blog-article-author-details h4 {
		color:#393c4a;
	}
	.baa-color-4 .blog-article-author-details strong {
		color:#983b04;
	}
	/*****************/
	.baa-color-4 .blog-article-author-details p {
		color:#393c4a;
	}
	/*****************/

	.bad-color-5 h4{
		color:#efd5ff;
	}
	.bad-color-5 p span{
		color:#fcffb1;
	}
	.baa-color-5{
		border: 1px solid #efd5ff;
	}
	.baa-color-5 .blog-article-author-details h4 {
		color:#fff;
	}
	.baa-color-5 .blog-article-author-details strong {
		color:#fcffb1;
	}

	.bad-color-6 h4{
		color:#ffd5e1;
	}
	.bad-color-6 p span{
		color:#fcffb1;
	}
	.baa-color-6{
		border: 1px solid #ffd5e1;
	}
	.baa-color-6 .blog-article-author-details h4 {
		color:#fff;
	}
	.baa-color-6 .blog-article-author-details strong {
		color:#fcffb1;
	}

	.bad-color-7 h4{
		color:#ffc9dc;
	}
	.bad-color-7 p span{
		color:#fcffb1;
	}
	.baa-color-7{
		border: 1px solid #ffc9dc;
	}
	.baa-color-7 .blog-article-author-details h4 {
		color:#fff;
	}
	.baa-color-7 .blog-article-author-details strong {
		color:#fcffb1;
	}

	.bad-color-8 h4{
		color:#b9d6ff;
	}
	.bad-color-8 p span{
		color:#fcffb1;
	}
	.baa-color-8{
		border: 1px solid #b9d6ff;
	}
	.baa-color-8 .blog-article-author-details h4 {
		color:#fff;
	}
	.baa-color-8 .blog-article-author-details strong {
		color:#fcffb1;
	}

	.bad-color-9 h4{
		color:#e0daff;
	}
	.bad-color-9 p span{
		color:#fcffb1;
	}
	.baa-color-9{
		border: 1px solid #e0daff;
	}
	.baa-color-9 .blog-content-spec-details h4 {
		color:#fff;
	}
	.baa-color-9 .blog-content-spec-details strong {
		color:#fcffb1;
	}

	.bad-color-10 h4{
		color:#ffeedb;
	}
	.bad-color-10 p span{
		color:#fcffb1;
	}
	.baa-color-10{
		border: 1px solid #ffeedb;
	}
	.baa-color-10 .blog-article-author-details h4 {
		color:#fff;
	}
	.baa-color-10 .blog-article-author-details strong {
		color:#fcffb1;
	}

	/*****************PRODUCTS & SERVICES**************/
	.pros-style img{
		border-radius: 10px;
	}
	.pros-style .headline h4{
		color:#e0daff;
	}

	/******************BLOG CONTENT SPECIAL************/
	.blog-content-spec{
		padding:40px;
		border-radius: 10px;
	}
	.blog-content-spec > p{
		float: left;
		margin-right: 40px;
		text-transform: uppercase;
	}

	/******************CONTACT FORM IN PRODUCT DETAIL****************/
	.request-product #contact-form {
		margin-bottom: 50px;
	}
	
	.request-product #contact-form input[type="text"],
	.request-product #contact-form textarea {
		margin-bottom: 20px;
		border: none;
		border-bottom: 1px solid #e0daff;
	}
	
	.request-product #contact-form textarea {
		margin-bottom: 40px;
	}
	
	.request-product #contact-form input[type="text"]:focus,
	.request-product #contact-form textarea:focus {
		border-bottom-color: #fcffb1;
		outline: 0;
	}

	.request-product #contact-form input[type="submit"]{
		font-weight: bold;
	}
	
	.request-product #contact-form input[type="submit"]:hover {
		background-color: #e0daff;
		color:#a699e8;
		border-color:#a699e8;
	}
	
	.request-product #contact-form label.error {
		display: block;
		color: #f00;
	}

	.request-product fieldset ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
		color: #e0daff;
		opacity: 1; /* Firefox */
	}
	.request-product fieldset :-ms-input-placeholder { /* Internet Explorer 10-11 */
		color: #e0daff;
	}
	.request-product fieldset ::-ms-input-placeholder { /* Microsoft Edge */
		color: #e0daff;
	}

	/***************************HEAD LINE COLOR**************/
	.hline-color-1{
		color:#3b3e43;
	}

	/***************************CONTACT*********************/
	.widget-contact .widget-title,
	.widget-contactform .widget-title{
		color:#3b3e43;
	}
	.widget-contact .widget-title:after,
	.widget-contactform .widget-title:after{
		border-bottom:2px solid #39b54a;
	}
	.widget-contact ul li{
		color:#3b3e43;
	}
	.widget-contact ul li span{
		color:#39b54a;
	}

	.widget-contactform #contact-form input[type="text"],
	.widget-contactform #contact-form textarea {
		color:#3b3e43;
	}

	.widget-contactform fieldset ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
		color: #bebebe;
		opacity: 1; /* Firefox */
	}
	.widget-contactform fieldset :-ms-input-placeholder { /* Internet Explorer 10-11 */
		color: #bebebe;
	}
	.widget-contactform fieldset ::-ms-input-placeholder { /* Microsoft Edge */
		color: #bebebe;
	}

	/***************Policy & Term*************/
	.widget-term-policy p{
		color:#3b3e43;
		font-size:14px;
	}
	.widget-term-policy b{
		color:#3b3e43;
		font-size:14px;
	}
	.widget-term-policy ul li{
		color:#3b3e43;
		font-size:14px;
		margin-bottom:10px;
	}
	.widget-term-policy ul li:before{
		border:1px solid #39b54a;
		color:#39b54a;
	}

/* Custom */
.f-color-1 {
	margin-bottom: 5px;
	display: block;
	color: #d6ffd3;
}

.f-color-2 {
	margin-bottom: 5px;
	display: block;
	color: #b9e6ff;
}

.f-color-3 {
	margin-bottom: 5px;
	display: block;
	color: #e5ffd6;
}

.f-color-4 {
	margin-bottom: 5px;
	display: block;
	color: #ffe8dc;
}

.f-color-5 {
	margin-bottom: 5px;
	display: block;
	color: #983b04;
}

.f-color-6 {
	margin-bottom: 5px;
	display: block;
	color: #efd5ff;
}

.f-color-7 {
	margin-bottom: 5px;
	display: block;
	color: #ffd5e1;
}

.f-color-8 {
	margin-bottom: 5px;
	display: block;
	color: #ffc9dc;
}

.f-color-9 {
	margin-bottom: 5px;
	display: block;
	color: #b9d6ff;
}

.f-color-10 {
	margin-bottom: 5px;
	display: block;
	color: #e0daff;
}

.spinner-loader-wrapper {
	margin: 0;
	padding: 0;
	background: transparent;
}

.center-screen {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transform: -webkit-translate(-50%, -50%);
	transform: -moz-translate(-50%, -50%);
	transform: -ms-translate(-50%, -50%);
	z-index: 999999;
}

.center {
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
}

.ring {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 150px;
	height: 150px;
	background: transparent;
	border-radius: 50%;
	text-align: center;
	line-height: 150px;
	color: #18b201;
	font-family: montserrat;
	font-size: 20px;
	text-transform: uppercase;
	box-shadow: 0 0 6px #63c966;
}

.ring:before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border: 4px solid transparent;
	border-top: 4px solid #18b201;
	border-right: 4px solid #18b201;
	border-radius: 50%;
	animation: animateCircle 2s linear infinite;
}

@keyframes animateCircle {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.lazy-img {
	/*border-radius: 10px;
	margin: 0 auto;
	width: 100%;
	height: auto;
	background-image: linear-gradient( 100deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80% ), linear-gradient(lightgray 400px, transparent 0);
	background-repeat: repeat-y;
	background-size: 50px 100%, 100% 100%;
	background-position: 0 0, 0 120px;
	animation: shine 1s infinite;*/
}

@keyframes shine {
	to {
		background-position: 100% 0, 0 0, 0 40px, /* moves the highlight to the right */
		0 80px, 0 120px;
	}
}

.img-fluid {
	width: 100% !important;
	height: 100% !important;
}

.font-kh-moul {
	font-family: "Moul";
	font-weight: 400 !important;
	letter-spacing:normal;
	line-height: 1.5;
}

.chip {
	display: inline-block;
	height: 26px;
	padding: 0 12px;
	margin-right: 1rem;
	margin-top: 1rem;
	margin-bottom: .5rem;
	font-size: 14px;
	font-weight: 500;
	line-height: 26px;
	color: rgba(0, 0, 0, .7);
	cursor: pointer;
	background-color: #f1f1f1;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 3px;
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
	box-shadow: none;
}

.hideOverflow {
	overflow: hidden;
	/*white-space: nowrap;*/
/*	text-overflow: ellipsis;*/
	width: 100%;
	display: block;
}

/* Pre-Loader Start */
.pre-loader-wrapper {
	background: transparent;
	text-align: center;
	padding: 20%;
}

.pre-loader-h2 {
	color: green;
	margin: 0;
	font: .8em verdana;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.pre-loading span {
	display: inline-block;
	vertical-align: middle;
	width: .6em;
	height: .6em;
	margin: .19em;
	background: #007DB6;
	border-radius: .6em;
	animation: loading 1s infinite alternate;
}

	.pre-loading span:nth-of-type(2) {
		background: #008FB2;
		animation-delay: 0.2s;
	}

	.pre-loading span:nth-of-type(3) {
		background: #009B9E;
		animation-delay: 0.4s;
	}

	.pre-loading span:nth-of-type(4) {
		background: #00A77D;
		animation-delay: 0.6s;
	}

	.pre-loading span:nth-of-type(5) {
		background: #00B247;
		animation-delay: 0.8s;
	}

	.pre-loading span:nth-of-type(6) {
		background: #5AB027;
		animation-delay: 1.0s;
	}

	.pre-loading span:nth-of-type(7) {
		background: #A0B61E;
		animation-delay: 1.2s;
	}

@keyframes loading {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}
/* Pre-Loader End */

/* Spinner Start */
.custom-spinner {
	width: 36px;
	height: 36px;
	border: 2px solid #39B54A;
	border-top-color: transparent;
	border-radius: 50%;
	animation: spinner 1s linear infinite;
}

@keyframes spinner {
	from {
	}

	to {
		transform: rotate(360deg);
	}
}
/* Spinner End*/
