/* General
----------------------------------------------------------------------------------------------------*/

html {
  background: #f2f2f2; 
}
body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  /*overflow: hidden; */
  background: #f2f2f2;
  font-family: Playfair Display, serif;
  color: #31343d;
}
.wrapper {
  position: relative;
  height: 100%;
  width: 80%;
  max-width: 1200px;
  margin: auto;
}
a, a:visited {
  cursor: pointer;
  color: #929292;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a:hover {
  text-decoration: none; 
  color: #2C58FF;
}




/**************************************************************************************
*	Homepage     									   
***************************************************************************************/
#loader {
  background: #fff url('../images/preloader.gif') no-repeat center;
  background-image: none;
  z-index:999999;
  display:block;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

#home {
  z-index:1;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out; 
  -webkit-overflow-scrolling: touch;
}
#home.fade-home {
  transform: scale(0.85);
  opacity: 0; }




/* Header
--------------------------------------------------------------------------------------*/

#header {
  z-index:2;
  position: absolute;
  top: 40px;
  margin-left: -80px;
  background: url("../images/logo.png") 0 0 no-repeat;
  background-size: contain;
  height: 45px;
  padding-top: 7px;
  padding-left: 80px;
}
#header h1 {
  font-family: "Roboto Condensed", "HelveticaNeue", Helvetica, Arial, sans-serif;
  font-weight: 100;
  font-size: 11px;
  line-height: 40px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}
#header h1 strong {
  border-right: 1px solid #d3d3d3;
  display: inline-block;
  padding-right: 16px;
  margin-right: 15px;
}
#header h1 span {
  color: #c3c3c3;
}
#header h1 span.hidden {
  display: none;
}



/* About
--------------------------------------------------------------------------------------*/

#about {
  height: 100%;
  position: absolute;
  top: 25%;
  margin: 0 3% 1% 0;
}
#about h2 {
  font-size: 43px;
  margin: 0 0 12px;
  letter-spacing: -1px;
}
#about p {
  font-size: 43px;
  margin: 0;
}



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

#footer {
  z-index:3;
  position: absolute;
  bottom: 80px;
  left: 0;
}
#footer h2 {
  font-family: "Roboto Condensed", "HelveticaNeue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  line-height: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0 0 30px;
  padding-bottom: 13px;
  background: url(../images/heading-underline.gif) bottom left no-repeat;
}
#footer h3,
#footer li {
  font-size: 20px;
  line-height: 20px; 
}
#footer .projects-cases,
#footer .etcetera-samples {
  display: block;
}
#footer .projects-cases {
  margin-bottom:15px;
}
#footer .projects-samples {
  margin-bottom:50px;
}

#footer h3 {
  display: inline-block;
  font-weight: 900;
  margin: 0 5px 0 0;
}
#footer ul,
#footer li {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
}
#footer li:before {
  content: '/';
  display: inline-block;
  margin: 0 7px 0 5px;
}
#footer li:first-child:before {
  content: '';
  margin: 0;
}