/* TABLE OF CONTENTS
 *
 * I.	ANIMATIONS	[001]
 * II.	CUBE		[002]
 * III. BUTTONS		[003]
 * IV.	CUBE PAGES	[004]
 * V.   NAV BAR		[005]
 * VI.	ONE PAGE	[006]
 */




/* ANIMATIONS [001] */

@-webkit-keyframes spin  {
	0% { -webkit-transform: rotateY(0); transform: rotateY(0); }
	100% { -webkit-transform: rotateY(360deg); transform: rotateY(360deg); }
}
@keyframes spin  {
	0% { -webkit-transform: rotateY(0); transform: rotateY(0); }
	100% { -webkit-transform: rotateY(360deg); transform: rotateY(360deg); }
}

@-webkit-keyframes a-proj  {
	0% { -webkit-transform: rotateZ(0); transform: rotateZ(0); }
	100% { -webkit-transform: rotateZ(90deg); transform: rotateZ(90deg); }
}
@keyframes a-proj  {
	0% { -webkit-transform: rotateZ0); transform: rotateZ(0); }
	100% { -webkit-transform: rotateZ(90deg); transform: rotateZ(90deg); }
}


@-webkit-keyframes a-proj-back  {
	0% { -webkit-transform: rotateZ(90); transform: rotateZ(90); }
	100% { -webkit-transform: rotateZ(0deg); transform: rotateZ(0deg); }
}
@keyframes a-proj-back  {
	0% { -webkit-transform: rotateZ90); transform: rotateZ(90); }
	100% { -webkit-transform: rotateZ(0deg); transform: rotateZ(0deg); }
}


a {
	color: black;
	text-decoration: none;
}

header, body{
	margin: 0px;
	width: 100%;
	padding: 0px;
}
#site-wrapper {
	overflow: hidden;
	height: calc(100vh);
	width: 100%;
}


/* CUBE STUFF [002] */

#cube-wrapper {
	position: relative;
	margin: calc(100vh - 500px) auto;
	height: 700px;
	width: 700px;
	perspective: 1000px;
	perspective-origin: 50% -50%;
	-webkit-perspective: 1000px;
	-webkit-perspective-origin: 50% -50%;
}

#cube-main {
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.cube-face {
	background-color: white;
	position: absolute;
	width: 700px;
	height: 700px;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.back {
	-webkit-transform: translateZ(-350px) rotateY(180deg);
	transform: translateZ(-350px) rotateY(180deg);
}
.right {
	-webkit-transform: rotateY(-270deg) translateX(350px);
	-webkit-transform-origin: top right;
	transform: rotateY(-270deg) translateX(350px);
	transform-origin: top right;
}
.left {
	-webkit-transform: rotateY(270deg) translateX(-350px);
	-webkit-transform-origin: center left;
	transform: rotateY(270deg) translateX(-350px);
	transform-origin: center left;
}
.top {
	-webkit-transform: rotateX(-90deg) translateY(-350px);
	-webkit-transform-origin: top center;
	transform: rotateX(-90deg) translateY(-350px);
	transform-origin: top center;
}
.bottom {
	-webkit-transform: rotateX(90deg) translateY(350px);
	-webkit-transform-origin: bottom center;
	transform: rotateX(90deg) translateY(350px);
	transform-origin: bottom center;
}
.front {
	-webkit-transform: translateZ(350px);
	transform: translateZ(350px);
}

/* BUTTONS [003] */

#b-proj {
	height: 100px;
	width: 100px;
	background-color: white;
}
#b-proj-back {
	height: 100px;
	width: 100px;
	background-color: white;
}


/* CUBE PAGES [004] */

.cube-page {
	margin: auto;
	background-color: green;
	height: 300px;
	width: 500px;
	transform: rotateX(90deg) translateY(-10vh);
}

/* NAV BAR [005] */
#navbar {
	font-size: 0px;
	padding: 6px 3px;
	height: 30px;
	background-color: white;
	width: 100%;
}
#navbar a {	text-decoration: none; }
.navbar-button {
	display: inline-block;
	margin: 0px 3px;
	text-align: center;
	line-height: 30px;
	font-size: 24px;
	font-family: 'Carrois Gothic SC', sans-serif;
	text-decoration: none;
	color: black;
	width: 200px;
	height: 30px;
	background-color: green;
}

/* ONE PAGE [006] */

#op-wrapper {
	height: 100%;
	min-width: 1100px;
	background-color: black;
}
.op-title {
	position: relative;
	padding-bottom: 40px;
	min-height: 600px;
	height: auto;
	width: 80%;
	max-width: 1100px;
	margin: calc(10vh) auto 0px auto;
	background-color: #FEFEFE;
	text-align: center;
	font-size: 0px;
	box-shadow: 2px 2px 2px 0px rgba(0,0,0,0.5);
	display: none;
}


.nojs .op-title { display:block; }

.op-titlewords {
	font-family: 'Montserrat', sans-serif;
	padding-top: 30px;
	font-weight: bold;
	font-size: 50px;
    background-color: #666666;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: rgba(255,255,255,0.4) 1px 1px 3px;
	text-align: center;
}

.op-block {
	position: relative;
	height: calc(95vh);
	padding-top: calc(5vh);
	width: 100%;
	background-color: blue;
}
.op-block  img {
}

.op-block .stats {
	position: relative;
	vertical-align: top;
	display: inline-block;
	background-color: white;
	height: auto;
	width: 400px;
	font-size: 0px;
}
.op-block .stats h1{
	background-color: transparent;
}
.op-block .stats img {
	margin: 0px 0px 0px 4px;
	box-shadow: none;
	border: 0px solid #EFEFEF;
	padding-right: 4px;
}
.op-block .stats img:first-of-type {
	margin: 8px 0px 0px 4px;
}
.op-block .stats img:last-of-type {
	margin: 0px 0px 8px 4px;
}

.op-block .stats .info {
	vertical-align: top;
	display: inline-block;
	height: 70px;
	width: calc(100% - 94px);
	background-color: white;
}
.op-block .stats .info span {
	margin-top: 10px;
	width: 100%;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	font-size: 12px;
	color: black;
	font-family: 'Montserrat', sans-serif;
}
.op-block .stats .info span h1{
	display: inline-block;
	vertical-align: middle;
	margin: 0px;
	font-size: 24px;
	color: black;
	font-family: 'Montserrat', sans-serif;
}

.op-block .textblock {
	position: relative;
	vertical-align: top;
	display: inline-block;
	height: auto;
	width: 695px;
	margin-top: 35px;
	font-size: 0px;
	background-color: white;
	
	text-align: justify;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
}

.op-blockimage {
display: inline-block;
height: 320px;
width: 100%;
}

/* BLOCK TEXT
 * 
 */
 
 h1{
	font-weight: 900;
	display: inline-block;
	padding-left: 10px;
	padding-right: 10px;
	margin: 0px;
	width: auto;
	font-size: 36px;
	background-color: white;
	font-family: 'Lato', sans-serif;
}
.h-wrap {
	display: inline-block;
	width: 400px;
	height: 44px;
	overflow: hidden;
	text-align: center;
}
.h-filler {
	display: inline-block;
	width: calc(100% - 400px);
	height: 44px;
	overflow: hidden;
	text-align: center;
}

.h-body {
	padding: 12px;
	text-align: justify;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	overflow: hidden;
	height: 296px;
}
 
.op-block .stats .info:first-of-type {
	margin-top: 8px;
}

.op-block .stats .divider {
	height: 8px;
	margin: 0px 4px;
	width: calc(100% - 20px);
}

.op-scrollblock {
	position: relative;
	width: 80%;
	max-width: 1500px;
	max-width: 1500px;
	height: calc(100% - 30px);
	max-height: 80vh;
	margin: auto;	
	overflow: hidden;
	-webkit-mask: -webkit-linear-gradient(
          left,
         rgba(255,255,255,0) 10px,
         rgba(255,255,255,1) 100px,
         rgba(255,255,255,1) calc(80vw - 100px),
         rgba(255,255,255,0) calc(80vw - 10px)
     );
}
.op-scrollinner {
	font-size: 0;
	width: 100%;
	height: calc(100% - 30px);
	position: absolute;
	white-space: nowrap;
}
.op-content {
	position: relative;
	font-size: 12px;
	vertical-align: top;
	display: inline-block;
	width: calc(100% - 220px);
	height: calc(100% - 20px);
	background-color: rgba(80, 80, 80, 0.4);
	padding: 10px;
	margin: 0px 100px;
}
.op-contentinner {
	overflow: auto;
	width: 100%;
	height: 100%;
	background-color: rgba(200, 200, 200, 0.8);
}
.op-navdotcontainer {
	text-align: center;
	margin: 10px auto 0px auto;
	height: 28px;
	padding-top: 6px;
	width: 10px;
	background-color: rgba(200, 200, 200, 0.8);
	border-radius: 20px;
	//box-shadow: inset 0px 0px 10px 2px rgba(0,0,0,1);
}
.op-navdotcontainer ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
.op-navdot {
	height: 14px;
	width: 14px;
	border-radius: 50%;
	display: inline-block;
	margin: 0px 8px 0px 8px;
	padding: 0;
	cursor: pointer;
	background-color: transparent;
	border: 4px solid rgba(200, 200, 200, 0.6);
	//box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,1);
}
.op-navdot-fill {
	height: 14px;
	width: 14px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 1);
	transform: scale(0, 0);
	//box-shadow: inset 0px 0px 10px 1px rgba(255,255,255,1);
}

.op-project {
	position: relative;
	display: inline-block;
	background-color: #EEEEEE;
	border: 10px solid #FFFFFF;
	box-shadow: inset 1px 1px 6px 0px rgba(0,0,0,0.5), inset -1px -1px 1px -3px rgba(0,0,0,0.5);
	margin: 10px;
	height: 200px;
	overflow: hidden;
}

.op-sq {
	width: 200px;
}
.op-rec {
	width: 440px;
}

.op-projectfill {
	padding-top: 150px;
	position: absolute;
	width: inherit;
	height: 50px;
	background-color: pink;
	box-shadow: inset 0 0 0 4px rgba(0, 0, 0, 0.3), 0px 2px 3px 0px rgba(0,0,0,0.5);
	transition: height 0.5s, padding-top 0.5s, -webkit-filter 0.5s;
	z-index: 2;
}

.op-project:hover  .op-projectfill{
	height: 50px;
	padding-top: 12px;
	-webkit-filter: brightness(0.8);
}

.op-project:hover  .op-projecttitle{
	margin-top: 12px;
}

.blur {
	filter: blur(3px) brightness(0.9);
	-webkit-filter: blur(10px);
	z-index: 0 !important;
}

.op-projectfill-content {
	width: inherit;
	height: 200px;
	position: absolute;
	font-size: 0px;
	z-index: 1;
}

.op-fillblock {
	margin: 76px 16px 16px 16px;
	font-size: 12px;
	height: 80px;
	border: 4px solid rgba(255, 255, 255, 0.8);
	padding: 10px;
	font-family: 'Open Sans', sans-serif;
	color: black;
	text-align: justify;
	line-height: 110%;
	background-color: rgba(255, 255, 255, 0.6);
	text-shadow: 0px 0px 20px rgba(255,255,255,1);
	box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.5);
}

.icon {
	display: inline-block;
	background-color: grey;
	height: 50px;
	width: 50px;
}
.icon-text {
	display: inline-block;
	background-color: transparent;
	height: 46px;
	width: 200px;
	border-bottom: 4px solid grey;
}

.op-projecttitle {
	position: absolute;
	margin-top: 150px;
	height: 38px;
	width: calc(100% - 8px);
	margin-left: 4px;
	color: #EFEFEF;
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
	font-size: 30px;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.3);
	text-shadow: 0px 0px 20px rgba(0,0,0,1);
	z-index: 5;
	transition: margin-top 0.5s;
}

.op-projectblock {
	display: inline-block;
	max-width: 480px;
}

.op-botbar {
	position: absolute;
	overflow: hidden;
	bottom: 0px;
	width: 100%;
	height: 30px;
	box-shadow: inset 0px 1px 6px 0px rgba(0,0,0,0.3);
	background-color: #FEFEFE;
	color: rgba(200,200,200,1);
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	transition: color 0.4s;
}

.op-botbar .label {
	position: absolute;
	top: 35px; left: 0;
	overflow: hidden;
	height: 0px;
	width: 100%;
	color: rgba(200,200,200,1);
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	font-size: 20px;
	text-align: center;
	transition: height 0.4s, top 0.4s;
}
.op-botbar:hover .label {
	top: 3px;
	height: 20px;
}

.op-botbar:hover {
	color: rgba(200,200,200,0);
}


.op-topbar {
	position: absolute;
	top: 0;
	width: 100%;
	height: 10px;
	box-shadow: inset 0px -2px 2px 0px rgba(0,0,0,0.3);
	background-color: #FEFEFE;
}




.op-about-text {
	margin-top: 30px;
	position: relative;
	display: block;
	width: auto;
	height: 400px;
	background-color: #dfdfdf;
	overflow: auto;
	font-size: 15px;
	color: #454545;
	font-family: 'Lato', sans-serif;
	text-align: justify;
	padding: 0px 100px 0px 100px;
}
.op-about-img {
	float: left;
	width: 300px;
	height: 400px;
	margin-right: 50px;
	background-color: #EFEFEF;
}
.op-atxtbox {
	display: inline-block;
	vertical-align: top;
	height: 300px;
	padding: 50px 100px 50px 50px;
	font-size: 15px;
	color: #454545;
	font-family: 'Lato', sans-serif;
	text-align: justify;
}


.op-blogbar {
	overflow: hidden;
	margin: 20px auto;
	margin-bottom: 60px;
	width: auto;
	height: 50px;
	background-color: #EFEFEF;
}

.op-blogbar .fil {
	position: relative;
	display: inline-block;
	text-align: center;
	vertical-align: top;
	height: 50px;
	width: 25%;
	transition: background-color 0.2s;
}

.op-blogbar .fil img {
	box-shadow: none;
	border: none;
	height: 50px;
	width: 50px;
	transition: opacity 0.4s;
}
.op-blogbar .fil .label {
	position: absolute;
	top: 35px; left: 0;
	overflow: hidden;
	height: 0px;
	width: 100%;
	color: black;
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	font-size: 20px;
	text-align: center;
	transition: height 0.4s, top 0.4s;
}
.op-blogbar .fil:hover .label {
	top: 15px;
	height: 20px;
}
.op-blogbar .fil:hover img {
	opacity: 0;
}

#analysisfilter { background-color: #FFBBBB; }
#analysisfilter:hover { background-color: #f98d8d !important; }
#mechanicsfilter { background-color: #BACCFF; }
#mechanicsfilter:hover { background-color: #92aeff !important; }
#worldsfilter { background-color: #FDC2F0; }
#worldsfilter:hover { background-color: #ff92e7 !important; }
#thoughtsfilter { background-color: #C8FDD8; }
#thoughtsfilter:hover { background-color: #92ffb3 !important; }

.op-blogentry {
	margin: 10px auto 0px auto;
	width: 75%;
	height: 80px;
	background-image: url("");
}
.op-blogentry img {
	
}
.op-blogentry .subtitle {
	padding-top: 14px;
	width: calc(100% - 28px);
	height: 20px;
	color: black;
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	font-size: 20px;
	text-align: left;
}

.op-blogentry .title {
	width: calc(100% - 28px);
	height: 36px;
	color: black;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: 30px;
	text-align: left;
}

.op-blogentry .icon {
	float: left;
	width: 80px;
	height: 80px;
	transition: border-left-width 0.2s;
}
.op-blogentry:hover .icon {
	border-left-width: 20px;
}
.op-blogentry .analysis {
	background: url('../img/controllericon.png');
	background-size: 80px 80px;
	border-left: 8px solid #f98d8d;
}
.op-blogentry .worlds{
	background: url('../img/worldicon.png');
	background-size: 80px 80px;
	border-left: 8px solid #ff92e7;
}
.op-blogentry .mechanics {
	background: url('../img/mechanicsicon.png');
	background-size: 80px 80px;
	border-left: 8px solid #92aeff;
}
.op-blogentry .thoughts {
	background: url('../img/thoughtsicon.png');
	background-size: 80px 80px;
	border-left: 8px solid #92ffb3;
}
.fixed-menu {
	position: fixed;
	top: 5px;
	left: 5px;
	z-index: 10;
	height: 80px;
	width: 80px;
	overflow: visible;
	transition: height 0.4s;
}
.fixed-menu:hover {
	height: 300px;
}
.fixed-menu:hover .fixed-buttons { 
	opacity: 1; 
}
.fixed-menu .fixed-buttons .btext {
	position: absolute;
	top: 14px;
	left: 60px;
	width: 0px;
	overflow: hidden;
	font-size: 20px;
	font-weight: 900;
	font-family: 'Lato', sans-serif;
	z-index: 12;
	opacity: 1;
	color: black;
	transition: width 0.2s;
}
.fixed-menu:hover .fixed-buttons:hover .btext {
	width: 150px;
}
.fixed-menu:hover .b1 {  margin-top: 10px; }
.fixed-menu:hover .b2 {  margin-top: 10px; }
.fixed-menu:hover .b3 {  margin-top: 10px; }

.fixed-menu:hover .home img{
}
.fixed-buttons {
	overflow: visible;
	transition: opacity 0.4s, margin-top 0.4s;
	margin: 10px auto 0px auto;
	height: 50px;
	width: 50px;
	background-color: rgba(255,255,255,0.8);
	border: 4px solid white;
	border-radius: 100%;
	z-index: 10;
	left: 10px;
	box-shadow: inset 0px 0px 5px rgba(255,255,255,1), 1px 1px 3px rgba(0,0,0,0.5);
	opacity: 0;
	position: relative;
}
.home { margin-top: 10px; height: 60px; width: 60px; opacity: 1 !important; }
.b1 { margin-top: -50px; }
.b2 { margin-top: -50px; }
.b3 { margin-top: -50px; }

#blog-content {
	position: relative;
	display: block;
	width: 100%;
	opacity: 0;
	font-size: 0px;
	z-index: 10;
}

#blog-wrapper {
	margin: 40px auto;
	width: 80%;
	max-width: 800px;
	text-align: justify;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
}
#blog-wrapper  img{
}
#blog-wrapper .img-under {
	font-family: 'Open Sans', sans-serif;
	font-size: 10px;
	text-align: center;
	margin-bottom: 10px;
	margin-top: -2px;
	width: 100%;
}

#blog-wrapper h1{
	font-weight: 900;
	display: inline-block;
	padding-left: 10px;
	padding-right: 10px;
	margin: 0px;
	width: auto;
	font-size: 20px;
	background-color: white;
	font-family: 'Lato', sans-serif;
}
#blog-wrapper .h-wrap {
	margin-top: 20px;
	margin-bottom: 10px;
	padding-left: 20px;
	padding-right: 10px;
	width: calc(100% - 30px);
	height: 24px;
	overflow: hidden;
}

#blog-wrapper .body {
	padding: 10px;
}
.games {
	position: relative;
	height: 180px;
	width: 100%;
}

.games .g-icon {
	vertical-align: top;
	display: inline-block;
	height: 180px;
	width: 180px;
	background-color: blue;
}

.games .g-title .g-sub {
	font-size: 24px;
	font-weight: 400;
}

.games .g-title {
	vertical-align: top;
	display: inline-block;
	height: 150px;
	padding-left: 20px;
	padding-top: 30px;
	width: calc(100% - 200px);
	font-family: 'Lato', sans-serif;
	font-size: 64px;
	font-weight: 100;
	text-align: left;
}

.subsec-title {
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	font-size: 32px;
	text-align: center;
	margin-bottom: 5px;
	margin-top: -5px;
}
.subsec-content {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	text-align: justify;
}

.c1  {color:green;}
.c2  {color:blue;}
.c3  {color:orange;}
.c4  {color:red;}
.c5  {color:purple;}
.c6  {color:lightblue;}
.c7  {color:lightgreen;}