@import url(http://fonts.googleapis.com/css?family=Source+Code+Pro:300,400,500,600);
* {
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
}
body {
  background: #000000;
  color: #FFFFFF;
  font: 12px/18px 'Source Code Pro', Helvetica, Arial, sans-serif;
  text-align: left;
  margin: 0;
  padding: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
h1,
h2,
h3 {
  text-transform: uppercase;
}
h1 {
  font-size: 24px;
  line-height: 30px;
  margin: 15px 0;
  font-weight: 300;
}
h1 span {
  font-weight: 500;
}
h2 {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}
a:hover {
  color: #FFFFFF;
}
p,
ul,
li,
a {
  color: rgba(255, 255, 255, 0.5);
  list-style: none;
  -webkit-transition: color 300ms ease-in;
  -moz-transition: color 300ms ease-in;
  -o-transition: color 300ms ease-in;
  transition: color 300ms ease-in;
}
::selection {
  background: #000000;
  color: #FFFFFF;
}
.front .canvas .container {
  display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex;
  justify-content: center;
  height: 100vh;
  position: relative;
  -webkit-flex-direction: column;
      -moz-box-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.front .canvas header {
  margin: auto;
  text-align: center;
  opacity: 1;
  padding: 0;
  width: 150px;
  -webkit-transition: opacity 300ms ease-in;
  -moz-transition: opacity 300ms ease-in;
  -o-transition: opacity 300ms ease-in;
  transition: opacity 300ms ease-in;
}
.front .canvas header .logo {
  display: block;
}
.front .canvas header .logo span {
  display: none;
}
.front .canvas header .contact {
  margin: 0;
  text-align: center;
  float: none;
}
.front .canvas header ul,
.front .canvas header p,
.front .canvas header li,
.front .canvas header a {
  border: none;
  color: #FFFFFF;
  padding: 0;
  opacity: 1;
}
.front .canvas header:hover {
  opacity: 0.6;
  -webkit-transition: opacity 100ms ease-in;
  -moz-transition: opacity 100ms ease-in;
  -o-transition: opacity 100ms ease-in;
  transition: opacity 100ms ease-in;
}
.front .canvas .navigation,
.front .canvas .hero,
.front .canvas .features {
  display: none;
}
.front .images {
  opacity: 1;
  -webkit-transition: opacity 100ms ease-in;
  -moz-transition: opacity 100ms ease-in;
  -o-transition: opacity 100ms ease-in;
  transition: opacity 100ms ease-in;
}
.canvas {
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 99;
}
.images {
  opacity: 0.3;
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 1;
  -webkit-transition: opacity 500ms ease-out;
  -moz-transition: opacity 500ms ease-out;
  -o-transition: opacity 500ms ease-out;
  transition: opacity 500ms ease-out;
}
.images img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  min-width: 50%;
  min-height: 50%;
  -webkit-animation: fadein 700ms ease;
  -moz-animation: fadein 700ms ease;
  -o-animation: fadein 700ms ease;
}
.container {
  margin: 0 auto;
  max-width: 1200px;
}
header {
  padding: 80px;
}
.logo {
  display: none;
  text-align: center;
}
.logo span {
  display: block;
  text-indent: -99999px;
}
.navigation {
  float: left;
  padding: 0;
  margin: 0;
}
.contact {
  float: right;
  text-align: right;
}
.contact a {
  color: rgba(255, 255, 255, 0.5);
}
.contact a:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.hero {
  padding: 10% 80px;
  width: 60%;
}
.list {
  float: left;
  padding-bottom: 10%;
  width: 30%;
}
.list h2,
.list ul {
  padding-left: 80px;
  text-transform: uppercase;
}
.contact:hover ul,
.list:hover ul,
.contact:hover li,
.list:hover li,
.contact:hover p,
.list:hover p,
.contact:hover a,
.list:hover a {
  color: #FFFFFF;
  -webkit-transition: color 100ms ease-in;
  -moz-transition: color 100ms ease-in;
  -o-transition: color 100ms ease-in;
  transition: color 100ms ease-in;
}
.animate {
  -webkit-animation: cssAnimation 700ms ease;
  -moz-animation: cssAnimation 700ms ease;
  -o-animation: cssAnimation 700ms ease;
}
@-webkit-keyframes cssAnimation {
  0% {
    -webkit-transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    opacity: 1;
  }
}
@-moz-keyframes cssAnimation {
  0% {
    -moz-transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -moz-transform: translateY(0px);
    opacity: 1;
  }
}
@-o-keyframes cssAnimation {
  0% {
    -o-transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -o-transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 480px) {
  .front .canvas header {
    padding: 0;
    width: 100%;
  }
  .front .images {
    opacity: 0.7;
  }
  header {
    padding: 10%;
  }
  .navigation {
    display: none;
  }
  .contact {
    float: left;
    padding-bottom: 10%;
    text-align: left;
    width: 100%;
  }
  .contact ul {
    padding: 0;
  }
  .hero {
    padding: 20% 10% 10% 10%;
    width: 80%;
  }
  .list {
    float: left;
    padding-bottom: 10%;
    width: 100%;
  }
  .list h2,
  .list ul {
    padding-left: 10%;
    text-transform: uppercase;
  }
}
