@import url(//fonts.googleapis.com/css?family=Roboto:400,100,300,500,700);
html, body {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif !important;
    background-color: white;
    color: black;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

header {
    width: 110vw;
    -moz-box-shadow:    0 5px 10px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    box-shadow:         0 5px 10px rgba(0,0,0,0.1);
    background: black;
    z-index: 10;
}

.header-container {
    display: flex;
    background-color: black;
    color: white;
    width: 100vw;
    padding-left: 20px;
    padding-right: 20px;
}

.sticky {
    position: fixed;
    top: 0;
}

.sticky + .content {
    padding-top: 70px;
}

.header-padding {
    flex-grow: 1;
}

.header-links-container {
    margin-right: 16px;
}

.header-link {
    font-size: 16px;
    line-height: 70px;
    margin-left: 10px;
    margin-right: 10px;
    text-decoration: none;
    color: white;
}

.header-link:hover {
    color: white;
    text-decoration: none;
}

.header-link:active {
    color: white;
    text-decoration: none;
}

.header-link:focus {
    color: white;
    text-decoration: none;
}

.header-logo-container {
    height: 70px;
    display: flex;
    align-items: center;
}

.header-logo {
    height: 30px;
    margin: 20px;
}

.header-menu-container {
    display: none;
}

.container {
    max-width: 800px;
}

section {
    margin-top: 32px;
    margin-bottom: 32px;
}

.section-container {
    margin: 32px auto;
    padding: 0 64px;
}

.section-title-text {
    font-size: 24px;
    font-weight: 500;
    margin: 32px;
}

.section-title-text.huge {
    font-size: 38px;
}

.section-subtitle-text {
    font-size: 20px;
    font-weight: 500;
}

.section-text {
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
    margin: 32px;
}

.section-text-bold {
    font-weight: 500;
}

.people-link {
    color: black;
    text-decoration: none;
}

.people-link:hover {
    color: black;
    text-decoration: none;
}

footer {
    margin-top: auto;
    background-color: black !important;
    color: white;
    width: 110vw !important;
}

img.footer-logo {
    height: 20px;
    margin-top: 48px;
}

.footer-copyright {
    font-size: 16px;
    line-height: 50px;
    width: 100vw;
    text-align: center;
}

p.social-media {
    margin-top: 20px;
    margin-bottom: 14px;
}

img.social-media {
    width: 26px;
    height: 26px;
}

.section-investment-box {
    display: inline-flex;
    flex-direction: column;
    height: 16rem;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.investment-logo-box {
    height: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.investment-logo {
    display: block;
    height: 80px;
}

.investment-padding {
    flex-grow: 1;
}
.investment-text {
    margin: 10px;
    font-size: 20px;
    font-weight: 300;
}

.white-background {
    background-color: white;
}

.black-background {
    background-color: black;
}

.footer-container {
    display: flex;
    width: 100vw;
    padding-left: 25px;
    padding-right: 25px;
}

.footer-column-contents {
    line-height: 24px;
}

#contact.footer-column-contents {
    float: right;
}

a.footer-link {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: white;
    text-decoration: none;
}

a.footer-link:hover {
    color: white;
    text-decoration: none;
}

a.footer-link:active {
    color: white;
    text-decoration: none;
}

a.footer-link:focus {
    color: white;
    text-decoration: none;
}

a.footer-link:first-child {
    margin-top: 40px;
}

a.footer-link:last-child {
    margin-bottom: 14px;
}

p.copyright {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

@media only screen and (max-width: 1200px) {
    .container {
        max-width: 700px;
    }
}

section.menu-overlay {
    justify-content: center;
    position: fixed;
    top: 70px;
    margin: 0;
    width: 100%;
    background-color: black;
    z-index: 99999;
}

.menu-options-container {
    text-align: center;
    padding-bottom: 24px;
}

.menu-option {
    display: block;
    font-size: 20px;
    line-height: 40px;
    text-decoration: none;
    color: white;
}

.menu-option:hover {
    color: white;
    text-decoration: none;
}

.menu-option:active {
    color: white;
    text-decoration: none;
}

.menu-option:focus {
    color: white;
    text-decoration: none;
}

@media only screen and (max-width: 992px) {
    .container {
        max-width: 600px;
    }

    .header-links-container {
        display: none;
    }

    .header-menu-container {
        display: flex;
        justify-content: center;
        margin-right: 16px;
        height: 70px;
        width: 70px;
        align-items: center;
        font-size: 22px;
    }
}

@media only screen and (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .header-container {
        padding-left: 5px;
        padding-right: 5px;
    }

    .footer-container {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media only screen and (max-width: 576px) {
    .header-container {
        padding-left: 0;
        padding-right: 0;
    }

    .sticky + .content {
        padding-top: 50px;
    }

    .header-logo {
        height: 20px;
        margin: 20px;
    }

    .footer-container {
        padding-left: 0;
        padding-right: 0;
    }
}
