@charset "UTF-8";

/* HTML5 RESET ============================================================================= */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 62.5%;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

html,
body {
    height: 100vh;
    width: 100vw;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.6;
    color: #fff;
    background: #4e6857;
}

h1,
.h1 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 9rem;
    font-weight: 400;
}

h2,
.h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 0.8em;
}

h3,
.h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 0.3em;
}

h4,
.h4 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 3rem;
    font-weight: 500;
}

h5,
.h5 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
}

p {
    margin-bottom: 1em;
}

a {
    color: #000;
    text-decoration: underline;
    transition: all 0.3s;
}

a:hover,
a:focus {
    text-decoration: none;
    background-color: #c66444;
}

sup {
    font-size: 60%;
    vertical-align: super;
}

.inner {
    max-width: 1920px;
    padding: 0 20px;
    transition: all 0.3s;
}
@media screen and (min-width: 768px) {
    .inner {
        padding: 0 60px;
    }
}
@media screen and (min-width: 1024px) {
    .inner {
        padding: 0 150px;
    }
}

.section {
    padding: 40px 0;
}
@media screen and (min-width: 768px) {
    .section {
        padding: 80px 0;
    }
}

/* 
* Helper Classes
*-----------------------------*/
.bgcolor--main {
    background-color: #4e6857;
}

.bgcolor--primary {
    background-color: #c66444;
}

.bgcolor--secondary {
    background-color: #1a457c;
}

.bgcolor--tertiary {
    background-color: #c0872a;
}

.note {
    font-size: 1.3rem;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* 
* Header
*-----------------------------*/
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    color: #000;
    z-index: 10;
}

.header.shrink {
    position: fixed;
}

.header::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 50%;
    display: block;
    content: '';
    height: 50%;
    background: #1a457c;
    opacity: 1;
    transition: all 0.4s ease-in-out;
}

.header::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    content: '';
    background: #c66444;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.header.shrink::before {
    background: rgb(26,69,124,0);
    opacity: 0;
    height: 0;
}

.header__logo {
    line-height: 1;
    text-align: center;
    padding: 60px 0;
    transition: padding 0.4s ease-in-out;
}

.header.shrink .header__logo {
    padding: 0;
    text-align: left;
}

.header__logo svg {
    position: relative;
    top: 12px;
    max-width: 500px;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.header.shrink .header__logo svg {
    padding: 0;
    top: 7px;
    left: -35px;
    width: 160px;
}


/* 
* Main Content
*-----------------------------*/
#main {
    position: relative;
    top: 422px;
}

.section--intro {
    height: 40vh;
}

.project__title {
    text-align: center;
    margin-bottom: 0.1em;
}

.project__tagline {
    position: relative;
    text-align: center;
}

.project__item {
    margin-top: 30px;
    padding-top: 30px;
}
@media screen and (min-width: 768px) {
    .project__item {
        margin-top: 50px;
        padding-top: 50px;
    }
}

.project__item .description {
    display: block;
    transition: all 0.3s;
}
@media screen and (min-width: 768px) {
    .project__item .description {
        display: flex;
    }
}

.project__item .description__text {
    width: 100%;
    transition: all 0.3s;
}
@media screen and (min-width: 768px) {
    .project__item .description__text {
        width: 70%;
    }
}

.project__item .description__references {
    width: 100%;
    font-size: 75%;
    border-top: 1px solid #fff;
    margin-top: 40px;
    padding-top: 40px;
}
@media screen and (min-width: 768px) {
    .project__item .description__references {
        width: 30%;
        margin-top: 0;
        margin-left: 40px;
        padding-top: 0;
        padding-left: 40px;
        border-top: 0;
        border-left: 1px solid #fff;
    }
}

.gallery__container {
    width: 70%;
    padding: 60px 0 0 0;
}

.gallery {
    display: block;
    transition: all 0.3s;
}
/* @media screen and (min-width: 768px) {
    .gallery {
        display: flex;
        flex-wrap: wrap;
        width: 70%;
    }
} */

.gallery__item {
    width: 100%;
    margin-bottom: 40px;
    transition: all 0.3s;
}
/* @media screen and (min-width: 768px) {
    .gallery {
        width: 31%;
    }
} */

.gallery__item img {
    width: 100%;
}

.gallery__item a:hover,
.gallery__item a:focus {
    background-color: transparent;
}

.gallery figcaption,
.pswp__caption {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.3rem;
}

.pswp__caption__center {
    text-align: center;
}

/* 
* Footer
*-----------------------------*/
#footer {
    position: relative;
    top: 422px;
    color: #000;
    padding: 40px 0;
}

.footer-details__group {
    padding: 20px 0;
    margin: 20px 0;
    max-width: 250px;
}

.logo--oac {
    max-width: 250px;
}

.copyright {
    margin-top: 100px;
    text-align: center;
    transition: all 0.3s;
}
@media screen and (min-width: 768px) {
    .copyright {
        text-align: right;
    }
}

