/********* SITE STYLES ********** */
html {
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

body {
  background-color: #111;
  font-family: "Lato", sans-serif; }

/* Tophat */
#tophat {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 40px;
  overflow: hidden; }
  @media (max-width: 767px) {
    #tophat {
      position: static; } }

#logo {
  width: 250px;
  height: 100%;
  float: left;
  line-height: 43px;
  vertical-align: middle; }
  #logo img {
    margin: 0 10px;
    width: 90%; }
  @media (max-width: 400px) {
    #logo {
      width: 200px; } }

.tophat-share-tools {
  float: right;
  height: 100%;
  line-height: 35px;
  font-size: 24px;
  vertical-align: middle;
  color: white;
  margin: 0 10px;
  text-align: center; }
  .tophat-share-tools span {
    cursor: pointer;
    vertical-align: middle;
    margin-right: 8px; }
    .tophat-share-tools span:hover {
      color: #EECF00; }
  @media (max-width: 760px) {
    .tophat-share-tools {
      font-size: 18px;
      line-height: 40px; } }

/* Slider */
#slides {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* border: 1px solid red */
  overflow: hidden;
  color: white; }
  @media (max-width: 767px) {
    #slides {
      position: static;
      height: auto;
      width: auto;
      overflow: auto; } }

#slider {
  height: 100%;
  width: 100%;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative; }
  @media (max-width: 767px) {
    #slider {
      height: auto;
      width: auto;
      -webkit-transform: translateY(0) !important;
      -moz-transform: translateY(0) !important;
      -ms-transform: translateY(0) !important;
      -o-transform: translateY(0) !important;
      transform: translateY(0) !important; } }

.slide {
  height: 100%;
  width: 100%;
  background-color: #111;
  position: relative;
  background-size: cover;
  background-position: center center;
  z-index: 8; }
  @media (max-width: 767px) {
    .slide {
      height: 300px;
      width: 100%; } }

#slide-1 {
  background-image: url("../images/slides/splash-alt-bs.jpg"); }

#slide-2 {
  background-image: url("../images/slides/slide-1.jpg"); }

#slide-3 {
  background-image: url("../images/slides/slide-2.jpg"); }

#slide-4 {
  background-image: url("../images/slides/slide-3.jpg"); }

#slide-5 {
  background-image: url("../images/slides/slide-4.jpg"); }

#slide-6 {
  background-image: url("../images/slides/slide-5.jpg"); }

#slide-7 {
  background-image: url("../images/slides/slide-6.jpg"); }

/* Info */
#info {
  position: absolute;
  bottom: 80px;
  left: 80px;
  width: 400px;
  padding: 10px 10px 25px 10px;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s; }
  #info.hidden {
    opacity: 0;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9); }
  #info.splash {
    bottom: 20px;
    left: 40px;
    width: auto;
    background-color: transparent; }
    @media (max-height: 700px) {
      #info.splash {
        bottom: 0; } }
  @media (max-width: 767px) {
    #info {
      display: none; } }

#time, .mobile-time {
  font-family: "Oswald", "Lato", sans-serif;
  font-weight: 300;
  font-size: 42px;
  line-height: 1; }
  #time span, .mobile-time span {
    font-size: 84px; }
  #time.hidden, .hidden.mobile-time {
    display: none; }

#location, .mobile-location {
  font-family: "Oswald", "Lato", sans-serif;
  font-size: 22px;
  line-height: 1.2;
  color: #EECF00;
  text-transform: uppercase;
  margin: 10px 0; }
  #location.hidden, .hidden.mobile-location {
    display: none; }

#desc {
  width: 380px; }
  #desc p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0; }
  .splash #desc {
    height: auto;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px; }

#btns {
  margin-top: 20px;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .splash #btns {
    width: 400px;
    text-align: center;
    margin-top: 0; }

.btn {
  display: inline-block;
  width: 60px;
  position: relative;
  text-align: center;
  font-size: 44px;
  cursor: pointer;
  margin-right: 15px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s; }
  .btn:hover {
    color: #EECF00; }
  .btn.inactive {
    opacity: 0.2;
    cursor: default; }
    .btn.inactive:after {
      color: white; }
  .btn:after {
    content: attr(data-label);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    color: #EECF00;
    font-family: "Oswald", "Lato", sans-serif;
    font-size: 14px; }

.splash .up, .splash #map-btn, .splash #video-btn {
  display: none; }

.splash .down {
  width: auto;
  font-size: 70px;
  line-height: 1; }
  .splash .down:after {
    content: "BEGIN"; }

/* Mobile info */
.mobile-info {
  display: none;
  padding: 15px;
  margin-bottom: 50px; }
  @media (max-width: 767px) {
    .mobile-info {
      display: block; } }

.mobile-time {
  font-size: 25px; }
  .mobile-time span {
    font-size: 50px; }

.mobile-location {
  font-size: 18px; }

.mobile-video {
  color: #EECF00;
  margin-top: 10px; }

/* Splash */
#splash, #mobile-title {
  font-family: "Oswald", "Lato", sans-serif;
  font-size: 1em; }
  #splash.hidden, .hidden#mobile-title {
    display: none; }
  @media (max-width: 900px) {
    #splash, #mobile-title {
      font-size: 0.8em; } }
  @media (max-width: 700px) {
    #splash, #mobile-title {
      font-size: 0.6em; } }

#tier-1, #mobile-tier-1 {
  font-weight: 300;
  font-size: 4.2857142857em;
  color: #EECF00;
  line-height: 1; }

#tier-2, #mobile-tier-2 {
  font-weight: 400;
  font-size: 6.1428571429em;
  line-height: 1;
  margin-bottom: 10px; }

/* Mobile splash */
#mobile-title {
  display: none;
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 0.5em; }
  @media (max-width: 767px) {
    #mobile-title {
      display: block; } }
  @media (max-width: 420px) {
    #mobile-title {
      font-size: 0.4em; } }
  @media (max-width: 340px) {
    #mobile-title {
      font-size: 0.37em; } }

/* Lightboxes */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 11;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s; }
  #overlay.hidden {
    opacity: 0;
    visibility: hidden; }

.lightbox {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: black;
  z-index: 12;
  opacity: 1;
  visibility: visible; }
  .lightbox.hidden {
    -webkit-transform: translateX(-50%) translateY(-60%);
    -moz-transform: translateX(-50%) translateY(-60%);
    -ms-transform: translateX(-50%) translateY(-60%);
    -o-transform: translateX(-50%) translateY(-60%);
    transform: translateX(-50%) translateY(-60%);
    opacity: 0;
    visibility: hidden; }

#map {
  height: 500px;
  width: 800px; }
  #map img {
    width: 100%; }
  @media (max-width: 820px), (max-height: 600px) {
    #map {
      height: 312px;
      width: 500px; } }
  @media (max-width: 550px), (max-height: 350px) {
    #map {
      display: none; } }

#video {
  height: 450px;
  width: 800px; }
  #video iframe {
    height: 100%;
    width: 100%; }
  @media (max-width: 820px), (max-height: 600px) {
    #video {
      height: 394px;
      width: 700px; } }
  @media (max-width: 767px) {
    #video {
      display: none; } }

#mobile-video {
  display: none;
  position: fixed; }
  @media (max-width: 767px) {
    #mobile-video {
      display: block; } }

.close-lightbox {
  color: white;
  position: absolute;
  bottom: 100%;
  right: 5px;
  margin-bottom: 5px;
  font-size: 40px;
  line-height: 1;
  cursor: pointer; }
  .close-lightbox:hover {
    color: #EECF00; }

/* More coverage */
#more-coverage {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  z-index: 12;
  text-align: center;
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s; }
  #more-coverage.hidden {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9); }
    @media (max-width: 767px) {
      #more-coverage.hidden {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1); } }
  @media (max-width: 767px) {
    #more-coverage {
      position: static;
      bottom: auto;
      left: auto;
      padding: 20px;
      background-color: #1C1C1C; } }
  #more-coverage header {
    font-family: "Oswald", "Lato", sans-serif;
    font-size: 60px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px; }
    .hidden #more-coverage header {
      visibility: hidden; }
      @media (max-width: 767px) {
        .hidden #more-coverage header {
          visibility: visible; } }
    @media (max-width: 767px) {
      #more-coverage header {
        font-size: 46px;
        margin-bottom: 30px; } }
  #more-coverage ul {
    border-bottom: 1px solid #444;
    margin: 0;
    padding: 5px 0;
    list-style: none;
    text-align: left; }
    .hidden #more-coverage ul {
      visibility: hidden; }
      @media (max-width: 767px) {
        .hidden #more-coverage ul {
          visibility: visible; } }
    #more-coverage ul li {
      margin: 20px;
      padding: 0;
      font-family: "Lato", sans-serif;
      font-size: 16px;
      font-weight: 700;
      line-height: 1;
      text-transform: uppercase; }
      #more-coverage ul li a:link, #more-coverage ul li a:visited, #more-coverage ul li a:hover, #more-coverage ul li a:active {
        color: #EECF00;
        text-decoration: none; }
      #more-coverage ul li a:hover {
        text-decoration: underline; }
    @media (max-width: 767px) {
      #more-coverage ul {
        border: none; } }

    #more-coverage ul li.longer {
      text-transform: none;
      line-height: 1.3;
    }

#more-coverage-grid {
  width: 768px;
  margin: 0 auto; }
  @media (max-width: 767px) {
    #more-coverage-grid {
      width: auto; } }

#handout-picture {
  float: left;
  padding: 30px 20px 30px 0;
  border-right: 1px solid #444;
  margin-right: 20px;
  position: relative;
  background-color: #111; }
  #handout-picture img {
    width: 175px; }
  @media (max-height: 600px) and (min-width: 767px) {
    #handout-picture {
      display: none; } }
  @media (max-width: 767px) {
    #handout-picture {
      float: none;
      padding: 0;
      border: 0;
      margin: 0;
      background-color: transparent; } }

#end-btns {
  margin-top: 20px;
  text-align: left; }
  .hidden #end-btns .btn {
    visibility: hidden; }
  #end-btns .btn {
    width: auto;
    font-size: 40px;
    margin: 0 20px; }
  @media (max-width: 767px) {
    #end-btns {
      display: none; } }

/* Credits */
#credits {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  color: #CCC;
  text-align: center;
  font-family: "Oswald", "Lato", sans-serif;
  font-size: 16px;
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s; }
  #credits.hidden {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9); }
    @media (max-width: 767px) {
      #credits.hidden {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1); } }
  @media (max-width: 767px) {
    #credits {
      position: static;
      bottom: auto;
      left: auto;
      border-top: 2px solid #555;
      padding: 20px;
      text-align: left;
      font-size: 14px;
      background-color: #1C1C1C; } }

/***** CLEARFIX **** */
.group:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0; }

* html .group {
  zoom: 1; }

*:first-child + html .group {
  zoom: 1; }
