html { height: 100%; }
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    height: 100%;
}
ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
button.menu-button {
    display: none;
}
li.menu-item a {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

li.menu-item {
    display: inline-block;
    margin: 0;
}

li.menu-item + li.menu-item {
    margin-left: 1em;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.header {
    background-color: rgba(0,0,0,0.5);
}
.main {
    background-image: url('images/ttg-bg-home.jpg');
    background-position: center top;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
.container.flex {
    display: flex;
    justify-content: space-between;
}
.navbar {
    margin: 3em 0 1em;
}
.logo {
    margin: 15px 0 -80px 0;
}
.cta-button a {
    background-color: #dd3831;
    color: #fff;
    display: inline-block;
    opacity: 1;
    line-height: 1;
    font-size: 1.5em;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    padding: 15px 10px;
    margin: 0;
    width: 250px;
    /* height: 64px; */
    text-align: center;
    box-sizing: border-box;
    letter-spacing: 0.025em;
}

.cta-button .icon {
    display: inline-block;
    vertical-align: text-bottom;
    height: 1em;
}

.cta {
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    padding: 15px 40px 25px;
    text-align: center;
    max-width: 530px;
    box-sizing: border-box;
    margin: 20px;
}

.cta h2 {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.home-cta.container {
    display: flex;
    justify-content: center;
    flex-flow: wrap;
    padding: 10vh 0;
}

.cta p {
    font-size: 21px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.footer {
    text-align: center;
    background-color: #fff;
    position: relative;
}

.copyright {
    background-color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    padding: 5px 0;
    text-transform: uppercase;
}

.locations {
    padding: 20px 0;
    background-color: #262626;
    color: #fff;
    font-family: 'Oswald', sans-serif;
}

span.location {
    margin: 0 5px;
}

span.location + span.location {
    border-left: 2px solid #fff;
    padding-left: 10px;
}

#mobile-navbar {
    display: none;
}

@media all and (max-width: 640px){
    .mobile-backdrop {
        background-color: rgba(0,0,0,0.5);
        min-height: 100vh;
    }
    .cta {
        background-color: transparent;
    }
    .cta h2 {
        font-size: 37px;
        max-width: 200px;
        margin: 0 auto;
    }
    .main {
        background-image: url('images/ttg-bg-home-s.jpg');
    }
    ul.menu {
        display: none;
    }
    button.menu-button {
        display: inline-block;
        font-family: 'Oswald', sans-serif;
        font-size: 18px;
        text-transform: uppercase;
        background-color: transparent;
        color: #fff;
    }
    .header {
        background-color: transparent;
    }
    .navbar {
        margin: 1.5em 0 1em;
    }


    .mobile-menu .menu-item {
        display: block;
        margin: 0;
        padding: 0;
    }

    #mobile-navbar {
        background-color: #555;
    }

    .mobile-menu .menu-item a {
        line-height: 1.5;
        padding: 10px;
        display: block;
        background-color: #4a4a4a;
    }

    .mobile-menu {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-menu li.menu-item + li.menu-item {
        margin: 0;
    }

    .mobile-menu .menu-item a:hover {
        background-color: #dd3831;
    }

}

/*
Slide Out
 */
body {
    width: 100%;
    height: 100%;
}

.slideout-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 256px;
    min-height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 0;
    display: none;
}

.slideout-menu-left {
    left: 0;
}

.slideout-menu-right {
    right: 0;
}

.slideout-panel {
    position: relative;
    z-index: 1;
    will-change: transform;
    background-color: #FFF; /* A background-color is required */
    min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block;
}