	body {
		font: 14px  MontLight;
		background-color: #fff;
		color: #666666;
		line-height: 24px;
	}
	
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		margin: 0;
		font-family: MontLight;
		font-weight: 700;
		color: #1e1a19;
	}
	
	h1 {
		margin-bottom: 14px; 
		font-size: 48px;
		line-height: 72px;
	}
	
	h2 {
		margin-bottom: 10px;
		font-size: 36px;
		line-height: 48px;
	}
	
	h3 {
		margin-bottom: 8px;
		font-size: 24px;
		line-height: 30px;
	}
	
	h4 {
		margin-bottom: 4px;
		font-size: 18px;
		font-weight: 400;
		line-height: 30px;
	}
	
	h5 {
		font-size: 16px;
		font-weight: 400;
		line-height: 26px;
	}
	
	h6 {
		font-size: 14px;
		font-weight: 400;
		line-height: 21px;
	}
	
	h1 a, 
	h2 a, 
	h3 a, 
	h4 a, 
	h5 a, 
	h6 a { 
		text-decoration: none;
		color: #1e1a19;
		-webkit-transition: all .2s;
				transition: all .2s;
	}
	
	h1 a:hover, 
	h2 a:hover, 
	h3 a:hover, 
	h4 a:hover, 
	h5 a:hover, 
	h6 a:hover {
		color: #d9b310;
		text-decoration: none;
	}
	
	p {  margin-bottom: 15px; }
	
	a  {color: #666; }
	
	a:hover,
	a:focus { 
		outline: 0;
		text-decoration: none;
		color: #d9b310;
	}
	
	img {
		max-width: 100%; 
	}
	
	ul,
	ol {
		padding: 0;
		list-style-position: inside;
	}
	ul li { list-style: none; }
	
	ul ul,
	ol ol,
	ul ol 
	ol ul {
		margin-left: 20px;
	}
	
	dl {
		margin-bottom: 20px;
	}
	
	.last { 
		margin-bottom: 0; 
	}
	
	.hr {
		margin: 30px 0;
		border-top: 1px solid #ebebeb;
	}
	
	.hr.default { border-color: #d9b310; }
	
	.text-default-color { color: #d9b310; }
	
	label { font-weight: normal; }
	
	input,
	select,
	textarea {
		display: block;		
		max-width: 100%;
		padding: 5px 10px;
		border: 1px solid #d2d2d2;
		font-weight: 400;
	}
	
	select { width: 100%; }
	
	textarea:focus,
	input[type="url"]:focus,
	input[type="tel"]:focus,
	input[type="date"]:focus,
	input[type="datetime"]:focus,
	input[type="datetime-local"]:focus,
	input[type="week"]:focus,
	input[type="month"]:focus,
	input[type="text"]:focus,
	input[type="color"]:focus,
	input[type="email"]:focus,
	input[type="image"]:focus,
	input[type="number"]:focus,
	input[type="search"]:focus,
	input[type="password"]:focus	{
		box-shadow: none;
		outline: 0;
		border-color: #efc204;
		-webkit-appearance:none;
	}
	
	input[type="reset"]:focus,
	input[type="submit"]:focus,
	input[type="button"]:focus {
		box-shadow: none;
		outline: 0;
	}
	
 

/***********************************************************************************
 *	+ ALERTS
 ***********************************************************************************/
 
	.alert {
		margin-bottom: 20px;
		padding: 12px 30px;
		border-radius: 30px;
		border: none;
		color: #fff;
		box-shadow: 2px 2px 6px #666666;
	}
	
	.alert:after {
		content:"x";
		float: right;
	}
	
	.alert-success { background-color: #09b53d; }
	
	.alert-info { background-color: #45bbff; }
	
	.alert-warning { background-color: #E8CD15; }

	.alert-danger { background-color: #ff3333; }

/***********************************************************************************
 *	+ BUTTONS
 ***********************************************************************************/
 	
	.btn {
		position: relative;
		border: medium none;
		margin-bottom: 20px;
		padding: 15px 40px;
		border-radius: 5px;
		text-transform: uppercase;
		font-family: 'Montserrat', sans-serif;
		color: #ffffff;
		-webkit-transition: all 0.2s;
				transition: all 0.2s;
	}
	
	a.btn { color: #fff; }
	
	.btn-default, 
	.btn-default:hover,
	.btn-default:focus,
	.btn-default:active, 
	.btn-default:active:hover,
	.btn-default:active:focus {
		background-color: #d9b310;
		color: #ffffff;
		outline: 0 none !important;
	}
	
	.btn-default {
		overflow: hidden;
		background-color: #d9b310;
	}
	
	a.btn-default { color: #fff; }
	
	.btn-default:hover { 
		background-color: #1e1a19; 
		color: #fff;
	}
	
	.btn-black { background-color: #1e1a19; }
	
	a.btn-black { color: #fff; }
	
	.btn-black, 
	.btn-black:hover,
	.btn-black:focus,
	.btn-black:active, 
	.btn-black:active:hover,
	.btn-black:active:focus {
		background-color: #1e1a19; 
		color: #ffffff;
		outline: 0 none !important;
	}
	
	.btn-black:hover { 
		background-color: #d9b310; 
		color: #fff;
	}
	
	.btn-white { 
		background-color: #ffffff; 
		border: 1px solid #d9b310;
	}
	
	a.btn-white { color: #d9b310; }
	
	.btn:hover {
		box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5); 
		-webkit-transform: scale(1.05);
			-ms-transform: scale(1.05);
				transform: scale(1.05);
	}
	
	.btn-white, 
	.btn-white:hover,
	.btn-white:focus,
	.btn-white:active, 
	.btn-white:active:hover,
	.btn-white:active:focus {
		background-color: #ffffff; 
		color: #d9b310; 
		outline: 0 none !important;
	}
	
 
 
/***********************************************************************************
 *	+ TABS
 ***********************************************************************************/
 	
	.nav-tabs { border-bottom: 3px solid #d9b310; }
	
	.nav-tabs > li > a {
		padding: 12px 30px;
		margin-bottom: -2px;
		border: 3px solid #d9b310;
		font-family: 'Montserrat', sans-serif;
		font-size: 14px;
		text-transform: uppercase;
		border-color: transparent;
		border-radius: 0;
		color: #1e1a19;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.nav-tabs > li > a:hover,
	.nav-tabs > li > a:focus {
		border-color: transparent;
		background-color: transparent;
	}
	
	.nav-tabs > li.active > a,
	.nav-tabs > li.active > a:hover,
	.nav-tabs > li.active > a:focus {
		background-color: #fff;
		border-color: #d9b310 #d9b310 #fff;
		border-style: solid;
		border-width: 3px;
		position: relative;
		color: #d9b310;
	}
	
	.tab-content { 
		padding: 50px 0;
		color: #1e1a19;
	}
	
	.tab-content .tab-pane img { 
		float: left;
		margin: 0 20px 20px 0; 
	}
	
	.tab-content h6 {
		margin-bottom: 20px;
		text-transform: uppercase;
		color: #d9b310; 
	}
	
	.tab-content:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
	
		.nav-tabs > li > a { padding: 12px 10px; }
		
		.tab-content .tab-pane img { float: none; }
	
	}
	
/* VERTICAL TABS */	

	.vertical-tabs { }
	
	.vertical-tabs .nav-tabs {
		float: left;
		border-bottom: none;
	}
	
	.vertical-tabs .nav-tabs li {
		float: none;
		margin-left: 0;
	}
	
	.vertical-tabs .nav-tabs > li > a {
		display: inline-block;
		width: 170px;
		border: none;
		text-align: center;
		margin-bottom: 12px;
		padding: 50px 0;
		box-sizing: border-box;
		background-color: #f2f3f8;
		text-transform: none;
		-webkit-transition: all .3s;
				transition: all .3s;
	}
	
	.vertical-tabs  .nav-tabs > li.active > a,
	.vertical-tabs  .nav-tabs > li > a:hover,
	.vertical-tabs  .nav-tabs > li.active > a:focus {
		background-color: #d9b310;
		border: none;
		color: #ffffff;
	}
	
	.vertical-tabs .nav-tabs > li > a i  {
		display: inline-block;
		margin-bottom: 10px;
		font-size: 60px;
		color: #d9b310;
		-webkit-transition: all .3s;
				transition: all .3s;
	}
	
	.vertical-tabs .nav-tabs > li > a  h6 { 
		color: #d9b310; 
		-webkit-transition: all .3s;
					transition: all .3s;
	}
	
	.vertical-tabs  .nav-tabs > li.active > a i,
	.vertical-tabs  .nav-tabs > li > a:hover i,
	.vertical-tabs  .nav-tabs > li.active > a:focus i,
	.vertical-tabs  .nav-tabs > li.active > a h6,
	.vertical-tabs  .nav-tabs > li > a:hover h6,
	.vertical-tabs  .nav-tabs > li.active > a:focus h6 { color: #ffffff; }
	
	@media (min-width: 768px) and (max-width: 991px) {
	
		.vertical-tabs .nav-tabs {
			float: none;
			margin-bottom: 30px;
			width: 100%;
		}
		
		.vertical-tabs .nav-tabs > li > a { width: 100px; }
		
		.vertical-tabs .nav-tabs > li > a, .vertical-tabs .nav-tabs > li:first-child > a { border-top: 1px solid #e1e1e1; }
		
		.vertical-tabs .nav-tabs > li:last-child > a { border-bottom: 1px solid #e1e1e1; }
		
		.vertical-tabs .tab-content {
			border-left: medium none;
			margin-left: 0;
			padding: 0;
		}
		
	}
	
	@media (max-width: 767px) {
	
		.nav-tabs { border-bottom: none; }
		
		.nav-tabs > li {
			float: none;
		}
		.nav-tabs > li {
			margin-bottom: 0;
		}
		
		.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { border-color: #d9b310; }

		.vertical-tabs .nav-tabs {
			float: none;
			margin-bottom: 30px;
			width: 100%;
		}
		
		.vertical-tabs .tab-content {
			border-left: medium none;
			margin-left: 0;
			padding: 0;
		}
		
		.vertical-tabs .nav-tabs li  a {
			width: 100%;
			padding-top: 10px;
			padding-bottom: 10px;
		}
	
	}


/***********************************************************************************
 *	+ PROGRESS BARS
 ***********************************************************************************/
 
 	.progress {
		margin-bottom: 25px;
		height: 3px;
		box-shadow: none;
		border-radius: 0;
		background-color: #ffffff;
		overflow: visible;
	}
	
	.progress-bar-title h6 { margin-bottom: 20px; }
	
	.progress-bar { 
		position: relative;
		background-color: #d9b310;
	}
	
	.progress-bar span {
		position: absolute;
		top: -30px;
		right: 0;
		font-size: 14px;
		font-family: 'Montserrat', sans-serif;
		color: #1e1a19;
	}
	
	@media (max-width: 767px) {
	
		.progress:last-of-type { margin-bottom: 100px; }
		
	}
 
	

/***********************************************************************************
 *	+ CLIENTS LIST
 ***********************************************************************************/
 
	.logos {
		margin-bottom: 0;
		list-style: outside none none; 
	}
	
	.logos li {
		display: block;
		float: left;
		padding: 110px 0;
		width: 20%;
		text-align: center;
		-webkit-transition: all 0.5s ease 0s;
				transition: all 0.5s ease 0s;
	}
	
	.logos li:hover { background-color: #d9b310; }
	
	.logos:after {
		clear: both;
		content: " ";
		display: block;
		font-size: 0;
		height: 0;
		visibility: hidden;
	}
	
	@media (max-width: 767px) {
		
		.logos li {
			float: none;
			padding: 60px 0;
			width: 100%;
			text-align: center;
		}
		
	}

/***********************************************************************************
 *	+ ERROR PAGE
 ***********************************************************************************/	
	
	h1.error {
		position: relative;
		top: 50%;
		padding: 100px 80px;
		box-sizing: border-box;
		background-color: #d9b310;
		color: #fff;
		text-align: center;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {

		h1.error { padding: 100px 30px; }
		
	}
	
 

/***********************************************************************************
 *	+ ISOTOPE
 ***********************************************************************************/
	
	.isotope { margin-bottom: 50px; }
	
	.isotope.no-margin-bottom { margin-bottom: 0; }
	
	.isotope.gutter { margin: -15px -15px 85px; }
	
	.isotope .isotope-item {
		float: left;
		width: 25%;
	}
	
	.isotope.gutter .isotope-item { padding: 15px; } 
	
	.isotope.col-3 .isotope-item { width: 33.3333%; }
	
	.isotope.col-4 .isotope-item { width: 25%; }
	
	.isotope.col-5 .isotope-item { width: 20%; }
	
	.isotope-item.item-width-1 { width: 16.6666%; }
	
	.isotope-item.item-width-2 { width: 33.3333%;}
	
	.isotope-item.item-width-3 { width: 50%; }
	
	.isotope-item.item-width-4 { width: 66.6666%; }
	
	.isotope .portfolio-item { margin-bottom: 0; }
	
	.isotope:after {
		clear: both;
		content: " ";
		display: block;
		font-size: 0;
		height: 0;
		visibility: hidden;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
	
		.isotope.col-5 .isotope-item { width: 33.3333%; }
	
	}
	
	@media (max-width: 767px) {
		
		.isotope .isotope-item,
		.isotope.col-3 .isotope-item, 
		.isotope.col-5 .isotope-item { width: 100%; }
		
	}
	
	@media only screen and (min-width: 480px) and (max-width: 767px) {
		
		.isotope .isotope-item,
		.isotope.col-3 .isotope-item,
		.isotope.col-5 .isotope-item {
			float: left;
			width: 50%;
		}
		
	}
 

/***********************************************************************************
 *	+ PAGINATION
 ***********************************************************************************/
 
	.pagination {
		display: block;
		margin: 0 0 100px 0;
	}
	
	.pagination li {
		display: inline-block;
		margin-right: 10px;
	}
	
	.pagination li:last-child { margin-right: 0;}
	
	.pagination li a {
		display: block;
		height: 45px;
		width: 45px;
		padding: 0;
		font-weight: 700;
		text-align: center;
		box-sizing: border-box;
		line-height: 43px;
		background-color: transparent;
		border: 2px solid #d9b310;
		border-radius: 5px;
		color: #d9b310;
		-webkit-transition: all 0.3s ease 0s;
				transition: all 0.3s ease 0s;
	}
	.pagination > li:last-child > a,
	.pagination > li:first-child > a,
	.pagination > li:last-child > span,
	.pagination > li:first-child > span { border-radius: 5px; }
	
	.pagination li a:hover,
	.pagination li.active a,
	.pagination li.active a:hover {
		background-color: #d9b310;
		border-color: #d9b310;
		color: #fff;
	}
	
/***********************************************************************************
 *	+ PROCESS STEPS
 ***********************************************************************************/	
 
	.process-steps {}

	.process-steps-headline {
		position: relative;
		margin-bottom: 110px;
		padding: 60px 0 60px 160px;
		-webkit-transition: all 1s;
				transition: all 1s;
	}
	
	.process-steps-headline h1 { margin-bottom: 20px; }
	
	.process-steps-headline h4 { font-weight: 400; }
	
	.process-steps-headline:before {
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		content: "";
		width: 260px;
		border-top: 6px solid #000;
		border-bottom: 6px solid #000;
		border-left: 6px solid #000;
		-webkit-transition: all 1s;
				transition: all 1s;
	}
	
	.process-steps-headline:hover { padding-left: 130px; }
	
	.process-steps-headline:hover:before {
		-webkit-transform: translateX(30px);
			-ms-transform: translateX(30px);
				transform: translateX(30px);
	}
	
	.process-3-steps {}
	
	.step {}
	
	.step-details {}
	
	.step-details h2 { 
		margin-bottom: 50px;
		font-size: 30px;
	}
	
	.process-steps:after {
		clear: both;
		content: " ";
		display: block;
		font-size: 0;
		height: 0;
		visibility: hidden;
	}
	
	@media (max-width: 767px) {
	
		.process-steps-headline { padding: 60px 0 60px 60px; }
		
		.process-steps-headline:hover { padding-left: 60px; }
	
	}
	
 
	
/***********************************************************************************
 *	+ FULL SECTIONS
 ***********************************************************************************/
	
	.full-section {
		position: relative;
		z-index: 1;
		margin-bottom: 100px;
		padding: 50px 0;
		background: no-repeat center center;
		background-color: #f5f5fb;
	}
	
	.full-section-overlay-color {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 2;
		background-color: #d9b310;
		opacity: 0.75;
	}

	.full-section-container {
		position: relative;
		z-index: 3;
	}
	
	.parallax { 
		background-attachment: fixed !important;
		-webkit-background-size: cover !important;
				background-size: cover !important;	
	}
	
	.full-section.dark-section {
		background-color: #333;
		color: #ffffff;
	}
	
 
	
 
	
	.full-section.dark-section a,
	.full-section.dark-section h1,
	.full-section.dark-section h2,
	.full-section.dark-section h3,
	.full-section.dark-section h4,
	.full-section.dark-section h5, 
	.full-section.dark-section h6,
	.full-section.dark-section  .progress-bar span,
	.full-section.dark-section .counter-value,
	.full-section.dark-section .price-plan ul li,
	.full-section.dark-section .price-plan-heading h1 small,
	.full-section.dark-section  .service-box.style-1 i,
	.full-section.dark-section .service-box.style-1 .service-box-content h5 a,
	.full-section.dark-section .reply:before,
	.full-section.dark-section .comment-metadata:before,
	.full-section.dark-section  .widget-recent-posts ul li .post-date,
	.full-section.dark-section .widget-recent-posts ul li:before,
	.full-section.dark-section  .widget-recent-posts ul li a:hover,
	.full-section.dark-section .widget-recent-comments ul li a:hover,
	.full-section.dark-section  .widget-social .social-media a,
	.full-section.dark-section .counter i  { color: inherit; }
	
	.full-section.dark-section input[type="text"],
	.full-section.dark-section input[type="email"],
	.full-section.dark-section input[type="url"],
	.full-section.dark-section select,
	.full-section.dark-section textarea {
		background-color: transparent;
		color: inherit;
	}
	
	.full-section.dark-section .btn-white { border-color: inherit; }
	
	.full-section.dark-section a.btn-white { color: #d9b310; }

	.full-section.dark-section .headline:before { border-color: inherit; }
	
	.full-section.dark-section .panel-title a,
	.full-section.dark-section .panel-title a:focus { border-bottom-color: inherit; }
	
	.full-section.dark-section .tab-content {
		border: 3px solid #d9b310;
	 	border-top: inherit;
	}
	
	.full-section.dark-section  .process-steps-headline:before { border-color: inherit; }
	
	.full-section.dark-section  .social-media.rounded a { border-color: inherit; }

	#section-1 {
		margin-bottom: 0;
		padding: 140px 0 100px; 
		background-color: #ffffff;
		background: url("../../images/backgrounds/1920x1200-1.jpg");
		background-repeat: no-repeat;
		background-position: right center;
	}
	
	#section-2,
	#section-3,
	#section-4 { 
		position: relative; 
		text-align: center;  
	}
	
	#section-2:before,
	#section-3:before,
	#section-4:before {
		position: absolute;
		width: 60%;
		bottom: 0;
		left: 0;
		top: 0;
		border: 5px solid #d9b310;
		content: "";
		-webkit-transition: all .5s linear;
		transition: all 0.5s linear 0s;
	}
	
	#section-2:hover:before,
	#section-3:hover:before,
	#section-4:hover:before {
		box-shadow: 0 50px 40px 0 rgba(0, 0, 0, 0.2);
		-webkit-transform: translateX(5%);
			-moz-transform: translateX(5%);
				transform: translateX(5%);
	}
	
	#section-2:after,
	#section-3:after,
	#section-4:after {
		clear: both;
		content: " ";
		display: block;
		font-size: 0;
		height: 0;
		visibility: hidden;
	}
	
	#section-5 {
		margin: 80px 0 0 0;
		padding: 110px 0 40px 0;
		background: url("../../images/backgrounds/1920x1000-7.jpg") no-repeat left center;
	}
	
	#section-6,
	#section-7 {
		padding: 110px 0 90px 0;
		background: url("../../images/backgrounds/1920x700-1.jpg") no-repeat center center;
		background-size: cover;
	}
	
	#section-7 { margin-bottom: 0; }
	
	#section-7 h2,
	#section-6 h2 { 
		margin-bottom: 0;
		font-size: 32px; 
	}
	
	#section-7 .btn,
	#section-6 .btn { margin-bottom: 0; }
	
	#section-8 {
		margin-bottom: 0;
		padding: 100px 0;
		background: rgba(0, 0, 0, 0) url("../../images/backgrounds/1920x880-1.jpg") no-repeat center center;
	}
	
	#section-9 {
		margin-bottom: 110px;
		padding: 160px 0 140px 0;
		color: #1e1a19;
	}
	
	#section-10 {
		margin-bottom: 100px;
		padding: 90px 0;
		background: url("../../images/backgrounds/1920x800-1.jpg") no-repeat center center;
	}
	
	#section-11 {
		margin-bottom: 110px;
		padding: 140px 0 80px 0;
	}
	
	#section-12 {
		padding: 0;
		margin-bottom: 0;
	}
	
	#section-13 {
		padding: 0;
		margin: 110px 0;
		background: url("../../images/backgrounds/1920x285-1.jpg") no-repeat center center;
	}
	
	#section-14 {
		margin-bottom: 100px;
		padding: 100px 0;
		background-color: #fff;
	}
	
	#section-15 {
		padding-top: 200px;
		margin-bottom: 0;
		background-color: #ffffff;
		background: url("../../images/backgrounds/1920x1200-1.jpg") no-repeat center center;
	}
	
	#section-15 i {
		color: #d9b310;
		font-size: 100px;
	}
	
	#section-16 {
		margin: 0;
		padding: 200px 0;
		background: url("../../images/backgrounds/1920x1000-6.jpg") no-repeat center center;
	}
	
	#section-17 {
		margin-bottom: 0;
		padding: 100px 0;
		background: url("../../images/backgrounds/1920x1000-4.jpg") no-repeat center center;
	}
	
	@media (min-width: 1200px) {
	
		#section-2:before,
		#section-3:before,
		#section-4:before {
			left: 100px;
			top: 60px;
			bottom: 60px;
			width: 45%;
		}
	
		#section-7 h2,
		#section-6 h2 { font-size: 36px; }
	
	}
	
	@media (max-width: 991px){
	
		#section-1 { background-image: none; }
	
	} 
	
	@media (min-width: 768px) and (max-width: 991px) {
	
		#section-1 { margin-bottom: 100px; }
		
		#section-2:before,
		#section-3:before,
		#section-4:before { display: none; }
	
		#section-7 h2,
		#section-6 h2 { font-size: 24px; }
		
		#section-5 {
			background: #f1f1f1;
		}
	
	}
	
	@media (max-width: 767px) {
		
		#section-1 { 
			background-image: none;
		}
		
		#section-1:before { display: none; }
		
		#section-2:before,
		#section-3:before,
		#section-4:before {
			display: none;
		}
		
		#section-5 {
			background-image: none;
		}
		
		#section-7,
		#section-6 { text-align: center; }
		
		#section-7 h2 ,
		#section-6 h2 { margin-bottom: 40px; }
		
		#section-14 { text-align: center; }
		
	}
	

 
	
/***********************************************************************************
 *	+ SCROLL UP
 ***********************************************************************************/
	
	#scroll-up {
		z-index: 8000; 
		display: none;
		position: fixed;
		bottom: 50px;
		right: 50px;
		height: 45px;
		width: 45px;
		font-size: 15px;
		line-height: 40px;
		text-decoration: none;
		text-align: center;
		cursor: pointer;
		background-color: #333; color: #fff;
		box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	#scroll-up i { font-size: 32px; }
	
	#scroll-up:hover {
		background-color: #d9b310;
		
	}

/***********************************************************************************
 *	+ SLIDERS
 ***********************************************************************************/
	
	/* REVOLUTION SLIDER */
	
	.rev_slider_wrapper {
		background-color: #ffffff;
		overflow: visible !important;
	}
	
	.tp-leftarrow.default,
	.tp-rightarrow.default {
		width: 36px;
		height: 36px;
		background: transparent no-repeat center center;
	}
	
	.tp-leftarrow.default { background-image: url(../images/prev.png); }
	
	.tp-rightarrow.default { background-image: url(../images/next.png); }
	
	.tparrows:before {
		position: absolute;
		top: 20px;
		color: #1f1f1f;
		font-family: 'Montserrat', sans-serif;
		font-size: 12px;
		font-weight: 700;
		line-height: 26px;
		text-transform: uppercase;
		text-align: center;
	}
	
	.tparrows.tp-leftarrow:before { content: "prev"; }
	
	.tparrows.tp-rightarrow:before { content: "next";}
	
	.tp-bullets.default .tp-bullet {
		width: 10px;
		height: 10px;
		border: 2px solid #d9b310;
		background-color: #d9b310;
		border-radius: 50%;
		-webkit-transition: all 0.3s ease 0s;
				transition: all 0.3s ease 0s;
	}
	.tp-bullets.default .tp-bullet:hover,
	.tp-bullets.default .tp-bullet.selected {
		background-color: transparent;
		border-color: #d9b310;
	}
	
	.subtitle {
		font-family: 'Montserrat', sans-serif;
		font-size: 24px;
		font-weight: 700;
		text-transform: uppercase;
		line-height: 24px;
		color: #d9b310;
	}
	
	.tp-shapewrapper {
		border: 5px solid #d9b310;
	}
	
	@media (min-width: 768px) and (max-width: 1199px) {
	
		.tp-leftarrow.default,
		.tp-rightarrow.default { display: none; }
		
	}
	
	@media (max-width: 767px) {
	
		.tp-leftarrow.default,
		.tp-rightarrow.default { display: none; }
		
		.tp-bullets { bottom: 20px !important; }

		.rev_slider_wrapper .btn {
			padding: 5px 20px;
			font-size: 8px;
		}
		
	}

	/* OWL Carousel */
	
	.owl-carousel { margin-bottom: 40px; }
	
	.owl-carousel.images { margin-top: 110px; }
	
	.owl-carousel.clients { text-align: center;}
	
	.owl-pagination {
		position: absolute;
		bottom: 30px;
		left: 0;
		width: 100%; 
		text-align: center;
	}
	
	.owl-page {
		display: inline-block;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		margin-right: 5px;
		background-color: #fff;
	}
	
	.owl-page:hover,
	.owl-page.active { background-color: #666666; }
	
	.owl-page:last-child { margin-right: 0; }
	
	.owl-prev,
	.owl-next {
		position: absolute;
		top: 50%;
		width: 32px;
		height: 32px;
		background: #fff no-repeat center center;
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
	}
	
	.owl-prev {
		left: 0;
		background-image: url(../images/prev.png);
	}
	
	.owl-next {
		right: 0;
		background-image: url(../images/next.png);
	}
	
	.owl-carousel.custom-content  .owl-prev,
	.owl-carousel.images  .owl-prev { display: none; }
	
	.owl-carousel.images .owl-next { right: 0; }
	
	.owl-carousel.custom-content .owl-next,
	.owl-carousel.images .owl-next {
		width: 0;
		height: 245px;
		background: #d9b310 no-repeat center center;
		background-image: url(../images/next-white.png);
		-webkit-transition: all .6s ease-in;
				transition: all .6s ease-in;
	}
	
	.owl-carousel.custom-content .owl-next:after,
	.owl-carousel.images .owl-next:after {
		position: absolute;
		top: 50%;
		left: 50%;
		content: "next";
		margin-top: 20px;
		font-family: 'Montserrat', sans-serif;
		font-size: 12px;
		font-weight: 700;
		color: #fff;
		opacity: 0;
		text-transform: uppercase;
		-webkit-transition: all .6s ease-in;
				transition: all .6s ease-in;
		-webkit-transform: translateX(-50%) translateY(-50%);
			-ms-transform: translateX(-50%) translateY(-50%);
				transform: translateX(-50%) translateY(-50%);
	}
	
	.owl-carousel.custom-content:hover .owl-next,
	.owl-carousel.images:hover .owl-next { width: 245px; }
	
	.owl-carousel.custom-content:hover .owl-next:after,
	.owl-carousel.images:hover .owl-next:after { opacity: 1; }
	
	
	
	.owl-carousel.custom-content .slider-left-side,
	.owl-carousel.custom-content .slider-right-side {
		width: 50%;
		float: left;
	}
	
	.owl-carousel.custom-content .slider-left-side { padding: 0 40px; }
	
	@media (min-width: 1200px) {
	
		.owl-carousel.custom-content .slider-left-side { padding: 230px 180px 0 180px; }
	
	}
	
	@media (min-width: 768px) and (max-width: 1199px) {
		
		.owl-carousel.images:hover .owl-next,
		.owl-carousel.custom-content:hover .owl-next { width: 50px; }
	
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
	
		.owl-carousel.custom-content .slider-left-side,
		.owl-carousel.custom-content .slider-right-side {
			width: 100%;
			float: none;
		}
		
		.owl-carousel.custom-content .owl-next { top: 70%;}
		
	}
	
	@media (max-width: 767px) {
	
		.owl-carousel.custom-content .slider-left-side,
		.owl-carousel.custom-content .slider-right-side {
			width: 100%;
			float: none;
		}
		
		.owl-carousel.images .owl-next { right: 0; }
		
		.owl-carousel.images:hover .owl-next { width: 50px; }
		
		.owl-carousel.custom-content .owl-next { display: none; }
		
		.owl-carousel.custom-content .slider-left-side {
			padding-right: 20px;
			padding-left: 20px;
			margin-bottom: 75px;
		}
		
	}

/***********************************************************************************
 *	+ ANIMATIONS
 ***********************************************************************************/
	
	.wow {
		visibility: hidden;
	}
	
	.wow.animated {
		visibility: visible;
	}
	
/***********************************************************************************
 *	+ TEXT BOXES
 ***********************************************************************************/	
 
	.text-box {
		margin-bottom: 40px;
		padding: 50px;
		border: 2px solid #d9b310;
		background-color: #f5fafc;
	}
	.text-box.rounded { border-radius: 20px; }
	
	.text-box > *:last-child { margin-bottom: 0; }
	
	.text-box.default { 
		color: #ffffff;
		background-color: #d9b310;
	}
	
/***********************************************************************************
 *	+ WIDGETS
 ***********************************************************************************/
 	
	.widget { margin-bottom: 70px; }
	
	#footer-top .widget:first-child { padding-top: 80px; }
	
	#footer-top .widget:last-child { 
		padding-bottom: 40px; 
		margin-bottom: 0;
	}
	
	#footer .widget:last-child { margin-bottom: 0; }
	
	#footer-bottom .widget:last-child { margin-bottom: 0; }
	
	.widget-title {
		font-weight: 400;
		line-height: 26px;
		text-transform: uppercase;
		margin-bottom: 70px;
	}

	#footer-top .widget-title,
	#footer .widget-title,
	#footer-bottom .widget-title { 
		margin-bottom: 30px;
		color: #6e78ff;
		font-size: 13px;
	}
	
	/* WIDGET TEXT */
	.widget-text {}
	
	
	/* WIDGET SEARCH */
	.widget-search {}
	
	.widget-search form { position: relative; }
	
	.widget-search input[type="search"] {
		width: 100%;
		height: 35px;
		padding-right: 40px;
		border-top: none;
		border-left: none;
		border-right: none;
		border-bottom: 2px solid #d9b310;
	}
	
	.widget-search input[type="submit"] {
		position: absolute;
		top: 0;
		right: 0;
		height: 35px;
		border: none;
		background: url(../images/search.png) no-repeat center center;
	}
	
	#footer-top .widget-search input[type="search"],
	#footer .widget-search input[type="search"],
	#footer-bottom .widget-search input[type="search"] { color: #666666; }
	
	/* WIDGET CATEGORIES */
	.widget-categories {}
	
	.widget-categories ul {
		list-style: outside none none;
		margin-bottom: 0;
	}
	
	.widget-categories ul li { margin-bottom: 5px; }
	
	.widget-categories ul li:before {
		position: relative;
		top: -2px;
		font-family: 'FontAwesome';
		font-size: 10px;
		content: "\f111";
		margin-right: 10px;
		color: #d9b310;
		opacity: 0;
		-webkit-transition: all .3s;
			transition: all .3s;
	}
	
	.widget-categories ul li a {
		color: #1e1a19;
		-webkit-transition: all .3s;
			transition: all .3s;
	}
	
	.widget-categories ul li:hover:before { opacity: 1; }
	
	.widget-categories ul li:hover a {
		color: #d9b310;
		text-decoration: none;
	}

	/* WIDGET CATEGORIES DROPDOWN */
	.widget-categories-dropdown {}
	
	#footer-top .widget-categories-dropdown,
	#footer .widget-categories-dropdown,
	#footer-bottom .widget-categories-dropdown { color: #666666; }
	
	
 
 

	/* WIDGET ARCHIVES DROPDOWN */
	.widget-archives-dropdown {}
	
	#footer-top .widget-archives-dropdown,
	#footer .widget-archives-dropdown,
	#footer-bottom .widget-archives-dropdown { color: #666666; }
	
	/* WIDGET PAGES */
	.widget-pages {}
	
	.widget-pages ul {
		list-style: outside none none;
		margin-bottom: 0;
	}

	.widget-pages ul li { margin-bottom: 5px; }
	
	.widget-pages ul li:before {
		position: relative;
		top: -2px;
		font-family: 'FontAwesome';
		font-size: 10px;
		content: "\f111";
		margin-right: 10px;
		color: #d9b310;
		opacity: 0;
		-webkit-transition: all .3s;
			transition: all .3s;
	}
	
	.widget-pages ul li a {
		color: #1e1a19;
		-webkit-transition: all .3s;
			transition: all .3s;
	}
	
	.widget-pages ul li:hover:before { opacity: 1; }
	
	.widget-pages ul li:hover a {
		color: #d9b310;
		text-decoration: none;
	}
	
 
 
	
	#footer-top table caption,
	#footer table caption,
	#footer-bottom table caption { color: #e2e2e2; }
	
	/* WIDGET FLICKR */
	.widget-flickr {}
	
	.flickr-photos {
		margin: -5px;
	}
	
	.flickr_badge_image {
		float: left;
		padding: 5px;
	}
	
	.flickr_badge_image:last-of-type {
		display: none;
	}
	
	.flickr_badge_image img {
		height: auto;
		width: 80px;
	}
	
	.flickr-photos:after {
		clear: both;
		content: " ";
		display: block;
		font-size: 0;
		height: 0;
		visibility: hidden;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
	
		.flickr_badge_image img { width: 60px; }
		
	}
	
	/* WIDGET CONTACT */
	.widget-contact {}
	
	.widget-contact ul {
		list-style: none;
		margin-bottom: 0;
	}
	
	.widget-contact ul li {}
	
	.widget-contact ul li a {
		color: #666666;
		text-decoration: none;
	}
	
	#page-content .widget-contact .widget-title { margin-bottom: 30px; }
	
	/* WIDGET SOCIAL */
	.widget-social {}
	
	.widget-social .social-media { margin-bottom: 0; }
	
	.widget-social .social-media a {color: #1e1a19; }
	
	#footer-top .widget-social .social-media a,
	#footer .widget-social .social-media a,
	#footer-bottom .widget-social .social-media a {
		width: 40px;
		height: 40px;
		margin-bottom: 0;
		color: #fff !important;
		-webkit-transition: all .3s;
				transition: all .3s;
	}
	
	#footer-top .widget-social .social-media a:hover,
	#footer .widget-social .social-media a:hover ,
	#footer-bottom .widget-social .social-media a:hover { background-color: #d9b310; }
	
	@media (min-width: 768px) and (max-width: 991px) {
	
		#footer-bottom .widget-social .social-media a {
			width: 35px;
			height: 35px;
			line-height: 35px;
			margin-right: 5px;
		}
		
	}
	
	@media (max-width: 767px) {
		
		.widget-social .social-media {
			text-align: center; 
			margin-top: 40px;
		}
		
	}
	
/***********************************************************************************
 *	+ MODAL WINDOW
 ***********************************************************************************/	
	
	.modal { 
		z-index: 999999; 
		color: #333;
	}
	
	.modal.in .modal-dialog { 
		-webkit-transform: translate(0, 50%); 
			-ms-transform: translate(0, 50%); 
				transform: translate(0, 50%); 
	}
	
	.modal .widget-newsletter form { margin-bottom: 40px; }
	
	#footer-bottom .btn { margin-bottom: 0; }
	
	@media (max-width: 767px) {
	
		.modal.in .modal-dialog { 
			-webkit-transform: translate(0, 0);
				-ms-transform: translate(0, 0);
					transform: translate(0, 0);
		}
		
		#footer-bottom .btn { margin-bottom: 40px; }
	}
	
/***********************************************************************************
 *	+ SEARCH RESULTS
 ***********************************************************************************/	
 
	.search-results {
		font-size: 24px;
		font-weight: 500;
	}
	
	.search-results a {
		color: #1e1a19;
		text-decoration: none;
		-webkit-transition: all .3s ease-in;
				transition: all .3s ease-in;
	}
	
	.search-results a:hover { color: #d9b310; }
	
