/**------------ FONTS STUFF ------------**/
@font-face {
	font-family: coolvetica;
	src: url("fonts/coolvetica rg.otf");
}
@font-face {
	font-family: paragon;
	src: url("fonts/Paragon-Regular.otf");
	font-style: regular;
}
@font-face {
	font-family: paragon;
	src: url("fonts/Paragonitalic-Regular.otf");
	font-style: italic;
}
/**------------ VARIABLES ------------**/ :root {
	--accent: #1B66FC;
	--accentRGB: 27, 102, 252;
	--mouseXpos: 0px;
	--mouseYpos: 0px;
}
/**------------ BODY ------------**/
body {
	cursor: auto;
	margin: 0px;
	overflow-x: hidden;
	overflow-y: visible;
	background-color: black;
	font-family: coolvetica;
	animation: 0.1s 3.9s both scrollLock;
}
@keyframes scrollLock {
	from {
		overflow-y: hidden;
	}
	to {
		overflow-y: visible;
	}
}
/**------------ LOADING SCREEN ------------**/
.firstLoadWrap {
	cursor: none;
	z-index: 10;
	display: grid;
	animation: 0.1s 3.9s forwards loadWrapAnim;
}
@keyframes loadWrapAnim {
	from {
		visibility: visible;
	}
	to {
		visibility: hidden;
	}
}
.loadScreen {
	z-index: 10;
	position: fixed;
	background-color: var(--accent);
	background: linear-gradient(180deg, var(--accent) 35%, rgba(255, 0, 0, 0) 100%);
	display: flex;
	top: -5%;
	height: 310vh;
	width: 100vw;
	animation-name: loadScreenAnim;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.7, 0, 0.84, 0);
	animation-delay: 2.9s;
}
@keyframes loadScreenAnim {
	from {
		top: -5%;
	}
	to {
		top: -300%;
	}
}
.loadText {
	z-index: 11;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	height: 7vw;
	width: auto;
	font-weight: bold;
	font-size: 6vw;
	color: white;
	overflow: hidden;
}
.loadTextSpan {
	animation: 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.5s 1 loadTextAnim;
	animation-fill-mode: backwards;
}
@keyframes loadTextAnim {
	from {
		transform: translateY(-7vw);
	}
	to {
		transform: translateY(0px);
	}
}
.loadLogoWrap {
	z-index: 11;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: grid;
	grid-area: 1/1;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	height: 10vw;
}
.loadLogo {
	height: 10vw;
	width: auto;
	fill: white;
}
.loadLogo.frame1 {
	position: relative;
	opacity: 0%;
	animation-name: loadLogoFrame1;
	animation-duration: 1.6s;
	animation-iteration-count: 1;
}
.loadLogo.frame2 {
	position: relative;
	top: -10vw;
	opacity: 0%;
	animation-name: loadLogoFrame2;
	animation-duration: 1.6s;
	animation-iteration-count: 1;
}
@keyframes loadLogoFrame1 {
	0% {
		opacity: 100%;
	}
	19% {
		opacity: 100%;
	}
	20% {
		opacity: 0%;
	}
	25% {
		opacity: 0%;
	}
	26% {
		opacity: 100%;
	}
	29% {
		opacity: 100%;
	}
	30% {
		opacity: 0%;
	}
	35% {
		opacity: 0%;
	}
	36% {
		opacity: 100%;
	}
	60% {
		opacity: 100%;
	}
	100% {
		opacity: 0%;
	}
}
@keyframes loadLogoFrame2 {
	0% {
		opacity: 0%;
	}
	19% {
		opacity: 0%;
	}
	20% {
		opacity: 100%;
	}
	25% {
		opacity: 100%;
	}
	26% {
		opacity: 0%;
	}
	29% {
		opacity: 0%;
	}
	30% {
		opacity: 100%;
	}
	35% {
		opacity: 100%;
	}
	36% {
		opacity: 0%;
	}
	60% {
		opacity: 0%;
	}
	100% {
		opacity: 0%;
	}
}
@keyframes introAnim {
	from {
		opacity: 100%;
	}
	to {
		opacity: 0%;
	}
}
.loadContent {
	animation-name: introAnim;
	animation-duration: 1s;
	animation-delay: 3s;
	animation-fill-mode: forwards;
}
/**------------ MAIN PAGE ------------**/
.mainContent {
	height: 100vw;
	width: 100vw;
}
.popHide {
	height: 0px;
	overflow: hidden;
	top: -10px;
}
/**------------ LANDING ------------**/
.landingVideoWrap {
	object-fit: cover;
	position: fixed;
	z-index: -10;
	top: 0px;
	cursor: default;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}
.landingVideo {
	box-sizing: border-box;
	height: 56.25vw;
	left: 50%;
	min-height: 100%;
	min-width: 100%;
	transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	width: 177.77777778vh;
	opacity: 65%;
}
#landVid {}
.landing {
	cursor: default;
	text-decoration: none;
	border-style: solid;
	border-width: 1px;
	border-color: white;
	overflow: visible;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	box-sizing: border-box;
	margin: 1vw;
	padding: 2vw;
	max-height: 170vw;
	height: calc(100vh - 2vw);
	width: 98vw;
	color: white;
}
.ltContainer {
	display: block;
	font-style: regular;
	color: white;
	font-size: calc(min(8vw, 12vh)*1);
}
.ltBlock {
	display: flex;
	overflow: visible;
	box-sizing: border-box;
	margin-top: calc(min(8vw, 12vh)*-0.3);
}
.landingText {
	text-transform: uppercase;
	z-index: 1;
	position: relative;
	animation-name: landTextAnim;
	animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
	animation-duration: 2s;
	animation-fill-mode: both;
	margin-right: calc(min(8vw, 12vh)*0.2);
}
@keyframes landTextAnim {
	0% {
		top: calc(min(8vw, 12vh)*-1);
		opacity: 0%;
	}
	100% {
		top: 0px;
		opacity: 100%;
	}
}
.lts6 {
	position: relative;
	margin-top: calc(min(8vw, 12vh)*-0.3);
	margin-right: calc(min(8vw, 12vh)*0.05);
	font-size: calc(min(8vw, 12vh)*2.3);
	font-weight: bold;
}
.landingText.lts1 {
	animation-delay: 4s;
}
.landingText.lts2 {
	animation-delay: 4.1s;
}
.landingText.lts3 {
	animation-delay: 4.2s;
}
.landingText.lts4 {
	animation-delay: 4.3s;
}
.landingText.lts5 {
	animation-delay: 4.4s;
}
.landingText.lts6.a {
	animation-delay: 4.5s;
}
.landingText.lts6.b {
	animation-delay: 4.55s;
}
.landingText.lts6.c {
	animation-delay: 4.6s;
}
.landingText.lts6.d {
	animation-delay: 4.65s;
}
.landingText.lts6.e {
	animation-delay: 4.7s;
}
.landingText.lts6.f {
	animation-delay: 4.75s;
}
.landingText.lts6.g {
	animation-delay: 4.8s;
}
.ltBlock .move {
	top: calc(min(8vw, 12vh)*-3);
	transition-timing-function: cubic-bezier(0.5, 0, 0.75, 0);
	transition: top 0.3s;
}
.landingBottom {
	display: flex;
	box-sizing: border-box;
	flex-direction: row;
	justify-content: space-between;
	font-size: calc(min(40px, max(15px, min(8vw, 12vh)*0.2)));
	
	font-weight: lighter;
}
.liveTime {
	text-align: left;
	width: 35vw;
}
.landingName {
	text-align: center;
	width: 30vw;
}
.landingBased {
	text-align: right;
	width: 35vw;
}
/**------------ PORT ------------**/
.dividerFade {
	display: block;
	z-index: 1;
	height: 10vw;
	width: 100vw;
	background: black;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 100%);
}
.about {
	cursor: default;
	height: auto;
	width: 100vw;
	box-sizing: border-box;
	margin: 0px;
	padding: 1vw;
	background-color: black;
	color: white;
}
.aboutMe {
	display: flex;
	justify-content: space-between;
	align-items: end;
	height: auto;
	padding: 8vw 2vw 8vw 2vw;
	font-size: calc(min(8vw, 12vh)*0.5);
	border-width: 1px;
	border-style: solid none solid none;
	border-color: white;
}
.aboutMeCont.at {
	font-size: calc(min(8vw, 12vh)*0.5);
}
.aboutMeCont.al {
	margin-top:auto;
	font-size: calc(min(8vw, 12vh)*0.4);
}
.aTextTop {
	display: flex;
	align-items: flex-end;
}
.scrollerWrap {
	margin-left: calc(min(8vw, 12vh)*0.1);
	display: block;
	overflow: hidden;
	font-size: calc(min(8vw, 12vh)*0.3);
	height: calc(min(8vw, 12vh)*0.35);
	line-height: calc(min(8vw, 12vh)*0.35);
	width: auto;
}
.scroller {
	animation-name: scrollerAnim;
	animation-duration: 4s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
@keyframes scrollerAnim {
	from {
		margin-top: 0px;
	}
	to {
		margin-top: calc(min(8vw, 12vh)*-1.4);
	}
}
.aText {
	margin-top: 100px;
	margin-bottom: 100px;
	font-size: calc(min(8vw, 12vh)*0.3);
	font-weight: 200;
}
#nextLevel {
	display: inline-flex;
	position: relative;
}
.toolWrap {
	display: flex;
}
/**.tool {
	align-content: center;
	vertical-align: middle;
	margin: calc(min(8vw, 12vh)*0.1);
	margin-left: 0px;
	width: calc(min(8vw, 12vh)*0.5);
	height: calc(min(8vw, 12vh)*0.5);
	border-width: 1px;
	border-style: solid;
	border-color: #ff7300;
	line-height: calc(min(8vw, 12vh)*0.5);
	font-size: calc(min(8vw, 12vh)*0.25);
	font-weight: bold;
	color: white;
	text-align: center;
}**/
.portTitle {
	display: block;
	font-size: calc(min(8vw, 12vh)*0.5);
	align-content: center;
	text-align: center;
	color: white;
	background: black;
	padding-top: 2vw;
	pointer-events: none;
}
.portBG {
	display: flex;
	width: 100vw;
	height: auto;
	background-color: black;
	margin: 0px;
}
.portWrap {
	display: flex;
	flex-wrap: wrap;
	margin: 1vw;
	margin-bottom: 0px;
	padding: 0vw;
	padding-left: 9vw;
	padding-right: 9vw;
	padding-bottom: 7vw;
	height: fit-content;
	width: 98vw;
	box-sizing: border-box;
	background-color: black;
	justify-content: space-around;
	border-style: none none solid none;
	border-color: white;
	border-width: 1px;
}
.project {
	display: block;
	position: relative;
	margin: 2vw;
	align-items: center;
	box-sizing: border-box;
	border-width: 1px;
	border-style: solid;
	border-color: white;
	fill: white;
	overflow: hidden;
	background-color: black;
	text-align: center;
}
.project.c9 {
	cursor: pointer;
	fill: var(--accent);
	background-color: black;
	color: transparent;
	transition: background-color 0.5s, fill 0.3s, color 0.5s;
}
.project.c9:hover {
	border-style: dashed;
	fill: white;
	background-color: #1dadea;
	color: white;
	transition: background-color 0.5s, fill 0.3s, color 0.5s;
}
.project.faze {
	cursor: pointer;
	fill: var(--accent);
	background-color: black;
	color: transparent;
	transition: background-color 0.5s, fill 0.3s, color 0.5s;
}
.project.faze:hover {
	border-style: dashed;
	fill: white;
	background-color: #E43D30;
	color: white;
	transition: background-color 0.5s, fill 0.3s, color 0.5s;
}
.project.yuki {
	fill: var(--accent);
	background-color: black;
	color: transparent;
	transition: background-color 0.5s, fill 0.3s, color 0.5s;
}
.project.yuki:hover {
	border-style: dashed;
	fill: black;
	background-color: rgba(255, 255, 255, 1);
	color: black;
	transition: background-color 0.5s, fill 0.3s, color 0.5s;
}
.project.soon {
	color: var(--accent);
	background-color: black;
	transition: background-color 0.5s, fill 0.3s, color 0.5s;
}
.project.soon:hover {
	border-style: dashed;
	color: black;
	background-color: var(--accent);
	transition: background-color 0.5s, fill 0.3s, color 0.5s;
}
#c9Logo {
	fill: inherit;
	width: calc(max(100px, min(8vw, 12vh)*1));
}
#fazeLogo {
	fill: inherit;
	width: calc(max(100px, min(8vw, 12vh)*1));
}
#yukiLogo {
	fill: inherit;
	width: calc(max(60px, min(8vw, 12vh)*0.6));
}
.portVideo {
	object-fit: fill;
	height: inherit;
	width: auto;
	min-height: 100%;
	min-width: 100%;
	position: absolute;
	transform: translateX(-50%);
	filter: grayscale() opacity(10%);
}
.pTitle {
	justify-content: center;
	align-items: center;
	display: flex;
	flex-direction: column;
	width: auto;
	height: auto;
	position: relative;
	font-size: calc(min(15vw, 12vh)*0.25);
	color: inherit;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.pTitle.soon {
	top: 50%;
}
.popup {
	z-index: 6;
	position: fixed;
	margin: 0px;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 100vh;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.93);
	font-size: calc(min(12vw, 10vh)*0.5);
}
.popupContent {
	display: flex;
	justify-content: center;
	width: calc(min(13vw, 14vh)*6);
	height: auto;
}
.popupVid {
	width: calc(min(13vw, 14vh)*6);
	height: calc(min(13vw, 14vh)*3.375);
}
.popupButtons {
	cursor: pointer;
	display: flex;
	width: calc(min(13vw, 14vh)*6);
	flex-direction: row;
	justify-content: space-between;
}
.loadFade {
	display: block;
	top: -300%;
	z-index: 10;
	position: fixed;
	height: 300vh;
	width: 100vw;
	background: rgb(var(--accentRGB));
	background: -webkit-linear-gradient(rgba(var(--accentRGB), 0) 0%, rgba(var(--accentRGB), 1) 20%, rgba(var(--accentRGB), 1) 80%, rgba(var(--accentRGB), 0) 100%);
	background: -o-linear-gradient(rgba(var(--accentRGB), 0) 0%, rgba(var(--accentRGB), 1) 20%, rgba(var(--accentRGB), 1) 80%, rgba(var(--accentRGB), 0) 100%);
	background: linear-gradient(rgba(var(--accentRGB), 0) 0%, rgba(var(--accentRGB), 1) 20%, rgba(var(--accentRGB), 1) 80%, rgba(var(--accentRGB), 0) 100%);
	animation: 1.2s cubic-bezier(0.65, 0, 0.35, 1) fade2;
}
.loadFadeAnim1 {
	animation: 1.2s cubic-bezier(0.65, 0, 0.35, 1) fade;
}
@keyframes fade {
	0% {
		top: -300%;
	}
	100% {
		top: 100%;
	}
}
@keyframes fade2 {
	0% {
		top: -300%;
	}
	100% {
		top: 100%;
	}
}


.aboutmeWrapper {
	cursor: default;
	z-index: 8;
	display: none;
	top: 0px;
	position: absolute;
	
	width: 100vw;
	height: auto;
	
	margin: 0 auto;
	
	padding: 10vw;
	
	color: white;
	background-color: black;
}

.aboutMeShow {
	display: block;
}

.aboutmeTitle {
	font-size: calc(min(15vw, 10vh)*0.8);
}
.aboutmeSummary {
	box-sizing: border-box;
	width: 80vw;
	padding: 2vw;
	margin-top: 1vw;
	margin-bottom: 1vw;
	border-style: none none solid none;
	border-color: #1c1c1c;
	border-width: 1px;
}
.amSum {
	font-size: calc(min(15vw, 10vh)*0.2);
}
.aboutmeTools {
	box-sizing: border-box;
	width: 80vw;
	padding: 2vw;
	margin-top: 1vw;
	margin-bottom: 1vw;
	border-style: none none solid none;
	border-color: #1c1c1c;
	border-width: 1px;
}
.amTool {
	font-size: calc(min(15vw, 10vh)*0.2);
	padding: 1.5vw;
	border-style: none none solid none;
	border-color: #121212;
	border-width: 1px;
}
.amTool.dw {
	border-style: none;
}
.amEdu {
	box-sizing: border-box;
	width: 80vw;
	padding: 2vw;
	margin-top: 1vw;
	margin-bottom: 1vw;
	border-style: none none solid none;
	border-color: #1c1c1c;
	border-width: 1px;
}
.amEduCont {
	font-size: calc(min(12vw, 10vh)*0.2);
}

.toolHover {
	pointer-events: none;
	position: fixed;
	display: flex !important;
	width: 20vw;
	height: 0vw;
	object-fit: fill;
	overflow: hidden;
	justify-content: center;
	align-content: center;
	text-align: center;
	transition: height 0.3s ease;
}
.hovverd {
	height: 20vw;
	transition: height 0.3s ease;
}
.AEhoverImg{
	height: 20vw;
}
.aboutmeWork {
	box-sizing: border-box;
	width: 80vw;
	padding: 2vw;
	margin-top: 1vw;
	margin-bottom: 1vw;
	border-style: none none solid none;
	border-color: #1c1c1c;
	border-width: 1px;
}
.amWork {
	font-size: calc(min(15vw, 15vh)*0.2);
}
.amWorkSmall{
	padding: 1vw;
	font-size: calc(min(15vw, 15vh)*0.2);
}


.aboutmeExit {
	box-sizing: border-box;
	width: 80vw;
	padding: 2vw;
	margin-top: 1vw;
	margin-bottom: 1vw;
}