/**
 * Author: Derrick Barth
 * Copyright 2013-2015
 */
 
* {
  color: #a2a2a2;
  text-decoration: none;
}
*, *:focus  {
  outline: none;
}

body {
  background: url(../images/dark_wall_@2X.jpg);
  background-size: 300px 300px;
  font-family: "calibri", "helvetica", "arial", sans-serif;
}

#parent {
  padding: 30px 0;
  width: 720px;
  margin: auto;
}

header {
  text-align: center;
  position: relative;
  margin-bottom: 15px;
}

#title {
  font-size: 35px;
  color: rgb(230,230,230);
}

#subtitle {
  font-size: 16px;
  letter-spacing: 4px;
}

nav {
  position: absolute;
  right: 25px;
  bottom: 0;
  font-size: 20px;
}
a.nav {
  margin-left: 10px;
}
a.nav:hover {
  color: white;
}

footer {
  text-align: center;
}

.center {
  margin: auto;
}

.clear {
  clear: both;
}

.category {
  background: rgba(0,0,0,0.4);
  margin-bottom: 20px;
  -webkit-border-radius: 7px; -moz-border-radius: 7px; border-radius: 7px;
}
.category .label {
  padding-top: 10px;
  margin-left: 20px;
  font-size: 42px;
  font-weight: bold;
  float: left;
}
.category .desc {
  padding-top: 18px;
  margin-left: 20px;
  float: left;
  font-size: 15px;
}

.project {
  position: relative;
  border: 2px solid black;
  width: 154px;
  height: 154px;
  -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; 
}
.project:hover {
  border: 2px solid white;
  -webkit-box-shadow: 0 0 30px 1px #A3A3A3;
  -moz-box-shadow: 0 0 30px 1px #A3A3A3;
  box-shadow: 0 0 30px 1px #A3A3A3;
}
.project .thumbnail {
  position: relative;
  border: none;
  width: 150px;
  height: 150px;
}
.project .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  border: none;
  width: 40px;
  height: 40px;
}
.project .caption {
  pointer-events: none;
  width: 100%;
  color: white;
  font-size: 15px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  margin: 5px;
}
.project .caption_bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: black; */
  opacity: 0;
}

#slides-overlay {
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 680px;
  height: 220px;
  background: rgba(0,0,0,0.8);
  background: -moz-linear-gradient(left, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.8) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,0,0,0.8)), color-stop(30%, rgba(0,0,0,0)), color-stop(70%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,0.8)));
  background: -webkit-linear-gradient(left, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.8) 100%);
  background: -o-linear-gradient(left, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.8) 100%);
  background: -ms-linear-gradient(left, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.8) 100%);
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=1 );
}
