body {
    font-family: 'Montserrat', sans-serif !important;
}

.sub-nav ul {
    top: auto;
    bottom: 3em;
    transform: translateX(-50%);
}

.sub-nav ul li {
    margin-bottom: 0;
    margin-right: 1em;
    display: inline-block;
}

.hero {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    max-width: 50%;
    text-align: center;
    color: #fff;
    font-size: 2.4em;
    z-index: 3;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, .3);
}

@media screen and (max-width: 767px) {
    .hero-text {
        max-width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .hero-text {
        font-size: 1.2em;
    }
}

@media screen and (max-width: 767px), screen and (min-width : 768px) and (max-width : 1024px) and (orientation: portrait) {
    .hero {
        position: relative;
        height: auto;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, .7);
    }

    .hero-text {
        font-size: 1em;
        width: 100%;
        padding: .5em 0;
    }
}

