/* @import url('utility.css');
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
} */
:root {
	--utility-header-height: 64px;
}
.utility__container {
	padding-top: 3.5em;
	max-width: 70vw;
	margin: auto;
}

.utility__header {
	font-size: 32px;
	height: var(--utility-header-height);
	font-family: subheader;
	margin-bottom: 0.15em;
	margin-top: 0.5em;
	/* padding: 0 0.25em; */
	/* border: 4px solid green; */
}

.utility__split {
	display: flex;
	justify-content: center;
	gap: 1%;
}
.utility__split > * {
	width: 49.5%;
}

.utility__vertical {
	flex-direction: column;
	width: 50%;
	justify-content: start;
	align-items: center;
	padding: 2em;
}

.utility__debug {
	border: 2px solid red;
}
.contact-page {
	width: 100dvw;
	height: 100dvh;
	overflow: hidden;
}
:root {
	line-height: 1.5;
	font-weight: 400;
	margin: 0;
	padding: 0;

	color-scheme: light dark;
	color: rgba(255, 255, 255, 0.87);
	background-color: #000;

	font-synthesis: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	--primary: 0, 0%, 100%;
	--color-text: rgba(255, 255, 255, 0.6);
	--color-bg: #000;
	--color-link: #fff;
	--color-link-hover: #fff;
	--page-padding: 1.5rem;
	--color-grad-1: #081326;
	--color-grad-2: #24112f;
	--secondary: 0, 100%, 28%;
	--c: cubic-bezier(1, 0.49, 0.16, 0.96);
	--step: 5%;
	--pattern: url('http://allyourhtml.club/carousel/pattern.webp') center / 75%;
	--cgap: 5%;
	--rgap: 5%;
	--rows: 5;
	--columns: 5;
	--rainbow: repeating-linear-gradient(
			0deg,
			rgb(255, 119, 115) calc(var(--step) * 1),
			rgba(255, 237, 95, 1) calc(var(--step) * 2),
			rgba(168, 255, 95, 1) calc(var(--step) * 3),
			rgba(131, 255, 247, 1) calc(var(--step) * 4),
			rgba(120, 148, 255, 1) calc(var(--step) * 5),
			rgb(216, 117, 255) calc(var(--step) * 6),
			rgb(255, 119, 115) calc(var(--step) * 7)
		)
		0% var(--bg-y) / 200% 700%;
	--diagonal: repeating-linear-gradient(
			128deg,
			#0e152e 0%,
			hsl(180, 10%, 60%) 3.8%,
			hsl(180, 10%, 60%) 4.5%,
			hsl(180, 10%, 60%) 5.2%,
			#0e152e 10%,
			#0e152e 12%
		)
		var(--bg-x) var(--bg-y) / 300%;
	--shade: radial-gradient(
			farthest-corner circle at var(--x) var(--y),
			rgba(255, 255, 255, 0.1) 12%,
			rgba(255, 255, 255, 0.15) 20%,
			rgba(255, 255, 255, 0.25) 120%
		)
		var(--bg-x) var(--bg-y) / 300%;
}
@keyframes flicker {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes scrollText {
	0% {
		transform: translateX(100vw);
	}
	100% {
		transform: translateX(-100vw);
	}
}
@keyframes glow {
	0%,
	100% {
		text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60000,
			0 0 40px #e60000, 0 0 50px #e60000, 0 0 60px #e60000,
			0 0 70px #e60000;
	}
	50% {
		text-shadow: 0 0 20px #fff, 0 0 30px #ff624d, 0 0 40px #ff4d4d,
			0 0 50px #ff4d4d, 0 0 60px #ff2a00, 0 0 70px #ff0000,
			0 0 80px #fb2727;
	}
}
@font-face {
	font-family: Caladea;
	src: url('/fonts/Caladea/Caladea-Bold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: Rubik;
	src: url('/fonts/Rubik_Beastly/RubikBeastly-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: gara;
	src: url('/fonts/EB_Garamond/static/EBGaramond-Regular.ttf')
		format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: sans;
	src: url('/fonts/vercetti/Vercetti-Regular.woff');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: textfont;
	src: url('/fonts/inconsolata/Inconsolata-Regular.ttf');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: subheader;
	src: url('/fonts/karla/Karla-Regular.ttf');
	font-weight: normal;
	font-style: normal;
}
html,
body {
	margin: 0;
	padding: 0;
	width: 100vw;
	height: 100%;
	box-sizing: border-box;
	/* overflow-x: hidden; */
}
body {
	overflow-x: hidden;
}
main {
	overflow-x: hidden;
}

body {
	position: relative;
}
h3 {
	font-family: subheader;
}

.loader {
	position: absolute;
	width: 100vw;
	height: 100vh;
	z-index: 10000;
	background-color: black;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 1;
}

.loader p {
	font-family: textfont;
	animation: flicker 2s infinite;
}
header {
	opacity: 1;
	position: fixed;
	height: 50vh;
	display: flex;
	width: 100vw;
	align-items: center;
	flex-direction: column;
	background-image: url('/Set2/banner2_Maybe.jpg');
	background-size: cover;
	z-index: 4;
}

.headerName {
	position: absolute;
	display: flex;
	width: 55%;
	justify-content: space-around;
	bottom: 0%;
	margin-left: 40px;
	margin-bottom: 35px;
}

h1 {
	font-family: Rubik;
	font-size: 5.5em;
	color: #282c25;
	line-height: 1.1;
	letter-spacing: 35px;
	transform: scaleX(0.5);
}
.logo {
	width: 350px;
}
nav {
	opacity: 1;
	position: fixed;
	top: 50vh;
	/* background-image: url('/Set2/banner2_Maybe.jpg'); */
	background-image: url('/Set2/Background.jpg');
	background-size: cover;
	/* background-position: 0%; */
	display: flex;
	justify-content: space-around;
	height: 50vh;
	width: 100vw;
	align-items: center;
	z-index: 4;
}

.card {
	/* margin: 50px 0px; */
	z-index: 10;
	width: 172.96px;
	height: 233.5px;
	box-sizing: border-box;
	position: relative;
}

.card__wrapper {
	perspective: 600px;
	position: absolute;
	inset: 0;
}
.card__3d {
	transform: rotateY(var(--r-x)) rotateX(var(--r-y));
	position: absolute;
	inset: 0;
	transition: transform 0.5s ease-out; /* Adjust the duration and timing function as needed */
}
.card__image {
	width: 100%;
	height: 100%;
	position: relative;
}
.card__image img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	object-fit: fill; /* Ensures the image covers the area without distorting aspect ratio */
}

/* soft light */
.card__layer1 {
	position: absolute;
	inset: 0;
	z-index: 20;
	opacity: 0;
	mix-blend-mode: hard-light;
	clip-path: inset(0 0 1px 0 round 48px);
	background: radial-gradient(
		farthest-corner circle at var(--x) var(--y),
		rgba(255, 255, 255, 0.8) 1%,
		rgba(255, 255, 255, 0.65) 20%,
		rgba(255, 255, 255, 0) 90%
	);
}

.card__layer2 {
	display: none;
	width: 100%;
	height: 100%;
}
/* first crazy blend  */
.card__layer2.active {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	inset: 0;
	z-index: 30;
	mix-blend-mode: color-dodge;
	will-change: background;
	transition-property: opacity;
	clip-path: inset(0 0 1px 0 round 48px);

	background-blend-mode: hue, hue, hard-light, overlay;
	background: var(--pattern), var(--rainbow), var(--diagonal);
}
.card__layer2:hover {
	background-color: blue; /* Hover state */
}

nav.nonMain {
	top: 100vh;
}

header.nonMain {
	top: -50vh;
}
.outer {
	position: fixed;
	z-index: 90;
	top: 50px;
	right: 50px;
	margin: auto;
	width: 70px;
	cursor: pointer;
	opacity: 1;
	display: block;
}

.inner {
	width: inherit;
	text-align: center;
}

label {
	font-size: 0.8em;
	line-height: 4em;
	text-transform: uppercase;
	color: #fff;
	transition: all 0.3s ease-in;
	opacity: 0;
	cursor: pointer;
	font-family: textfont;
}

.inner:before,
.inner:after {
	position: absolute;
	content: '';
	height: 1px;
	width: inherit;
	background: #fff;
	left: 0;
	transition: all 0.3s ease-in;
}

.inner:before {
	top: 50%;
	transform: rotate(45deg);
}

.inner:after {
	bottom: 50%;
	transform: rotate(-45deg);
}

.outer:hover label {
	opacity: 1;
}

.outer:hover .inner:before,
.outer:hover .inner:after {
	transform: rotate(0);
}

.outer:hover .inner:before {
	top: 0;
}

.outer:hover .inner:after {
	bottom: 0;
}

.container {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	width: 100vw;
	justify-content: center;
	align-items: center;
	padding: 40px;
	font-family: textfont;
}

.container:not(:last-child) {
	margin-bottom: 100px;
}

.mainImage {
	width: 75%;
	height: 50%;
	position: relative;
	will-change: clip-path, filter;
	border-radius: 15px;
}

.mainImage img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	border-radius: 15px;
}

.section_1 h2 {
	font-family: subheader;
	margin-top: 40px;
}

.section_2 .text {
	max-width: 75%;
}

.section_3 {
	height: max-content;
	/* padding-bottom: 40px; */
}
.section_3 h3 {
	margin-bottom: 10px;
}

.section_3 hr {
	margin-bottom: 20px;
}

.section_4 {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(3, 1fr) repeat(2, 0fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}

.gridElem {
	display: flex;
	justify-content: center;
	align-items: center;
	justify-content: center;
	width: 10vw;
}

.div1 {
	grid-area: 1 / 1 / 2 / 2;
	min-width: 100%; /* Ensures the div takes up full width of the grid area */
	min-height: 100%;
}
.div2 {
	grid-area: 1 / 3 / 2 / 4;
	min-width: 100%; /* Ensures the div takes up full width of the grid area */
	min-height: 100%;
}
.div3 {
	grid-area: 1 / 5 / 2 / 6;
	min-width: 100%; /* Ensures the div takes up full width of the grid area */
	min-height: 100%;
}
.div4 {
	grid-area: 2 / 4 / 3 / 5;
	min-width: 100%; /* Ensures the div takes up full width of the grid area */
	min-height: 100%;
}
.div5 {
	grid-area: 2 / 2 / 3 / 3;
	min-width: 100%; /* Ensures the div takes up full width of the grid area */
	min-height: 100%;
}
.div6 {
	grid-area: 3 / 1 / 4 / 2;
	min-width: 100%; /* Ensures the div takes up full width of the grid area */
	min-height: 100%;
}
.div7 {
	grid-area: 3 / 3 / 4 / 4;
	min-width: 100%; /* Ensures the div takes up full width of the grid area */
	min-height: 100%;
}
.div8 {
	grid-area: 3 / 5 / 4 / 6;
	min-width: 100%; /* Ensures the div takes up full width of the grid area */
	min-height: 100%;
}
.div9 {
	grid-area: 2 / 3 / 3 / 4;
	min-width: 100%; /* Ensures the div takes up full width of the grid area */
	min-height: 100%;
}

.section_4 {
	/* border: 2px solid red; */
}

.section_4 .imageContainer {
	clip-path: ellipse(48% 33% at 49% 42.5%);
	width: 10vw;
}

.imageContainer img {
	object-fit: cover;
	width: 100%;
}

.section_5 h3 {
	/* font-size: 32px; */
	margin-bottom: 10px;
	text-decoration: underline;
	text-underline-offset: 10px;
	margin-bottom: 15px;
}

.section_5 .text {
	/* display: flex; */
	width: 75%;
	/* justify-content: center; */
	/* align-items: center; */
	/* flex-direction: column; */
}

.section_5 .text ul {
	list-style-type: none;
}

.section_5 .text:not(:last-child) {
	margin-bottom: 40px;
}

/* SOUNDS CSS */

.sounds {
	display: flex;
	width: 100vw;
	/* border: 2px solid red; */
	height: 100vh;
	justify-content: center;
	align-items: center;
	font-family: textfont;
}

.sounds.section_1 .sounds_leftSide {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50vw;
	height: 100%;
	/* border: 2px solid blue; */
	flex-direction: column;
}
.sounds_rightSide {
	width: 50vw;
}

.sounds.section_1 .sounds_rightSide .sounds_text p {
	text-align: end;
}

.sounds.section_2 .sounds_rightSide {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50vw;
	height: 100%;
	/* border: 2px solid coral; */
	flex-direction: column;
}
.sounds.section_2 .sounds_leftSide {
	width: 50vw;
}

.sounds.section_1 .sounds_leftSide img {
	/* border: 2px solid green; */
	position: absolute;
	width: 400px;
	object-fit: cover;
	display: block;
	margin-bottom: 20px;
}
.sounds.section_2 .sounds_rightSide img {
	/* border: 2px solid green; */
	position: absolute;
	width: 400px;
	object-fit: cover;
	display: block;
	margin-bottom: 20px;
}
.soundsHTML {
	height: max-content;
}
.sounds.section_4 {
	font-family: textfont;
}
.sounds.section_5 {
	font-family: textfont;
}
.carouselNav3 {
	position: absolute;
	bottom: -5em;
	left: 30px;
}
.sounds_leftSide #im0 {
	position: relative;
	opacity: 1;
}
.sounds_leftSide #im1 {
	/* position: relative; */
	opacity: 0;
}
.sounds_leftSide #im2 {
	/* position: relative; */
	opacity: 0;
}
.sounds_leftSide #im3 {
	/* position: relative; */
	opacity: 0;
}
.sounds.section_4 .sounds_leftSide {
	width: 50vw;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-content: center;
}
.sounds.section_6 .sounds_leftSide {
	width: 50vw;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-content: center;
}
.sounds.section_5 .sounds_rightSide {
	width: 50vw;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-content: center;
}
.sounds.section_5 .sounds_leftSide {
	width: 50vw;
}
.sounds.section_5 .sounds_rightSide img {
	width: 400px;
	object-fit: cover;
	display: block;
}

.sounds.section_4 .sounds_leftSide img {
	width: 400px;
	object-fit: cover;
	display: block;
}
.sounds.section_6 .sounds_leftSide img {
	width: 400px;
	object-fit: cover;
	display: block;
}

.sounds_rightSide #im02 {
	position: relative;
	opacity: 1;
}
.sounds_rightSide #im12 {
	/* position: relative; */
	opacity: 0;
}
.sounds_rightSide #im22 {
	/* position: relative; */
	opacity: 0;
}
.sounds_rightSide #im32 {
	/* position: relative; */
	opacity: 0;
}

.sounds_rightSide .sounds_text {
	max-width: 75%;
	margin: auto;
}
.sounds_leftSide .sounds_text {
	max-width: 75%;
	margin: auto;
}
.sounds.section_7 {
	width: 80dvw;
	margin: auto;
	flex-direction: column;
}
.sounds.section_7 iframe {
	width: 100%;
	height: 100%;
	background-color: black;
}

#caption {
	font-size: 12px;
	width: 400px;
}

.sounds_carousel {
	margin: 40px 0;
	position: relative;
	width: 210px;
	height: 140px;
	margin: 80px auto;
	perspective: 1000px;
}

#carouselNav img {
	width: 30px;
	margin-left: 20px;
	margin-right: 20px;
	cursor: pointer;
}

.carousel {
	width: 100%;
	height: 100%;
	position: absolute;
	transform: translateZ(-288px);
	transform-style: preserve-3d;
	transition: transform 1s;
}
.carousel__cell {
	position: absolute;
	width: 190px;
	height: 150px;
	left: 10px;
	top: 10px;
	line-height: 116px;
	font-size: 80px;
	font-weight: bold;
	color: white;
	text-align: center;
	transition: transform 1s, opacity 1s;
	overflow: hidden;
}

.carousel__cell img {
	width: 190px;
	height: 150px;
	object-fit: cover;
}

.carousel__cell:nth-child(1) {
	transform: rotateY(0deg) translateZ(288px);
}
.carousel__cell:nth-child(2) {
	transform: rotateY(90deg) translateZ(288px);
}
.carousel__cell:nth-child(3) {
	transform: rotateY(180deg) translateZ(288px);
}
.carousel__cell:nth-child(4) {
	transform: rotateY(270deg) translateZ(288px);
}

.cell2:nth-child(1) {
	transform: rotateY(120deg) translateZ(288px);
}
.cell2:nth-child(2) {
	transform: rotateY(240deg) translateZ(288px);
}
.cell2:nth-child(3) {
	transform: rotateY(360deg) translateZ(288px);
}
.cell2:nth-child(4) {
	transform: rotateY(360deg) translateZ(288px);
}

.cell3:nth-child(1) {
	transform: rotateY(72deg) translateZ(288px);
}
.cell3:nth-child(2) {
	transform: rotateY(144deg) translateZ(288px);
}
.cell3:nth-child(3) {
	transform: rotateY(216deg) translateZ(288px);
}
.cell3:nth-child(4) {
	transform: rotateY(288deg) translateZ(288px);
}
.cell3:nth-child(5) {
	transform: rotateY(360deg) translateZ(288px);
}

#carouselNav {
	width: max-content;
	margin: auto;
}

#cta {
	cursor: pointer;
}

.fader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: black;
	z-index: 3;
	display: block;
	opacity: 1;
}

.contact.container.section_1 {
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow-x: hidden;
	padding: 0;
	/* From https://css.glass */
}
.glass {
	position: absolute;
	top: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.045);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(2.6px);
	-webkit-backdrop-filter: blur(2.6px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}
.contact.container.section_1 .text {
	position: absolute;
	white-space: nowrap;
	font-size: 2em;
	animation: scrollText 2s linear infinite;
}

.contact.innerContainer {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 60vw;
	height: 60vh;
	background: rgba(0, 0, 0, 0.347);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 40px;
}

.contact.innerContainer h3 {
	width: max-content;
	/* margin: auto; */
}
.contact.innerContainer h4 {
	font-size: 20px;
	text-decoration: underline;
	text-underline-offset: 7px;
	margin-bottom: 20px;
	margin-top: 40px;
}

.contactInfo {
	width: 50%;
	/* border: 2px solid blue; */
}

.contactNav {
	display: flex;
	width: 20vw;
	gap: 10px;
	margin-top: 50px;
}
.contactNav div {
	display: flex;
	justify-content: center;
	align-items: center;
}
.contactNav img {
	width: 40px;
}

/* Shows html */
.songkickContainer {
	position: absolute;
	width: 50vw;
	left: 50%;
	transform: translate(-50%, 0%);
}
.performance {
	width: 75vw;
	height: 75vh;
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin-bottom: 75px;
}
.performance video {
	max-width: 75vw;
	height: 100%;
}

.performance iframe {
	width: 100%;
	height: 100%;
}

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

.contactInfo div {
	width: 20vw;
}

/* Mixed Media */
.mixedmedia.container.section_1 {
	/* border: 2px solid yellow; */
}

.mixedmedia.innerNavigation {
}

.mmDefault {
	border: 20px solid blue;
}
.mmDefault2 {
	border: 20px solid red;
}
.mm_noScroll {
	overflow: hidden;
}

.mixedmedia.container {
	position: relative;
	overflow: hidden;
	/* min-height: 100vh; */
	/* overflow-y: auto; */
	box-sizing: border-box;
	width: 100vw;
}
.menu {
	position: relative;
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	overflow: hidden;
	opacity: 1;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	counter-reset: menucounter;
}

.menu2 {
	position: relative;
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	overflow: hidden;
	opacity: 1;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	counter-reset: menucounter2;
}

.menu__item {
	flex: none;
	display: flex;
	justify-content: center;
	position: relative;
	padding: 0 15vw;
}

.menu__item::before {
	counter-increment: menucounter;
	content: counters(menucounter, '.', decimal-leading-zero);
	position: absolute;
	left: calc(15vw - 2rem);
	color: var(--color-menu-deco);
	top: 0%;
	height: 60%;
	display: flex;
	align-items: center;
	line-height: 1;
	font-weight: bold;
	opacity: 0;
	transform: translateX(-1rem);
	transition: transform 0.3s, opacity 0.3s;
}

.menu__item:hover::before {
	color: var(--color-menu-deco);
	opacity: 1;
	transform: translateX(0);
}

.menu__item2 {
	flex: none;
	display: flex;
	justify-content: center;
	position: relative;
	padding: 0 15vw;
}

.menu__item2::before {
	counter-increment: menucounter2;
	content: counters(menucounter2, '.', decimal-leading-zero);
	position: absolute;
	left: calc(15vw - 2rem);
	color: var(--color-menu-deco);
	top: 0%;
	height: 60%;
	display: flex;
	align-items: center;
	line-height: 1;
	font-weight: bold;
	opacity: 0;
	transform: translateX(-1rem);
	transition: transform 0.3s, opacity 0.3s;
}

.menu__item2:hover::before {
	color: var(--color-menu-deco);
	opacity: 1;
	transform: translateX(0);
}

.menu__item-text {
	position: relative;
	cursor: pointer;
	display: block;
	overflow: hidden;
	line-height: 1;
	/* font-size: clamp(2rem, 6vw, 6rem); */
	font-size: 4vw;
}

.menu__item-textinner {
	display: block;
	/* font-family: tenez, sans-serif; */
	/* font-weight: 400; */
	text-transform: uppercase;
	white-space: nowrap;
	color: var(--color-menu);
}

.js .menu__item-textinner {
	transform: translateY(100%);
}

.menu__item:hover .menu__item-textinner {
	color: var(--color-menu-hover);
}

/* .menu__item-sub {
	text-transform: uppercase;
	font-weight: bold;
	white-space: nowrap;
	align-items: center;
	position: relative;
	margin-left: 2rem;
	padding-left: 3rem;
	color: red;
	opacity: 0;
	transform: translateX(-1rem);
	transition: transform 0.3s, opacity 0.3s;
	mix-blend-mode: difference;
}

.menu__item:hover .menu__item-sub {
	color: red;
	opacity: 1;
	transform: translateX(0);
}

.menu__item-sub::before {
	content: '';
	position: absolute;
	left: 0;
	top: 15%;
	width: 1px;
	height: 70%;
	background: currentColor;
	transform-origin: 0 100%;
	transform: rotate(22.5deg) scale3d(1, 0, 1);
	transition: transform 0.3s;
}

.menu__item:hover .menu__item-sub::before {
	transform: rotate(22.5deg) scale3d(1, 1, 1);
} */

.hover-reveal {
	position: absolute;
	z-index: -1;
	width: 200px;
	height: 280px;
	top: 0;
	left: 0;
	pointer-events: none;
	opacity: 0;
	will-change: transform, filter;
}

.hover-reveal__inner {
	overflow: hidden;
}

.hover-reveal__inner,
.hover-reveal__img {
	width: 100%;
	height: 100%;
	position: relative;
}

.hover-reveal__img {
	background-size: cover;
	background-position: 50% 50%;
}
a {
	text-decoration: none;
	color: pink;
	outline: none;
	cursor: pointer;
}

a:hover,
a:focus {
	color: pink;
	outline: none;
}

.cursor {
	display: none;
}

.credits {
	align-self: flex-start;
	padding: 5rem 0 0 0;
}

.credits a {
	text-decoration: underline;
}

.mm__transition {
	position: fixed;
	top: -200vh;
	width: 100vw;
	z-index: 3;
}

.p1__header {
	margin-top: 2em;
	text-align: start;
	font-family: subheader;
}

.verticalLine {
	display: inline-block; /* Ensure span respects width and height */
	width: 5px; /* Adjust the thickness of the line */
	height: 2.75em;
	background-color: white; /* Set the color of the line */
	vertical-align: middle;
	margin-left: 0.5em;
	margin-right: 0.5em;
}

.p1__title {
	font-family: gara;
	font-size: 32px;
	align-items: center;
	display: flex;
	justify-content: center;
	line-height: 1em;
	align-items: end;
}

.p1__elevator {
	align-self: center;
	font-family: rubik;
	display: inline-block;
	text-align: start;
	color: #8b0000;
	font-style: bold;
	max-width: 500px;
}

.p1__container {
	/* border: 2px solid green; */
	padding-top: 3.5em;
	max-width: 70vw;
	margin: auto;
}

.p1__introduction-container {
	text-align: start;
	margin-bottom: 2em;
	margin-top: 7.5em;
	font-family: textfont;
	/* margin: 7.5em 0; */
}
.glow {
	/* font-size: 80px; */
	color: #fff;
	-webkit-animation: glow 2s ease-in-out infinite alternate;
	-moz-animation: glow 2s ease-in-out infinite alternate;
	animation: glow 2s ease-in-out infinite alternate;
}

.p1__introduction {
	font-size: 28px;
	margin-bottom: 0.25em;
	text-decoration: underline;
	text-underline-offset: 0.25em;
	font-family: subheader;
}

.p1__image-1 {
	width: 100%;
	border-radius: 5px;
	margin-bottom: 1em;
}
.p1__section {
	margin-bottom: 7.5em;
	font-family: textheader;
}
.p1__section p {
	font-family: textfont;
}
.p1__section.s1 {
	font-family: textfont;
}

.p1__flexContainer-s1 {
	margin-top: 5em;
	display: flex;
	font-family: textfont;
}

.p1__portion-s1 {
	position: relative;
	/* display: flex; */
	/* justify-content: center; */
	/* align-items: center; */
	/* border: 2px solid white; */
	width: 35%;
}

.p1__image-2 {
	display: block;
	border-radius: 5px;
	width: 90%;
	margin: auto;
}
.p1__image-3 {
	display: block;
	border-radius: 5px;
	width: 90%;
	margin: auto;
	/* width: 25%; */
}
.p1__portion-s1 p {
	position: absolute;
	bottom: 0.75em;
	width: 90%;
	right: 0.75em;
	/* margin: auto; */
	text-align: end;
}

.p1__splitFlex {
	margin: 15em 0;
	display: flex;
	width: 100%;
	font-family: textfont;
	/* border: 2px solid white; */
}
.p1__section.s2 {
	font-family: textfont;
}

.p1__splitFlex.last {
	margin-bottom: 10em;
}

.p1__splitSection {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
}
.p1__video-1 {
	width: 100%;
}
.p1__video-3 {
	width: 100%;
	max-height: 50vh;
	object-fit: cover;
}
.p1__video-2 {
	width: 100%;
	max-height: 50vh;
	object-fit: cover;
}

.p1__video-4 {
	width: 100%;
	max-height: 75vh;
	object-fit: cover;
}
.p1__splitSection p {
	max-width: 80%;
}
.p1__performanceHeader {
	margin: 1.5em 0;
}

.right {
	text-align: end;
}

.p1__navBack {
	position: fixed;
	top: 5em;
	left: 5em;
	width: 3rem;
	cursor: pointer;
}

.p1__navBack2 {
	position: fixed;
	top: 5em;
	left: 5em;
	width: 3rem;
	cursor: pointer;
}

.p2__container {
	padding-top: 3.5em;
	max-width: 70vw;
	/* border: 3px solid green; */
	margin: auto;
}

.p2__section {
	margin: auto;
	/* border: 2px solid red; */
	margin: 7.5em 0;
	font-family: textfont;
}
.p2__s2-header {
	font-size: 28px;
	margin-bottom: 0.25em;
	text-decoration: underline;
	text-underline-offset: 0.25em;
	font-family: subheader;
}

.p2__tripleFlex {
	display: flex;
	margin-top: 3.5em;
	justify-content: space-around;
	width: 100%;
}
.p2__tripleSection {
	width: 33%;
	height: 66vh;
	overflow: hidden;
}
.p2__tripleSection img {
	border-radius: 10px;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.p2__s3-slideShow {
	position: relative;
	border-radius: 20px;
	border: 1px solid grey;
	width: 100%;
	height: 75vh;
}
.p2__slideShow {
	position: absolute;
	width: 5em;
	cursor: pointer;
}
.p2__slideShow.Left {
	top: 50%;
	transform: translate(0%, -50%);
}
.p2__slideShow.Right {
	top: 50%;
	right: 0%;
	transform: translate(0%, -50%);
}

.p2__slideImage {
	display: block;
	margin: auto;
	width: 15em;
	height: 20em;
	border-radius: 10px;
	object-fit: cover;
}

.p2__slideShowSlide {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
	opacity: 0;
}
.p2__slideShowSlide.active {
	display: block;
	opacity: 1;
	/* width: 100%; */
	/* height: 75vh; */
}

.p2__slideCaption {
	margin-top: 1em;
	max-width: 20em;
	text-align: center;
}

.p2__partipants p {
	/* display: flex; */
	margin: 0;
	font-size: 12px;
	/* gap: 3em; */
}

.p2__slideShowSlide {
	/* border: 2px solid red; */
}

.p2__bottom {
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
	margin-top: 2em;
}

.p2__splitBlock {
	display: flex;
	width: 100%;
	justify-content: space-between;
	height: 100%;
}

.p2__splitImage1 {
	width: 59.5%;
	object-fit: cover;
	border-radius: 10px;
}

.p2__splitImage2 {
	width: 40%;
	object-fit: cover;
	border-radius: 10px;
}

.p2__performance {
	width: 100%;
	height: 90vh;
	object-fit: cover;
}
.p2__section.s5 h3 {
	font-family: subheader;
}

.p3__splitContainer {
	/* border: 2px solid blue; */
	width: 100%;
	height: 65vh;
	display: flex;
	justify-content: space-between;
}

.p3__splitImage1 {
	border: 1px solid grey;
	border-radius: 15px;
	width: 58.5%;
	height: 100%;
	object-fit: cover;
}

.p3__splitImage2 {
	border: 1px solid grey;
	border-radius: 15px;
	width: 40%;
	height: 100%;
	object-fit: cover;
}

.p3__section {
	width: 100%;
	height: 80vh;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 3.5em 0;
	flex-direction: column;
}
.btn.style-1 {
	margin-top: 2em;
	align-self: flex-start;
	margin-bottom: 20px;
}
.btn.style-1:last-child {
	margin-bottom: 0px;
}

.btn.style-1 i {
	content: '';
	width: 100%;
	height: 100%;
	transition: all 0.5s var(--c);
	background: hsl(var(--primary));
}

.btn.style-1 i:nth-child(1) {
	transition-delay: 0.02s;
}
.btn.style-1 i:nth-child(2) {
	transition-delay: 0.04s;
}
.btn.style-1 i:nth-child(3) {
	transition-delay: 0.06s;
}
.btn.style-1 i:nth-child(4) {
	transition-delay: 0.08s;
}
.btn.style-1 i:nth-child(5) {
	transition-delay: 0.1s;
}
.btn.style-1 i:nth-child(6) {
	transition-delay: 0.12s;
}
.btn.style-1 i:nth-child(7) {
	transition-delay: 0.14s;
}
.btn.style-1 i:nth-child(8) {
	transition-delay: 0.16s;
}
.btn.style-1 i:nth-child(9) {
	transition-delay: 0.18s;
}
.btn.style-1 i:nth-child(10) {
	transition-delay: 0.2s;
}

.btn {
	--w: 300px;
	--h: 45px;
	position: relative;
	display: flex;
	width: var(--w);
	height: var(--h);
	border: 1px solid hsl(var(--primary));
	cursor: pointer;
}
.btnSpan {
	position: absolute;
	width: 100%;
	font-size: 14px;
	font-weight: 800;
	line-height: var(--h);
	letter-spacing: 4px;
	text-align: center;
	text-transform: uppercase;
	color: hsl(var(--primary));
	transition: all 0.4s var(--c);
	z-index: 100;
	font-family: subheader;
}
.style-1 {
	flex-direction: column;
}
.style-1 i {
	transform-origin: center left;
	transform: scaleX(0);
}
.style-1:hover i {
	transform: scaleX(1);
}
.btn.style-1:hover span {
	color: hsl(var(--secondary));
	transition-delay: 0.4s;
}
.p3__section.s2 {
	margin-top: 3.5em;
	align-items: start;
	height: max-content;
	padding-bottom: 5em;
	font-family: textfont;
}
.p3__section.s1 {
	margin-bottom: 0;
}
.p4__splitSection {
	/* border: 2px solid blue; */
	width: 100%;
	height: 65vh;
	display: flex;
	justify-content: space-between;
}
.p4__splitImage1 {
	border: 1px solid grey;
	border-radius: 15px;
	width: 58.5%;
	height: 100%;
	object-fit: cover;
}

.p4__splitImage2 {
	border: 1px solid grey;
	border-radius: 15px;
	width: 40%;
	height: 100%;
	object-fit: cover;
}
.p4__section {
	width: 100%;
	height: max-content;
	margin: 7.5em 0;
	font-family: textfont;
}
.p4__section.s2 {
	margin-bottom: 2em;
}

.performance.p4 {
	max-width: 100%;
	padding-bottom: 5em;
}
.performance.p4 h3 {
	/* margin-bottom: 0.5em; */
	font-family: subheader;
}
.p5__splitImage1 {
	border: 1px solid grey;
	border-radius: 15px;
	width: 31%;
	height: 100%;
	object-fit: cover;
}

.p5__splitImage2 {
	border: 1px solid grey;
	border-radius: 15px;
	width: 31%;
	height: 100%;
	object-fit: cover;
}

.p5__splitImage3 {
	border: 1px solid grey;
	border-radius: 15px;
	width: 31%;
	height: 100%;
	object-fit: cover;
}
.performance.p4.project5 {
	padding-bottom: 0;
}

.fullWidthImage {
	border-radius: 1px solid grey;
	border-radius: 15px;
	width: 100%;
	object-fit: cover;
}
.p7__performance {
	height: 100vh;
}
.p7__performance iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p8__section {
	font-family: textfont;
}

.p8__section.s1 {
	width: 100%;
	display: grid;
	cursor: default;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(3, 1fr);
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}
.p8__section.s2 {
	font-family: textfont;
}
.p8__gridItem {
	display: flex;
	justify-content: center;
	align-items: center;
}
.p8__gridItem img {
	height: 30vh;
	width: 30vh;
	/* width: 100%; */
	border: 2px solid grey;
	border-radius: 15px;
}
.p8__section.s1 .last {
	grid-column: span 3;
}
.p8__gridItem iframe {
	height: 30vh;
	border-radius: 15px;
}
.p8.s3.box {
	height: 10em;
	width: 100%;
}

.p8.s3.box img {
	display: block;
	height: 10em;
	width: 10em;
	margin: auto;
}
/* .p */
.p8__section {
	margin-bottom: 5em;
}
.p8__section.s1 {
	margin-top: 5em;
}
.p8__section.modal {
	position: fixed;
	top: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	z-index: -10000;
}

/* .p8__section.modal img {
	max-height: 70vh;
	/* height: 70vh; */
/* object-fit: ; */
/* }
.p8__section.modal.modal-horizontal img {
	max-width: 70vw;
} */
.modal-horizontal {
	max-width: 70vw;
}

.modal-vertical {
	max-height: 70vh;
}
.p8__gridItem {
	/* cursor: pointer; */
}

.modal-open {
	overflow: hidden;
}
.p9__section {
	font-family: textfont;
}

.p9__section.s1 {
	margin-top: 5em;
}
.p9__splitContainer {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 1%;
	align-items: center;
	margin-top: 2em;
}

.p9__split {
	width: 49.5%;
	height: 50vh;
}
.p9__split img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	border: 1px solid grey;
}
.p9__performance {
	height: 95vh;
}
.p9__performance iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p9__section.s2 {
	margin-top: 3em;
	padding-bottom: 3em;
}
/* .p10__main {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(5, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
} */
.p10__section {
	font-family: textfont;
}
.p10__section.s3 {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(5, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}
.grid--asym {
	--columns: 8;
}

.p10__gridItem {
	width: 100%;
	height: 20vh;
	position: relative;
	will-change: transform, opacity;
}
.pos-1 {
	grid-area: 5 / 1 / 6 / 2;
}
.pos-2 {
	grid-area: 5 / 5 / 6 / 6;
}
.pos-3 {
	grid-area: 1 / 1 / 2 / 2;
}
.pos-4 {
	grid-area: 1 / 3 / 2 / 4;
}
.pos-5 {
	grid-area: 1 / 5 / 2 / 6;
}
.pos-6 {
	grid-area: 3 / 2 / 4 / 3;
}
.pos-7 {
	grid-area: 3 / 4 / 4 / 5;
}
.pos-8 {
	grid-area: 5 / 3 / 6 / 4;
}

.pos-north {
	grid-row: 1;
}
.pos-south {
	grid-row: var(--rows);
}
.pos-west {
	grid-column: 1;
}
.pos-east {
	grid-column: var(--columns);
}
.p10__gridImage {
	width: 100%;
	height: 100%;
	border: 1px solid grey;
	background-size: cover;
	background-position: 50% 50%;
	pointer-events: auto;
	filter: brightness(0.6);
	cursor: pointer;
	will-change: transform;
}

.fullscreen {
	position: fixed;
	width: calc(100% + 8px);
	height: calc(100% + 8px);
	top: -4px;
	left: -4px;
	pointer-events: none;
}
.p10__section.s2 iframe {
	margin: auto;
	width: 85%;
	display: block;
	margin-top: 4em;
}
.p10__section.s3 {
	margin-top: 5em;
}
.p10__section.s1 {
	margin-top: 5em;
}

.p10__section.s4 {
	height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.p10__performance {
	height: 100%;
}
.p10__performanceHeader {
	/* height: 2em; */
	margin-top: 2em;
}
.p10__section.s4 iframe {
	display: block;
	/* position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover; */
	flex-grow: 1;
}
.p11__section {
	font-family: textfont;
}

.p11__section.s2 {
	width: 60%;
	max-width: 800px;
	margin: auto;
	min-width: 300px;
}

.p11__carousel {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 400px;
	/* background-color: red;
	border-color: white;
	border: 2px solid #ccc; */
	margin-bottom: 10px;
	position: relative;
}
.p11__carousel img {
	position: absolute;
	max-width: 100%;
	max-height: 100%;
}

.p11__thumbnails {
	display: flex;
	justify-content: center;
}

.p11__thumbnails img {
	width: 80px;
	height: 80px;
	margin: 0 5px;
	cursor: pointer;
	transition: transform 0.3s;
}

.p11__thumbnails img:hover {
	transform: scale(1.1);
}
.p11__mainImage {
	opacity: 0;
}

.p11__mainImage.active {
	opacity: 1;
}

.p11__section.s1 {
	margin-top: 5em;
}
.p11__section.s2 {
	margin-top: 3em;
	padding-bottom: 5em;
}

.video__section {
	margin-top: 5em;
}

.video__section.s1 {
	height: 60vh;
	width: 100%;
}

.video__splitContainer {
	/* border: 1px solid blue; */
	display: flex;
	justify-content: center;
	width: 100%;
	height: calc(100% - var(--utility-header-height));
}

.video__split1 {
	display: block;
	border-radius: 20px;
	border: 1px solid grey;
	width: 40%;
	height: 100%;
	object-fit: cover;
}
.video__split2 {
	font-family: textfont;
	width: 60%;
	display: flex;
	gap: 3em;
	justify-content: space-between;
	flex-direction: column;
}

.video__split2 div {
	/* border: 2px solid blue; */
	height: 50%;
}

.video__split2 div:first-child {
	padding: 3em;
	padding-top: 1em;
}

.video__split2 div:last-child {
	display: flex;
	flex-direction: column;
	justify-content: end;
	padding: 3em;
	padding-bottom: 1em;
}
.video__section.s2 {
	height: 50vh;
	width: 100%;
}

.video__section.s3 {
	height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	/* border: 2px solid blue; */
}
.p5Canvas {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.video__section.s3 iframe {
	display: block;
	flex-grow: 1;
}
.video__section.s4 {
	display: flex;
	flex-direction: column;
	height: max-content;
	width: 100%;
}
.video__section.s4 img {
	border-radius: 20px;
	width: 100%;
	height: 65%;
	border: 1px solid grey;
}

.video__section.scrollableText.s4 {
	margin-top: 2em;
	margin-bottom: 2em;
	font-family: textfont;
	/* border: 2px solid blue; */
	/* overflow-y: auto; */
	/* height: 300px; */
}
#p5-container {
	position: relative;
}
#p5-container2 {
	position: relative;
}
#p5-container3 {
	position: relative;
}

.video__section.s5 {
	height: 50vh;
	width: 100%;
}

.video__section.s6 {
}
.video__section.centerContainer {
	font-family: textfont;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	height: max-content;
	margin-top: 0;
	display: flex;
	padding: 2em;
	justify-content: center;
	/* align-items: center; */
}
#centerContainer {
	padding: 0;
}
.video__section.centerImages {
	width: 50%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 1%;
	margin-top: 0;
}

.centerItem1 {
	flex: 1 1 25%;
	height: 100%;
	padding: 2em;
}
.centerItem1:last-of-type {
	text-align: end;
}
.centerItem2 {
	flex: 1 1 60%;
}

.video__section.centerImages div {
	width: 100%;
	height: 49.5%;
	/* border: 2px solid blue; */
}

.video__section img {
	border-radius: 20px;
	border: 1px solid grey;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.video__section.s6 {
	margin-top: 15em;
}

.video__section.s7 {
	height: 50vh;
	width: 100%;
}
/* .video__performanceHeader1 {
	margin-top: 2em;
} */
.video__section.s8 {
	height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	/* border: 2px solid blue; */
}
.video__section.s8 iframe {
	display: block;
	flex-grow: 1;
}

.video__section.s9 {
	font-family: textfont;
	display: flex;
	justify-content: space-around;
	align-items: start;
	margin-top: 2em;
	padding-bottom: 2em;
}

.video__section.s10 {
	display: flex;
	margin-top: 0;
	margin-bottom: 0;
	justify-content: center;
	flex-direction: column;
}

.video.s11 {
	font-family: textfont;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-bottom: 2em;
}

.vs.s13 {
	border: 2px solid red;
}
.vs.s13:first-of-type {
	border: 2px solid blue;
}
#undeciphered {
	/* width: 100%; */
	object-fit: cover;
}

.video__test {
	width: 49.5%;
}

.utility__split .fullText {
	width: 100%;
	font-family: sans;
}

#mc {
	height: max-content;
}
#p5-container4 {
	position: relative;
}
.video__section.s13 {
	height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
}
.video__section.s13 iframe {
	display: block;
	flex-grow: 1;
}
.testContainer {
	margin-top: 2em;
	position: relative;
	display: inline-block;
	border: 1px solid grey;
	border-radius: 20px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	height: 70vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.testText {
	font-family: textfont;
	cursor: pointer;
	position: relative;
	display: inline-block;
	overflow: hidden;
	height: 504px;
}
.glitch {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	color: #0f0;
	text-shadow: 2px 0 red, -2px 0 blue;
	opacity: 0.8;
	animation: glitch 1s infinite;
}
@keyframes glitch {
	0% {
		clip: rect(0, 100%, 0, 0);
	}
	10% {
		clip: rect(0, 100%, 10%, 0);
	}
	20% {
		clip: rect(20%, 100%, 10%, 0);
	}
	30% {
		clip: rect(10%, 100%, 30%, 0);
	}
	40% {
		clip: rect(0, 100%, 20%, 0);
	}
	50% {
		clip: rect(20%, 100%, 30%, 0);
	}
	60% {
		clip: rect(30%, 100%, 30%, 0);
	}
	70% {
		clip: rect(20%, 100%, 10%, 0);
	}
	80% {
		clip: rect(30%, 100%, 20%, 0);
	}
	90% {
		clip: rect(10%, 100%, 20%, 0);
	}
	100% {
		clip: rect(0, 100%, 10%, 0);
	}
}
.video__section.s14 {
	display: flex;
	flex-direction: column;
	height: max-content;
	width: 100%;
	font-family: sans;
}
.video__section.s14 img {
	border-radius: 20px;
	width: 30%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
	border: 1px solid grey;
}
.video__section.s15 {
	margin-top: 1em;
	height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
}
.video__section.s15 iframe {
	background-color: black;
	display: block;
	flex-grow: 1;
}
.sounds.section_3 {
	flex-direction: column;
	width: 70vw;
	margin-left: auto;
	margin-right: auto;
	margin-top: 25em;
	height: max-content;
	margin-bottom: 10em;
	padding-bottom: 10em;
}
.sounds_heroContainer {
	width: 100%;
}
.sounds_heroContainer img {
	width: 100%;
	object-fit: cover;
}

.collaborators {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	text-align: center;
	margin: 2rem 0;
	margin-top: 5rem;
}

@media (max-width: 932px) {
	/* .video__section.s15 iframe {
		height: 100%;
	} */
	nav {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(2, 1fr);
		grid-column-gap: 5px;
		grid-row-gap: 5px;
	}
	.card {
		width: auto;
		height: 189px;
	}
	header {
		background-size: auto;
		background-position: center;
	}
	.logo {
		width: 250px;
		margin-top: 50px;
	}
	.headerName {
		width: 100vw;
		margin-bottom: 140px;
		margin-left: 25px;
	}
	.headerName h1 {
		font-size: 4em;
		width: max-content;
		letter-spacing: 17px;
	}
	.songkickContainer {
		width: 100%;
	}
	.shows.container.section_1 {
		min-height: 75vh;
		margin-bottom: 0px;
	}
	.performance {
		height: auto;
		margin-bottom: 100px;
	}

	.container.section_1 {
		margin-top: 120px;
		justify-content: start;
		margin-bottom: 0;
		min-height: auto;
	}
	.container.section_1 h2 {
		text-align: center;
	}
	.container.section_2 {
		text-align: center;
		margin-bottom: 0;
	}
	.container.section_2 .text {
		max-width: 100%;
	}
	.mainImage {
		width: 100%;
	}
	.awardsContainer ul {
		list-style-position: inside;
		font-size: 14px;
	}
	.text ul {
		font-size: 14px;
	}
	.container.section_3 .text {
		font-size: 14px;
	}

	.container.section_2 .text {
		font-size: 14px;
	}
	.container.section_4 {
		width: 100dvw;
		min-height: auto;
	}
	.section_5 .text {
		width: 100%;
	}
	.container.section_4 p {
		font-size: 14px;
	}
	.container.section_5 p {
		font-size: 14px;
	}
	.container.section_5 {
		padding-bottom: 150px;
		margin-bottom: 200px;
	}
	.sounds {
		display: block;
		height: max-content;
		margin-bottom: 100px;
		max-width: 100vw;
		overflow-x: hidden;
	}
	.sounds.section_1 .sounds_leftSide img {
		width: 200px;
	}
	#caption {
		width: max-content;
	}
	.sounds_leftSide {
		height: max-content !important;
	}
	.sounds.section_1 .sounds_leftSide {
		display: none !important;
		margin-left: auto;
		margin-right: auto;
	}
	.sounds.section_1 .sounds_rightSide .sounds_text p {
		text-align: center;
	}
	.sounds_rightSide .sounds_text {
		max-width: 100%;
	}
	.sounds_rightSide {
		width: 70vw;
		margin-left: auto;
		margin-right: auto;
	}
	.sounds_text {
		margin-top: 80px !important;
	}
	.sounds.section_2 .sounds_leftSide {
		width: 70vw;
		margin-left: auto;
		margin-right: auto;
	}
	.sounds.section_2 .sounds_leftSide .sounds_text {
		margin-top: 80px !important;
		text-align: center;
		max-width: 100%;
	}
	.sounds.section_2 .sounds_rightSide {
		display: none;
	}
	.sounds.section_2 {
		padding-bottom: 150px;
	}
	.menu__item-text {
		font-size: 6vw;
	}
	.menu {
		gap: 1em;
	}
	.p1__header {
		margin-top: 5em;
	}
	.p1__title {
		font-size: 22px;
		font-family: subheader;
	}
	.p1__introduction {
		margin-bottom: 1em;
	}
	.p1__introduction-container {
		margin-top: 3em;
		font-size: 14px;
	}
	.p1__section {
		font-family: textfont;
		font-size: 14px;
	}
	.p1__image-1 {
		margin-bottom: 4em;
	}
	.p1__flexContainer-s1 {
		margin-top: 0;
		flex-direction: column;
	}
	.p1__portion-s1 {
		width: 100%;
	}
	.p1__portion-s1 p {
		padding-top: 1em;
		bottom: auto;
		text-align: start;
	}
	.p1__splitFlex {
		flex-direction: column;
		margin: 20em 0;
		margin-bottom: 5em;
	}
	.p1__splitSection {
		width: 100%;
	}
	.p1__splitFlex.second {
		margin: 0;
		gap: 2em;
	}
	.p1__splitFlex.last {
		margin: 5em 0;
	}
	.p1__navBack {
		left: 3em;
		z-index: 2;
		top: 4em;
	}
	.p2__section.s1 p {
		font-size: 14px;
	}
	.p2__s2-header {
		font-family: subheader;
		font-size: 28px !important;
	}
	.p2__tripleFlex {
		flex-direction: column;
		gap: 1em;
	}
	.p2__tripleSection {
		width: 100%;
		height: 33vh;
	}
	.p2__section.s3 .p2__s2-header {
		margin-bottom: 0.5em;
	}
	.p2__s3-slideShow {
		height: 60vh;
	}
	.p2__slideShow {
		width: 1.75em;
	}
	.performanceHeader {
		font-family: subheader !important;
	}
	.p2__performance {
		width: 100%;
		height: 25vh;
	}
	.p2__section.s5 {
		margin-bottom: 5em;
		padding-bottom: 5em;
	}
	.p3__splitContainer {
		flex-direction: column;
		gap: 1em;
	}
	.p3__splitImage1 {
		width: 100%;
	}
	.p3__splitImage2 {
		width: 100%;
	}
	.p3__section.s2 {
		font-family: textfont;
		font-size: 14px;
	}
	.p4__section.s1 {
		font-family: textfont;
		font-size: 14px;
		margin-bottom: 0;
	}
	.p4__section.s2 {
		margin-top: 5em;
		margin-bottom: 5em;
	}
	.p4__splitSection {
		flex-direction: column;
		gap: 1em;
	}
	.p4__splitImage1 {
		width: 100%;
	}
	.p4__splitImage2 {
		width: 100%;
	}
	.p5__splitImage1 {
		width: 100%;
	}
	.p5__splitImage2 {
		width: 100%;
	}
	.p5__splitImage3 {
		width: 100%;
	}
	.p4__section.s2 {
		height: max-content;
	}
	.performance.p4.project5 {
		margin-top: 40em;
		padding-bottom: 0;
	}
	.p7__performance {
		padding-bottom: 6em;
		height: 35vh;
	}
	.p2__container {
		overflow-x: hidden;
	}
	body {
		overflow-x: hidden;
	}
	.p8__gridItem img {
		width: 8vh;
		height: 8vh;
		/* height: 3vh; */
	}

	.p8__gridItem iframe {
		height: 8vh;
		border-radius: 15px;
	}
	.p8__section.s1 {
		grid-column-gap: 0px;
		grid-row-gap: 0px;
	}
	.modal-vertical {
		max-height: 50vh;
	}
	.p8__section.s2 {
		font-family: textfont;
		font-size: 14px;
	}
	.p9__performance {
		height: 45vh;
	}
	.p9__section.s1 {
		font-family: textfont;
		font-size: 14px;
	}
	.p10__section.s1 {
		font-family: textfont;
		font-size: 14px;
	}
	#p10__s2-header {
		margin-top: 2em;
	}
	.p10__section.s2 iframe {
		margin: auto;
		width: 95%;
		display: block;
		margin-top: 4em;
	}
	.p10__gridItem {
		height: 10vh;
	}
	.p10__gridImage {
		width: 100%;
		height: 100%;
		border: 1px solid grey;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: 50% 50%;
		pointer-events: auto;
		filter: brightness(0.6);
		cursor: pointer;
		will-change: transform;
	}
	.p10__section.s4 {
		height: auto;
		padding-bottom: 5em;
		margin-bottom: 5em;
	}
	.p11__section.s1 {
		font-family: textfont;
	}
	.contact.innerContainer {
		width: 80dvw;
		height: 80dvh;
	}
	.contactInfo {
		width: 95%;
		/* border: 2px solid blue; */
	}
	.contactInfo div {
		/* width: 20vw; */
		width: auto;
	}
	.contactNav {
		display: flex;
		width: auto;
		gap: 10px;
		margin-top: 50px;
	}
	header {
		height: 50dvh;
	}
	nav {
		top: 50dvh;
		height: 50dvh;
	}
	.contact-page {
		position: fixed;
		top: -120px;
		right: 0;
		left: 0;
	}
	.contact.container.section_1 {
		height: 100dvh;
		/* opacity: 0; */
		overflow-y: hidden;
	}
	.section_4 .imageContainer {
		width: 10dvw;
	}
}
.newAlbum {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90vw;
	height: 100vh;
	gap: 2.5%;
}
.lyricTitle {
	color: white;
	font-family: 'sans';
	font-size: 12px;
	text-align: center;
}
.essayContainer {
	max-width: 70vw;
	display: flex;
	justify-content: center;
	margin: 0 auto;
	align-items: center;
	flex-direction: column;
}
.essayContainer .bio {
	color: white;
	font-size: 12px;
}
.lyricsContainer {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100vw;
}
.newAlbum img {
	object-fit: cover;
	border-radius: 15px;
}
.lyricText {
	text-align: center;
}
.newAlbum div {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 25%;
	height: 100%;
}

.newAlbum > .middle {
	width: 45%;
	height: 80%;
}
.newAlbum div > .left {
	width: 100%;
	height: 25%;
}
.newAlbum div > .right {
	width: 100%;
	height: 25%;
}

.leftContainer p {
	font-family: subheader;
	font-size: 32px;
}

.credits {
	font-family: textfont;
}
.parallax__container {
	/* height: 100vh; */
	margin-bottom: 5rem;
	display: flex;
	width: 100vw;
	/* border: 2px solid red; */
}
.parallax__img__container {
	/* border: 2px solid blue; */
	width: 65%;
	padding-left: 2.5rem;
	padding-top: 2.5rem;
	overflow: hidden;
	/* display: flex; */
	/* justify-content: center; */
	/* align-items: center; */
}

.lyricsGrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* Creates 2 equal columns */
	gap: 16px; /* Space between the columns */
	padding: 16px; /* Optional padding around the grid */
}
.unfuck__img1 {
	width: 100%;
	/* height: 150%; */
	object-fit: contain;
}
.parallax__text__container {
	width: 35%;
	/* border: 2px solid green; */
	padding: 0rem 3rem;
}
.collaborator {
	font-family: 'sans';
	font-weight: 800;
	font-size: 18px;
}
.bio {
	font-family: 'sans';
	color: #6d6c6c;
	font-size: 12px;
}
.bioSection {
	margin-bottom: 2rem;
}
.role {
	font-family: 'sans';
	font-weight: 800;
	font-size: 24px;
}
.collaborators {
	color: white;
	font-family: 'sans';
	font-size: 12px;
}
.collaborator {
	color: white;
	font-family: 'sans';
	font-size: 12px;
}

.gallery {
	justify-content: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
	margin-top: 2.5rem;
	margin-bottom: 2.5rem;
}
.gallery__img {
	width: 55vw;
	height: 65vh;
	object-fit: contain;
}
.newVideoSection {
	width: 100vw;
	height: 100vh;
	/* border: 2px solid orange; */
	display: flex;
	justify-content: center;
	width: 100%; /* Full width */
	aspect-ratio: 16 / 9; /* Set the aspect ratio to 16:9 */
	overflow: hidden;
	align-items: center;
	flex-direction: column;
}
.newVideoSection iframe {
	margin-top: 5rem;
	/* position: absolute; */
	top: 0;
	left: 0;
	width: 75%;
	height: 75%;
	border: 0;
	/* height: 100%; */
}

.parallax__text__container .title {
	font-family: 'gara';
	font-weight: 800;
	font-size: 52px;
	margin-bottom: 1.5rem;
	margin-top: 0.5rem;
}
.participants_container {
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
