* {
	margin: 0;
	padding: 0;
	border: none;
	underline: none;
	outline: none;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	}

html, body {
	background: #fff;
	font-family: "Arial", sans-serif;

	transition: background .2s ease;
	}

html.dark, body.dark {
	background: #222;
	}

#page {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0; left: 0;
	overflow: hidden;

	transition: transform .4s ease;
	}

#page.scale {
	transform: scale(0.95);
	}

#scroll {
	width: 100%;
	position: absolute;

	-webkit-transition: -webkit-transform .25s cubic-bezier(.29,.58,.74,.87);
	transition: transform .25s cubic-bezier(.29,.58,.74,.87);
	}

#pointer {
	width: 12px;
	height: 12px;
	position: fixed;
	background: #dff3f3;
	border-radius: 99px;
	z-index: 60;
	pointer-events: none;
	mix-blend-mode: unset;
	margin-top: -7px;
	margin-left: -7px;
	
	transition: width .4s ease, height .4s ease, background .4s ease, mix-blend-mode .4s ease, margin-top .4s ease, margin-left .4s ease, transform .6s cubic-bezier(.29,.58,.74,.87);
	}

#pointer.hover {
	width: 78px;
	height: 78px;
	mix-blend-mode: luminosity;
	margin-top: -45px;
	margin-left: -45px;
	}

#pointer span {
	width: 90%;
	position: absolute;
	font-size: 18px;
	color: #d586da;
	letter-spacing: 0.8px;
	text-align: center;
	text-transform: lowercase;
	mix-blend-mode: multiply;
	opacity: 0;
	margin-top: -12px;
	top: 50%; left: 5%;

	transform: scale(0);
	transition: opacity .3s ease, transform .3s ease;
	}

#pointer.hover span {
	opacity: 1;

	transform: scale(1);
	}

#header {
	width: 100%;
	position: absolute;
	top: 62px;
	}

.holder {
	width: 1750px;
	margin: 0 auto;
	}

#logo {
	width: 26px;
	height: 26px;
	position: absolute;
//	background: #eee;
	border-radius: 99px;
	border: 8px solid #545454;
	}

#menu {
	float: right;
	}

#dark-mode {
	width: 20px;
	height: 20px;
	background: #eee;
	border-radius: 99px;
	cursor: pointer;
	margin-right: 20px;
	}

#menu li {
	list-style: none;
	display: inline-block;
	margin-left: 38px;
	}

#menu li a {
	font-size: 17px;
	color: #656669;
	}

#content {
	width: 1320px;
	margin: 280px auto 0 auto;
	margin: 240px auto 0 auto;
	padding-bottom: 100px;
	}

p.sub-title {
	font-size: 20px;
	letter-spacing: 0.6px;
	opacity: 0;
	margin: 40px 0 27px 0;

	transition: opacity 0.8s ease;
	}

p.sub-title.show {
	opacity: 1;
	}

h1 {
	width: 900px;
	font-weight: 400;
	font-size: 102px;
	-webkit-text-stroke: 0.8px #000;
	letter-spacing: -4px;
	line-height: 108%;
//	margin-bottom: 260px;
	margin-bottom: 90px;
	}

h1 span {
	position: relative;
	opacity: 0;
	display: inline-block;
	transform: rotateX(65deg) rotate3d(0, 0, 10, 4deg);
	top: 90px;

	transition: opacity .5s ease, top .6s ease, transform 0.7s ease;
	}

h1 span.show {
	opacity: 1;
	top: 0;
	transform: rotateX(0deg);
	}

img {
	max-width: 100%;
	display: table;
	margin: 40px auto 0 auto;
	}

.project-details {
	width: 600px;
	font-size: 22px;
	letter-spacing: 0.3px;
	line-height: 210%;
	margin-top: 0px;
	}

.button {
	background: #252d34;
	font-weight: 600;
	font-size: 18px;
	color: #fff;
	letter-spacing: -0.2px;
	border-radius: 99px;
	display: inline-block;
	padding: 21px 31px;
	margin-top: 54px;
	}

.mty {
//	width: 130px !important;
//	height: 130px !important;
//	position: relative;
//	border: 1px dashed red;
//	border-radius: 99px;
	display: inline-block;
	}

.mty-wrapper {
	position: relative;
//	background: #f8f8f8;
//	border: 1px dashed green;
	border-radius: 99px;
	display: inline-block;
	}

.mty-holder {
//	display: none;
	position: absolute;
	transition: all 0.6s cubic-bezier(0.22, 0.8, 0.6, 1.02);
	}

.mty-copy {
	display: none;
	background: green;
	margin-top: 60px;
	}

.mty .areaa {
	position: absolute;
//	background: #0cf;
	border: 1px solid #0cf;
//	border-radius: 99px;
	z-index: 0;
	top: 0; left: 50%;
	}

.mty.active .area {
//	border: 1px solid #1bde69;
	}

.mty .center-point {
	position: absolute;
//	border: 1px solid blue;
	top: 50%; left: 50%;
	}