/* ====================================================================== */
/* =========================== Default Screen =========================== */
/* ====================================================================== */

*,
*::after,
*::before {
	background-position: center center;
	background-repeat: no-repeat;
	box-sizing: border-box;
	background-size: cover;
	position: relative;
}

:root {
	--main-color: 193, 015, 000;
	--lite-color: 240, 240, 238;
	--text-color: 000, 000, 000;
}

html {
	height: 100%;
	scroll-behavior: smooth;
	font-size: 0.6945vw;
	overflow-y: scroll;
	overflow-x: hidden;
	font-weight: 400;
	cursor: default;
}
	
body {
	height: 100%;
	-webkit-font-smoothing: antialiased !important;
	-webkit-text-size-adjust: none !important;
	font-smoothing: antialiased !important;
	background: rgba(var(--lite-color), 1.0);
	color: rgba(var(--text-color), 1.0);
	line-height: 0;
	padding: 0;
	margin: 0;
}

.setWrapper {
	width: calc(100% - 12.8rem);
	flex-direction: column;
	margin: 40vh auto;
	align-items: center;
	position: relative;
	text-align: center;
	display: flex;
	gap: 6.4rem;
}

/* ---------------------------------------- */
/* ----- >>> Structure -------------------- */
/* ---------------------------------------- */

header,
section, 
footer {
	width: 100%;
	text-align: center;
}

header {
	position: fixed;
	z-index: 9999;
}

footer {
	overflow: hidden;
}

/* ---------------------------------------- */
/* ----- >>> Styles ----------------------- */
/* ---------------------------------------- */

h1		{ font: 900 7.2rem/1.10em 'Plank', 		Helvetica, Arial, sans-serif; margin-bottom: 0.0rem; }
h2		{ font: 900 4.8rem/1.10em 'Plank', 		Helvetica, Arial, sans-serif; margin-bottom: 0.0rem; }
h3		{ font: 900 3.2rem/1.10em 'Plank', 		Helvetica, Arial, sans-serif; margin-bottom: 0.0rem; }
h4		{ font: 900 2.4rem/1.10em 'Plank', 		Helvetica, Arial, sans-serif; margin-bottom: 0.0rem; }
h5		{ font: 900 2.1rem/1.10em 'Plank', 		Helvetica, Arial, sans-serif; margin-bottom: 0.0rem; }
h6		{ font: 900 1.8rem/1.10em 'Plank', 		Helvetica, Arial, sans-serif; margin-bottom: 0.0rem; }
p 		{ font: 400 3.2rem/1.25em 'Cardinal', 	Helvetica, Arial, sans-serif; margin-bottom: 0.0rem; }
small { font: 400 0.9rem/1.50em 'Plank', 		Helvetica, Arial, sans-serif; margin-bottom: 0.0rem; }
a { text-decoration: none;}

blockquote { 
	font: 400 24.4rem/0.80em 'Cardinal', Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	text-align: center;
}

blockquote > span {
	font-weight: 450;
}

p {
	margin-right: auto;
	margin-left: auto;
	max-width: 86rem;
}

p > em {
	font-weight: 450;
}

h1:hover > a:not(:hover) {
	opacity: 0.1;
}

/* ---------------------------------------- */
/* ----- >>> Navegation ------------------- */
/* ---------------------------------------- */

header .setWrapper,
footer .setWrapper {
	justify-content: space-between;
	flex-direction: row;
 	align-items: center;
 	margin: 0.0 auto;
	display: flex;
}

footer .setWrapper {
	justify-content: center;
	margin-bottom: 3.2rem;
}

nav {
	transition: opacity 0.25s ease-in-out;
	visibility: hidden;
	position: fixed;
	bottom: 4.0rem;
	right: 9.6rem;
	opacity: 0;
}

nav > ul {
	font: 900 1.4rem/1.00em 'Plank', Helvetica, Arial, sans-serif;
	letter-spacing: 0.1em;
	display: flex;
	gap: 3.2rem;
}

nav > ul > li > a {
	opacity: 0.9;
}

nav > ul > li.current-menu-item > a{
	opacity: 1.0;
}

nav > ul:hover > li:not(:hover) > a {
	opacity: 0.1;
}

nav.isActive {
	visibility: visible;
	opacity: 1;
}

/* ---------------------------------------- */

footer > div > small {
	letter-spacing: 0.05em;
	font-size: 1.4rem;
	font-weight: 700;
	opacity: 0.15;
}

/* ---------------------------------------- */
/* ----- >>> Section: Home ---------------- */
/* ---------------------------------------- */

motion {
	width: 100%;
	height: 100dvh;
	animation: fadeOut 8s forwards;
	justify-content: center;
	align-items: center;
	position: fixed;
	display: flex;
	z-index: 999;
	opacity: 1;
	top: 0;
}

motion > svg {
	max-width: 48rem;
	width: 80dvw;
}

motion > svg > path {
	animation: fadeIn01 8s forwards;
	opacity: 0;
}

motion > svg > path:nth-child(2n) { animation: fadeIn02 8s forwards; }
motion > svg > path:nth-child(3n) { animation: fadeIn03 8s forwards; }

@keyframes fadeIn01 { 000% { opacity: 0; } 025% { opacity: 1; fill: #000000; } 035% { opacity: 1; fill: #FFFFFF; } 100% { opacity: 1; fill: #FFFFFF; } }
@keyframes fadeIn02 { 005% { opacity: 0; } 025% { opacity: 1; fill: #000000; } 035% { opacity: 1; fill: #FFFFFF; } 100% { opacity: 1; fill: #FFFFFF; } }
@keyframes fadeIn03 { 010% { opacity: 0; } 025% { opacity: 1; fill: #000000; } 035% { opacity: 1; fill: #FFFFFF; } 100% { opacity: 1; fill: #FFFFFF; } }

@keyframes fadeOut {
	000% { opacity: 1; background: rgba(240, 240, 238, 1.0); }
	010% { opacity: 1; background: rgba(240, 240, 238, 1.0); }
	025% { opacity: 1; background: rgba(240, 240, 238, 0.0); }
	090% { opacity: 1; background: rgba(240, 240, 238, 0.0); }
	100% { opacity: 0; background: rgba(240, 240, 238, 0.0); }
}

/* ---------------------------------------- */


gallery,
gallery > item {
	width: 100%;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	display: flex;
}

gallery {
	margin-bottom: 6.4rem !important;
}

gallery > item {
	width: 50%;
	animation: setTransform 1s forwards;
	transition: all 0.25s ease-in-out;
	animation-delay: 2.50s; 
	transform: scale(1.0);
	opacity: 0;
}

gallery > item:nth-child(2n) { animation-delay: 2.50s; }
gallery > item:nth-child(3n) { animation-delay: 2.50s; }


@keyframes setTransform {
	000% { transform: scale(1.0); opacity: 0; }
	100% { transform: scale(1.0); opacity: 1; }
}

gallery > item:nth-child(1)  { width: 050%; justify-content: flex-start; }
gallery > item:nth-child(2)  { width: 050%; justify-content: flex-end; 	 }
gallery > item:nth-child(3)  { width: 100%; justify-content: flex-end; 	 }
gallery > item:nth-child(4)  { width: 100%; justify-content: flex-start; }
gallery > item:nth-child(5)  { width: 100%; justify-content: flex-end; 	 }
gallery > item:nth-child(6)  { width: 100%; justify-content: center; 	 }
gallery > item:nth-child(9)  { width: 100%; justify-content: center; 	 }
gallery > item:nth-child(10) { width: 050%; justify-content: flex-start; }
gallery > item:nth-child(11) { width: 050%; justify-content: flex-end; 	 }
gallery > item:nth-child(12) { width: 100%; justify-content: flex-end; 	 }
gallery > item:nth-child(13) { width: 100%; justify-content: flex-end; 	 }
gallery > item:nth-child(14) { width: 060%; justify-content: center; 	 }
gallery > item:nth-child(15) { width: 040%; justify-content: center; 	 }
gallery > item:nth-child(16) { width: 060%; justify-content: center; 	 }
gallery > item:nth-child(17) { width: 040%; justify-content: center; 	 }
gallery > item:nth-child(18) { width: 100%; justify-content: center; 	 }
gallery > item:nth-child(19) { width: 030%; justify-content: flex-end; 	 }
gallery > item:nth-child(20) { width: 030%; justify-content: center; 	 }
gallery > item:nth-child(21) { width: 030%; justify-content: flex-start; }
gallery > item:nth-child(22) { width: 100%; justify-content: center; 	 }

gallery > item:nth-child(1) > img  { max-width: 48rem; margin: +000% +000% +000% +000%; }
gallery > item:nth-child(2) > img  { max-width: 54rem; margin: +000% +000% +000% +000%; }
gallery > item:nth-child(3) > img  { max-width: 54rem; margin: +000% +010% +000% +000%; }
gallery > item:nth-child(4) > img  { max-width: 72rem; margin: +010% +000% +000% +000%; }
gallery > item:nth-child(5) > img  { max-width: 48rem; margin: -005% +010% +000% +000%; }
gallery > item:nth-child(6) > img  { max-width: 96rem; margin: +010% +000% +010% +000%; }
gallery > item:nth-child(7) > img  { max-width: 36rem; margin: +010% +000% +010% +000%; }
gallery > item:nth-child(8) > img  { max-width: 48rem; margin: +010% +000% +010% +000%; }
gallery > item:nth-child(9) > img  { max-width: 72rem; margin: +010% +000% +010% +000%; }
gallery > item:nth-child(10) > img { max-width: 64rem; margin: +020% +000% +010% +000%; }
gallery > item:nth-child(11) > img { max-width: 64rem; margin: -100% +000% +010% +000%; }
gallery > item:nth-child(12) > img { max-width: 48rem; margin: -050% +010% +010% +000%; }
gallery > item:nth-child(13) > img { max-width: 32rem; margin: +000% +015% +010% +000%; }
gallery > item:nth-child(14) > img { max-width: unset; margin: +000% +000% +010% +000%; }
gallery > item:nth-child(15) > img { max-width: 40rem; margin: +000% +000% +000% +015%; }
gallery > item:nth-child(16) > img { max-width: unset; margin: +050% +000% +000% +000%; }
gallery > item:nth-child(17) > img { max-width: 44rem; margin: -075% +000% +000% +010%; }
gallery > item:nth-child(18) > img { max-width: 64rem; margin: +010% +000% +010% +000%; }
gallery > item:nth-child(19) > img { max-width: unset; margin: +010% +000% +010% +000%; }
gallery > item:nth-child(20) > img { max-width: unset; margin: +010% +000% +010% +000%; }
gallery > item:nth-child(21) > img { max-width: unset; margin: +010% +000% +010% +000%; }
gallery > item:nth-child(22) > img { max-width: 72rem; margin: +010% +000% +010% +000%; }

/*
gallery {
	width: 100vw;
	height: 100dvh;
	position: fixed;
	left: 0;
	top: 0;
}

gallery > item {
	display: none;
	z-index: -1;
	opacity: 0;
}

/* ---------------------------------------- */
/* ----- >>> Section: Works --------------- */
/* ---------------------------------------- */

.isFLX {
	min-height: 100dvh;
	margin-bottom: 0 !important;
	margin-top: 0 !important;
	justify-content: center;
}

works {
	font: 900 5.4rem/1.00em 'Plank', Helvetica, Arial, sans-serif;
	letter-spacing: 0.1em;
	justify-content: center;
	padding-top: 6.4rem;
	gap: 3.2rem 6.4rem;
	flex-wrap: wrap;
	display: flex;
}

works > item:not(:nth-child(2n),:last-child):before {
	width:  3.2rem;
	height: 0.6rem;
	transition: all 0.25s ease-in-out;
	transform: translateX(100%);
	background: currentColor;
	position: absolute;
	bottom: 0.8rem;
	right: -1.6rem;
	content: "";
}

 works:hover > item:before,
 works:hover > item:not(:hover) > a {
	opacity: 0.1;
}

works > item > span {
	width: 50vw;
	height: 100dvh;
	transition: all 0.25s ease-in-out;
	visibility: hidden;
	overflow: hidden;
	position: fixed;
	z-index: -1;
	opacity: 0;
	right: 0;
	top: 0;
}

works > item:nth-child(2n) > span {
	right: unset;
	left: 0;
}

works > item > span > img {
	width: 100% !important;
	min-height: 100dvh;
	transform: translate(-50%, -50%);
	position: absolute;
	object-fit: cover;
	opacity: 1;
	left: 50%;
	top: 50%;
}

works > item:hover > span {
	visibility: visible;
	opacity: 1;
}

/* ---------------------------------------- */
/* ----- >>> Section: Album --------------- */
/* ---------------------------------------- */

cover {
	width: 100%;
	aspect-ratio: 16 / 9;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	display: flex;
	height: 100dvh;
}

cover > h1 {
	position: fixed;
	transform: translate(-50%, -50%);
	white-space: nowrap;
	z-index: -1;
	left: 50%;
	top: 50%;
}

cover > img {
	width: auto !important;
	object-fit: cover;
	min-height: 100%;
	min-width: 100%;
}

/* ---------------------------------------- */

main {
	background: rgba(var(--lite-color), 1.0);
}

intro,
nexts,
items {
	justify-content: center;
	flex-direction: column;
	padding: 25vh 0.0rem;
	flex-wrap: wrap;
	display: flex;
}

intro > p {
	font: 400 1.4rem/2.4em 'Plank', Helvetica, Arial, sans-serif;
	letter-spacing: 0.1em;
}

items {
	width: 100%;
	background: rgba(var(--lite-color), 1.0);
	align-items: center;
	margin: 0 auto;
	gap: 25.6rem;
}

items > item {
	width: 100%;
	align-items: flex-start;
	flex-direction: row;
	display: flex;
}

nexts > a {
	font: 900 2.0rem/1.5em 'Plank', Helvetica, Arial, sans-serif;
	white-space: nowrap;
	position: relative;
}

nexts > a > span {
	transform: translate(-50%, 125%);
	transition: all 0.25s ease-in-out;
	position: absolute;
	font-size: 200%;
	opacity: 0;
	left: 50%;
}

nexts > a:hover > span {
	opacity: 1;
}

/* ---------------------------------------- */

items > item > span {
	font: 900 1.2rem/2.0rem 'Plank', Helvetica, Arial, sans-serif;
	text-align: center;
	background: #333333;
	color: #FAFAFA;
	position: absolute;
	width: 2.4rem;
	z-index: 10;
	left: 0;
	top: 0;
}

items > item.isSolo { justify-content: center !important; }
items > item.isSolo > img { width: 50%; max-height: 90vh; }

items > item 		 { justify-content: space-between;       }
items > item.isS01 { justify-content: center; gap: 3.2rem; }
items > item.isS02 { justify-content: center; gap: 1.6rem; }
items > item.isS04,
items > item.isS05 { align-items: center; }

items > item.isS01 > img { width: 30%; }
items > item.isS02 > img { width: 25%; }

items > item.isS03 > img:nth-child(1) { width: 28.5%; margin-top: 00.0%; transform: translateX(+00.0%) scale(1.00); }
items > item.isS03 > img:nth-child(2) { width: 28.5%; margin-top: 18.5%; transform: translateX(+00.0%) scale(1.00); }

items > item.isS04 > img:nth-child(1),
items > item.isS05 > img:nth-child(2) { width: 25.0%; margin: 0rem auto; transform: translateX(+00.0%) scale(1.00); }
items > item.isS04 > img:nth-child(2),
items > item.isS05 > img:nth-child(1) { width: 45.0%; margin-top: 00.0%; transform: translateX(+00.0%) scale(1.00); }

items > item.isS06 > img:nth-child(1) { width: 25.0%; margin-top: 07.0%; transform: translateX(+00.0%) scale(1.00); }
items > item.isS06 > img:nth-child(2) { width: 27.5%; margin-top: 40.0%; transform: translateX(+35.0%) scale(1.00); }
items > item.isS06 > img:nth-child(3) { width: 36.0%; margin-top: 00.0%; transform: translateX(-02.5%) scale(1.00); }

items > item.isS07 > img:nth-child(1) { width: 26.5%; margin-top: 17.5%; transform: translateX(+60.0%) scale(1.00); }
items > item.isS07 > img:nth-child(2) { width: 20.0%; margin-top: 37.5%; transform: translateX(150.0%) scale(1.00); }
items > item.isS07 > img:nth-child(3) { width: 42.5%; margin-top: 00.0%; transform: translateX(+00.0%) scale(1.00); }

items > item.isS08 > img:nth-child(1) { width: 60.0%; margin-top: 25.0%; transform: translateX(+00.0%) scale(1.00); }
items > item.isS08 > img:nth-child(2) { width: 25.0%; margin-top: 03.0%; transform: translateX(+50.0%) scale(1.30); }
items > item.isS08 > img:nth-child(3) { width: 20.0%; margin-top: 37.5%; transform: translateX(-07.0%) scale(1.15); }

items > item.isS09 > img:nth-child(1) { width: 55.0%; margin-top: 00.0%; transform: translateX(-02.5%) scale(-0.95); }
items > item.isS09 > img:nth-child(2) { width: 25.0%; margin-top: 45.0%; transform: translateX(-07.5%) scale(1.25); }
items > item.isS09 > img:nth-child(3) { width: 20.0%; margin-top: 10.0%; transform: translateX(-20.0%) scale(1.10); }

items > item.isS10 > img:nth-child(1) { width: 22.5%; margin-top: 10.0%; transform: translateX(+00.0%) scale(1.00); }
items > item.isS10 > img:nth-child(2) { width: 25.0%; margin-top: 50.0%; transform: translateX(-10.0%) scale(1.30); }
items > item.isS10 > img:nth-child(3) { width: 52.5%; margin-top: 00.0%; transform: translateX(+00.0%) scale(1.00); }

items > item.isS11 > img:nth-child(1) { width: 35.0%; margin-top: 00.0%; transform: translateX(+00.0%) scale(1.00); }
items > item.isS11 > img:nth-child(2) { width: 25.0%; margin-top: 32.5%; transform: translateX(-65.0%) scale(1.00); }
items > item.isS11 > img:nth-child(3) { width: 25.0%; margin-top: 12.5%; transform: translateX(-37.7%) scale(1.00); }

items > item.isS12 > img:nth-child(1) { width: 37.5%; margin-top: 35.0%; transform: translateX(+07.5%) scale(1.00); }
items > item.isS12 > img:nth-child(2) { width: 27.5%; margin-top: 07.5%; transform: translateX(-60.0%) scale(1.00); }
items > item.isS12 > img:nth-child(3) { width: 25.0%; margin-top: 00.0%; transform: translateX(-12.5%) scale(1.00); }

items > item.isS13 > img:nth-child(1) { width: 37.5%; margin-top: 35.0%; transform: translateX(+07.5%) scale(1.00); }
items > item.isS13 > img:nth-child(2) { width: 37.5%; margin-top: 02.5%; transform: translateX(-60.0%) scale(1.00); }
items > item.isS13 > img:nth-child(3) { width: 25.0%; margin-top: 00.0%; transform: translateX(-12.5%) scale(1.00); }

/* ---------------------------------------- */
/* ----- >>> Section: About --------------- */
/* ---------------------------------------- */

#isAbout {
	background: rgba(var(--main-color), 1.0);
}

/* ---------------------------------------- */

splash {
	width:  100%;
	height: 100vh;
	align-items: center;
	position: relative;
	display: flex;
	gap: 6.4rem;
}

splash > item:nth-child(1) { width: 70%; padding: 0.0rem; min-height:  100vh;}
splash > item:nth-child(2) { width: 30%; padding: 4.8rem; }

splash > item > blockquote {
	width: 100dvh;
	transform: translate(-45%, -50%) rotate(-90deg);
	position: absolute;
	left: 50%;
	top: 50%;
}

/* ---------------------------------------- */

sticky,
sticky > item,
sticky > item > div {
	width: 100%;
	min-height: 100dvh;
	display: flex;
}

sticky {
	margin: 12.8rem 0.0rem !important;
}

sticky > item {
	flex-direction: column;
	width: 50%;
}

sticky > item > div {
	justify-content: center;
	position: sticky;
}

sticky > item > div > span {
	width: 0.1px;
	height: 125dvh;
	justify-self: flex-end;
	margin-right: auto;
}

sticky > item > div > text {
	height: 100vh;
	align-items: center;
	padding: 0.0rem 15%;
	position: sticky;
	display: flex;
}

sticky > item > img,
sticky > item > div > text {
	position: sticky;
	top: 0;
}

/* ---------------------------------------- */

press {
	width: 100%;
	max-width: 108rem;
	justify-content: center;
	gap: 1.6rem 4.0rem;
	flex-wrap: wrap;
	display: flex;
}

press > item > img {
	width: auto !important;
	max-height: 6.4rem;
}

/* ---------------------------------------- */
/* ----- >>> Coming Soon ------------------ */
/* ---------------------------------------- */

coming-soon {
	width: 100%;
	height: 100dvh;
	background: rgba(var(--main-color), 1.0);
	justify-content: center;
	align-items: center;
	text-align: center;
	display: flex;
}

coming-soon > ul {
	font: 900 2.0rem/1.5em 'Plank', Helvetica, Arial, sans-serif;
	position: absolute;
	bottom: 4.8rem;
	display: flex;
	gap: 3.2rem;
}

coming-soon > ul:hover > li > a:not(:hover) {
	opacity: 0.1;
}

/* ---------------------------------------- */
/* ----- >>> General ---------------------- */
/* ---------------------------------------- */

img {
	width: 100%;
	height: auto !important;
	display: block;
}

.setTAL { text-align: left; }
.setTAC { text-align: center; }
.setTAR { text-align: right; }

.isFull {
	margin: 0 auto !important;
	width: 100% !important;
}

.isHRO {
	width: 100%;
	justify-content: center;
	aspect-ratio: 16 / 9;
	align-items: center;
	display: flex;
	margin: 0 auto;
}

.isMBL {display: none !important; }

/* ---------------------------------------- */
/* ----- >>> Media Form ------------------- */
/* ---------------------------------------- */

form {
	margin: 16.0rem auto;
}

form,
form > item {
	width: 100%;
	flex-direction: column;
	position: relative;
	max-width: 64rem;
	text-align: left;
	display: flex;
	gap: 2.4rem;

}

form > item {
	justify-content: center;
	align-items: center;
	gap: 0.6rem;
}

form > item > p {
	width: 100%;
	font: 500 1.0rem/1.50em 'Plank', Helvetica, Arial, sans-serif;
	letter-spacing: 0.1rem;
}

form > item > small {
	width: 100%;
	letter-spacing: 0.05em;
	opacity: 0.3;
}

form > item#isOutput {
	font: 500 1.4rem/1.50em 'Plank', Helvetica, Arial, sans-serif;
}

form > item#isOutput > span {
	color: rgba(var(--text-color), 1.0);
	transform: translateY(-3.4rem);
	font-size: 1.2rem;
}

input.isWrong,
select.isWrong {
	border-color: rgba(var(--main-color), 0.3);
	color: rgba(var(--main-color), 1.0);
}

textarea.isWrong {
	background-image: url(../assets/@0x/IMG_WNG.png?600);
}

::-webkit-input-placeholder	{ opacity: 0.5; text-transform: uppercase; color: currentColor;}
:-ms-input-placeholder			{ opacity: 0.5; text-transform: uppercase; color: currentColor;}
::-moz-placeholder				{ opacity: 0.5; text-transform: uppercase; color: currentColor;}
:-moz-placeholder					{ opacity: 0.5; text-transform: uppercase; color: currentColor;}

input, select, textarea, button {
	box-shadow: none !important;
	-webkit-box-sizing: border-box !important;
	-moz-box-sizing: border-box !important;
	-webkit-appearance: none !important;
	box-sizing: border-box !important;
}

input, select, textarea, button, label,
input[type="date"] {
	all: unset;
	width: 100%;
	font: 400 1.0rem/3.2em 'Plank', sans-serif;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	letter-spacing: 0.1em;
	position: relative;
	padding: 0.0rem;
	resize: none;
}

label {
	border: none !important;
	margin-bottom: -0.6rem;
	line-height: 1.5em;
}

label > span,
form > item > span {
	font: 500 1.4rem/1.50em 'Plank', Helvetica, Arial, sans-serif;
	position: absolute;
	bottom: -1.6rem;
	right: 0.8rem;
}

form > item > span {
	bottom: unset;
}

/* ---------------------------------------- */

select {
	background: url(../assets/SVG/SVG_DRP.svg) no-repeat top 0.5rem right 2.0rem / 2.0rem 2.0rem;
}

/* ---------------------------------------- */

textarea {
	background: url(../assets/@0x/IMG_BRD.png?400) repeat top center / 6px 24px;
	line-height: 2.0em;
	min-height: 96px;
	border: none;
}

/* ---------------------------------------- */

button {
	width: auto;
	font: 900 1.8em/1.0em 'Plank', sans-serif;
	margin-top: 1.6rem;
	border: none;
}

/* ---------------------------------------- */
/* ----- >>> Icon Sets -------------------- */
/* ---------------------------------------- */

.isBND {
	width: 18.6rem;
	aspect-ratio: 1.5 / 1;
	background: url(../assets/@0x/IMG_BND.png?400) no-repeat center center / cover;
	display: inline-block;
	position: fixed;
	z-index: 9999;
	top: 1.6rem;
}

.isMenu {
	width: 3.2rem;
	height: 3.2rem;
	background: url(../assets/SVG/SVG_CRS.svg) no-repeat center center / cover;
	transition: all 0.25s ease-in-out;
	cursor: pointer;
	position: fixed;
	bottom: 3.2rem;
	right: 3.2rem;
	z-index: 9999;
}


.isMenu.isActive {
	transform: rotate(-45deg);
}

/* ---------------------------------------- */
/* ----- >>> Animations ------------------- */
/* ---------------------------------------- */

a,
button {
	transition: opacity 0.25s ease-in-out;
}

/* ---------------------------------------- */
/* ----- >>> CSS Hacks -------------------- */
/* ---------------------------------------- */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

* html .setClearfix{ 
	height: 1%;
}

.setClearfix{ 
	display: inline-block; 
}

.setClearfix:after {
	content: "\00A0";
	visibility: hidden;
	line-height: 0;
	display: block;
	clear: both;
	height: 0;
}

*:not(.setWrapper, img):last-child {
	margin-bottom: 0;
}

hide {
	position: fixed;
	top: -100dvh;
}

/* ---------------------------------------- */
/* ----- >>> Dev Tools -------------------- */
/* ---------------------------------------- */

.isDev * {
	box-shadow: inset 0rem 0rem 0rem 0.05rem #FF1DFF;
}

.isDev .setWrapper {
	background-color: rgba(255, 0, 0, 0.1);
}

.isDev header:before {
	width: 0.1rem;
	height: 100ddvh;
	background-color: rgba(255, 0, 0, 1);
	position: fixed;
	content: "";
	left: 50%;
	top: 0;
}