* {
	font-family: "Text Me One";
	color: #fff;
	margin: auto;
}

html,
body {
	background: #0a0a0a;
    overflow: hidden;
}

.wrapper {
	width: 100%;
}

.wrapper .container {
	width: 96%;
    height: 100%;
	margin: 0px auto;
}

.whitespace {
	width: 100%;
	height: 80px;
}

/* navbar */
.nav {
      position: fixed;
      width: 100%;
      height: 80px;
}

.artist {
      z-index: 1;
      position: fixed;
      line-height: 80px;
      margin-top: 14px;
      margin-left: 9.5px;
}

.artistimg {
      width: 15%;
      height: auto;
}

/*________________________________Menu____________________________________*/

.music_button {
	z-index: 2;
	position: fixed;
	left: 200px;
	line-height: 100px;
	margin: 0 40px;
	color: white;
	padding: 0 10px;
	font-family: Text Me One;
	font-size: 12px;
	font-weight: 100;
	letter-spacing: 4px;
}

.music_button ion-icon {
	z-index: 2;
	position: relative;
	top: 1px;
	padding-right: 6px;
}  

.video_button {
	z-index: 2;
	position: fixed;
	left: 110px;
	line-height: 90px;
	margin: 0 40px;
	color: white;
	padding-top: 4px;
	font-family: Text Me One;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 4px;
}

.video_button ion-icon {
	z-index: 2;
	position: relative;
	top: 1px;
	padding-right: 6px;
}

.concert-button {
	z-index: 2;
	position: fixed;
	right: 100px;
	line-height: 80px;
	margin: 0 40px;
	color: white;
	padding-top: 10px;
	font-family: Text Me One;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 4px;
}

.concert-button ion-icon {
	z-index: 2;
	position: relative;
	top: 1px;
	padding-right: 6px;
}

.press-button {
	z-index: 2;
	position: fixed;
	right: 0;
	line-height: 80px;
	margin: 0 40px;
	color: white;
	padding-top: 10px;
	font-family: Text Me One;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 4px;
}

/*________________________________________________________________________*/

/* header */

.header {
	margin: 180px 300px;
	z-index: 2 !important;
}

.header .header-container h1 {
	font-family: "Text Me One";
	font-size: 10rem;
}

@media (max-width: 900px) {
	.header .header-container h1 {
		font-size: 5.4rem;
	}
}



/* Music Section	 */

.music__item {
	position: relative;
	padding: 1.6vw 0 0 0;
	margin: 4px;
	padding-left: 10px;
}

.music__item-link {
	display: inline-block;
	cursor: pointer;
	position: relative;
	color: #fff;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
	font-family: "Text Me One";
	text-transform: uppercase;
}

.music__item-link::before {
	all: initial;
	text-transform: uppercase;
	counter-increment: music;
	position: absolute;
	bottom: 60%;
	left: 0;
	pointer-events: none;
}

.music__item-link:hover {
	-webkit-transition-duration: 0.1s;
	transition-duration: 0.1s;
	opacity: 0;
}

.music__item-img {
	pointer-events: none;
	position: absolute;
	height: 50vh;
	max-height: 400px;
	opacity: 0;
	left: 100%;
	top: 50%;
	-webkit-transform: translate3d(calc(-100% - 6vw), -30%, 0)
		translate3d(0, 20px, 0);
	transform: translate3d(calc(-100% - 6vw), -30%, 0) translate3d(0, 20px, 0);
}

.music__item-link:hover + .music__item-img {
	opacity: 1;
	-webkit-transform: translate3d(calc(-100% - 6vw), -30%, 0)
		rotate3d(0, 0, 1, 4deg);
	transform: translate3d(calc(-100% - 6vw), -30%, 0) rotate3d(0, 0, 1, 4deg);
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.music {
	padding: 0vh 0 0 0vh;
	--offset: 20vw;
	--move-initial: calc(-25% + var(--offset));
	--move-final: calc(-50% + var(--offset));
	font-size: 8vw;
}

.marquee {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	color: #fff;
	pointer-events: none;
	mix-blend-mode: difference;
}

.marquee__inner {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	-webkit-animation: marquee 5s linear infinite;
	animation: marquee 5s linear infinite;
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
	opacity: 0;
	-webkit-transition: opacity 0.1s;
	transition: opacity 0.1s;
	padding: 2vw 0;
}

.music__item-link:hover ~ .marquee .marquee__inner {
	-webkit-animation-play-state: running;
	animation-play-state: running;
	opacity: 1;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
}

.music__item-link,
.marquee span {
	white-space: nowrap;
	font-size: 5vw;
	padding: 0.8vw 1vw;
	font-weight: 900;
}

.marquee span {
	font-family: "Text Me One" !important;
	text-transform: uppercase;
}

@-webkit-keyframes marquee {
	0% {
		-webkit-transform: translate3d(var(--move-initial), 0, 0);
		transform: translate3d(var(--move-initial), 0, 0);
	}
	100% {
		-webkit-transform: translate3d(var(--move-final), 0, 0);
		transform: translate3d(var(--move-final), 0, 0);
	}
}

@keyframes marquee {
	0% {
		-webkit-transform: translate3d(var(--move-initial), 0, 0);
		transform: translate3d(var(--move-initial), 0, 0);
	}
	100% {
		-webkit-transform: translate3d(var(--move-final), 0, 0);
		transform: translate3d(var(--move-final), 0, 0);
	}
}

/* socials */

.socials {
	padding: 30px 50px;
}

.socials .socials-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.socials .socials-container a {
	cursor: pointer;
	text-decoration: none;
	font-family: "Text Me One" !important;
	font-size: 64px;
}

@media (max-width: 900px) {
	.socials .socials-container a {
		font-size: 30px;
	}
}

.social-media {
      position: absolute;
      bottom: .10%;
      transform: translateY(-50%);
      padding-left: 1px;
}

.social-media ul li {
      display: inline-block;
      list-style: none;
      color: white;
      padding: 0px 10px;
      font-family: Text Me One;
      font-size: 15px;
      font-weight: 100;
}

.listensong {
      position: absolute;
      bottom: 0%;
      right: 40px;
      transform: translateY(-50%);
}

.listensong ul li {
      display: inline-block;
      list-style: none;
      color: #fff;
      padding: 0 10px;
      padding-bottom: 8px;
      font-size: 22px;
}

@media(max-width: 900px) {
      
      .social-media ul li {
      display: inline-block;
      list-style: none;
      color: white;
      padding: 0 10px;
      font-family: Text Me One;
      font-size: 10px;
      font-weight: 100;
      }

      .listensong ul li {
      display: inline-block;
      list-style: none;
      color: #fff;
      padding: 0 5px;
      font-size: 10px;
      }

	  .music_button {
      z-index: 2;
      position: fixed;
      right: 140px;
      margin: 0 30px;
      color: white;
      padding: 0 10px;
      font-family: Text Me One;
      font-size: 10px;
      font-weight: 100;
      letter-spacing: 4px;
	  }

	  .video_button {
      z-index: 2;
      position: fixed;
      right: 0;
      color: white;
      padding-top: 4px;
      font-family: Text Me One;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 4px;
	  }


}

@media (max-width: 600px) {
	.concert-button {
	  font-size: 10px !important;
	  margin: 0 0px;
	  right: 70px;
	  padding-top: 35px;
	}
	.music_button {
	  left: 0px;
	  font-size: 10px;
	  margin: 0;
	  padding-top: 24px;
	}
	.video_button {
	  margin: 0;
	  left: 90px;
	  padding-top: 30px;
	}
	.press-button {
	  right: 0;
	  margin: 0;
	  padding: 35px 5px 0 5px;
	  font-size: 10px;
	}
  }