/* ------------------------------------------------------------------ */
/* General Styles */
/* ------------------------------------------------------------------ */

html {
    font-size: 62.5%;
    -webkit-font-smoothing: antialiased;
}

body {
    background: #0f0f0f;
    font-family: 'Helvetica', sans-serif;
    font-weight: normal;
    font-size: 15px;
    line-height: 30px;
    color: #838C95;
    margin: 0px;
    padding: 0px;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

.row {
    width: 96%;
    max-width: 1020px;
    margin: 0 auto;
}

ul {
    list-style: none outside;
}

li {
    line-height: 18px;
    margin-bottom: 12px;
}
/* ------------------------------------------------------------------ */
/* Header Styles */
/* ------------------------------------------------------------------ */

header {
    position: relative;
    height: 100vh;
    width: 100vw;
    background: #161415 url(./img/background.jpg) no-repeat top center;
    background-size: cover !important;
    -webkit-background-size: cover !important;
    text-align: center;
    overflow: hidden;
}

header:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

header .banner {
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    width: 85%;
    padding-bottom: 30px;
    text-align: center;
}

header .banner-text h1 {
    font-weight: normal;
    color: #fff;
    letter-spacing: -2px;
    margin: 0 auto 0.8em auto;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, .8);
}

header .banner-text h3 {
    font: 1.2em 'Roboto Slab', serif;
    color: #A8A8A8;
    margin: 0 auto;
    width: 90%;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, .5);
}

header .banner-text h3 span {
    color: #fff;
}

.hover {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header .social {
    margin: 24px 0;
    padding: 0;
    font-size: 32px;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, .8);
}

header .social li {
    display: inline-block;
    margin: 0 15px;
    padding: 0;
}

header a {
    color: #fff;
    text-decoration: none;
}

header a:hover {
    color: #01c7da;
}

header a .icon {
    display: inline-block;
    width: 1.0em;
    height: 1.0em;
    stroke-width: 0px;
    stroke: currentColor;
    fill: currentColor;
}

header .location {
    position: absolute;
    bottom: 30px;
    color: #A8A8A8;
    display: block;
    height: 42px;
    margin: 0 auto;
    width: 100%;
    font-size: 16px;
    line-height: 42px;
}

@media screen and (min-width: 1021px) {
    header .banner-text h1.responsive-headline {
        font-size: 90px;
    }
}

@media screen and (max-width: 1020px) {
    header .banner-text h1.responsive-headline {
        font-size: 9vw;
    }
}
/* ------------------------------------------------------------------ */
/* Modal Styles */
/* ------------------------------------------------------------------ */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 5vh;
    left: 0;
    top: 0;
    width: 100vw;
    height: 90vh;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}