* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.odometer.odometer-auto-theme, .odometer.odometer-theme-minimal {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  position: relative;
}

.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-minimal .odometer-digit {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  position: relative;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-minimal .odometer-digit .odometer-digit-spacer {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-minimal .odometer-digit .odometer-digit-inner {
  text-align: left;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-minimal .odometer-digit .odometer-ribbon {
  display: block;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner, .odometer.odometer-theme-minimal .odometer-digit .odometer-ribbon-inner {
  display: block;
  -webkit-backface-visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-minimal .odometer-digit .odometer-value {
  display: block;
  -webkit-transform: translateZ(0);
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value, .odometer.odometer-theme-minimal .odometer-digit .odometer-value.odometer-last-value {
  position: absolute;
}

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s;
}

.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-minimal.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner, .odometer.odometer-theme-minimal.odometer-animating-down .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

/* Report */
body {
  font-family: "Source Sans Pro", sans-serif;
  color: #111;
  transition: background-image 0.5s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (min-width: 600px) {
  body {
    color: #fff;
  }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 500;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}
nav #nav-left {
  display: flex;
  align-items: center;
  font-weight: bold;
}
nav #nav-left img {
  height: 20px;
  margin-right: 5px;
}
nav #nav-right {
  text-align: right;
}
nav #nav-right li {
  display: inline-block;
  margin-left: 10px;
}
nav #nav-right a:link, nav #nav-right a:visited {
  color: #fff;
  text-decoration: none;
}
nav #nav-right a:hover, nav #nav-right a:active {
  color: #eb8f22;
}
nav #points-wrap {
  display: none;
}

#nav-points-explain {
  position: fixed;
  top: 45px;
  right: 0;
  transition: 0.3s;
  opacity: 0;
  z-index: 1000;
  max-width: 100%;
  display: block;
  color: #fff;
}
#nav-points-explain #explain-close {
  background: #fff;
  width: 20px;
  height: 20px;
  color: #eb8f22;
  float: right;
  text-align: center;
  font-size: 20px;
  border-radius: 10px;
}
#nav-points-explain #explain-close:hover {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
}

.arrow-box {
  position: relative;
  background: #eb8f22;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 10px;
  max-width: 300px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}

.arrow-box:after, .arrow-box:before {
  bottom: 100%;
  left: 75%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.arrow-box:after {
  border-color: rgba(0, 173, 238, 0);
  border-bottom-color: #eb8f22;
  border-width: 10px;
  margin-left: -10px;
}

.arrow-box:before {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 11px;
  margin-left: -11px;
}

#intro-container {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  background-image: url(intro_static.jpg);
  background-size: cover;
  background-position: center;
}
#intro-container video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#intro-text {
  z-index: 100;
}

#set-height {
  display: block;
}

section {
  position: relative;
  font-size: 16px;
  line-height: 1.25em;
  padding: 40px 2.5%;
}
@media (min-width: 600px) {
  section {
    background: rgba(0, 0, 0, 0.8);
    max-width: 95%;
    width: 600px;
    margin-bottom: 200px;
  }
}
section a:link, section a:visited {
  color: #00adee;
}
@media (min-width: 600px) {
  section a:link, section a:visited {
    color: #fff;
  }
}
section a:hover, section a:active {
  color: #eb8f22;
}
section h1 {
  font-size: 40px;
  line-height: 1em;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 30px;
  color: #00adee;
}
@media (min-width: 600px) {
  section h1 {
    color: #fff;
  }
}
section h2 {
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #00adee;
}
@media (min-width: 600px) {
  section h2 {
    color: #fff;
  }
}
section h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  color: #eb8f22;
}
@media (min-width: 600px) {
  section h3 {
    color: #fff;
  }
}
section strong {
  font-weight: bold;
}
section p {
  margin-bottom: 0.8em;
}
section ul {
  margin-bottom: 0.8em;
  padding-left: 1.5em;
}
section ul li {
  list-style-type: disc;
  margin-bottom: 0.4em;
}
section.full {
  width: 95%;
}
section.full .inner {
  width: 100%;
  max-width: 600px;
}
section.full .names-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 1rem;
}
section.full .names-list p {
  margin-bottom: 0;
}
section.speaks {
  background: #1255a4;
  color: #fff;
}
@media (min-width: 600px) {
  section.speaks {
    background: rgba(0, 0, 0, 0.8);
  }
}
section.speaks h1, section.speaks h2, section.speaks h3 {
  color: #fff;
}
section.speaks .stat {
  background: none;
  border: 1px solid #fff;
}
section.top {
  width: 100%;
  max-width: 100%;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 600px) {
  section.top.large {
    font-size: 1.3em;
  }
}
section.top.large .inner {
  text-align: center;
}
section.top .inner {
  width: 90%;
  background: rgba(0, 0, 0, 0.8);
  padding: 30px;
}
@media (min-width: 600px) {
  section.top .inner {
    max-width: 600px;
  }
}
@media (min-width: 600px) {
  section.top.narrow .inner {
    max-width: 500px;
  }
}
section.top.narrow h1 {
  font-size: 55px;
}
@media (min-width: 600px) {
  section.top.narrow h1 {
    font-size: 80px;
  }
}
section.top p:last-child {
  margin-bottom: 0;
}
section.top #top-logos {
  width: 100%;
  margin-bottom: 30px;
}
section.top h1 {
  color: #fff;
}
section.top h1:last-child {
  margin-bottom: 0;
}
@media (min-width: 600px) {
  section.top h1 {
    font-size: 50px;
  }
}
section.top h1.story-title {
  font-size: 24px;
  margin-bottom: 0.5em;
}

.top-circle-img {
  display: block;
  width: 33%;
  float: right;
  border: 1px solid #fff;
  border-radius: 50%;
  margin-left: 10px;
  margin-bottom: 10px;
}

.small-head {
  margin-left: -2.5%;
  width: 105%;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .small-head {
    display: none;
  }
}

img.logo {
  width: 50%;
  display: block;
}

.logo img {
  width: 50%;
  display: block;
}

.outer-img-wrap {
  position: relative;
}

.outer-img {
  background: #fff;
  padding: 8px;
  color: #333;
  width: 80%;
  max-width: 350px;
  margin: 30px auto;
  transform: rotate(3deg);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}
@media (min-width: 600px) {
  .outer-img {
    padding: 15px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.6);
  }
}
@media (min-width: 1100px) {
  .outer-img {
    position: absolute;
    right: -450px;
    top: -50px;
    transition: 0.3s;
  }
  .outer-img:hover {
    transform: rotate(-1deg);
    max-width: 375px;
  }
}
.outer-img img {
  width: 100%;
}
.outer-img .caption {
  font-size: 12px;
  line-height: 1.25em;
  font-style: italic;
}

.stat {
  margin-bottom: 16px;
  background: #eb8f22;
  padding: 0 15px 15px 15px;
  border-radius: 5px;
  color: #fff;
}
@media (min-width: 600px) {
  .stat {
    background: none;
    border: 1px solid #fff;
  }
}
.stat .number {
  font-weight: 200;
  font-size: 100px;
  line-height: 1em;
}

.charts-outer {
  width: 100%;
}
.charts-outer:after {
  content: "";
  display: table;
  clear: both;
}
.charts-outer .chart {
  width: 100%;
}
@media (min-width: 600px) {
  .charts-outer .chart {
    width: 50%;
    float: left;
  }
}
.charts-outer .chart-inner {
  width: 100%;
}
.charts-outer .chart-inner h3 {
  font-size: 24px;
  line-height: 1em;
  margin-bottom: 10px;
  text-align: center;
}
@media (min-width: 600px) {
  .charts-outer .chart-inner {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
  }
}

#profile-btns {
  width: 100%;
  margin-bottom: 16px;
}
#profile-btns:after {
  content: "";
  display: table;
  clear: both;
}
#profile-btns #profile-picker-wrap, #profile-btns #profile-saver {
  display: block;
  width: 49%;
  float: left;
  height: 35px;
}
#profile-btns #profile-picker-wrap {
  border: 1px solid #fff;
  padding: 5px;
  margin-right: 2%;
}
#profile-btns #profile-saver:link, #profile-btns #profile-saver:visited {
  background: #eb8f22;
  color: #fff;
  padding: 5px;
  text-decoration: none;
  line-height: 25px;
  text-align: center;
}

#profile-badge {
  position: absolute;
  width: 400px;
  height: 400px;
  z-index: 100;
  pointer-events: none;
}

.point-btn {
  background: #fff;
  padding: 15px;
  color: #00adee;
  border-radius: 5px;
  display: flex;
  align-items: center;
  border: 1px solid #00adee;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (min-width: 600px) {
  .point-btn {
    border: none;
  }
}
.point-btn:hover {
  cursor: pointer;
  background: #00adee;
  color: #fff;
}
.point-btn i {
  font-size: 40px;
  line-height: 1em;
}
.point-btn .point-desc {
  margin-left: 15px;
  font-size: 20px;
  line-height: 1.3em;
}
.point-btn .icon-clicked {
  display: none;
}
.point-btn.clicked {
  background: #00adee;
  color: #fff;
}
.point-btn.clicked .icon-clicked {
  display: inline-block;
}
.point-btn.clicked .icon-unclicked {
  display: none;
}

#cover-foreground {
  background-image: url(cover_foreground.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  pointer-events: none;
}

/*# sourceMappingURL=main.css.map */
