/* GLOBAL */
@font-face {
    font-family: "Yonder";
    font-style: normal;
    font-weight: normal;
    src: url("yonder.woff2") format("woff2");
    src: url("yonder.woff") format("woff");
}

@font-face {
    font-family: "Brandon Grotesque";
    font-style: normal;
    font-weight: normal;
    src: url("brandongrotesque-regular-webfont.woff2") format("woff2");
    src: url("brandongrotesque-regular-webfont.woff") format("woff");
}

@font-face {
    font-family: "Brandon Grotesque";
    font-style: normal;
    font-weight: bold;
    src: url("brandongrotesque-black-webfont.woff2") format("woff2");
    src: url("brandongrotesque-black-webfont.woff") format("woff");
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Brandon Grotesque";
    font-weight: normal;
    margin: 0px;
    -webkit-font-smoothing: antialiased;
    color: #555;
    font-size: 18px;
    line-height: 1.7;
}

p {
    margin-top: 0px;
    margin-bottom: 30px;
}

a {
    color: inherit;
}

h1, h2, h3 {
    font-family: "Yonder";
    font-weight: normal;
}

h4, h5, h6 {
    font-family: "Brandon Grotesque";
}

h1 {
    font-size: 75px;
    line-height: 0.8;
    margin: 0 0 30px 0;
}

h2 {
    font-size: 45px;
    line-height: 0.8;
    text-transform: lowercase;
    margin: 0 0 16px 0;
}

h3 {
    font-size: 75px;
    line-height: 0.8;
    text-transform: lowercase;
    margin: 10px 0 40px 0;
}

h4 {
    font-weight: bold;
    font-size: 15px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 15px 0 20px 0;
}

h5 {
    font-weight: normal;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 14px 0;
}

h6 {
    font-weight: bold;
    font-size: 13px;
    margin: 0 0 5px 0;
}

@media(max-width: 750px) {
    h1 {
        font-size: 45px;
    }

    h2 {
        font-size: 27px;
        margin-bottom: 10px;
    }

    h5 {
        font-size: 12px;
    }
}

/* HERO */

.hero {
    position: relative;
    padding-bottom: 52.7%;
    height: 0px;
}

.hero-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.hero-content {
    position: absolute;
    width: 100%;
    top: 18%;
    text-align: center;
    color: white;
    z-index: 20;
}

.hero-logo {
    width: 90px;
    height: 50px;
}

.hero-title {
    position: relative;
    width: 343px;
    margin: 0 auto 14px auto;
}

.hero-title-text {
    margin: 0;
}

.hero-title-line {
    position: absolute;
    bottom: -11px;
    border-bottom: 1px solid #999;
}

.hero-title-line.left {
    width: 16px;
    left: 0px;
}

.hero-title-line.middle {
    width: 163px;
    left: 40px;
}

.hero-title-line.right {
    width: 115px;
    right: 0;
}

.hero-subtitle {
    position: relative;
    width: 343px;
    margin: 0 auto 30px auto;
    border-bottom: 1px solid #999;
}

.hero-subtitle sup {
    top: -9px;
    font-size: 60%;
}

.hero-backdrop {
    position: absolute;
    width: 400px;
    height: 300px;
    top: 15%;
    left: 50%;
    margin-left: -200px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    -webkit-filter: blur(10px);
    z-index: 10;
}

@media(max-width: 750px) {
    .hero-content {
        top: 10%;
    }

    .hero-logo {
        width: 30px;
        height: 17px;
    }

    .hero-title {
        width: 207px;
        margin-bottom: 10px;
    }

    .hero-title-line {
        bottom: -8px;
    }

    .hero-title-line.left {
        width: 8px;
    }

    .hero-title-line.middle {
        width: 98px;
        left: 25px;
    }

    .hero-title-line.right {
        width: 70px;
    }

    .hero-subtitle {
        width: 207px;
        margin-bottom: 15px;
    }

    .hero-subtitle sup {
        top: -5px;
    }

    .hero-backdrop {
        width: 300px;
        margin-left: -150px;
        height: 175px;
        top: 10%;
    }
}

/* SECTIONS */

.section {
    padding: 75px 30px 125px 30px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.section-inner {
    margin: -150px auto 0 auto;
    max-width: 600px;
}

.section.green {
    background-color: #96c9a5;
    color: #fff;
}

.section.red {
    background-color: #c74f41;
    color: #fff;
}

.section.gray {
    background-color: #f3f4ee;
}

#our-story {
    margin-top: 150px;
}

/* FOOTER */

#footer {
    padding: 15px 0;
}

#footer .section-inner {
    margin-top: -80px;
    width: 100%;
    max-width: 100%;
}

#footer h5 {
    position: relative;
    width: 130px;
    background-color: #fff;
    z-index: 200;
    margin: 0 auto;
}

.footer-wrapper {
    position: relative;
    padding: 15px 0;
}

.footer-line {
    position: absolute;
    top: 16px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    z-index: 100;
}