/*------------------------------------------------------------------
[Master Stylesheet]

Project:	Aliboba
Version:	1.0
Last change:	25/05/14
Assigned to:	Alexey Shestakov
Primary use:	Photography 

[Table of contents]

1. Body
2. Header / .header
	3. Logo / .logo
	4. Navigation / .main-navi
5. Big Slider / .home
6. About / .about
7. Skills Block / .skills
8. Portfolio / .portfolio
9. Clients / .clients
10. Clients Say / .clients-say
11. Facts / .facts
12. Features / .features
13. Instagram / .instagram
14. Contact / .contact
15. Footer / .footer
-------------------------------------------------------------------*/

*{
	margin: 0;
	padding: 0;
}
html{	
	margin: 0 !important;
}
body{
	font-family: 'Ubuntu';
	font-size: 14px;
	color: #333;
}
li{
	list-style: none;
}
/*------  LINK STYLE  ------*/
a,
a:hover,
a:focus,
a:active{
	text-decoration: none;
	color: #333;

    -moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
/*------  //LINK STYLE  ------*/

/*------  TEXT STYLE  ------*/
p{
	font-size: 16px;
	color: #666;
	margin-bottom: 7px;
	line-height: 24px;
}
p.big{
	font-size: 26px;
	line-height: 32px;
	color: #333;
	text-transform: none;
	margin: 0;
	font-weight: normal;
	margin-bottom: 17px;
}
p.center{
	text-align: center;
}
p.mini{
	font-size: 14px;
	line-height: 24px;
}
/*------  //TEXT STYLE  ------*/

/*------  FORM STYLE  ------*/
input[type="text"]{
	border: none;
	box-shadow: inset 0 0 0 1px #333;
	background: none;
	height: 40px;
	line-height: 38px;
	padding: 0 10px;
	width: 100%;
	margin-bottom: 30px;
	color: #333;

    -moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
input[type="text"].error{
	box-shadow: inset 0 0 0 2px #D00000;
	color: #fff;
}
textarea:focus,
input[type="text"]:focus{
	box-shadow: inset 0 0 0 2px #fff;
	color: #fff;
}
textarea{
	border: none;
	box-shadow: inset 0 0 0 1px #333;
	background: none;
	width: 100%;
	height: 110px;
	padding: 10px;
	margin-bottom: 30px;
	color: #333;

    -moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
/*------  //FORM STYLE  ------*/
/*------  PRELOADER  ------*/
#preloader{
	position: fixed;
	top: 50%;
	left: 50%;
	margin: -16px 0 0 -16px;
}
.page-wrapper{
	opacity: 0;
}
/*------  //PRELOADER  ------*/

/*------  BUTTON  ------*/
.button{
	width: 170px;
	height: 50px;
	line-height: 50px;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	display: inline-block;
	position: relative;
	color: #fff;
	box-shadow: inset 0 0 0 2px #fff;
}
.button:hover{
	background: #fff;
}
.button:active{
	color: #fff;
}
.button[data-style="move-up"] {
    backface-visibility: hidden;
    overflow: visible;
    padding: 0;
    box-shadow: none;
    background: none !important;
}
.button[data-style="move-up"] .progress {
    height: 10px;
    left: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #000;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
}
.button[data-style="move-up"]:hover .content{
	background: #fff;
	color: #333;
}
.button[data-style="move-up"] .content{
	background: rgba(0,0,0,0);
	position: absolute;
	color: #fff;
	z-index: 5;
	width: 100%;
	left: 0;
	top: 0;
	height: 50px;
	box-shadow: inset 0 0 0 2px #fff;

    -moz-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);

    -moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.button[data-style="move-up"] .content.error{
	background: #d00000;
}
.button[data-style="move-up"] .content.success{
	background: #46c838;
}
.button[data-horizontal] .progress-inner {
    height: 10px;
    bottom: 0;
    width: 0;
    left: 0;
    position: absolute;
    background: #fff;

    -moz-transition: all 0s linear 0.3s;
	-webkit-transition: all 0s linear 0.3s;
	-o-transition: all 0s linear 0.3s;
	-ms-transition: all 0s linear 0.3s;
	transition: all 0s linear 0.3s;
}
.button.state-loading[data-horizontal] .progress-inner{
	width: 100%;

    -moz-transition: all 2s linear;
	-webkit-transition: all 2s linear;
	-o-transition: all 2s linear;
	-ms-transition: all 2s linear;
	transition: all 2s linear;
}
.button.state-loading[data-style="move-up"] .content {
    -moz-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}
/*------  //BUTTON  ------*/

/*------  HEADER  ------*/
.header{
	position: fixed;
	z-index: 10;
	width: 100%;
	top: 0;
	left: 0;

    -moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
/*------  LOGO STYLE  ------*/
.logo{
	font-size: 26px;
	font-weight: bold;
	line-height: 140px;
	text-transform: uppercase;
	letter-spacing: 14px;
	color: #fff;
}	
.header.animate{
	background: #202020;
} 
	.animate .main-navi a,
	.animate .logo{
		line-height: 80px;
		color: #ccc;
	}
	.logo > img {
	    position: relative;
	    top: -3px;
	}
	.logo em {
	    font-size: 34px;
	    letter-spacing: 0;
	    margin: 0 -14px 0 -28px;
	    position: relative;
	    top: 2px;
	}
	.logo:hover{
		color: #fff;
	}
/*------  //LOGO STYLE  ------*/

/*------  NAVI STYLE  ------*/
.main-navi a{
	font-size: 13px;
	font-weight: bold;
	line-height: 140px;
	text-transform: uppercase;
	margin-left: 33px;
	color: #fff;
}
.animate .main-navi a:hover,
.main-navi a.active,
.main-navi a:hover{
	color: #fff;
}
.mobile-menu{
	display: none;
	float: right;
    font-size: 40px;
    line-height: 80px;
    color: #ccc;

    -moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.mobile-menu:hover{
	color: #fff;
}
/*------  //NAVI STYLE  ------*/
/*------  //HEADER  ------*/

/*------  HOME SLIDER  ------*/
.home{
	overflow: hidden;
}
	.home .slides {
	    display: inline-block;
	    width: 100%;
	}
	.home .flexslider{
		overflow: hidden;
	}
	.big{
		font-size: 130px;
		font-weight: bold;
		line-height: 130px;
		text-transform: uppercase;
		margin: 6px -10px;
		color: #fff;
	}
	.middle{
		font-size: 80px;
		font-weight: bold;
		line-height: 80px;
		text-transform: uppercase;	
		color: #fff;	
	}
	.small{
		font-size: 28px;
		font-weight: 200;
		text-transform: uppercase;
		letter-spacing: 16px;
		color: #fff;
	}
.home .flexslider .slides img{
	background-position: center 0;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
}
.home .flexslider .slides img.parallax{
	background-attachment: fixed;
}
.flexslider.video img {
    background: none !important;
}
/*------  VIDEO STYLE  ------*/
#video_player {
    bottom: 0;
    height: auto;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    right: 0;
    width: auto;
}
/*------  //VIDEO STYLE  ------*/
.slider-text-wrapper{
	position: absolute;
	width: 100%;
	height: 250px;
	top: 50%;
	left: 0;
	margin-top: -125px;
	text-align: center;
}
	.slider-text-wrapper .button{
		margin-top: 60px;
	}
.flex-control-nav{
	bottom: 40px;
	z-index: 2;
	position: absolute;
	width: 100%;
	text-align: center;
}
.flex-control-nav li{
	display: inline-block;
}
.flex-control-paging li a{
	width: 6px;
	height: 6px;
	box-shadow: none;
	background: #fff;
	display: inline-block;
	text-indent: -9999px;
	border-radius: 50%;
	margin: 0 6px;
	cursor: pointer;
}
.flex-control-paging li a.flex-active{
	background: #18263a;
}
/*------  //HOME SLIDER  ------*/

/*------  TITLE  ------*/
.title{
	text-align: center;
	width: 70%;
	position: relative;
	left: 15%;
	margin-bottom: 80px;
}
	.title.white h2{
		color: #fff;
	}
	.title h2{
		font-size: 28px;
		text-transform: uppercase;
		font-weight: 200;
		letter-spacing: 16px;
		position: relative;
		margin-top: 80px;
		margin-bottom: 20px;
	}
	.title h2.border{
		padding-bottom: 36px;
		margin-bottom: 32px;		
	}
	.title h2.border:after{
		content: "";
		position: absolute;
		width: 130px;
		height: 2px;
		left: 50%;
		bottom: 0;
		margin-left: -65px;
		background: #333;
	}
/*------  //TITLE  ------*/

/*------  SKILLS  ------*/
.skills-block{
	border: 1px solid #e0e0e0;
	border-right: none;
	height: 400px;
	overflow: hidden;
	text-align: center;
	line-height: 380px;
	padding: 0 50px;
	opacity: 0;
}
.skills-wrapper{
	height: 150px;
	display: inline-block;
	width: 100%;
	line-height: 1;
	vertical-align: middle;
}
.clients-say .skills-wrapper{
	height: 175px;
}
.clients-say .skills-block{
	width: 100%;
}
	.skills-wrapper img{
		margin-bottom: 27px;

	    -moz-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);

	    -moz-transition: all 0.2s linear;
		-webkit-transition: all 0.2s linear;
		-o-transition: all 0.2s linear;
		-ms-transition: all 0.2s linear;
		transition: all 0.2s linear;
	}
	.skills-block:hover img{
		margin-bottom: 0;

		-moz-transform: scale(0, 0);
        -webkit-transform: scale(0, 0);
        -o-transform: scale(0, 0);
        -ms-transform: scale(0, 0);
        transform: scale(0, 0);
	}
	.skills-wrapper .position{
		font-size: 12px;
		color: #666;
		margin-top: 10px;
		position: relative;
		top: 0;

	    -moz-transition: all 0.3s linear;
		-webkit-transition: all 0.3s linear;
		-o-transition: all 0.3s linear;
		-ms-transition: all 0.3s linear;
		transition: all 0.3s linear;
	}
	.skills-block:hover .position{
		top: -100px;
	}
	.skills-wrapper em{
		display: block;
		text-align: center;
		font-size: 70px;
		line-height: 70px;
		color: #ccc;
		margin-bottom: 40px;

	    -moz-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);

	    -moz-transition: all 0.2s linear;
		-webkit-transition: all 0.2s linear;
		-o-transition: all 0.2s linear;
		-ms-transition: all 0.2s linear;
		transition: all 0.2s linear;

	}
	.skills-block:hover em{
	    -moz-transform: scale(0, 0);
        -webkit-transform: scale(0, 0);
        -o-transform: scale(0, 0);
        -ms-transform: scale(0, 0);
        transform: scale(0, 0);

	}
	.skills-wrapper .name{
		font-size: 13px;
		font-weight: bold;
		line-height: 15px;
		text-transform: uppercase;
		display: inline-block;
		width: 130px;
		top: 0;
		position: relative;

	    -moz-transition: all 0.3s linear;
		-webkit-transition: all 0.3s linear;
		-o-transition: all 0.3s linear;
		-ms-transition: all 0.3s linear;
		transition: all 0.3s linear;
	}
	.skills-block:hover .name{
		top: -100px;
	}
	.skills-wrapper p{
		margin-top: 36px;
		opacity: 0;
		top: 0;
		position: relative;

	    -moz-transition: all 0.3s linear;
		-webkit-transition: all 0.3s linear;
		-o-transition: all 0.3s linear;
		-ms-transition: all 0.3s linear;
		transition: all 0.3s linear;
	}
	.skills-block:hover p{
		opacity: 1;
		top: -100px;
	}
.flexslider {
    position: relative;
}
.flex-prev {
    color: #333;
    font-size: 40px;
    height: 40px;
    left: 0;
    margin-top: -20px;
    position: absolute;
    top: 50%;
    width: 40px;
    z-index: 2;
}
.flex-next {
    color: #333;
    font-size: 40px;
    height: 40px;
    right: 0;
    margin-top: -20px;
    position: absolute;
    top: 50%;
    width: 40px;
    z-index: 2;
}
.home .flex-prev,
.home .flex-next{
	color: #fff;
	transition: none;
}
.clients-say .flex-control-nav{
	display: none;
}
/*------  //SKILLS  ------*/

/*------  PORTFOLIO  ------*/
.portfolio {
    overflow: hidden;
}
.details-work-wrapper {
    height: 0;
    overflow: hidden;
    position: relative;
}
/*------  WORK STYLE  ------*/
.work{
	height: 540px;
	background-position: center;
	background-size: cover;
	position: relative;
}
	.work .big{
		margin-left: 0;
	}
	.work img{
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		opacity: 0;		

	    -moz-transition: all 0.3s linear;
		-webkit-transition: all 0.3s linear;
		-o-transition: all 0.3s linear;
		-ms-transition: all 0.3s linear;
		transition: all 0.3s linear;
	}
	.work .container{
		height: 540px;
		position: relative;
		z-index: 1;
	}
	.work .button{
		margin-top: 35px;
	}
/*------  //WORK STYLE  ------*/

/*------  WORK DETAILS STYLE  ------*/
.work-wrapper:hover .work img{
	opacity: 1;
}
.work-wrapper .work.active img,
.work-wrapper:hover .work:hover img{
	opacity: 0;
}
.work-text{
	height: 270px;
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	margin-top: -135px;
}
.details-work{
	overflow: hidden;

    -moz-transition: all 0.7s linear;
	-webkit-transition: all 0.7s linear;
	-o-transition: all 0.7s linear;
	-ms-transition: all 0.7s linear;
	transition: all 0.7s linear;
}

.work-item{
	width: 20%;
	float: left;
	overflow: hidden;
}
.work-item.wide{
	width: 40%;
}
	.work-item img{
		width: 100.6%;
		height: auto;
		top: 0;
		position: relative;

	    -moz-transition: all 0.2s linear;
		-webkit-transition: all 0.2s linear;
		-o-transition: all 0.2s linear;
		-ms-transition: all 0.2s linear;
		transition: all 0.2s linear;
	}
	.work-item:hover img{
		top: -43px;

	    -moz-transition: all 0.3s linear 0.1s;
		-webkit-transition: all 0.3s linear 0.1s;
		-o-transition: all 0.3s linear 0.1s;
		-ms-transition: all 0.3s linear 0.1s;
		transition: all 0.3s linear 0.1s;
	}
	}
	.work-item .work-info {
	    color: #fff;
	    height: 100%;
	    left: 0;
	    opacity: 0;
	    padding: 0 20px;
	    position: absolute;
	    top: 0;
	    width: 100%;
	}
	.work-item .work-info{
		opacity: 1;
	}
	.work-item .work-info a {
	    border-radius: 2px;
	    color: #fff;
	    font-size: 12px;
	    margin: 5px;
	    padding: 9px 15px;
	    background-color: rgba(0, 0, 0, 0);
	    display: block;
	    height: 100%;
	    left: 0;
	    position: absolute;
	    top: 0;
	    width: 100%;
	    z-index: 40;
	}
	.work-item .bottom-meta {
	    bottom: -92px;
	    left: 0;
	    padding: 20px 20px 16px;
	    position: absolute;
	    width: 100%;
	    background-color: #fff;

	    -moz-transition: all 0.3s linear;
		-webkit-transition: all 0.3s linear;
		-o-transition: all 0.3s linear;
		-ms-transition: all 0.3s linear;
		transition: all 0.3s linear;
	}
	.work-item:hover .bottom-meta{
		bottom: 0;
	}
	.work-item h3 {
	    color: #333;
	    margin: 0;
	    position: relative;
	    top: 0;
	    font-size: 14px;
	    font-weight: 900;
	    line-height: 13px;
	    text-transform: uppercase;
	}
	.work-item p {
	    color: #999;
	    font-size: 12px;
	    margin-top: 6px;
	    margin-bottom: 3px;
	    line-height: 12px;
	}
/*------  //WORK DETAILS STYLE  ------*/

/*------  WORK BUTTON STYLE  ------*/
.portfolio .button[data-style="move-up"] .progress{
	background: none;
}
.work.active .button[data-style="move-up"] .content{
	background: #fff;
    color: #333;
}
.contact .button[data-style="move-up"] .content{
	background: #202020;
}
.contact .button[data-style="move-up"]:hover .content{
	background: #fff;
}
/*------  //WORK BUTTON STYLE  ------*/
/*------  //PORTFOLIO  ------*/

/*------  CLIENTS  ------*/
.clients{
	background: #f5f5f5;
	padding-bottom: 80px;
	overflow: hidden;
}
    .clients img{
    	width: 100%;
    }		
.clients-block{
	height: 175px;
	line-height: 175px;
	text-align: center;
	border-top: 1px solid #e0e0e0;
	border-right: 1px solid #e0e0e0;
	opacity: 0.5;

    -moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.clients-block:nth-child(4n){
	border-right: none;
}
.clients-block:nth-child(1),
.clients-block:nth-child(2),
.clients-block:nth-child(3),
.clients-block:nth-child(4){
	border-top: none;
}
.clients-block:hover{
	opacity: 1 !important;
}
.clients-say .name{
	width: 100%;
}

/*------  //CLIENTS  ------*/


/*------  CONTACT  ------*/
.contact{
	background: #202020;
	margin-top: 80px;
	text-align: center;
	position: relative;
}
/*------  //CONTACT  ------*/

/*------  FOOTER  ------*/
.footer{
	background: #202020;	
	text-align: center;
	padding: 80px 0;
}
	.footer a{
		font-size: 22px;
		line-height: 22px;
		margin: 0 40px 40px;
		color: #474747;
	}
	.footer a:hover{
		color: #fff;
	}
	.footer p{
		font-size: 13px;
		font-weight: 200;
		color: #474747;
	}
/*------  //FOOTER  ------*/


/*------  FACTS  ------*/
.facts{
	height: 540px;
	text-align: center;
	background-size: cover;
	margin-top: 80px;
	background-position: center;
	position: relative;
	overflow: hidden;
}
.facts.parallax2{
	background-attachment: fixed;
}
	#facts > video{
		position: absolute;
		width: 100%;
		top: -25%;
		left: 0;
		z-index: -1;
	}
	.facts .title{
		color: #fff;
	}
.facts-block em{
	font-size: 70px;
	line-height: 70px;
	color: #fff;
	margin-top: 43px;
	margin-bottom: 25px;
}
.facts-block .amount{
	font-size: 60px;
	font-weight: bold;
	color: #fff;
	line-height: 60px;
	margin-bottom: 7px;
}
.facts-block .name{
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
}
/*------  //FACTS  ------*/


/*------  BLOG  ------*/
.post-block{
	padding: 0;
	width: 25%;
	float: left;
}
	.post-block div{
		padding: 30px 30px 20px;
		border: 1px solid #e0e0e0;
		border-right: 0;
		border-top: none;
	}
	.post-block div:nth-child(1),
	.post-block div:nth-child(2),
	.post-block div:nth-child(3),
	.post-block div:nth-child(4){
		border-top: 1px solid #e0e0e0;
	}
	.post-block div a:first-child{
		position: relative;
		display: block;
		background: #18263A;
	}
	.post-block div em{
		opacity: 1;
		position: absolute;
		font-size: 40px;
		line-height: 50px;
		text-align: center;
		width: 50px;
		height: 50px;
		right: 10px;
		bottom: 10px;
		color: #fff;
		opacity: 0;
		background: url(../images/icons/zoom.png) no-repeat center center;

	    -moz-transition: all 0.3s linear;
		-webkit-transition: all 0.3s linear;
		-o-transition: all 0.3s linear;
		-ms-transition: all 0.3s linear;
		transition: all 0.3s linear;
	}
	.post-block:hover div em{
		opacity: 1;
	}
	.post-block img{
		width: 100%;
		opacity: 0.6;

	    -moz-transition: all 0.3s linear;
		-webkit-transition: all 0.3s linear;
		-o-transition: all 0.3s linear;
		-ms-transition: all 0.3s linear;
		transition: all 0.3s linear;
	}
	.post-block:hover img{
		opacity: 1;
	}
	.post-block .name{
		font-size: 13px;
		font-weight: bold;
		line-height: 13px;
		color: #333;
		text-transform: uppercase;
		margin-top: 18px;
		margin-bottom: 5px;
		display: block;
	}
	.post-block:hover .name{
		color: #999;
	}
	.post-block .date{
		font-size: 12px;
		color: #666;
		line-height: 12px;
	}
	.post-block .comments{
		font-size: 12px;
		color: #999;
		line-height: 12px;
	}
	.post-block .comments:before{
		content: "/";
		margin: 0 5px 0 3px;
	}
/*------  //BLOG  ------*/
#ascrail2000-hr{
	display: none;
}
.move-top{
	width: 35px;
	height: 35px;
	line-height: 35px;
	font-size: 30px;
	color: #333;
	background: #fff;
	position: absolute;
	top: -17px;
	left: 50%;
	margin-left: -17px;

    -moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.move-top:hover{
	line-height: 25px;
}
/*------  INSTAGRAM  ------*/
.instagram{
	margin-bottom: -80px;
}
.instagram-block{
	width: 12.5%;
	float: left;
	position: relative;
	background-color: #18263a;
	overflow: hidden;
	opacity: 0;
}
	.instagram-block img{
		width: 100%;
		opacity: 0.6;

		-moz-transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		transform: scale(1, 1);

	    -moz-transition: all 0.3s linear;
		-webkit-transition: all 0.3s linear;
		-o-transition: all 0.3s linear;
		-ms-transition: all 0.3s linear;
		transition: all 0.3s linear;
	}
	.instagram-block:hover img{
		opacity: 1;

		-moz-transform: scale(1.2, 1.2);
		-webkit-transform: scale(1.2, 1.2);
		-o-transform: scale(1.2, 1.2);
		-ms-transform: scale(1.2, 1.2);
		transform: scale(1.2, 1.2);
	}
	.instagram-block em{
		width: 40px;
		height: 40px;
		line-height: 40px;
		text-align: center;
		position: absolute;		
		top: 50%;
		left: 50%;
		margin: -20px 0 0 -20px;
		color: #fff;
		font-size: 40px;
		opacity: 0;
		background: url(../images/icons/zoom.png) no-repeat center center;

	    -moz-transition: all 0.3s linear;
		-webkit-transition: all 0.3s linear;
		-o-transition: all 0.3s linear;
		-ms-transition: all 0.3s linear;
		transition: all 0.3s linear;
	}
	.instagram-block:hover em{
		opacity: 1;
	}
/*------  //INSTAGRAM  ------*/

/*------  FEATURES  ------*/
.features{
	text-align: center;
}
	.features hr{
		margin-top: 0;
	}
	.features img{
		width: 100%;
		opacity: 0;
	}
/*------  FEATURES BLOCK  ------*/
.features-block{
	height: 290px;
	line-height: 290px;
	vertical-align: middle;
}
	.features-block div {
	    display: inline-block;
	    height: 150px;
	    line-height: 1;
	    vertical-align: middle;
	    width: 100%;
	}
	.features-block em{
		font-size: 70px;
		line-height: 70px;
		margin-bottom: 40px;
		color: #ccc;
		display: block;
		
	    -moz-transition: all 0.3s linear;
		-webkit-transition: all 0.3s linear;
		-o-transition: all 0.3s linear;
		-ms-transition: all 0.3s linear;
		transition: all 0.3s linear;
	}
	.features-block:hover em{
		color: #333;
	}
	.features-block .name {
	    display: inline-block;
	    font-size: 13px;
	    font-weight: bold;
	    line-height: 15px;
	    position: relative;
	    text-transform: uppercase;
	    top: 0;
	    width: 120px;
	}
/*------  //FEATURES BLOCK  ------*/
/*------  //FEATURES  ------*/


#contact form{
	opacity: 0;
}

@media (max-width: 1280px){
	.facts,
	.work .container,
	.work{
		height: 440px;
	}
	.facts-block{
		margin-top: -50px;
	}
}
@media (max-width: 1100px){
	.big{
		font-size: 110px;
		line-height: 110px;
	}
	.middle{
		font-size: 65px;
		line-height: 65px;
	}
	.small{
		font-size: 24px;
	}
	.skills-block:hover p,
	.skills-block:hover .position,
	.skills-block:hover .name {
	    top: -120px;
	}
	.work-item{
		width: 25%;
	}
	.work-item.wide{
		width: 50%;
	}
	p.mini{
		font-size: 12px;
		line-height: 20px;
	}
}
@media (max-width: 1000px){
	.header{
		height: 80px;
	}
	.main-navi {
	    float: none !important;
	    left: 0;
	    margin-top: 80px;
	    position: absolute;
	    top: -320px;
	    width: 100%;
	    z-index: -1;
	    background: #202020;

	    -moz-transition: all 0.3s linear;
		-webkit-transition: all 0.3s linear;
		-o-transition: all 0.3s linear;
		-ms-transition: all 0.3s linear;
		transition: all 0.3s linear;
	}
	.main-navi.animate{
		top: 0;
	}
	.main-navi a{
		display: block;
		line-height: 40px !important;
		text-align: right;
		padding-right: 50px;
	}
	.mobile-menu{
		display: block;
		cursor: pointer;
	}
}
@media (max-width: 800px){
	p{
		font-size: 15px;
	}
	p.big{
		font-size: 20px;
	}
	.big{
		font-size: 70px;
		line-height: 70px;
	}
	.middle{
		font-size: 40px;
		line-height: 40px;
	}
	.small{
		font-size: 18px;
		letter-spacing: 10px;
	}
	.clients-block:nth-child(3n) {
		border-right: medium none;
	}
	.clients-block:nth-child(4n) {
		border-right: 1px solid #E0E0E0;
	}
	.clients-block:nth-child(4){
		border-top: 1px solid #E0E0E0;
	}
	.facts-block {
	    margin-bottom: 70px;
	    margin-top: -70px;
	}
	.facts-block .amount,
	.facts-block em{
		font-size: 40px;
		line-height: 40px;
	}
	.facts-block em{
		margin-bottom: 10px;
    	margin-top: 23px;
	}
	.post-block{
		width: 50%;
	}
	.instagram-block{
		width: 25%;
	}
	.work-text{
		padding-left: 30px;
	}
	.title h2{
		font-size: 18px;
	}
	.footer a{
		margin: 0 20px 40px;
	}
	.logo{
		line-height: 80px;
	}
	.header {
	    background: #202020;
	}
	.clients-block,
	.work-item{
		width: 33.3334%;
	}
	.work-item.wide{
		width: 66.6667%;
	}
	.work .big{
		font-size: 90px;
		line-height: 90px;
	}
	.work-item img{
		width: 101%;
	}
	.facts-block{
		margin-top: 0;
		width: 25%;
	}
	.footer{
		padding-bottom: 30px;
	}
	.features-block{
		width: 33.3333%;
		float: left;
	}
}
@media (max-width: 800px) and (max-height: 600px){
	.flex-control-nav{
		bottom: 10px;
	}
	.slider-text-wrapper{
		margin-top: -90px;
	}
	.work-text{
		height: 194px;
		margin-top: -97px;
	}
}
@media (max-width: 640px){
	.features-block{
		width: 50%;
		float: left;
		height: 200px;
		line-height: 200px;
	}
	.facts-block{
		margin-top: -70px;
		margin-bottom: 80px;
	}
	.facts-block em {
	    font-size: 55px;
	    margin-bottom: 15px;
	    margin-top: 23px;
	}
	.work-item{
		width: 50%
	}
	.work-item.wide{
		width: 50%
	}
	.facts-block,
	.clients-block,
	.skills-block{
		width: 50%;
		float: left;
	}
	.title h2{
		letter-spacing: 12px;
	}
	.work .container, .work{
		height: 240px;
	}
	.work-text{
		height: 200px;
		margin-top: -100px;
	}
	.clients-block:nth-child(2n) {
		border-right: medium none;
	}
	.clients-block:nth-child(3n) {
		border-right: 1px solid #E0E0E0;
	}
	.clients-block:nth-child(3){
		border-top: 1px solid #E0E0E0;
	}
}
@media (max-width: 500px){
	.work .big{
		font-size: 60px;
		line-height: 60px;
	}
	.big{
		font-size: 50px;
		line-height: 50px;
	}
	.work-text {
	    height: 200px;
	    margin-top: -85px;
	}
	.middle{
		font-size: 30px;
		line-height: 30px;
	}
	.small{
		font-size: 14px;
		letter-spacing: 6px;
	}
	.title h2 {
	    letter-spacing: 5px;
	}
	.skills-block:hover p, 
	.skills-block:hover .position, 
	.skills-block:hover .name{
		top: -190px;
	}	
	.footer p{
		font-size: 12px;
	}
}
@media (max-width: 400px){
	.work .big,
	.big{
		font-size: 35px;
		line-height: 35px;
	}
	.middle{
		font-size: 18px;
		line-height: 18px;
	}
	.small{
		font-size: 12px;
		letter-spacing:4px;
	}
	.slider-text-wrapper{
		height: 190px;
		margin-top: -95px;
	}
	.title{
		width: 90%;
		left: 5%;
	}
	.work-item.wide,
	.work-item,
	.post-block,
	.clients-block,
	.skills-block{
		width: 100%;
	}
	.skills-block:hover p, 
	.skills-block:hover .position, 
	.skills-block:hover .name{
		top: -160px;
	}	
	.work-text {
	    height: 150px;
	    margin-top: -75px;
	}
	.facts-block .name{
		font-size: 11px;
	}
	.post-block .name{
		font-size: 12px;
		line-height: 12px;
		margin-bottom: 0;
	}
	.instagram-block{
		width: 50%;
	}
	.footer a {
	    margin: 0 10px 40px;
	}
	.title h2 {
	    font-size: 16px;
	}
}
@media (max-height: 360px){
	.slider-text-wrapper .button {
	    margin-top: 10px;
	}
}
@media (max-height: 320px){
	.header {
	    height: 50px;
	}
	.animate .logo,
	.mobile-menu,
	.logo {
	    line-height: 50px;
	}
	.main-navi{
		margin-top: 50px;
	}
	.slider-text-wrapper {
	    margin-top: -65px;
	}
	.slider-text-wrapper .button {
	    margin-top: 10px;
	}
	.flex-control-nav {
	    bottom: -10px;
	}
	.skills-block:hover p, 
	.skills-block:hover .position, 
	.skills-block:hover .name {
	    top: -140px;
	}
}
@media (max-width: 320px){
	.slider-text-wrapper {
	    height: 90px;
	    margin-top: -45px;
	}
	.home .flex-next,
	.home .flex-prev{
		top: 75%;
	}
	.skills-block:hover p, 
	.skills-block:hover .position, 
	.skills-block:hover .name{
		top: -100px;
	}
}