/*
 * Swiper 2.7.0
 * Mobile touch slider and framework with hardware accelerated transitions
 *
 * http://www.idangero.us/sliders/swiper/
 *
 * Copyright 2010-2014, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 *
 * Licensed under GPL & MIT
 *
 * Released on: August 30, 2014
*/
/* ===============================================================
Basic Swiper Styles 
================================================================*/
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  -webkit-transition-property: -webkit-transform, left, top;
  -webkit-transition-duration: 0s;
  -webkit-transform: translate3d(0px, 0, 0);
  -webkit-transition-timing-function: ease;
  -moz-transition-property: -moz-transform, left, top;
  -moz-transition-duration: 0s;
  -moz-transform: translate3d(0px, 0, 0);
  -moz-transition-timing-function: ease;
  -o-transition-property: -o-transform, left, top;
  -o-transition-duration: 0s;
  -o-transform: translate3d(0px, 0, 0);
  -o-transition-timing-function: ease;
  -o-transform: translate(0px, 0px);
  -ms-transition-property: -ms-transform, left, top;
  -ms-transition-duration: 0s;
  -ms-transform: translate3d(0px, 0, 0);
  -ms-transition-timing-function: ease;
  transition-property: transform, left, top;
  transition-duration: 0s;
  transform: translate3d(0px, 0, 0);
  transition-timing-function: ease;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  float: left;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y; }

.swiper-wp8-vertical {
  -ms-touch-action: pan-x; }

/* ===============================================================
Your custom styles, here you need to specify container's and slide's
sizes, pagination, etc.
================================================================*/
/* ===============================================================
Pagination Styles
================================================================*/
.section_title img {
  -webkit-animation-name: grow;
  -moz-animation-name: grow;
  animation-name: grow;
  -webkit-animation-duration: 30s;
  -moz-animation-duration: 30s;
  animation-duration: 30s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-animation-direction: alternate;
  -moz-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center; }

@-webkit-keyframes grow {
  from {
    -webkit-transform: scale(1); }
  to {
    -webkit-transform: scale(1.1); } }
@-moz-keyframes grow {
  from {
    -moz-transform: scale(1); }
  to {
    -moz-transform: scale(1.1); } }
@keyframes grow {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  to {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1); } }
#down-arrow-holder {
  -webkit-animation: arrowhint 10s infinite;
  -moz-animation: arrowhint 10s infinite;
  animation: arrowhint 10s infinite; }

@-webkit-keyframes arrowhint {
  0% {
    bottom: 60px; }
  90% {
    bottom: 60px; }
  92% {
    bottom: 50px; }
  94% {
    bottom: 60px; }
  96% {
    bottom: 50px; }
  98% {
    bottom: 60px; }
  100% {
    bottom: 60px; } }
@-moz-keyframes arrowhint {
  0% {
    bottom: 60px; }
  90% {
    bottom: 60px; }
  92% {
    bottom: 50px; }
  94% {
    bottom: 60px; }
  96% {
    bottom: 50px; }
  98% {
    bottom: 60px; }
  100% {
    bottom: 60px; } }
@keyframes arrowhint {
  0% {
    bottom: 60px; }
  90% {
    bottom: 60px; }
  92% {
    bottom: 50px; }
  94% {
    bottom: 60px; }
  96% {
    bottom: 50px; }
  98% {
    bottom: 60px; }
  100% {
    bottom: 60px; } }
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none; }

h1, h2, h3 {
  text-transform: uppercase;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

hr {
  height: 2px;
  width: 60px;
  background: #fff;
  border: none;
  border-bottom: 1px solid #d4d4d3; }
  hr.lefty {
    margin-left: 0;
    margin-right: 0; }

.clear_both {
  clear: both; }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  body > header nav > a.oh {
    background-image: url(/images/oh@2x.png); } }
body {
  background: #242424; }
  @media (min-width: 960px) {
    body > header {
      height: 62px;
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      background: center top url(../images/nav-bg-dark.jpg);
      overflow: hidden;
      z-index: 10;
      text-align: center; }
      body > header nav {
        min-width: 960px;
        height: 62px; }
        body > header nav #accent {
          position: absolute;
          top: 60px;
          left: 50%;
          height: 2px;
          width: 0px;
          background: #c4d237;
          -webkit-transition: 0.4s;
          -moz-transition: 0.4s;
          transition: 0.4s; } }
      @media (min-width: 960px) and (max-width: 959px) {
        body > header nav #accent {
          display: none; } }
    @media (min-width: 960px) and (max-width: 959px) {
      body > header nav {
        min-width: 0; } }
  @media (min-width: 960px) {
        body > header nav a {
          font-size: 27px;
          font-family: "UniversLT-ThinUltraCondensed", sans-serif;
          font-size: 27px;
          color: #a0a0a0;
          text-transform: uppercase;
          height: 62px;
          padding-right: 5px;
          letter-spacing: 0.04em; }
          body > header nav a#nav_home {
            text-indent: -54321em; }
        body > header nav > a {
          width: 100px;
          display: inline-block;
          line-height: 62px;
          position: relative; }
          body > header nav > a:hover {
            color: #c4d237; }
            body > header nav > a:hover i {
              color: #c4d237; }
          body > header nav > a i {
            font-size: 17px;
            position: relative;
            top: -4px;
            margin-left: 3px; }
          body > header nav > a.oh {
            background-image: url(../images/oh.png);
            background-repeat: no-repeat;
            background-size: 500% 500%;
            height: 60px;
            width: 100px;
            display: inline-block;
            text-indent: -54321em;
            -webkit-transition: 0s;
            -moz-transition: 0s;
            transition: 0s;
            top: 5px; }
        body > header nav ol {
          display: inline-block;
          counter-reset: li;
          background-image: url(../images/nav-bg.jpg);
          height: 62px; }
          body > header nav ol li {
            display: inline-block;
            height: 62px;
            text-align: center;
            margin: 0 7px;
            line-height: 70px; }
            body > header nav ol li:last-child {
              margin-right: 17px; }
            body > header nav ol li a {
              display: inline-block;
              width: 100%;
              height: 62px;
              position: relative; }
              body > header nav ol li a:before {
                content: counter(li);
                /* Use the counter as content */
                counter-increment: li;
                font-family: "minion-pro", serif;
                font-weight: 400;
                font-style: italic;
                font-size: 20px;
                color: #444;
                position: relative;
                top: -13px;
                line-height: 1; }
              body > header nav ol li a:hover {
                color: #c4d237; }
            body > header nav ol li.active a {
              color: #c4d237; }
        body > header nav #nav_trigger {
          display: none; } }
  @media (max-width: 959px) {
    body > header {
      height: 62px;
      background: left top repeat-x url(../images/nav-bg.jpg);
      overflow: auto;
      position: fixed;
      width: 100%;
      z-index: 5; }
      body > header.open {
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9); }
      body > header nav a {
        font-family: "UniversLT-ThinUltraCondensed", sans-serif;
        font-size: 9vh;
        color: #a0a0a0;
        font-size: 24px;
        text-transform: uppercase;
        padding: 15px 0 5px 5px;
        padding-right: 5px;
        letter-spacing: 0.04em; }
      body > header nav #nav_share {
        display: none; }
      body > header nav #nav_trigger {
        display: block;
        height: 62px;
        width: 62px;
        position: absolute;
        top: 0;
        right: 2vw;
        left: auto;
        background: no-repeat center 21px url(../images/mobile-nav-trigger.png);
        background-size: 28px auto;
        text-indent: -54321em; }
        body > header nav #nav_trigger.open {
          background-position: center -84px; }
      body > header nav #nav_home {
        height: 62px;
        width: 62px;
        position: absolute;
        top: 0;
        right: 0;
        left: 2vw;
        background: no-repeat center center url(../images/logo-top-mobile.png);
        background-size: 28px 22px;
        text-indent: -54321em; }
      body > header nav ol {
        position: absolute;
        top: 62px;
        left: -54321em;
        width: 100%;
        opacity: 0;
        -webkit-transition: opacity 0.5s;
        -moz-transition: opacity 0.5s;
        transition: opacity 0.5s;
        counter-reset: li; }
        body > header nav ol.open {
          opacity: 1;
          left: 0; }
        body > header nav ol li a {
          text-indent: 25px;
          display: inline-block;
          height: 8vh;
          height: auto;
          -webkit-transition: 0.5s;
          -moz-transition: 0.5s;
          transition: 0.5s; }
          body > header nav ol li a:before {
            content: counter(li);
            /* Use the counter as content */
            counter-increment: li;
            font-family: "minion-pro", serif;
            font-weight: 400;
            font-style: italic;
            font-size: 5vh;
            color: #444;
            font-size: 18px;
            position: relative;
            top: -20px;
            line-height: 1; } }

#mahalo {
  padding-top: 62px; }
  @media (max-width: 959px) {
    #mahalo {
      padding-top: 62px;
      width: 100%; } }
  #mahalo .on_view_fade {
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
    opacity: 0; }
    @media (max-width: 959px) {
      #mahalo .on_view_fade {
        opacity: 1; } }
  #mahalo > article {
    position: relative; }
  #mahalo p {
    color: #a6a6a6; }
  #mahalo .section_label {
    position: absolute;
    top: 170px;
    left: 12.5%;
    width: 17%; }
    @media (max-width: 959px) {
      #mahalo .section_label {
        position: static;
        width: auto;
        padding-left: 5%;
        padding-right: 5%; } }
    #mahalo .section_label h1 {
      font-family: "UniversLT-ThinUltraCondensed", sans-serif;
      font-size: 44px;
      color: #3d3d3d;
      text-transform: uppercase; }
      @media (min-width: 960px) {
        #mahalo .section_label h1 span {
          display: block;
          font-size: 180px; } }
    #mahalo .section_label p {
      font-family: "minion-pro", serif;
      font-weight: 400;
      font-style: italic;
      font-size: 23px;
      color: #a6a6a6;
      line-height: 53px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
      @media (max-width: 959px) {
        #mahalo .section_label p {
          line-height: 140%; } }
  #mahalo .green_heading {
    font-family: "UniversLT-ThinUltraCondensed", sans-serif;
    font-size: 90px;
    color: #c4d237;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.04em; }
  #mahalo .section_title {
    height: 660px;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    overflow: hidden; }
    @media (max-width: 959px) {
      #mahalo .section_title {
        height: auto;
        padding: 20px 0; } }
    #mahalo .section_title > img {
      position: absolute;
      opacity: 0; }
      @media (max-width: 959px) {
        #mahalo .section_title > img {
          display: none; } }
    #mahalo .section_title > div {
      position: relative;
      margin: auto;
      top: 80px; }
      @media (max-width: 959px) {
        #mahalo .section_title > div {
          top: 0; } }
      #mahalo .section_title > div h1 {
        font-family: "minion-pro", serif;
        font-weight: 400;
        font-style: normal;
        font-size: 28px;
        color: #c4d237;
        text-align: center;
        text-transform: none; }
        #mahalo .section_title > div h1 strong {
          font-family: "UniversLT-ThinUltraCondensed", sans-serif;
          font-size: 140px;
          color: #fff;
          text-transform: uppercase;
          font-weight: 700;
          display: block;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          letter-spacing: 0.04em;
          margin-top: 15px; }
          @media (max-width: 959px) {
            #mahalo .section_title > div h1 strong {
              font-size: 20vw; } }
    #mahalo .section_title p {
      position: absolute;
      bottom: 60px;
      left: 0;
      width: 100%;
      text-align: center;
      font-family: "UniversLTPro-UltraCn", sans-serif;
      font-size: 25px;
      color: #fff;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
      #mahalo .section_title p img {
        display: block;
        margin: 10px auto 0 auto; }
      @media (max-width: 959px) {
        #mahalo .section_title p {
          opacity: 0;
          filter: alpha(opacity=0);
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacity-ie)"; } }
  #mahalo .narrative {
    margin-left: 40%;
    width: 46%;
    min-width: 550px;
    max-width: 670px; }
    @media (max-width: 959px) {
      #mahalo .narrative {
        min-width: 0;
        margin: 0;
        width: auto;
        max-width: auto;
        padding: 5%; } }
    #mahalo .narrative h2 {
      font-family: "UniversLT-ThinUltraCondensed", sans-serif;
      font-size: 90px;
      color: #c4d237;
      font-weight: normal;
      -webkit-font-smoothing: subpixel-antialiased;
      -moz-osx-font-smoothing: auto;
      padding-bottom: 20px; }
    #mahalo .narrative > p {
      padding-top: 13px;
      font-family: "minion-pro", serif;
      font-weight: 500;
      font-style: normal;
      font-size: 17px;
      color: #a6a6a6;
      line-height: 40px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      margin-bottom: 10px; }
      @media (max-width: 959px) {
        #mahalo .narrative > p {
          line-height: 150%; } }
  #mahalo .mini_narrative {
    width: 90%;
    max-width: 1150px;
    min-width: 1000px;
    margin: 80px auto 0 auto; }
    @media (max-width: 959px) {
      #mahalo .mini_narrative {
        min-width: 0; } }
    #mahalo .mini_narrative > div {
      width: 38%;
      float: left; }
      #mahalo .mini_narrative > div.wide {
        width: 100%;
        float: none; }
      @media (max-width: 959px) {
        #mahalo .mini_narrative > div {
          width: auto; } }
      #mahalo .mini_narrative > div h2 {
        margin-bottom: 20px;
        font-size: 95px; }
      #mahalo .mini_narrative > div hr {
        margin-left: 5px; }
      #mahalo .mini_narrative > div p {
        font-family: "minion-pro", serif;
        font-weight: 500;
        font-style: normal;
        font-size: 17px;
        color: #a6a6a6;
        line-height: 40px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        margin: 15px 0; }
        @media (max-width: 959px) {
          #mahalo .mini_narrative > div p {
            line-height: 150%; } }
    #mahalo .mini_narrative section {
      float: right;
      width: 58%;
      max-width: 670px;
      margin-top: 97px;
      position: relative; }
      @media (max-width: 959px) {
        #mahalo .mini_narrative section {
          width: auto;
          float: none; } }
      #mahalo .mini_narrative section .swiper-container {
        width: 100%;
        overflow: hidden; }
        @media (min-width: 960px) {
          #mahalo .mini_narrative section .swiper-container > .slide_prev, #mahalo .mini_narrative section .swiper-container > .slide_next {
            display: none; } }
        #mahalo .mini_narrative section .swiper-container .swiper-slide,
        #mahalo .mini_narrative section .swiper-container .swiper-wrapper {
          width: 100%;
          background: center center no-repeat;
          background-size: cover; }
        #mahalo .mini_narrative section .swiper-container .swiper-slide {
          position: relative; }
          #mahalo .mini_narrative section .swiper-container .swiper-slide img {
            width: 100%;
            height: auto; }
        #mahalo .mini_narrative section .swiper-container p {
          height: 52px;
          width: 100%;
          text-align: right;
          line-height: 42px;
          font-family: "minion-pro", serif;
          font-weight: 400;
          font-style: italic;
          font-size: 17px;
          color: #a6a6a6;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale; }
          @media (max-width: 959px) {
            #mahalo .mini_narrative section .swiper-container p {
              text-align: center; } }
      #mahalo .mini_narrative section > p {
        position: relative;
        top: -37px;
        text-align: left;
        z-index: 1;
        float: left;
        background: #242424; }
        @media (max-width: 959px) {
          #mahalo .mini_narrative section > p {
            display: none; } }
        #mahalo .mini_narrative section > p .swiper-pagination-switch {
          width: 13px;
          height: 13px;
          display: inline-block;
          background: #747474;
          border-radius: 10px;
          margin-left: 2px;
          cursor: pointer;
          border: 3px solid #242424; }
        #mahalo .mini_narrative section > p .swiper-active-switch {
          background: #c4d237; }
      #mahalo .mini_narrative section .slide_prev,
      #mahalo .mini_narrative section .slide_next {
        background: no-repeat left -100px url(../images/taking-reigns-slider-prev-next.png);
        height: 50px;
        width: 50px;
        position: absolute;
        top: 50%;
        left: -7px;
        z-index: 1;
        text-indent: -54321em;
        text-align: left;
        margin-top: -50px; }
        #mahalo .mini_narrative section .slide_prev:hover,
        #mahalo .mini_narrative section .slide_next:hover {
          background-position: 0 -150px; }
      #mahalo .mini_narrative section .slide_next {
        background-position: 0 0;
        position: absolute;
        top: 50%;
        right: -7px;
        left: auto; }
        #mahalo .mini_narrative section .slide_next:hover {
          background-position: 0 -50px; }
      @media (max-width: 959px) {
        #mahalo .mini_narrative section > .slide_prev, #mahalo .mini_narrative section > .slide_next {
          display: none; } }
  #mahalo .watch_video {
    width: 90%;
    margin: 0 auto 90px auto;
    max-width: 1225px;
    position: relative; }
    #mahalo .watch_video:before {
      content: "";
      display: block;
      padding-top: 52.5%;
      /* initial ratio of 1:1*/ }
    #mahalo .watch_video > div {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      display: -webkit-box;
      display: -moz-box;
      display: box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      text-align: center; }
      #mahalo .watch_video > div > section {
        margin: auto; }
        #mahalo .watch_video > div > section h1 {
          text-align: center;
          font-family: "UniversLTPro-UltraCn", sans-serif;
          font-size: 22px;
          color: #c4d237;
          letter-spacing: 0.4em;
          padding-bottom: 15px; }
          @media (max-width: 959px) {
            #mahalo .watch_video > div > section h1 {
              font-size: 5vw;
              padding: 5px 0; } }
        #mahalo .watch_video > div > section h2 {
          font-family: "UniversLTPro-UltraCn", sans-serif;
          font-size: 82px;
          color: #fff;
          font-weight: 400; }
          @media (max-width: 959px) {
            #mahalo .watch_video > div > section h2 {
              font-size: 11vw; } }
        #mahalo .watch_video > div > section p {
          font-family: "minion-pro", serif;
          font-weight: 400;
          font-style: italic;
          font-size: 21px;
          color: #fff;
          padding: 10px 0 22px;
          text-align: center;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale; }
          @media (max-width: 959px) {
            #mahalo .watch_video > div > section p {
              font-size: 5vw; } }
        #mahalo .watch_video > div > section a {
          font-family: "UniversLTPro-UltraCn", sans-serif;
          font-size: 22px;
          color: #fff;
          text-align: center;
          text-transform: uppercase;
          display: inline-block;
          margin-top: 29px; }
          #mahalo .watch_video > div > section a:hover {
            color: #c4d237; }
        @media (max-width: 959px) {
          #mahalo .watch_video > div > section hr {
            display: none; }
          #mahalo .watch_video > div > section a {
            margin-top: 25px; } }
    #mahalo .watch_video iframe {
      left: -54321em;
      position: absolute;
      top: 0;
      left: -54321em;
      opacity: 0;
      -webkit-transition: opacity 1s;
      -moz-transition: opacity 1s;
      transition: opacity 1s; }
      #mahalo .watch_video iframe.showing {
        opacity: 1;
        left: 0; }
  #mahalo #pac12_player {
    opacity: 0;
    left: -54321em !important;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    transition: opacity 1s; }
    #mahalo #pac12_player.showing {
      left: 0 !important;
      opacity: 1; }
  #mahalo .video_desc {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    height: 670px;
    width: 90%;
    max-width: 1225px;
    margin: 0 auto 90px auto;
    position: relative; }
    #mahalo .video_desc > div {
      margin: auto;
      padding-top: 90px; }
      #mahalo .video_desc > div h1 {
        text-align: center;
        font-family: "UniversLTPro-UltraCn", sans-serif;
        font-size: 22px;
        color: #c4d237;
        letter-spacing: 0.4em;
        padding-bottom: 15px; }
      #mahalo .video_desc > div h2 {
        font-family: "UniversLTPro-UltraCn", sans-serif;
        font-size: 82px;
        color: #fff;
        font-weight: 400; }
      #mahalo .video_desc > div p {
        font-family: "minion-pro", serif;
        font-weight: 400;
        font-style: italic;
        font-size: 21px;
        color: #fff;
        padding: 10px 0 22px;
        text-align: center;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
      #mahalo .video_desc > div a {
        font-family: "UniversLTPro-UltraCn", sans-serif;
        font-size: 22px;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
        display: inline-block;
        margin-top: 29px; }
        #mahalo .video_desc > div a:hover {
          color: #c4d237; }
  #mahalo .defining_moment > div {
    width: 90%;
    min-width: 1000px;
    max-width: 1150px;
    margin: 0 auto;
    padding: 95px 0 40px 0; }
    @media (max-width: 959px) {
      #mahalo .defining_moment > div {
        min-width: 0;
        padding-top: 0;
        padding-bottom: 0; } }
    #mahalo .defining_moment > div h1 {
      word-spacing: 50px;
      font-family: "minion-pro", serif;
      font-weight: 400;
      font-style: italic;
      font-size: 27px;
      color: #b9b9b9;
      float: right;
      margin-right: 15%;
      position: relative;
      top: 32px; }
      @media (max-width: 959px) {
        #mahalo .defining_moment > div h1 {
          word-spacing: normal;
          float: none;
          position: static;
          margin: 0;
          padding: 10px 0; } }
      @media (min-width: 960px) {
        #mahalo .defining_moment > div h1:after, #mahalo .defining_moment > div h1:before {
          content: '--------------';
          text-indent: -54321em;
          height: 1px;
          width: 450px;
          background: #525252;
          position: absolute;
          top: -3px;
          left: -115px; } }
  @media (min-width: 960px) and (max-width: 959px) {
    #mahalo .defining_moment > div h1:after, #mahalo .defining_moment > div h1:before {
      display: none; } }
      @media (min-width: 960px) {
        #mahalo .defining_moment > div h1:before {
          position: absolute;
          top: auto;
          right: -115px;
          bottom: -3px;
          left: auto; } }
  @media (min-width: 960px) and (max-width: 959px) {
    #mahalo .defining_moment > div h1:before {
      display: none; } }
      @media (min-width: 960px) {
        #mahalo .defining_moment > div h1 span {
          position: absolute;
          left: 50%;
          margin-left: -18px;
          top: -9px;
          word-spacing: 0;
          height: 45px;
          width: 45px;
          background: no-repeat 0 0 url(../images/defining-moment-bg.png);
          font-size: 24px;
          font-weight: 600;
          text-align: center;
          line-height: 45px;
          z-index: 9; } }
  @media (min-width: 960px) and (max-width: 959px) {
    #mahalo .defining_moment > div h1 span {
      display: none; } }

    #mahalo .defining_moment > div h2 {
      margin-bottom: 20px;
      font-size: 95px;
      margin-left: 5%;
      position: relative; }
      @media (max-width: 959px) {
        #mahalo .defining_moment > div h2 {
          margin-left: 0; } }
    #mahalo .defining_moment > div hr {
      margin-left: 5.5%; }
    #mahalo .defining_moment > div p {
      font-family: "minion-pro", serif;
      font-weight: 500;
      font-style: normal;
      font-size: 17px;
      color: #a6a6a6;
      line-height: 40px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      width: 34%;
      margin: 15px 0 15px 5%; }
      @media (max-width: 959px) {
        #mahalo .defining_moment > div p {
          line-height: 150%; } }
      @media (max-width: 959px) {
        #mahalo .defining_moment > div p {
          width: 100%;
          margin-left: 0; } }
  #mahalo .narrative blockquote {
    position: relative;
    height: 343px;
    width: 960px;
    position: relative;
    left: -405px; }
    @media (max-width: 959px) {
      #mahalo .narrative blockquote {
        height: auto;
        width: 100%;
        left: 0;
        background: none !important; } }
    #mahalo .narrative blockquote:before {
      content: "\201c";
      position: absolute;
      top: 40px;
      left: 683px;
      font-family: "minion-pro", serif;
      font-weight: 700;
      font-style: normal;
      font-size: 30px;
      color: #b9b9b9; }
      @media (max-width: 959px) {
        #mahalo .narrative blockquote:before {
          display: none; } }
    #mahalo .narrative blockquote:after {
      content: "\25A1";
      text-indent: -54321em;
      position: absolute;
      top: 32px;
      left: 674px;
      height: 31px;
      width: 31px;
      border: 1px solid #c4d237;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg); }
      @media (max-width: 959px) {
        #mahalo .narrative blockquote:after {
          display: none; } }
    #mahalo .narrative blockquote p {
      padding: 126px 0 0 400px;
      font-family: "UniversLT-ThinUltraCondensed", sans-serif;
      font-size: 45px;
      color: #a6a6a6;
      letter-spacing: 0.04em;
      text-transform: uppercase; }
      @media (max-width: 959px) {
        #mahalo .narrative blockquote p {
          padding: 20px 0; } }
      @media (max-width: 959px) {
        #mahalo .narrative blockquote p br {
          display: none; } }
    #mahalo .narrative blockquote cite {
      padding: 50px 0 0 400px;
      font-family: "minion-pro", serif;
      font-weight: 400;
      font-style: italic;
      font-size: 22px;
      color: #888;
      display: block;
      position: relative; }
      @media (max-width: 959px) {
        #mahalo .narrative blockquote cite {
          padding: 20px; } }
      #mahalo .narrative blockquote cite:before {
        content: '--------------';
        text-indent: -54321em;
        height: 1px;
        width: 617px;
        background: #c4d237;
        position: absolute;
        top: 25px;
        left: 170px; }
        @media (max-width: 959px) {
          #mahalo .narrative blockquote cite:before {
            display: none; } }
  #mahalo .stats_summary {
    width: 90%;
    max-width: 1125px;
    margin: 30px auto 0 auto; }
    #mahalo .stats_summary h3 {
      font-family: "minion-pro", serif;
      font-weight: 400;
      font-style: italic;
      font-size: 30px;
      color: #a6a6a6;
      text-transform: none;
      line-height: 53px; }
      @media (max-width: 959px) {
        #mahalo .stats_summary h3 {
          line-height: 1;
          font-size: 7vw; } }
      @media (max-width: 959px) {
        #mahalo .stats_summary h3 br {
          display: none; } }
    #mahalo .stats_summary div {
      width: 100%; }
      #mahalo .stats_summary div h4 {
        text-align: right;
        width: 30%;
        margin-right: 4%;
        float: left;
        font-family: "UniversLT-ThinUltraCondensed", sans-serif;
        font-size: 44px;
        color: #3d3d3d;
        text-transform: uppercase;
        border-bottom: 1px solid #c4d237;
        padding-bottom: 18px;
        margin-bottom: 95px; }
        @media (max-width: 959px) {
          #mahalo .stats_summary div h4 {
            float: none;
            width: auto;
            margin-bottom: 25px; } }
      #mahalo .stats_summary div p {
        width: 22%;
        padding-left: 5%;
        float: left;
        font-family: "UniversLT-ThinUltraCondensed", sans-serif;
        font-size: 26px;
        color: #878787;
        letter-spacing: 0.08em;
        text-transform: uppercase; }
        @media (max-width: 959px) {
          #mahalo .stats_summary div p {
            width: auto !important;
            float: none; } }
        #mahalo .stats_summary div p strong {
          display: block;
          font-family: "UniversLTPro-UltraCn", sans-serif;
          font-size: 60px;
          color: #c4d237;
          margin-bottom: 10px;
          font-weight: 400;
          letter-spacing: 0.04em; }
      #mahalo .stats_summary div p.gpa {
        padding-left: 8%; }
      #mahalo .stats_summary div p.mentions {
        padding-left: 4%; }
  #mahalo .game_by_game {
    max-height: 918px; }
    @media (max-width: 959px) {
      #mahalo .game_by_game {
        display: none; } }
    #mahalo .game_by_game > div {
      width: 90%;
      margin: 0 auto;
      position: relative;
      min-width: 880px;
      max-width: 1180px; }
      @media (max-width: 959px) {
        #mahalo .game_by_game > div {
          min-width: 0; } }
      #mahalo .game_by_game > div .show_gallery {
        clear: both;
        position: absolute;
        right: 0;
        bottom: 0;
        font-family: "UniversLTPro-UltraCn", sans-serif;
        font-size: 23px;
        color: #888;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-transform: uppercase; }
        #mahalo .game_by_game > div .show_gallery:hover {
          color: #c4d237; }
        #mahalo .game_by_game > div .show_gallery img {
          margin-left: 25px; }
      #mahalo .game_by_game > div h1 {
        font-family: "minion-pro", serif;
        font-weight: 400;
        font-style: italic;
        font-size: 56px;
        color: #adb934;
        padding: 80px 0 0 70px;
        text-indent: -70px;
        position: relative;
        z-index: 2; }
        #mahalo .game_by_game > div h1 small {
          font-family: "UniversLTPro-UltraCn", sans-serif;
          font-size: 25px;
          color: #a0a0a0;
          font-style: normal;
          position: relative;
          top: -20px;
          left: -10px; }
      #mahalo .game_by_game > div h2 {
        font-family: "UniversLT-ThinUltraCondensed", sans-serif;
        font-size: 185px;
        color: #212121;
        letter-spacing: 0.04em;
        position: absolute;
        top: 70px;
        left: 170px;
        z-index: 1; }
        #mahalo .game_by_game > div h2:before, #mahalo .game_by_game > div h2:after {
          content: '--------------';
          text-indent: -54321em;
          height: 1px;
          width: 209px;
          background: #525252;
          position: absolute;
          top: 64px;
          left: -138px;
          z-index: -1; }
        #mahalo .game_by_game > div h2:after {
          width: 245px;
          top: 98px; }
      #mahalo .game_by_game > div > section {
        margin-top: 70px;
        height: 432px; }
        #mahalo .game_by_game > div > section .swiper-wrapper, #mahalo .game_by_game > div > section .swiper-slide {
          width: 100%;
          height: 432px; }
        #mahalo .game_by_game > div > section .swiper-slide {
          opacity: 0;
          -webkit-transition: opacity 1s;
          -moz-transition: opacity 1s;
          transition: opacity 1s; }
        #mahalo .game_by_game > div > section .swiper-slide-active {
          opacity: 1; }
        #mahalo .game_by_game > div > section .swiper-slide-visible {
          opacity: 1; }
        #mahalo .game_by_game > div > section h3 {
          font-family: "UniversLTPro-Condensed", sans-serif;
          font-size: 12px;
          color: #c4d237;
          letter-spacing: 0.08em; }
        #mahalo .game_by_game > div > section .score {
          width: 42%;
          float: left;
          height: 410px;
          position: relative;
          border-right: 1px solid #3d3d3d; }
          #mahalo .game_by_game > div > section .score span {
            position: absolute;
            top: 130px;
            left: 130px;
            font-family: "UniversLT-ThinUltraCondensed", sans-serif;
            font-size: 50px;
            color: #969696;
            text-transform: uppercase;
            text-shadow: 0px 1px 1px #000;
            letter-spacing: 0.04em; }
          #mahalo .game_by_game > div > section .score div {
            float: left; }
            #mahalo .game_by_game > div > section .score div + div {
              margin-left: 115px; }
            #mahalo .game_by_game > div > section .score div dl {
              font-family: "UniversLT-ThinUltraCondensed", sans-serif;
              font-size: 50px;
              color: #fff;
              text-transform: uppercase;
              letter-spacing: 0.04em;
              margin: 15px 0 0 0; }
              #mahalo .game_by_game > div > section .score div dl dd {
                font-size: 180px;
                color: #c4d237;
                margin: 0; }
          #mahalo .game_by_game > div > section .score p {
            clear: both;
            font-family: "minion-pro", serif;
            font-weight: 400;
            font-style: italic;
            font-size: 17px;
            color: #a6a6a6;
            width: 90%;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale; }
          #mahalo .game_by_game > div > section .score .prev_week, #mahalo .game_by_game > div > section .score .next_week {
            font-family: "UniversLTPro-UltraCn", sans-serif;
            font-size: 23px;
            color: #888;
            position: absolute;
            right: auto;
            bottom: 0;
            left: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-transform: uppercase; }
            #mahalo .game_by_game > div > section .score .prev_week:hover, #mahalo .game_by_game > div > section .score .next_week:hover {
              color: #c4d237; }
          #mahalo .game_by_game > div > section .score .prev_week:before {
            content: url(../images/arrow-left-sm-green.png);
            padding: 0 10px 0 0;
            position: relative;
            top: -2px; }
          #mahalo .game_by_game > div > section .score .next_week {
            left: auto;
            right: 100px; }
            #mahalo .game_by_game > div > section .score .next_week:after {
              content: url(../images/arrow-right-sm-green.png);
              position: relative;
              top: -2px;
              padding: 0 0 0 10px; }
        #mahalo .game_by_game > div > section .details {
          max-width: 58%;
          float: right;
          height: 410px;
          position: relative; }
          #mahalo .game_by_game > div > section .details div {
            float: left;
            padding-top: 10px; }
            #mahalo .game_by_game > div > section .details div + div {
              padding-left: 30px; }
              #mahalo .game_by_game > div > section .details div + div + div {
                padding-left: 70px; }
            #mahalo .game_by_game > div > section .details div dl {
              font-family: "UniversLT-ThinUltraCondensed", sans-serif;
              font-size: 35px;
              color: #969696;
              text-transform: uppercase;
              margin: 20px 0 0 0;
              letter-spacing: 0.04em; }
              #mahalo .game_by_game > div > section .details div dl dt {
                position: relative;
                top: 87px; }
              #mahalo .game_by_game > div > section .details div dl dd {
                font-size: 86px;
                color: #c4d237;
                margin: 0;
                position: relative;
                top: -30px;
                margin-bottom: 40px; }
  #mahalo .relative_grower {
    width: 100%;
    /* pick whatever width you want */ }
    #mahalo .relative_grower .relative_pusher {
      width: 100%;
      padding-top: 51%;
      /* defines aspect ratio */
      position: relative; }
      #mahalo .relative_grower .relative_pusher .relative_content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0; }
  #mahalo #introduction {
    position: relative; }
    @media (max-width: 959px) {
      #mahalo #introduction {
        background: no-repeat center center url("../images/hero-introduction.jpg");
        background-size: cover; } }
    #mahalo #introduction video {
      width: 100%;
      height: auto; }
      @media (max-width: 959px) {
        #mahalo #introduction video {
          display: none; } }
    #mahalo #introduction div {
      position: absolute;
      right: 0;
      left: 0;
      width: 100%; }
      @media (max-width: 959px) {
        #mahalo #introduction div {
          position: relative; } }
      #mahalo #introduction div h1 {
        font-family: "UniversLT-ThinUltraCondensed", sans-serif;
        font-size: 145px;
        color: #fbfbfb;
        text-transform: uppercase;
        text-align: center;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        letter-spacing: 0.08em;
        font-weight: 700;
        text-align: center; }
        @media (max-width: 959px) {
          #mahalo #introduction div h1 {
            font-size: 18vw;
            padding: 30% 0 0 0; } }
      #mahalo #introduction div h2 {
        font-family: "minion-pro", serif;
        font-weight: 400;
        font-style: normal;
        font-size: 28px;
        color: #c4d237;
        text-transform: none;
        text-align: center; }
        @media (max-width: 959px) {
          #mahalo #introduction div h2 {
            font-size: 7vw;
            padding: 15px 0 22px 0; } }
      @media (max-width: 959px) {
        #mahalo #introduction div {
          position: relative;
          bottom: auto; } }
      #mahalo #introduction div p {
        width: 100%;
        text-align: center;
        font-family: "UniversLTPro-UltraCn", sans-serif;
        font-size: 25px;
        color: #fff;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        position: absolute;
        top: 220px; }
        @media (max-width: 959px) {
          #mahalo #introduction div p {
            display: none; } }
        #mahalo #introduction div p img {
          display: block;
          margin: 10px auto 0 auto; }
  @media (max-width: 959px) {
    #mahalo #a_star_in_the_making {
      background: no-repeat center center url("../images/hero-a-star-in-the-making.jpg");
      background-size: cover; } }
  #mahalo #sec_one {
    padding: 465px 0 115px 0;
    background: no-repeat center center url("../images/bg-humble-to-heisman.jpg");
    background-size: 100% auto;
    background-position: center top; }
    @media (max-width: 959px) {
      #mahalo #sec_one {
        padding: 10% 0; } }
    #mahalo #sec_one .section_label {
      top: 170px; }
  #mahalo #awards_and_honors {
    background: no-repeat center 440px url(../images/bg-uo-wings-full.jpg); }
    #mahalo #awards_and_honors #highlight_reel {
      background: no-repeat center center url("../images/Heisman.jpg");
      background-size: cover; }
    #mahalo #awards_and_honors #the_honors {
      max-width: 1125px;
      min-width: 980px;
      height: auto;
      width: 85%;
      margin: 0 auto; }
      @media (max-width: 959px) {
        #mahalo #awards_and_honors #the_honors {
          min-width: 0; } }
      #mahalo #awards_and_honors #the_honors h1 {
        margin-bottom: 20px; }
      #mahalo #awards_and_honors #the_honors p {
        font-family: "minion-pro", serif;
        font-weight: 500;
        font-style: normal;
        font-size: 17px;
        color: #a6a6a6;
        line-height: 40px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        margin-top: 20px;
        width: 75%; }
        @media (max-width: 959px) {
          #mahalo #awards_and_honors #the_honors p {
            line-height: 150%; } }
        @media (max-width: 959px) {
          #mahalo #awards_and_honors #the_honors p {
            width: 100%; } }
      #mahalo #awards_and_honors #the_honors #list_of_honors {
        height: 265px;
        margin-top: 50px; }
        @media (max-width: 959px) {
          #mahalo #awards_and_honors #the_honors #list_of_honors {
            height: auto; } }
        #mahalo #awards_and_honors #the_honors #list_of_honors li {
          float: left;
          padding: 110px 115px 0 0;
          background: no-repeat left 5px;
          font-family: "UniversLT-ThinUltraCondensed", sans-serif;
          font-size: 35px;
          color: #969696;
          -webkit-font-smoothing: subpixel-antialiased;
          -moz-osx-font-smoothing: auto;
          font-weight: normal;
          text-transform: uppercase;
          letter-spacing: 0.04em; }
          @media (max-width: 959px) {
            #mahalo #awards_and_honors #the_honors #list_of_honors li {
              padding: 0 0 30px 50px;
              float: none;
              background-size: 30px auto; } }
          #mahalo #awards_and_honors #the_honors #list_of_honors li:last-child {
            padding-right: 0; }
          @media (min-width: 960px) {
            #mahalo #awards_and_honors #the_honors #list_of_honors li strong {
              font-family: "UniversLT-ThinUltraCondensed", sans-serif;
              font-size: 82px;
              color: #c4d237;
              display: block; } }
          @media (max-width: 959px) {
            #mahalo #awards_and_honors #the_honors #list_of_honors li {
              color: #c4d237; } }
        #mahalo #awards_and_honors #the_honors #list_of_honors #honors_ncaa {
          background-image: url(../images/honors-ncaa.png);
          background-position: left -1px; }
          @media (max-width: 959px) {
            #mahalo #awards_and_honors #the_honors #list_of_honors #honors_ncaa {
              background-position: left 2px; } }
        #mahalo #awards_and_honors #the_honors #list_of_honors #honors_oregon {
          background-image: url(../images/honors-oregon.png); }
        #mahalo #awards_and_honors #the_honors #list_of_honors #honors_gpa {
          background-image: url(../images/honors-gpa.png);
          padding-right: 135px; }
          @media (min-width: 960px) {
            #mahalo #awards_and_honors #the_honors #list_of_honors #honors_gpa {
              background-size: 89px auto; } }
          @media (max-width: 959px) {
            #mahalo #awards_and_honors #the_honors #list_of_honors #honors_gpa {
              padding-right: 0; } }
        #mahalo #awards_and_honors #the_honors #list_of_honors #honors_field {
          background-image: url(../images/honors-field.png); }
          @media (min-width: 960px) {
            #mahalo #awards_and_honors #the_honors #list_of_honors #honors_field {
              background-size: 83px auto; } }
      #mahalo #awards_and_honors #the_honors #more_honors {
        height: auto;
        margin-top: -100px;
        padding-bottom: 10%; }
        #mahalo #awards_and_honors #the_honors #more_honors:after {
          content: "";
          display: table;
          clear: both; }
        @media (max-width: 959px) {
          #mahalo #awards_and_honors #the_honors #more_honors {
            width: 100%; } }
        #mahalo #awards_and_honors #the_honors #more_honors div.left-column {
          float: left;
          width: 45%; }
          @media (max-width: 959px) {
            #mahalo #awards_and_honors #the_honors #more_honors div.left-column {
              float: none;
              width: auto; } }
        #mahalo #awards_and_honors #the_honors #more_honors div.right-column {
          width: 45%;
          position: absolute;
          right: 9%; }
          @media (max-width: 959px) {
            #mahalo #awards_and_honors #the_honors #more_honors div.right-column {
              float: none;
              width: auto;
              position: relative;
              right: 0%; } }
        #mahalo #awards_and_honors #the_honors #more_honors div.honor_block {
          padding: 110px 115px 0 0;
          background: no-repeat top left;
          font-family: "minion-pro", serif;
          font-weight: 400;
          font-style: italic;
          font-size: 19px;
          color: #969696;
          -webkit-font-smoothing: subpixel-antialiased;
          -moz-osx-font-smoothing: auto;
          font-weight: normal;
          letter-spacing: 0.04em;
          line-height: 1.8em;
          display: inline-block; }
          @media (max-width: 959px) {
            #mahalo #awards_and_honors #the_honors #more_honors div.honor_block {
              padding: 20px 0; } }
          #mahalo #awards_and_honors #the_honors #more_honors div.honor_block:last-child {
            padding-right: 0; }
          #mahalo #awards_and_honors #the_honors #more_honors div.honor_block span {
            font-family: "UniversLT-ThinUltraCondensed", sans-serif;
            font-size: 82px;
            color: #c4d237;
            display: block;
            font-style: normal; }
      #mahalo #awards_and_honors #the_honors hr {
        margin-left: 0; }
        #mahalo #awards_and_honors #the_honors hr.lefty {
          margin-left: 5px; }
      #mahalo #awards_and_honors #the_honors > a {
        margin: 25px 0 96px;
        display: inline-block;
        font-family: "UniversLTPro-UltraCn", sans-serif;
        font-size: 23px;
        color: #888;
        text-transform: uppercase; }
        #mahalo #awards_and_honors #the_honors > a:hover {
          color: #c4d237; }
        #mahalo #awards_and_honors #the_honors > a span {
          display: inline-block;
          width: 15px;
          background: no-repeat left center url(../images/arrow-right-sm-green.png);
          text-indent: -54321em;
          position: relative;
          top: -3px;
          margin-left: 9px; }
  #mahalo #sec_two {
    padding: 465px 0 115px 0;
    background: no-repeat center center url("../images/bg-a-legend-begins.jpg");
    background-size: 100% auto;
    background-position: center top; }
    @media (max-width: 959px) {
      #mahalo #sec_two {
        padding: 25px 0; } }
    #mahalo #sec_two .narrative blockquote {
      background: no-repeat left top url(../images/lamichael-james.png); }
      @media (max-width: 959px) {
        #mahalo #sec_two .narrative blockquote {
          background: none !important; } }
      #mahalo #sec_two .narrative blockquote:before {
        left: 584px; }
      #mahalo #sec_two .narrative blockquote:after {
        left: 575px; }
  @media (max-width: 959px) {
    #mahalo #year_one {
      background: no-repeat center center url("../images/hero-year-one.jpg");
      background-size: cover; } }
  #mahalo #sec_three {
    padding: 465px 0 0 0;
    background: no-repeat center center url("../images/bg-first-game.jpg");
    background-size: 100% auto;
    background-position: center top; }
    @media (max-width: 959px) {
      #mahalo #sec_three {
        padding: 25px 0; } }
    #mahalo #sec_three #debut_game {
      position: relative;
      padding-top: 75px; }
      @media (max-width: 959px) {
        #mahalo #sec_three #debut_game {
          padding-top: 0;
          padding: 0 5%; } }
      #mahalo #sec_three #debut_game video {
        width: 100%;
        height: auto; }
        @media (max-width: 959px) {
          #mahalo #sec_three #debut_game video {
            display: none; } }
      #mahalo #sec_three #debut_game div {
        width: 340px;
        position: absolute;
        bottom: 50px;
        left: 5%; }
        @media (max-width: 959px) {
          #mahalo #sec_three #debut_game div {
            width: 100%;
            left: 0;
            position: static; } }
        #mahalo #sec_three #debut_game div h3 {
          font-family: "UniversLT-ThinUltraCondensed", sans-serif;
          font-size: 60px;
          color: #c4d237;
          -webkit-font-smoothing: subpixel-antialiased;
          -moz-osx-font-smoothing: auto;
          line-height: 83px;
          font-weight: normal;
          text-transform: uppercase;
          letter-spacing: 0.04em; }
          @media (max-width: 959px) {
            #mahalo #sec_three #debut_game div h3 {
              font-size: 13vw;
              line-height: 1; } }
        #mahalo #sec_three #debut_game div p {
          font-family: "minion-pro", serif;
          font-weight: 400;
          font-style: italic;
          font-size: 22px;
          color: #a6a6a6;
          line-height: 35px;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale; }
          @media (max-width: 959px) {
            #mahalo #sec_three #debut_game div p {
              font-family: "minion-pro", serif;
              font-weight: 500;
              font-style: normal;
              font-size: 17px;
              color: #a6a6a6;
              line-height: 40px;
              -webkit-font-smoothing: antialiased;
              -moz-osx-font-smoothing: grayscale; } }
  @media (max-width: 959px) and (max-width: 959px) {
    #mahalo #sec_three #debut_game div p {
      line-height: 150%; } }

        #mahalo #sec_three #debut_game div time {
          display: block;
          font-family: "UniversLTPro-Condensed", sans-serif;
          font-size: 12px;
          color: #c4d237;
          text-transform: uppercase;
          padding-top: 25px; }
    #mahalo #sec_three #sec_3_continued {
      padding-top: 75px;
      background: 0 0 no-repeat url(../images/bg-uo-wings-left.jpg); }
      @media (max-width: 959px) {
        #mahalo #sec_three #sec_3_continued {
          padding-top: 0; } }
      #mahalo #sec_three #sec_3_continued .mini_narrative > section {
        padding-top: 0; }
      #mahalo #sec_three #sec_3_continued #big_games_stats p {
        width: 19%; }
    #mahalo #sec_three #fiesta_bowl {
      background: no-repeat center center url("../images/bg-fiesta-bowl.jpg");
      background-size: 100% auto;
      background-position: center top; }
    #mahalo #sec_three #video_fiesta_bowl {
      background: no-repeat center center url("../images/2012_FiestaBowl.jpg");
      background-size: cover; }
  #mahalo #season_2012 {
    background: no-repeat center center url("../images/bg-game-to-game-2012.jpg");
    background-size: cover;
    height: 918px; }
  @media (max-width: 959px) {
    #mahalo #mariotas_demeanor {
      background: no-repeat center center url("../images/hero-demeanor.jpg");
      background-size: cover; } }
  #mahalo #sec_four {
    padding: 420px 0 0 0;
    background: no-repeat center center url("../images/bg-cool-under-fire.jpg");
    background-size: 100% auto;
    background-position: center top; }
    @media (max-width: 959px) {
      #mahalo #sec_four {
        padding: 25px 0; } }
    #mahalo #sec_four #champion_in_classroom > section {
      padding-top: 0; }
    #mahalo #sec_four .narrative blockquote {
      margin-top: 50px;
      background: no-repeat left top url(../images/its-an-honor.png); }
    #mahalo #sec_four #academic_stats {
      padding-bottom: 6%; }
    #mahalo #sec_four #academic_stats h3 {
      margin-bottom: 40px; }
  @media (max-width: 959px) {
    #mahalo #year_two {
      background: no-repeat center center url("../images/hero-year-two.jpg");
      background-size: cover; } }
  #mahalo #sec_five {
    padding: 320px 0 0 0;
    background: no-repeat center center url("../images/bg-with-honors.jpg");
    background-size: 100% auto;
    background-position: center top; }
    @media (max-width: 959px) {
      #mahalo #sec_five {
        padding: 25px 0; } }
    #mahalo #sec_five #coming_out_swinging > section {
      margin-top: 0; }
    #mahalo #sec_five #stats_weeks_4-9_2013 p {
      width: 19%; }
    #mahalo #sec_five #injury_impact {
      background: no-repeat center center url("../images/bg-injury.jpg");
      background-size: 100% auto;
      background-position: center top; }
      #mahalo #sec_five #injury_impact #injury_continued {
        position: relative;
        overflow: hidden;
        min-height: 800px; }
        @media (max-width: 959px) {
          #mahalo #sec_five #injury_impact #injury_continued .relative_pusher {
            padding-top: 0; }
          #mahalo #sec_five #injury_impact #injury_continued .relative_content {
            position: static; } }
        #mahalo #sec_five #injury_impact #injury_continued video {
          position: absolute;
          bottom: 0;
          left: 0;
          height: auto;
          width: 100%; }
          @media (max-width: 959px) {
            #mahalo #sec_five #injury_impact #injury_continued video {
              display: none; } }
        #mahalo #sec_five #injury_impact #injury_continued #injury_copy {
          width: 340px;
          float: right;
          margin-right: 5%;
          padding: 50px 0;
          position: relative;
          z-index: 1; }
          @media (max-width: 959px) {
            #mahalo #sec_five #injury_impact #injury_continued #injury_copy {
              width: 100%;
              width: 100%;
              padding-left: 5%;
              padding-right: 5%;
              margin-right: 0;
              padding-top: 10px; } }
          #mahalo #sec_five #injury_impact #injury_continued #injury_copy h3 {
            font-family: "UniversLT-ThinUltraCondensed", sans-serif;
            font-size: 60px;
            color: #c4d237;
            -webkit-font-smoothing: subpixel-antialiased;
            -moz-osx-font-smoothing: auto;
            line-height: 83px;
            font-weight: normal;
            text-transform: uppercase;
            letter-spacing: 0.04em; }
          #mahalo #sec_five #injury_impact #injury_continued #injury_copy p {
            font-family: "minion-pro", serif;
            font-weight: 500;
            font-style: normal;
            font-size: 17px;
            color: #a6a6a6;
            line-height: 40px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale; }
            @media (max-width: 959px) {
              #mahalo #sec_five #injury_impact #injury_continued #injury_copy p {
                line-height: 150%; } }
            @media (max-width: 959px) {
              #mahalo #sec_five #injury_impact #injury_continued #injury_copy p {
                margin-bottom: 20px; } }
            #mahalo #sec_five #injury_impact #injury_continued #injury_copy p em {
              font-family: "minion-pro", serif;
              font-weight: 400;
              font-style: italic;
              font-size: 22px;
              color: #a6a6a6;
              line-height: 35px;
              -webkit-font-smoothing: antialiased;
              -moz-osx-font-smoothing: grayscale; }
          #mahalo #sec_five #injury_impact #injury_continued #injury_copy small {
            display: block;
            font-family: "UniversLTPro-Condensed", sans-serif;
            font-size: 12px;
            color: #c4d237;
            text-transform: uppercase;
            padding-top: 25px; }
    #mahalo #sec_five #getting_healthy {
      background: no-repeat center center url("../images/bg-healthy.jpg");
      background-size: 100% auto;
      background-position: center top; }
    #mahalo #sec_five #video_alamo_bowl {
      background: no-repeat center center url("../images/203_AlamoBowl.jpg");
      background-size: cover; }
    #mahalo #sec_five #the_decision {
      background: no-repeat center center url("../images/bg-decision.jpg");
      background-size: 100% auto;
      background-position: center top;
      padding-bottom: 100px; }
      #mahalo #sec_five #the_decision blockquote {
        background: no-repeat left top url(../images/decision-to-stay.png); }
        #mahalo #sec_five #the_decision blockquote:before {
          left: 564px; }
        #mahalo #sec_five #the_decision blockquote:after {
          left: 556px; }
    #mahalo #sec_five #coming_out_swinging > section {
      padding-top: 0; }
  #mahalo #season_2013 {
    background: no-repeat center center url("../images/bg-game-to-game-2013.jpg");
    background-size: cover;
    height: 918px; }
  @media (max-width: 959px) {
    #mahalo #becoming_a_champion {
      background: no-repeat center center url("../images/hero-becoming-a-champion.jpg");
      background-size: cover; } }
  #mahalo #sec_six {
    background: no-repeat center center url("../images/bg-recognizes-greatness.jpg");
    background-size: 100% auto;
    background-position: center top; }
    @media (max-width: 959px) {
      #mahalo #sec_six {
        padding: 25px 0; } }
    #mahalo #sec_six #greatness_recognizes_greatness {
      padding: 465px 0 100px; }
      @media (max-width: 959px) {
        #mahalo #sec_six #greatness_recognizes_greatness {
          padding: 30px 5%; } }
      #mahalo #sec_six #greatness_recognizes_greatness blockquote {
        background: no-repeat left top url(../images/harrington-quote.png); }
        #mahalo #sec_six #greatness_recognizes_greatness blockquote:before {
          left: 574px; }
        #mahalo #sec_six #greatness_recognizes_greatness blockquote:after {
          left: 566px; }
  #mahalo #year_three {
    background: no-repeat center center url("../images/hero-year-three.jpg");
    background-size: cover; }
  #mahalo #sec_seven {
    padding: 465px 0 0 0;
    background: no-repeat center center url("../images/bg-left-to-prove.jpg");
    background-size: 100% auto;
    background-position: center top; }
    @media (max-width: 959px) {
      #mahalo #sec_seven {
        padding: 30px 0; } }
    #mahalo #sec_seven .section_label {
      top: 170px; }
    #mahalo #sec_seven #coming_out_swinging > section {
      padding-top: 0; }
    #mahalo #sec_seven #start_of_run {
      position: relative;
      min-height: 600px;
      position: relative; }
      #mahalo #sec_seven #start_of_run video {
        width: 100%;
        height: auto; }
        @media (max-width: 959px) {
          #mahalo #sec_seven #start_of_run video {
            display: none; } }
      #mahalo #sec_seven #start_of_run div {
        width: 340px;
        position: absolute;
        top: 50%;
        right: 5%;
        margin-top: -270px; }
        @media (max-width: 959px) {
          #mahalo #sec_seven #start_of_run div {
            margin-top: 0;
            position: static;
            width: 100%;
            padding: 0 5%; } }
        #mahalo #sec_seven #start_of_run div h3 {
          font-family: "UniversLT-ThinUltraCondensed", sans-serif;
          font-size: 60px;
          color: #c4d237;
          -webkit-font-smoothing: subpixel-antialiased;
          -moz-osx-font-smoothing: auto;
          line-height: 83px;
          font-weight: normal;
          text-transform: uppercase;
          letter-spacing: 0.04em; }
        #mahalo #sec_seven #start_of_run div p {
          font-family: "minion-pro", serif;
          font-weight: 500;
          font-style: normal;
          font-size: 17px;
          color: #a6a6a6;
          line-height: 40px;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale; }
          @media (max-width: 959px) {
            #mahalo #sec_seven #start_of_run div p {
              line-height: 150%; } }
          #mahalo #sec_seven #start_of_run div p em {
            font-family: "minion-pro", serif;
            font-weight: 400;
            font-style: italic;
            font-size: 22px;
            color: #a6a6a6;
            line-height: 35px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale; }
        #mahalo #sec_seven #start_of_run div small {
          display: block;
          font-family: "UniversLTPro-Condensed", sans-serif;
          font-size: 12px;
          color: #c4d237;
          text-transform: uppercase;
          padding-top: 25px; }
    #mahalo #sec_seven #heisman_moment {
      background: no-repeat center center url("../images/bg-heisman-moment.jpg");
      background-size: 100% auto;
      background-position: center top; }
    #mahalo #sec_seven #overcoming_obstacles {
      padding-bottom: 100px; }
    #mahalo #sec_seven #leading_ducks {
      background: no-repeat center center url("../images/bg-leading-championship.jpg");
      background-size: 100% auto;
      background-position: center top; }
      #mahalo #sec_seven #leading_ducks #video_pac_12_championship {
        background: no-repeat center center url("../images/pac-12-championship-thumb.jpg");
        background-size: cover; }
  #mahalo #season_2014 {
    background: no-repeat center center url("../images/bg-game-to-game-2014.jpg");
    background-size: cover;
    height: 918px; }
  @media (max-width: 959px) {
    #mahalo #cementing_legacy {
      background: no-repeat center center url("../images/hero-legacy.jpg");
      background-size: cover; } }
  #mahalo #sec_eight {
    background: no-repeat center center url("../images/bg-actualizing-greatness.jpg");
    background-size: 100% auto;
    background-position: center top;
    padding-top: 415px; }
    @media (max-width: 959px) {
      #mahalo #sec_eight {
        padding: 30px 0; } }
    #mahalo #sec_eight #actualizing_greatness {
      padding-bottom: 110px; }
    #mahalo #sec_eight #whats_next {
      background: no-repeat center center url("../images/bg-whats-next.jpg");
      background-size: 100% auto;
      background-position: center top; }
    #mahalo #sec_eight #video_heisman_event {
      margin-top: 155px;
      background: no-repeat center center url("../images/heisman-event-thumb.jpg");
      background-size: cover; }
    #mahalo #sec_eight #more_info {
      min-width: 980px;
      padding-bottom: 150px; }
      @media (max-width: 959px) {
        #mahalo #sec_eight #more_info {
          min-width: 0; } }
      #mahalo #sec_eight #more_info p strong {
        color: #3d3d3d; }
      #mahalo #sec_eight #more_info p a {
        color: #878787; }
        #mahalo #sec_eight #more_info p a:hover {
          color: #c4d237; }
        #mahalo #sec_eight #more_info p a img {
          position: relative;
          top: -3px;
          display: inline-block;
          margin-left: 10px; }
    #mahalo #sec_eight #legacy_stats > p {
      padding-bottom: 20px; }
  #mahalo #gallery_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10;
    opacity: 1;
    opacity: 0;
    left: 0;
    left: -54321em;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    transition: opacity 1s;
    overflow: auto; }
    #mahalo #gallery_wrapper.visible {
      left: 0;
      opacity: 1; }
    #mahalo #gallery_wrapper #gallery_season {
      position: relative;
      top: 50%;
      margin-top: -300px;
      max-width: 1200px;
      margin: 0 auto; }
      #mahalo #gallery_wrapper #gallery_season .close_gallery {
        position: absolute;
        top: 20px;
        right: 0;
        z-index: 2; }
      #mahalo #gallery_wrapper #gallery_season .galleryNavContainer {
        position: absolute;
        top: 50%;
        margin-top: -25px;
        width: 100%; }
      #mahalo #gallery_wrapper #gallery_season .slide_prev,
      #mahalo #gallery_wrapper #gallery_season .slide_next {
        background: no-repeat left -100px url(../images/taking-reigns-slider-prev-next.png);
        height: 50px;
        width: 50px;
        position: absolute;
        top: 50%;
        left: 0;
        z-index: 1;
        text-indent: -54321em;
        text-align: left;
        margin: 25px 0 0 -7px;
        z-index: 2; }
        #mahalo #gallery_wrapper #gallery_season .slide_prev:hover,
        #mahalo #gallery_wrapper #gallery_season .slide_next:hover {
          background-position: 0 -150px; }
      #mahalo #gallery_wrapper #gallery_season .slide_next {
        position: absolute;
        top: 50%;
        right: 0;
        left: auto;
        background-position: 0 0;
        margin: 25px -7px 0 0; }
        #mahalo #gallery_wrapper #gallery_season .slide_next:hover {
          background-position: 0 -50px; }
      #mahalo #gallery_wrapper #gallery_season .swiper-container .swiper-wrapper {
        width: 90%; }
        #mahalo #gallery_wrapper #gallery_season .swiper-container .swiper-wrapper .swiper-slide {
          width: 100%;
          position: relative; }
          #mahalo #gallery_wrapper #gallery_season .swiper-container .swiper-wrapper .swiper-slide p {
            width: 100%;
            max-width: 1200px;
            font-family: "UniversLT-ThinUltraCondensed", sans-serif;
            font-size: 50px;
            color: #d9d9d9;
            font-weight: 600;
            padding-bottom: 15px;
            margin: 0 auto;
            text-transform: uppercase; }
          #mahalo #gallery_wrapper #gallery_season .swiper-container .swiper-wrapper .swiper-slide img {
            width: 100%;
            max-width: 1200px;
            height: auto;
            display: block;
            margin: 0 auto;
            -webkit-transition: 1s;
            -moz-transition: 1s;
            transition: 1s;
            opacity: 0; }
          #mahalo #gallery_wrapper #gallery_season .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active img {
            opacity: 1; }
  #mahalo section.view-link {
    height: 500px; }
    @media (max-width: 959px) {
      #mahalo section.view-link {
        height: auto; } }
    #mahalo section.view-link img {
      opacity: 1;
      width: 100%; }
    @media (max-width: 959px) {
      #mahalo section.view-link .view-change-link {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        vertical-align: bottom; } }
    #mahalo section.view-link .view-change-link a {
      color: #a6a6a6; }
      @media (max-width: 959px) {
        #mahalo section.view-link .view-change-link a {
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          position: absolute; } }
      #mahalo section.view-link .view-change-link a:hover {
        color: #c4d237; }
    #mahalo section.view-link div {
      top: 0; }
  #mahalo #sharePanel {
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3000;
    display: none; }
  #mahalo #sharePanel.visible {
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: rgba(255, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3000;
    display: none; }

#share_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10;
  opacity: 0;
  left: -54321em;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  transition: opacity 1s; }
  #share_wrapper.visible {
    left: 0;
    opacity: 1; }
  #share_wrapper > div {
    position: absolute;
    top: 50%;
    margin-top: -87px;
    width: 100%; }
  #share_wrapper h1 {
    font-family: "minion-pro", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 17px;
    color: #a6a6a6;
    line-height: 40px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 28px;
    color: #c4d237;
    text-transform: none;
    text-align: center;
    margin-bottom: 20px;
    position: relative; }
    @media (max-width: 959px) {
      #share_wrapper h1 {
        line-height: 150%; } }
    #share_wrapper h1 img {
      position: absolute;
      left: 50%;
      top: 11px;
      margin-left: 191px; }
  #share_wrapper ul {
    text-align: center;
    margin-top: 30px; }
    #share_wrapper ul li {
      display: inline-block;
      font-size: 40px;
      line-height: 80px;
      height: 80px;
      margin-left: 40px;
      border-right: 1px solid #3d3d3d; }
      #share_wrapper ul li:last-child {
        border-right: none; }
      #share_wrapper ul li a {
        color: #888;
        display: inline-block;
        margin-right: 40px; }
        #share_wrapper ul li a:hover {
          color: #c4d237; }

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