@charset "UTF-8";
/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

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

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

@font-face {
  font-family: "audubon";
  src: url("/webfonts/audubon.eot");
  src: url("/webfonts/audubon.eot?#iefix") format("eot"), url("/webfonts/audubon.woff") format("woff"), url("/webfonts/audubon.ttf") format("truetype"), url("/webfonts/audubon.svg#audubon") format("svg");
}
.icon-download:after, .icon-left-arrow:after, .icon-right-arrow:after, a.more:after, .back:before {
  font-family: "audubon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
}

.icon-download:after {
  content: "";
}

.icon-left-arrow:after {
  content: "";
}

.icon-right-arrow:after {
  content: "";
}

html, body, * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* UTILITIES */
.cf:before, .cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

.hide {
  display: none;
}

.h-hidden {
  display: inherit;
}
@media only screen and (max-width: 640px) {
  .h-hidden {
    display: none;
  }
}

.h-visible {
  display: none;
}
@media only screen and (max-width: 639px) {
  .h-visible {
    display: inherit;
  }
}

@media only screen and (min-width: 641px) {
  .vertically-centered {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media only screen and (min-width: 641px) {
  .horizontally-centered {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.full-height {
  height: 100%;
}

.text-center {
  text-align: center;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes moveInFromLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes moveInFromLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes moveOutToLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes moveOutToLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes moveInFromRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes moveInFromRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes moveOutToRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
}
@keyframes moveOutToRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(120%);
    transform: translateX(120%);
  }
}
.scene_element {
  -webkit-animation-duration: .4s;
  animation-duration: .4s;
  transition-timing-function: ease-in;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.is-exiting .scene_element {
  transition-timing-function: ease-out;
}

#main[data-transition=moveleft] .scene_element {
  -webkit-animation-name: moveInFromLeft;
  animation-name: moveInFromLeft;
}

#main[data-transition=moveleft].is-exiting .scene_element {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

#main[data-transition=moveright].is-exiting .scene_element {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

body {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}

h1 {
  font-size: 35px;
  line-height: 43px;
  color: #404040;
  font-family: "Archer A", "Archer B", Helvetica, Arial, sans-serif;
  padding: 30px 0 20px;
}
@media only screen and (min-width: 1024px) {
  h1 {
    font-size: 42px;
    line-height: 50px;
  }
}

h2 {
  font-size: 48px;
  line-height: 48px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 641px) and (max-width: 1023px) {
  h2 {
    font-size: 40px;
    line-height: 46px;
  }
}
@media only screen and (min-width: 1024px) {
  h2 {
    font-size: 48px;
    line-height: 48px;
  }
}

h3 {
  font-family: "MuseoSansCond", Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  font-family: "Archer A", "Archer B", Helvetica, Arial, sans-serif;
  color: rgba(255, 255, 255, 0.85);
}
@media only screen and (min-width: 641px) {
  h3 {
    font-size: 22px;
    line-height: 30px;
  }
}

p {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 0.75em;
  color: #404040;
}
p.small {
  font-size: 14px;
  line-height: 19px;
}

a {
  color: #404040;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
  color: #0d0d0d;
}

a.more {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8em;
}
a.more:after {
  content: "";
}
a.more:after {
  font-size: 30px;
  line-height: 0;
  margin-left: 5px;
}

ul, ol {
  margin: 0.6em 0;
  padding: 0;
  font: 1.4rem;
  line-height: 1.4em;
}

ul li, ol li {
  list-style-type: none;
  color: #404040;
}

ol {
  margin: 0.6em 30px;
}
@media only screen and (min-width: 1025px) {
  ol {
    margin: 0.6em 0;
  }
}
ol li {
  list-style-type: decimal;
}

blockquote {
  text-align: center;
}
blockquote p {
  color: #fff;
  font-size: 17px;
  line-height: 24px;
  font-style: italic;
  padding: 0 5%;
}
blockquote p:before {
  content: '\201C';
}
blockquote p:after {
  content: '\201D';
}
@media only screen and (min-width: 641px) and (max-width: 1023px) {
  blockquote p {
    font-size: 22px;
    line-height: 32px;
  }
}
@media only screen and (min-width: 641px) {
  blockquote p {
    font-size: 26px;
    line-height: 38px;
  }
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

abbr {
  text-transform: uppercase;
  font-size: 0.7em;
  letter-spacing: 0.1em;
}

label {
  font-size: 14px;
  font-weight: bold;
  color: #fbfaf6;
  margin: 10px 0 5px;
  display: block;
}

address {
  font-size: 14px;
  line-height: 20px;
}

.section-header {
  display: inline-block;
  padding: 7px 10px 5px;
}

.button {
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  padding: 8px 15px 6px;
  border-radius: 3px;
  background: #F15936;
  color: #fff;
}
.button:hover {
  color: white;
  background: #e43810;
}

.caption {
  font-size: 13px;
  line-height: 16px;
  margin-top: 5px;
  width: 80%;
}
.caption strong {
  display: block;
}

.back:before {
  content: "";
}
.back:before {
  font-size: 30px;
  line-height: 0;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.video-wrapper {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

video {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
}
@media only screen and (min-width: 641px) {
  video {
    -webkit-animation: fadein 1s;
    -moz-animation: fadein 1s;
    -ms-animation: fadein 1s;
    -o-animation: fadein 1s;
    animation: fadein 1s;
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    animation-delay: .6s;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    min-height: 50%;
    min-width: 50%;
  }
}

.video-bg {
  display: none;
}
@media only screen and (min-width: 641px) {
  .video-bg {
    display: block;
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 1023px) {
  .video-bg {
    width: 220%;
  }
}

/* Keyframes for the fade-in */
@-webkit-keyframes fadeInVideo {
  from {
    opacity: 0;
    display: none;
  }
  to {
    opacity: 1;
    display: block;
  }
}
@-moz-keyframes fadeInVideo {
  from {
    opacity: 0;
    display: none;
  }
  to {
    opacity: 1;
    display: block;
  }
}
@keyframes fadeInVideo {
  from {
    opacity: 0;
    display: none;
  }
  to {
    opacity: 1;
    display: block;
  }
}
@media only screen and (min-width: 641px) {
  .fade-in-video {
    opacity: 0;
    opacity: 1 \9;
    /*just in case ie*/
    -webkit-animation: fadeInVideo ease-in 1;
    -moz-animation: fadeInVideo ease-in 1;
    animation: fadeInVideo ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: .3s;
    -moz-animation-delay: .3s;
    animation-delay: .3s;
  }
}

video::-webkit-media-controls-start-playback-button {
  display: block;
  position: absolute;
  z-index: 1000;
}

body[data-active-page="introduction"] video::-webkit-media-controls-start-playback-button {
  left: 40%;
}

@media only screen and (min-width: 641px) {
  .is-exiting .fade-in-video {
    opacity: 0;
  }
}

.bird-card {
  background: #fff;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  padding: 10px 10px 50px 10px;
  max-width: 300px;
  -webkit-transition-property: -webkit-transform, -webkit-transform, -moz-transform, opacity;
  -moz-transition-property: -moz-transform, -webkit-transform, -moz-transform, opacity;
  transition-property: transform, -webkit-transform, -moz-transform, opacity;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  width: 90%;
  border: 1px solid #d4d4d4;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 600px) {
  .bird-card {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 601px) {
  body:not(.touch) .bird-card:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  }
}
.bird-card-illustration {
  height: 140px;
  width: 100%;
  text-align: center;
  overflow: visible;
}

.bird-card-illustration:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.bird-card-illustration img {
  display: inline-block;
  height: auto;
  max-height: 200px;
  width: auto;
  max-width: 95%;
}

.bird-card-caption {
  position: absolute;
  bottom: 10px;
  margin: 0 10px 0 0;
  padding-top: 30px;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0) 0%, white 50%, white 100%);
  background-image: linear-gradient(rgba(255, 255, 255, 0) 0%, #ffffff 50%, #ffffff 100%);
}

.bird-card-caption .common-name {
  margin-bottom: 5px;
  font-size: 21px;
}

.bird-card-caption .scientific-name {
  color: #838078 !important;
  font-size: 12px;
  line-height: 17px;
  font-style: italic;
}

.bird-card-caption .common-name a {
  text-decoration: none;
}

.bird-card-audio {
  display: block;
  font-size: 15px;
  line-height: 15px;
  padding: 10px 25px 25px 10px;
  position: absolute;
  left: 0;
  top: 0;
}

.bird-card.small {
  max-width: 160px;
}

.bird-card.small .bird-card-caption {
  margin-bottom: 0;
}

.bird-card.small .common-name {
  font-family: "Source Sans Pro", Verdana, sans-serif;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 2px;
}

.bird-card.small .scientific-name {
  font-family: "Source Sans Pro", Verdana, sans-serif;
  font-size: 11px;
  line-height: 13px;
}

.bird-card.small .bird-card-illustration {
  height: 120px;
}

.bird-card.small .bird-card-illustration img {
  max-height: 100px;
  max-width: 90%;
}

@media only screen and (min-width: 768px) and (max-width: 840px) {
  .bird-card.small .bird-card-illustration {
    height: 100px;
  }

  .bird-card.small .scientific-name {
    font-size: 10px;
  }
}
.breakout-card {
  background-color: rgba(0, 0, 0, 0.6);
  border: 0;
}

.country-wrap {
  max-width: 200px;
  float: right;
  margin-top: 30px;
}
@media only screen and (min-width: 641px) {
  .country-wrap {
    float: none;
    position: absolute;
    top: 15px;
    right: 30px;
    width: 30%;
    margin: 0;
  }
}
.country-wrap img {
  max-width: 80px;
  width: 60%;
}
.country-wrap p {
  text-align: right;
  font-size: 14px;
}
@media only screen and (min-width: 641px) {
  .country-wrap p {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.country-wrap .title-wrap {
  height: 100%;
  float: left;
  width: 40%;
  padding-top: 10px;
}

.nav-arrows {
  display: none;
}

@media only screen and (min-width: 641px) {
  .nav-arrows {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .nav-arrows .top, .nav-arrows .bottom {
    width: 100%;
    height: 25px;
    position: absolute;
  }
  .nav-arrows .left, .nav-arrows .right {
    width: 54px;
    height: 100%;
    position: absolute;
  }
  .nav-arrows .left a, .nav-arrows .right a {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .nav-arrows .top {
    top: 65px;
  }
  .nav-arrows .top a {
    transform: rotate(180deg);
  }
  .nav-arrows .bottom {
    bottom: 15px;
  }
  .nav-arrows .left {
    left: 45px;
  }
  .nav-arrows .left a {
    transform: rotate(90deg);
  }
  .nav-arrows .right {
    right: 45px;
  }
  .nav-arrows .right a {
    transform: rotate(270deg);
  }
  .nav-arrows a {
    position: relative;
    z-index: 5;
    display: block;
    margin: 0 auto;
    width: 35px;
    opacity: 1;
    transition: none;
    transition: width ease-in-out 0.2s, opacity ease-in-out 0.2s;
  }
  .nav-arrows a:hover {
    width: 42px;
  }
  .nav-arrows a:hover img {
    -webkit-filter: drop-shadow(0px 3px 8px black);
    filter: drop-shadow(0px 3px 8px black);
    /* Same syntax as box-shadow */
  }
  .nav-arrows img {
    max-width: 100%;
    -webkit-filter: drop-shadow(0px 0px 3px black);
    filter: drop-shadow(0px 0px 3px black);
    /* Same syntax as box-shadow */
  }
}
/*!
 * fullPage 2.7.9
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */
html.fp-enabled,
.fp-enabled body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  /*Avoid flicker on slides transitions for mobile phones #336 */
  -webkit-tap-highlight-color: transparent;
}

#superContainer {
  height: 100%;
  position: relative;
  /* Touch detection for Windows 8 */
  -ms-touch-action: none;
  /* IE 11 on Windows Phone 8.1*/
  touch-action: none;
}

.fp-section {
  position: relative;
  -webkit-box-sizing: border-box;
  /* Safari<=5 Android<=3 */
  -moz-box-sizing: border-box;
  /* <=28 */
  box-sizing: border-box;
}

.fp-slide {
  float: left;
}

.fp-slide, .fp-slidesContainer {
  height: 100%;
  display: block;
}

.fp-slides {
  z-index: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  /* Safari<=6 Android<=4.3 */
  transition: all 0.3s ease-out;
}

.fp-section.fp-table, .fp-slide.fp-table {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.fp-tableCell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

.fp-slidesContainer {
  float: left;
  position: relative;
}

.fp-controlArrow {
  -webkit-user-select: none;
  /* webkit (safari, chrome) browsers */
  -moz-user-select: none;
  /* mozilla browsers */
  -khtml-user-select: none;
  /* webkit (konqueror) browsers */
  -ms-user-select: none;
  /* IE10+ */
  position: absolute;
  z-index: 4;
  top: 50%;
  cursor: pointer;
  width: 0;
  height: 0;
  border-style: solid;
  margin-top: -38px;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.fp-controlArrow.fp-prev {
  left: 15px;
  width: 0;
  border-width: 38.5px 34px 38.5px 0;
  border-color: transparent #fff transparent transparent;
}

.fp-controlArrow.fp-next {
  right: 15px;
  border-width: 38.5px 0 38.5px 34px;
  border-color: transparent transparent transparent #fff;
}

.fp-scrollable {
  overflow: scroll;
}

.fp-notransition {
  -webkit-transition: none !important;
  transition: none !important;
}

#fp-nav {
  position: fixed;
  z-index: 100;
  margin-top: -32px;
  top: 50%;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
}

#fp-nav.right {
  right: 17px;
}

#fp-nav.left {
  left: 17px;
}

.fp-slidesNav {
  position: absolute;
  z-index: 4;
  left: 50%;
  opacity: 1;
}

.fp-slidesNav.bottom {
  bottom: 17px;
}

.fp-slidesNav.top {
  top: 17px;
}

#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0;
}

#fp-nav ul li,
.fp-slidesNav ul li {
  display: block;
  width: 14px;
  height: 13px;
  margin: 7px;
  position: relative;
}

.fp-slidesNav ul li {
  display: inline-block;
}

#fp-nav ul li a,
.fp-slidesNav ul li a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
  height: 12px;
  width: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 100%;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  height: 4px;
  width: 4px;
  border: 0;
  background: #333;
  left: 50%;
  top: 50%;
  margin: -2px 0 0 -2px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
  width: 10px;
  height: 10px;
  margin: -5px 0px 0px -5px;
}

#fp-nav ul li .fp-tooltip {
  position: absolute;
  top: -2px;
  color: #fff;
  font-size: 14px;
  font-family: arial, helvetica, sans-serif;
  white-space: nowrap;
  max-width: 220px;
  overflow: hidden;
  display: block;
  opacity: 0;
  width: 0;
  cursor: pointer;
}

#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  width: auto;
  opacity: 1;
}

#fp-nav ul li .fp-tooltip.right {
  right: 20px;
}

#fp-nav ul li .fp-tooltip.left {
  left: 20px;
}

.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell {
  height: auto !important;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.chardinjs-overlay {
  position: absolute;
  z-index: 999999;
  background-color: #000;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.chardinjs-helper-layer {
  position: absolute;
  z-index: 9999998;
  color: #fff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.chardinjs-helper-layer.chardinjs-left {
  border-left: solid #7b7b7b 1px;
  margin-left: -10px;
}

.chardinjs-helper-layer.chardinjs-right {
  border-right: solid #7b7b7b 1px;
  padding-right: 10px;
}

.chardinjs-helper-layer.chardinjs-bottom {
  border-bottom: solid #7b7b7b 1px;
  padding-bottom: 10px;
}

.chardinjs-helper-layer.chardinjs-top {
  border-top: solid #7b7b7b 1px;
  padding-top: 10px;
  margin-top: -30px !important;
}
.chardinjs-helper-layer.chardinjs-top .chardinjs-tooltiptext {
  width: 300px !important;
  margin-left: -30%;
  text-align: center;
}

.chardinjs-tooltip {
  position: absolute;
  -webkit-transition: opacity 0.1s ease-out;
  -moz-transition: opacity 0.1s ease-out;
  -ms-transition: opacity 0.1s ease-out;
  -o-transition: opacity 0.1s ease-out;
  transition: opacity 0.1s ease-out;
  max-width: 200px;
}

.chardinjs-tooltip.chardinjs-left {
  margin-left: -135px;
  padding-right: 10px;
  margin-top: 8px;
}

.chardinjs-tooltip.chardinjs-right {
  margin-right: -135px;
  padding-left: 10px;
}

.chardinjs-tooltip.chardinjs-bottom {
  margin-bottom: -50px;
  padding-top: 10px;
}

.chardinjs-tooltip.chardinjs-top {
  margin-top: -50px;
  padding-bottom: 10px;
}

.chardinjs-tooltip.chardinjs-right:before, .chardinjs-tooltip.chardinjs-left:after, .chardinjs-tooltip.chardinjs-bottom:before, .chardinjs-tooltip.chardinjs-top:after {
  content: ".";
  display: inline-block;
  background-color: #7b7b7b;
  height: 1px;
  overflow: hidden;
  position: absolute;
}

.chardinjs-tooltip.chardinjs-right:before, .chardinjs-tooltip.chardinjs-left:after {
  width: 100px;
  top: 50%;
}

.chardinjs-tooltip.chardinjs-bottom:before, .chardinjs-tooltip.chardinjs-top:after {
  width: 1px;
  height: 50px;
  left: 50%;
}

.chardinjs-tooltip.chardinjs-bottom:before {
  top: -50px;
}

.chardinjs-tooltip.chardinjs-top:after {
  bottom: -50px;
}

.chardinjs-tooltip.chardinjs-right:before {
  left: -100px;
}

.chardinjs-tooltip.chardinjs-left:after {
  right: -70px;
}

.chardinjs-show-element {
  z-index: 9999999 !important;
  opacity: 0.8;
}

.chardinjs-relative-position {
  position: relative;
}

.chardinjs-tooltiptext {
  cursor: default;
}

* {
  transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
}

html, body, section {
  margin: 0;
  padding: 0;
  color: white;
}

body {
  margin: 0;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  background: #404040;
  background: #fff;
  color: #404040;
  font-weight: 500;
}

.container {
  position: relative;
  margin: 0 auto;
}
@media only screen and (max-width: 640px) {
  .container {
    padding: 0 3%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 1023px) {
  .container {
    margin: 0 auto;
    padding: 0 3%;
  }
}
@media only screen and (min-width: 1024px) {
  .container {
    max-width: 1082px;
    margin: 0 auto;
    padding: 0 1%;
  }
}
@media only screen and (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

img {
  max-width: 100%;
}

.full-wrap {
  position: relative;
  max-width: 1800px;
  margin-top: 30px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.11);
  margin: 0 auto;
}

.site-header {
  width: 100%;
  background: #000;
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 641px) {
  .site-header {
    position: fixed;
    top: 0;
  }
}
.site-header.wide {
  display: none;
}
@media only screen and (min-width: 641px) {
  .site-header.wide {
    display: block;
  }
}
.site-header.small {
  display: block;
}
@media only screen and (min-width: 641px) {
  .site-header.small {
    display: none;
  }
}
.site-header nav {
  width: 100%;
  text-align: center;
}
.site-header nav ul {
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 641px) {
  .site-header nav ul {
    display: table;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
  }
}
.site-header nav li {
  display: block;
  float: left;
  text-align: center;
  font-size: 17px;
  line-height: 1em;
  font-weight: normal;
  color: #fbfaf6;
}
@media only screen and (min-width: 641px) {
  .site-header nav li {
    -webkit-box-flex: 1;
    /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1;
    /* OLD - Firefox 19- */
    width: 20%;
    /* For old syntax, otherwise collapses. */
    -webkit-flex: 1;
    /* Chrome */
    -ms-flex: 1;
    /* IE 10 */
    flex: 1;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
  }
}
@media only screen and (min-width: 641px) and (max-width: 1023px) {
  .site-header nav li {
    font-size: 16px;
  }
}
.site-header nav a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 15px 50px;
}
@media only screen and (min-width: 641px) {
  .site-header nav a {
    padding: 10px 1%;
  }
}
@media screen and (max-width: 820px) {
  .site-header nav a {
    padding: 12px 2%;
  }
}
@media only screen and (max-width: 640px) {
  .site-header nav a {
    padding: 12px 50px;
  }
}
.site-header nav a.active, .site-header nav a:active {
  font-weight: bold;
  color: #fff;
}
.site-header nav a:hover {
  color: #fff;
}

.hidden-nav {
  display: none;
}

.primary-nav {
  width: 100%;
}
@media only screen and (min-width: 641px) {
  .primary-nav {
    display: table;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
  }
}
.primary-nav li {
  width: auto;
  -webkit-box-flex-grow: 1.2;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex-grow: 1.2;
  /* OLD - Firefox 19- */
  -webkit-flex-grow: 1.2;
  /* Chrome */
  -ms-flex-grow: 1.2;
  /* IE 10 */
  flex-grow: 1.2;
}
@media only screen and (min-width: 641px) {
  .primary-nav li:last-child {
    -webkit-box-flex-grow: 0.3;
    /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex-grow: 0.3;
    /* OLD - Firefox 19- */
    -webkit-flex-grow: 0.3;
    /* Chrome */
    -ms-flex-grow: 0.3;
    /* IE 10 */
    flex-grow: 0.3;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
  }
  .primary-nav li:nth-child(3) {
    -webkit-box-flex-grow: 0.7;
    /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex-grow: 0.7;
    /* OLD - Firefox 19- */
    -webkit-flex-grow: 0.7;
    /* Chrome */
    -ms-flex-grow: 0.7;
    /* IE 10 */
    flex-grow: 0.7;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
  }
  .primary-nav li:nth-child(2) {
    -webkit-box-flex-grow: 0.8;
    /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex-grow: 0.8;
    /* OLD - Firefox 19- */
    -webkit-flex-grow: 0.8;
    /* Chrome */
    -ms-flex-grow: 0.8;
    /* IE 10 */
    flex-grow: 0.8;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
  }
  .primary-nav li:nth-child(6) {
    -webkit-box-flex-grow: 1.7;
    /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex-grow: 1.7;
    /* OLD - Firefox 19- */
    -webkit-flex-grow: 1.7;
    /* Chrome */
    -ms-flex-grow: 1.7;
    /* IE 10 */
    flex-grow: 1.7;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
  }
}
.primary-nav li a {
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.sub-nav {
  display: none;
}
@media only screen and (min-width: 641px) {
  .sub-nav {
    z-index: 3;
    width: inherit;
    display: block;
  }
}
.sub-nav nav {
  text-align: left;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
}
.sub-nav nav:hover {
  width: 260px;
}
.sub-nav li {
  display: block;
  font-size: 15px;
  margin: 5px 0;
  clear: both;
}
.sub-nav li::after {
  content: "";
  display: table;
  clear: both;
}
.sub-nav li a {
  float: left;
  display: inline-block;
  color: #fff;
}
.sub-nav li a:before {
  content: "";
  display: inline-block;
  position: relative;
  transition: all 0.3s ease-out .1s;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  border-radius: 100px;
  background: #fff;
  float: left;
  margin-left: 15px;
  border: 2px solid #fff;
}
.sub-nav li a.active:before {
  background: transparent;
}
.sub-nav li span {
  overflow: hidden;
  display: inline-block;
  transition: all 0.3s ease-out .2s;
  transform: translate(-200px, 0);
}
.sub-nav li em {
  padding: 3px 8px 3px 15px;
  background: #fff;
  font-style: normal;
}
.sub-nav li .sliding-in span {
  transform: translate(-40px, 0);
}
.sub-nav li .sliding-in:before {
  transform: translate(-200%, 0);
}
.sub-nav li:hover span {
  transform: translate(-40px, 0);
}
.sub-nav li:hover a:before {
  transform: translate(-200%, 0);
}
.sub-nav li .sliding-out span {
  transform: translate(-200px, 0);
  transition: all 0.1s ease-out 0.8s;
}
.sub-nav li .sliding-out a:before {
  transform: translate(-200%, 0);
  transition: all 0.1s ease-out 0.8s;
}
.sub-nav a {
  color: #b0b0b0;
}
.sub-nav .download {
  color: #F15936;
}

.icon-download:after {
  padding-left: 5px;
  font-size: 1.4em;
  line-height: 0%;
}

.mobile-header {
  text-align: center;
  padding: 10px 2%;
}
@media only screen and (min-width: 641px) {
  .mobile-header {
    display: none;
  }
}
.mobile-header h1 {
  max-width: 130px;
  margin: 0 auto;
  padding: 0;
}
.mobile-header h2 {
  font-family: "Archer A", "Archer B", Helvetica, Arial, sans-serif;
  color: #fff;
  font-size: 21px;
  line-height: 21px;
  margin-bottom: 5px;
}

nav button {
  background: transparent;
  border: 0;
  position: absolute;
  z-index: 2;
  left: 0;
  height: 100%;
  width: 50px;
  text-indent: -10000px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+21,000000+100&1+21,0+98 */
  background: -moz-linear-gradient(left, black 21%, transparent 98%, transparent 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, black 21%, transparent 98%, transparent 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #000000 21%, rgba(0, 0, 0, 0) 98%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=1 );
  /* IE6-9 */
}
nav button.slick-next {
  right: 0;
  left: auto;
  top: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+79&0+2,1+79 */
  background: -moz-linear-gradient(left, transparent 0%, transparent 2%, black 79%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, transparent 0%, transparent 2%, black 79%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 2%, #000000 79%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=1 );
  /* IE6-9 */
}

.footer {
  padding: 60px 0;
  text-align: center;
  background: #404040;
  color: #fbfaf6;
}
.footer p {
  color: #fbfaf6;
}
.footer .cta {
  font-size: 24px;
  font-weight: bold;
  max-width: 550px;
  margin: 0 auto 60px;
}
.footer .button {
  background: white;
  color: #404040;
}
.footer .download {
  font-size: 16px;
}
.footer .download img {
  display: block;
  margin: 20px auto;
  max-width: 160px;
}
.footer .download a {
  color: #fbfaf6;
  text-decoration: none;
}
.footer .logos {
  margin-bottom: 30px;
}
.footer .logos .birdlife-logo {
  max-width: 50%;
  max-width: 80px;
  margin-right: 20px;
}
@media only screen and (min-width: 641px) {
  .footer .logos .birdlife-logo {
    max-width: 68px;
  }
}
.footer .logos .audubon-logo {
  max-width: 50%;
  max-width: 150px;
}
@media only screen and (min-width: 641px) {
  .footer .logos .audubon-logo {
    max-width: 133px;
    margin-right: 20px;
  }
}
.footer .copyright {
  font-size: 13px;
  line-height: 17px;
}
.footer .share {
  margin: 30px auto;
  text-align: center;
}
.footer .share a {
  margin: 0 10px;
}

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

html, body, .page-content {
  height: 100%;
  width: 100%;
}

html, body, header, footer, section {
  text-align: left;
  display: block;
}

footer, section {
  margin: 0 auto;
}

body[data-active-page=introduction] {
  display: block;
}
body[data-active-page=introduction] .primary-nav li a[data-section=introduction].active {
  background: #F15936;
}
body[data-active-page=introduction] .primary.person {
  background: #F15936;
}
body[data-active-page=introduction] .conservation .stats li {
  border-color: #F15936;
}
body[data-active-page=introduction] .science .stats li strong {
  color: #F15936;
}
body[data-active-page=introduction] h1.bar:before {
  background: #F15936;
}
body[data-active-page=introduction] .sub-nav li a:before {
  background: #F15936;
}
body[data-active-page=introduction] .sub-nav li a.active:before {
  background: transparent;
  border-color: #F15936;
}
body[data-active-page=introduction].fp-viewing-voices .sub-nav li a.active:before {
  background: transparent;
  border-color: #fff;
}
body[data-active-page=introduction] .sub-nav li a span em {
  background: #F15936;
}

.primary-nav a[data-section=introduction] {
  box-shadow: inset 0 3px 0 0 #F15936;
}
.primary-nav a[data-section=introduction]:hover {
  box-shadow: inset 0 100px 0 0 #F15936;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .primary-nav a[data-section=introduction]:hover {
    box-shadow: inset 0 3px 0 0 #F15936;
  }
}

body[data-active-page=coasts] {
  display: block;
}
body[data-active-page=coasts] .primary-nav li a[data-section=coasts].active {
  background: #037eb4;
}
body[data-active-page=coasts] .primary.person {
  background: #037eb4;
}
body[data-active-page=coasts] .conservation .stats li {
  border-color: #037eb4;
}
body[data-active-page=coasts] .science .stats li strong {
  color: #037eb4;
}
body[data-active-page=coasts] h1.bar:before {
  background: #037eb4;
}
body[data-active-page=coasts] .sub-nav li a:before {
  background: #037eb4;
}
body[data-active-page=coasts] .sub-nav li a.active:before {
  background: transparent;
  border-color: #037eb4;
}
body[data-active-page=coasts].fp-viewing-voices .sub-nav li a.active:before {
  background: transparent;
  border-color: #fff;
}
body[data-active-page=coasts] .sub-nav li a span em {
  background: #037eb4;
}

.primary-nav a[data-section=coasts] {
  box-shadow: inset 0 3px 0 0 #037eb4;
}
.primary-nav a[data-section=coasts]:hover {
  box-shadow: inset 0 100px 0 0 #037eb4;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .primary-nav a[data-section=coasts]:hover {
    box-shadow: inset 0 3px 0 0 #037eb4;
  }
}

body[data-active-page=climate] {
  display: block;
}
body[data-active-page=climate] .primary-nav li a[data-section=climate].active {
  background: #80b539;
}
body[data-active-page=climate] .primary.person {
  background: #80b539;
}
body[data-active-page=climate] .conservation .stats li {
  border-color: #80b539;
}
body[data-active-page=climate] .science .stats li strong {
  color: #80b539;
}
body[data-active-page=climate] h1.bar:before {
  background: #80b539;
}
body[data-active-page=climate] .sub-nav li a:before {
  background: #80b539;
}
body[data-active-page=climate] .sub-nav li a.active:before {
  background: transparent;
  border-color: #80b539;
}
body[data-active-page=climate].fp-viewing-voices .sub-nav li a.active:before {
  background: transparent;
  border-color: #fff;
}
body[data-active-page=climate] .sub-nav li a span em {
  background: #80b539;
}

.primary-nav a[data-section=climate] {
  box-shadow: inset 0 3px 0 0 #80b539;
}
.primary-nav a[data-section=climate]:hover {
  box-shadow: inset 0 100px 0 0 #80b539;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .primary-nav a[data-section=climate]:hover {
    box-shadow: inset 0 3px 0 0 #80b539;
  }
}

body[data-active-page=working-lands] {
  display: block;
}
body[data-active-page=working-lands] .primary-nav li a[data-section=working-lands].active {
  background: #896442;
}
body[data-active-page=working-lands] .primary.person {
  background: #896442;
}
body[data-active-page=working-lands] .conservation .stats li {
  border-color: #896442;
}
body[data-active-page=working-lands] .science .stats li strong {
  color: #896442;
}
body[data-active-page=working-lands] h1.bar:before {
  background: #896442;
}
body[data-active-page=working-lands] .sub-nav li a:before {
  background: #896442;
}
body[data-active-page=working-lands] .sub-nav li a.active:before {
  background: transparent;
  border-color: #896442;
}
body[data-active-page=working-lands].fp-viewing-voices .sub-nav li a.active:before {
  background: transparent;
  border-color: #fff;
}
body[data-active-page=working-lands] .sub-nav li a span em {
  background: #896442;
}

.primary-nav a[data-section=working-lands] {
  box-shadow: inset 0 3px 0 0 #896442;
}
.primary-nav a[data-section=working-lands]:hover {
  box-shadow: inset 0 100px 0 0 #896442;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .primary-nav a[data-section=working-lands]:hover {
    box-shadow: inset 0 3px 0 0 #896442;
  }
}

body[data-active-page=water] {
  display: block;
}
body[data-active-page=water] .primary-nav li a[data-section=water].active {
  background: #55b4ae;
}
body[data-active-page=water] .primary.person {
  background: #55b4ae;
}
body[data-active-page=water] .conservation .stats li {
  border-color: #55b4ae;
}
body[data-active-page=water] .science .stats li strong {
  color: #55b4ae;
}
body[data-active-page=water] h1.bar:before {
  background: #55b4ae;
}
body[data-active-page=water] .sub-nav li a:before {
  background: #55b4ae;
}
body[data-active-page=water] .sub-nav li a.active:before {
  background: transparent;
  border-color: #55b4ae;
}
body[data-active-page=water].fp-viewing-voices .sub-nav li a.active:before {
  background: transparent;
  border-color: #fff;
}
body[data-active-page=water] .sub-nav li a span em {
  background: #55b4ae;
}

.primary-nav a[data-section=water] {
  box-shadow: inset 0 3px 0 0 #55b4ae;
}
.primary-nav a[data-section=water]:hover {
  box-shadow: inset 0 100px 0 0 #55b4ae;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .primary-nav a[data-section=water]:hover {
    box-shadow: inset 0 3px 0 0 #55b4ae;
  }
}

body[data-active-page=bird-friendly] {
  display: block;
}
body[data-active-page=bird-friendly] .primary-nav li a[data-section=bird-friendly].active {
  background: #ed4c3b;
}
body[data-active-page=bird-friendly] .primary.person {
  background: #ed4c3b;
}
body[data-active-page=bird-friendly] .conservation .stats li {
  border-color: #ed4c3b;
}
body[data-active-page=bird-friendly] .science .stats li strong {
  color: #ed4c3b;
}
body[data-active-page=bird-friendly] h1.bar:before {
  background: #ed4c3b;
}
body[data-active-page=bird-friendly] .sub-nav li a:before {
  background: #ed4c3b;
}
body[data-active-page=bird-friendly] .sub-nav li a.active:before {
  background: transparent;
  border-color: #ed4c3b;
}
body[data-active-page=bird-friendly].fp-viewing-voices .sub-nav li a.active:before {
  background: transparent;
  border-color: #fff;
}
body[data-active-page=bird-friendly] .sub-nav li a span em {
  background: #ed4c3b;
}

.primary-nav a[data-section=bird-friendly] {
  box-shadow: inset 0 3px 0 0 #ed4c3b;
}
.primary-nav a[data-section=bird-friendly]:hover {
  box-shadow: inset 0 100px 0 0 #ed4c3b;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .primary-nav a[data-section=bird-friendly]:hover {
    box-shadow: inset 0 3px 0 0 #ed4c3b;
  }
}

body[data-active-page=community] {
  display: block;
}
body[data-active-page=community] .primary-nav li a[data-section=community].active {
  background: #6262a8;
}
body[data-active-page=community] .primary.person {
  background: #6262a8;
}
body[data-active-page=community] .conservation .stats li {
  border-color: #6262a8;
}
body[data-active-page=community] .science .stats li strong {
  color: #6262a8;
}
body[data-active-page=community] h1.bar:before {
  background: #6262a8;
}
body[data-active-page=community] .sub-nav li a:before {
  background: #6262a8;
}
body[data-active-page=community] .sub-nav li a.active:before {
  background: transparent;
  border-color: #6262a8;
}
body[data-active-page=community].fp-viewing-voices .sub-nav li a.active:before {
  background: transparent;
  border-color: #fff;
}
body[data-active-page=community] .sub-nav li a span em {
  background: #6262a8;
}

.primary-nav a[data-section=community] {
  box-shadow: inset 0 3px 0 0 #6262a8;
}
.primary-nav a[data-section=community]:hover {
  box-shadow: inset 0 100px 0 0 #6262a8;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .primary-nav a[data-section=community]:hover {
    box-shadow: inset 0 3px 0 0 #6262a8;
  }
}

body {
  background-color: #fbfaf6;
}
@media only screen and (min-width: 641px) {
  body {
    background-color: #000;
  }
}

#main, .page-content, #fullpage {
  height: 100%;
}

.section.primary {
  width: 100%;
  background-size: 0;
  padding: 0 0 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 641px) {
  .section.primary {
    height: 100%;
    padding: 0;
    background-color: #000;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border: 0;
  }
}

@media only screen and (min-width: 641px) {
  .network h1 {
    margin-top: 30px;
  }
}

@media screen and (max-width: 820px) {
  .international.extended-description.primary.active .box h1 {
    width: 55%;
  }
}

.gradient-bottom {
  position: relative;
  overflow: hidden;
}
.gradient-bottom .container {
  height: 100%;
}
.gradient-bottom .container::after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 641px) {
  .gradient-bottom .container {
    min-height: 220px;
  }
}
.gradient-bottom .box {
  -webkit-animation: fadeIn ease-in 1;
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-duration: 0.6s;
  -moz-animation-duration: 0.6s;
  animation-duration: 0.6s;
}
@media only screen and (min-width: 641px) {
  .gradient-bottom .box {
    min-height: 200px;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 4;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+64,000000+79&0+2,1+84 */
    background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.46) 46%, black 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.46) 46%, black 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.46) 46%, #000000 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
    /* IE6-9 */
  }
}
.gradient-bottom h1 {
  display: block;
  float: left;
  margin-left: 0%;
  margin-right: -100%;
  width: 65.57292%;
}
@media only screen and (min-width: 641px) {
  .gradient-bottom h1 {
    position: absolute;
    bottom: 10px;
    display: block;
    float: left;
    margin-left: 0%;
    margin-right: -100%;
    width: 48.51074%;
    color: #fff;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 641px) {
  .gradient-bottom p {
    color: #fff;
  }
}
.gradient-bottom .description {
  clear: both;
  display: block;
  float: left;
  margin-left: 0;
  width: 100%;
}
@media only screen and (min-width: 641px) {
  .gradient-bottom .description {
    position: absolute;
    bottom: 0;
    left: 51.44043%;
    margin-right: -100%;
    width: 45.51074%;
    padding-left: 2%;
  }
}
.gradient-bottom .section-icon {
  display: block;
  float: left;
  margin-left: 68.69792%;
  margin-right: -100%;
  width: 31.22396%;
  padding: 15px;
}
@media only screen and (min-width: 641px) {
  .gradient-bottom .section-icon {
    padding: 0;
    position: absolute;
    bottom: 10px;
    display: block;
    float: left;
    margin-left: 0%;
    margin-right: -100%;
    width: 5.64372%;
  }
}
.gradient-bottom.active h1, .gradient-bottom.active .description {
  -webkit-animation: fadeIn ease-in 1;
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-duration: 0.8s;
  -moz-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.gradient-bottom.active .citation {
  -webkit-animation: fadeIn ease-in 1;
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
}

.extended-description.primary {
  position: relative;
  background-color: #fbfaf6;
}
.extended-description.primary .container {
  height: 100%;
}
.extended-description.primary .box {
  background: #fbfaf6;
  position: relative;
}
@media only screen and (min-width: 641px) {
  .extended-description.primary .box {
    display: block;
    float: left;
    margin-left: 0%;
    margin-right: -100%;
    width: 39.93734%;
    height: 100%;
  }
}
@media screen and (max-width: 820px) {
  .extended-description.primary .box {
    width: 100%;
    height: auto;
  }
}
.extended-description.primary .box h1, .extended-description.primary .box p {
  color: #404040;
}
@media only screen and (min-width: 641px) {
  .extended-description.primary .long-description {
    padding-left: 70px;
    padding-right: 30px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 820px) {
  .extended-description.primary .long-description {
    display: block;
    width: 100%;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}
.extended-description.primary.active .box h1, .extended-description.primary.active .box p {
  -webkit-animation: fadeIn ease-in 1;
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-duration: 0.8s;
  -moz-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.extended-description.primary.active .citation {
  -webkit-animation: fadeIn ease-in 1;
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
}
@media screen and (max-width: 820px) {
  .extended-description.primary img.h-visible {
    display: block;
    width: 70%;
    margin: 0 auto;
    padding: 50px 0;
  }
}
@media screen and (max-width: 640px) {
  .extended-description.primary img.h-visible {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 820px) {
  .extended-description.primary .vertical-image {
    display: none;
  }
}

.person .title {
  background: rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}
.person .title::after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 641px) {
  .person .title {
    width: 100%;
  }
}
.person .title h1 {
  color: #fff;
  padding: 0;
}
@media only screen and (min-width: 641px) {
  .person .title h1 {
    display: block;
    float: left;
    margin-left: 25.72021%;
    margin-right: -100%;
    width: 48.51074%;
  }
}
.person .title h1:before {
  display: none;
}
@media only screen and (min-width: 641px) {
  .person blockquote {
    margin: 0 auto;
    max-width: 75%;
  }
}
.person .container::after {
  content: "";
  display: table;
  clear: both;
}
.person .quote-wrap {
  position: relative;
}
@media only screen and (min-width: 641px) {
  .person .quote-wrap {
    margin-top: 70px;
  }
}
@media only screen and (min-width: 641px) {
  .person .author-box {
    margin-top: 40px;
  }
}
.person.active .quote-wrap {
  -webkit-animation: fadeIn ease-in 1;
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-duration: 0.8s;
  -moz-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.person.active h1 {
  -webkit-animation: fadeIn ease-in 1;
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-duration: 0.8s;
  -moz-animation-duration: 0.8s;
  animation-duration: 0.8s;
}

.conservation.primary {
  background: #fbfaf6;
}

.about.primary {
  background: #fbfaf6;
}
.about.primary .box h1, .about.primary .box p {
  color: #404040;
}
@media only screen and (min-width: 641px) {
  .about.primary {
    background: #000;
  }
  .about.primary .box h1, .about.primary .box p {
    color: #fff;
  }
}

.science.primary {
  position: relative;
}
@media only screen and (min-width: 641px) {
  .science.primary {
    background-color: #000;
    background-repeat: no-repeat;
    background-position: center right;
  }
  .science.primary h1, .science.primary p {
    color: #fff;
  }
}
.science.primary h1 {
  margin-top: 30px;
}
.science.primary .bottom-bar {
  background: #fbfaf6;
  width: 100%;
}
@media only screen and (min-width: 641px) {
  .science.primary .bottom-bar {
    position: absolute;
    bottom: 0;
    height: auto;
  }
  .science.primary .bottom-bar::after {
    content: "";
    display: table;
    clear: both;
  }
}
.science.primary .bottom-bar .container::after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 641px) {
  .science.primary .box {
    display: block;
    float: left;
    margin-left: 8.5734%;
    margin-right: -100%;
    width: 48.51074%;
    padding-bottom: 210px;
  }
}
@media only screen and (min-width: 641px) {
  .science.primary.white {
    background-color: #fff;
  }
  .science.primary.white .box h1, .science.primary.white .box p {
    color: #404040;
  }
}
.science.primary.active .stats li {
  -webkit-animation: fadeIn ease-in 1;
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-duration: 0.6s;
  -moz-animation-duration: 0.6s;
  animation-duration: 0.6s;
}
.science.primary .stats li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.science.primary .stats li:last-child, .science.primary .stats li:first-child {
  border: 0;
  padding-bottom: 0;
}
@media only screen and (min-width: 641px) {
  .science.primary .stats li {
    border: 0;
  }
}

.conservation.primary {
  background: #fbfaf6;
  padding-bottom: 0;
}
.conservation.primary .stats-wrap {
  width: 100%;
}
.conservation.primary .title {
  text-align: center;
}
@media only screen and (min-width: 641px) {
  .conservation.primary .title {
    margin: 0 auto 90px;
    max-width: 70%;
  }
}
.conservation.primary .title h1 {
  color: #404040;
  margin-top: 30px;
}
@media only screen and (min-width: 641px) and (max-width: 1023px) {
  .conservation.primary .title h1 span {
    display: block;
  }
}
.conservation.primary .stats {
  background: transparent;
  position: relative;
  width: 90%;
  padding: 0;
  margin: 30px auto;
  justify-content: space-between;
}
@media only screen and (min-width: 641px) {
  .conservation.primary .stats {
    display: flex;
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
}
.conservation.primary .stats li {
  color: #404040;
  border-top: #404040 10px solid;
  padding-left: 0;
  margin: 0 auto;
}
@media only screen and (min-width: 641px) {
  .conservation.primary .stats li {
    max-width: 280px;
  }
}
@media only screen and (min-width: 641px) and (max-width: 1023px) {
  .conservation.primary .stats li {
    padding-top: 35px;
    padding-bottom: 35px;
    max-width: 170px;
  }
  .conservation.primary .stats li strong {
    font-size: 44px;
    line-height: 50px;
  }
}
@media only screen and (min-width: 1024px) {
  .conservation.primary .stats li {
    padding-top: 35px;
    padding-bottom: 35px;
    max-width: 230px;
  }
  .conservation.primary .stats li strong {
    font-size: 54px;
    line-height: 60px;
  }
}
@media only screen and (min-width: 1400px) {
  .conservation.primary .stats li {
    max-width: 300px;
  }
}
.conservation.primary.active .stats li {
  -webkit-animation: fadeIn ease-in 1;
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-duration: 0.8s;
  -moz-animation-duration: 0.8s;
  animation-duration: 0.8s;
}

.introduction .hero.title-wrap {
  padding-top: 30px;
}
@media only screen and (min-width: 641px) {
  .introduction .hero.title-wrap {
    padding-top: 0;
  }
}
.introduction .primary {
  background: #F15936;
  padding-bottom: 0;
  border: 0;
}
.introduction .primary::after {
  content: "";
  display: table;
  clear: both;
}
.introduction .primary:nth-child(even) {
  background: #d75138;
}
.introduction h1 {
  margin-bottom: 20px;
  padding: 0;
  color: #fff;
  padding: 30px 0 0;
}
.introduction h1.bar:before {
  background: #fff;
}
.introduction p {
  color: #fff;
  font-size: 18px;
  line-height: 27px;
}
.introduction .vertically-centered {
  width: 100%;
}
.introduction .box {
  clear: both;
  display: block;
  float: left;
  margin-left: 0;
  width: 100%;
}
@media only screen and (min-width: 641px) {
  .introduction .box {
    display: block;
    float: left;
    margin-left: 17.4337%;
    margin-right: -100%;
    width: 65.0546%;
  }
}
@media only screen and (min-width: 641px) {
  .introduction .with-image .box {
    display: block;
    float: left;
    margin-left: 17.4337%;
    margin-right: -100%;
    width: 65.0546%;
  }
}
.introduction .with-image .image-wrap {
  text-align: center;
  margin: 30px auto 0;
}
@media only screen and (min-width: 641px) {
  .introduction .with-image .image-wrap {
    max-width: 525px;
  }
}
@media only screen and (min-width: 1024px) {
  .introduction .with-image .image-wrap {
    margin: 45px auto 0;
    max-width: 600px;
  }
}
@media only screen and (min-width: 1400px) {
  .introduction .with-image .image-wrap {
    margin: 60px auto 0;
    max-width: 800px;
  }
}
.introduction .cover {
  background: #000;
  overflow: hidden;
}
.introduction .cover:before {
  content: "";
}
@media only screen and (min-width: 641px) {
  .introduction .cover:before {
    min-height: 200px;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 4;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+64,000000+79&0+2,1+84 */
    background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.46) 46%, black 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.46) 46%, black 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.46) 46%, #000000 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
    /* IE6-9 */
  }
}
.introduction .cover .box {
  position: relative;
  z-index: 3;
  text-align: center;
}
.introduction .cover .box img {
  margin: 0 auto;
}
@media only screen and (min-width: 641px) {
  .introduction .cover .box {
    text-align: left;
    display: block;
    float: left;
    margin-left: 52.30109%;
    margin-right: -100%;
    width: 47.6209%;
    height: 100%;
    padding-top: 175px;
  }
}
.introduction .cover h1 {
  max-width: 180px;
  margin: 30px auto 0;
}
@media only screen and (min-width: 641px) {
  .introduction .cover h1 {
    max-width: 232px;
    margin: 0 0 0 -42px;
    margin-bottom: 0;
  }
}
.introduction .cover h2 {
  font-family: "Archer A", "Archer B", Helvetica, Arial, sans-serif;
  color: #fff;
  font-size: 38px;
  line-height: 44px;
  margin-bottom: 5px;
}
.introduction .cover h3 {
  margin-bottom: 30px;
}
.introduction .cover .button {
  display: block;
  margin-bottom: 30px;
}
@media only screen and (min-width: 641px) {
  .introduction .cover .button {
    display: inline;
    margin-bottom: 0;
  }
}
.introduction .cover.active .video-bg {
  -webkit-animation: fadeIn ease-in 1s;
  -moz-animation: fadeIn ease-in 1s;
  animation: fadeIn ease-in 1s;
  -webkit-animation-duration: 1.8s;
  -moz-animation-duration: 1.8s;
  animation-duration: 1.8s;
}
.introduction .fade-in-video.is-playing {
  display: none;
}
@media only screen and (min-width: 641px) {
  .introduction .fade-in-video.is-playing {
    display: block;
  }
}
@media only screen and (min-width: 641px) {
  .introduction video {
    position: absolute;
    top: 0;
  }
}

body[data-active-page=introduction] h1.bar:before {
  background: #fff;
}
@media only screen and (min-width: 641px) {
  body[data-active-page=introduction] .primary .container {
    height: 100%;
    width: 100%;
  }
}
@media only screen and (min-width: 641px) {
  body[data-active-page=introduction] .cover .container {
    position: relative;
    top: 0;
    z-index: 2;
  }
}
body[data-active-page=introduction] .sub-nav li a.active:before {
  border-color: #fff;
}
body[data-active-page=introduction] .section[data-anchor=international] .image-wrap {
  text-align: center;
  margin: 30px auto 0;
}
@media only screen and (min-width: 641px) {
  body[data-active-page=introduction] .section[data-anchor=international] .image-wrap {
    max-width: 255px;
  }
}
@media only screen and (min-width: 1024px) {
  body[data-active-page=introduction] .section[data-anchor=international] .image-wrap {
    max-width: 300px;
  }
}
@media only screen and (min-width: 1400px) {
  body[data-active-page=introduction] .section[data-anchor=international] .image-wrap {
    max-width: 400px;
  }
}

body.fp-viewing-voices .sub-nav li a:before, body[data-active-page=introduction] .sub-nav li a:before {
  background: #fff;
}
body.fp-viewing-voices .sub-nav li a span em, body[data-active-page=introduction] .sub-nav li a span em {
  background: #fff;
  color: #404040;
}

.primary.active {
  -webkit-animation: fadein 1s;
  -moz-animation: fadein 1s;
  -ms-animation: fadein 1s;
  -o-animation: fadein 1s;
  animation: fadein 1s;
}

.vertical-image {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 641px) {
  .vertical-image {
    margin-left: 42.86702%;
    width: 57.08415%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.author-box {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  background-position: bottom right;
  background-size: auto;
  background-repeat: no-repeat;
  width: 100%;
  margin: 30px 0;
}
.author-box::after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 641px) {
  .author-box {
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
  }
}
.author-box address {
  padding: 20px;
}
.author-box img {
  max-width: 130px;
  float: right;
}

.byline {
  font-size: 16px;
  line-height: 22px;
  color: #838078;
  display: block;
  float: left;
  margin-left: 0%;
  margin-right: -100%;
  width: 57.08415%;
}
@media only screen and (min-width: 641px) {
  .byline {
    font-size: 16px;
    line-height: 22px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 60%;
  }
}
.byline strong {
  color: #404040;
  display: block;
}
@media only screen and (min-width: 641px) {
  .byline strong {
    font-size: 18px;
    line-height: 24px;
  }
}
.byline address {
  font-size: 16px;
  line-height: 22px;
}

.stats {
  display: block;
  position: relative;
  margin: 0;
  padding: 15px 0;
}
@media only screen and (min-width: 641px) {
  .stats {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
.stats li {
  padding: 30px 15px;
  margin: 0;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 641px) {
  .stats li {
    padding: 20px;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    width: 20%;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.stats li.bird-card-wrap {
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 641px) {
  .stats li.bird-card-wrap {
    padding-bottom: 0;
    margin-bottom: 20px;
  }
}
.stats li.bird-card-wrap::after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 641px) {
  .stats .bird-card {
    position: absolute;
    bottom: 0;
  }
}
.stats strong {
  font-family: "Archer A", "Archer B", Helvetica, Arial, sans-serif;
  font-size: 42px;
  line-height: 1em;
  display: block;
}

@media only screen and (min-width: 641px) {
  .hero h1 {
    display: block;
    float: left;
    margin-left: 8.5734%;
    margin-right: -100%;
    width: 39.93734%;
  }
}
.hero .box {
  z-index: 4;
  padding-top: 30px;
}
@media only screen and (min-width: 641px) {
  .hero .box {
    padding-top: 0;
  }
}
.hero.active .box {
  -webkit-animation: fadeIn ease-in 1;
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-duration: 0.6s;
  -moz-animation-duration: 0.6s;
  animation-duration: 0.6s;
}
.hero.active .video-bg {
  -webkit-animation: fadeIn ease-in 0.7s;
  -moz-animation: fadeIn ease-in 0.7s;
  animation: fadeIn ease-in 0.7s;
  -webkit-animation-duration: 0.8s;
  -moz-animation-duration: 0.8s;
  animation-duration: 0.8s;
}

.image-wrap {
  position: relative;
}
@media only screen and (min-width: 641px) {
  .image-wrap {
    position: inherit;
  }
}

p.citation {
  position: absolute;
  bottom: 0px;
  top: auto;
  z-index: 3;
  padding: 3px 5px 5px 5px;
  line-height: 100%;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  margin: 0;
  max-width: 57.08415%;
  text-align: right;
  line-height: 15px;
}
@media only screen and (min-width: 641px) {
  p.citation {
    bottom: auto;
    top: -3px;
  }
}
p.citation a {
  color: #fff;
  text-decoration: none;
}

@media only screen and (min-width: 641px) {
  body[data-active-page=working-lands] .science {
    background-size: 30%;
  }
}
@media only screen and (min-width: 1024px) {
  body[data-active-page=working-lands] .science {
    background-size: 40%;
    background-position: right 230px;
  }
}

@media only screen and (min-width: 641px) {
  body[data-active-page=water] .science {
    background-size: 36%;
  }
}

@media only screen and (min-width: 641px) {
  body[data-active-page=bird-friendly] .science {
    background-size: 40%;
  }
}

@media only screen and (min-width: 641px) {
  body[data-active-page=coasts] .science {
    background-size: 50%;
  }
}

body[data-active-page=introduction] .nav-arrows .left a {
  opacity: 0;
}

body[data-active-page=bird-friendly] .nav-arrows .right a {
  opacity: 0;
}

body.fp-viewing-about .nav-arrows .top a {
  opacity: 0;
}

body.fp-viewing-voices .nav-arrows .bottom a {
  opacity: 0;
}

input, textarea {
  width: 100%;
  padding: 7px 10px;
  font-size: 16px;
  line-height: 24px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  -webkit-appearance: none;
}

input[type=submit] {
  background: #fbfaf6;
  color: white;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  border: 0;
  text-decoration: none;
  padding: 8px 15px;
  font-size: 16px;
}
