

    /********* figit Loader *******/
.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background:#ffffff;
}

.loader-img {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: url('../imgs/page-loader.gif') 50% 50% no-repeat;
}



/********* Master Styles *******/
body{
 
}
body.noscroll{
  overflow: hidden;
}

canvas {
  position: fixed;
  opacity:.9;
}
.full-width {
  padding: 4em 1em;
  margin: 0 auto;
  max-width: 75%;
}

p {
    clear: both;
    line-height: 1.7em;
    font-size: 1em;
    font-weight: 100;
    padding: 0 3px;
}

h1 {
  font-size: 3em;
  margin-bottom: .1em;
}

/************ Header *************/
header {
  position: fixed;
  z-index: 9999;
  width: 100%;	
 background:#fff;
}
.header{
   display: flex;
  align-items: center;
  flex-wrap: wrap;

}
section{
   background: -moz-linear-gradient(top, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
}
nav a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-weight:100;
}

nav ul {
  display: flex;
  justify-content: space-between;
  width: 250px;
  padding: 0;
}
.logo{
  padding-right: 10px;
}
.logo img{
  width:100%;
}

/****HOme Styles******/
.home {
  top: 115px;
}

.home h2 {
  line-height: 1.5em;
  margin:0 .1em 1em;
  }

/****Work Styles******/

.work .container.full-width {
  display: flex;
  justify-content: space-between;

}
.right-side{
  padding:0 2em;
}


.left-side{
  width:50%;
}
.left-side img{
  width: 100%;
}

.button {
  background: #555 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  padding: 10px 30px;
  display: block;
  max-width: 92px;
  text-decoration: none;
}
button:focus{
  outline: none;

}
.reveal-test{
	height:200px;
	max-width:700px;
	margin: auto;
	display: block;
	width: 100%;
	background: #000;
	visibility: hidden;
	 perspective: 800px;
}

/*****Contact Styles*******/

.link2.active{
  border-bottom:1px solid #000;
}


section.contact{
  position: absolute;
  top:0px;
  width:100%;
  z-index: 999;
  display:none;
}
section.contact .full-width{
  position: relative;
  top:115px;
}



span.overlay {
    position: absolute;
     background: -moz-linear-gradient(top, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
    width: 100%;
    height: 100vh;
}

form{ 
  max-width: 700px;
  background:#fff;
}

input, textarea {
    width: 100%; 
    box-sizing: border-box;
    border-left: none;
    border-right: none;
    border-top:none;
    border-bottom:1px solid #000;
    margin-bottom: 2px;
    padding: 1em .2em .2em;
    font-weight: 100;
    color: #000;
    border-radius:0;
}
input[type="text"], input[type="email"] {
  padding-bottom: 10px;
  	
}
input[type="submit"] {
    background: #555 none repeat scroll 0 0;
    border: medium none;
    color: #fff;
    padding: 10px 30px;
    max-width: 150px;
    margin-top: 3em;
    border-radius:0;
    }

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #000;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #000;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #000;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #000;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:    #000;
}
textarea { 
  resize: vertical;
  clear:both; }

textarea:focus, input:focus{
  outline: none;
}
/*****Media Queries*******/

@media screen and (max-width: 700px) {
	
	.home p{
	display:none
	}	
  .left-side{
  width:100%;
}
.right-side{
  padding:0;
  margin-top: -7em;
}
  .work .container.full-width{
    flex-wrap: wrap;
  }
     .button {
  margin: 0 0 2em;
 }
 

  .header.full-width {
  padding: 20px 0 0;
}
  .home .full-width, .contact .full-width, .work .full-width  {
  padding: 1em 0 0;
  }
}

