
/* Global */


* { text-rendering: optimizeLegibility; }

body,
html {
  width: 100%;
  background: lightblue;
  font-family: "Open-Sans", Helvetica, Arial, sans-serif;
  color: #84888c;
  font-size: 14px;
  margin: 0px;
}

.clearfix::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0;
}

img {
  width: 100%;
  height: auto;
}

#container {
  z-index: 2;
  width: 100%;
  position: fixed;
  top: 150px;
  left: 0px;
}

#page { position: relative; }

/* ********************************************************************** */
/* Folds */
/* ********************************************************************** */

.topHalf,
.bottomHalf {
  position: relative;
  display: block;
  z-index: 2;
  width: 100%;
  transition: none;
  overflow: hidden;
}

.topHalf {
  z-index: 3 !important;
  -webkit-transform-origin: top;
  transition: -webkit-transform 500ms cubic-bezier(0.000, 0.450, 1.000, 0.950), background-color 500ms ease-in;
  position: absolute;
  top: 0px;
  transition: none;
}

.bottomHalf {
  transition: -webkit-transform 500ms cubic-bezier(0.000, 0.450, 1.000, 0.950), background-color 500ms ease-in;
  -webkit-transform-origin: bottom;
  position: absolute;
  bottom: 0px;
  transition: none;
}

.bottomHalf img {
  top: -100%;
  position: absolute;
}

.foldWrapper {
  position: relative;
  vertical-align: top;
  padding: 0px;
  width: 100%;
  height: auto;
  background: rgba(0,0,0,0.1);
  z-index: 1;
  display: block;
  overflow: hidden;
  -webkit-transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  transition: none;
}

#footer-top {
  position: fixed;
  width: 100%;
  height: 400px;
  top: 0px;
  left: 0px;
  display: table;
  background: #373737;
  display: none;
  z-index: 3;
}

#footer-bottom {
  position: absolute;
  width: 100%;
  height: 400px;
  bottom: 0px;
  left: 0px;
  display: table;
  background: #373737;
}

.footer-inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 70px;
  color: white;
}
