/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
	web fonts
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

/*
@font-face {
  font-family: 'book';
  src: url('fonts/book.woff') format('woff');
}
@font-face {
  font-family: 'book_italic';
  src: url('fonts/book_italic.woff') format('woff');
}
@font-face {
  font-family: 'medium';
  src: url('fonts/medium.woff') format('woff');
}@font-face {
  font-family: 'medium_italic';
  src: url('fonts/medium_italic.woff') format('woff');
}
@font-face {
  font-family: 'semibold';
  src: url('fonts/semibold.woff') format('woff');
}
@font-face {
  font-family: 'bold';
  src: url('fonts/bold.woff') format('woff');
}
*/

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
	meta
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */


* {
	margin: 0px;
	padding: 0px;
  -webkit-font-smoothing: antialiased;
  /*
  -webkit-text-stroke-width: 0.2px;
  */
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  height: 100%;
}

body {
  font-size: 13.5px;
  font-family: "proxima-nova", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
	color: #333;
	color: white;
	background: #292929; 
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
	generic element defaults
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

a, a:visited {
	color: white;
	text-decoration: none;
	outline: 0px !important;
}

img {
	border: 0px;
}

ul, li {
	list-style-type: none;
}

.rev {
	direction: rtl;
	unicode-bidi: bidi-override;
	text-align: left;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
	utility classes
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

.clear {
	clear: both;
}

.visible {
	visibility: visible !important;
}
.hidden {
  display: none;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
	nav
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

.nav {
	width: 260px;
  padding: 0 60px;
  position: fixed;
  box-sizing: border-box;
}

#logo {
  box-sizing: border-box;
  padding: 60px 0;
}
#logo a {
	display: block;
	width: 66px;
	height: 66px;
}
#logo img {
  opacity: 0.075;
  width: 66px;
  height: 66px;
}

.nav div {
	margin-bottom: 0px;
}	
.nav li {
  line-height: 13.5px;
	margin-bottom: 2.5em;
}	
.nav li a,
.nav li a:visited {
  opacity: 0.25;
	color: white;
	display: inline-block;
	font-size: 13.5px;
  letter-spacing: 1.5px;
}
.nav li a.current {
  opacity: 0.5;
  font-weight: 700;

  font-family: "proxima-nova", sans-serif;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
	content
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

.mobile {
  display: none;
}

#content {
  background: #2e2e2e;
	margin-left: 260px;
  width: 65%;
  max-width: 800px;
  height: 100%;
  /* display: box; */
  box-orient: vertical;
  box-flex: 0;  
}
.project {
  background: #2e2e2e;
}

h1 {
	margin: 50px 0 0 50px;
  font-size: 17px;
  opacity: 0.25;
  /* font-family: 'book', sans-serif; */
  font-family: 'proxima-nova', sans-serif;
  letter-spacing: 1px;
}
.details {
	padding: 40px;
  font-size: 13.5px;
  line-height: 27px;
  letter-spacing: 1px;
  opacity: 0.25;
}
h1 + .details {
	margin: 25px 0 50px 50px;
}
.details a {
	color: white;
  border-bottom: solid 1px #888;
}
.details i {

}

.project .images {
  position: relative;
}
.slides {
  /* box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.15); */
}
.slides img {
  width: 100%;
  /* filter: grayscale(33%); */
}

#content hr {
  border: 0;
  border-top: solid 1px #393939;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
	error pages
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#404_projects li {
	margin-bottom: 2px !important;
  line-height: 10px !important;
}
#404_projects li a {
	font-size: 90px !important;
}	

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
	hacks
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

@media screen and (-webkit-min-device-pixel-ratio:0) {
  #project_image img {
  	margin-bottom: -3px;
  }
}