body {
    font-family: 'Open Sans', sans-serif;
    position: relative;
}

body.no-scroll {
	overflow: hidden;
}

a {
    transition: all .2s ease-in-out;
    color: #f04e23;
}

.header {
    width: 100vw;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    transition: all .2s ease-in-out;
}

.header.is-hidden {
    top: -80px;
}

.header .logo {
    height: 40px;
}

.header a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    height: 40px;
    display: flex;
    align-items: center;
}

.header a:hover {
    color: #fff;
}

.header .actions .social {
    font-size: 20px;
}

.header .menu-open {
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.header .menu-open:hover {
    color: #fff;
    border-color: #fff;
}

.main-nav {
    position: fixed;
    top: 0;
    left: -125%;
    width: 360px;
    height: 100vh;
    background: #f04e23;
    z-index: 10000;
    box-shadow: 10px 0 20px rgba(0, 0, 0, 0.2);
    padding-top: 80px;
    transition: all .5s ease-in-out;
    overflow-y: auto;
}

.main-nav.is-open {
    left: 0;
}

.nav-link  {
    width: 100%;
    color: #fff;
    padding: 4px 40px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.5px;
    text-align: right;
    text-decoration: none;
}

.nav-link.nav-persona {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
}

.nav-link:hover {
    color: #000;
}

.nav-link.active {
    color: #000;
}

.main-nav .menu-close {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 40px;
    height: 40px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease-in-out;
    border: 1px solid #fff;
}

.main-nav .menu-close:hover {
    color: #000;
    border-color: #000;
}

.hero {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .video-poster {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000 url(../img/hero-still.jpg) no-repeat center center/cover;
}

.hero .video-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero .video {
    display: none;
    width: 100%;
    position: relative;
}

.hero .video .video-close {
    position: absolute;
    right: 0;
    top: 100px;
    color: rgba(255, 255, 255, .85);
    border: 1px solid rgba(255, 255, 255, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1;
    transition: all .2s ease-in-out;
}

.hero .video .video-close:hover {
    color: #fff;
    border-color: #fff;
}

.header.is-hidden + .hero .video .video-close {
    top: 20px;
}

.hero .video video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    left: 0;
    top: 0;
    background-size: cover;
    overflow: hidden;
}

.hero .play {
    text-decoration: none;
    color: rgba(255, 255, 255, .85);
    border: 1px solid rgba(255, 255, 255, .85);
}

.hero .play:hover {
    color: #fff;
    border-color: #fff;
}

.continue-handle {
    text-decoration: none;
    border: 1px solid #f04e23;
    display: inline-flex;
}

.continue-handle:hover {
    text-decoration: none;
    color: #fff;
    background: #f04e23;
    border: 1px solid #f04e23;
}

.continue-text {
    display: none;
}

.section-title {
    font-weight: 800;
}

@media (min-width: 768px) {

    .section-title {
        font-size: 3.5rem;
        letter-spacing: -1.5px;
    }

    .section-title::before {
        content: '_';
        position: relative;
        top: -10px;
        font-size: 4.5rem;
        font-weight: 400;
    }

    .text-lg {
        font-size: 20px;
    }

}

.persona {
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.persona figure {
    position: relative;
    overflow: hidden;
}

.persona figure .material-icons {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease-in-out;
}

.persona:hover figure .material-icons {
    color: #fff;
    border-color: #fff;
}

.persona figure img {
    transition: all .2s ease-in-out;
}

.persona:hover figure img {
    transform: scale(1.2);
}

.persona h3 {
    font-weight: 800;
}

@media (min-width: 768px) {

    .persona h3 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

}

.persona blockquote i {
    font-size: 48px;
    float: left;
    margin-right: 12px;
}

.persona-open {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 20000;
    display: none;
}

.persona-close {
    position: absolute;
    right: 0;
    top: 0;
    color: rgba(255, 255, 255, .85);
    border: 1px solid rgba(255, 255, 255, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    transition: all .2s ease-in-out;
}

.persona-close:hover {
    color: #fff;
    border-color: #fff;
}

.persona-gallery {
    height: 100vh;
    overflow-y: auto;
}

.persona-gallery img {
    max-height: 100vh;
}

.text-title {
    font-family: 'Poppins', sans-serif;
}

.bg-green {
    background: #70844e;
}

.bg-black {
    background: #000;
}

.bg-orange {
    background: #f04e23;
}

.text-orange {
    color: #f04e23;
}

.bg-brown {
    background: #8b5f44;
}

.bg-yellow {
    background: #ffcb05;
}

.bg-lightgrey {
    background: #eee;
}

.text-yellow {
    color: #ffcb05;
}

/* Rules for sizing the icon. */
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }
