*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
	min-height: 100%;
	font-family: poppins;
	background: #000;
	overflow: hidden;
}

body {
	font-family: kanit, sans-serif;
	scroll-behavior: smooth;
}


/* add a thumb */
body::-webkit-scrollbar {
	width: 10px;
	height: 10px;
	background: rgba(0, 0, 0, 0.3);
	z-index: 99;
}

body::-webkit-scrollbar-thumb {
	background: rgba(250, 250, 250, 0.5);
	z-index: 100;
}


/* header */
.header {
	position: fixed;
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}

/*.header .back-video {
	position: absolute;
	right: 0; bottom: 0; left: 0; top: -2%;
	transform: translate(-50% -50%);
	max-width: 100vw;
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: #000;
	background-size: cover;
	background-position: center;
	z-index: 0;
}*/

.header .back-video {
	position: fixed;
  top: 49.5%;
  left: 50%;
  width: 100%;
  height: auto;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  z-index: -1;
  object-fit: cover;
}

.header .intro {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.header .intro h1 {
	font-size: 96px;
	text-transform: uppercase;
	font-weight: 300;
	color: #969696;
	font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.intro-title .letter {
	display: inline-block;
	line-height: 1em;
}

nav .list {
	position: absolute;
	right: 0; bottom: 0;
	transform: translate(-50% -50%);
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	margin: 0;
}

nav .list .nav-links {
	margin: 0;
	padding: 2rem;
}

nav .list .left .nav-links li {
	flex-direction: column;
}

.nav-links li a::after {
	content: '';
	background: rgb(62, 212, 250);
	width: 0;
	height: 1px;
	position: absolute;
	bottom: 0; left: 0;
	transition: width 0.3s;
}

.nav-links li a:hover::after {
	width: 100%;
}

.list .left {
	display: flex;
	align-items: center;
}

.list .left .nav-links .a {
	transition-delay: 7s;
}

.list .left .nav-links .b {
	transition-delay: 7.2s;
}

.list .left .nav-links .c {
	transition-delay: 7.4s;
}

.list .left .nav-links .d {
	transition-delay: 7.6s;
}

.list .left .nav-links .e {
	transition-delay: 7.8s;
}

.list .left .nav-links .f {
	transition-delay: 8s;
}

.list .left .nav-links .g {
	transition-delay: 8.2s;
}

.list .left .nav-links .h {
	transition-delay: 8.4s;
}

.list ul {
	list-style: none;
}

.list .left .nav-links li a{
	position: relative;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.1rem;
	color: rgb(215, 239, 250);
	text-decoration: none;
}

.list .left ul li a:hover {
	color: rgb(62, 212, 250);
}


/* media queries */
@media (min-aspect-ratio: 16/9) {
	.header .back-video {
		width: 100vw;
		height: auto;
	}
}

@media (max-aspect-ratio: 16/9) {
	.header .back-video {
		width: auto;
		height: 100%;
	}
}

@media (max-width: 1024px) {
	.header .intro h1 {
		font-size: 72px;
	}
}

@media (max-width: 912px) {
	.header .intro h1 {
		font-size: 48px;
	}

	.list .left {
		display: flex;
		align-items: center;
	}

	.list .nav-links li a{
		font-size: 1rem;
		line-height: 1.5rem;
	}
}


@media (max-width: 768px) {
	body::-webkit-scrollbar {
		display: none;
	}

	.header .back-video {
		height: 100%;
    width: auto;
	}

	.list .nav-links li a {
		font-size: 1rem;
		line-height: 1.2rem;
	}
}


@media (max-width: 550px) {
	.header .intro h1 {
		font-size: 36px;
	}

	.list .nav-links li a {
		font-size: 0.5rem;
		font-weight: 100;
		line-height: 0;
	}
}


@media (max-width: 400px) {
	.header .intro h1 {
		font-size: 30px;
	}
}