/* Header */

#header {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    position: relative;
    height: 26em;

    background-size: cover;
    padding: 0;
}

#header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/overlay.png");
}

.homepage #header {
    height: 35em;
}

/* Logo */

#logo {
    width: 100%;
    text-align: center;
    position: relative;
    top: 1.5em;
}

#logo h1 {
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    font-size: 2em;
    letter-spacing: 0.25em;
}

#logo p {
    color: #eee;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin: 1.25em 0 0 0;
    display: block;
    letter-spacing: 0.2em;
    font-size: 0.9em;
}

/* Nav */

#nav {
    position: absolute;
    display: block;
    top: 2.5em;
    left: 0;
    width: 100%;
    text-align: center;
}

#nav > ul {
    display: inline-block;
    border-radius: 0.35em;
    box-shadow: inset 0px 0px 1px 1px rgba(255, 255, 255, 0.25);
    padding: 0 1.5em 0 1.5em;
}

#nav > ul > li {
    display: inline-block;
    text-align: center;
    padding: 0 1.5em 0 1.5em;
}

#nav > ul > li > ul {
    display: none;
}

#nav > ul > li > a, #nav > ul > li > span {
    display: block;
    color: #eee;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.7em;
    letter-spacing: 0.25em;
    height: 5em;
    line-height: 5em;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    outline: 0;
}

#nav > ul > li:hover > a {
    color: #fff;
}

#nav > ul > li.active > a, #nav > ul > li.active > span {
    color: #fff;
}

.dropotron {
    background: #222835 url("images/overlay.png");
    background-color: rgba(44, 50, 63, 0.925);
    padding: 1.25em 1em 1.25em 1em;
    border-radius: 0.35em;
    box-shadow: inset 0px 0px 1px 1px rgba(255, 255, 255, 0.25);
    min-width: 12em;
    text-align: left;
    margin-top: -1.25em;
    margin-left: -1px;
    list-style: none;
}

.dropotron.level-0 {
    margin-top: -1px;
    margin-left: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.dropotron a, .dropotron span {
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    display: block;
    color: #eee;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.7em;
    letter-spacing: 0.25em;
    border-top: solid 1px rgba(255, 255, 255, 0.15);
    line-height: 3em;
}

.dropotron li {
    padding-left: 0;
}

.dropotron li:first-child a, .dropotron li:first-child span {
    border-top: 0;
}

.dropotron li:hover > a, .dropotron li:hover > span {
    color: #fff;
}


#logo > img {
    border-radius: 100%;
    height: 10rem;
    margin-bottom: 0.25rem;
}