.scrollbar {
	width: 0px;
	height: 0px;
	position: fixed;
	top: 5px;
	right: 5px;
	z-index: 180;
	opacity: 0;
	background: var(--brandPink);
	transition: height var(--extraLong) var(--myEaseBoth) var(--medium),
				opacity var(--extraLong) var(--myEaseBoth) var(--medium);
}
.scrollbar.show {
	width: 4px;
	opacity: 1;
}
.cross {
	position: fixed;
	top: 10px;
	right: 20px;
	width: 50px;
	height: 50px;
	z-index: 180;
	transform: rotate(45deg);
	transition: all var(--medium) var(--myEaseOut);
}
.cross div {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 0;
	background: var(--brandPink);
	transform: translate(-50%,-50%) rotate(45deg);
	transition: all var(--medium) var(--myEaseOut);
}
.cross div:first-child {
	transform: translate(-50%,-50%) rotate(-45deg);
}
.cross.show {
	transform: rotate(0deg);
	z-index: 180;
	cursor: none;
	transition: all var(--long) var(--myEaseOut) var(--long);
}
.cross.show div {
	height: 30px;
	transition: all var(--long) var(--myEaseOut) var(--long),
				background var(--medium) var(--myEaseOut);
}
.cross.show:hover div {
	background: var(--brandGreen);
}

/*titles*/
.projectList {
	position: relative;
	width: 27%;
	height: 100vh;
	overflow: hidden;
	float: left;
	transition: margin var(--extraLong) var(--myEaseBoth), 
				opacity var(--medium) ease var(--medium);
}
.projectList.enter {
	margin-left: -100%;
	opacity: 0;
/*	transition: margin var(--extraLong) var(--myEaseBoth), 
				opacity var(--medium) var(--myEaseOut);*/
}
.titles {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0,-50%);
	text-transform: uppercase;
	font-weight: 700;
	font-style: italic;
	font-size: 35px;
	color: rgba(255,255,255,0);
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: var(--brandGreen);
	text-align: right;
	display: block;
	clear: both;
	float: right;
	z-index: 0;
	padding-right: 5px;
	transition: all var(--long) var(--myEaseBoth);
}
.titles.hover {
	color: var(--brandGreen);
}
.selectedTitle {
	color: var(--brandGreen);
	/*transition: all var(--medium) var(--myEaseBoth);*/
}
.selectedTitle.hover {
	color: var(--brandPink);
	-webkit-text-stroke-color: var(--brandPink);
	/*transition: all var(--long) var(--myEaseBoth);*/
}

/*preview gifs*/
.projectPreview {
	position: relative;
	-webkit-perspective: 100px;
	-webkit-perspective-origin: 50% 50%;
	width: 73%;
	height: 100vh;
	overflow: hidden;
	float: right;
	transition: width var(--extraLong) var(--myEaseBoth);
}
.projectPreview.enter {
	width: 100%;
}
.previews {
	position: absolute;
	width: 32vw;
	height: 32vh;
	overflow: hidden;
	transform: translate3d(-50%, -50%, -5px);
	transition: all var(--long) var(--myEaseBoth);
}
.previews.hover {
	width: 34vw;
	height: 34vh;
	box-shadow: 0px 0px 10px var(--brandGreen);
}
.selectedPreview {
	width: 38vw;
	height: 38vh;
	top: 50% !important;
	left: 50% !important;
	opacity: 1;
	z-index: 100;
	transition: all var(--long) var(--myEaseBoth);
}
.selectedPreview.hover {
	width: 40vw;
	height: 40vh;
	box-shadow: 0px 0px 30px var(--brandPink);
	/*transition: all var(--long) var(--myEaseBoth);*/
}
.selectedPreview.enter {
	width: 100%;
	height: 100vh;
	background: #000000;
	transition: all var(--long) var(--myEaseBoth),
				margin 0s;
}
.gif {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 70;
	opacity: 1;
	transition: opacity var(--long) ease,
				z-index 0s var(--long);
}
.enter .gif {
	opacity: 0;
	z-index: -100;
	cursor: none;
}
#demoReel.enter {
	width: 100vw;
	height: 100vh;
	z-index: -100;
	background: rgba(0,0,0,.75);
}
#demoReel video {
	width: 90%;
	transition: opacity var(--long) ease, 
				width 0s;
}
.videos {
	position: absolute !important;
	opacity: 0;
	width: 0;
	top: 50%;
	left: 50%;
	transform:translate(-50%,-50%);
	z-index: -10;
}
.videos.show {
	opacity: 1;
	width: 90%;
	height: auto;
	max-height: 90vh;
	z-index: 10;
	cursor: none !important;
	transition: opacity var(--short) ease var(--long), 
				width 0s var(--long);
}
.videos.fullscreen {
	cursor: auto;
}
.header {
	opacity: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	transition: opacity var(--long) ease,
				margin 0s;
}
.header.show {
	opacity: 1;
	cursor: none;
}
.header .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -10;
	background: #000000;
	opacity: .6;
}
.header h1, .header p{
	display: block;
	width: 500px;
	position: absolute;
	left: 50%;
	z-index: 0;
	opacity: 0;
	color: var(--brandPink);
	text-align: left;
	transition: all var(--short) var(--myEaseBoth) 0s,
				width 0s;
}
.header h1 {
	top: calc(45% - 15px);
	transform: translate(-50%,-50%);
}
.header p {
	top: calc(45% + 35px);
	transform: translate(-50%, 0);
}
.header.show h1 {
	top: calc(45% - 25px);
	opacity: 1;
	transition: all var(--long) var(--myEaseIn) var(--medium);
}
.header.show p {
	top: calc(45% + 25px);
	opacity: 1;
	transition: all var(--long) var(--myEaseIn) var(--long);
}
.header.hidden {
	opacity: 0;
	z-index: -100;
	transition: opacity var(--medium) ease, 
				z-index 0s var(--medium);
}

/*custom cursors*/
.cursors {
	display: none;
	position: absolute;
	pointer-events: none;
	transform: translate(-50%,-50%);
	z-index: 100;
	opacity: 0;
}
.cursors.show {
	display: block;
}
.play {
	width: calc(86.85px * .6);
	height: calc(100px * .6);
	background: url('../img/play.svg') center center no-repeat;
	background-size: cover;
}
.pause {
	width: calc(72.85px * .6);
	height: calc(102px * .6);
	background: url('../img/pause.svg') center center no-repeat;
	background-size: cover;
}
.exit{
	width: calc(86.85px * .6);
	height: calc(86.85px * .6);
	background: url('../img/exit.svg') center center no-repeat;
	background-size: cover;
	z-index: 180;
}
.play.reveal, .pause.reveal, .exit.reveal {
	opacity: 1;
}


@media only screen and (max-width: 1300px) {
	.projectList {
		width: 32%;
	}
	.projectPreview {
		width: 68%;
	}
}
@media only screen and (max-width: 900px) {
	.projectList {
		width: 40%;
	}
	.projectPreview {
		width: 60%;
	}
}
@media only screen and (max-width: 700px) {
	.projectList {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		z-index: 100;
	}
	.titles {
		margin-right: 5px;
		z-index: 100;
		color: var(--brandGreen);
		opacity: 1 !important;
	}
	.projectPreview {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
	}
	.previews {
		width: 50%;
		height: 50%;
		transform: translate3d(-50%, -50%, 0px);
	}
	.previews.hover {
		width: 100%;
		height: 100%;
		box-shadow: none;
	}
	.selectedPreview {
		width: 100%;
		height: 100%;
		top: 50% !important;
		left: 50% !important;
		opacity: 1;
		z-index: 100;
		transition: all var(--long) var(--myEaseBoth);
	}
	.selectedPreview.hover {
		width: 100%;
		height: 100%;
		box-shadow: none;
	}
	.scrollbar {
		display: none;
	}
	.header h1, .header p{
		width: 80%;
		transition: all var(--short) var(--myEaseBoth) 0s,
					width 0s;
	}
	.cross {
		top: 0px;
		right: -2px;
	}
	
}