html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: "Avenir Next W00", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #323232;
}

*,
*::after,
*::before {
    box-sizing: inherit;
}

a {
    color: #0079c1;
    text-decoration: none;
}

a:hover {
    color: #00598e;
}

h1, h2, h3 {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 40px;
}

h2 {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 400;
}

.container {
    background-color: #fff;
    color: #323232;
}

@media (min-width: 720px) {
    .container {

    }
}

.nav {
    display: flex;
    align-items: center;
    padding: 16px 48px;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
}

.nav-menu {
    display: flex;
    align-items: center;
}

@media (max-width: 720px) {
    .nav-menu {
        display: none;
    }
}

.nav-item {
    margin-left: 32px;
}

.nav-item-home {
    display: flex;
    align-items: center;
    margin-right: auto;
    font-weight: bold;
    font-size: 16px;
}

.nav-item-home svg {
    width: 48px;
    height: 48px;
    margin-right: 8px;
    transform: translateY(-6px);
}

.main {
    display: flex;
    height: calc(100vh - 110px);
    overflow: auto;
}

.main-box {
    flex: 1 1 50%;
    padding: 0 48px 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-actions {
    display: flex;
    align-items: center;
    margin-top: 32px;
}

@media (min-width: 720px) {
    .main-actions > * + * {
        margin-left: 16px;
    }
}

@media (max-width: 720px) {
    .main-actions {
        flex-wrap: wrap;
    }

    .main-actions > * {
        margin-right: 16px;
        margin-bottom: 16px;
    }
}

.hero {
    flex: 1 1 50%;
    color: rgba(0,0,0,.15);
    fill: currentColor;
}

.hero svg {
    display: block;
    width: 100%;
    height: 100%;
    margin-left: auto;
}

@media (max-width: 720px) {
    .hero {
        display: none;
    }
}

.footer {
    padding: 8px 48px;
    text-align: right;
    font-size: 10px;
}

.esri-button {
    width: auto;
    padding-left: 16px;
    padding-right: 16px;
}
