* {
    box-sizing: border-box;
}

html,
body {
    padding: 0;
    margin: 0;
}

html {
    font-size: 14px;
    line-height: 1.5;
}

body {
    background: #2c2b2e;
    color: #50575b;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 100%;
    overflow: hidden;
    height: 100vh;
}

.body--alternate {
    overflow: visible;
    height: 100%;
}

.body-wrapper {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #2c2b2e url(../img/ampventures-bg-dark.jpg) no-repeat center top;
    background-size: cover;
}

.body-wrapper--alternate {
    overflow: visible;
    height: 100%;
}

.logo-wrapper {
    width: 100vw;
    height: 75vh;
    overflow: hidden;
    position: relative;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    transition: 1s height ease-in-out;
}

.logo {
    width: 600px;
    transition: .75s width ease-in-out;
    max-width: 100%;
}

.logo--print {
    display: none;
}

@media print {
    .logo {
        display: none;
    }
    .logo--print {
        display: block;
        max-width: 15em;
    }
}

.body-wrapper--alternate .logo-wrapper {
    height: 5vh;
}

.body-wrapper--alternate .logo {
    width: 260px;
}

.content-wrapper {
    background: rgba(227, 229, 230, 0.6);
    width: 100%;
    min-height: 25vh;
}

.content-wrapper--inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px 100px 20px;
    min-height: 95vh;
}

.site-links {
    margin: 50px 0 0 0;
    padding: .5em;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    transition: 1s ease-in-out;
}

.body-wrapper--alternate .site-links {
    background: rgba(227, 229, 230, 0.6);
}

.site-links li {
    list-style: none;
    padding: .25em;
    display: inline-block;
}

.copyright {
    width: 100%;
}

.link-imp--active {
    font-weight: 700;
}

a {
    color: #50575b;
}

.imp {
    margin-top: 0;
}

.imp-headline {
    font-weight: 300;
}

.imp-wrapper {
    overflow: hidden;
}

@media screen and (min-width: 600px) {
    .imp-container {
        width: 33.333%;
        float: left;
    }
}

.imp-company-name {
    font-weight: 700;
}

.content-wrapper p {
    margin: 0 0 1em 0;
}

.content-wrapper h2 {
    font-size: 1em;
    margin: 2em 0 0 0;
}

/*# sourceMappingURL=main.css.map */