/*#region Variables*/

:root {
	--white: #f4f5f7;
	--black: #2c2e31;

	--isekai: #6b553b;
	--primary: #1e273c;

	--primary-hover: #343d50;
	--primary-text-hover: #404759;
	--primary-click: #1e273c;

	--text: var(--primary);

	--grey: #979393;
	--grey2: #7d7d7d;
	--light-grey: #dadada;

	--padding: 2.5rem;
	--padding-mobile: 1.7rem;

	--image-size: 50vh;
	--border-radius: 5%;
	--default-transition: 0.3s ease;

	--sectionSpacePadding: 14rem;
	--halfSectionSpacePadding: 7rem;
	--sectionSidePadding: 9rem;

	--doc-height: 100%;
}

/*#endregion*/

/*#region Reset*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	font-family: 'Circular Std', 'Roboto', sans-serif;
}

section {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.sectionTitle {
	font-size: 4.1rem;
	color: var(--text);
}

::-webkit-scrollbar {
	display: none;
}

/*#endregion*/

/*#region Backgrounds*/

html {
	scroll-behavior: smooth;
}

main {
	color: var(--text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

body {
	position: relative;
	isolation: isolate;
}

body::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	background-image: url(./images/stone.jpg);
	background-size: contain;
	background-repeat: repeat-y;
	background-attachment: scroll;
	background-position: top;
	opacity: 0.62;
}

.text {
	background-color: var(--white);
	padding: 2.6rem 3.7rem 3.7rem 3.7rem;
	border-radius: 1.5rem;
}

/*#endregion*/

/*#region Nav*/

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	width: 100%;
	padding: 1.5rem var(--padding) 0 var(--padding);
}

nav h3 {
	font-size: 3.4rem;
}

#navbar {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	padding-top: 0.2rem;
}

#navbar li {
	text-align: right;
	list-style: none;
	margin-left: 2rem;
}

#navbar:nth-child(1) {
	margin-left: 10rem;
}

#navbar li a {
	text-decoration: none;
	color: var(--text);
	font-size: 2rem;
	font-weight: 500;
}

#navbar li a:hover {
	transition: var(--default-transition);
	color: var(--primary-text-hover);
}

#navbar li a:active {
	color: var(--primary-click);
}

.socials {
	list-style-type: none;
	display: flex;
}

.socials li {
	margin-left: 1.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.socials a {
	display: flex;
	justify-content: center;
	align-items: center;
}

.socials svg {
	fill: var(--primary);
	transition: var(--default-transition);
	height: 1.82rem;
}

.socials svg:hover {
	fill: var(--primary-hover);
}

.socials svg:active {
	fill: var(--primary-click);
}

.socials .large {
	height: 1.88rem;
}

.socials .opensea {
	height: 1.55rem;
}

nav .socials {
	padding-top: 0.2rem;
}

nav a {
	text-decoration: none;
	color: var(--primary);
}

#hamburgerDiv {
	margin-bottom: 0.1rem;
	display: none;
}

#hamburger {
	height: 26px;
	width: 38px;
	visibility: collapsed;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	cursor: pointer;
}

#hamburger span {
	display: block;
	position: absolute;
	height: 5px;
	width: 38px;
	background: var(--primary);
	border-radius: 10px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
	transition: 0.25s ease-in-out;
}

#hamburger span:nth-child(1) {
	top: 0px;
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
}

#hamburger span:nth-child(2) {
	top: 12px;
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
}

#hamburger span:nth-child(3) {
	top: 24px;
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
}

#hamburger.open span:nth-child(1) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	top: -3px;
	left: 3px;
}

#hamburger.open span:nth-child(2) {
	width: 0%;
	opacity: 0;
}

#hamburger.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 24px;
	left: 3px;
}

#menuToggle {
	display: none;
	position: absolute;
	width: 46px;
	height: 40px;
	top: 24px;
	right: 27px;
	cursor: pointer;
	opacity: 0;
	-webkit-touch-callout: none;
}

#menu {
	position: fixed;
	width: 100vw;
	height: 100%;
	top: -100%;
	z-index: 10;
	list-style-type: none;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	background: hsla(0, 0%, 96%, 0.4);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	-moz-backdrop-filter: blur(8px);
	-o-backdrop-filter: blur(8px);
}

#menu li {
	text-align: center;
	padding-top: 1.2rem;
	padding-bottom: 1.2rem;
	font-size: 2rem;
	width: 100%;
	font-weight: 500;
}

#menu a {
	text-decoration: none;
	color: var(--primary);
	transition: 0.4s ease;
}

#menu a:hover {
	color: var(--primary-text-hover);
}

#menu a:active {
	color: var(--primary-click);
}

#menu .socials {
	margin-top: 2rem;
}

#menu .socials li {
	margin-left: 1rem;
	margin-right: 1rem;
}

#menu .socials svg {
	height: 1.7rem;
	fill: var(--primary);
}

#menu .socials .opensea {
	height: 2.15rem;
}

#menu .socials svg:hover {
	fill: var(--primary-hover);
}

#menu .socials svg:active {
	fill: var(--primary-click);
}

/*#endregion*/

/*#region Hero*/

#heroSection {
	height: 100vh;
	display: flex;
	position: relative;
	background-image: url('./images/hero/hero.png');
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: flex-start;
}

#callToAction {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#callToAction p {
	text-align: center;
	font-size: 6rem;
	margin-bottom: 2rem;
	color: var(--primary);
	font-weight: 900;
	text-shadow: 0 0 12px #fff;
}

#launching {
	font-size: 2rem;
	margin-bottom: 2rem;
}

.countdown {
	height: 4rem;
	text-align: center;
	width: 100%;
	animation: fadeInAnimation ease 4s;
}

@keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}
	40% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.countdownText {
	font-size: 2.8rem;
	font-weight: 300;
	color: var(--primary);
}

/* .timeMarker{
  color: var(--light-grey);
} */

#uniqueBottom {
	display: none;
}

/*#endregion*/

/*#endregion*/

/*#region Title*/

#titleSection {
	width: 100%;
	display: flex;
	flex-direction: row;
}

.sideSection {
	height: 100%;
	width: 100%;
	position: relative;
	z-index: 1;
	flex: 1;
	transition: 1.2s ease-in-out;
	opacity: 0;
	top: 27vh;
}

#left {
	left: -30%;
}

#right {
	transform: scaleX(-1);
	right: -30%;
}

.sideInView {
	opacity: 1;
	top: 0;
}

.sideSection img {
	width: 100%;
	margin-top: -38%;
	z-index: 3;
	max-width: 27vw;
}

#dummyTitleDiv {
	flex: 1;
}

#titleDiv {
	position: relative;
	flex: 2;
	text-align: center;
	top: 21vw;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 0;
}

#titleDiv #welcome {
	font-size: 3.9rem;
	font-weight: 400;
	color: var(--primary);
	margin-bottom: 0.8rem;
}

#titleDiv #name {
	font-size: 5.2rem;
	font-weight: 900;
	color: var(--primary);
	/* font-family: 'bebas-neue', sans-serif; */
}

/*#endregion*/

/*#region About*/

#aboutSection {
	display: flex;
	flex-direction: row;
	width: 100%;

	margin-top: 1.5rem;
	padding-top: 12.5rem;

	padding-left: var(--sectionSidePadding);
	padding-right: var(--sectionSidePadding);
}

#aboutSection .text {
	width: 60%;
	margin-right: 5%;
}

#aboutSection .image {
	width: 40%;
	max-width: 27rem;
}

#aboutSection .image img {
	width: 100%;
}

.text p {
	font-size: 2rem;
}

.text h3 {
	margin-bottom: 2.6rem;
}

/*#endregion*/

/*#region Details*/
#detailsSection {
	padding-top: var(--sectionSpacePadding);
	padding-bottom: var(--halfSectionSpacePadding);
	padding-left: var(--sectionSidePadding);
	padding-right: var(--sectionSidePadding);
}

#detailsContainer {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

#detailsContainer .text {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-direction: column;
	margin: 0 4rem;
	flex: 2.5;
}

.button {
	margin-top: 3rem;
	cursor: pointer;
	border: none;
	padding: 0.975rem 2.6rem;
	text-decoration: none;
	color: var(--white);
	border-radius: 6.5px;
	background: var(--primary);
	font-size: 1.82rem;
	transition: var(--default-transition);
}

.button:hover {
	background: var(--primary-hover);
}

.button:active {
	background: var(--primary-click);
}

#whitepaper {
	margin-top: 1rem;
}

#readMore {
	color: var(--primary);
	text-decoration: underline;
}

#readMore:hover {
	color: var(--primary-hover);
}

#readMore:active {
	color: var(--primary-click);
}

@keyframes float {
	0% {
		/* box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6); */
		transform: translatey(0px);
	}
	50% {
		/* box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2); */
		transform: translatey(-20px);
	}
	100% {
		/* box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6); */
		transform: translatey(0px);
	}
}

/*#endregion*/

/*#region Carousel*/

#carouselSection {
	padding-top: var(--sectionSpacePadding);
	overflow-x: hidden;
	display: flex;
	align-items: flex-start;
}

.carousel {
	display: flex;
	width: calc(var(--image-size) * 42);
}

.carousel .image {
	list-style-type: none;
	animation: translateinfinite 90s linear infinite;
	padding: 1rem;
}

.image img {
	width: 100%;
	border-radius: var(--border-radius);
}

@keyframes translateinfinite {
	100% {
		transform: translateX(calc(-1 * var(--image-size) * 21));
	}
}

/*#endregion*/

/*#region Team*/

#teamSection {
	padding: 0 var(--padding);
	width: 100%;
	margin-bottom: 2rem;
	padding-top: var(--halfSectionSpacePadding);
}

#teamSection h3 {
	margin-bottom: 2.6rem;
}

.teamMembers {
	display: grid;
	justify-content: center;
	grid-template: '. . .' 1fr;
	grid-gap: 2.6rem;
	width: 100%;
	max-width: 90rem;
	height: 100%;
}

.teamMembers div {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 100%;
	height: 100%;
	min-width: 100%;
}

.teamMembers img {
	width: 100%;
	border-radius: var(--border-radius);
}

.teamMembers h4 {
	font-size: 1.95rem;
	margin-top: 1.5rem;
}

.teamMembers p {
	font-size: 1.6rem;
	margin-top: 0.26rem;
}

/*#endregion*/

/*#region Footer*/
footer {
	padding: 5rem var(--padding);
	scroll-snap-align: center;
	display: flex;
	justify-content: center;
}

footer div {
	display: flex;
	justify-content: center;
	align-items: center;
}

footer br {
	display: none;
}

footer p {
	font-size: 1.56rem;
	margin-right: 2.6rem;
	font-weight: 100;
	text-align: center;
}

#sbLink {
	text-decoration: none;
	color: var(--primary);
	font-weight: 600;
}

#sbLink:hover {
	text-decoration: underline;
}

#topButton {
	display: inline-block;
	background-color: var(--primary);
	width: 65px;
	height: 65px;
	text-align: center;
	border-radius: 6px;
	transition: background-color 1s, opacity 1s, visibility 1s;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
	position: fixed;
	right: 31.5px;
	bottom: 31.5px;
}

#topButton::after {
	content: '\f077';
	font-family: FontAwesome;
	font-size: 2.6em;
	line-height: 62px;
	color: var(--white);
	position: relative;
	top: -1px;
}

#topButton:hover {
	cursor: pointer;
	background-color: var(--primary-hover);
}

#topButton:active {
	background-color: var(--primary-click);
}

#topButton.show {
	opacity: 1;
	visibility: visible;
}

/*#endregion*/

/*#region Media Queries*/

@media only screen and (max-width: 1500px) {
	#callToAction p {
		font-size: 5.5rem;
	}

	#titleDiv #welcome {
		font-size: 3.4rem;
		margin-bottom: 0.5rem;
	}

	#titleDiv #name {
		font-size: 4.6rem;
	}

	#titleSection {
		margin-top: 0;
	}

	#detailsSection {
		padding-right: 5rem;
		padding-left: 5rem;
	}

	#detailsContainer .text {
		margin: 0;
	}

	#aboutSection,
	#detailsSection {
		padding-left: 5rem;
		padding-right: 5rem;
	}

	.text h3 {
		font-size: 4rem;
	}

	.text p {
		font-size: 1.8rem;
	}
}

@media only screen and (max-width: 1250px) {
	#callToAction p {
		font-size: 4.5rem;
	}

	.teamMembers {
		grid-template:
			'. .' 1fr
			'. .' 1fr
			'. .' 1fr;
		max-width: 60rem;
	}

	#mc_embed_signup form {
		max-width: 60rem;
	}

	:root {
		--image-size: 45vh;
		--sectionSpacePadding: 10rem;
		--halfSectionSpacePadding: 5rem;
	}

	#titleDiv #welcome {
		font-size: 2.5rem;
	}

	#titleDiv #name {
		font-size: 3.7rem;
	}

	.sectionTitle {
		font-size: 3.7rem;
	}

	nav h3 {
		font-size: 2.6rem;
	}

	nav .socials {
		display: none;
	}

	nav {
		justify-content: space-between;
	}

	#imageMobile {
		display: block;
		padding-top: 3.5rem;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.countdown {
		margin-bottom: 3rem;
	}

	#aboutSection {
		flex-direction: column;
	}

	#aboutSection .text {
		text-align: center;
		width: 100%;
		margin-right: 0;
		margin-bottom: 3rem;
	}

	.text h3 {
		font-size: 3.5rem;
	}

	#aboutSection .image {
		width: 100%;
	}

	.text p {
		font-size: 1.7rem;
	}

	.button {
		font-size: 1.6rem;
	}

	.teamMembers h4 {
		font-size: 1.75rem;
	}

	.teamMembers p {
		font-size: 1.5rem;
	}
}

@media only screen and (max-width: 1000px) {
	#callToAction p {
		font-size: 4rem;
		padding-left: 1rem;
		padding-right: 1rem;
	}

	#topButton {
		display: none;
	}
}

@media only screen and (max-width: 850px) {
	#callToAction p {
		font-size: 3.3rem;
	}

	:root {
		--sectionSpacePadding: 8rem;
		--halfSectionSpacePadding: 4rem;
	}

	.text {
		padding: 1.5rem 2.1rem 2.1rem 2.1rem;
	}

	.teamMembers h4 {
		font-size: 1.6rem;
	}

	.teamMembers p {
		font-size: 1.3rem;
	}

	#titleDiv #welcome {
		font-size: 3rem;
	}

	#titleDiv #name {
		font-size: 3.5rem;
	}

	.sideSection {
		flex: 3;
	}

	#dummyTitleDiv {
		flex: 2;
	}

	body::before {
		opacity: 0.42;
	}

	#titleSection {
		display: none;
	}

	#titleDiv {
		padding-top: 9rem;
		padding-bottom: 4.5rem;
		height: 100%;
		top: 0;
	}

	#aboutSection {
		padding-top: 0;
	}

	#detailsSection p {
		text-align: center;
	}

	.sectionTitle {
		font-size: 2.8rem;
	}

	#navbar {
		display: none;
	}

	#hamburgerDiv {
		z-index: 10;
		display: block;
	}

	#menuToggle {
		z-index: 10;
		display: block;
	}

	footer {
		justify-content: center;
	}

	#aboutSection .text {
		font-size: 2.5rem;
	}

	.text p {
		font-size: 1.35rem;
	}

	footer div {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	footer p {
		margin-right: 0;
		margin-bottom: 2rem;
	}
}

@media only screen and (max-width: 750px) {
	#callToAction {
		padding-bottom: 1.5rem;
	}

	#callToAction p {
		font-size: 3.5rem;
	}

	:root {
		--sectionSpacePadding: 7.2rem;
		--halfSectionSpacePadding: 3.6rem;
	}

	.text {
		padding: 1rem 1.4rem 1.4rem 1.4rem;
	}

	nav {
		padding: 1.3rem var(--padding-mobile) 1.3rem var(--padding-mobile);
	}

	nav h3 {
		font-size: 2.3rem;
	}

	#dummyTitleDiv {
		flex: 1;
	}

	#aboutSection .text {
		margin-bottom: var(--padding-mobile);
	}

	#titleDiv #welcome {
		font-size: 2.3rem;
		margin-bottom: 1rem;
		width: 80%;
	}

	#titleDiv #name {
		font-size: 3.1rem;
	}

	#titleDiv {
		padding-top: 7rem;
		padding-bottom: 5.3rem;
	}

	#aboutSection {
		padding-top: var(--padding-mobile);
	}

	.sectionTitle {
		font-size: 2.5rem;
	}

	#teamSection {
		padding-left: var(--padding-mobile);
		padding-right: var(--padding-mobile);
	}

	#mc_embed_signup {
		padding-left: var(--padding-mobile);
		padding-right: var(--padding-mobile);
	}

	.teamMembers {
		grid-template: '.' 1fr;
		grid-gap: var(--padding-mobile);
	}

	.teamMembers div {
		max-width: 25rem;
		min-width: none;
		min-width: none;
	}

	footer br {
		display: block;
	}

	footer p {
		font-size: 1.4rem;
	}

	#aboutSection,
	#detailsSection {
		padding-right: var(--padding-mobile);
		padding-left: var(--padding-mobile);
	}

	.text h3 {
		font-size: 2rem;
		margin-bottom: 0.9rem;
	}

	.text p {
		font-size: 1.2rem;
	}

	.button {
		font-size: 1.3rem;
		padding: 0.8rem 2.1rem;
	}

	#mc_embed_signup form {
		padding: 1rem 2rem;
	}

	#mc_embed_signup h2 {
		font-size: 1.4rem;
		margin-bottom: 1rem;
	}

	#mc_embed_signup .mc-field-group input {
		font-size: 1.14rem;
		padding: 9px 4px;
		border-radius: 14px;
		margin-bottom: 0.7rem;
	}

	#mc_embed_signup .mc-field-group input {
		text-indent: 8px;
	}

	#mc_embed_signup .mc-field-group input::placeholder {
		font-size: 1.1rem;
	}

	#mc_embed_signup .helper_text {
		display: none;
	}

	#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
		font-size: 0.87rem;
		margin: 0;
	}

	#mc_embed_signup div#mce-responses {
		margin-bottom: 0.7rem;
	}

	#mc_embed_signup #mce-success-response {
		font-size: 0.87rem;
		padding-left: 3px;
	}

	#mc_embed_signup #mce-error-response {
		font-size: 0.87rem;
		padding-left: 3px;
	}

	#mc_embed_signup .foot {
		flex-direction: column;
	}

	#mc_embed_signup .button {
		padding: 0.58rem 1.4rem;
		font-size: 1.1rem;
		margin-bottom: 0.7rem;
	}
}

/*#endregion*/
