body{
	height: 100%;
	width: 100%;
}
.first {
	position: relative;
	z-index: 0;
}
.absolute-center{
	position: absolute;
	margin-top: 15vh;
	left: 0;
	right: 0;
	margin-left: auto;
}
.skew{
	position: relative;
	transform: skewY(-3deg);
	margin-top: -100px;
	min-height: 30vh;
	z-index: 100;
}
.skew-opp{
	position: relative;
	transform: skewY(3deg);
	margin-top: -100px;
	min-height: 30vh;
	z-index: 100;
}
.non-first{
	margin-top: -100px;
	position: relative;
	z-index: 80;
	padding-bottom: 140px;
	padding-top: 180px;
}
.last{
	margin-top: -100px;
	position: relative;
	z-index: 80;
	padding-bottom: 0;
	padding-top: 180px;
}
.sections.last{
	min-height: 50vh;
}
.row{
	margin-top: 15px;
}
.row > .col-sm-4{
	margin-top: 15px;
	margin-bottom: 15px;
}
.container {
	color: #FFF;
}
.content {
	background-color: #000;
	color: #fff;
	box-shadow: rgba(0, 0, 0, 0.8) 0 20px 70px;
}
.white-content {
	background-color: #fff;
	color: #000;
}
.white-content > .container {
	color: #000;
}
.white-content > .container > p > a {
	color: #111;
}
p {
	font-size: 16px;
}
a {
	color: #aaa;
}
a:hover {
	color: #999;
	text-decoration: none;
}
a:clicked {
	color: #999;
	text-decoration: none;
}

.sections {
	min-height: 80vh;
	min-width: 95vw;
}
.color {
	background-color:#f8f8f8;
	border-radius:10px;
	color:#4795F4;
}
.navround {
	border-bottom-left-radius:15px;
	border-bottom-right-radius:15px;
}
.nav-clear> .container > #navbar > .nav > li > a{
	color: #000;
}
.nav > li > a{
	color: #fff;
}
.nav > li > a:hover{
	color: #eee;
	background-color:transparent;
}
.center .nav,
.center .nav > li {
    float:none;
    display:inline-block;
    vertical-align: top;
}

.center {
    text-align:center;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.typed-cursor{
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

.nav-black {
	background-color: #000000;
	-webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}

.nav-clear {
	background: transparent;
	-webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}

@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

.text-editor-wrap {
  display: block;
  margin: auto;
  max-width: 80vw;
  clear: both;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
	margin-top: 2em;
	margin-bottom: 2em;
}

.text-body {
  height: 75px;
  padding: 10px;
  color: #111;

  font-family: "Consolas", "Courier New", "Courier";
  font-size: 1.5em;
  line-height: 1.30em;
  font-weight: 1500;
  text-align: left;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out; }
