
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}body{margin:0;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;margin:0.67em 0;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:bold;}dfn{font-style:italic;}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em;}pre{white-space:pre-wrap;}q{quotes:"\201C" "\201D" "\2018" "\2019";}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-0.5em;}sub{bottom:-0.25em;}img{border:0;}svg:not(:root){overflow:hidden;}figure{margin:0;}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}legend{border:0;padding:0;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}button,select{text-transform:none;}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}button[disabled],html input[disabled]{cursor:default;}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}
*,
*::after,
*::before {
	box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=MedievalSharp&display=swap');


		@font-face {
			font-family: drunk;
			src: url(../ttf/drunk.ttf);
			}

			@font-face {
				font-family: first;
				src: url(../ttf/first.otf);
				}


body {
	--color-text: #fff;
	--color-bg: #252525;
	--color-link: #fff;
	--color-link-hover: #f20c40;
	--color-bg-item1: #15171b;
	--color-bg-item2: #2c35b7;
	--color-bg-item3: #0f1013;
	--color-bg-item4: #1d2027;
	--color-bg-item5: #0f1013;
	--color-item-alt: #494d54;
	--color-quote: #5b677a;
	--color-info: #57535a;
	--color-title: #e23434;
	--color-tagline: #e2e2e2;
	font-family: "europa", Futura, Arial, sans-serif;
	min-height: 100vh;
	color: #57585c;
	color: var(--color-text);
	background-color: #fff;
	background-color: var(--color-bg);
	overflow: hidden;
	padding: 6rem 0 0 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Page Loader */
.js .loading::before {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
}

.js .loading::after {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	pointer-events: none;
	border-radius: 50%;
	opacity: 0.4;
    background: var(--color-link);
	animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}


a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
	transition: color 0.2s;
}

a:hover,
a:focus {
	color: var(--color-link-hover);
}

button:focus,
a:focus {
	outline: none;
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

/* Icons */
.icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: currentColor;
}

main {
	position: relative;
	width: 100%;
}

.frame {
	position: relative;
	z-index: 199;
}

.content {
	text-align: center;
	position: relative;
	z-index: 100;
}

.background {
	perspective: 900px; /*ESTE VALOR ES IMPORTAANTE para ANIMAR FONDO AL MOVER MOUSE ORIGINAL 1000px*/ 
}

.background,
.background__copy {
	position: fixed;
	width: 100%;

	/*
	height: 100%;*/
height: 100vh;

	top: 0;
	left: 0;

	
	background-image: url('../img/avatar.webp');
	
/*
	background-image: url('map.jpg');*/
	background-repeat: no-repeat;
	
	background-position: 50% 50%;
	background-size: cover !important;
	z-index: 1;


	


}

.background__copy {
	opacity: 0.3;
	transform: translate3d(0,0,0);
}

/* Header */
.header {
	position: relative;
	z-index: 100;
	display: flex;
	align-self: start;
}

.header__title {
	font-size: 1rem;
	line-height: 1;
	font-weight: normal;
	margin: 0 1rem;
}

.info {
	display: block;
	grid-area: info;
	margin: 1rem 0;
	justify-self: end;
	text-align: center;
}

/*
.github {
	display: block;
	margin: 1rem 0 0 0;
}
	*/

/* Top Navigation Style */
.links {
	position: relative;
	display: flex;
	justify-content: center;
	text-align: center;
	white-space: nowrap;
	font-size: 0.85rem;
}

.codrops-icon {
	display: inline-block;
	padding: 0.25em;
}

.content__title {
		font-family: "sabbath-black",serif;
  font-weight: 400;
  font-style: normal;
	font-size: 14vw;
	font-weight: normal;
	mix-blend-mode: screen;
	line-height: 0.8;
	/*text-transform: lowercase;*/
	margin: 0;
	color: var(--color-title);
	z-index: 199;
	cursor: default;
}

.content__tagline {
	color: var(--color-tagline);
	/*margin: 1rem 0 0 0;
	font-weight: bold;
	font-size: 1rem;
	letter-spacing: 0.125rem;
	word-spacing: 0.25rem;
	text-transform: uppercase;
	text-align: center;*/
	z-index: 1;
	cursor: default;
  position: fixed;
  /*right: 25px;*/
/*top: 50%;*/
  /*transform: translateY(50%);*/
  /*height: 100vh;*/
/*
  opacity: 0.5;*/
}

.content__tagline:hover {
transition: .3s;
opacity: .8;
cursor: pointer;
}

.action {
	background: none;
	border: 0;
	color: #fff;
	cursor: pointer;
	padding: 0;
}

.action--menu {
	pointer-events: auto;
	position: fixed;
	/*top: 1.3rem;
	right: 0.7rem;*/
	top: 0.8rem;
	right: 1.5rem;

	z-index: 1000;
}

.menu--open .action--menu {
	pointer-events: none;
}

.action--close {
	position: fixed;
	top: 1.5rem;
	right: 1.1rem;
	z-index: 1000;
	opacity: 0;
	padding: 0 0.5rem;

}

.icon--menu {
	width: 40px;
	height: 40px;

	

/*
	background-image: url(iconm.png);
	

	filter: invert(1);
*/


}

.icon--close {


	/*width: 1rem;*/

	width: 30px;
	height: 30px;

	/*
	background-image: url(iconx.png);
	background-size: cover;
*/


}

.menu {
	text-align: center;
	width: 100%;
	height: 250vh;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: repeat(8,19.33%);
	pointer-events: none;

	
	

}

.menu--open {
	pointer-events: auto;

	
}

.menu__item {
	width: 100%;
	position: relative;
	overflow: hidden;



}

.menu__item-inner {
	overflow: hidden;
	transform: translate3d(100%,0,0);
	height: 100%;
	width: 100%;
	position: relative;
	
	display: flex;
	flex-direction: column;
	justify-content: center;

	
	padding: 30px;


}

.menu__item--1 .menu__item-inner {
	background: var(--color-bg-item1);
}
.menu__item--2 .menu__item-inner {
	background: var(--color-bg-item2);
}
.menu__item--3 .menu__item-inner {
	background: var(--color-bg-item3);
}
.menu__item--4 .menu__item-inner {
	background: var(--color-bg-item4);
}
.menu__item--5 .menu__item-inner {
	background: var(--color-bg-item5);
}





.menu__item--4, 

.menu__item--5 {
	/*display: none;*/
}

.label {
	display: none;
}

.mainmenu__item {
	opacity: 0;
}

.mainmenu__item,
.sidemenu__item {
	position: relative;
	overflow: hidden;
	transition: color 0.1s;
	margin: 0.25rem 0;
	display: block;

}





.sidemenu__item:hover { 	
	cursor: pointer;
	color: #f20c40 
}


.sidemenu__item-inner {
	display: block;
	transform: translate3d(0,100%,0);
}

.menu__item-map {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	
    background: #df253c;

	/*
	background: url(../img/backmenu.jpg) no-repeat 50% 50%;
	background-size: cover;
    */

	transition: transform 0.8s cubic-bezier(0.2,1,0.8,1);
}

.menu__item-inner:hover .menu__item-map {
	transform: scale3d(1.1,1.1,1);
}

.menu__item-hoverlink {
	font-weight: bold;
	text-transform: capitalize;
	position: relative;
	z-index: 1000;
	display: block;
}

.menu__item-hoverlink:hover {
	color: var(--color-link);
}

/*
.quote {
	font-size: 2rem;
	padding: 1rem;
	text-align: center;
	max-width: 70%;
	color: var(--color-quote);
	font-family: "sabbath-black",serif;
}
*/	

.menu__item-link {
	text-align: left;
	align-self: flex-start;
	justify-self: start;
	font-size: 1.5rem;
	width: 100%;
	line-height: 1;
	padding: 2rem ;
	margin: 3rem 0 auto;
	display: flex;
	flex-direction: column;
	height: calc(100% - 3rem);
}

.menu__item-link::after {
	content: '\27F6';
	display: block;
	margin-top: auto;
	font-size: 0.95rem;
}

@media screen and (min-width: 53em) {
	body {
		padding: 0;
	}
	.content {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
		min-height: 100vh;
		text-align: left;
	}
	.frame {
		position: fixed;
		z-index: 199;
		top: 0;
		left: 0;
		display: grid;
		align-content: space-between;
		width: 100%;
		max-width: none;
		height: 100vh;
		padding: 1.5rem;
		pointer-events: none;
		grid-template-columns: 50% 50%;
		grid-template-rows: auto auto auto;
	}
	.header {
		padding: 0;
		justify-content: start;
	}
	.links {
		margin: 0;
	}
	.frame a {
		pointer-events: auto;
	}
	.github {
		grid-area: github;
		justify-self: start;
	}
	.info {
		margin: 0 6rem 0 0;
		color: var(--color-info);
	}
	.menu {
		width: 100%;
		height: 100vh;
		overflow: hidden;
		position: fixed;
		top: 0;
		left: 0;
		grid-template-columns: 20% 30% 50%;
		grid-template-rows: 60% 40%;
		grid-template-areas: 
            "item3 item2 item1"
            "item4 item5 item1";
	}
	.menu__item {
		height: 100%;
	}
	.menu__item--1 {
		grid-area: item1;
	}
	.menu__item--2 {
		grid-area: item2;
	}
	.menu__item--3 {
		grid-area: item3;
	}
	.menu__item--4 {
		grid-area: item4;
	}
	.menu__item--5 {
		grid-area: item5;
	}

	.menu__item--4, 
	.menu__item--5 {
		display: block;
	}
	.menu__item-inner {
		align-items: center;
	}
	.label {
		display: block;
		color: var(--color-item-alt);
		position: absolute;
		z-index: 1000;
		font-size: 0.85rem;
		font-weight: bold;
		margin: 0;
		white-space: nowrap;
	}
	.label--topleft {
		top: 2rem;
		left: 2rem;
	}
	.label--vert,
	.label--vert-mirror {
		-webkit-writing-mode: vertical-rl;
		writing-mode: vertical-rl;
	}
	.label--vert-mirror {
		transform: rotate(180deg);
	}
	.label--bottomright {
		bottom: 2rem;
		right: 2rem;
	}
	.label::before {
		content: '------------- ';
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		letter-spacing: -1px;
		margin: 0 0.75rem 0 0;
	}
	.label--vert::before,
	.label--vert-mirror::before {
		margin: 0.75rem 0;
	}
	.mainmenu,
	.sidemenu {
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.mainmenu {
		counter-reset: menuitem;
	}
	.mainmenu__item {
		font-size: 3vw;
		/*text-transform: lowercase;*/
		overflow: visible;
		margin: 0.5rem 0;
		padding: 0 0.5rem;
		position: relative;
		transition: color 0.3s;

		font-family: Orbitron !important;
	}
	.mainmenu__item:hover {
		color: var(--color-item-alt);
	}
	.mainmenu__item::before {
		counter-increment: menuitem;
		content: counters(menuitem, "", decimal-leading-zero);
		position: absolute;
	    font-size: 0.85rem;	
	    top: 25%;
	    left: -1.25rem;
	    color: var(--color-item-alt);
	}
	.mainmenu__item::after {
		content: '';
		width: 100%;
		top: 58%;
		height: 6px;
		background: var(--color-link-hover);
		position: absolute;
		left: 0;
		opacity: 0;
		transform: scale3d(0,1,1);
		transition: transform 0.3s, opacity 0.3s;
		transform-origin: 100% 50%;
	}
	.mainmenu__item:hover::after {
		opacity: 1;
		transform: scale3d(1,1,1);
	}
	.sidemenu__item {
		text-transform: uppercase;
		letter-spacing: 0.15rem;
		font-size: 0.85rem;
	}
	.menu__item-hoverlink {
		font-size: 1.25rem;
		/*text-transform: lowercase;*/
		border-bottom: 2px solid #fff;
		opacity: 0;
		transition: opacity 0.3s;
	}
	.menu__item-inner:hover .menu__item-hoverlink {
		opacity: 1;
	}
}













::-moz-selection { /* Code for Firefox */
	color: none;
	background: none;
  }
  
  ::selection {
	color: none;
	background: none;

  }


.home {
    height: 100vh;


	
  
 
  }

video {

    max-width: 100%;
    height: 100%;
    object-fit: cover;

  }


  .logo {
	position: fixed; 
	top: 15px; 
	right: 70px; 
	height: 44px; 
	width: 44px; 
	background: url(../img/avatar.webp);  
	background-position: no-repeat; 
	background-size: cover;
	
	/*border: none;*/

	display: flex;
	align-items: center;
	justify-content: center;
	
	border-radius: 50%; 
	z-index: 99999999999999999999999999999999999999999999999999999999999999999999999999;
  }

  .logo:before {

content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 48px;
height: 48px;
border-radius: 50%;
background-color: transparent;
border: 1px solid rgba(0, 0, 0, 0);
box-shadow: 0 0 0 1px #df253c;

  }

.background {
	background-image: url(../img/texture.png); 
	background-size: 50% !important; 
	background-repeat: no-repeat; 
	background-position: center;
}

/*

@media (min-width: 0em) and (max-width: 40em) {
	.background {
		background-image: url(big-marx.png); 
		background-size: 85vh; 
		background-repeat: no-repeat; 
		background-position: left 10%;
	}


	.content__tagline {


		
	}


	.background__copy {

background-size: 270%;


	}

.logo {

	
	height: 45px; 
	width: 45px; 

}


  }


*/



















.hero {
  font-size: clamp(20px, 10vw, 30px);
  line-height: 1;
  display: inline-block;
  color: #fff;
  z-index: 2;
  letter-spacing: 10px;

  /* Bright things in dark environments usually cast that light, giving off a glow */
  filter: drop-shadow(0 1px 3px);
  


}






#TITULO { top: 40%; left: 50%; transform: translate(-50%, -50%); font-size: 20vh; letter-spacing: 15px; z-index: 9; font-family: drunk; color: white; opacity: 1; position: absolute; text-align: center; }

#SUBTITULO { top: 70%; left: 50%; transform: translate(-50%, -50%); font-size: 5vh; z-index: 9; font-family: drunk; color: white; opacity: 1; position: absolute; text-align: center; }



@media (min-width: 1px) and (max-width: 359px) {



	


	.background {
		background-image: url(../img/texture.png); 
		background-size: 90% !important; 
		background-repeat: no-repeat; 
		background-position: center;
	}

	.musicbox { max-width: 300px; }

	#hide-cel { display: none; }

	.menu__item-inner {padding: 0 !important;}


	.background	{

		background-size: cover;

	}
	.background__copy {
	
		
		background-size: cover;
				
	}


	#TITULO { font-size: 5vh; }

	#SUBTITULO { font-size: 2vh; top: 52%; }

	.logo {
		position: fixed; 
		top: 16px; 
		left: 50%;
		transform: translate(-50%, -50%);

		height: 35px; 
		width: 35px; 
		background: url(../img/avatar.webp);  
		background-position: no-repeat; 
		background-size: cover; 
		border: none;
		/*border: 1px solid black; */
		border-radius: 50%; 
		z-index: 99999999999999999999999999999999999999999999999999999999999999999999999999;
	  }



	.icon--menu {
		width: 30px;
		height: 30px;
	
	}
	
	.icon--close {
	
		width: 20px;
		height: 20px;
	
	}


	.menu__item-map {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		
		background: #df253c;

		/*
		background: url(../img/backmenu.jpg) no-repeat 50% 50%;
		background-size: cover;
		*/

		transition: transform 0.8s cubic-bezier(0.2,1,0.8,1);
	}






	.hero {
		
		font-size: clamp(20px, 10vw, 8px);
		line-height: 1;
		display: inline-block;
		color: #fff;
		z-index: 2;
		letter-spacing: 10px;
	  
		/* Bright things in dark environments usually cast that light, giving off a glow */
		filter: drop-shadow(0 1px 3px);
		
	  }



.mainmenu__item {  
	margin: 0.15rem 0;
	display: inline-block; 
	font-family: Orbitron !important;
	
}


.sidemenu__item {

	margin: 0rem 0;
	display: inline-block;

		text-transform: uppercase;
		letter-spacing: 0.15rem;
		font-size: 0.65rem;
	}


	.menu__item--3 .menu__item-inner {
		background: var(--color-bg-item3);
	
	
		/*overflow-y: scroll;*/
	
	}



	.menu__item--3 .menu__item-inner {
		background: var(--color-bg-item3);

		min-height: 300px !important;
	}

	
}



@media (min-width: 800px) {

.arrow { display: none; }

}





@media (max-width: 847px) {

	.svs-glitch-text{
	margin: 0;
	padding: 0;
        overflow: hidden;
        font-family: 'Zilla Slab Highlight', cursive;
        font-size: 13vh !important;
        animation: animate 4s ;

		top: 45%; left: 50%; transform: translate(-50%, -50%);
/*
          position: relative;
          padding-top: 10%;
		  padding-left: 3%;

*/

          z-index: 10;
    }

    .svs-glitch-text-second{
          /*padding-left: 5% !important;*/
          animation: animate 2s infinite;
          font-size: 10vh !important;



    }





	video {

		max-width: 100%;
		height: 330px;
		object-fit: cover;

		border-radius: 8px;
	
	  }


	.background {
		background-image: url(../img/texture.png); 
		background-size: 90% !important; 
		background-repeat: no-repeat; 
		background-position: center;
	}


	#TITULO { font-size: 5vh; }

	#SUBTITULO { font-size: 2vh; top: 52%; }

	.menu {	overflow-y: scroll !important; }


	.mainmenu,
	.sidemenu {
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.mainmenu {
		counter-reset: menuitem;

		

	}
	.mainmenu__item {
		font-size: 5vw;
		/*text-transform: lowercase;*/
		overflow: visible;
		margin: 0.5rem 0;
		padding: 0 0.5rem;
		position: relative;
		transition: color 0.3s;

		font-family: Orbitron !important;
	}
	.mainmenu__item:hover {
		color: var(--color-item-alt);
	}
	.mainmenu__item::before {
		counter-increment: menuitem;
		content: counters(menuitem, "", decimal-leading-zero);
		position: absolute;
	    font-size: 0.85rem;	
	    top: 25%;
	    left: -1.25rem;
	    color: var(--color-item-alt);
	}
	.mainmenu__item::after {
		content: '';
		width: 100%;
		top: 50%;
		height: 3px;
		background: var(--color-link-hover);
		position: absolute;
		left: 0;
		opacity: 0;
		transform: scale3d(0,1,1);
		transition: transform 0.3s, opacity 0.3s;
		transform-origin: 100% 50%;
	}
	.mainmenu__item:hover::after {
		opacity: 1;
		transform: scale3d(1,1,1);
	}
	.sidemenu__item {
		text-transform: uppercase;
		letter-spacing: 0.15rem;
		font-size: 0.85rem;
	}
	.menu__item-hoverlink {
		font-size: 1.25rem;
		/*text-transform: lowercase;*/
		border-bottom: 2px solid #fff;
		opacity: 0;
		transition: opacity 0.3s;
	}
	.menu__item-inner:hover .menu__item-hoverlink {
		opacity: 1;
	}


	.label {
		display: block;
		color: var(--color-item-alt);
		position: absolute;
		z-index: 1000;
		font-size: 0.75rem;
		font-weight: bold;
		margin: 0;
		white-space: nowrap;
	}
	.label--topleft {
		top: 5rem;
		left: 0.4rem;
	}
	.label--vert,
	.label--vert-mirror {
		-webkit-writing-mode: vertical-rl;
		writing-mode: vertical-rl;
	}
	.label--vert-mirror {
		transform: rotate(180deg);
	}
	.label--bottomright {
		bottom: 2rem;
		right: 0.4rem;
	}
	.label::before {
		content: '------------- ';
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		letter-spacing: -1px;
		margin: 0 0.75rem 0 0;
	}
	.label--vert::before,
	.label--vert-mirror::before {
		margin: 0.75rem 0;
	}


}





@media (min-width: 600px) and (max-width: 1249px) {

	


	#TITULO { font-size: 12vh !important; }

	#SUBTITULO { font-size: 3vh; top: 58% !important; }
}



@media (min-width: 360px) and (max-width: 1250px) {

	.background {
		background-image: url(../img/texture.png); 
		background-size: 60% !important; 
		background-repeat: no-repeat; 
		background-position: center;
	}

	.musicbox { max-width: 300px; }

	#hide-cel { display: none; }


/*
	#TITULO { font-size: 10vh !important; }

	#SUBTITULO { font-size: 3vh; top: 58%; }
*/
	.menu__item--3 .menu__item-inner {
		background: var(--color-bg-item3);
	
	
		/*overflow-y: none !important;*/
	
	}

	.mainmenu__item {  
		margin: 0.15rem 0;
		display: inline-block; 
		font-family: Orbitron !important;
		
	}


	
	.sidemenu__item {
	
		margin: 0.15rem 0;
		display: block;
	
	}










.hero {
  font-size: clamp(20px, 10vw, 5px) !important;

  letter-spacing: 5px;

}


.sidemenu__item {
		text-transform: uppercase;
		letter-spacing: 0.15rem;
		font-size: 0.65rem;
	}

	.menu__item--3 .menu__item-inner {
		background: var(--color-bg-item3);
	
	
		/*overflow-y: scroll;*/
	
	}


	.menu__item--3 .menu__item-inner {
		background: var(--color-bg-item3);

		min-height: 300px !important;
	}


}



@media (min-width: 1251px) and (max-width: 1500px) {

	.musicbox { max-width: none; }

	.menu__item--3 .menu__item-inner {
		background: var(--color-bg-item3);
	
	/*
		overflow-y: none !important;
	*/
	}


  .hero {
  font-size: clamp(20px, 10vw, 7px) !important;

  letter-spacing: 5px;

}


.sidemenu__item {
		text-transform: uppercase;
		letter-spacing: 0.15rem;
		font-size: 0.70rem;
	}

	

}




.demo {
  height: 100px;
  background: #fff;
}

.layers {
  position: relative;
}

.layers::before,
.layers::after {
  content: attr(data-text);
  position: absolute;
  width: 110%;
  z-index: -1;
}

.layers::before {
  top: 10px;
  left: 15px;
  color: #e0287d;
}

.layers::after {
  top: 5px;
  left: -10px;
  color: #1bc7fb;
}

.single-path {
  clip-path: polygon(
    0% 12%,
    53% 12%,
    53% 26%,
    25% 26%,
    25% 86%,
    31% 86%,
    31% 0%,
    53% 0%,
    53% 84%,
    92% 84%,
    92% 82%,
    70% 82%,
    70% 29%,
    78% 29%,
    78% 65%,
    69% 65%,
    69% 66%,
    77% 66%,
    77% 45%,
    85% 45%,
    85% 26%,
    97% 26%,
    97% 28%,
    84% 28%,
    84% 34%,
    54% 34%,
    54% 89%,
    30% 89%,
    30% 58%,
    83% 58%,
    83% 5%,
    68% 5%,
    68% 36%,
    62% 36%,
    62% 1%,
    12% 1%,
    12% 34%,
    60% 34%,
    60% 57%,
    98% 57%,
    98% 83%,
    1% 83%,
    1% 53%,
    91% 53%,
    91% 84%,
    8% 84%,
    8% 83%,
    4% 83%
  );
}

.paths {
  animation: paths 5s step-end infinite;
}

@keyframes paths {
  0% {
    clip-path: polygon(
      0% 43%,
      83% 43%,
      83% 22%,
      23% 22%,
      23% 24%,
      91% 24%,
      91% 26%,
      18% 26%,
      18% 83%,
      29% 83%,
      29% 17%,
      41% 17%,
      41% 39%,
      18% 39%,
      18% 82%,
      54% 82%,
      54% 88%,
      19% 88%,
      19% 4%,
      39% 4%,
      39% 14%,
      76% 14%,
      76% 52%,
      23% 52%,
      23% 35%,
      19% 35%,
      19% 8%,
      36% 8%,
      36% 31%,
      73% 31%,
      73% 16%,
      1% 16%,
      1% 56%,
      50% 56%,
      50% 8%
    );
  }

  5% {
    clip-path: polygon(
      0% 29%,
      44% 29%,
      44% 83%,
      94% 83%,
      94% 56%,
      11% 56%,
      11% 64%,
      94% 64%,
      94% 70%,
      88% 70%,
      88% 32%,
      18% 32%,
      18% 96%,
      10% 96%,
      10% 62%,
      9% 62%,
      9% 84%,
      68% 84%,
      68% 50%,
      52% 50%,
      52% 55%,
      35% 55%,
      35% 87%,
      25% 87%,
      25% 39%,
      15% 39%,
      15% 88%,
      52% 88%
    );
  }

  30% {
    clip-path: polygon(
      0% 53%,
      93% 53%,
      93% 62%,
      68% 62%,
      68% 37%,
      97% 37%,
      97% 89%,
      13% 89%,
      13% 45%,
      51% 45%,
      51% 88%,
      17% 88%,
      17% 54%,
      81% 54%,
      81% 75%,
      79% 75%,
      79% 76%,
      38% 76%,
      38% 28%,
      61% 28%,
      61% 12%,
      55% 12%,
      55% 62%,
      68% 62%,
      68% 51%,
      0% 51%,
      0% 92%,
      63% 92%,
      63% 4%,
      65% 4%
    );
  }

  45% {
    clip-path: polygon(
      0% 33%,
      2% 33%,
      2% 69%,
      58% 69%,
      58% 94%,
      55% 94%,
      55% 25%,
      33% 25%,
      33% 85%,
      16% 85%,
      16% 19%,
      5% 19%,
      5% 20%,
      79% 20%,
      79% 96%,
      93% 96%,
      93% 50%,
      5% 50%,
      5% 74%,
      55% 74%,
      55% 57%,
      96% 57%,
      96% 59%,
      87% 59%,
      87% 65%,
      82% 65%,
      82% 39%,
      63% 39%,
      63% 92%,
      4% 92%,
      4% 36%,
      24% 36%,
      24% 70%,
      1% 70%,
      1% 43%,
      15% 43%,
      15% 28%,
      23% 28%,
      23% 71%,
      90% 71%,
      90% 86%,
      97% 86%,
      97% 1%,
      60% 1%,
      60% 67%,
      71% 67%,
      71% 91%,
      17% 91%,
      17% 14%,
      39% 14%,
      39% 30%,
      58% 30%,
      58% 11%,
      52% 11%,
      52% 83%,
      68% 83%
    );
  }

  76% {
    clip-path: polygon(
      0% 26%,
      15% 26%,
      15% 73%,
      72% 73%,
      72% 70%,
      77% 70%,
      77% 75%,
      8% 75%,
      8% 42%,
      4% 42%,
      4% 61%,
      17% 61%,
      17% 12%,
      26% 12%,
      26% 63%,
      73% 63%,
      73% 43%,
      90% 43%,
      90% 67%,
      50% 67%,
      50% 41%,
      42% 41%,
      42% 46%,
      50% 46%,
      50% 84%,
      96% 84%,
      96% 78%,
      49% 78%,
      49% 25%,
      63% 25%,
      63% 14%
    );
  }

  90% {
    clip-path: polygon(
      0% 41%,
      13% 41%,
      13% 6%,
      87% 6%,
      87% 93%,
      10% 93%,
      10% 13%,
      89% 13%,
      89% 6%,
      3% 6%,
      3% 8%,
      16% 8%,
      16% 79%,
      0% 79%,
      0% 99%,
      92% 99%,
      92% 90%,
      5% 90%,
      5% 60%,
      0% 60%,
      0% 48%,
      89% 48%,
      89% 13%,
      80% 13%,
      80% 43%,
      95% 43%,
      95% 19%,
      80% 19%,
      80% 85%,
      38% 85%,
      38% 62%
    );
  }

  1%,
  7%,
  33%,
  47%,
  78%,
  93% {
    clip-path: none;
  }
}

.movement {
  /* Normally this position would be absolute & on the layers, set to relative here so we can see it on the div */
  position: relative;
  animation: movement 8s step-end infinite;
}

@keyframes movement {
  0% {
    top: 0px;
    left: -20px;
  }

  15% {
    top: 10px;
    left: 10px;
  }

  60% {
    top: 5px;
    left: -10px;
  }

  75% {
    top: -5px;
    left: 20px;
  }

  100% {
    top: 10px;
    left: 5px;
  }
}

.opacity {
  animation: opacity 5s step-end infinite;
}

@keyframes opacity {
  0% {
    opacity: 0.1;
  }

  5% {
    opacity: 0.7;
  }

  30% {
    opacity: 0.4;
  }

  45% {
    opacity: 0.6;
  }

  76% {
    opacity: 0.4;
  }

  90% {
    opacity: 0.8;
  }

  1%,
  7%,
  33%,
  47%,
  78%,
  93% {
    opacity: 0;
  }
}

.font {
  animation: font 7s step-end infinite;
}

@keyframes font {
  0% {
    font-weight: 100;
    color: #e0287d;
    filter: blur(3px);
  }

  20% {
    font-weight: 500;
    color: #fff;
    filter: blur(0);
  }

  50% {
    font-weight: 300;
    color: #1bc7fb;
    filter: blur(2px);
  }

  60% {
    font-weight: 700;
    color: #fff;
    filter: blur(0);
  }

  90% {
    font-weight: 500;
    color: #e0287d;
    filter: blur(6px);
  }
}

.glitch span {
  animation: paths 5s step-end infinite;
}

.glitch::before {
  animation: paths 5s step-end infinite, opacity 5s step-end infinite,
    font 8s step-end infinite, movement 10s step-end infinite;
}

.glitch::after {
  animation: paths 5s step-end infinite, opacity 5s step-end infinite,
    font 7s step-end infinite, movement 8s step-end infinite;
}

.hero-container {
  position: relative;
  padding: 200px 0;
  text-align: center;
}

.environment {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
  filter: blur(5px);
  background:black;
}










.fa-tiktok {
	color: #fff;
	font-size: 2em;
	text-shadow: 5px 5px #ff3353fc,
				 -5px -5px cyan;
}