


























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

#hero {
  position: relative;
  border-bottom: 1px solid #ff5139;
  overflow: hidden;
  opacity: 0; }
  @media screen and (min-width: 601px) {
    #hero {
      border-bottom: none; } }
  #hero #scroller {
    opacity: 0;
    position: relative;
    overflow: hidden; }
    #hero #scroller ul {
      overflow: hidden; }
      #hero #scroller ul li {
        float: left;
        position: relative; }
        @media screen and (min-width: 601px) {
          #hero #scroller ul li {
            max-height: 720px; } }
        #hero #scroller ul li img {
          width: 100%; }
        #hero #scroller ul li iframe {
          width: 100%;
          height: 100%;
          position: absolute;
          left: 0;
          top: 0; }
        #hero #scroller ul li .close-button {
          position: absolute;
          z-index: 1;
          top: 0;
          right: 0;
          padding: 10px;
          color: white;
          display: none; }
  #hero .pagination-wrap {
    text-align: center; }
    #hero .pagination-wrap .pagination {
      position: absolute;
      bottom: 3%;
      width: 100%;
      display: none; }
      #hero .pagination-wrap .pagination li {
        display: inline-block;
        cursor: pointer;
        -webkit-transition: 0.3s background-color;
        -moz-transition: 0.3s background-color;
        transition: 0.3s background-color;
        margin: 8px;
        background-color: rgba(0, 0, 0, 0);
        border: 2px solid #403c3a;
        height: 18px;
        width: 18px;
        border-radius: 18px; }
        #hero .pagination-wrap .pagination li.active {
          background-color: #fe5443;
          border: none;
          height: 18px;
          width: 18px;
          border-radius: 18px; }
  #hero iframe {
    z-index: 11; }


.lightbox {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100000;
  position: fixed;
  top: 0;
  left: 0; }
  .lightbox .spinner {
    width: 31px;
    height: 31px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -15px 0 -15px;
    background: transparent url('/static/img/global/spinner.gif') top left no-repeat;
    z-index: 2;
    opacity: 0.9; }
  .lightbox .lightbox-inner {
    margin: 0 auto;
    top: 50%;
    position: relative; }
    .lightbox .lightbox-inner img.stretch {
      width: 100%; }
  .lightbox .close {
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
    cursor: pointer;
    font-weight: 300;
    text-transform: uppercase;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.75em;
    z-index: 1;
    color: white;
    width: 38px;
    height: 38px;
    background-image: url('/static/img/global/red-close.png');
    background-size: 38px 38px;
    background-repeat: no-repeat;
    background-position: bottom center; }
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 144dppx) {
      .lightbox .close {
        background-image: url('/static/img/global/red-close@2x.png');
        background-size: 38px 38px; } }
    .lightbox .close:hover {
      -webkit-transform: rotate(90deg);
      -moz-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      -o-transform: rotate(90deg);
      transform: rotate(90deg); }
