body {
    margin: 0;
    padding: 0;
    font-size: 19px;
    font-family: Ovo, serif;
    font-weight: 400;
    line-height: 1.6em;
    letter-spacing: 0.38px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "EB Garamond", serif;
    font-weight: 300;
    line-height: 1.5em;
    text-align: center;
}

h1 {
    /* font-family: garamond-premier-pro-display; */
    font-size: 48px;
    letter-spacing: 0em;
    margin-top: 0;
}

h1 a {
    color: inherit;
    text-decoration: none;
}

h2 {
    font-size: 36px;
    letter-spacing: 0em;
}

h4 {
    font-size: 26px;
}

@media screen and (min-width: 768px) {
    h1 {
        font-size: 68px;
    }
    
    h2 {
        font-size: 51px;
    }
    
    h4 {
        font-size: 28px;
    }
}

blockquote {
    border: 2px solid #777;
    background: #dcfcf8;
}

@media screen and (max-width: 767px) {
    blockquote {
        margin-left: 1em;
        margin-right: 1em;
    }
}

address {
    text-align: center;
    font-style: normal;
}

address span {
    display: block;
    margin: 25px auto;
}

hr {
    color: rgba(255,109,87,.5);
    background-color: rgba(255,109,87,.5);
    border: none;
    height: 1px;
    padding: 17px auto;
}

.top-center,
.page-section-content {
    margin: 0 auto;
}

@media screen and (min-width: 960px) {
    .top-center,
    .page-section-content {
        max-width: 1200px;
        margin: 0 auto;
    }
}

.top-center {
    display: flex;
    justify-content: space-between;

}

@media screen and (max-width: 768px) {
    .top-center {
        flex-direction: column;
    }
}

.logo h1 {
    display: inline-block;
    height: 80px;
    line-height: 80px;
    font-size: 26px;
    margin: 0;
    padding: 0 10px 0;
}

.logo img {
    width: 80px;
    height: 80px;
    float: left;
}

@media (min-width: 768px) and (max-width: 959px) {
    .logo {
        display: flex;
        flex-direction: column;
    }

    .logo h1 {
        margin-bottom: 10px;
        font-size: 20px;
        line-height: inherit;
        height: inherit;
    }

    .logo img {
        display: block;
        margin: 0 auto;
    }
}

.header-nav-primary {
    display: flex;
}

@media screen and (min-width: 768px) {
    .header-nav-primary {
        padding: 30px 60px;
    }
}

@media screen and (max-width: 767px) {
    .header-nav-primary {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 1fr;
    }
}

.header-nav-item {
    margin: 0 10px;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: inherit;
    font-family: "EB Garamond";
    transition: color 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
    .header-nav-primary {
        background-color: #dcfcf8;
        justify-content: space-between;
    }

    .header-nav-item {
        text-align: center;
        margin: 0 1px;
    }
}

.header-nav-item:hover {
    color: #999;
    transition: color 0.25s ease-in-out;
}

.header-nav-folder-title:hover + span {
    display: block;
}

.site-inner {
    margin-bottom: 5em;
}

.page-hero {
    background: #aae4dc url(../images/hero.jpg) 0% 20%;
    background-size: 100% auto;
}

@media screen and (max-width: 767px) {
    .page-hero {
        background-size: cover;
        background-position: 50% 0px;
    }
}

.page-hero h1 {
    margin: 0;
    padding: 212px 0;
}

.page-hero h1 a {
    border-bottom: 1px solid #aaa;
    color: #222;
    transition: color 0.3s ease-in-out;
}

.page-hero-content h1 a:hover {
    color: #777;
    transition: color 0.3s ease-in-out;
}

main > h1 {
    padding: 19px 0;
    background-color: #aae4dc;
}

.page-section {
    margin: 30px 0;
}

@media screen and (min-width: 960px) {
    .page-section {
        margin: 80px 0;
    }
}
.page-section-content:after {
    content: '';
    display: table;
    clear: both;
}

.page-section-content p {
    padding: 0 1em;
}

@media screen and (min-width: 960px) {
    .index-main .page-section-content {
        width: 800px;
    }

    .page-main .page-section-content {
        max-width: 1140px;
    }

    .page-section-content p {
        padding: 0 68px;
    }
}

.page-section-content blockquote p {
    padding: 0 19px;
}

.section-image {
    margin-right: 1em;
    margin-left: 1em;
}

.section-image img {
    width: 100%;
}

.section-image ~ p {
    
}

@media screen and (min-width: 768px) {
    .section-image {
        width: 300px;
        float: left;
        margin-top: 0;
    }
    
    .section-image img {
        width: 300px;
    }
    
    .section-image ~ p {
        margin-left: 330px;
    }
}

.btn-holder {
    margin-top: 30px;
}

.btn-holder a {
    display: inline-block;
    padding: 8px 26px;
    background-color: #aae4dc;
    color: #fff;
    font-family: sans-serif;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-bottom {
    padding: 51px 0;
    background-color: #aae4dc;
}