

@import url(http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic);

html, body {
	height: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
	font-family: "Lato",sans-serif;
	font-size: 15px;
	line-height: 1;
	font-weight: 400;
	border: none;
	color:#0040ff;
	position: relative; 
}

h1, h2, h3, h4, h5, h6 {
	text-transform:uppercase;
	 font-family: "Lato",sans-serif;
	color:#332F2F;
	margin-top:0;
}

p {
	font-size: 15px;
	font-weight:400;
	line-height: 24px;
	 font-family: "Lato",sans-serif;
	color:#6B767D;
	letter-spacing: 0.4px;
}

a{
	color:#ac6c20;
	background:none;
	text-decoration: none;
	outline: none;
}

a:hover,  a:active,  a:focus {
	color:#ac6c20;
	text-decoration: none;
	outline: none !important;

}

::selection {
	background:#ffc107;
	color:#FFF;
	z-index:999;
}

::-moz-selection{
	background:#ffc107;
	color:#FFF;
}

img{
	max-width:100%;
}


select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.form-control{
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    margin-bottom:20px;
    font-size: 15px;
    line-height: 25px;
    color: #FFF;
    height:46px;
	width:100%;
    vertical-align: middle;
	box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    background:transparent;
	border: 2px solid white;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.form-control:focus{
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
	border-color:#fff;/*#ffc107;*/
}


/*-----------------------------------------------------------------*/
/* Common Elements
/*-----------------------------------------------------------------*/

.btn-default {
	background:#ffc107;
	border: 1px solid #ffc107;
	padding:6px 14px;
	box-shadow:none;
	color: #FFF;
	font-size:13px;
	letter-spacing:2px;
	font-weight:700;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	border-radius: 0px;
	transition: all 700ms;
}

.btn-default:hover,.btn-default:active,.btn-default:focus{
	background:#FFF;
	border-color:#FFF;
	color:#656060;
	outline:none;
	box-shadow:none;
}

.btn-primary {
	background: transparent;
	border: 1px solid #DCE4E6;
	padding:6px 14px;
	box-shadow:none;
	color: #656060;
	font-size:13px;
	letter-spacing:2px;
	font-weight:700;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	border-radius: 0px;
	transition: all 700ms;
}

.btn-primary:hover,.btn-primary:active,.btn-primary:focus{
	background:#AC6C25;
	border-color:#AC6C25;
	color:#FFF;
	outline:none;
	box-shadow:none;
}

.btn-lg {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-sm {
	padding: 4px 10px 2px;
	font-size: 13px;
}

.btn-color-white{
	color:#FFF;
}
.btn-color-brown{
    color:#6a3e0a;
    border-color: #6a3e0a;
}

::-webkit-input-placeholder {
	color:#FFF !important;
	font-weight: 500;
	letter-spacing:1px;
}

:-moz-placeholder {
	color:#FFF !important;
	font-weight: 500;
	letter-spacing:1px;
}

::-moz-placeholder {
	color:#FFF !important;
	font-weight: 500;
	letter-spacing:1px;
}

:-ms-input-placeholder {
	color:#FFF !important;
	font-weight: 500;
	letter-spacing:1px;
}

.clear{
	clear:both;
}

.scrollup {
    width:35px;
    height:35px;
    position:fixed;
    bottom:30px;
    right:15px;
    display:none;
	background-color: #ac6c20;
	text-align: center;
	z-index:200;
}

.scrollup i{
	color:#fff;
	font-size:15px;
	display:block;
	line-height:33px;
}

.scrollup:hover{
	background: rgba(252,54,44,0.6);

}

 #main{
	width: 100%;
    height: 100%;
    display: block;
}

/* entire container, keeps perspective */
.flip-container {
	perspective: 1000px;
}
	/* flip the pane when hovered */
.flip-container:hover .flipper, .flip-container.hover .flipper {
		-webkit-transform: rotateY(180deg) ;
		-moz-transform: rotateY(180deg);
        -o-transform: rotateY(180deg);
		transform: rotateY(180deg);
}

/* flip speed goes here */
.flipper {
	transition: 0.6s;
	transform-style: preserve-3d;
	animation: rotate 20s  infinite;
	animation-delay: 2s;
	
	position: relative;
}
@keyframes rotate {
    25% {
        -webkit-transform: rotateY(180deg) ;
		-moz-transform: rotateY(180deg);
        -o-transform: rotateY(180deg);
        transform: rotateY(180deg);
	}
	
	50% {
	    -webkit-transform: rotateY(180deg) ;
		-moz-transform: rotateY(180deg);
        -o-transform: rotateY(180deg);
        transform: rotateY(180deg);
	}
	75% {
	    -webkit-transform: rotateY(360deg) ;
		-moz-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg);
	}
	100% {
	     -webkit-transform: rotateY(360deg) ;
		-moz-transform: rotateY(360deg);
        -o-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}
 hide back of pane during swap 
.front, .back {
	backface-visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
}

/* front pane, placed above back */
.front {
	z-index: 2;
	/* for firefox 31 */
	transform: rotateY(0deg);
}

/* back, initially hidden pane */
.back {
	transform: rotateY(180deg);
}
.section{
	padding:50px 0 20px;
	position:relative;
}


.section .container{
	position:relative;
	z-index:100;
}

.heading {
    margin-bottom: 30px;
}

.section-header {
	text-align: center;
	margin: 0 0 50px;
}

.section-header .smt {
	display: table;
	position: relative;
	margin: 0 auto;
	font-size:30px;
	padding: 0 42px;
	text-transform: uppercase;
}

.section-header .smt:before, .section-header .smt:after {
	display: inline-block;
	content: "";

	position: absolute;
	left: 0;
	top: 50%;
	width: 42px;
	margin-top: -1px;
}

.section-header .smt > span {
	display: block;
	padding: 30px 30px;
}

.section-header .smt:before, .section-header .smt:after {
	display: inline-block;
	content: "";

	position: absolute;
	left: 0;
	top: 50%;
	width: 42px;
	margin-top: -1px;
}

.section-header .smt:after {
	left: auto;
	right: 0;
}

.section-white .section-header h2{
	color:#FFF;
}

.section-white .section-header .smt:before, .section-white .section-header .smt:after {

}

.color-white{
	color:#fff !important;
}
/*
#pageloader {
	width: 100%;
    height: 100%;
    position: fixed;
	background-color:#FFF;
    z-index: 999999;
}

.loader {
	position: absolute;
	width: auto;
	height:auto;
	margin: -25px 0 0 -25px;
	top:50%;
	left:50%;
	text-align:center;
}
*/
.overlay {
	background: url('../images/parallax.jpg') repeat rgba(0, 0, 0, .4);
	z-index:1;
	position: absolute;
	display: block;
	width: 100%;

	top: 0;
	left: 0;
}
.overlayy {
    background: url('../images/parallax1.jpg') repeat rgba(0, 0, 0, .4);
    z-index:1;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.overlaym {
    background: url('../images/whitebackground.png') repeat rgba(0, 0, 0, .4);
    z-index:1;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.overlayk {
    background: url('../images/kirpich.jpg') repeat rgba(0, 0, 0, .4);
    z-index:1;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.overlayc {
    background: url('../images/parallax2.jpg') repeat rgba(0, 0, 0, .4);
    z-index:1;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.parallax {
	position:relative;
	background-attachment: fixed !important;
	background-position: center center;
	background-repeat: no-repeat  !important;
	background-size: cover;
}



/*-----------------------------------------------------------------*/
/* Navigation
/*-----------------------------------------------------------------*/


#header {
	z-index: 999;
	width: 100%;
	-webkit-transition: all 0.1s;
	-moz-transition: all 0.1s;
	transition: all 0.1s;
	background: #FFF;
	/*border-bottom: 5px solid #F7C331;*/
	border-bottom: 5px solid #F7C331;
	padding: 12px;
	
}


#main-menu {
	z-index: 999; 
	visibility:visible;
}

#main-menu ul { 
	display: block;
	width: 100%;
	text-align: center;
}

#main-menu ul li {
	display: inline-block;
	position: relative;
}

#main-menu ul li a {
	display: inline-block;
	padding: 30px 10px;
	line-height: 30px;
	/*color:#6B7A8F;*/
	color:#0040ff;
	font-weight: 600; 
	font-size: 15px;
	text-transform: uppercase; 
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	-ms-transition: all .25s ease; 
	-o-transition: all .25s ease;
	transition: all .25s ease;
}

#main-menu ul li a:hover {
	color: #ffffff;
    background-color: grey;
}

#main-menu ul li.active > a, #main-menu ul li.active.has-child > a {
    color: #ffffff;
    background-color: #F7882F;
    box-shadow: inset 0 -2px 0 #F7882F;;
}

#main-menu ul.nav>li>a:hover, #main-menu ul.nav>li>a:focus {
    background-color: #F7882F;
}

.clear-toggle{
	display:none;
	clear:both;
}

.navbar-toggle { 
	color:#F7882F;
	margin-top: 30px;
	padding:0px;
	font-size:35px;
}

.logo {
	width: 100% !important;
	height: 100% !important;
}

.logo-nav { 
	float: left; 
}
.col-sm-12{
    height: 7%;
}



/*-----------------------------------------------------------------*/
/* Works
/*-----------------------------------------------------------------*/
#mainPageContainer{
padding-top: 100px; 

}

#home {
    height: 100%;
}
#works{
	z-index: 1;
	background: url("../images/bricks1.jpg");
	position: relative;
	overflow: hidden;
	max-height: 100%; 
}
#sites{
	padding-bottom: 0;
	position: relative;
    overflow: hidden;
	z-index: 1;
}


.work-grid .mix { 
	opacity: 0; 
	display: none;
}

.filtering {
	text-align: center;
	display: none;
	margin-left: 0;
	margin-bottom: 60px;
}

.filter {
    position: relative;
    display: inline-block;
    margin: 0 16px 24px 16px;
    font-weight: 700;
	color:#000000;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.filter.active,
.filter:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}

.filter.active:after{
    position: absolute;
    bottom:-14px;
    left: 0;
    width: 100%;
    height: 4px;
    content: '';
    background-color:green;
}
.full-width{
	width:100%;
	display:table;
}


.work-grid {
    width: 100%;
    height: 100%;
    margin: 0;
	padding:0;
}

.work-item {
    display: inline-block;
}

.work-item a {
	position: relative;
    height: 100%;
}

.work-item a img {
    width: 100%;
    -webkit-transition: all0.3s ease-out;
    transition: all 0.3s ease-out;
}

.work-item .work-info {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    -webkit-transition: all0.3s ease-out;
    transition: all 0.3s ease-out;
}
/*
.work-item:hover .work-info {
    opacity: 1;
}*/

.work-item  .work-info .work-info-detail  {
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0;
    -webkit-transform: translateY(65%);
    -ms-transform: translateY(65%);
    transform: translateY(65%);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
/*
.work-item:hover .work-info .work-info-detail  {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}*/

.work-item  .work-info .work-info-detail  h4,
.work-item  .work-info .work-info-detail  p{
    color: #fff;
}

.work-item  .work-info .work-info-detail  p{
    margin-bottom:15;
}

.work-item  .work-info .work-info-detail h4:after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background:#ffc107;
    margin: 10px auto;
}

.thumbnail-img {
    position: relative;
    float: left;
    display: inline-block;
    width: 100%;
    overflow: hidden;
}
.website-page-thumbnail{
	position: relative;
    float: left;
    display: inline-block;
    width: 100%;
    overflow: hidden;
}
#about {
	margin-top: 125px;
}

#about img{
    padding: 10px;
}
#aboutText{
	box-sizing: border-box;
	text-align: justify;
	padding-top: 20px;
	font-size: 18px;
}

#about h1{
    color: #0040ff;
    font-size:30px;
    text-align: center;
    padding-bottom: 20px;
}

#aboutHeading h2{
    color: #F7882F;
    padding: 20px 0;	
    font-size: 22px;
}

@media only screen and (min-width: 10.063em) {
	
    .filtering { display: block; }
	.thumbnail-img { width: 33.3332%; }
	.website-page-thumbnail{width: 100%;}
#appsensesAd { width:100% !important;}
}

@media only screen and (min-width: 40.063em) {
	
    .filtering { display: block; }
	.thumbnail-img { width: 25%; }
	.website-page-thumbnail{width: 50%;}

}

@media only screen and (min-width: 64.063em) {
	#appsensesAd {
    width: 75% !important;
}
    .thumbnail-img { width:16.666667% ; }
	.website-page-thumbnail{width: 33.3333333%;}
}


/* 3 per page is 33.3333333%*/



/*-----------------------------------------------------------------*/
/* Contact
/*-----------------------------------------------------------------*/


#contact{
	background-color: #F7C331;
}
#submitButton{
    background-color: #F7882F;
}


.contact-form{
	margin-bottom:30px;
}



/*-----------------------------------------------------------------*/
/* Footer
/*-----------------------------------------------------------------*/


footer{
	padding:45px 0 30px;
	background:#0040ff;
	/*z-index: 999;*/
}

footer p {
	color: #FFF;
	font-size: 16px;
	letter-spacing: 0.9px;
}

#appsensesAd{
    width: 75%;
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top: 450px;
}



/*-----------------------------------------------------------------*/
/*  Media queries
/*-----------------------------------------------------------------*/

@media (min-width: 992px) and (max-width: 1024px) {

.navbar-right{
	float:none !important;
}

}


@media (min-width: 992px) {
	
#main-menu.collapse { 
	display: block !important;
}

} 


@media (max-width: 992px) {

.navbar-right{
	float:none !important;
	margin-right:0px !important;
}

.clear-toggle{
	display:block;
}

.navbar-toggle {
	display: block !important;
}

#main-menu ul li { 
	display: block;
	text-align: left;
    background-color: #ffc107;
}


#main-menu ul li a {
	line-height: 35px;
	padding: 5px 10px;
    background-color: #F7C331;
}

#main-menu ul li.active > a {
	box-shadow: none !important;
    background-color: #F7882F;
}

#main-menu ul li:hover ul {
	border-top: solid 2px #f32b1a; 
	top: 40px;
    background-color: #F7882F;
}

#main-menu ul li ul li a {
	padding: 10px 30px;
    background-color: #F7C331;
}

#about{
    padding: 15px 5px 75px;
}

.about{
    display: block;
}


#about img{
    display: none;
}
#about h1{
     font-size: 20px ;
}
.material-icons{
    float: left;
}
.contact-form{
    padding: 0 5px;
}


#appsensesAd{
    width: 100%;
    padding-top: 250px;
}

}

@media (max-width: 560px) {

#home h1 {
	font-size: 30px;
}


}


@media (max-width: 500px) {

.header-info h1 {
	font-size: 27px;
	line-height: 37px;
}

.header-info {
	padding: 0px 30px;
}


}


@media (max-width: 479px) {
	
.section-header .smt {
	font-size: 26px;
	padding: 0;
}

.section-header .smt:before,
.section-header .smt:after {
	width: 18px;
}

img.align-left,
img.align-right {
	display: block;
	float: none;
	margin: 0 auto 20px;
}


#appsensesAd{
    padding-top: 150px;
}


}



@media (max-width: 330px) {

.header-info h1 {
	font-size: 18px !important;
	line-height: 22px;
}

.header-info {
	padding: 0px 10px;
}

#contact img {
    display: none;
}
}

@media (min-width: 1024px) and (max-width: 1360px) {

#about img {
margin-top: 65px;
}


}

@media (min-width: 1360px) {

#main {
    height: 68%;
}


}


