/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


:root {
	/* Fonts */
	--font-family-primary: "Poppins", sans-serif;
	--font-family-secondary: "Lato", sans-serif;
	--font-light: #ffffff;

	/* Colors for background */
	--color-primary: #ee2e27;
	--dark-color: #000000;
	--light-color: #818181;
	--white: #ffffff;
}

/************************************/
/*** 	   02. General Css		  ***/
/************************************/
.text-white {
	color: var(--font-light);
}

.bg-red {
	background: var(--color-primary);
}

p {
	margin-top: 0;
	margin-bottom: 1.1em;
}

ul,
li {
	padding: 0;
}

h2 {
	font-family: var(--font-family-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 700;
	line-height: 1.2em;

}

h1 {
	font-size: 68px;
	line-height: 1;
	font-weight: 800;
}

h2 {
	font-size: 48px;
	line-height: 56px;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
	display: inline-block;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

.container {
	width: 98%;
	max-width: 1200px;
	margin: 0 auto;
}


body {
	position: relative;
	font-family: var(--font-family-secondary);
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
	color: var(--font-light);
	margin: 0;
}

#back-to-top {
	position: fixed;
	bottom: 100px;
	right: 20px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	color: var(--font-light);
}

#back-to-top.active {
	opacity: 1;
	visibility: visible;
}

/************************************/
/*** 	    HEADER CSS            ***/
/************************************/
.header {
	position: absolute;
	width: 100%;
	top: 0;
	z-index: 1000;
	padding: 15px 0px;
}

.header.mini-header {
	position: fixed;
	z-index: 99;
	transition: .5s all;
	background: var(--color-primary);
	padding: 5px 0;
}

.header .right-side {
	display: flex;
	align-items: center;
}

.header.mini-header .logo img {
	width: 100px;
}

.logo {
	position: relative;
	z-index: 1001;
}

.logo-2 {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 0;
	display: flex;
	align-items: center;
}

.header.header.mini-header .logo-2 {
	opacity: 1;
}

.header.header.mini-header .logo-1 {
	opacity: 0;
}

.inner-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo img {
	width: 190px;
}

.nav a {
	font-family: var(--font-family-primary);
	font-weight: 500;
	font-style: normal;
	font-size: 18px;
	line-height: 18px;
	text-transform: uppercase;
	color: var(--font-light);
	letter-spacing: 3px;
	padding: 15px 23px;
}

.nav a.active {
	color: var(--font-light);
	border: 1px solid #ff7e0f;
	border-radius: 30px;
}

.inner-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.nav {
	display: flex;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.social {
	display: flex;
}

.social a {
	font-size: 18px;
	line-height: 18px;
	color: var(--font-light);
	padding: 15px 13px;
}

.menu-toggle {
	display: none;
	font-size: 24px;
	color: var(--font-light);
	cursor: pointer;
}


/************************************/
/*** 	    FOOTER CSS            ***/
/************************************/
.footer {
	background: #000;
	color: var(--font-light);
	padding: 150px 20px 50px;
	text-align: center;
}

.footer .container {
	max-width: 750px;
	margin: 0 auto;
}

.top-links {
	display: flex;
	justify-content: center;
	gap: 150px;
	margin-bottom: 70px;
}

.top-links a {
	color: var(--font-light);
	font-family: "Oswald", Sans-serif;
	font-size: 21px;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: 0.3s;
}

.top-links a i {
	font-size: 28px;
}

.newsletter {
	align-items: center;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}

.newsletter h3 {
	margin: 0;
	font-size: 24px;
	color: var(--font-light);
	font-family: "Poppins", Sans-serif;
	font-size: 48px;
	font-weight: 700;
	letter-spacing: 0px;
}

.newsletter-text {
	color: #dddddd;
	font-size: 12px;
	line-height: 1.35em;
	letter-spacing: 2px;
	text-align: left;
}

.form, #newsletter-form {
	margin: 20px auto 40px;
	display: flex;
	width: 100%;
}

.form input, #newsletter-form input {
	flex: 1 100%;
	margin-right: 5px;
	background: #44474e;
	padding: 015px 30px 15px 30px;
	border-radius: 6px 6px 6px 6px;
	color: var(--font-light);
	font-size: 18px;
	text-transform: none;
	border: 0;
}

.form button, #newsletter-form button {
	padding: 17px 40px 17px 40px;
	margin: 0px 0px 0px 17px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1em;
	letter-spacing: 2px;
	color: var(--font-light);
	background: var(--color-primary);
	border-radius: 6px;
	white-space: nowrap;
	border: 0;
	transition: all linear 0.2s, box-shadow linear 0.2s;
	cursor: pointer;
}

.form button:hover, #newsletter-form button:hover {
	background: var(--font-light);
	color: var(--color-primary);
}

.social-icons {
	margin: 60px 0;
}

.social-icons a {
	color: #abb2c4;
	margin: 0 40px;
	font-size: 32px;
	transition: 0.3s;
}

.social-icons a:hover {
	color: var(--font-light);
	animation-name: social-animation;
	animation-duration: .3s;
	animation-timing-function: linear;
	animation-iteration-count: 1;
}

@keyframes social-animation {
	50% {
		transform: scale(1.2)
	}
}

.copyright {
	color: var(--font-light);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.copyright a {
	color: var(--font-light);
	text-decoration: none;
}

.copyright a:hover {
	color: var(--color-primary);
}

/************************************/
/*** 	    Index CSS            ***/
/************************************/
.hero {
	position: relative;
	background: url('../image/event_banner-1.jpg') center/cover no-repeat;
padding: 135px 0 100px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
}

.hero .left {
	width: 50%;
	padding-top: 70px;
}

.hero .subtitle {
	font-family: var(--font-family-primary);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1em;
	letter-spacing: 1px;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
	display: inline-block;
	padding: 5px 10px 5px 10px;
	background-color: var(--color-primary);
	border-radius: 3px 3px 3px 3px;
	margin-bottom: 0;
}

.hero .title {
	text-transform: uppercase;letter-spacing: -3px;
	font-family: "Poppins", Sans-serif;
}

.hero .social {
	margin-top: 60px;
}

.hero .social a {
	text-decoration: none;
	margin-right: 5px;
	font-size: 18px;
	font-weight: 600;
	transition: 0.3s;
	display: flex;
	gap: 7px;
}
.hero .social a i{
	font-size: 23px;
}
.hero .social a:hover {
	color: var(--color-primary);
}

.hero .right {
	width: 50%;
}

.hero .shape-divider {
	position: absolute;
	bottom: 0;
	width: 100%;
	line-height: 0;
}

.hero .shape-divider svg {
	width: 100%;
	height: 76px;
	fill: var(--color-primary);
	transform: translateX(-50%) rotateY(180deg);
	position: relative;
	left: 50%;
}

.artists-section {
	background: var(--color-primary);
	padding: 70px 0;
}

.artists-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px 10px;
}

.artist-box {
	display: inline-block;
	position: relative;
	height: 360px;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
	transition: background 0.5s, border-radius 0.3s, opacity 0.5s;
}

.artist-box.shadow-box:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	bottom: 0;
	background-image: linear-gradient(180deg, rgba(138, 138, 138, 0) 0%, #8A8A8A 100%);
}

.artist-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	object-position: center right;
}

.artist-box .tag {
	position: absolute;
	top: 15px;
	left: 20px;
	letter-spacing: 2px;
	color: var(--white);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	z-index: 2;    font-family: "Poppins", Sans-serif;
}

.artist-box .tag.alt {
	color: #bbb;
}

.artist-box .content {
	position: absolute;
	bottom: 45px;
	left: 20px;
	right: 20px;
	z-index: 2;
	color: var(--white);
}

.artist-box .content h3 {
	margin-bottom: 20px;
	font-size: 42px;
	font-weight: 600;
	line-height: 0.9em;
	letter-spacing: -1px;
	font-family: "Poppins", Sans-serif;
}

.artist-box .line {
	width: 100%;
	height: 2px;
	background: rgba(255, 255, 255, 0.7);
	margin: 10px 0 20px;
}

.artist-box .btn {
	white-space: nowrap;
	display: inline-block;
	background: white;
	color: var(--color-primary);
	padding: 10px 20px 10px 20px;
	font-family: "Poppins", Sans-serif;
	font-size: 12px;
	line-height: 22px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-decoration: none;
	border-radius: 6px 6px 0 0;
	transition: 0.3s;
	position: absolute;
	bottom: -68px;
	left: 50%;
	transform: translate(-50%, -50%);
}

.artist-box .btn:hover {
	transform: translate(-50%, -40%);
	background: var(--color-primary);
	color: var(--font-light);
}

.music-section {
	background: linear-gradient(180deg, #E92D27 0%, rgba(233, 45, 39, 0.25) 100%),
		url('../image/guitar.jpg');
	padding: 100px 20px 40px;
	color: var(--white);
}

.music-title {
	color: var(--font-light);
	font-size: 36px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.4em;
	letter-spacing: 15px;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
	margin-bottom: 20px;
}

.music-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.music-card {
	background: var(--white);
	border-radius: 5px;
	overflow: hidden;
	color: #000;
	transition: 0.3s;
	position: relative;
}

.music-img {
	position: relative;
	overflow: hidden;
}

.music-img img {
	width: 100%;
	display: block;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
}
.overlay i{
	border: 4px solid var(--white);
	color: var(--font-light);
	font-size: 30px;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	cursor: pointer;

}
.music-section .bottom-player {
  position: fixed;
  bottom: -120px;
  left: 0;
  width: 100%;
  height: 90px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  gap: 15px;
  transition: 0.4s ease;
  z-index: 9999;
}

.music-section .bottom-player.visible {
  bottom: 0;
}

.music-section .bp-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.music-section .bp-info {
  min-width: 160px;
}

.music-section .bp-title {
  font-weight: 600;
}

.music-section .bp-artist {
  font-size: 13px;
  color: gray;
}

.music-section .bp-controls i {
  margin: 0 8px;
  cursor: pointer;
  color: var(--color-primary);
  font-size: 18px;
}

.music-section #waveform-wrap {
  flex: 1;
  height: 40px;
  cursor: pointer;
}

.music-section #waveform-canvas {
  width: 100%;
  height: 40px;
}

.music-section .bp-time {
  font-size: 12px;
  color: #777;
}

.music-section .close-btn {
    cursor: pointer;
    font-size: 18px;
    color: var(--font-light);
	background: var(--color-primary);
    position: absolute;
    right: 20px;
    top: 0;
	padding: 5px 7px;
}

.music-card:hover .overlay {
	opacity: 1;
}

.music-content {
	padding: 20px;
}

.music-title-card {
	color: var(--color-primary);
	font-weight: 600;
	font-size: 28px;
	line-height: 25px;
	font-family: "Poppins";
	padding-bottom: 5px;
}

.music-artist {
	font-size: 14px;
	line-height: 16px;
	color: #0a0a0a;
	font-weight: 300;
	font-family: "Poppins";
}

.player {
	position: fixed;
	bottom: -120px;
	left: 0;
	width: 100%;
	background: #eee;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
	transition: 0.4s;
}

.player.active {
	bottom: 0;
}

.player-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.player-left img {
	width: 50px;
}

.player-controls button {
	font-size: 20px;
	border: none;
	background: none;
	cursor: pointer;
}

.player-progress {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 40%;
}

#progress {
	width: 100%;
}

.close {
	background: var(--color-primary);
	color: var(--white);
	border: none;
	cursor: pointer;
}

.more-btn {
	margin-top: 40px;
	text-align: center;
}

.more-btn a {
	font-family: "Poppins", Sans-serif;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1em;
	letter-spacing: 2px;
	color: var(--color-primary);
	background-color: var(--white);
	border-radius: 6px 6px 6px 6px;
	padding: 17px 35px 15px 35px;
}

.more-btn a:hover {
	animation-name: animation-bob-float, animation-bob;
	animation-duration: .3s, 1.5s;
	animation-delay: 0s, .3s;
	animation-timing-function: ease-out, ease-in-out;
	animation-iteration-count: 1, infinite;
	animation-fill-mode: forwards;
	animation-direction: normal, alternate;
	color: var(--font-light);
	background-color: var(--color-primary);
}

@keyframes animation-bob-float {
	100% {
		transform: translateY(-8px);
	}
}

@keyframes animation-bob {
	0% {
		transform: translateY(-8px)
	}

	50% {
		transform: translateY(-4px)
	}

	100% {
		transform: translateY(-8px)
	}
}

/************************************/
/*** 	    About Page CSS            ***/
/************************************/
.about-inner {
	background: var(--color-primary);
	text-align: center;
	padding: 215px 20px 40px;
}

.about-inner small {
	letter-spacing: 2px;
	font-size: 13px;
	font-family: Lato;
	font-weight: 700;
	padding-bottom: 30px;
	display: block;
}

.about-inner h1:after {
	display: none;
}
.about-inner .inner-sec-title{
	font-size: 36px;
	line-height: 36px;
}
.inner-sec-title {
	margin-top: 15px;
	font-size: 28px;
	line-height: 28px;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-family: Lato;
	font-weight: 700;
	font-style: normal;
}

.about-inner p {
	font-size: 24px;
	font-weight: 400;
	text-transform: none;
	line-height: 44px;
	margin-bottom: 40px;
	letter-spacing: 3px;
}

.about-inner .line {
	width: 60px;
	height: 1px;
	background: var(--dark-color);
	margin: 20px auto;
}

.about-img {
	background: var(--color-primary);
}

.about-img {
	text-align: center;
}

.about-img img {
	width: 72%;
	transition-duration: 1s;
}

.about-img img:hover {
	transform: scale(1.1);
}

.about-text {
	background: var(--color-primary);
	padding: 100px 0 30px;
}

.about-text small {
	font-size: 13px;
	font-family: Lato;
	font-weight: 700;
	letter-spacing: 2px;
}

.about-text h2 {
	margin-bottom: 20px;
	font-family: Lato;
	font-weight: 700;
	font-size: 30px;
	text-transform: uppercase;
	line-height: 38px;
	letter-spacing: 2px;
	padding-bottom: 20px;
}

.about-text .columns {
	display: flex;
	gap: 40px;
	padding: 0 20px;
}

.about-text .columns div {
	width: 50%;
}

.about-text .columns p {
	font-size: 18px;
	line-height: 1.3em;
	text-align: justify;
}

.dark-section {
	background: #000;
	text-align: center;
}

.dark-section h2 {
	padding-top: 40px;
	padding-bottom: 10px;
	font-size: 36px;
	text-transform: uppercase;
	line-height: 34px;
	font-family: Lato;
	font-weight: 700;
	letter-spacing: 3px;
	white-space: nowrap;
}

.dark-section h3 {
	letter-spacing: 3px;
	font-size: 27px;
	font-weight: 400;
	text-transform: none;
	font-style: normal;
	line-height: 34px;
	font-family: Lato;
	margin-bottom: 70px;
}

.dark-section .content {
	max-width: 600px;
	margin: 0 auto;
}

.dark-section p {
	font-size: 18px;
	line-height: 1.3em;
	text-align: justify;
}

.about-btn {
	margin-top: 50px;
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	fill: #818181;
	color: #818181;
	background-color: rgba(0, 0, 0, 0);
	border-style: solid;
	border-width: 2px 2px 2px 2px;
	padding: 30px 30px 30px 30px;
}
.about-btn i{
	margin-left: 20px;
}
.about-btn:hover {
	color: #000000;
	background-color: #818181;
	border-color: rgba(0, 0, 0, 0);
	animation-name: animation-bob-float, animation-bob;
	animation-duration: .3s, 1.5s;
	animation-delay: 0s, .3s;
	animation-timing-function: ease-out, ease-in-out;
	animation-iteration-count: 1, infinite;
	animation-fill-mode: forwards;
	animation-direction: normal, alternate;
}

/************************************/
/*** 	    artist Page CSS            ***/
/************************************/
.text-center {
	text-align: center;
}

.main-artist {
	padding: 210px 20px 50px;
}

.inner-sec-title::after {
	content: "";
	width: 30px;
	height: 2px;
	background: var(--white);
	display: block;
	margin: 30px auto 0;
}

.box-img {
	position: relative;
	transition: 0.3s;
}

.box-img::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	bottom: 0;
	transition: 0.3s;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.9) 99%, rgba(0, 0, 0, 1) 100%);
}

.box-img:hover:after {
	background: none;
	transition: 0.3s;
}

.main-artist .artist-grid {
	padding-top: 85px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}

.main-artist .artist-card {
	display: block;
	background: var(--white);
	border-radius: 6px;
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.main-artist .artist-card img {
	width: 100%;
	height: 360px;
	object-fit: cover;
	display: block;
	object-position: top center;
}

.main-artist .artist-info {
	background: var(--white);
	padding: 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.main-artist .artist-info span {
	font-size: 32px;
	font-weight: 600;
	line-height: 28px;
	color: #000000;
	font-family: "Poppins";
	text-transform: capitalize;
	letter-spacing: -1.5px;
}

.main-artist .artist-info .arrow {
	font-size: 26px;
	rotate: 45deg;
}

/************************************/
/*** 	    News Page CSS            ***/
/************************************/
.main-news {
	padding: 210px 0 50px;
}

.main-news .news-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	padding-top: 80px;
}

.main-news .news-card {
	position: relative;
	overflow: hidden;
	height: 580px;
	cursor: pointer;
	display: inline-block;
}

.main-news .news-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.main-news .news-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.9) 99%, rgba(0, 0, 0, 1) 100%);
	transition: 0.3s all;
}

.main-news .news-card:hover:after {
	background: none;
}

.main-news .news-date {
	position: absolute;
	top: 0px;
	left: 0px;
	background: #000;
	color: var(--font-light);
	padding: 10px 20px;
	font-size: 13px;
	font-weight: 600;
	line-height: 19px;
	z-index: 2;
	transition: transform 0.4s ease, opacity 0.4s ease;
}

.main-news .news-content {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 20px;
	color: var(--font-light);
	z-index: 2;
	transition: transform 0.4s ease, opacity 0.4s ease;
}

.main-news .news-content h3 {
	font-family: Lato;
	font-weight: 700;
	font-size: 28px;
	line-height: 28px;
	text-transform: uppercase;
	margin-bottom: 20px;
	letter-spacing: 3px;
}

.main-news .news-card:hover .news-date {
	transform: translateY(-40px);
	opacity: 0;
}

.main-news .news-card:hover .news-content {
	transform: translateY(100%);
	opacity: 0;
}

/************************************/
/*** 	    Jobs Page CSS            ***/
/************************************/
.job-section {
	padding: 50px 0;
}

.job-page-header {
	background: var(--color-primary);
}

.job-page {
	padding-top: 130px;
}

.job-banner {
	background: linear-gradient(to top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.5) 100%),
		url('../image/job-banner.jpg');
	background-size: cover;
	background-position: center;
	color: var(--font-light);
	padding: 180px 0px 40px;
	position: relative;
}

.job-banner h1 {
	font-family: Poppins;
	text-transform: uppercase;
	letter-spacing: -0.5px;
	font-size: 55px;
	padding: 0px 15px 0px 100px;
	display: inline;
	font-weight: bold;
	background-image: linear-gradient(to bottom, transparent 8px, #222222 8px, #222222 68px, transparent 68px);
	line-height: 56px;
}

.job-banner .tag {
	font-family: Poppins;
	text-transform: uppercase;
	letter-spacing: -0.25px;
	font-size: 30px;
	padding: 0px 12px 0px 100px;
	display: inline;
	background-image: linear-gradient(to bottom, transparent 2px, #222222 2px, #222222 65px, transparent 65px);
	line-height: 30px;
}

.job-section .left {
	flex: 2;
	padding-right: 50px;
}

.job-section .search-box input {
	margin: 0px 0px 0px 0px;
	padding: 0px 5px 0px 7px;
	font-size: 14px;
	height: 28px;
	color: var(--color-primary);
	border: 1px solid #999999;
	border-radius: 0px;
	background-color: var(--white);
	width: 270px;
	text-align: left;
	background-image: url('../image/mag_icon_sml.png');
	background-repeat: no-repeat;
	background-position: 97% 4px;
}

.job-section .section-title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
	color: var(--dark-color);
}

.job-content {
	display: flex;
	gap: 30px;
	padding-top: 35px;
}

.job-section .job {
	padding: 15px 0;
	border-bottom: 1px solid #ddd;
	display: flex;
	align-items: center;
	gap: 15px;
}

.job-section .job-date {
	color: var(--color-primary);
	font-size: 15px;
	min-width: 145px;
	font-weight: bold;
}

.job-section .view-btn {
	background: #f2c200;
	color: var(--font-light);
	padding: 5px 10px;
	font-size: 12px;
	line-height: 15px;
	font-weight: bold;
	border: none;
}

.job-section .job-title {
	font-size: 15px;
	color: #333;
}

.job-section .right {
	width: 420px;
	background: #eee;
	padding: 20px;
}

.job-section .right h3 {
	color: var(--color-primary);
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 400;
}

.job-section .right p {
	font-size: 14px;
	margin-bottom: 15px;
	line-height: 1.5;
	color: #333;
}

.job-section .divider {
	border-top: 1px solid #ccc;
	margin: 15px 0;
}
/************************************/
/*** Jobs detail Page CSS            ***/
/************************************/
.job-detail {
  padding: 20px;
  border: 2px solid #f4b400;
  background: #f9f9f9;
  font-family: Arial, sans-serif;
  color: #333;
}
.job-detail h2{
	font-style: normal;
    font-size: 24px !important;
	font-weight: 400;
    line-height: 30px;
	margin-bottom: 20px;
    color: #333333;
    text-decoration: none;
}

.job-meta .row {
  display: flex;
  border-bottom: 1px solid #f4b400;
  padding: 8px 0;
}

.job-meta .row span {
	width: 180px;min-width: 180px;
	color: var(--color-primary);
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
}

.job-meta .row p {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
}

.job-section h3 {
  color: var(--color-primary);
  font-size: 18px;
  margin-bottom: 10px;
}

.job-section ul {
  padding-left: 20px;
  margin: 0;
}

.job-section ul li {
  margin-bottom: 8px;
  line-height: 1.5;
  font-size: 14px;
  line-height: 18px;
}

.job-footer {
  padding-top: 20px;
}

.apply-btn {
  background: var(--color-primary);
  color: var(--font-light);
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.apply-btn span {
  font-size: 16px;
}

.apply-btn:hover {
  background: var(--color-primary);
}
/************************************/
/*** 	    Jobs apply Page CSS            ***/
/************************************/
.job-apply{
	margin-bottom: 250px;
}
form,fieldset {
    margin: 0;
    padding: 0;
    border-style: none
}
.store_form_section {
    margin: 60px 0px 16px 0px;
    padding: 0px 0px 6px 0px;
    position: relative;
    width: 100%;
    border-bottom: 2px solid #222222;
}
.store_form_line {
    margin: 0px 0% 0px 0%;
    padding: 0px 0px 0px 0px;
    float: left;
    text-align: left;
    width: 100%;
    min-height: 30px;
}
.store_form_section p {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    font-size: 18px;
    line-height: 24px;
    color: var(--color-primary);
    text-decoration: none;
    text-align: left;
}
.store_form_content_wrapper p {
    color: #000 !important;
    font-family: Lato;
}
.store_form_section {
    margin: 60px 0px 16px 0px;
    padding: 0px 0px 6px 0px;
    position: relative;
    width: 100%;
    border-bottom: 2px solid #222222;
}
.store_form_content_wrapper .store_form_section p {
    color: var(--color-primary) !important;
}
.job_apply_cntr {
    float: left;
    width: 100%;
}
.job_apply_50 {
    float: left;
    width: 50%;
}
.store_form_line_l {
    margin: 0px 0% 0px 0%;
    padding: 0px 2% 0px 0px;
    float: left;
    text-align: left;
    width: 23%;
    min-height: 30px;
}
.store_form_line_r {
    margin: 0px 0% 0px 0%;
    padding: 0px 0% 0px 0px;
    float: left;
    text-align: left;
    width: 75%;
    min-height: 30px;
}
form select#title {
    max-width: 414px !important;
    height: 28px !important;
    width: 100%;
}
.form_entry_box {
    margin: 0px 0px 12px 0px;
    padding: 1px 6px 1px 6px;
    font-size: 14px;
    color: #054363;
    border-radius: 0px;
    border: 1px solid #999999;
    box-shadow: inset 0px 0px 5px #e5e5e5;
    width: 90%;
    max-width: 400px;
    height: 23px;
}
.job-apply input[type="text"], 
.job-apply input[type="password"], 
.job-apply input[type="file"], 
.job-apply input[type="email"], 
.job-apply input[type="submit"], 
.job-apply textarea {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}
.store_form_content_wrapper p, .store_form_p1 {
    color: #000 !important;
    font-family: Lato;
	font-size: 14px;
    line-height: 20px;
	margin: 0px 0px 0px 0px;
    padding: 3px 0px 0px 0px;
}
.job-apply .radio-inline label{
	color: var(--dark-color);
}
.radio-inline, .checkbox-inline {
    display: inline-block;
    padding-left: 0px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: normal;
    cursor: pointer;
}
.store_form_p2{
    color: #000 !important;
    font-family: Lato;
	font-size: 14px;
    line-height: 20px;
	margin: 0px 0px 0px 0px;
    padding: 3px 0px 0px 0px;
}
.store_form_content_wrapper p.store_form_p1.store_form_p1_space_after.store_form_align_left a, span.cst_requi {
    color: var(--color-primary);
}
.store_form_align_right {
    text-align: right;
}
.radio-inline label.top {
    color: #000;
    font-size: 15px;
    display: flex;
    margin-top: -10px;
}
.store_form_section p{
	font-size: 18px;
}
button#submitJobApply {
    border: none;
    margin: 0px 0px 0px 0px;
    padding: 14px 30px 16px 30px;
    background-color: #cc0000;
    display: inline-block;
    color: #ffffff;
    font-family: "din700", Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 10%;
}
.cus_apply_btn button#submitJobApply {
    background: #e92d27;
    cursor: pointer;
}
.cus_apply_btn .store_form_line_l.delete_for_mobile {
    display: none !important;
}
.cust_declaration .store_form_line_l {
    width: auto;
}
/************************************/
/*** 	    Contact Page CSS            ***/
/************************************/
.contact-section {
	background: url('../image/event_banner-1.jpg') no-repeat top/cover;
	position: relative;
	padding: 310px 20px 50px;
}

.contact-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.50);
}

.contact-section .container {
	position: relative;
	max-width: 1200px;
	margin: auto;
}

.contact-section .top-bar {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}

.contact-section .top-bar h2 {
	font-size: 22px;
	letter-spacing: 2px;
}

.contact-section .line {
	height: 2px;
	background: var(--font-light);
	margin-top: 10px;
}

.contact-section .content {
	display: flex;
	gap: 15px;
}

.contact-section .left {
	width: 30%;
}

.contact-section .left h2,
.contact-section .right h2 {
	font-family: Lato;
	border-bottom: 4px solid;
	padding-bottom: 20px;
	margin-bottom: 75px;
	font-weight: 700;
	font-size: 28px;
	line-height: 28px;
	text-transform: uppercase;
	color: var(--font-light);
	letter-spacing: 3px;
}
.contact-section .left h3.sec-title, .contact-section .right h3.sec-title{
	font-size: 22px;
	letter-spacing: 3px;
}
.contact-section .left h3, .contact-section .right h3 {
	margin-bottom: 10px;
	font-size: 18px;
}
.contact-section .left h3.phone{
	display: flex;
	align-items: center;
}
.contact-section .left h3.phone img{
	max-width: 80px;
}

.contact-section .left p {
	margin-bottom: 10px;
	font-size: 15px;
	padding-right: 20px;
}

.contact-section .section {
	margin-bottom: 15px;
}

.contact-section .right {
	width: 70%;
}

.contact-section .right h3 {
	margin-bottom: 20px;
}

.contact-section form label {
	display: block;
	margin-bottom: 5px;
	font-size: 14px;
}

.contact-section form input,
.contact-section form textarea {
	width: 100% !important;
	box-sizing: border-box;
	box-shadow: none;
	clear: both;
	color: #4E4E4E;
	display: block;
	font-size: 15px;
	margin-bottom: 15px;
	padding: 15px 15px;
}
.contact-section form input[type=submit]{
	color: var(--font-light);
	background: var(--color-primary);
	border: 0;
	text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
}
.contact-section .wpcf7-spinner{
	display: none;
}
.contact-section textarea {
	height: 150px;
	resize: none;
}

.contact-section button {
	width: 100%;
	padding: 15px;
	background: var(--color-primary);
	color: var(--font-light);
	border: none;
	font-weight: bold;
	letter-spacing: 2px;
	cursor: pointer;
	font-size: 16px;
}

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

.contact-section .thank-you {
	display: none;
	text-align: center;
	background: rgba(0, 0, 0, 0.8);
	padding: 40px;
	border: 1px solid var(--white);
}

.contact-section .thank-you h2 {
	color: #00ff99;
	margin-bottom: 10px;
}

/************************************/
/*** 	    Single Blog CSS         ***/
/************************************/
.single-blog .container {
	padding: 220px 20px 50px;
}

.single-blog h1 {
	margin-bottom: 30px;
	font-weight: 700;
	font-style: normal;
	font-size: 28px;
	line-height: 36px;
	letter-spacing: 3px;
}

.inner-blog-content {
	display: flex;
	gap: 55px;
}

.inner-blog-content .main {
	flex: 2;
}

.inner-blog-content .sidebar {
	flex: 1;
}

.inner-blog-content .main img {
	width: 100%;
	display: block;
	margin-bottom: 20px;
}

.inner-blog-content .date {
	margin: 20px 0;
	font-size: 18px;
	font-weight: 700;
}

.inner-blog-content .headline {
	font-weight: bold;
	margin-bottom: 10px;
}

.inner-blog-content p a {
	color: var(--font-light);
}

.back-btn {
	font-family: "Poppins", Sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--color-primary);
	background-color: var(--white);
	border: 0;
	padding: 12px 20px 12px 20px;
	cursor: pointer;
}

.inner-blog-content .buttons {
	display: block;
	float: right;
	position: relative;
	width: 300px;
}

.inner-blog-content .buttons i {
	font-size: 25px;
	padding: 8px;
	line-height: 1em;
	color: var(--font-light);
}

.inner-blog-content .search-box {
	display: flex;
	margin-bottom: 30px;
	gap: 5px;
}

.inner-blog-content .search-box input {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	height: 40px;
	width: 66%;
	background-color: var(--white);
	padding: 8px;
	border: none;
	border: 1px solid #353535;
	min-width: 232px;
	box-sizing: border-box;
}

.inner-blog-content .search-box button {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 0px;
	height: 40px;
	background-color: #000000;
	color: var(--font-light);
	padding: 13px;
	border: none;
	text-transform: uppercase;
}

.inner-blog-content .sidebar h3 {
	margin-top: 20px;
	font-size: 14px;
	text-transform: uppercase;
}

.inner-blog-content .sidebar ul {
	list-style: none;
	padding: 0;
	font-size: 14px;
}

.inner-blog-content .sidebar li a {
	margin: 10px 0;
	color: var(--font-light);
	font-size: 16px;
}

.inner-blog-content .sidebar .archive li a {
	margin: 0;
}

.inner-blog-content .social {
	margin-top: 20px;
}

.inner-blog-content .social span {
	margin-right: 10px;
}

/************************************/
/*** 	    Single Artist CSS         ***/
/************************************/
.single-artist iframe{
  border: 0;
}
.single-artist .artist-banner {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.single-artist .artist-banner img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.single-artist .hero-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--font-light);
	z-index: 999;
}

.single-artist .hero-text h1 {
	font-size: 84px;
	line-height: 75px;
	color: var(--font-light);
	letter-spacing: 3px;
	font-weight: 700;
	white-space: nowrap;
	text-transform: uppercase;
}

.single-artist .music-bar {
	background: #eee;
	display: flex;
	justify-content: space-between;
	padding: 15px;
	align-items: center;
}

.single-artist .music-left {
	display: flex;
	gap: 10px;
}

.single-artist .music-left img {
	width: 50px;
}

.single-artist .music-controls span {
	margin: 0 10px;
	cursor: pointer;
}

.single-artist .content {
	display: flex;
	justify-content: space-between;
	gap: 70px;
	padding: 40px 0 50px;
}

.single-artist .sidebar {
	width: 25%;
}

.single-artist .sidebar h2 {
	font-size: 36px;
	line-height: 36px;
	font-weight: 700;
	font-family: Lato;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.single-artist .sidebar ul {
	list-style: none;
	padding: 0;
}

.single-artist .sidebar li {
	margin: 8px 0;
}

.single-artist .sidebar .social-link li a {
	display: flex;
	gap: 15px;
	align-items: center;
	font-size: 16px;
	line-height: 24px;
	color: var(--font-light);
}

.single-artist .main {
	width: 70%;
}

.single-artist .section-title {
	border-bottom: 2px solid var(--white);
	padding-bottom: 10px;
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.single-artist .video img {
	width: 100%;
	margin: 20px 0;
}

.single-artist .stats {
	font-size: 34px;
	text-transform: uppercase;
	line-height: 34px;
	margin: 50px 0 30px;
	font-family: Lato;
	font-weight: 700;
}

.single-artist h5 {
	font-family: "Lato", Sans-serif;
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 34px;
	margin-bottom: 20px;
}

.single-artist .playlists {
	margin-top: 30px;
}

.single-artist .playlists ul {
	display: flex;
	gap: 30px;
}

.single-artist .playlists ul li {
	list-style-type: none;
}

.single-artist .playlists ul li i {
	font-size: 23px;
}

.single-artist .playlists ul li a {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: "Poppins", Sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: var(--font-light);
}

.single-artist .playlists ul li a:hover {
	color: rgb(171, 178, 196);
}

.single-artist .platforms span {
	margin-right: 20px;
}

.bg-dark {
	background: #000;
}

.single-artist .footer-nav {
	display: flex;
	justify-content: space-between;
	padding: 40px 20px 20px;
}

.single-artist .footer-nav a {
	font-size: 24px;
	font-weight: 500;
	color: var(--font-light);
	position: relative;
}

.single-artist .footer-nav a.next {
	text-align: right;
}

.single-artist .footer-nav a.next::after {
	content: "\f30b";
	font-family: Font Awesome\ 5 Free, Font Awesome\ 5 Brands, Fontello;
	font-weight: 900;
	position: absolute;
	right: -35px;
	top: 0;
}

.single-artist .footer-nav a.prev::after {
	content: "\f30a";
	font-family: Font Awesome\ 5 Free, Font Awesome\ 5 Brands, Fontello;
	font-weight: 900;
	position: absolute;
	left: -35px;
	top: 0;
}

.single-artist .footer-nav a span {
	display: block;
	font-size: 18px;
}

.footer-nav.single-item {
	justify-content: end;
}

.video-box {
	position: relative;
	width: 800px;
	max-width: 100%;
	cursor: pointer;
}

.video-box img {
	width: 100%;
	display: block;
}

.play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 70px;
	height: 50px;
	background: red;
	transform: translate(-50%, -50%);
	border-radius: 12px;
}

.play-btn::after {
	content: '';
	position: absolute;
	left: 26px;
	top: 15px;
	border-style: solid;
	border-width: 10px 0 10px 16px;
	border-color: transparent transparent transparent white;
}


/* =========================
TOP PLAYER
========================= */
.track-card {
	background: var(--white);
	display: flex;
	align-items: center;
	padding: 10px;
	gap: 20px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
	margin: -40px auto 0;
	position: relative;
	z-index: 10;
	max-width: 100%;
}

.track-thumb {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 2px;
	flex-shrink: 0;
}

.track-info {
	flex: 1;
}

.track-info h3 {
	font-family: Poppins;
	font-weight: 600;
	font-size: 23px;
	color: rgb(53, 53, 53);
}

.track-info p {
font-size: 18px;
    color: rgb(53, 53, 53);
    font-family: Poppins;
    font-weight: 600;
    margin: 0;
}

.track-controls {
	display: flex;
	align-items: center;
	gap: 16px;
}

.ctrl-btn {
	background: none;
	border: none;
	cursor: pointer;
	color: var(--color-primary);
	font-size: 18px;
	transition: color .2s;
}

.ctrl-btn:hover {
	color: var(--color-primary);
}

.play-btn-card {
	background: none;
	border: none;
	cursor: pointer;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--color-primary);
	transition: transform .2s;
}

.play-btn-card:hover {
	transform: scale(1.15);
}


#bottom-player {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: var(--white);
	padding: 10px;
	height: 72px;
	display: flex;
	align-items: center;
	gap: 14px;
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
	transform: translateY(100%);
	transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

#bottom-player.visible {
	transform: translateY(0);
}

.bp-thumb {
	width: 70px;
	height: 70px;
	object-fit: cover;
	flex-shrink: 0;
}

.bp-info {
	flex-shrink: 0;
	line-height: 1.3;
}

.bp-title {
    font-family: Poppins;
    font-weight: 600;
    font-size: 18px;
    color: rgb(129, 129, 129);
}

.bp-artist {
	font-size: 12px;
  font-weight: 600;
  font-family: Poppins;
	color: #888;
}

.bp-controls {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.bp-ctrl {
	background: none;
	border: none;
	cursor: pointer;
	color: var(--color-primary);
	font-size: 15px;
	transition: color .2s;
}

.bp-ctrl:hover {
	color: var(--color-primary);
}

#bp-play {
	background: none;
	border: none;
	cursor: pointer;
	color: var(--color-primary);
	font-size: 22px;
	line-height: 1;
	transition: transform .2s;
}

#bp-play:hover {
	transform: scale(1.2);
}

.bp-time {
	font-size: 12px;
	color: #555;
	flex-shrink: 0;
	min-width: 34px;
}

.waveform-wrap {
	flex: 1;
	display: flex;
	align-items: center;
	height: 100%;
	position: relative;
	cursor: pointer;
	overflow: hidden;
}

#waveform-canvas {
	width: 100%;
	height: 40px;
	display: block;
}

.bp-vol {
	font-size: 16px;
	color: #999;
	flex-shrink: 0;
	cursor: pointer;
}

.bp-vol:hover {
	color: var(--color-primary);
}
#bp-close {
  position: absolute;
  right: 0;
  top: 0px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--font-light);
  background: var(--color-primary);
  transition: 0.2s;
}
.apply-label-main{
	padding-top: 207px;
}