
/*--------------------------------------------------------*/
/* TABLE OF CONTENTS: */
/*--------------------------------------------------------*/
/* 01 - LAYOUT INITIALIZATION*/
/* 02 - COMMON ELEMENTS */
/* 03 - HEADER, INTRO & NAVIGATION */
/* 04 - PAGES & SECTIONS SETUP */
/* 05 - FOOTER */
/* 06-  INNER PAGES LAYOUT */


/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 01 - LAYOUT INITIALIZATION */
/*-------------------------------------------------------------------------------------------------------------------------------*/

html{
}
body{
	
	font-weight: 400;
	overflow-x:hidden;
}
a, a:hover, a:focus{
	text-decoration: none;
}
a:focus { 
    outline: none; 
}
p{
	color: #121212;
	font-weight: 400;
	font-size: 14px;
	line-height:21px;
	margin-bottom: 0px;
}
h1,h2,h3,h4,h5,h6{
	margin-top: 0px;
	margin-bottom: 0px;
	font-weight: normal;
}

@media (min-width: 1024px) and (max-width: 5000px) {
	.container{
		max-width: 1100px;
	}
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 02 - COMMON ELEMENTS */
/*-------------------------------------------------------------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------------*/
								/*Common Spacing and Padding*/						
/*--------------------------------------------------------------------------------*/

.add-top{
	margin-top: 150px;
}
.add-bottom{
	margin-bottom: 150px;
}
.add-top-half{
	margin-top: 75px;
}
.add-bottom-half{
	margin-bottom: 75px;
}
.add-min-top-half{
	margin-top: 35px;
}
.add-min-bottom-half{
	margin-bottom: 35px;
}
.pad-top{
	padding-top: 150px;
}
.pad-bottom{
	padding-bottom: 150px;
}
.pad-top-medium{
	padding-top: 100px;
}
.pad-bottom-medium{
	padding-bottom: 100px;
}
.pad-top-half{
	padding-top: 75px;
}
.pad-bottom-half{
	padding-bottom: 75px;
}
.pad-min-top-half{
	padding-top: 35px;
}
.pad-min-bottom-half{
	padding-bottom: 35px;
}
.pad{
	padding-top: 150px;
	padding-bottom: 150px;
}
.pad-top-special{
	padding-top: 175px;
}


/*--------------------------------------------------------------------------------*/
								/* Common Objects */
/*--------------------------------------------------------------------------------*/	
/*.master-wrap{
	visibility: hidden;
}*/
.page-section{
	padding-top: 150px;
	padding-bottom: 150px;	
}
.inner-section{
	text-align: center;
}
.section-title{
	margin-bottom: 0px;
	float: left;
}
.section-icon{
	max-height: 60px;
	max-width: 60px;
	padding: 10px;
	margin-right: 10px;
	display: inline-block;
	float: left;
}
.section-icon i{
	font-size: 35px;
	line-height: 42px;
}
.section-name{
	float: left;
}
.section-name h3{
	font-size: 40px;
	line-height: 35px;
	text-align: left;
	text-transform: uppercase;
}
.section-name h5{
	margin-top: 5px;
	font-style: italic;
	text-align: left;
}
.section-heading{
	margin-bottom: 15px;
	text-transform: uppercase;
}
.heading-text{
	font-size: 32px;
	line-height: 39px;
	font-style: italic;
	margin-bottom: 0px;
}
.section-caption-small h1{
	font-size: 50px;
	line-height: 57px;
	text-transform: uppercase;
	margin-top: 120px;
}
.float-clear{
	clear: both;
}
.float-left{
	float: left;
}
.float-right{
	float: right;
}
.text-left{
	text-align: left;
}
.text-right{
	text-align: right;
}
.text-center{
	text-align: center;
}
.vertical-align{
	position: relative;
	top: 50%;
	-moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.no-parallax{
	background-attachment: scroll !important;
}
.pos-fix{
	position: fixed !important;
}
.item{
	width: 30.5%;
	margin-bottom: 30px;
}
.video-poster-image{
	background: url('../images/poster-image.jpg');
	background-size: cover;
}

/*--------------------------------------------------------------------------------*/
								/* Buttons */
/*--------------------------------------------------------------------------------*/

.origin-button{
	display: inline-block;
	background: transparent;
}
.origin-button a, .origin-button input[type="submit"]{
	font-size: 14px;
	line-height: 21px;
	padding: 15px 20px;
	text-transform: uppercase;
	display: inline-block;
	border-radius: 0px;
	-webkit-transition: all .8s ease;
	   -moz-transition: all .8s ease;
		-ms-transition: all .8s ease;
		 -o-transition: all .8s ease;
			transition: all .8s ease;
}

/*--------------------------------------------------------------------------------*/
								/*Slands*/
/*--------------------------------------------------------------------------------*/
.sland-relative{
	position: relative;
}	
svg.sland-bottom{
	pointer-events: none;
	position: absolute;
	bottom:-2px;
	left: -40px;
	height: 200px;
	width: 105%;
}
svg.sland-top{
	pointer-events: none;
	position: absolute;
	top:-2px;
	left: -20px;
	height: 200px;
	width: 102%;
}
	/*Sland Type-1*/

.sland-type1 path {
	stroke-width: 0;
}

	/*Sland Type-2*/

.sland-type2 path {
	fill: #fff;
	stroke: #fff;
	stroke-width: 0;
}


/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 03 - HEADER, INTRO & NAVIGATION */
/*-------------------------------------------------------------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------------*/
								/* Header */
/*--------------------------------------------------------------------------------*/
.header{
	position: absolute;
	z-index: 1111;
	width: 100%;
	height: 70px;
	-webkit-box-shadow: 0px 0px 4px 0px #888;
	box-shadow: 0px 0px 4px 0px #888;
	
}
.innerpage-header{
	position: absolute;
	left: 0px;
	z-index: 1111;
	width: 100%;
	height: 70px;
	top: 0px;
	-webkit-box-shadow: 0px 0px 4px 0px #888;
	box-shadow: 0px 0px 4px 0px #888;
	-webkit-transition: all .8s ease-in-out;
	   -moz-transition: all .8s ease-in-out;
		-ms-transition: all .8s ease-in-out;
		 -o-transition: all .8s ease-in-out;
			transition: all .8s ease-in-out;
}
.header-top{
	position: fixed;
	z-index: 1111;
	top: 0;
	width: 100%;
	height: 70px;
	-webkit-box-shadow: 0px 0px 4px 0px #888;
	box-shadow: 0px 0px 4px 0px #888;
	
	
}
.header-bottom{
	bottom: 0px;
}
.header-item{
	height: 70px;
	position: relative;
}
.header-item .logo{
	
}
.header-item .logo a{
	display: inline-block;
}
.header-menu{
	position: absolute;
	right: 100px;
	opacity: 1;
	z-index: 3;
	-webkit-transition: all .8s linear;
	   -moz-transition: all .8s linear;
		-ms-transition: all .8s linear;
		 -o-transition: all .8s linear;
			transition: all .8s linear;
}
.header-menu ul{
	margin: 0px;
	padding: 0px;
}
.header-menu ul li{
	font-size: 15px;
	line-height: 22px;
	text-transform: uppercase;
	position: relative;
	list-style: none;
	display: inline-block;
	margin: 0px 13px;
	/*border-top: 3px solid transparent;*/
}
.header-menu ul li:after{
	content: '';
	display: inline-block;
	width: 100%;
	height: 3px;
	clear: both;
	background: #FFF;
	position: absolute;
	top: 0px;
	left: 0px;
	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}
.header-menu ul li:hover:after{
	background: red;
	top: -5px;
	height: 3px;
}
.header-menu ul li:hover{
/*	color: white;
	padding-top: 5px;
	padding-bottom: 5px;*/
	/*border-top: 3px solid red;*/
	-webkit-transition: all .8s ease-in-out;
	   -moz-transition: all .8s ease-in-out;
		-ms-transition: all .8s ease-in-out;
		 -o-transition: all .8s ease-in-out;
			transition: all .8s ease-in-out;
}
.header-menu ul li a{
	-webkit-transition: all .8s ease;
	   -moz-transition: all .8s ease;
		-ms-transition: all .8s ease;
		 -o-transition: all .8s ease;
			transition: all .8s ease;
}
.header-fix{
	position: fixed;
	top: 0px;
	width: 100%;
	z-index: 999;
	-webkit-box-shadow: 0px 0px 4px 0px #888;
	box-shadow: 0px 0px 4px 0px #888;
}
.opacity-none{
	opacity: 0;
	-webkit-transition: all .8s ease-in-out;
	   -moz-transition: all .8s ease-in-out;
		-ms-transition: all .8s ease-in-out;
		 -o-transition: all .8s ease-in-out;
			transition: all .8s ease-in-out;
}
.standard-nav li ul{
	display: none;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 04 - PAGES & SECTIONS SETUP */
/*-------------------------------------------------------------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------------*/
								/* Home */
/*--------------------------------------------------------------------------------*/

.home-logo{
	position: absolute;
	left: 5%;
	top: 7%;
	z-index: 100;
}
.opacity-full{
	opacity: 1!important;
}
.opacity-zero{
	opacity: 0!important;
}

/*--------------------------------------------------------------------------------*/
								/* Banner-01 */
/*--------------------------------------------------------------------------------*/
.banner-01{
	z-index: 10;
}
.banner-01 h1{
	font-size: 40px;
	line-height: 47px;
	text-transform: uppercase;
	margin: 0 10%;
	letter-spacing: 7px;
}

/*--------------------------------------------------------------------------------*/
								/* Section-Slider */
/*--------------------------------------------------------------------------------*/
.section-slider{
	cursor: url(../images/cursor/directional.png), auto;
}
.section-slider.owl-theme .owl-controls{
	margin-top: 0px;
	position: absolute;
	top: -260px;
	left: 50%;
	 -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.section-slider.owl-theme .owl-controls .owl-page span{
	position: relative;
	background: transparent;
	padding: 10px;
	height: auto;
	width: 170px;
	opacity: 1;
	border: 2px solid;
	border-radius: 0px;
	-webkit-transition: all .8s ease-in-out;
	   -moz-transition: all .8s ease-in-out;
		-ms-transition: all .8s ease-in-out;
		 -o-transition: all .8s ease-in-out;
			transition: all .8s ease-in-out;
}
.section-slider.owl-theme .owl-controls .owl-page span p{
	letter-spacing: 4px;
	text-transform: uppercase;
	-webkit-transition: all .8s ease-in-out;
	   -moz-transition: all .8s ease-in-out;
		-ms-transition: all .8s ease-in-out;
		 -o-transition: all .8s ease-in-out;
			transition: all .8s ease-in-out;
}
.section-pointer-icon{
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	border-top: 30px solid;
	width: 30px;
	position: absolute;
	top: 100px;
	left: 50%;
	-moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.section-slider.owl-theme .owl-controls .owl-page span .section-pointer-icon{
	display: none;
}
.section-slider.owl-theme .owl-controls .owl-page.active span .section-pointer-icon{
	display: block;
}

/*SECTION-SLIDER ABOUT*/
.about h3{
	text-transform: uppercase;
	display: inline-block;
	border: 2px solid;
	padding: 15px;
}
.about p{
	font-size: 25px;
	line-height: 32px;	
	margin-top: 40px;
	letter-spacing: 3px;
}
.about p::after{
	content: '';
	clear: both;
	display: block;
	height: 1px;
	width: 200px;
	margin: 0 auto;
	margin-top: 40px;
}


/*SECTION-SLIDER FEATURES*/
.feature{
	padding: 30px 10px;
	border: 2px solid transparent;
	display: inline-block;
}
.feature-name h4{
	text-transform: uppercase;
	text-align: left;
	-webkit-transition: all .8s ease-in-out;
	   -moz-transition: all .8s ease-in-out;
		-ms-transition: all .8s ease-in-out;
		 -o-transition: all .8s ease-in-out;
			transition: all .8s ease-in-out;
}
.feature-name h4::after{
	content: '';
	clear: both;
	display: block;
	height: 4px;
	width: 50px;
	margin-left: 0px;
	margin-top: 10px;
	-webkit-transition: all .8s ease-in-out;
	   -moz-transition: all .8s ease-in-out;
		-ms-transition: all .8s ease-in-out;
		 -o-transition: all .8s ease-in-out;
			transition: all .8s ease-in-out;
}
.feature:hover{
	border: 2px solid black;
}
.feature:hover .feature-name h4::after{
	width: 65px;
}
.feature-text p{
	font-size: 17px;
	line-height: 24px;
	margin-top: 15px;
	text-align: left;
	-webkit-transition: all .8s ease-in-out;
	   -moz-transition: all .8s ease-in-out;
		-ms-transition: all .8s ease-in-out;
		 -o-transition: all .8s ease-in-out;
			transition: all .8s ease-in-out;
}


/*SECTION-SLIDER CLIENTS*/
.client{
	padding: 20px;
	-webkit-transition: all .5s linear;
	   -moz-transition: all .5s linear;
		-ms-transition: all .5s linear;
		 -o-transition: all .5s linear;
			transition: all .5s linear;		
}
.client img{
	position: relative;
	left: 50%;
	-moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.clients-top-row .client{
	border-bottom: 1px solid;
	border-right: 1px solid;
}
.clients-wrap .client:nth-child(3n){
	border-right: 0px solid !important; 
}

/*--------------------------------------------------------------------------------*/
								/* Banner-02 */
/*--------------------------------------------------------------------------------*/
/*.banner-02{
	padding-bottom: 100px;
}*/
.banner-02-image{
	width: 50%;
	float: left;
	background: url('../images/banner/1.jpg');
	background-size: cover;
	height: 300px;
}
.banner-02-text{
	width: 50%;
	height: 300px;
	float: left;
	display: inline-block;
	padding: 0px 100px ;
}
.banner-02-text h2{
	text-transform: uppercase;
}
.banner-02-text h5{
	text-transform: uppercase;
	margin-top: 25px;
}


/*--------------------------------------------------------------------------------*/
								/* Services */
/*--------------------------------------------------------------------------------*/

.services{
	background: url('../images/services/bg.jpg') 50% 0 no-repeat fixed;
	background-size: cover;
	position: relative;
}
.services-pad{
	padding-top: 200px;
	padding-bottom: 200px;
}
/*.services .inner-section{
	padding-bottom: 100px;
}*/
.services-item{
	padding: 60px;
	margin-left: 10px;
	margin-right: 10px;
	-webkit-transition: all .8s ease-in-out;
	   -moz-transition: all .8s ease-in-out;
		-ms-transition: all .8s ease-in-out;
		 -o-transition: all .8s ease-in-out;
			transition: all .8s ease-in-out;
}
.services-item i{
	font-size: 40px;
	line-height: 47px;
	margin-bottom: 20px;
	display: block;
}
.services-item img{
	margin: 0 auto;
	margin-bottom: 25px;
	display: block;
}
.services-item h3{
	font-size: 20px;
	line-height: 27px;
	text-transform: uppercase;
	display: inline-block;
	-webkit-transition: all .8s linear;
	   -moz-transition: all .8s linear;
		-ms-transition: all .8s linear;
		 -o-transition: all .8s linear;
			transition: all .8s linear;
}
.services-item h3::after{
	content: '';
	clear: both;
	display: block;
	height: 2px;
	width: 100%;
	margin: 0 auto;
	margin-top: 10px;
	margin-bottom: 25px;
	-webkit-transition: all .8s ease-in-out;
	   -moz-transition: all .8s ease-in-out;
		-ms-transition: all .8s ease-in-out;
		 -o-transition: all .8s ease-in-out;
			transition: all .8s ease-in-out;
}
.services-item:hover h3:after{
	width: 75%;
}
.services-slider.owl-theme .owl-controls{
	margin-top: 0px;
}
.origin-carousel.arrow-type.owl-theme .owl-controls .owl-buttons div{
	background: transparent;
	font-size: 23px;
	margin: 0px;
	position: absolute;
	top: 50%;
	opacity: 1;
	-moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .5s ease;
	   -moz-transition: all .5s ease;
		-ms-transition: all .5s ease;
		 -o-transition: all .5s ease;
			transition: all .5s ease;	
}
.origin-carousel.arrow-type .owl-prev{
	left: -8%;
}
.origin-carousel.arrow-type .owl-next{
	right: -8%;
}


/*--------------------------------------------------------------------------------*/
								/* Team */
/*--------------------------------------------------------------------------------*/

.team{
	position: relative;
	/*padding-bottom: 100px;*/
}
/*TEAM MEMBERS*/
.team-members {
	padding-top: 50px;
	padding-bottom: 50px;
}
.team-item {
	position: relative;
	display: inline-block;
}
.team-item img {
	display: inline-block;
	height: 200px;
	width: 200px;
	border: 1px solid transparent;
	border-radius: 50%;
	-webkit-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
.team-member-overlay {
	opacity: 0;
	height: 180px;
	width: 180px;
	border: 1px solid;
	border-radius: 50%;
	position: absolute;
	top: 10px;
	left: 10px;
	cursor: crosshair;
	-webkit-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
.team-member-overlay h3 {
	font-size: 30px;
	line-height: 37px;
	padding: 0;
	margin: 0;
}
.team-member-overlay p {
	font-size: 14px;
	line-height: 21px;
	text-transform: uppercase;
	padding: 0;
	margin: 0;
}
.team-member-overlay:hover {
	opacity: 1;
}
.team-slider {
	cursor: url(../images/cursor/directional.png), auto;
}
.team-member-content{
	cursor: url(../images/cursor/directional.png), auto;
}
.team-member-content-footer{
	margin-top: 70px;
}
.team-member-content-footer h3{
	text-transform: uppercase;
}
.team-member-content-footer h3::after{
	content: '';
	clear: both;
	display: block;
	height: 5px;
	width: 50px;
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 20px;
}
.team-member-content .social-section {
	text-align: center;
	padding-bottom: 20px;
}
.team-member-content .team-social-icons a{
	display: inline-block;
	margin: 0px 10px;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	cursor: pointer;
	-webkit-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
.team-member-content .team-social-icons a i {
	font-size: 18px;
	line-height: 32px;
    transition: .3s all;
    -moz-transition: .3s all;
    -o-transition: .3s all;
    -webkit-transition: .3s all;	
}
/*slider pagination styling */
.team-slider.owl-carousel .owl-item.synced .team-item img{
	border:10px solid;
}
.team-member-content.owl-theme .owl-controls{
	position: absolute;
	display: inline-block;
	right: 10%;
	top: -175px;
	position: absolute;
	margin-top: 0px;
}
.team-member-content.owl-theme .owl-controls .owl-buttons div{
	display: block;
	width: 14px;
	height: 14px;
	padding: 0px;
	border-radius: 50%;
	margin: 0px;
	margin-bottom: 10px;
}
/*slider pagination styling*/
/*TEAM ITEM STRIP ENDS*/

/*--------------------------------------------------------------------------------*/
								/* Banner-03 */
/*--------------------------------------------------------------------------------*/

.banner-03{
	background: url('../images/banner/2.jpg')50% 0 no-repeat fixed;
	background-size: cover;
	position: relative;
}
.banner-03 h1{
	text-transform: uppercase;
}
.banner-03 h5{
	font-size: 18px;
	line-height: 25px;
	font-style: italic;
	display: inline-block;
	padding: 5px 20px;
	margin-top: 10px;
}

/*--------------------------------------------------------------------------------*/
								/* Testimonial */
/*--------------------------------------------------------------------------------*/

.testimonial{
	position: relative;
}
.testimonial-pad{
	padding-bottom: 250px;
	padding-top: 60px;
}
.testimonial img{
	height: 150px;
	width: 150px;
	border: 5px solid ;
	border-radius: 50%;
}
.testimonial h4 {
	text-transform: uppercase;
	font-size: 12px;
	line-height: 19px;
	letter-spacing: 2px;
	display: inline-block;
	padding: 8px 13px;
	margin-top: 20px;
	margin-bottom: 5px;
}
.testimonial p {
	font-size: 18px;
	line-height: 25px;
	margin: 0 auto;
	margin-top: 25px;
	width: 50%;
}

/*--------------------------------------------------------------------------------*/
								/* Portfolio */
/*--------------------------------------------------------------------------------*/
.portfolio {
	/*padding-bottom: 100px;*/
	position: relative;
}

/*PORTFOLIO MIXITUP STARTS*/
.mixitup-filters {
	padding: 20px 0px;
	text-align: center;
}
.mixitup-filters .filter {
	display: inline-block;
	cursor: pointer;
	padding: 5px 10px;
	margin: 10px 0px;
	margin-left: 10px;
	font-size: 13px;
	line-height: 20px;
	text-transform: uppercase;
	transition: all ease-in-out 0.8s;
    -moz-transition: all ease-in-out 0.8s;
    -webkit-transition: all ease-in-out 0.8s;
    -o-transition: all ease-in-out 0.8s;
    -ms-transition: all ease-in-out 0.8s;
}
.portfolio-container{
	margin-top: 100px;
}

.portfolio-container .loading{
  background: url(../images/portfolio-loading.gif) no-repeat center center;
  min-height: 500px;
  
}
.portfolio-container #control_buttons{
	margin-bottom: 100px;
}
.portfolio-container .project-info{margin-bottom: 30px}
#Grid{
	margin-left: 0.1px;
}
.mixitup-panel #Grid .mix {
	width: 25%;
	margin-top: -6px;
	overflow: hidden;
	display: none;
}

.portfolio-item, .ajax-gallery {
	position: relative;
}
.img-overlay {
	position: absolute;
	bottom: -300px;
	width: 100%;
	transition: all ease-in-out 0.8s;
    -moz-transition: all ease-in-out 0.8s;
    -webkit-transition: all ease-in-out 0.8s;
    -o-transition: all ease-in-out 0.8s;
    -ms-transition: all ease-in-out 0.8s;
}
.img-overlay h3{
	font-size: 18px;
	line-height: 25px;
	text-transform: uppercase;
	width: 100%;
	margin: 0px;
	padding: 20px 10px;
	position: absolute;
	bottom: 0px;
}
.img-overlay img {
	margin-top: 20%;
	height: 45px;
	opacity: 1;

}
.portfolio-item img:hover{
	cursor: zoom-in;
}
.portfolio-item:hover .img-overlay {
	bottom: 0px !important;
	cursor: zoom-in;
}
.ajax-gallery img:hover{
	cursor: move;
}
.ajax-gallery:hover .img-overlay {
	bottom: 0px;
	cursor: move;
}
/*.videography{
	position: relative;
}
.videography:hover .img-overlay {
	bottom: 0px;
	cursor: zoom-in;
}*/
/*.video-thumbnail {
	width: 50px;
	height: 50px;
	border: 3px solid;
	border-radius: 50%;
	position: absolute;
	left: 50%;
    top: 50%;
	-moz-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    -moz-transition: all ease-in-out 0.4s;
     -webkit-transition: all ease-in-out 0.4s;
      -o-transition: all ease-in-out 0.4s;
       -ms-transition: all ease-in-out 0.4s;
   		 transition: all ease-in-out 0.4s;
}*/
/*.video-thumbnail i {
	font-size: 30px;
	line-height: 37px;
	margin-left: 13px;
	margin-top: 4px;
	background: transparent;
	-moz-transition: all ease-in-out 0.4s;
     -webkit-transition: all ease-in-out 0.4s;
      -o-transition: all ease-in-out 0.4s;
       -ms-transition: all ease-in-out 0.4s;
   		 transition: all ease-in-out 0.4s;
    
}	*/
/*.utube img {
	transition: all 0.4s;
    -moz-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
}*/
/*Ajax Content Style*/
.main-section-text h4 {
	font-size: 25px;
	line-height: 32px;
	margin-top: 25px;
	text-transform: uppercase;	
}
.project-details{
	margin-bottom: 25px;	
}
.project-details span {
	font-size: 14px;
	line-height: 21px;	
}
#text_content p {
	font-size: 16px;
	line-height: 23px;	
}
#text_content a span {
	font-size: 16px;
	line-height: 23px;	
	text-transform: uppercase;
}
#text_content .button{
	margin-top: 35px;
	margin-bottom: 30px;
}

/*AJAX LOADER STYLES
/* Slider starts*/
.portfolio-featured-content iframe{
	width: 100%;
	height: 500px;
}
#item_slider {
    margin: 0;
    padding: 0;
}
#item_slider a:active {
    outline: none;
}
.slides,  .flex-control-nav,  .flex-direction-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}
.flex-control-nav {
	display: none;
}
#item_slider .slides > li {
    display: none;
}
#item_slider .slides img {
    max-width: 100%;
    display: block;
}
#item_slider {
    position: relative;
    zoom: 1;
}
#item_slider .slides {
    zoom: 1;
}
#item_slider .slides > li {
    position: relative;
}
#item_slider .flex-direction-nav li a {
    width: 30px;
    height: 30px;
    line-height: 26px;
    position: absolute;
    top: 0px;
    cursor: pointer;
    text-indent: 1px;
    font-size: 18px;
    text-align: center;
    z-index: 10;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    -ms-transition: all 0.8s;
}
#item_slider .flex-direction-nav li .flex-next {
    left: 31px;
}
#item_slider .flex-direction-nav li .flex-prev {
    left: 0px;
}
/* Slider ends*/
/* Video */
#item_video_wrapper {
}
#item_video {
    height: 0;
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}
#item_video iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
}
/* Control buttons starts*/
#control_buttons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 31px;
    margin-left: 5px;
	background: transparent;
    font-size: 24px;
	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}
#control_buttons a:hover {
	opacity: 1;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 31px;
    margin-left: 5px;
	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}
#control_buttons a#close {
	width: 40px;
	height: 40px;
}
#control_buttons a#close span {
	width: 40px;
	height: 40px;
	display: inline-block;
}
/* Control buttons ends*/
/*AJAX LOADER STYLES*/
/*PORTFOLIO MIXITUP ENDS*/
.contact-btn{
	position: absolute;
	bottom: 60px;
	left: 50%;
	-moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);

}

/*--------------------------------------------------------------------------------*/
								/* BLog */
/*--------------------------------------------------------------------------------*/


.blog-content{
	padding-left: 15px;
	padding-right: 15px;
}
.blog-inner{
	padding-top: 50px;
	padding-bottom: 150px;
}
.blog-item{
	float: left;
	width: 33%;
}
#blog-container {
	/*padding-top: 130px;*/
}
#blog-container .blog-item{
	float: none;
	margin-bottom: 30px;
    width: 30.5%;
}
.blog-item .blog-item-text{
	position: relative;
	text-align: left;
	padding: 48px;
	min-height: 265px;
}
.blog-item-text h5{
	text-transform: uppercase;
}
.blog-item-text h6{
	text-transform: uppercase;
	margin-bottom: 15px;
	margin-top: 7px;
}
.blog-item-text p{
	font-size: 14px;
	line-height: 21px;
	margin-bottom: 20px;
}
.blog-item-text .read-more-btn a{
	font-size: 11px;
	line-height: 18px;
	text-transform: uppercase;
	padding: 10px;
	display: inline-block;
	-webkit-transition: all .7s ease-in-out;
	   -moz-transition: all .7s ease-in-out;
		-ms-transition: all .7s ease-in-out;
		 -o-transition: all .7s ease-in-out;
			transition: all .7s ease-in-out;
}
.triangle-bottom{
	border-left: 21px solid transparent;
	border-right: 21px solid transparent;
	border-top: 21px solid;
	position: absolute;
	z-index: 10;
	bottom: -21px;
	left: 50%;
	-moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.triangle-top{
	border-left: 21px solid transparent;
	border-right: 21px solid transparent;
	border-bottom: 21px solid;
	position: absolute;
	z-index: 10;
	top: -21px;
	left: 50%;
	-moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.blog-image-slider1 .owl-prev{
	left: 0%;
}
.blog-image-slider1 .owl-next{
	right: 0%;
}
.blog-image-slider1.owl-theme .owl-controls .owl-pagination{
	position: absolute;
	bottom: 5px;
	left: 50%;
	-moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .5s ease;
	   -moz-transition: all .5s ease;
		-ms-transition: all .5s ease;
		 -o-transition: all .5s ease;
			transition: all .5s ease;
}
.blog-item-image iframe{
	width: 100%;
	height: auto;
	border: 0px;
	margin-bottom: -5px;
}
.origin-blog-listings iframe{
	min-height: 320px;
}
/*--------------------------------------------------------------------------------*/
								/* Contact */
/*--------------------------------------------------------------------------------*/

.contact-box {
	position: relative;
	background-size: cover !important;
}
.gmap3 {
    width: 100%;
    min-height: 650px;
    box-shadow: inset 0px 1px 3px rgba(0,0,0,0.5);
}
.map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 650px;
	-webkit-transition: all .5s ease-in-out;
	   -moz-transition: all .5s ease-in-out;
		-ms-transition: all .5s ease-in-out;
		 -o-transition: all .5s ease-in-out;
			transition: all .5s ease-in-out;
}
.triggers {
	position: absolute;
	top: 18%;
	left: 50%;
	height: auto;
	z-index: 100;
	transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);

}
.tr-block {
	float: left;
	width: 160px;
	height: 100px;
	position: relative;
	cursor: pointer;
	transition: all .4s ease-in;
	-moz-transition: all .4s ease-in;
	-webkit-transition: all .4s ease-in;
	-o-transition: all .4s ease-in;	
}
.tr-block img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	
}
.contact-box-inner {
	position: absolute;
	width: 480px;
	height: auto;
	top: 32.7%;
	left: 50%;
	z-index: 100;
	transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);	
}
.contact-info {
	position: absolute;
	width: 480px;
	
	padding-top: 30px;
	padding-bottom: 30px;	
}
.contact-info-content{
	margin-bottom: 25px;
	display: inline;
}
.contact-info p {
	font-size: 16px;
	line-height: 23px;
}
.contact-info i {
	font-size: 30px;
	line-height: 37px;
}
.mail-box {
	position: absolute;
	width: 480px;
	padding-top: 30px;
	padding-bottom: 30px;
}
.mail-box input {
	width: 70%;
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 21px;
	padding: 8px 3%;
	border: none;
	border-bottom: 2px solid;
}
.mail-box textarea {
	width: 70%;
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 21px;
	padding: 8px 3%;
	border: none;
	border-bottom: 2px solid;
}
.mail-box button {
	padding: 8px 25px;
	margin-top: 24px;
	border-radius: 0px;
	font-size: 16px;
	line-height: 23px;
	text-transform: uppercase;
	transition: all .3s ease-in !important;
	-moz-transition: all .3s ease-in !important;
	-webkit-transition: all .3s ease-in !important;
	-o-transition: all .3s ease-in !important;
}
.alert-danger, .alert-error {
    padding: 5px 8px;
    border-radius: 0px;
    font-size: 16px;
    line-height: 23px;
    text-shadow:none;
    text-align: center;
    width: 100%;
}
.display-none{
	display: none;
}
.display-visible{
	display: block !important;
}
::-webkit-input-placeholder { /* WebKit browsers */
    opacity: 1;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    opacity: 1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    opacity: 1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    opacity: 1;
}


/*--------------------------------------------------------------------------------*/
								/* Twitter */
/*--------------------------------------------------------------------------------*/

.twitter ul{
	list-style: none;
	padding-left: 0px;
}
.twitter-image{
	width: 30px;
	height: 30px;
    border-radius: 50%;
    display: inline-block;
}
.twitter-image i{
	font-size: 20px;
	line-height: 30px;
	padding-left: 2px;
}
.twitter-handle{
	margin: 10px 0px;
}
.tweet_text, .tweet_time{
	font-size: 16px;
	line-height: 23px;
}


/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 05 - FOOTER */
/*-------------------------------------------------------------------------------------------------------------------------------*/


.to-top{
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 100;
	display: none;
}
.to-top a{
	width: 40px;
	height: 40px;
	background: transparent;
	display: inline-block;
	-webkit-transition: all .5s ease;
	   -moz-transition: all .5s ease;
		-ms-transition: all .5s ease;
		 -o-transition: all .5s ease;
			transition: all .5s ease;
}
.to-top a i{
	font-size: 24px;
	line-height: 24px;
	position: relative;
	left: 50%;
	top: 50%;
	-moz-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.footer{
	padding-top: 100px;
	padding-bottom: 100px;
}
.footer .footer-icons a{
	display: inline-block;
	margin: 5px;
	margin-bottom: 0px;
	padding: 7px;
	height: 35px;
	width: 35px;
	border-radius: 50%;
	cursor: pointer;
  	-moz-transition: .5s all;
   	 -o-transition: .5s all;
		webkit-transition: .5s all;
			transition: .5s all;
}
.footer .footer-icons a {
	display: inline-block;
}
.footer .footer-icons a i {
	font-size: 20px;
	line-height: 20px;
    transition: .5s all .2s;
    -moz-transition: .5s all .2s;
    -o-transition: .5s all .2s;
    -webkit-transition: .5s all .2s;	
}
.footer .social-text h3 {
	font-size: 18px;
	line-height: 25px;
	margin: 0px !important;
}
.footer .social-text p {
	font-size: 12px;
	line-height: 19px;
	margin: 0px !important;
	margin-top: 5px;
}
.pad-special{
	padding-top: 125px;
	padding-bottom: 125px;
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 06 - INNER PAGE LAYOUTS*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
.inner-page-navigation{
	margin-bottom: 50px;
	padding: 5px 0px;
	border-bottom: 1px solid;
}
.inner-page-navigation a{
	margin-right: 25px;
	-webkit-transition: all .5s ease-in-out;
	   -moz-transition: all .5s ease-in-out;
		-ms-transition: all .5s ease-in-out;
		 -o-transition: all .5s ease-in-out;
			transition: all .5s ease-in-out;
}
.inner-page-navigation a:first-child span{
	margin-right: 10px;
}
.inner-page-navigation a:last-child span{
	margin-left: 10px;
}
.inner-page-content-info{
	padding: 20px 0px;
	border-top: 1px solid;
	border-bottom: 1px solid;	
	margin-top: 50px;
	margin-bottom: 60px;
}
.inner-page-content-info a{
	-webkit-transition: all .5s ease-in-out;
	   -moz-transition: all .5s ease-in-out;
		-ms-transition: all .5s ease-in-out;
		 -o-transition: all .5s ease-in-out;
			transition: all .5s ease-in-out;
}
.inner-page-content-info span{
	margin-right: 10px;
}
.inner-page-content-info .social-icons a{
	font-size: 20px;
	line-height: 27px;
}
.inner-page-content-info .social-icons h4{
	display: inline;
	margin-right: 5px;
}
/*--------------------------------------------------------------------------------*/
								/* Error Page */
/*--------------------------------------------------------------------------------*/
.error-home{
	background: url('../images/error-bg.jpg') 50% 0 no-repeat fixed;
	background-size: cover;
}
.error-overlay{
	width: 50%;
	float: right;
}
.error-overlay h1{
	font-size: 100px;
	line-height: 107px;
}
.error-overlay p{
	font-size: 20px;
	line-height: 27px;
}

/*--------------------------------------------------------------------------------*/
								/* Thanks Page */
/*--------------------------------------------------------------------------------*/
.thanks-home{
	background: url('../images/thanks-bg.jpg') 50% 0 no-repeat fixed;
	background-size: cover;
}
.thanks-overlay{
	width: 50%;
	float: left;
}
.thanks-overlay h1{
	font-size: 100px;
	line-height: 107px;
}
.thanks-overlay p{
	font-size: 20px;
	line-height: 27px;
}

/*--------------------------------------------------------------------------------*/
								/* Blog Post Page */
/*--------------------------------------------------------------------------------*/

.blog-post-home{
	padding-bottom: 30px;
}
.blog-post-home h1{
	text-transform: uppercase;
}
.blog-post{
	margin-top: 90px;
}
.blog-post-content{
	margin-right: 20px;
}
.blog-post-content .blog-item-text{
	margin-top: 50px;
}
.blog-post-content .blog-item-text p{
	margin-bottom: 30px;
}
.blog-post-content .blog-item-text h5{
	font-size: 25px;
	line-height: 32px;
}
.featured-content-block{
	margin-bottom: 35px;
}
.blog-link-post .pad-normal {
	padding: 30px 0px;
}
.blog-quote-post .pad-normal {
	padding: 60px 0px;
}
span.zoom-image{ display: inline-block; overflow: hidden; max-width: 100%}
p.featured-quote{
	padding: 40px;

}
.post-slide-image{
	height: auto;
	max-width: 100%;
}
.sidebar ::-webkit-input-placeholder { /* WebKit browsers */
    color:#222;
    text-transform: uppercase;
}
.sidebar :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:#222;
    text-transform: uppercase;
}
.sidebar ::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:#222;
    text-transform: uppercase;
}
.sidebar :-ms-input-placeholder { /* Internet Explorer 10+ */
    color:#222;
    text-transform: uppercase;
}
.blog-category a{
	-webkit-transition: all .5s ease-in-out;
	   -moz-transition: all .5s ease-in-out;
		-ms-transition: all .5s ease-in-out;
		 -o-transition: all .5s ease-in-out;
			transition: all .5s ease-in-out;
}
.blog-category h4{
	font-size: 15px;
	line-height: 22px;
}
.blog-category ul{
	padding-left: 0px;
}
.blog-comments-list h3{
	border-bottom: 2px solid;
	display: inline-block;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.blog-comments-list ul{
	padding-left: 0px;
}
.comments li:last-child .panel{
	/*border-bottom: 0px;*/
	margin-bottom:0px;
}
.comments ul li.comment .panel{
	box-shadow: none;
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-radius: 0px;
	border-bottom: 1px solid #222;
}
.blog-comments-list ul li p{
	padding-top: 10px;
}
.blog-comments-list ul li:nth-child(2){
	padding-left: 100px;
}
.blog-comments-list ul li:last-child{
	border-bottom: none;
	padding-bottom: 0px;
}
ul.commentlists .comment{
	list-style: none;
}
.comments > ul{
	margin-left: 0;
	padding-left: 0;
}
.avatarbox{
	float: left;
	margin-right: 2%;
	display: inline-block;
}
.blog-comment-image img{
	width: 80px;
	height: 80px;
	float: left;
}
.cmntbox{
	font-size: 12px;
	line-height: 19px;
	display: inline-block;
	text-align: left;
}
.cmntbox h4{
	margin-right: 35px;
	margin-bottom: 15px;
	display: inline-block;
}
.cmntbox .comment-reply-link{
	font-style: italic;
	display: inline-block;
	margin-top: 15px;
}
.blog-comment-spec a{
	font-style: italic;
	-webkit-transition: all .5s ease-in-out;
	   -moz-transition: all .5s ease-in-out;
		-ms-transition: all .5s ease-in-out;
		 -o-transition: all .5s ease-in-out;
			transition: all .5s ease-in-out;
}
/*.comment-form{
	margin: 60px 0px;
}*/
.comment-form h3{
	border-bottom: 2px solid;
	display: inline-block;
	text-transform: uppercase;
}
.comment-form form{
	margin-top: 50px;
}
.comment-form input[type="text"]{
	width: 100%;
	height: 30px;
	margin-bottom: 20px;
	border: none;
	border-bottom: #222 solid 2px;
	background: transparent;
}
.comment-form textarea{
	width: 100%;
	height: 150px;
	border: none;
	border-bottom: #222 solid 2px;
	background: transparent !important;
}
.comment-form ::-webkit-input-placeholder { /* WebKit browsers */
    color: #222;
}
.comment-form :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #222;
}
.comment-form ::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #222;
}
.comment-form :-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #222;
}
p.form-submit{
	margin-top: 30px;
}
.comment-form .alert-error{
	width: auto;
	text-align: left;
	margin: 20px 0px;
}
.sidebar{
	margin-bottom: 100px;
}
.sidebar .search{
	position: relative;
}
.sidebar .search input{
	width: 100%;
	height: 30px;
	border: 1px solid;
	margin-bottom: 30px;
}
.sidebar .search button{
	height: 35px;
	width: 32px;
	display: inline-block;
	position: absolute;
	right: 0px;
	top: -2px;
	border: 0px;
	background: transparent;
}
.sidebar .search button span{
	font-size: 19px;
	line-height: 26px;
}
.sidebar > ul{
	list-style: none !important;
	padding-left: 0px;
	margin-left: 0px;
	text-align: left;
}
.sidebar .categories ul{
	text-align: left;
	list-style: none;
	margin-left: 0px;
	padding-left: 0px;
}
.sidebar .categories ul ul{
	margin-left: 25px;
	margin-top: 15px;
}
.blog-type-list ul li{
	margin-bottom: 15px;
}
.blog-type-list ul li a{
	display: block;
	padding-bottom: 15px;
	border-bottom:#DDD solid 1px;
	-webkit-transition: all .5s ease-in-out;
	   -moz-transition: all .5s ease-in-out;
		-ms-transition: all .5s ease-in-out;
		 -o-transition: all .5s ease-in-out;
			transition: all .5s ease-in-out;
}
.sidebar h4{
	display: inline-block;
	border-bottom: 2px solid;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.recent-posts{
	margin-top: 30px;
}
.recent-posts .blog-item-text{
	padding: 0px;
	margin-bottom: 65px;
}
.recent-posts .blog-item-text h6{
	margin-bottom: 10px;
}
.recent-posts .blog-item-text p{
	margin-bottom: 0px;
}
.recent-posts .blog-item-text a{
	float: right;
	font-style: italic;
	-webkit-transition: all .5s ease-in-out;
	   -moz-transition: all .5s ease-in-out;
		-ms-transition: all .5s ease-in-out;
		 -o-transition: all .5s ease-in-out;
			transition: all .5s ease-in-out;
}

/*--------------------------------------------------------------------------------*/
								/* Blog Page */
/*--------------------------------------------------------------------------------*/

.item iframe{
	width: 100%;
	border: 0px;
	min-height: 270px;
	margin-bottom: -4px;
}
.blog-page1{
	
}
.blog-page1 .item iframe{
	width: 100%;
	min-height: 250px;
	margin-bottom: -5px;
	border: 0px;
}
.blog-page1 .blog-item-text{
	position: relative;
	text-align: left;
	padding: 35px;
}
.blog-image-slider.flexslider{
	margin: 0px;
	border: 0px;
	border-radius: 0px; 
	box-shadow: 0px; 
	zoom: 1; 
  }  
.flex-control-nav{
    background: transparent;
    bottom: -35px;
    display: block !important;
    opacity: 1;
    padding: 0px;
    position: absolute;
    width: 100%;
    z-index: 99 !important;
    transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;	
}

.flex-direction-nav a{
	height: 25px;
	width: 25px;
	margin: 0px;
	box-shadow: none;
}

.blog-image-slider .flex-control-nav{
	bottom: 30px !important;
}

.flex-direction-nav .flex-prev{
	left: -5px;
}
.flex-direction-nav .flex-next{
	right: -5px;
}
.flexslider:hover .flex-prev{
	opacity: 1;
}
.flexslider:hover .flex-next{
	opacity: 1;		
}
.flex-direction-nav a:before{
	font-size: 20px;
	font-family: 'FontAwesome';
	content: '\f060' !important;
}
.flex-direction-nav a.flex-next:before{
	font-size: 20px;
	font-family: 'FontAwesome';
	content: '\f061' !important;
}

/*--------------------------------------------------------------------------------*/
								/* Project Page */
/*--------------------------------------------------------------------------------*/

.project-home{
	background: url('../images/project/bg.jpg');
	background-size: cover;
	padding-top: 170px;
	padding-bottom: 100px;
}
.project-home h1{
	text-transform: uppercase;
}
.project-content{
	margin-top: 90px;
}
.project-content h3{
	font-size: 25px;
	line-height: 32px;
	margin-bottom: 20px;
	text-transform: uppercase;
	display: inline-block;
}
.project-text-content{
	margin-top: 70px;
}
.project-text-content p{
	font-size: 14px;
	line-height: 21px;
	margin-bottom: 25px;
}
.project-details{
	margin-top: 70px;
}
.project-details h3{
	font-size: 17px;
	line-height: 24px;
	margin-bottom: 5px;
}
.project-details p span{
	font-size: 14px;
	line-height: 21px;
}
.projects-slider-item{
	margin: 0px 10px;
}
.related-projects h3{
	text-transform: uppercase;
}
.related-projects-slider{
	margin-top: 40px;
	margin-bottom: 100px;
}
.related-projects-slider.owl-theme .owl-controls{
	margin-top: 0px;
	border-radius: 0;
}
.related-projects-slider.owl-theme .owl-controls .owl-buttons div{
	position: absolute;
	margin: 10px;
	opacity: .8;
	border-radius: 0%;
}
.related-projects-slider.owl-theme .owl-controls .owl-buttons .owl-prev{
	left: 0px;
}
.related-projects-slider.owl-theme .owl-controls .owl-buttons .owl-next{
	right: 0px;
}
