body {
    font-family: 'raleway';
    background: none;
    color: white;
}
.video-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}
.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.video-container div.bg-hover {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    background-size: cover;
    background-position: center center;
}
#main-container {
    width: 100%;
    min-height: 100%;
}
#nav, #hero, #footer > div {
    max-width: 960px;
    width: 100%;
    margin: 100px auto;
}
#nav {
    padding: 50px 10px;
    margin: 0 auto;
}
#nav > span {
    margin-left: 40px;
    font-weight: bold;
    cursor: pointer;
}
#nav button {
    border-radius: 0;
    text-transform: none;
}
#footer {
    background-color: black;
    width: 100%;
    padding: 0 20px;
}
#footer > div {
    margin-bottom: 20px;
    margin-top: 0;
}
#hero > h1 {
    font-size: 48px;
    font-weight: normal;
    margin: 50px 0;
    text-align: center;
}
.orange-button {
    background-color: rgb(250, 117, 0);
    padding: 15px 25px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
}
.orange-button:hover {
    background-color: rgba(250, 117, 0, 0.8);
}

#footer-menu p {
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 40px;
}

#footer-menu span {
    margin-top: 15px;
}

#footer-menu span img {
    width: 32px;
    margin-right: 10px;
}
#footer-menu a {
    text-decoration: none;
    color: inherit;
}
#footer-menu a:hover {
    text-decoration: underline;
}

#footer-bottom span {
    color: #888;
    font-size: 14px;
    margin-top: 10px;
}
.premium-nav a {
    margin-left: 20px;
    cursor: pointer;
    color: white;
    text-decoration: none;
}
.premium-nav a.underline, .premium-nav a:hover {
    text-decoration: underline;
}
.premium-nav img {
    margin-right: 40px;
}
#hero.live-video {
    margin: 20px auto 150px;
}

@media (max-width: 767px) {
    .video-container {
        background: url('../images/mobiledog.png') center center / cover no-repeat;
    }

    .video-container video {
        display: none;
    }
}