/* Globals */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html, body {
    color: #222;
    font-size: 16px;
    min-width: 320px;
    line-height: 1.5;
    min-height: 100vh;
    font-family: 'Merriweather', serif;
}

a {
    color: #024;
    text-decoration: none;
}

a:hover {
    opacity: .9;
}

h1 {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
}

/* Utils */
.header-inner,
.section__content,
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

.header-inner:after,
.media-list:after {
    content: "";
    clear: both;
    display: table;
}

/* Header */
.header {
    background: #021D3B;
}

.header-inner {
    padding: 50px 0 250px;
}

/* Footer */
.footer {
    background: #021D3B;
}

.footer-inner {
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.footer-inner a {
    color: #fff;
    text-decoration: underline;
}

/* Section */
.section--alt {
    background: #F6F6F6;
}

.section__content {
    padding: 90px 0;
}

.section__content__alpha {
    text-align: center;
    font-size: 1.4em;
}

.section--hero {
    position: relative;
    margin-top: -200px;
}

.section--hero .section__content {
    background: #fff;
    border-radius: 3px;
    padding-left: 40px;
    padding-right: 40px;
}

/* Logo */
.logo img {
    max-width: 275px;
}

/* Menu */
.menu a {
    color: #FFF;
    line-height: 3;
    font-weight: bold;
    margin-right: 40px;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
}

.menu a:last-of-type {
    margin-right: 0;
}

/* Media List */
.media-list {
    margin-bottom: 70px;
}

.media-list__item {
    text-align: center;
    margin-bottom: 10px;
}

.media-list__item img {
    width: 100%;
}

/* Timeline */
.timeline {
    padding: 80px 0 0;
}

.timeline__year {
    line-height: .8;
    font-size: 1.2em;
    font-weight: bold;
    position: relative;
    padding: 0 0 40px 30px;
    border-left: 5px solid #aaa;
}

.timeline__year::after {
    content: ' ';
    width: 17px;
    height: 17px;
    position: absolute;
    top: -1px;
    left: -11px;
    border-radius: 50%;
    background: #aaa;
}

.timeline__project {
    padding: 0 0 40px 30px;
    border-left: 5px solid #aaa;
}

.timeline__project__name {
    font-weight: bold;
}

.timeline__project__date {
    color: #555;
}

/* Mobile */
@media (max-width: 480px) {
}

/* Tablet */
@media (min-width: 481px) and (max-width: 768px) {
}

/* Tablet and Mobile */
@media (max-width: 768px) {
    .menu {
        margin-bottom: 20px;
    }
}

/* Desktop */
@media (min-width: 769px) {
    .menu {
        float: right;
    }

    .media-list__item {
        width: 38.5%;
        float: left;
        padding: 0 5px;
    }

    .media-list__item--slim {
        width: 22%;
    }
}