:root {
     /* -- variables for colors -- */
    --dark-black: rgba(10, 10, 17, 1);
    --dark-grey: rgba(189, 189, 189, 1);
    --very-dark-blue: #17212B;
    --grey: rgba(122, 138, 153, 1);
    --olive-green: #5C7434;
    --slate-grey: #7A8A99;
    --nearly-black: rgba(7, 7, 7, 1);
    --brass-orange: rgba(197, 159, 94, 1);
    --smart-white: #F8F5F1;
    --medium-grey: #848282;
    --solid-grey: #D8D8D8;
    --twitter-blue: #1DA1F2;
}

body {
    margin: 0;
    background: var(--smart-white);
}

@font-face {
    font-family: NeueHaasGrotDisp;
    font-weight: normal;
    src: local('NeueHaasGrotDisp') url("assets/fonts/NeueHaasGrotDisp-45Light.otf") format("opentype");
}

@font-face {
    font-family: NeueHaasGrotDisp;
    font-weight: bold;
    src: local('NeueHaasGrotDisp') url("assets/fonts/NeueHaasGrotDisp-75Bold.otf") format("opentype");
}

@font-face {
    font-family: NeueHaasGrotDisp;
    font-weight: 300;
    src: local('NeueHaasGrotDisp') url("assets/fonts/NeueHaasGrotDisp-35Thin.otf") format("opentype");
}

@font-face {
    font-family: NeueHaasGrotTextR;
    font-weight: normal;
    src: local('NeueHaasGrotTextR') url("assets/fonts/NeueHaasGrotTextRound-55Roman.otf") format("opentype");
}

@font-face {
    font-family: NeueHaasGrotTextR;
    font-weight: medium;
    src: local('NeueHaasGrotTextR') url("assets/fonts/NeueHaasGrotTextRound-65Medium.otf") format("opentype");
}

.layout {
    font-family: 'NeueHaasGrotDisp', sans-serif;
}

/* -- Containers -- */

.container {
    padding-left: 21%;
    padding-right: 21%;
}

.container--dark {
    padding-top: 3em;
    padding-bottom: 3em;
    background: var(--dark-black);
}

.container--info {
    background: white;
    display: flex;
    flex-direction: row;
    /* padding-bottom: 6em; */
}

.container--offwhite {
    background: var(--smart-white);
    color: var(--medium-grey);
    padding-top: 2.3em;
    padding-bottom: 5em;
}

/* -- Branding -- */

.logo {
    height: 32px;
}

.branding {
    max-width: 644px;
    padding-top: 9em;
    padding-bottom: 5em;
}

.branding__name {
    height: 112.96px;
    padding-bottom: 1.5em;
}

.branding__text {
    font-size: 28px;
    font-weight: 300;
    color: var(--dark-grey);
    line-height: 34px;
}

/* -- Information -- */

.info-col {
    padding-top: 4.6em;
    padding-bottom: 5em;
    width: 50%;
}

.info-col__title {
    color: var(--very-dark-blue);
    font-size: 13px;
    line-height: 20px;
}

.info-col hr {
    border-top: 1px solid var(--solid-grey);
    margin: 0;
}

.info-col__title, .info-item__title, .info-item__label > p {
    font-family: 'NeueHaasGrotTextR', sans-serif;
    font-weight: medium;
}

.info-col--documents {
    margin-right: 1.25em;
}

.info-item {
    padding-top: 1.1em;
    padding-bottom: 1.1em;
}

.info-item--documents {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-right: 0.8em;
}

.info-item__title {
    font-size: 17px;
}

.info-item__subtitle {
    font-size: 13px;
    color: var(--slate-grey);
}

.info-item__label {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.info-item__source {
    color: var(--brass-orange);
    padding-right: 1.25em;
    font-size: 13px;
}

.info-item__date {
    color: var(--grey);
    font-size: 13px;
}

.info-item__subtitle, .info-item__date {
    font-family: 'NeueHaasGrotTextR', sans-serif;
    font-weight: normal;
}

.info-item a {
    color: var(--nearly-black);
    text-decoration: none;
}

.info-item a:hover {
    color: var(--olive-green);
}

/* -- Footer -- */

.disclaimer {
    font-size: 12px;
    line-height: 19px;
    padding-bottom: 1em;
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 10px;
    line-height: 20px;
}

.footer__contact {
    display: flex;
    flex-direction: row;
}

.footer__email {
    text-decoration: none;
    color: var(--medium-grey);
}

.footer__email:hover {
    color: var(--olive-green);
}

.footer__social {
    width: 16px;
    height: 16px;
    margin-top: auto;
    margin-bottom: auto;
    padding-left: 0.75em;
}

.footer__social:hover {
    color: var(--twitter-blue);
}

.container--footer hr {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
}

/* -- Breakpoints -- */

/* -- Breakpoint for tablet devices -- */

@media (max-width: 1040px) {
    .container--info {
        flex-direction: column;
    }

    .info-col {
        padding-top: 2.5em;
        padding-bottom: 3em;
        width: 100%;
    }

    .info-col--documents {
        margin-right: 0;
        padding-bottom: 0;
    }

    .container--offwhite {
     padding-top: 2.5em;
    }

    /*
    .info-col--press {
        padding-top: 0.75em;
    }
    */
}

@media (max-width: 800px) {

    .branding__name {
        height: 66px;
    }
}

/* -- Breakpoint for mobile devices -- */

@media only screen and (max-width: 480px) {

    /* -- Containers -- */

    .container {
        padding-left: 3em;
        padding-right: 3em;
    }

    .container--dark {
        padding-top: 5em;
        padding-bottom: 5em;
        max-width: 100%;
    }

    /* -- Branding -- */

    .logo {
        height: 20.53px;
    }

    .branding__name {
        height: 40.37px;
        padding-bottom: 1.4em;
    }

    .branding__text {
        font-size: 18px;
        line-height: 22px;
    }

    /* -- Info Columns -- */

    .info-col__title {
        font-size: 10px;
    }

    .info-item {
        padding-top: 1.25em;
        padding-bottom: 1.25em;
    }

    .info-item__date {
        font-size: 10px;
    }

    .info-item__label p {
        font-size: 10px;
    }

    /* -- Footer -- */

    .disclaimer {
        font-size: 10px;
        line-height: 16px;
        padding-bottom: 1.375em;
    }
}
