@import url('https://fonts.googleapis.com/css?family=Questrial');
html {
    min-height: 100%;
    height: 100%;
}
body {
    height: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background: #273787;
    background: url(../img/bg.jpg) #0d0c5c no-repeat;
    background-position: top center;
    background-size: cover;
    color: #fff;
    font-family: 'Questrial', sans-serif;
    position: relative;
}
body:after {
    content: "";
    display: block;
    width: 100%;
    height: 282px;
    position: fixed;
    left: 0;
    bottom: 0%;
    background: url(../img/bg-after.png) no-repeat;
    z-index: 10;
    display: none;
}
.grid-container {
    position: relative;
    z-index: 20;
}
.logo {
    margin-bottom: 1rem;
}
.logo img {
    position: relative;
    top: 40px;
}
.logo h1 {
    font-family: 'League Gothic', 'Oswald', sans-serif;
    line-height: 1;
    text-shadow: 0px 1px 1px rgba(13, 14, 97, 0.37);
    color: #fff;
    font-size: 2.9rem;
    position: relative;
}
select.form-control {
    font-weight: normal;
    appearance: none;
    -moz-appearance: none;
    border-radius: 4px;
    -webkit-appearance: none;
    border: none;
    margin: 1rem 0 1rem 0;
}
.item {
    margin-bottom: 2rem;
}
.item .thumbnail {
    margin-bottom: 0;
}
.inner a {
    display: block;
}
.inner .thumbnail {
    position: relative;
    border-radius: 3px;
    box-shadow: none;
    border: none;
    background: #fff;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    overflow: hidden;
}
.inner .thumbnail:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/play-button.png) no-repeat rgba(27, 27, 27, 0.51);
    background-position: center center;
    background-size: auto 30%;
    position: absolute;
    top: 0;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    left: 0;
    opacity: 0;
}
.inner a:hover .thumbnail:after {
    opacity: 1;
}
.inner a:hover .thumbnail {
    transform: scale(1.1);
}
a#fb {
    font-weight: 500;
    background: #4465ae;
    background: #3d5b9b;
    font-size: 0.9rem;
    border-radius: 3px;
}
a#fb:hover, a#fb:active {
    background: #4465ae;
}
a#tw {
    font-weight: 500;
    font-size: 0.9rem;
    background: rgb(29, 161, 242);
    margin-bottom: 0;
    border-radius: 3px;
}
a#tw:hover, a#tw:active {
    background: #1c94de;
}
.results {
    padding: 2rem 0;
    display: none;
}
.results.error {
    text-align: center;
    color: rgb(234, 58, 0);
    font-weight: bold;
    padding: 1rem 0;
    text-shadow: 1px 1px 1px #113b8d;
    display: block;
}
.social a {
    margin-bottom: 0;
}
.item p {
    color: #fff;
    margin-bottom: 0;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.73);
}
.info {
    padding-bottom: 2rem;
}
.copy p.lead {
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.copy p {
    margin-bottom: 0;
}
.copy p {
    text-shadow: 0px 1px 1px rgba(13, 14, 97, 0.37);
}
@media screen and (max-width: 39.9375em) {
    body {
        background-position: top;
        background-size: cover;
    }
    body:after {
        display: block;
    }
    .logo img {
        position: relative;
        top: 28px;
    }
    .logo h1 {
        font-size: 2.2rem;
    }
    .copy p.lead {
        font-size: 110%;
    }
}