@font-face {
    font-family: 'latoblack';
    src: url('../fonts/lato-black-webfont.woff2') format('woff2'),
         url('../fonts/lato-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'latobold';
    src: url('../fonts/lato-bold-webfont.woff2') format('woff2'),
         url('../fonts/lato-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'latolight';
    src: url('../fonts/lato-light-webfont.woff2') format('woff2'),
         url('../fonts/lato-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'latoregular';
    src: url('../fonts/lato-regular-webfont.woff2') format('woff2'),
         url('../fonts/lato-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'latohairline';
    src: url('../fonts/lato-thin-webfont.woff2') format('woff2'),
         url('../fonts/lato-thin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

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;
}

html {
    height: 100%;
    background-color: #fff;
}

body {
  background: url() no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: fixed;
  background-color: #fff;
  background-repeat: none;
  touch-action: manipulation;
}

body:before, body:after {
    content: "";
    position: fixed;
    background: #fff;
    left: 0;
    right: 0;
    height: 0px;
}
body:before {
    top: 0;
}
body:after {
    bottom: 0;
}
body {
    border-left: 20px solid #fff;
    padding-right: 20px;
}


html, body {
  line-height: 1;
  
  background-color: #fff;
  font-family: 'latoregular', sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
  overscroll-behavior: none;
  width: 100%;
    width: -moz-available;          /* WebKit-based browsers will ignore this. */
    width: -webkit-fill-available;  /* Mozilla-based browsers will ignore this. */
    width: fill-available;
    height: 100%;
  overflow: auto;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'latobold', sans-serif;
}


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;
}


/* MAIN */


#main {
    position: relative;
    padding: 0;
    background-color: #fff;
    pointer-events: none;
    margin: 45px auto;

}

#main.landing {
    background: url(../img/bg_wide.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    position: static;
    
}

#bgg {
  width: 100%;
  position: relative;
  pointer-events: none;
}

#mbgg {
  width: 100%;
  position: relative;
  pointer-events: none;
  display: none;
}

#ibgg {
  width: 100%;
  position: relative;
  pointer-events: none;
  display: none;
}

.articleBox .dArticle {
  display: block;
}

.articleBox .iArticle {
  display: none;
}

@media screen and (max-width: 1022px) {
  #bgg {
    display: none;
  }

  #mbgg {
    display: none;
  }

  #ibgg {
    display: block;
  }

}

@media screen and (max-width: 670px) {
  #bgg {
    display: none;
  }

  #mbgg {
    display: block;
  }

  #ibgg {
    display: none;
  }

}

.navBar {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  padding: 10px 20px;
  z-index: 9999;
  height: 25px;
}

#original {
  color: #8f3515;
  font-family: 'latoregular', sans-serif;
  font-size: 14px;
  text-align: center;
  margin: 15px auto;
  font-weight: 500;
  letter-spacing: 0.5;
  padding-top: 0px;
  position: absolute;
  top: 0px;
  text-align: center;
  width: 99%;
/*  z-index: 999;*/
}

#social {
  float: right;
  margin-right: 54px;
  max-width: 175px;
  top:23px;
  pointer-events: all;
  z-index: 999;
  animation-duration: 2s;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}

#social a {
  color: #000;
  text-decoration: none;
  font-size: 1.75rem;
  margin-right: 25px;
  opacity: 0.5;
   -webkit-transition: all 0.5s ease;
   -moz-transition: all 0.5s ease;
   -ms-transition: all 0.5s ease;
   -o-transition: all 0.5s ease;
   transition: all 0.5s ease;
}

#social a:hover {
  opacity: 1;
}

#social.on a {
  color: #000;
}

.hamburger {
  pointer-events: all;
  position: absolute;
  z-index: 999;
  padding: 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; 
  animation-duration: 2s;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}

  .hamburger.is-active:hover {
    opacity: 1; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: rgba(0,0,0,1); }

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: rgba(0,0,0,1);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: ease; 

  }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
      background-color: rgba(0,0,0,1);
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    background-color: rgba(0,0,0,1);
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    background-color: rgba(0,0,0,1);
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }


#nav {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.95);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  opacity: 0;
  pointer-events: all;
  visibility: hidden;
}

.hop {
  opacity: 0.5;
     -webkit-transition: all 0.5s ease;
   -moz-transition: all 0.5s ease;
   -ms-transition: all 0.5s ease;
   -o-transition: all 0.5s ease;
   transition: all 0.5s ease;
}

.hop:hover {
   opacity: 1
 }

@media screen and (min-width: 600px) {
  #nav {
      min-height: 600px;
  }
}

@media screen and (max-width: 600px) {
  #nav {
      min-height: 400px;
  }
}

#nav a {
  color: rgba(0,0,0,0.5);
  font-family: 'latoregular', sans-serif;
  font-size: 2.5rem;
  text-decoration: none;
  font-weight: 900;
  touch-action: manipulation;
  display: block;
  position: relative;
  z-index: 99;
  pointer-events: all;
  cursor: pointer;
  transition: all 0.5s ease; 
}

#nav a:hover {
  color: rgba(0,0,0,1);
}

#nav.off {
  transition: all 1s ease;
}

#nav.on {
  opacity: 1;
  overflow: auto;
  visibility: visible;
  transition: all 1s ease;
}

#nav a.active {
  color: rgba(0,0,0,1);
}

#nav ul {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  pointer-events: all;
  cursor: pointer;
}

#rating {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}

#nav ul {
    width: 99%;
    margin: 0 auto;
    opacity: 0;
    transition: all 1s ease;
}

#nav li {
  display: block;
  text-align: center;
  margin: 7.5% 0;
  cursor: pointer;
}

#rating {
    text-align: center;
    transition: all 1s ease;
    max-width: 100%;
    margin: 0 auto;
    display: inline-block;
}

#rating img {
  width: 100%;
}

#social a:last-child {
  margin-right: 0;
}

#social a:hover {
  opacity: 1;
}

#content {
    pointer-events: none;
}

#content.landing {
  padding: 24.7%;
}

.learn #content {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    pointer-events: all;
}

#content h2 {
  position: absolute;
  left: 45px;
  bottom: 40px;
  font-size: 5rem;
  line-height: 5rem;
  font-weight: 600;
  color: #fff;
  font-family: 'latoblack', sans-serif;
  font-weight: 300;
  text-align: left;
}

.learn #content h2 {
  font-weight: 800;
  animation-duration: 2s;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
    font-size: 6rem;
    line-height: 6rem;
     bottom: 20px;
     display: inline-block;
}

h1#tt {
    color: #fff;
    margin: 0 auto;
    width: 100%;
    display: block;
    height: auto;
    max-height: 100%;
    max-width: 26.5%;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, 0%);
}

h1#tt a {
  display: block;
  cursor: pointer;
  pointer-events:all;
}

h1#ntt a {
  display: block;
  cursor: pointer;
  pointer-events:all;
}

h1#tt img {
  width: 100%;
}

h1#ntt {
    color: #fff;
    margin: 10% auto 5%;
    width: 100%;
    display: block;
    height: auto;
    max-height: 100%;
    max-width: 25%;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0;
    transition: all 1s ease;    
}

h1#ntt img {
  width: 100%;
}

.learn h1#tt {
  top: 5%;
  max-width: 20%;
  animation-duration: 2s;
}

#aboutFilm h2 {
  display: inline-block;
  position: relative;
  top:0px;
}

h1#htt {
    color: #fff;
    margin: 0 2.5%;
    width: 100%;
    display: inline-block;
    height: auto;
    max-height: 100%;
    max-width: 22.5%;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

h1#htt img {
  width: 100%;
}

h1#stt {
    color: #fff;
    margin: 0 auto;
    width: 100%;
    display: block;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

h1#stt img {
  width: 100%;
}

.round-button {
    box-sizing: border-box;
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 42.5px;
    padding: 12.5px;
    line-height: 13px;
    border: 1px solid #fff;
    border-radius: 10px;
    color: #f5f5f5;
    text-align: center;
    text-decoration: none;
    background-color: rgba(0,0,0,0.5);
    font-size: 14px;
    font-family: 'latolight', sans-serif;
    font-weight: bold;
    transition: all 0.3s ease;
    pointer-events: all;
    display: block;
    touch-action: manipulation;
    cursor: pointer;
}

.playSymbol {
  font-size: 18px;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.round-button:hover {
  background-color: rgba(0,0,0,1);
}

#play {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  margin: 5px auto 0;
  text-align: center;
  width: 100%;
  max-width: 150px;
    pointer-events: all;
    display: block;
    touch-action: manipulation;
    cursor: pointer;
}

#play p {
  margin: 16px auto;
}

.learn #play {
  position: absolute;
  top: 50%;
  right: 180px;
  margin: 0px auto 0px;
  max-width: 125px;
  transform:translate(-50%,-50%);
}

.learn #play .round-button {
    height: 33.5px;
    line-height: 12px;
    font-size: 13px;
    font-family: 'latolight', sans-serif;
    font-weight: bold;
    pointer-events: all;
    display: block;
    touch-action: manipulation;
    cursor: pointer;
    margin: 0px auto;
    padding: 9.5px;
}

.learn #play .playSymbol {
    font-size: 16px;
    margin-right: 5px;
    position: relative;
    top: 2px;
}

#notify {
  text-transform: capitalize;

}

.aLogo {
    display: inline-block;
    width: 100%;
    max-width: 75%;
}

.wide-button {
    display: block;
    margin: 0 auto;
    width: 120px;
    height: 26px;
    line-height: 20px;
    border: 1px solid #fff;
    padding-top: 6px;
    border-radius: 60px;
    color: #f5f5f5;
    text-align: center;
    text-decoration: none;
    background-color: rgba(255,255,255,0.15);
    font-size: 15px;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 1.05px;
}
.wide-button:hover {
  background-color: rgba(255,255,255,0.5);
}

#blockText {
    position: absolute;
    bottom: 12.5%;
    left: 50%;
    transform: translate(-50%, 50%);
    pointer-events: all;
    width: 11%;
}

.close-button {
    font-family: 'latoregular', sans-serif;
    font-size: 16px;
    font-weight: 400;
    position: absolute;
    right: 50px;
    top: 50px;
    color: #fff;
    opacity: 0.75;
    transition: all 0.3s ease;
    border: 1px solid #fff;
    padding: 20% 100%;
}

.close-button:hover {
  opacity: 1;
  background: rgba(255,255,255,0.25)
}

.otControlButton
{
    position: absolute;
    cursor: pointer;
    border: 1px soldid black;
}

#otCloseButton {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
}

.moreCredits {
  text-align: center;
}

.link-button {
    font-family: 'latoregular', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    opacity: 0.75;
    transition: all 0.3s ease;
    border: 1px solid #000;
    padding: 10px 50px;
    text-decoration: none;
    margin: 0 auto;
}

.link-button:hover {
  opacity: 1;
  background: rgba(0,0,0,0.25);
}

.bodyText {
  color: #fff;
  font-family: 'latoregular', sans-serif;
  font-size: 26px;
  text-align: center;
  width: 100%;
  margin: 15px auto;
  line-height: 3rem;
  font-weight: 500;
}

.smText {
  font-size: 16px;
  font-weight: 500;
  margin: 0px auto;
  line-height: 20px;
}

.sText {
  font-size: 12px;
  font-weight: 400;
  margin: 22px auto;
}

#sideLeft {
    position: absolute;
    bottom: 40%;
    left: 7%;
    transform: translate(0, 50%);
}

#sideLeft ul {
      text-align: center;
}

#sideLeft li {
  margin: 25% auto;
  max-width: 65%;
}

#sideLeft li img {
  width: 100%;
}

#sideLeft li:nth-of-type(2) {
  max-width: 40%;
}

#sideRight {
    position: absolute;
    bottom: 5%;
    right: 8%;
    transform: translate(0, -50%);
    width: 100%;
    max-width: 350px;
    text-align: center;
    pointer-events: all;
    color: #fff;
    font-family: 'latoregular', sans-serif;
    font-weight: 300;
    text-align: center;
}

#sideRight h3 {
      margin: 15px auto;
      line-height: 1.25rem;
      font-size: 1.25rem;
      font-weight: 500;
}

#sideRight p {
      font-size: 14px;
      text-align: center;
      margin: 15px auto;
      line-height: 10px;
}

#subNav {
  clear:both;
  margin-top: -5px;
}

.help #subNav {
  margin-top: 0;
}

#subNav li {
    padding: 20% 0% 3% 2.5%;
    margin: 20px 0px 0 0px;
    position: relative;
    cursor: pointer;
}

#subNav li:hover .dark {
  opacity: 0.5;
}

#subNav .subNavBlock {
    padding-bottom: 20px;
    z-index: 3;
    position: relative;
}

.learn #subNav .subNavBlock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
}

#subNav .subNavBlock h2 {
    color: #fff;
    font-size: 4.25rem;
    font-weight: 300;
    font-family: 'latoblack', sans-serif;
}

#subNav .subNavBlock p {
  color: #fff;
  position: absolute;
  bottom: 10%;
  right: 2.5%;
}

#subNav .subNavBlock a {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
}

.subLink {
  position: relative;
  display: block;
  text-decoration: none;
  z-index: 3;
}

.learn #subNav li {
    padding: 23% 0% 3.5% 0;
    margin: 0% 0% 50px 0.5%;
    position: relative;
    width: 49.22%;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
}

.learn #subNav li#moreHelp {
  margin: 0 10px 0 0;
}

.learn #subNav li#moreLearn {
  margin: 0 10px 0 0;
}

.learn #subNav .subNavBlock h2 {
    color: #fff;
    font-size: 2.75rem;
    font-weight: 800;
    width: 100%;
    line-height: 3.5rem;
}

#subNav #learnMore {
  background: url(../img/01_learn.jpg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
      -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

#subNav #joinHerd {
  background: url(../img/02_help.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
        -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

#subNav #aboutFilm {
  background: url(../img/03_more.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
        -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

#subNav #moreHelp {
  background: url(../img/more_side.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
        -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

#subNav #moreLearn {
  background: url(../img/more_learn.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
        -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}


#subNav #moreFilm {
  background: url(../img/more_film.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
        -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.wholeLink {
  width: 100%;
  height: 100%;
  display: block;
}

.dark {
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#subContent {
  touch-action: manipulation;
  margin: 0 auto;
}

#subContent.linksOff {
  padding-bottom: 20px;
}

.more #subContent {
  margin-top: 5%;
}

.subCopy {
    padding: 0% 2.5%;
    font-size: 1.75rem;
    line-height: 2.25rem;
    max-width: 85%;
    font-family: 'latolight', sans-serif;
    font-weight: 900;
    border-left: 10px solid #532412;
    margin: 5% 0 5% 50px;
}

@media screen and (max-width: 1600px) {
    .subCopy {
      font-size: 1.25rem;
      line-height: 1.75rem;
   }

  .overlay h1#ott {
    max-width: 270px;
    }
}

.subBlack {
  font-size: 1.75rem;
  line-height: 1.75rem;
  font-family: 'latoblack', sans-serif;
}

  .subBlack.extraLine {
    line-height: 2.75rem;
    font-size: 2.25rem;
    display: inline-block;
  }

.subBox {
  pointer-events: all;
}

.subBox h3 {
  padding: 2.5%;
  font-size: 1.5rem;
  line-height: 1.55rem;
  font-weight: 500;
}

.subBox .partners {
  padding: 2.5% 50px 0 50px;
  margin: 0 auto;
  text-align: center;
}

.subBox .partners img {
  width: 100%;
  max-width: 90%;
  vertical-align: top;
}

.subBox .partnersHeadline {
  text-align: center;
  padding: 0 2.5% 2.5% 2.5%;
  font-size: 1.75rem;
}

.subBox .partners li {
    text-align: center;
    width: 30%;
    display: inline-block;
    margin-right: 25px;
    vertical-align: top;
}

.subBox .partners li a {
  vertical-align: top;
}

.subBox .partners li:last-child {
  margin-right: 0;
}

.subBox .partners li p {
  max-width: 100%;
   margin: 50px 0 50px;
  font-size: 1.25rem;
    line-height: 1.75rem;
  text-align: left;
  font-family: 'latolight', sans-serif;
  vertical-align: top; 
}

@media screen and (max-width: 1600px) {
  .subBox .partners li p {
    font-size: 1.05rem;
    line-height: 1.55rem;
  }
}

.subBox .partners li.rescue img {
  max-width: 150px;
}

.subBox .partners p a {
  color: #000;
  text-decoration: none;
  font-family: 'latoregular', sans-serif;
  opacity: 0.5;
      -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.subBox .partners a:hover {
  opacity: 1;
}

.fpoDiv {
  width:100%;
  overflow:hidden;
  margin: 0 0px;
  vertical-align: top;
  max-height: 400px;
}

.musicDiv {
  overflow: auto;
  max-height: 100%;
}

.fpoDiv img {
  width: 100%
}

.booksDiv {
  background: url(../img/books_avail.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 400px;
  position: relative;
  
}

.comingSoon {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%,0);
  font-size: 2.5rem;
  color: #fff;
  font-family: 'latoregular', sans-serif;
  font-weight: 800;
}

.hashtag {
  font-size: 2.5rem;
  display: inline-block;
  text-align: right;
  position: absolute;
  right: 45px;
  bottom: 35px;
    color: #fff;
    font-family: 'latoblack', sans-serif;
    font-weight: 300;
}

.more .subBox .watchMoreLink {
    padding: 0 2.5% 2.5% 2.5%;
    max-width: 80%;
    text-align: left;
    color: #532412;
    margin: 0 auto;
}

.moreWatchLink {
  display: block;
}

.plusLink {
  text-align: right;
  margin-right: 5%;
}

.plusLink a {
  text-decoration: none;
  outline: none;
  color: #000;
  opacity: 0.5;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.plusLink a:hover {
  opacity: 1;
}

.synopsisLink {
  margin-top: 2.5%;
  margin-bottom: 2.5%;
  display: block;
  font-size: 1rem;
}

.more .subBox h4 {
  text-align: left;
  font-size: 1.75rem;
  font-family: 'latoregular', sans-serif;
  margin: 50px 0px 10px 0px;
}

.more .subBox p.moreInfo {
  font-family: 'latolight', sans-serif;
  margin: 0px 0px 25px 0px;
  vertical-align: top;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

@media screen and (max-width: 1600px) {
  .more .subBox p.moreInfo {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.italic {
  font-style: italic !important;
}

.black {
  font-family: 'latoblack', sans-serif !important;
}

.articleBox {
  padding: 8.5% 0 25%;
  clear: both;
  margin-bottom: 20px;
  position: relative;
}

.articleBox.needtoroamBox {
  background: url(../img/01_needtoroam.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #190602;
  background-position: top center;
}

.articleBox.humanelephantsBox {
  background: url(../img/02_humanandelephant.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #190602;
  background-position: top center;
}

.humanelephantsBox .hotSpot {
  left: auto;
  right: 0;
}

.articleBox.understandingelephantsBox {
  background: url(../img/03_understanding.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #190602;
  background-position: top center;
}

.articleRight {
  padding-top: 0%;
  width: 65%;
  max-width: 35%;
  float: right;
  margin-right: 2.5%;
}

.humanelephantsBox .articleRight {
  float: left;
  margin-left: 2.5%;
  margin-right: 0;
}

.articleBox h4 {
  max-width: 100%;
    font-size: 3.25rem;
    line-height: 3.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
  font-family: 'latoblack', sans-serif;
  font-weight: 300;
}

.articleBox p {
      font-size: 1.25rem;
      font-weight: 300;
      line-height: 1.75rem;
  margin-bottom: 5%;
  color: #fff;
  font-family: 'latolight', sans-serif;
  font-weight: 900;
}

.articleBox a {
  display: block;
  color: #fff;
  outline: none;
  text-decoration: none;
  font-size: 1.25rem;
  opacity: 0.5;
      -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.articleBox a:hover {
  opacity: 1;
}

.openArticle {
    pointer-events: all;
    display: block;
    cursor: pointer;
    display: block;
    z-index: 997;
    touch-action: manipulation;
}

.openArticles {
  text-align: right;
  color: #fff;
  font-family: 'latolight', sans-serif;
  font-weight: 900;
  pointer-events: all;
}

.headline {
  text-align: left !important;
  opacity: 1 !important;
}

.article iframe {
  overflow: scroll;
  -webkit-overflow-scrolling: touch; 
}

.articleMimg {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.clear {
  clear: both;
  max-width: 75%;
  margin: 0 auto;
  padding: 50px 0;
}

.clear img {
  width: 100%;
}

#watchContainer {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
}

.more .subBox .filmHeadline {
    display: block;
    width: 45%;
    vertical-align: top;
    margin: 25px 0px 10px;
  }

.watchText {
    text-align: right;
    max-width: 165px;
    margin-bottom: 40px;
}

#watchContainer #play {
    position: absolute;
    top: auto;
    bottom: 15px;
    right: auto;
    left: 66%;
    transform: translate(-50%, 0%);
    margin: 0px auto;
    max-width: 200px;
}

#watchContainer #play .playSymbol {
    font-size: 1.25rem;
    margin-right: 5px;
    position: relative;
    top: 2px;
}

#watchContainer #play .round-button {
    font-size: 1.25rem;
    height: 60px;
    padding: 22px;
}

@media screen and (max-width: 1600px) {
  #watchContainer #play {
        position: absolute;
        top: auto;
        bottom: 15px;
        right: auto;
        left: 66%;
        transform: translate(-50%, 0%);
        margin: 0px auto;
        max-width: 160px;
    }

    #watchContainer #play .round-button {
        font-size: 1rem;
        height: 50px;
        padding: 18px;
    }

    #watchContainer #play .playSymbol {
        font-size: 1rem;
        margin-right: 5px;
        position: relative;
        top: 2px;
    }

}

@media screen and (max-width: 1200px) {
  #watchContainer #play {
        position: absolute;
        top: auto;
        bottom: 15px;
        right: auto;
        left: 66%;
        transform: translate(-50%, 0%);
        margin: 0px auto;
        max-width: 120px;
    }

    #watchContainer #play .round-button {
        font-size: 12px;
        height: 40px;
        padding: 13px;
    }

  #watchContainer #play .playSymbol {
        font-size: .85rem;
        margin-right: 5px;
        position: relative;
        top: 2px;
    }
}

@media screen and (max-width: 670px) {
  #watchContainer #play {
        position: absolute;
        top: auto;
        bottom: 12px;
        right: auto;
        left: 66%;
        transform: translate(-50%, 0%);
        margin: 0px auto;
        max-width: 120px;
    }

    #watchContainer #play .round-button {
        font-size: 10.5px;
        height: 30px;
        padding: 10px;
        line-height: 9px
    }

  #watchContainer #play .playSymbol {
        font-size: .7rem;
        margin-right: 5px;
        position: relative;
        top: 1px;
    }
}

.aboutFilmmakers {
  margin: 25px 0;
  padding: 0 !important;
   text-align: center;
} 


#moreFilmBox {
  width: 49%;
  vertical-align: top;
  display: inline-block;
  position: relative;
}

#moreFilmBox h2 {
    position: absolute;
    bottom: 55px;
    left: 10px;
    font-family: 'latoblack', sans-serif;
    color: #fff;
    font-size: 3rem;
}

#moreFilmBox img {
  width: 100%;
}

.moreFilmBlock {
  display: inline-block;
  width: 45%;
  margin-left: 50px;
  vertical-align: top;
}

#moreFilmCopy {
    font-size: 1.5rem;
    line-height: 2rem;
    max-width: 85%;
    font-family: 'latolight', sans-serif;
    font-weight: 900;
    display: block;
    vertical-align: top;
}

@media screen and (max-width: 1600px) {
  #moreFilmCopy {
   font-size: 1.15rem;
   line-height: 1.65rem;
  }

}

.moreFilmContainers {
  width: 48.5%;
  display: inline-block;
  vertical-align: top;
  margin: 0 auto;
  margin-right: 15px;
  margin-top: 50px;
  margin-bottom: 25px;

}

.moreFilmContainers h4 {
  vertical-align: top;
}

.moreFilmContainers p {
  vertical-align: top;
}

#soundtrackContainer {
  width:100%;
  max-width:95%;
  overflow:hidden;
  background:transparent;
  margin: 0px;
  height: 100%;
  max-height: 25%;
}

#bios {
  margin: 50px auto;
  max-width: 1000px;
  text-align: center;
}

#subBios {
  margin: 50px 0 50px 0;
}

.bioSection {
    width: 49.25%;
    margin: 0;
    padding-right: 10px;
    vertical-align: top;
    display: inline-block;
    text-align: center;
    margin: 0 auto;
}

.bioSection.bioRight {
  padding-right: 0px;
  vertical-align: top;
}

.bioSection .bioImg {
  display: block;
  vertical-align: top;
  max-width: 380px;
  text-align: center;
  margin: 0 auto;
}

.bioSection.bioThree {
    width: 32.3%;
    margin: 0;
    padding: 0;
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;
}

.bioSection.bioThree:last-child {
  margin-right: 0;
}

.bioSection img {
  width: 100%;
  vertical-align: top;
  max-width: 380px;
}

.bioSection h5 {
  margin: 15px 0 0 0;
  font-size: 1.25rem;
  vertical-align: top;
}

.bioSection h6 {
  margin: 0px 0 10px 0;
  font-style: italic;
  font-size: 1rem;
  vertical-align: top;
}

.bioSection p {
  font-size: .9rem;
  line-height: 1.4rem;
  margin: 0 auto;
  max-width: 90%;
  vertical-align: top;
  font-family: 'latolight', sans-serif;
  text-align: justify;
}

.bioThree p {
  font-size: .9rem;
  line-height: 1.4rem;
  margin: 0 auto;
  max-width: 95%;
  vertical-align: top;
}

.biosLink {
  text-align: right;
  margin-top: 10px;
}

.bioSection p a {
  display: inline-block;
  font-family: 'latoregular', sans-serif;
  text-decoration: none;
  color: #8f3515;
  font-weight: 500;
  opacity: 0.5;
  position: relative;
  z-index: 3;
  pointer-events: all;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.bioSection p a:hover {
  opacity: 1;
}

.more #subNav {
  margin-bottom: 50px;
}

#footer {
  border-top: 1px solid #000;
  padding: 20px 0;
  width: 55%;
  margin: 20px auto 0;
}

#footer ul {
  text-align: center;
  padding: 20px;
}

#footer ul li {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  font-size: 1rem;
  color: rgba(0,0,0,0.5);
}

#footer ul li:last-child {
   border-right: none;
   margin-right: 0px;
   padding-right: 0px;
}

#footer ul li a {
  font-size: 1.25rem;
  color: #000;
  opacity: 0.5;
  margin-right: 5px;
      -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#footer ul li a:hover {
  opacity: 1;
}

.more #subNav li {
    width: 48.5%;
}

.ratingContainer {
  max-width: 100px;
}

}


@media screen and (max-width: 1320px) {

  #subNav .subNavBlock a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
  } 


  #sideRight {
    bottom: 2%;
  }
 
  .articleLeft img {
    width: 100%;
  }



  .articleBox a {
    color: #000;
    font-size: 0.85rem;
  }

   .articleBox .openArticle {
      text-align: right;
      color: #000;
      font-size: 1rem;
    }


   #sideLeft {
    bottom: 40%;
  }
}

@media screen and (max-width: 1200px) {

  .moreFilmContainers {
        width: 48%;
  }

  #soundtrackContainer {
    width:100%;
    max-width:100%;
    overflow:hidden;
    background:transparent;
    margin: 0px;
    height: 220px;
  }


  #sideRight {
    bottom: 0%;
    max-width: 350px;
  }
 
  .articleLeft img {
    width: 100%;
  }


  .articleBox h4 {
    font-size: 2.25rem;
    font-weight: 600;
    max-width: 100%;
    line-height: 2.25rem;
  }

  .articleBox p {
    margin-bottom: 5%;
  }

  .articleBox a {
    color: #000;
    font-size: 0.75rem;
     margin-bottom: 2.5%;
  }
}

.hotSpot {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
}

.overlay {
    width: 100%;
    height: 100%;
    background: #fff;
    position: fixed;
    overflow: auto;
    z-index: 9997;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-overflow-scrolling: touch; 
}

.overlayHeader {
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #fff;
  height: 230px;
  z-index: 9;
}

.overlayContainer {
    top: 0;
    left: 0;
    position: absolute;
    height: 100%;
    width: 100%;
      overflow: scroll;
    -webkit-overflow-scrolling: touch; 
}

.overlay.on {
    opacity: 1;
    visibility: visible;
    transition: all 1.25s ease;
}

.overlay.off {
    transition: all 1.25s ease;
    overflow: hidden;
}

.overlay .original {
  color: #8f3515;
  font-family: 'latoregular', sans-serif;
  font-size: 11px;
  text-align: center;
  margin: 15px auto;
  font-weight: 500;
  letter-spacing: 0.5;
  padding-top: 0px;
  position: absolute;
  top: 6px;
  text-align: center;
  width: 99%;
  z-index: 9999;
  left: -3px;
  pointer-events: none;
}

.overlay h1#ott {
    padding: 2.5%;
    color: #fff;
    margin: 0 auto;
    width: 100%;
    display: block;
    height: auto;
    max-height: 100%;
    max-width: 340px;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    text-align: center;
    position: relative;
    top: 30px;
    left: 0px;
    opacity: 0;
    transition: all 1s ease;
}

.overlay #otCloseButton {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  transition: all 1s ease;
}

.overlay .article {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
  transition: all 0.5s ease;
}

.overlay h1#ott img {
  width: 100%;
}

.overlay .article {
  opacity: 0;
  width: 100%;
  margin: 0 auto;
  padding: 200px 0px;
}

.overlay .close-button {
  color: #000;
  border: 1px solid #000;
}

.close-button:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 1920px) {


  .articleRight {
    max-width: 40%;
  }

}

@media screen and (max-width: 1600px) {
    .overlayHeader {
       height: 190px;
  }

    .articleBox .openArticle {
      text-align: right;
      color: #fff;
      font-size: 1rem;
    }

    .articleRight {
      max-width: 45%;
    }

    #sideLeft {
      bottom: 40%;
    }

}


@media screen and (max-width: 1400px) {
   .articleRight {
      max-width: 45%;
    }

    .articleBox h4 {
      max-width: 100%;
      font-size: 3.25rem;
      line-height: 3.25rem;
    }


}

@media screen and (max-width: 1300px) {

  #blockText {
      width: 15%;
    }


  .aLogo {
    max-width: 65%;
  }


  #sideLeft {
    bottom: 50%;
  }


    .learn #subNav li {
      width: 49.1%;
    }

    .more #subNav li {
      width: 48.5%;
    }

}

@media screen and (max-width: 1200px) {
  .articleRight {
      max-width: 50%;
    }

  .articleBox p {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.65rem;
    }
  
    .more .subBox h4 {
      font-size: 1.5rem;
    }

    .filmBox {
      margin-top: 75px;
    }
}


@media screen and (min-width: 1200px) {
  #nav li {
      display: block;
      text-align: center;
      margin: 5% 0px;
  }

}

@media screen and (max-width: 1175px) {
    .learn #content h2 {
      font-weight: 800;
      font-size: 5rem;
      line-height: 5rem;
  }

  .learn #subNav li {
      width: 49%;
    }

  .more #subNav li {
    width: 48.5%;
    }

    .articleRight {
      max-width: 45%;
    }

  .articleBox p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5rem;
    }

    .articleBox h4 {
      font-size: 3rem;
      line-height: 3rem;
    }
}


@media screen and (max-width: 1022px) {

  #moreFilmBox {
    width: 100%;
  }

  .more .subBox h4 {
    margin: 0px 0px 10px;
  }

  .moreFilmBlock {
    width: 100%;
    margin-left: 0px;
  }

  #moreFilmCopy {
    max-width: 100%;
    text-align: justify;
  }

  #blockText {
      width: 25%;
    }
  .overlay .article {
      width: 100%;
      margin: 0 auto;
      padding: 5% 0;
  }

  .subBox .partners li {
    text-align: center;
    width: 100%;
    display: inline-block;
    margin-right: 0px
  }

  .subBox .partners img {
    width: 100%;
    max-width: 45%;
  }


  .bioSection {
    width: 100%;
    margin: 0 0 50px 0;
  }

    .articleBox p {
      margin-bottom: 25px;
    } 


  .bioSection.bioThree {
    width: 100%;
    margin: 0 0 50px 0;
  }

  #subBios {
    margin: 0px 0px;
  }

  #sideLeft {
    bottom: 30%;
  }

  .articleBox .dArticle {
    display: none;
  }

  .articleBox .iArticle {
    display: block;
  }

  .articleLeft {
    width: 100%;
    float: none;
    margin-right:0;
  }

  .articleBox h4 {
    max-width: 100%;
    font-size: 2.5rem;
    line-height: 2.5rem;
  }

  .articleBox p {
    line-height: 1.25rem;
    font-size: 0.9rem;
  }

  .articleBox br {
    display: none;
  }

  .articleRight {
        max-width: 48%;
  }
  #subNav .subNavBlock a {
    font-size: 1rem;
  } 

  .learn h1#tt {
    top: 12.5%;
    max-width: 50%;
    margin: -5% auto 0;
  }

  .learn #content h2 {
    font-weight: 800;
    font-size: 4rem;
    line-height: 4rem;
  }

  .hashtag {
    font-size: 2rem;
    bottom: 30px;
  }

 /* .help #content h2 {
    bottom: 65px;
  }*/

  .hashtag {
    font-size: 2rem;
    bottom: 30px;
    left: 50px;
    text-align: left;
  }

    .learn #subNav .subNavBlock {
    width: 90%
    }

    .aboutFilmmakers {
      text-align: center;
    }

    .moreFilmContainers {
      width: 100%;
      margin: 50px 0px 0px 0;
    }

     .lastContainer {
      margin: 50px 0px 25px 0;
    }

    .more .subBox p.moreInfo {
      min-height: auto;
      margin: 0px 0px 25px;
      text-align: justify;
    }

    #soundtrackContainer {
      height: 350px;
    }

    .bioSection.bioThree:last-child {
      margin-bottom: 0px;
    }

    .aboutFilmmakers {
      margin: 25px 0;
      padding: 0px !important;
    }

    .learn #play .round-button {
      background: rgba(0,0,0,1);
    }


}

@media screen and (max-width: 2600px) and (min-height: 1125px) {
 #main.landing {
        position: relative;
  }
}

@media screen and (max-width: 2200px) and (min-height: 1000px) {
   #main.landing {
        position: relative;
  }
}

@media screen and (max-width: 1880px) and (min-height: 800px) {
  #main.landing {
        position: relative;
  }
  #sideRight {
    bottom: 5%;
    right: 2%;
  }

  #sideLeft {
        left: 3%;
  }

  #blockText {
    bottom: 14.5%;
  }
}

@media screen and (max-width: 1400px) and (min-height: 600px) {
  #main.landing {
        position: relative;
  }
  #sideRight {
    bottom: 5%;
    right: 2%;
  }

  #sideLeft {
        left: 3%;
  }

  #blockText {
    bottom: 14.5%;
  }
}

@media screen and (max-width: 1200px) and (min-height: 575px) {
  #main.landing {
        position: relative;
  }
  #sideRight {
    bottom: 5%;
    right: 2%;
  }

  #sideLeft {
        left: 3%;
  }

  #blockText {
    bottom: 14.5%;
  }
}

@media screen and (max-width: 1200px) and (max-height: 575px) {
  #main.landing {
        position: relative;
  }
  #sideRight {
    bottom: 5%;
    right: 2%;
  }

  #sideLeft {
        left: 3%;
  }

  #blockText {
    bottom: 14.5%;
  }
}

@media screen and (max-width: 920px) {

    .learn #subNav li {
      width: 48.75%;
    }

    .learn #subNav li {
      width: 48%;
    }
}

@media screen and (max-width: 900px) {
    #social {
    top: 20px;
    right: 7px;
    max-width: 150px;
    -webkit-filter: none;
    filter: none;
    }

    #subContent.linksOff {
      padding-bottom: 0%;
    }

    #social a {
    font-size: 1.75rem;
    margin-right: 20px;
    opacity: 1;
    }


    #blockText {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25%;
    bottom: 5%;
    }
    .aLogo {
    max-width: 75%;
    }

    .bodyText {
    font-size: 2rem;
    }

    .smText {
    font-size: 14px;
    }

    .sText {
    font-size: 12px;
    }

    h1#tt {
    max-width: 60%;
    margin: 3% auto 0;
    }

   .learn h1#tt {
    top: 12.5%;
    max-width: 50%;
    margin: -5% auto 0;
  }



    #sideLeft {
    bottom: 20%;
    left: 5%;
    position: absolute;
    }

    #sideLeft li {
    margin: 25% auto;
    width: 100%;
    max-width: 60px;
    text-align: center;
    }

    #sideLeft li:nth-of-type(2) {
    max-width: 40px;
    }

    #sideLeft li img {
    width: 100%;
    margin: 0 auto;
    }

    #sideRight {
    bottom: -15px;
    right: 2%;
    position: absolute;
    }

    #sideRight p {
      margin: 7px auto;
    }

    #sideRight h3 {
   
    }

    .subCopy {
    padding: 5% 2.5%;
    max-width: 99%;
    }

    #subNav .subNavBlock h2 {
    color: #fff;
    font-size: 3rem;
    font-weight: 600;
    }

    #subNav .subNavBlock p {
    font-size: 1rem;
    }

     .learn #content h2 {
    font-weight: 800;
    line-height: 5rem;
    }

    .subBox .partners img {
    width: 100%;
    max-width: 75%;
    }

    .subBox .partners li.rescue img {
    max-width: 35%;
    }

    .subBox .partners li p {
    max-width: 100%;
    font-size: 1.15rem;
    line-height: 1.65rem;
    text-align: left;
    font-family: 'latolight', sans-serif;
    margin: 10% 0 10%;
    line-height: 1.65rem;
    }

    .overlay h1#ott {
    top: 45px;
    left: 0px;
    max-width: 25%;
    }

    h1#ntt {
    max-width: 35%;
    }


    .articleBox h4 {
      max-width: 100%;
      font-size: 2rem;
      line-height: 2rem;
    }

    .articleBox p {
      line-height: 1.15rem;
      font-size: 0.85rem;
    }

    .articleBox .openArticle {
      font-size: 0.9rem;
    }

    .articleRight {
      max-width: 55%;
    }

      #footer ul li a {
        opacity: 1;
      }

      .hop {
        opacity: 1;
      }

      .articleBox a {
        opacity: 1;
      }

      .learn #play {
          right: auto;
          left: 50%;
    }

    #social {
      margin-right: 40px;
    }


}

@media screen and (max-width: 800px) and (min-height: 800px) {
  #nav li {
    margin: 15% 0;
  }
}

@media screen and (max-width: 670px) and (min-height: 660px) {
  #nav li {
    margin: 20% 0;
  }
}

@media screen and (max-width: 420px) and (min-height: 500px) {
  #nav li {
    margin: 20% 0;
  }

  #nav a {
    font-size: 2rem;
  }
}

@media screen and (max-width: 320px) and (min-height: 500px) {
  #nav li {
    margin: 15% 0;
  }

  #nav a {
    font-size: 2rem;
  }
}

@media screen and (max-width: 750px) {
  .articleBox h4 {
      font-size: 1.75rem;
      line-height: 1.75rem;
  }

  .articleBox p {
      line-height: 1rem;
      font-size: 0.75rem;
   }

   .learn #subNav li {
      width: 48.5%;
   }
   .learn #subNav li {
      width: 47.5%;
    }




}

@media screen and (max-width: 670px) {

  .hotSpot {
    display: none;
  }

  .overlayHeader {
    height: 130px;
  }

  .articleMimg {
      display: block;
      visibility: visible;
      opacity: 1;
      margin-bottom: 20px;
  }

  #nav a {
    font-size: 1.5rem;
  }

  #moreFilmBox {
    width: 100%;
  }

  .moreFilmBlock {
    margin-left: 0;
    margin-top: 25px;
    width: 100%;
  }

  .more .subBox .filmHeadline { 
    width: 100%;
  }

  .comingSoon {
    font-size: 1.5rem;
  }

 #bios {
    width: 100%;
    margin: 50px 0;
  }


    #otCloseButton {
      top: 30px;
    }



  .articleMimg:last-child {
    margin-bottom: 0;
  }

  .articleMimg img {
    width: 100%;
  }

  .articleBox {
    clear: both;
    margin-bottom: 20px;
    padding: 0% 0px 0%;
    background: none;
  }

  .articleBox .openArticle {
    color: #000;
  }

  .articleBox p {
    color: #000;
  }

  .articleBox h4 {
    color: #000;
    font-size: 2.5rem;
    line-height: 2.5rem;
    margin: 10px 0;
  }

  .articleBox p {
    line-height: 1.25rem;
    font-size: 1rem;
  }


  #original {
    font-size: 12px;
  }



  #social {
    max-width: 100px;
    margin-right: 40px;
  }

  #social a {
    font-size: 1.15rem;
    margin-right: 14px;
  }

  #content h2 {
    font-size: 3rem;
  }

  .subCopy {
    max-width: 100%;
    font-size: 1rem;
    text-align: left;
    line-height: 1.25rem;
    margin: 5% 0px 50px 0px;
  }

  .subBox h3 {
    padding: 7.5% 2.5%;
  }

  .subBox .partners {
    padding: 2.5% 5px 0px;
   }


  .subBox .partners li p {
    max-width: 100%;
    font-size: 0.9rem;
    margin: 10% 0 10%;
    line-height: 1.2rem;
  }

  .subBox .partners li {
    text-align: center;
    width: 95%;
    display: inline-block;
  }

  .subBox .partners img {
    max-width: 85%;    
  }

  .subBox .partners li.rescue img {
    max-width: 55%;    
  }


  .articleRight {
    width: 100%;
    max-width: 100%;
    margin: 0px auto;
  }

  #blockText {
    bottom: 5%;
    width: 50%;
  }

  .learn #subNav li#moreHelp {
    margin: 0px 5px 0px 0px;
}

.learn #subNav li#moreLearn {
    margin: 0 5px 0 0;
}

 .more #subNav li#moreHelp {
    margin: 0px 0px 0px 0px;
}

  #sideRight {
    bottom: 0px;
    right: -15%;
    position: absolute;
  }

  #sideRight p {
    font-size: .5rem;
    line-height: .5rem;
    margin: 0 auto;
  }

  #sideRight h3 {
    font-size: .75rem;
    line-height: .75rem;
    margin: 5px auto 5px;
  }

  #play {
    max-width: 125px;
  }

  .learn #play {
    right: auto;
    left: 44%;
    max-width: 125px;
  }

  .learn #subNav li {
    margin: 0 0 0px 0;
  }

  #subNav {
    clear: both;
    margin-top: 10px;
  }

  .learn #play .round-button {
    font-size: 12px;
    height: 30px;
    padding: 7px;
}

  .aLogo {
    max-width: 50%;
  }

  .bodyText {
    font-size: 1.15rem;
    line-height: 1.75rem;
    margin: 5px auto;
  }

  h1#tt {
    max-width: 60%;
    margin: 0% auto 0px;
  }

  .round-button {
    height: 35px;
    font-size: 12px;
    padding: 8px 7.5px;
    height: 33px;
  }

  .playSymbol {
    font-size: 14px;
  }

  #sideLeft {
    bottom: 27%;
    position: absolute;
  }

  #sideLeft li {
    width: 100%;
    max-width: 40px;
    text-align: center;
    margin: 25% auto;
  }

  #sideLeft li:nth-of-type(2) {
    max-width: 27px;
  }

  #subNav .subNavBlock h2 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
  }

  #subNav .subNavBlock p {
    font-size: 0.75rem;
    bottom: 0;
    right: 10px;
  }

  .learn h1#tt {
    top: 10%;
    max-width: 60%;
  }

  .subBlack {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }

  .learn #content h2 {
    line-height: 3.5rem;
    bottom: 20px;
    padding-left: 2px;
    left: 20px;
    font-size: 3rem;
  }

  /* .help #content h2 {
    bottom: 70px;
    padding-left: 0
  }*/

  .hashtag {
    left: 25px;
  }

  .learn #subNav .subNavBlock {
        width: 90%;
  }

  h1#stt {
    width: 65%;
  }

  .learn #subNav .subNavBlock h2 {
    font-size: 1.25rem;
    line-height: 1.5rem;
    letter-spacing: 0px;
    width: 100%;
    text-align: center;
  }

  .close-button {
      font-size: 10px;
      right: 10px;
      top: 20px;
      padding: 10% 80%;
  }

   .overlay h1#ott {
    top: 45px;
    left: 0px;
    max-width: 40%;
    }

   .overlay .article {
      width: 100%;
      margin: 0 auto;
      padding: 12.5% 0%;
  }

  h1#ntt {
    color: #fff;
    margin: 20% auto 0%;
    width: 100%;
    display: block;
    height: auto;
    max-height: 100%;
    max-width: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
  }

  .clear {
    max-width: 85%;
  }

  .openArticles {
    margin-bottom: 20px;
  }

    #soundtrackContainer {
      height: auto;
      width: 300px;
      margin: 0 auto;
    }

  #footer {
    margin: 30px auto 0px;
  }

  #footer ul {
    padding: 10px;
  }

  #footer ul li {
    display: block;
    text-align: center;
    margin: 0 auto 20px;
  }

  #footer ul li:last-child {
    margin-bottom: 0;
  }
 
}

@media screen and (max-width: 570px) {
   .learn #subNav li {
      width: 48.25%;
   }
}


@media screen and (max-width: 320px) {
  .close-button {
      font-size: 10px;
      right: 5px;
      top: 15px;
      padding: 5% 65%;
  }
}

.no_o {
      overflow: unset;
}


@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animated {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}


@media screen and (max-width: 1023px) {
    #main.landing {
      background: url(../img/ipad_headers_landing_rd03.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      position: static;
  }

    #content.landing {
    padding: 66.5%;
  }
}

@media screen and (max-width: 670px) {
    #main.landing {
      background: url(../img/mobile_01_home.jpg);
      background-repeat: no-repeat;
      background-size: cover;
      position: static;
  }
  #main.landing {
    position: relative;
  }
   #content.landing {
    padding: 72%;
  }
}

@media screen and (max-width: 900px) and (orientation: landscape) {
      #content {
        bottom: -34%;
  }

  #main.landing {
        position: relative;
  }
}

