body {
    width: 100%;
    min-height: 100vh;
    font-size: 16px;
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(1em);
}

.hero {
    display: block;
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: right center;
}

.hero__content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.content-container {
    display: block;
    max-width: 1120px;
    margin: 0 auto;
    width: 100%;
    width: calc(100% - 2em);
}

.content-row {
    padding: 2em;
}

.content-row.content-row--fullheight {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

ul.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

ul.kvp-list > li:not(:last-child) {
    margin-bottom: 0.5em;
}

a.nav-link {
    font-family: 'Merriweather', serif;
    padding: 1em;
    display: block;
    font-size: 1.5em;
    color: #333;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

a.nav-link:after {
    content: " ";
    display: block;
    height: 2px;
    background-color: var(--c-subtle);
    top: 2em;
    position: absolute;
    right: 1em;
    left: 1em;
}

a.nav-link:hover::after,
a.nav-link.nav-link--active::after {
    background-color: var(--c-main);
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 -0.5em;
    flex-wrap: wrap;
}

.col {
    display: block;
    margin: 0.5em;
}

.col.col-6 {
    width: calc(50% - 1em);
}

.map {
    display: block;
    padding-top: 75%;
    position: relative;
    border-radius: 1em;
    overflow: hidden;
}

iframe.map__frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

h3.section-title {
    font-size: 2em;
    text-decoration: underline;
    text-decoration-color: var(--c-main);
    margin-bottom: 1em;
}

ul.kvp-list {
    font-size: 1.5em;
}

span.kvp-key {
    text-decoration: underline;
    text-decoration-color: var(--c-main);
}


@media screen and (max-width: 860px) {
    .col.col-6 {
        width: 100%;
    }

    .content-row {
        padding: 2em 0em;
    }
}