@charset "UTF-8";
#display {
  position: fixed;
  width: 100px;
  height: 50px;
  bottom: 0;
  background: pink;
  z-index: 999;
}

body, html, p, h1, h2, h3, h4, h5, h6, div, span, ul, li, a {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  margin: 0;
  padding: 0;
  line-height: 100%;
  display: block;
}

img {
  width: 100%;
  display: block;
  border: none;
}

q {
  quotes: "“" "”" "‘" "’";
}

q:before {
  content: open-quote;
}

q:after {
  content: close-quote;
}

.clearfix {
  width: 100%;
  clear: both;
  display: inline-block;
}

.clearfix:after {
  content: "";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
  width: 100%;
}

.ingenuity {
  -webkit-transition: opacity 1s cubic-bezier(1, 0.2, 0.2, 1);
  -ms-transition: opacity 1s cubic-bezier(1, 0.2, 0.2, 1);
  transition: opacity 1s cubic-bezier(1, 0.2, 0.2, 1);
}

.ingenuity.menudrop {
  opacity: .8;
}

.ingenuity h1,
h2,
h3,
h4,
h5 {
  font-weight: 800;
  letter-spacing: .02em;
}

.ingenuity p {
  font-size: 1em;
  line-height: 1.618em;
  margin-bottom: 1em;
}

.ingenuity strong {
  font-weight: 600;
  display: inline;
}

.ingenuity .contributor {
  font-style: italic;
  color: #565656;
}

/* ---------- menu ----------*/
/* HAMBURGER */
.controls {
  position: fixed;
  width: 30px;
  top: 20px;
  left: 20px;
  z-index: 4;
}

#nav-icon {
  width: 30px;
  height: 30px;
  position: relative;
  margin: auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -1px;
  left: 4px;
}

#nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 20px;
  left: 4px;
}

.menu {
  width: 100%;
  height: 100%;
  background: rgba(255, 137, 1, 0.9);
  background: -webkit-linear-gradient(left top, rgba(255, 137, 1, 0.9), rgba(255, 137, 1, 0.9));
  background: -o-linear-gradient(bottom right, rgba(255, 137, 1, 0.9), rgba(255, 137, 1, 0.9));
  background: -moz-linear-gradient(rgba(255, 137, 1, 0.9), rgba(255, 137, 1, 0.9));
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.95), #ff8901);
  position: fixed;
  z-index: 3;
  top: -100vh;
  bottom: 0;
  left: 0;
  right: 0;
  display: table;
  opacity: 1;
  -webkit-transition: top 1s cubic-bezier(1, 0.2, 0.2, 1);
  -ms-transition: top 1s cubic-bezier(1, 0.2, 0.2, 1);
  transition: top 1s cubic-bezier(1, 0.2, 0.2, 1);
}

.menu.show {
  top: 0;
}

.lf-menu-inner {
  background: rgba(255, 137, 1, 0.4);
  display: table-cell;
  width: 30%;
  vertical-align: middle;
  text-align: center;
  color: white;
  opacity: .5;
  -webkit-transition: opacity 300ms ease;
  -ms-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}

.lf-menu-inner:hover {
  opacity: 1;
}

.lf-menu-inner .lf-header {
  height: 125px;
  align-content: center;
  z-index: 99;
  position: relative;
}

.lf-menu-inner .lf-header .lf-logo {
  width: 369px;
  max-width: 70%;
  margin: 0 auto;
  padding-bottom: 2em;
}

.lf-menu-inner .lf-header .lf-logo img {
  padding-top: 1.25em;
  margin: 0 auto;
}

.lf-menu-inner p {
  font-size: .800em;
  line-height: 1.655em;
  margin-bottom: 1em;
}

.lf-menu-inner span {
  font-size: .800em;
  font-weight: 700;
}

.rf-menu-inner {
  display: table-cell;
  width: 70%;
  vertical-align: middle;
  text-align: left;
  color: white;
}

.rf-menu-inner:after {
  content: "";
  background: url(../img/content/credits_page.jpg);
  background-size: cover;
  opacity: 0.2;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}

.rf-menu-inner a {
  padding: .5em .5em .5em 3em;
  letter-spacing: .03em;
  text-decoration: none;
  font-size: 2em;
  font-weight: 700;
  color: white;
  position: relative;
  -webkit-transition: color 700ms ease;
  -ms-transition: color 700ms ease;
  transition: color 700ms ease;
}

.rf-menu-inner a:hover {
  color: greenyellow;
}

.rf-menu-inner a:after {
  content: '';
  display: block;
  background: white;
  height: 2px;
  width: 0px;
  position: absolute;
  bottom: 0.25em;
  -webkit-transition: all 300ms cubic-bezier(1, 0, 0, 1);
  -ms-transition: all 300ms cubic-bezier(1, 0, 0, 1);
  transition: all 300ms cubic-bezier(1, 0, 0, 1);
}

.rf-menu-inner a:hover:after {
  background: greenyellow;
  width: 250px;
}

.rf-menu-inner a:active:after {
  background: greenyellow;
  width: 250px;
}

.rf-menu-inner ul li {
  position: relative;
}

.rf-menu-inner ul li ul {
  position: relative;
  left: 4em;
  display: none;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
}

.rf-menu-inner ul li ul li a {
  font-size: 1em;
  font-weight: 400;
}

/* ---------- left frame ---------- */
.ingenuity .lf {
  width: 50%;
  height: 100vh;
  position: fixed;
  background: #000;
  z-index: 1;
}

.ingenuity .lf .lf-inner {
  height: 100%;
  width: 100%;
}

.ingenuity .lf .lf-inner .lfbg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* background-position: 50% 50%;
    background-size: cover;*/
  -webkit-transition: opacity 3000ms ease;
  -ms-transition: opacity 3000ms ease;
  transition: opacity 3000ms ease;
}

.ingenuity .lf .lf-inner .lfbg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
}

.ingenuity .lf .lf-inner .lfbg img {
  display: none !important;
}

.ingenuity .lf .lf-inner .lfbg .credit {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 0.8em;
}

.ingenuity .lf .lf-inner .lf-header {
  height: 125px;
  align-content: center;
  background: url(../img/fade.png) repeat-x;
  z-index: 99;
  position: relative;
}

.ingenuity .lf .lf-inner .lf-header .lf-logo {
  width: 369px;
  max-width: 70%;
  margin: 0 auto;
}

.ingenuity .lf .lf-inner .lf-header .lf-logo img {
  padding-top: 1.25em;
  margin: 0 auto;
}

.ingenuity .lf .lf-inner .lfbg.mainimg_fade {
  opacity: 0.5 !important;
}

/* ---------- right frame ---------- */
.scroll {
  position: fixed;
  bottom: 10px;
  left: 50%;
  margin-left: -15px;
  z-index: 9;
}

.scroll img {
  max-width: 30px;
}

.ingenuity .rf {
  margin-left: 50%;
  width: 50%;
  height: 100%;
}

.ingenuity .rf .rf-inner {
  padding: .750em;
  column-count: 2;
  column-gap: 0;
}

.ingenuity .rf .rf-inner .hline {
  width: 100%;
  display: inline-block;
  margin-bottom: 1.667em;
}

.ingenuity .rf .rf-inner .hline-frame {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  margin: .750em;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  transition: all 200ms ease;
}

.ingenuity .rf .rf-inner .hline-frame .hline-text {
  padding: 1.667em;
}

.ingenuity .rf .rf-inner .hline-frame .hline-text h3 {
  font-size: 2.000em;
  font-style: italic;
  margin-bottom: 0.625em;
  text-transform: uppercase;
}

.ingenuity .rf .rf-inner .hline-frame .hline-text h3.storycat {
  font-size: 1em;
  font-style: normal;
  margin-bottom: 0.3em;
  color: #ff8901;
  display: block;
}

.ingenuity .rf .rf-inner .hline-frame .hline-text p {
  font-size: 1.125em;
  color: black;
  line-height: 1.125em;
  margin-top: 15px;
}

.ingenuity .rf .rf-inner .hline-frame .hline-img {
  background: #333;
  overflow: hidden;
}

.ingenuity .rf .rf-inner .hline-frame .hline-img img {
  opacity: .5;
  -webkit-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  transition: all 200ms ease;
}

.ingenuity .rf .rf-inner .hline-frame:hover .hline-img img {
  opacity: 1;
}

.ingenuity .rf .rf-inner .hline-frame:hover {
  cursor: pointer;
  transform: translateY(-5px);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.4);
}

a .hline h3 {
  color: black;
  transition: all 300ms ease;
  display: inline;
  text-decoration: underline white;
}

a:hover .hline h3 {
  text-decoration: underline #ff8901;
}

/* ---------- story ----------- */
.ingenuity .story {
  margin-left: 50%;
  width: 50%;
  position: relative;
  z-index: 2;
}

.ingenuity .storyupper {
  height: 50vh;
  width: 100%;
  background: #eee;
  background-image: url(../img/storytitle.jpg);
  background-size: cover;
  display: table;
  text-align: center;
}

.ingenuity .hiddentitle {
  height: 50vh;
  width: 100%;
  display: table;
  text-align: center;
  position: absolute;
  bottom: 0;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 2000ms ease;
  -ms-transition: opacity 2000ms ease;
  transition: opacity 2000ms ease;
}

.ingenuity .storyupper .title,
.ingenuity .hiddentitle .title {
  vertical-align: middle;
  padding: 0 15%;
  display: table-cell;
}

.ingenuity .storyupper .title .bar,
.ingenuity .hiddentitle .title .bar {
  height: .417em;
  width: 11.667em;
  background: #ff8901;
  display: block;
  margin: 1.666em auto;
}

.ingenuity .storyupper .title h2,
.ingenuity .hiddentitle .title h2 {
  font-size: 2.8em;
  text-transform: uppercase;
  color: #ff8901;
}

.ingenuity .storyupper .title p.subtext {
  font-size: 1.125em;
  line-height: 1.250em;
}

.ingenuity .storyupper .title p.author {
  text-transform: uppercase;
  font-size: 0.750em;
  font-weight: bold;
}

.ingenuity .hiddentitle .title p.author {
  text-transform: uppercase;
  font-size: 0.750em;
  font-weight: bold;
  color: white;
}

.ingenuity .storylower p.subtext {
  display: none;
  font-family: "Open Sans",sans-serif;
  font-size: 1em;
  line-height: 1.250em;
  background: #a86500;
  color: white;
  padding: 8% 5%;
  width: 90%;
  text-align: center;
}

.ingenuity .storylower {
  height: auto;
  margin: 0 auto;
  padding-top: 6.667em;
  padding-bottom: 4em;
}

.ingenuity .storylower .storyend {
  max-width: 10px;
  display: inline-block;
  margin-left: 6px;
}

.ingenuity .storylower.short {
  height: 50vh;
  margin: 0 auto;
  padding-top: 0;
  display: table;
  padding-bottom: 40px;
  padding-top: 40px;
}

.ingenuity .storylower.short .shortinner {
  display: table-cell;
  vertical-align: middle;
}

.ingenuity .storylower hr {
  margin: 2em auto;
  border-top: 1px solid #bbb;
  border-bottom: none;
}

.ingenuity .storylower p {
  font-family: "baskerville", serif;
  font-size: 1.125em;
  line-height: 1.5em;
  margin: 0 auto 1em auto;
}

.ingenuity .storylower .storyintro {
  position: relative;
  margin: 0 auto;
  height: 50vh;
}

.ingenuity .storylower h3 {
  color: #ff8901;
  margin: 1.625em auto 0.625em auto;
  text-transform: uppercase;
  font-size: 1em;
}

.ingenuity .storylower .quote {
  width: 50%;
  float: right;
  background: #a86500;
  margin: 1em;
  position: relative;
}

.ingenuity .storylower .quote.full {
  width: 70%;
  margin: 0  15% 3% 15%;
  background: #fff;
  float: none;
}

.ingenuity .storylower .quote h4 {
  font-weight: 600;
  padding: 1.7em 1.7em 1.2em 1.5em;
  font-size: 1.3em;
  color: white;
  line-height: 1.5em;
}

.ingenuity .storylower .quote.full h4 {
  color: #555;
}

.ingenuity .storylower .imagecont {
  width: 64%;
  margin: 0 auto 3% auto;
  padding: 0 3% 3% 3%;
  border: solid 1px #999;
}

.ingenuity .storylower .imagecont .image {
  margin-top: 6%;
}

.ingenuity .storylower .imagecont h3,
.ingenuity .storylower .imagecont p {
  width: 100%;
}

.ingenuity .storylower .quote img {
  max-width: 40px;
  position: absolute;
  right: 0px;
}

.ingenuity .storylower .quote h4 span {
  font-size: .7em;
  line-height: 1.5em;
  margin-top: 12px;
}

.ingenuity .storylower .quote h4 a {
  font-weight: 600;
  color: white;
  display: inline-block;
}

/*story img*/
.ingenuity .storylower .storyimg {
  position: relative;
  height: 200px;
  overflow: hidden;
  margin-bottom: 1em;
  margin-left: -5%;
}

.ingenuity .storylower.short .storyimg {
  display: none;
}

.ingenuity .storylower .storyimg .caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 5% 5% 5% 10%;
  background: rgba(0, 0, 0, 0.5);
  background: -webkit-linear-gradient(left top, rgba(0, 0, 0, 0.8), rgba(255, 137, 1, 0.4));
  background: -o-linear-gradient(bottom right, rgba(0, 0, 0, 0.8), rgba(255, 137, 1, 0.4));
  background: -moz-linear-gradient(rgba(0, 0, 0, 0.8), rgba(255, 137, 1, 0.4));
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.8), rgba(255, 137, 1, 0.4));
  font-size: 1.5em;
  line-height: 1.5em;
  color: white;
  margin: auto;
}

.ingenuity .storylower .storyimg .caption .imagearrow {
  width: 20px;
  height: 24px;
  position: absolute;
  left: 5%;
  margin-top: 5px;
  background-image: url(../img/imagearrow.png);
  background-repeat: no-repeat;
}

.ingenuity .storylower .storyimg .caption .photocredit {
  float: right;
  font-size: .500em;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.ingenuity .lf .lf-inner .lf_storyimg {
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.ingenuity .lf .lf-inner .lf_storyimg .lf_storyimg_inner {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
}

.ingenuity .featurecap {
  position: absolute;
  padding: 3% 5%;
  line-height: 1.3em;
  font-size: .9em;
  bottom: 10px;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  background: -webkit-linear-gradient(left top, rgba(0, 0, 0, 0.8), rgba(255, 137, 1, 0.4));
  background: -o-linear-gradient(bottom right, rgba(0, 0, 0, 0.8), rgba(255, 137, 1, 0.4));
  background: -moz-linear-gradient(rgba(0, 0, 0, 0.8), rgba(255, 137, 1, 0.4));
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.8), rgba(255, 137, 1, 0.4));
  color: white;
  width: 90%;
}

.ingenuity .featurecap span {
  font-weight: 700;
}

.ingenuity .homefeaturetitle {
  position: absolute;
  padding: 3% 5%;
  font-size: 1.5em;
  color: white;
  width: 90%;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  background: -webkit-linear-gradient(left top, rgba(0, 0, 0, 0.8), rgba(255, 137, 1, 0.4));
  background: -o-linear-gradient(bottom right, rgba(0, 0, 0, 0.8), rgba(255, 137, 1, 0.4));
  background: -moz-linear-gradient(rgba(0, 0, 0, 0.8), rgba(255, 137, 1, 0.4));
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.8), rgba(255, 137, 1, 0.4));
}

.ingenuity .homefeaturetitle h2 {
  font-size: 2em;
  font-style: italic;
}

/* ---------- modifiers ---------- */
.ingenuity .storylower h3,
.ingenuity .storylower hr,
.ingenuity .storylower p {
  width: 70%;
  max-width: 66.667em;
}

.ingenuity .lf .lf-inner .lf_storyimg.show {
  opacity: 1;
}

/* ---------- responsive ---------- */
/* 1240 */
@media all and (max-width: 1240px) {
  .storyupper .title h2 {
    font-size: 2.5em;
  }
  .ingenuity .rf, .ingenuity .story {
    margin-left: 40%;
    width: 60%;
    height: 100%;
  }
  .ingenuity .lf {
    width: 40%;
  }
}

/* 1020 */
@media all and (max-width: 960px) {
  .lf-menu-inner {
    display: none;
  }
  .rf-menu-inner a {
    font-size: 1em;
    padding: .5em .5em .5em 2em;
  }
  .rf-menu-inner > ul {
    width: 80%;
    margin: 0 auto;
  }
  .ingenuity .lf {
    width: 100%;
    position: relative;
    z-index: 1;
    top: 0;
  }
  .ingenuity .rf,
  .ingenuity .story {
    margin-left: 0%;
    width: 100%;
    position: inherit;
  }
  /* ---------- story ----------- */
  .ingenuity .storyupper {
    height: auto;
    padding: 1.250em 0 0.8em 0;
    opacity: .9;
    position: absolute;
    bottom: 0px;
    z-index: 2;
  }
  .ingenuity .storyupper.spotlight {
    height: auto;
    padding: 1.80em 0 0.8em 0;
    opacity: .9;
    position: relative;
    bottom: 0px;
    z-index: 2;
  }
  .ingenuity .storyupper .title h2 {
    font-size: 2.5em;
  }
  .ingenuity .storyupper .title p.subtext {
    font-size: 1em;
    line-height: 1.2em;
  }
  .ingenuity .storylower .storyimg {
    float: left;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-left: 0;
  }
  .ingenuity .storylower .storyimg .caption {
    position: relative;
    width: 70%;
    max-width: 66.667em;
    font-size: .750em;
    line-height: 1em;
    padding: 1.1em;
    background: rgba(255, 255, 255, 0.8);
    color: black;
    border-bottom: solid 1px #ff8901;
  }
  .ingenuity .storylower .storyimg .caption .photocredit {
    display: inline-block;
    position: relative;
    float: left;
    bottom: 0;
    right: 0;
    width: 100%;
    margin-bottom: 5px;
  }
  .ingenuity .storylower.short .shortinner {
    display: table-row;
    vertical-align: middle;
  }
  .ingenuity .storylower.short .storyimg {
    display: table-row;
  }
  .ingenuity .storylower .storyimg .caption .imagearrow,
  .ingenuity .lf .lf-inner .lf_storyimg {
    display: none;
  }
  .ingenuity .hiddentitle {
    opacity: 0 !important;
  }
}

/* 600 */
@media all and (max-width: 600px) {
  /* menu */
  .lf-menu-inner {
    display: none;
  }
  .rf-menu-inner a {
    font-size: 1em;
    padding: .5em .5em .5em 2em;
  }
  .ingenuity .rf .rf-inner {
    padding: .750em;
    column-count: 1;
  }
  /* ---------- story ----------- */
  .ingenuity .storyupper .title {
    vertical-align: middle;
    padding: 0 10%;
    display: table-cell;
  }
  .ingenuity .storyupper .title .bar {
    height: .417em;
    width: 5.833em;
    display: block;
    margin: 1em auto;
  }
  .ingenuity .storyupper .title h2 {
    font-size: 2em;
  }
  .ingenuity .storyupper .title p.subtext {
    display: none;
    visibility: hidden;
  }
  .ingenuity .storylower p.subtext {
    display: block;
  }
  .ingenuity .storylower {
    height: auto;
    max-width: 66.667em;
    margin: 0 auto;
    padding-top: 0;
  }
  .ingenuity .storylower h3,
  .ingenuity .storylower hr,
  .ingenuity .storylower .storyimg .caption,
  .ingenuity .storylower p {
    width: 86%;
    max-width: 66.667em;
  }
  .ingenuity .storylower p {
    font-family: "baskerville", serif;
    font-size: 1.0em;
    line-height: 1.618em;
  }
  .ingenuity .storylower .quote {
    width: 100%;
    float: right;
    background: #a86500;
    margin: 0 auto 1em auto;
  }
  .ingenuity .storylower .quote.full {
    width: 100%;
    margin: 0;
  }
  .ingenuity .storylower .imagecont {
    width: 88%;
  }
}
