#intro {
    min-height: 100vh;
    width: 100vw;
    text-align: center;
    background-image: url("images/background.jpg"); 
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /*background-position: center;*/
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    height: inherit;
    background-color: rgba(0,0,0,0.5);
    z-index: 0;
}

.light-grey {
    color: #ccc;
}
.black {
    color: #000;
}
.white {
    color: #fff;
}

nav {
    background-color: transparent;
}
#navbar {
    height: 94px;
    padding: 20px 0px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    font-size: 120%;
    text-align: center;
    z-index: 20;
}
.navbar-toggle {
    border: 1px solid #eee;
}
.navbar-toggle .icon-bar {
    background-color: #fff;
}
.navbar-left {
    position: relative;
    height: 94px;
    padding: 20px;
}
.navbar-right {
    margin-right: 0;
}
#logo {
    height: 70px;
    margin-top: 12px;
}

li {
    padding: 20px;
    text-transform: uppercase;
}
.nav>li>a:hover {
    color: #fff;
    background-color: transparent;
    /*border-bottom: 3px solid #df4244;*/
}
a.bordered-link {
    border: 2px solid #fff;
}
.nav>li>a.bordered-link:hover {
    color: #000;
    border: 2px solid #fff;
    background-color: #eee;
}
.navlink {
    color: #ccc;
}
#profile {
    z-index: 20;
}
#logo-container {
    margin-top: 150px;
    text-align: center;
}
#about {
    z-index: 20;
    display: inline-block;
    color: #fff;
    background-color: #323232;
    /*color: #000;
    background-color: #ccc;*/
    padding: 40px 0;
}
#resume {
    z-index: 20;
    width: 100%;
    display: inline-block;
    color: #000;
    background-color: #fff;
    padding: 40px 0;
}
.resume-section {
    padding: 40px 0;
}

.section-label {
    margin-bottom: 40px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    text-transform: uppercase;
    text-align: left;
    font-size: 110%;
    font-weight: normal;
}

.work-section {
    margin-bottom: 20px;
}

h4 {
    font-family: 'PT Serif Caption', serif;
    font-size: 110%;
    color: #df4244;
}

.details {
    margin-bottom: 40px;
    font-family: 'PT Serif Caption', serif;
    font-size: 100%;
    line-height: 175%;
    /*text-align: justify;*/
}
.organization {
    margin-bottom: 10px;
    font-family: 'PT Serif', serif;
    font-size: 110%;
    font-style: italic;
}
.date {
    margin-top: 10px;
    font-family: 'PT Serif', serif;
    font-size: 100%;
    line-height: 175%;
    color: #323232;
}
.desc {
    padding-top: 10px;
    margin-bottom: 20px;
    padding-right: 20px;
    font-family: 'PT Serif Caption', serif;
    font-size: 100%;
    color: #555;
}

.desc > ul {
    list-style-type: square;
    padding-left: 20px;
    font-family: 'PT Serif Caption', serif;
    font-size: 100%;
    text-transform: none;
}

.desc > ul > li {
    padding: 0;
    text-transform: none;
}

#projects {
    background-color: #ddd;
    display: inline-block;
    width: 100%;
    /*height: 550px;*/
    z-index: 20;
}

#projects-desc {
    max-width: 1600px !important;
    width: 100% !important;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 100px;
    padding-left: 32px;
    padding-right: 32px;
    text-align: center;
    overflow: hidden;
    cursor: default;
}

.project-item .overlay-hover {
    position: absolute;
    overflow: hidden;
    width: 80%;
    height: 80%;
    left: 10%;
    top: 10%;
    /*border-bottom: 1px solid #FFF;
    border-top: 1px solid #FFF;*/
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(0,1);
    -ms-transform: scale(0,1);
    transform: scale(0,1);
}

.project-item:hover .overlay-hover {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.project-item h2 {
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    text-align: center;
    position: relative;
    background-color: transparent;
    color: #FFF;
    padding: 1em 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0,-100%,0);
    transform: translate3d(0,-100%,0);
}

.project-item a, .project-item p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    color: #FFF;
    padding: 1em 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
}

.project-item:hover a, .project-item:hover p, .project-item:hover h2 {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.project-item {
    margin-top: 40px;
    margin-bottom: 40px;
}

.project-item img {
    max-width: 90%;
    /*display: block;*/
    position: relative;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
}

.project-item:hover img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.6" /><feFuncG type="linear" slope="0.6" /><feFuncB type="linear" slope="0.6" /></feComponentTransfer></filter></svg>#filter');
  filter: brightness(0.5);
  -webkit-filter: brightness(0.5);
}

#contact {
    background-color: #323232;
    display: inline-block;
    width: 100%;
    text-align: center;
    z-index: 20;
}
#contact a:hover {
    color: #ccc;
}

.form-control {
    border-radius: 0;
    background-color: #ccc;
    color: #000;
    font-family: 'PT Serif Caption', serif;
    font-weight: normal;
}

.form-control::-webkit-input-placeholder { 
    color: #323232;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-weight: normal;
}
.form-control:-moz-placeholder {
    color: #323232;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-weight: normal;
}
.form-control::-moz-placeholder {
    color: #323232;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-weight: normal;
}
.form-control:-ms-input-placeholder {
    color: #323232;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-weight: normal;
}

.btn-default {
    width: 100%;
    border: none;
    border-radius: 0;
    background-color: #555;
    color: #fff;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-weight: normal;
}
.btn-default:hover {
    background-color: #fff;
    color: #000;
}

.big-label {
    margin-top: 40px;
    margin-bottom: 40px;
    /*font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;*/
    font-family: 'Roboto', sans-serif;
    font-size: 70px;
    font-weight: 100;
    text-align: center;
    text-transform: uppercase;
}

#connect {
    margin-bottom: 35px;
}

.list-inline > li {
    padding: 20px;
}

.list-inline > li > a:hover,
.list-inline > li > a:focus {
    text-decoration: none;
}

#linkedin-link > a:hover,
#linkedin-link > a:focus {
    color: #0077b5;
}
#github-link > a:hover,
#github-link > a:focus {
    color: #4078c0;
}
#fhpx-link > a:hover,
#fhpx-link > a:focus {
    color: #0099e5;
}
#stackoverflow-link > a:hover,
#stackoverflow-link > a:focus {
    color: #fe7a15;
}
#twitter-link > a:hover,
#twitter-link > a:focus {
    color: #1da1f2;
}
#email-link > a:hover,
#email-link > a:focus {
    color: #df4244;
}

i.fa {
    font-size: 4em;
}