/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,  figure, figcaption, footer, header, hgroup,  menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure,  footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; }

/*
  Color Guide
  ----
    blue: #0C304F;
    red: #521c0a;
    grey: #ccc;
    greylt: #F2F2F2;
    greydk: #333;
*/
    .white {
      color: #fff;
    }
    .blue {
      color: #0C304F;
    }
    .blue-bg {
      background-color: #0C304F;
    }
    .red: {
      color #521c0a;
    }
    .red-bg: {
      background-color #521c0a;
    }
    .grey {
      color: #ccc;
    }
    .grey-bg {
      background-color: #ccc;
    }
    .grey-lt {
      color: #F2F2F2;
    }
    .grey-lt-bg {
      background-color: #F2F2F2;
    }
    .grey-dk {
      color: #333;
    }
    .grey-dk-bg {
      background-color: #333;
    }


/* Globals */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5em;
  color: #333;
}

h1, h2, h3{
  color: #333;
  font-size: 2em;
  font-weight: 100;
  line-height: 1.5em;
  margin: 0;
}

h1.white,
h2.white,
h3.white {
  color: white;
}

.heading-display {
  font-size: 4em;
  line-height: 1em;
  margin-bottom: 30px;
}
.heading-1 {
  font-size: 2em;
  line-height: 1em;
}
.heading-2 {
  font-size: 1.5em;
}
.heading-3 {
  font-size: 1.2em;
  font-weight: 300;
}
.heading-4 {
  font-size: 1.1em;
  font-weight: 300;
}

p {
  margin: 15px 0 0;
}

p.no-margin {
  margin: 0;
}

ul {
  list-style: disc;
  padding: 0 30px;
}

p + h1,
p + h2,
p + h3,
ul + h1,
ul + h2,
ul + h3 {
  margin: 30px 0 0;
}

h1 + p,
h2 + p,
h3 + p,
h1 + ul,
h2 + ul,
h3 + ul,
ul + p,
ol + p {
  margin: 10px 0 0;
}

h1 + img,
h2 + img,
h3 + img {
  margin: 30px 0 0;
}

a {
  color: #0C304F;
  text-decoration: none;
}
a:hover, a:active {
  color: #521c0a;
  text-decoration: underline;
}

em {
  font-weight: 600;
}

.strong {
  font-weight: 600;
}


/* Layouts */

section {
  min-height: 100px;
  width: 100%;
  padding: 60px 0;
}

.container {
  margin: 0 auto;
  max-width: 680px;
  padding: 15px;
  overflow: hidden;
}
.container-wide{
  width:100%;
  max-width: 1200px;
}
.container-full{
  width:100%;
  max-width: 100%;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}
.col {
  float: left;
  padding: 0 15px
}
.col-right {
  float: right;
}
.col-fourth {
  width: 25%
}
.col-third {
  width: 33.33%;
}
.col-half {
  width: 50%;
}
.col-two-third {
  width: 66.66%;
}
.col-three-fourth {
  width: 75%
}

/* Helpers */

.hidden {
  display: none;
}

.no-margin {
  margin: 0;
}

.text-align-center {
  text-align: center;
}

/* Components */


#nav {
  min-height: 0px;
  padding: 0;
}

#nav .container {
  padding: 15px 15px;
}
#nav .nav-logo {
  height: 37px;
  display: block;
  float: left;
  margin: 0 15px 0 0;
}

#nav a {
  color: #333;
}

#nav .logo-title {
  padding: 5px 0;
  display: block;
  float: left;
  font-size: 1.3em;
}

#intro{
  height: 80vh;
  min-height: 500px;
}

#intro .container {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

#hero .hero-image {
  width: 100%;
  height: auto;
}

.main-logo {
  width: auto;
  height: 100px;
  margin-bottom: 30px;
}
@media (min-width: 426px){
  .main-logo {
    width: auto;
    height: 150px;
    margin-bottom: 60px;
  }
}

.project-list {
  margin-left: -15px;
  margin-right: -15px;
}

.project-row {
  margin: 30px 0;
  float: left;
  width: 100%;
}

.project-item {
  background: white;
  display: block;
  float: left;
  margin: 15px 1.5%;
  position: relative;
  width: 30.33%;
}

.project-item a {
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  display: block;
  float: left;
  box-shadow: 0 0 1px #a3a3a3;
  color: #333;
  position: relative;
}

.project-item a:hover {
  right: 1px;
  bottom: 1px;
  box-shadow: 1px 1px 3px #a3a3a3;
}

.project-image {
  width: 100%;
  height: auto;
  float: left;
}

.project-content {
  border-top: 1px solid #F2F2F2;
  background: white;
  float: left;
  padding: 15px;
  width: 100%;
  font-size: 0.8em;
}

ul.tags {
  margin-top: 15px;
  padding-top: 15px;
  list-style: none;
  padding: 0;
}

ul.tags li {
  display: inline-block;
  padding: 0 0 7px;
  color: #0C304F;
  font-weight: 600;
}


#contact {
  padding-bottom: 120px;
}

#contact h2 {
  margin-top: 0;
  line-height: 1em;
}

#contact .fa {
  color: white;
}

#contact a {
  color: white;
}

#contact ul {
  list-style: none;
  padding: 0;
}

#contact li {
  padding: 5px;
  display: inline-block;
}

#contact li a:hover {
  text-decoration: none;
}

#contact li a:hover .label{
  text-decoration: underline;
}

#article {}

#article p {
  padding: 0;
}

@media (max-width: 1200px){
  .project-item {
    width: 47%;
  }
}

@media (max-width: 650px){

  section {
    padding: 30px 0;
  }

  .project-row {
    padding: 0 15px;
  }

  .project-item {
    width: 100%;
  }

  .project-content {
    height: auto;
  }

  #projects .container {
    padding-bottom: 0;
  }
}
@media (max-width: 426px){

  .heading-display {
    line-height: 1em;
    font-size: 3em;
    margin-bottom: 30px;
  }

  .col-half, .col-third {
    width: 100%;
  }

  #contact h2 {
    margin: 0 0 20px;
  }
}