/* 

*/

/* Table of Content ================================================== 

1.Preloader
2.Site wrapper
3.Search form
4.To the top
5.About section
6.Discography section
7.Band section
8.Tours section
9.Gallery section
10.News section
11.Contact section
12.Footer section
13.Mediaqueries 




/*Preloader*/

.loader {
	background: #141414;
	bottom: 0;
	height: 100%;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 10000;
}
.loader-inner {
	left: 0;
	position: absolute;
	top: 50%;
	width: 100%;
	text-align: center;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}
.loading-spinner {
	width: 6.25rem;
	height: 6.25rem;
	animation: spinner-rotate 2s ease-in-out infinite;
	-webkit-animation: spinner-rotate 2s ease-in-out infinite;
	-moz-animation: spinner-rotate 2s ease-in-out infinite;
	-ms-animation: spinner-rotate 2s ease-in-out infinite;
	-o-animation: spinner-rotate 2s ease-in-out infinite;
}
.spinner {
	animation: spinner-color 8s ease-in-out infinite, spinner-dash 2s ease-in-out infinite;
	-webkit-animation: spinner-color 8s ease-in-out infinite, spinner-dash 2s ease-in-out infinite;
	-moz-animation: spinner-color 8s ease-in-out infinite, spinner-dash 2s ease-in-out infinite;
	-ms-animation: spinner-color 8s ease-in-out infinite, spinner-dash 2s ease-in-out infinite;
	-o-animation: spinner-color 8s ease-in-out infinite, spinner-dash 2s ease-in-out infinite;
	stroke-linecap: round;
}
@keyframes spinner-rotate {
	100% {
		transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-moz-transform: trotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
	}
}
@keyframes spinner-color {
	0%, 100% {
		stroke: #ffffff;
	}
}
@keyframes spinner-dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 90, 200;
		stroke-dashoffset: -35px;
	}
	100% {
		stroke-dasharray: 90, 200;
		stroke-dashoffset: -125px;
	}
}
/*End preloader*/

/*Site wrapper*/

.wrapper {
	position: relative;
	background: #000000;
}
.wrapper,
.header {
	margin: 0 auto;
	max-width: 1600px;
	position: relative;
}
/*End site wrapper*/

/*To the top*/

.block-top:not(.active) {
	opacity: 0;
	transform: translate3d(0, 20px, 0);
	-webkit-transform: translate3d(0, 20px, 0);
	-moz-transform: translate3d(0, 20px, 0);
	pointer-events: none;
}
.block-top {
	position: fixed;
	width: 3.2rem;
	height: 3.2rem !important;
	background: #000000;
	text-align: center;
	right: 2.875rem;
	bottom: 3.6875rem;
	padding-top: .6rem;
	z-index: 100;
	color: #ffffff;
	border-radius: 50%;
}
.block-top i {
	font-size: 1.2rem;
}
/*End to the top*/

/* Hero Section*/

.background-img img {
	display: none;
}
.background-img {
	width: 100%;
	height: 100%;
}
.background-img {
	background-attachment: scroll;
	background-clip: border-box;
	background-color: #000000;
	background-image: none;
	background-origin: padding-box;
	background-position: 50% 50% !important;
	background-repeat: repeat;
	background-size: cover !important;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}
.overlay:before{
	position: absolute;
	background: rgba(0, 0, 0, .5);
	background: -moz-linear-gradient(top, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, 0.5) 55%, rgba(0, 0, 0, 1) 100%);
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, 0.5) 55%, rgba(0, 0, 0, 1) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, 0.5) 55%, rgba(0, 0, 0, 1) 100%);
	filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	content: "";
	z-index: 2;
}
.slider .slides li {
	background-size: cover;
	height: 1050px;
}
.header {
	background-color: rgba(0, 0, 0, 0.8);
	left: 0;
	right: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
}
.header .logo {
	display: inline-block;
	height: 33px;
	margin-top: 1rem;
}
.header .logo img {
	max-height: 70%;
	opacity: .5;
}
.header .logo:hover img {
	opacity: 1;
}
.mobile-but {
	height: 1.5rem;
	position: absolute;
	right: 15px;
	top: -32px;
	z-index: 1000;
	display: none;
}
.mobile-but .lines {
	transform: translate(0px, 10px) rotate(0deg);
	-webkit-transform: translate(0px, 10px) rotate(0deg);
	-ms-transform: translate(0px, 10px) rotate(0deg);
	-moz-transform: translate(0px, 10px) rotate(0deg);
}
.mobile-but .lines,
.mobile-but .lines:after,
.mobile-but .lines:before {
	height: 0.125rem;
	width: 1.5625rem;
	border-radius: 3px;
}
.mobile-but .lines:after,
.mobile-but .lines:before {
	content: " ";
	display: block;
}
.mobile-but .lines:after {
	transform: translate(0px, 4px) rotate(0deg);
	-webkit-transform: translate(0px, 4px) rotate(0deg);
	-ms-transform: translate(0px, 4px) rotate(0deg);
	-moz-transform: translate(0px, 4px) rotate(0deg);
}
.mobile-but .lines:before {
	transform: translate(0px, -4px) rotate(0deg);
	-webkit-transform: translate(0px, -4px) rotate(0deg);
	-ms-transform: translate(0px, -4px) rotate(0deg);
	-moz-transform: translate(0px, -4px) rotate(0deg);
}
.mobile-but .lines:after,
.mobile-but .lines:before {
	background: #ffffff;
}
.toggle-mobile-but.active .mobile-but .lines:after {
	transform: translate(0px, -1px) rotate(45deg);
	-webkit-transform: translate(0px, -1px) rotate(45deg);
	-ms-transform: translate(0px, -1px) rotate(45deg);
	-moz-transform: translate(0px, -1px) rotate(45deg);
}
.toggle-mobile-but.active .mobile-but .lines:before {
	transform: translate(0px, 1px) rotate(-45deg);
	-webkit-transform: translate(0px, 1px) rotate(-45deg);
	-ms-transform: translate(0px, 1px) rotate(-45deg);
	-moz-transform: translate(0px, 1px) rotate(-45deg);
}
.main-nav li {
	display: inline-block;
	font-size: .75rem;
	margin-left: 1.9625rem;
	text-transform: uppercase;
	font-weight: 500;
}
.main-menu li a,
.main-nav li span {
	color: #ffffff;
	position: relative;
	padding: 1.2rem 0;
}
.main-nav li span.search-ico {
	cursor: pointer;
	color: #ff5252;
}
.hero-content {
	color: #ffffff;
	position: relative;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	z-index: 40;
}
h1.large {
	font-size: 4.5rem;
	line-height: 1.3;
	font-family: 'Permanent Marker', cursive;
}
.video-play-but {
	background: #ffffff;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	display: inline-block;
	height: 5.3125rem;
	width: 5.3125rem;
	position: relative;
}
.video-play-but:after {
	border-color: transparent transparent transparent #000000;
	border-style: solid;
	border-width: 10px 0 10px 15px;
	content: "";
	height: 0;
	margin-left: -0.375rem;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}
.video-play-but:hover {
	background-color: transparent;
	border: 2px solid #ffffff;
}
.video-play-but:hover:after {
	border-color: transparent transparent transparent #ffffff;
}
/* End hero Section*/

/* About section*/
ul.block-images li:first-child {
	padding-right: 10px;
}
ul.block-images li:last-child {
	padding-left: 10px;
}
/* End about Section*/

/* Latest album section*/

/* Audio player*/

.block-tracklist .audiojs {
	background-image: none;
	background-color: #1a1a1a;
	-webkit-box-shadow: none;
	box-shadow: none;
	width: 100%;
	height: 7.3rem;
	display: none;
}
/* .block-tracklist .audiojs .scrubber {
     background-color: rgba(255, 255, 255, 0.7);
     position: absolute;
     height: 4px;
     top: 33px;
     z-index: 9999;
     width: calc(100% - 130px);
     left: 55px;
     border-top: 0;
}
 .block-tracklist .audiojs .time {
     position: absolute;
     text-shadow: none;
     border: none;
     height: auto;
     line-height: normal;
     margin: 0;
     padding: 0;
     top: 20px;
     right: 62px;
}
 .block-tracklist .audiojs .progress{
     border-radius: 0;
}
 .block-tracklist .audiojs .play-pause{
     height: 55px;
     width: 35px;
}
 .block-tracklist .audiojs p{
     position: relative;
     top: 27px;
     left: 7px;
}*/

.block-tracklist .audiojs .play-pause {
	border-right: 0;
}
.block-tracklist .block-lyrics {
	display: none;
	margin: 0 auto;
}
.block-tracklist .block-lyrics p {
	color: #cccccc;
}
.block-tracklist .playlist {
	border: 1px solid #444444;
	border-radius: 3px;
}
.block-tracklist .playlist li {
	padding-bottom: 1rem;
	padding-left: 2.5rem;
	padding-top: 1rem;
	padding-right: 1.5rem;
	cursor: pointer;
	position: relative;
}
.block-tracklist .playlist li:not(:last-child) {
	border-bottom: 1px solid #444444;
}
.block-tracklist .playlist li:before {
	background: #121212;
	content: '';
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	transition: all 0.45s ease;
	-webkit-transition: all 0.45s ease;
	-moz-transition: all 0.45s ease;
	-ms-transition: all 0.45s ease;
}
.block-tracklist .playlist li:hover:before,
.block-tracklist .playlist li.playing:before {
	width: 100%;
	left: 0;
}
.block-tracklist .playlist li:after {
	content: "\e8d4";
	font-family: "fontello";
	position: absolute;
	left: 1.75rem;
	top: 1.5rem;
	font-size: 0.5625rem;
	color: #000000;
	background: #444444;
	width: 1.875rem;
	height: 1.875rem;
	border-radius: 50%;
	text-align: center;
	line-height: 30px;
}
.block-tracklist .playlist li.playing:after {
	content: "\e8d8";
	background: #ffffff;
}
.block-tracklist .playlist li.playing.pause:after {
	content: "\e8d4";
	background: #ffffff;
}
span.selected,
a.selected {
	color: #ffffff !important;
}
/* End audio player*/

/* End latest album player*/

/* Discography sectionr*/
.block-album {
	border-radius: 3px;
	border: 1px solid #444444;
	overflow: hidden;
}
.block-teaser {
	text-transform: uppercase;
}
.block-teaser p {
	font-weight: 700;
	font-size: 1.5rem;
	padding-bottom: .5rem;
}
.countdown {
	font-size: 3rem;
	font-weight: 300;
	letter-spacing: .34rem;
}
/* End discography Section*/

/* Tours section*/

.block-tabs li {
	margin: 0 .78125rem;
	cursor: pointer;
	position: relative;
	padding: 0 .25rem;
	color: #ffffff;
	opacity: .5;
}
.block-tabs li.active {
	opacity: 1;
}
.block-tab {
	border: 1px solid #444444;
	border-bottom: 0;
	border-radius: 3px;
	position: relative;
	border-left: 0;
	border-right: 0;
}
.block-tab:after,
.block-tab:before {
	position: absolute;
	content: "";
	width: 1px;
	height: 93.5%;
	background: #444444;
	top: 0;
	z-index: 10;
}
.block-tab:after {
	left: 22.9%;
}
.block-tab:before {
	left: 73.3%
}
.block-tour {
	border-bottom: 1px solid #444;
	padding-bottom: 1rem;
	padding-top: 1rem;
	padding-right: 1.5rem;
	padding-left: 0;
}
.block-tour:before {
	background: #121212;
	content: '';
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	transition: all 0.45s ease;
	-webkit-transition: all 0.45s ease;
	-moz-transition: all 0.45s ease;
	-ms-transition: all 0.45s ease;
}
.block-tour:hover:before {
	width: 100%;
	left: 0;
}
.block-tour .col-lg-3 h3 {
	position: relative;
	top: 10px;
}
.block-tour .col-lg-4 a,
ol.playlist .col-lg-6 a {
	position: relative;
	top: 8px;
}
.block-tab li,
.block-tab li .block-video {
	display: none;
}
.block-tab li.active,
.block-tab li.active .block-video {
	display: block;
}
.block-video {
	background: #000;
	position: relative;
	overflow: hidden;
}
.video-play-ico {
	position: absolute;
	top: 50%;
	left: 105%;
	z-index: 2;
	color: #ffffff;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	opacity: .7;
}
.video-play-ico:hover {
	opacity: 1;
}
.video-play-ico i {
	font-size: 20px;
}
/* End tours section*/

/*Email section*/

.block-email-form {
	position: relative;
}
.block-email-form .email-form input[type="text"] {
	border: none;
	background: rgba(255, 255, 255, .4);
	border-radius: 25px;
	padding-left: 30px;
}
.block-email-form .email-form button[type="submit"] {
	position: absolute;
	right: 0;
	border-radius: 25px;
	background: rgba(255, 255, 255, .4);
	border: none;
	padding: 0.76rem 1.9rem;
	color: #ffffff;
}
/*End emial section*/

/*Gallery section*/

.block-filter li {
	margin: 0 .78125rem;
	margin-right: 0.78125rem;
	cursor: pointer;
	position: relative;
	padding: 0 .25rem;
}
.block-filter li a {
	color: #ffffff;
	opacity: .5;
}
.block-filter li a.active {
	opacity: 1;
}
.block-card {
	margin-bottom: 30px;
}
.disable:before {
	opacity: .7;
	background: #141414;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}
.card-gallery.image-gallery {
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	-webkit-column-gap: 30px;
	-moz-column-gap: 30px;
	column-gap: 30px;
}
.card-gallery > * {
	width: 100%;
	z-index: 2;
	position: relative;
}
/*End gallery section*/

/*Socials section*/

.btn-absolute {
	position: absolute;
	z-index: 1;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	top: 50%;
}
.block-instafeed li {
	width: 20%;
	margin-right: .5rem !important;
	margin-left: .5rem;
}
.block-instafeed li:nth-last-of-type(-n+4) img {
	margin-bottom: 0;
}
.block-tweets {
	position: relative;
}
.block-tweets .tweet {
	margin-top: 1rem;
	font-size: 1rem;
}
.block-tweets .slides p {
	margin-bottom: 0;
}
.block-tweets .slides p a {
	text-decoration: underline;
	color: #999999;
}
.block-tweets .slides p a:hover {
	text-decoration: none;
}
.block-tweets .slides p.timePosted a{
     margin-top: 1rem;
     display: inline-block;
     font-size: .9375rem;
}
 .block-tweets .slides p.interact, .block-tweets .slides .user a img, .block-tweets .slides .user a span{
     display: none;
}

 .block-tweets .slides .user [data-scribe="element:screen_name"] {
     display: block;
     font-size: .9375rem;
     line-height: 1.68421053rem;
     font-weight: normal;
}
 .block-tweets .slides .user [data-scribe="element:name"] {
     display: none;
}
 .block-tweets .slides .user img {
     display: inline-block;
     clear: both;
     margin-bottom: 0.92857143rem;
     border-radius: 50%;
}
/*End socials section*/

/*Contact section*/

.card.block-info p {
	color: #cccccc;
}
.block-social.colored li {
	margin: 0;
}
.block-social.colored li a {
	font-size: 2rem;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: inline-block;
	border: 0;
	line-height: 2.4;
	opacity: 1;
	color: white;
	margin: 0 1.5rem;
}
.block-social.colored li:first-child a {
	background: #175f9f;
}
.block-social.colored li:nth-child(2) a {
	background: #00c6f8;
}
.block-social.colored li:nth-child(3) a {
	background: #df0006;
}
.block-social.colored li:nth-child(4) a {
	background: #ee322a;
}
.block-social.colored li:last-child a {
	background: #3c59ef;
}
/*End contact section*/

/*Footer*/

.footer p {
	color: #cccccc;
}
.footer p em {
	color: #ffffff;
}
/*End footer*/

/*Media queries*/

@media all and (max-width: 990px) {
	.header {
		padding: 5px 0;
	}
	.header .logo {
		margin-top: .5rem;
	}
	.mobile-but {
		display: block;
	}
	.main-nav ul {
		display: none;
		text-align: left;
	}
	.main-nav li {
		float: none;
		display: block;
		margin-left: 0;
	}
	.main-nav li:first-child {
		float: none;
		display: block;
		margin-left: 0;
	}
	.main-menu li a {
		display: inline-block;
		padding: .5rem 0;
	}
	h1.large {
		font-size: 4rem;
	}
	.alt-font {
		font-size: 3rem;
	}
	ul.block-images li:first-child {
		padding-right: 15px;
	}
	ul.block-images li:last-child {
		padding-left: 15px;
	}
	.block-album-info {
		margin-top: 3rem;
	}
	.pattern-right,
	.pattern-center {
		width: 70%;
	}
	.sing {
		width: 45%;
	}
	ul.block-tab .block-content.pl-5 {
		padding-left: 1rem !important;
	}
	.block-tab:before {
		left: 70.3%;
	}
	.block-tab::after {
		left: 22.9%;
	}
	ul.block-tab .block-content.pr-4 {
		padding-right: 0 !important;
	}
	.block-tab:before {
		left: 66.3%;
	}
	.video-play-ico {
		left: 90%;
	}
	.block-tab::after,
	.block-tab::before {
		height: 91.4%;
	}
	section.discography .container .row .col-12.col-md-6.col-lg-3:nth-child(3),
	section.discography .container .row .col-12.col-md-6.col-lg-3:nth-child(4) {
		margin-top: 2rem;
	}
}
@media only screen and (min-device-width: 720px) and (max-device-width: 1280px) and (orientation: portrait) {
	input,
	textarea {
		-webkit-appearance: none;
	}
	.alt-font {
		font-size: 2.8rem;
	}
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: landscape) {
	.pattern-right,
	.pattern-center {
		width: 60%;
	}
	.pattern-right {
		right: 40px;
	}
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: portrait) {
	.pattern-right,
	.pattern-center {
		width: 70%;
	}
	.pattern-right {
		right: 40px;
	}
	.block-social li:last-child a {
		margin-top: .4rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	input,
	textarea {
		-webkit-appearance: none;
	}
	section.divider {
		padding-top: 10rem;
		padding-bottom: 10rem;
	}
	section.main {
		padding-top: 6rem;
		padding-bottom: 6rem;
	}
	h1.large {
		font-size: 4rem;
	}
	h1,
	.h1 {
		font-size: 2rem;
	}
	h4,
	.h4 {
		font-size: .9375rem;
	}
	.alt-font {
		font-size: 2.5rem;
	}
	ul.block-images li img {
		width: 215px;
	}
	.block-social li:first-child {
		margin-bottom: .4rem;
	}
	.sing {
		max-width: 40%;
	}
	.pattern-right,
	.pattern-center {
		width: 70%;
	}
	.pattern-right {
		right: 40px;
	}
	ul.block-tab .block-content.pl-5 {
		padding-left: 1rem !important;
	}
	.block-tab:before {
		left: 70.3%;
	}
	.block-tab::after {
		left: 22.9%;
	}
	.video-play-ico {
		left: 99%;
	}
	.big-icon {
		font-size: 5rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
	input,
	textarea {
		-webkit-appearance: none;
	}
	section.divider {
		padding-top: 8rem;
		padding-bottom: 8rem;
	}
	h1.large {
		font-size: 4rem;
	}
	h1,
	.h1 {
		font-size: 2rem;
	}
	h4,
	.h4 {
		font-size: .9375rem;
	}
	.sing {
		max-width: 50%;
	}
	.alt-font {
		font-size: 2.5rem;
	}
	.block-album-info {
		margin-top: 3rem;
	}
	.block-member img.pl-3 {
		padding-left: 0 !important;
	}
	.block-member img.pr-3 {
		padding-right: 0 !important;
	}
	.block-instafeed li {
		width: 22%;
	}
	ul.block-tab .block-content.pl-5 {
		padding-left: 1rem !important;
	}
	ul.block-tab .block-content.pr-4 {
		padding-right: 0 !important;
	}
	.video-play-ico {
		left: 90%;
	}
	.block-tab:before {
		left: 66.3%;
	}
	.block-tab::after,
	.block-tab::before {
		height: 91.4%;
	}
	.pattern-right,
	.pattern-center {
		width: 80%;
	}
	.pattern-right {
		right: 40px;
	}
	section.discography .container .row .col-12.col-md-6.col-lg-3:nth-child(3),
	section.discography .container .row .col-12.col-md-6.col-lg-3:nth-child(4) {
		margin-top: 2rem;
	}
	.big-icon {
		font-size: 5rem;
	}
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
	input,
	textarea {
		-webkit-appearance: none;
	}
	.slider .slides li {
		height: 800px;
	}
	section.divider {
		padding-top: 8rem;
		padding-bottom: 8rem;
	}
	section.main {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
	.btn {
		font-size: .68125rem;
	}
	.video-play-but {
		width: 4.3125rem;
		height: 4.3125rem;
	}
	.video-play-ico {
		left: 90%;
	}
	h1.large {
		font-size: 3.5rem;
		line-height: 1;
		margin-bottom: .5rem !important;
	}
	h1,
	.h1 {
		font-size: 1.7rem;
	}
	h2 {
		font-size: 1.2625rem;
	}
	.h2 {
		font-size: 1.45rem;
	}
	h3,
	.h3 {
		font-size: 1rem;
	}
	h4,
	.h4 {
		font-size: .9375rem;
	}
	h5,
	.h5 {
		font-size: .9rem;
	}
	h6,
	.h6 {
		font-size: .75rem;
	}
	.alt-font {
		font-size: 2.5rem;
	}
	.countdown {
		font-size: 2.5rem;
	}
	p,
	.p,
	.block-tweets .slides p.timePosted a,
	.block-tweets .slides .user[data-scribe="element:screen_name"] {
		font-size: .875rem;
	}
	.w-95 {
		width: 85%;
	}
	section.about .container .row .col-md-5.offset-md-1 .block-content {
		margin-top: 3rem;
	}
	.countdown {
		font-size: 2.5rem;
	}
	.block-album-info {
		margin-top: 3rem !important;
	}
	.sing {
		margin-bottom: 3rem !important;
		max-width: 25%;
	}
	.block-tracklist .playlist li,
	.block-tour {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
	.block-tracklist .playlist li:after {
		left: 2.4rem;
		top: 2.1rem;
	}
	.block-instafeed li {
		width: 44%;
	}
	.block-instafeed li:nth-last-of-type(-n+4) img {
		margin-bottom: 1rem;
	}
	.pattern-right,
	.pattern-center {
		display: none;
	}
	.block-member {
		margin-top: 0 !important;
		margin-bottom: 3rem;
	}
	section.band .col-md-4.col-lg-4:last-child .block-member,
	section.blog .col-md-4:last-child .card,
	.block-social.colored li:last-child,
	section.discography .col-md-6.col-lg-3:last-child .block-album {
		margin-bottom: 0;
	}
	section.discography .container .row .col-12.col-md-6.col-lg-3:nth-child(3),
	section.discography .container .row .col-12.col-md-6.col-lg-3:nth-child(4) {
		margin-top: 0;
	}
	ul.block-tab .block-content.pl-5 {
		padding-left: 0 !important;
	}
	.block-tab .block-content .col-lg-3.col-md-3.text-center {
		text-align: left !important;
	}
	.block-tab .col-lg-5.col-md-5 span {
		margin-bottom: 1rem;
	}
	.block-tour .col-lg-3 h3 {
		top: 0;
	}
	.block-tour {
		padding-left: 2rem;
	}
	.block-email-form .email-form button[type="submit"] {
		padding: 0.84rem 1.9rem;
	}
	.block-tab:before,
	.block-tab:after {
		display: none;
	}
	.card-gallery.image-gallery {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
	}
	.video-play-ico {
		left: 90%;
	}
	section.blog .col-md-4 .card,
	.block-album,
	section.about .col-lg-3.col-md-4:nth-child(2) .block-content {
		margin-bottom: 3rem;
	}
	.block-social.colored li {
		margin-right: 0;
		margin-bottom: 1rem;
	}
	.block-social.colored li a {
		width: 65px;
		height: 65px;
		font-size: 1.6rem;
		line-height: 2.5;
		margin: 0 1rem;
	}
	.big-icon {
		font-size: 4rem;
	}
}
@media only screen and (max-width: 479px) {
	input,
	textarea {
		-webkit-appearance: none;
	}
	.slider .slides li {
		height: 800px;
	}
	section.divider {
		padding-top: 8rem;
		padding-bottom: 8rem;
	}
	section.main {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
	.btn {
		font-size: .68125rem;
	}
	.video-play-but {
		width: 4.3125rem;
		height: 4.3125rem;
	}
	.video-play-ico {
		left: 90%;
	}
	h1.large {
		font-size: 3.5rem;
		line-height: 1;
		margin-bottom: .5rem !important;
	}
	h1,
	.h1 {
		font-size: 1.7rem;
	}
	h2 {
		font-size: 1.2625rem;
	}
	.h2 {
		font-size: 1.45rem;
	}
	h3,
	.h3 {
		font-size: 1rem;
	}
	h4,
	.h4 {
		font-size: .9375rem;
	}
	h5,
	.h5 {
		font-size: .9rem;
	}
	h6,
	.h6 {
		font-size: .75rem;
	}
	.alt-font {
		font-size: 2.5rem;
	}
	.countdown {
		font-size: 2.5rem;
	}
	p,
	.p,
	.block-tweets .slides p.timePosted a,
	.block-tweets .slides .user[data-scribe="element:screen_name"] {
		font-size: .875rem;
	}
	.block-tweets .tweet {
		font-size: .9375rem;
	}
	section.about .container .row .col-md-5.offset-md-1 .block-content {
		margin-top: 3rem;
	}
	ul.block-images li:first-child {
		padding-right: 15px;
	}
	ul.block-images li:last-child {
		padding-left: 15px;
	}
	.block-album-info {
		margin-top: 3rem !important;
	}
	.sing {
		margin-bottom: 3rem !important;
		max-width: 40%;
	}
	.block-tracklist .playlist li,
	.block-tour {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
	.block-tracklist .playlist li:after {
		left: 2.4rem;
		top: 2.1rem;
	}
	.block-instafeed li {
		width: 44%;
	}
	.block-instafeed li:nth-last-of-type(-n+4) img {
		margin-bottom: 1rem;
	}
	.pattern-right,
	.pattern-center {
		display: none;
	}
	.block-member {
		margin-top: 0 !important;
		margin-bottom: 3rem;
	}
	section.band .col-md-4.col-lg-4:last-child .block-member,
	section.blog .col-md-4:last-child .card,
	.block-social.colored li:last-child,
	section.discography .col-md-6.col-lg-3:last-child .block-album {
		margin-bottom: 0;
	}
	section.discography .container .row .col-12.col-md-6.col-lg-3:nth-child(3),
	section.discography .container .row .col-12.col-md-6.col-lg-3:nth-child(4) {
		margin-top: 0;
	}
	ul.block-tab .block-content.pl-5 {
		padding-left: 0 !important;
	}
	.block-tab .block-content .col-lg-3.col-md-3.text-center {
		text-align: left !important;
	}
	.block-tab .col-lg-5.col-md-5 span {
		margin-bottom: 1rem;
	}
	.block-tour .col-lg-3 h3 {
		top: 0;
	}
	.block-tour {
		padding-left: 2rem;
	}
	.block-email-form .email-form button[type="submit"] {
		padding: 0.84rem 1.9rem;
	}
	.block-tab:before,
	.block-tab:after {
		display: none;
	}
	.card-gallery.image-gallery {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
	}
	section.blog .col-md-4 .card,
	.block-album,
	section.about .col-lg-3.col-md-4:nth-child(2) .block-content {
		margin-bottom: 3rem;
	}
	.block-social.colored li {
		margin-right: 0;
		margin-bottom: 2rem;
	}
	.block-social.colored li a {
		width: 65px;
		height: 65px;
		font-size: 1.6rem;
		line-height: 2.5;
	}
	.big-icon {
		font-size: 4rem;
	}
}
/*End media queries*/
.music-pro{
  text-align:center;
  padding:60px 20px;
}

.music-switch{
  display:flex;
  justify-content:center;
  gap:10px;
  margin:20px 0;
}

.switch-btn{
  background:#111;
  color:#fff;
  border:1px solid #333;
  padding:10px 18px;
  border-radius:999px;
  cursor:pointer;
}

.switch-btn.active{
  background:#7c3aed;
  border-color:#7c3aed;
}

#musicPlayer{
  max-width:800px;
  margin:auto;
  transition:0.3s;
}
/* ==========================================================
   DJ MAG PRO PLAYER - Sebas Granda
   ========================================================== */

.djmag-player {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
	padding: 2px;
	border-radius: 34px;
	background:
		linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.04)),
		linear-gradient(135deg, rgba(124,58,237,.65), rgba(6,182,212,.35), rgba(255,255,255,.06));
	box-shadow:
		0 35px 100px rgba(0,0,0,.75),
		0 0 70px rgba(124,58,237,.15),
		inset 0 1px 0 rgba(255,255,255,.18);
	overflow: hidden;
	isolation: isolate;
}

.djmag-player:before {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: 32px;
	background:
		radial-gradient(circle at 20% 0%, rgba(124,58,237,.23), transparent 35%),
		radial-gradient(circle at 85% 20%, rgba(6,182,212,.16), transparent 35%),
		linear-gradient(180deg, #101010 0%, #060606 100%);
	z-index: -2;
}

.djmag-bg-orb {
	position: absolute;
	width: 290px;
	height: 290px;
	border-radius: 50%;
	filter: blur(70px);
	opacity: .45;
	z-index: -1;
	pointer-events: none;
}

.djmag-bg-orb-one {
	background: #7c3aed;
	top: -120px;
	left: -90px;
}

.djmag-bg-orb-two {
	background: #06b6d4;
	right: -120px;
	bottom: 40px;
}

.djmag-header {
	display: grid;
	grid-template-columns: 190px 1fr 210px;
	gap: 28px;
	align-items: center;
	padding: 34px;
}

.djmag-cover {
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: 28px;
	overflow: hidden;
	background: #111;
	box-shadow:
		0 24px 60px rgba(0,0,0,.55),
		inset 0 1px 0 rgba(255,255,255,.14);
}

.djmag-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin-bottom: 0;
	transform: scale(1.04);
}

.djmag-cover:after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(255,255,255,.16), transparent 30%),
		linear-gradient(180deg, transparent 40%, rgba(0,0,0,.7));
}

.djmag-cover-glow {
	position: absolute;
	inset: 14px;
	border-radius: 22px;
	border: 1px solid rgba(255,255,255,.14);
	box-shadow: inset 0 0 40px rgba(255,255,255,.05);
	z-index: 2;
}

.djmag-live-badge {
	position: absolute;
	left: 16px;
	bottom: 16px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(0,0,0,.55);
	border: 1px solid rgba(255,255,255,.15);
	backdrop-filter: blur(12px);
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .13em;
	color: #fff;
}

.djmag-live-badge span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 18px #22c55e;
	animation: djmagPulse 1.4s infinite;
}

@keyframes djmagPulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.45); opacity: .55; }
}

.djmag-info {
	text-align: left;
}

.djmag-kicker {
	display: inline-block;
	margin-bottom: 12px;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #9ddcff;
}

.djmag-info h2 {
	margin: 0 0 14px 0;
	font-size: clamp(2rem, 4vw, 4.2rem);
	line-height: .98;
	font-weight: 900;
	letter-spacing: -.06em;
	text-transform: uppercase;
	color: #fff;
	text-shadow: 0 0 40px rgba(255,255,255,.12);
}

.djmag-info p {
	max-width: 620px;
	margin-bottom: 24px;
	color: rgba(255,255,255,.68);
	font-size: .98rem;
	line-height: 1.8;
}

.djmag-platforms {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.djmag-platform {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	border: 1px solid rgba(255,255,255,.12);
	background: rgba(255,255,255,.05);
	color: rgba(255,255,255,.75);
	padding: 11px 15px;
	border-radius: 999px;
	cursor: pointer;
	font-weight: 800;
	font-size: .78rem;
	letter-spacing: .02em;
	transition: .25s ease;
	backdrop-filter: blur(10px);
}

.djmag-platform i {
	font-size: .95rem;
}

.djmag-platform:hover {
	transform: translateY(-2px);
	border-color: rgba(255,255,255,.28);
	color: #fff;
	background: rgba(255,255,255,.09);
}

.djmag-platform.is-active {
	color: #050505;
	border-color: transparent;
	background: linear-gradient(135deg, #fff, #a7f3d0);
	box-shadow:
		0 12px 35px rgba(255,255,255,.12),
		0 0 30px rgba(34,197,94,.18);
}

.djmag-cta-box {
	border-radius: 24px;
	padding: 22px;
	background: rgba(255,255,255,.055);
	border: 1px solid rgba(255,255,255,.11);
	backdrop-filter: blur(14px);
	text-align: left;
}

.djmag-cta-box span {
	display: block;
	margin-bottom: 6px;
	font-size: .68rem;
	text-transform: uppercase;
	letter-spacing: .16em;
	color: rgba(255,255,255,.48);
}

.djmag-cta-box strong {
	display: block;
	font-size: 1.05rem;
	line-height: 1.25;
	margin-bottom: 18px;
	color: #fff;
}

.djmag-cta-box a {
	display: inline-flex;
	justify-content: center;
	width: 100%;
	padding: 12px 14px;
	border-radius: 999px;
	background: linear-gradient(135deg, #7c3aed, #06b6d4);
	color: #fff;
	font-weight: 900;
	text-transform: uppercase;
	font-size: .72rem;
	letter-spacing: .08em;
	text-decoration: none;
	box-shadow: 0 16px 34px rgba(6,182,212,.18);
	transition: .25s ease;
}

.djmag-cta-box a:hover {
	transform: translateY(-2px);
	color: #fff;
	text-decoration: none;
}

.djmag-nowplaying {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	margin: 0 34px 18px 34px;
	padding: 18px 22px;
	border-radius: 22px;
	background:
		linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
	border: 1px solid rgba(255,255,255,.1);
}

.djmag-label {
	display: block;
	font-size: .65rem;
	text-transform: uppercase;
	letter-spacing: .18em;
	color: rgba(255,255,255,.42);
	margin-bottom: 5px;
}

.djmag-nowplaying h3 {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: .02em;
}

.djmag-nowplaying p {
	margin: 3px 0 0 0;
	color: rgba(255,255,255,.55);
	font-size: .78rem;
}

.djmag-eq {
	display: inline-flex;
	align-items: flex-end;
	gap: 5px;
	height: 32px;
}

.djmag-eq span {
	display: block;
	width: 5px;
	height: 12px;
	border-radius: 999px;
	background: linear-gradient(180deg, #fff, #06b6d4);
	box-shadow: 0 0 18px rgba(6,182,212,.4);
	animation: djmagEq 1s infinite ease-in-out;
}

.djmag-eq span:nth-child(2) { animation-delay: .12s; }
.djmag-eq span:nth-child(3) { animation-delay: .24s; }
.djmag-eq span:nth-child(4) { animation-delay: .36s; }
.djmag-eq span:nth-child(5) { animation-delay: .48s; }

@keyframes djmagEq {
	0%, 100% { height: 9px; opacity: .6; }
	50% { height: 31px; opacity: 1; }
}

.djmag-embed {
	margin: 0 34px 26px 34px;
	border-radius: 24px;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
	border: 1px solid rgba(255,255,255,.1);
	padding: 14px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
	transition: opacity .25s ease, transform .25s ease;
}

.djmag-embed.is-changing {
	opacity: 0;
	transform: translateY(8px) scale(.985);
}

.djmag-embed iframe {
	width: 100%;
	display: block;
	border: 0;
	border-radius: 16px;
	background: #111;
	margin-bottom: 0;
}

.djmag-empty {
	min-height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 16px;
	background:
		radial-gradient(circle at center, rgba(124,58,237,.18), transparent 45%),
		#0d0d0d;
	border: 1px dashed rgba(255,255,255,.16);
	padding: 30px;
}

.djmag-empty strong {
	display: block;
	color: #fff;
	font-size: 1rem;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.djmag-empty span {
	color: rgba(255,255,255,.55);
	font-size: .82rem;
}

.djmag-tracklist {
	padding: 0 34px 34px 34px;
	display: grid;
	gap: 10px;
}

.djmag-track {
	position: relative;
	display: grid;
	grid-template-columns: 42px 46px 1fr auto 70px;
	align-items: center;
	gap: 14px;
	width: 100%;
	border: 1px solid rgba(255,255,255,.08);
	background: rgba(255,255,255,.035);
	color: #fff;
	border-radius: 20px;
	padding: 14px 16px;
	cursor: pointer;
	text-align: left;
	overflow: hidden;
	transition: .25s ease;
}

.djmag-track:before {
	content: "";
	position: absolute;
	inset: 0;
	width: 0;
	background:
		linear-gradient(90deg, rgba(124,58,237,.24), rgba(6,182,212,.12), transparent);
	transition: .35s ease;
	z-index: 0;
}

.djmag-track > * {
	position: relative;
	z-index: 1;
}

.djmag-track:hover {
	transform: translateY(-2px);
	border-color: rgba(255,255,255,.18);
	background: rgba(255,255,255,.06);
}

.djmag-track:hover:before,
.djmag-track.is-active:before {
	width: 100%;
}

.djmag-track.is-active {
	border-color: rgba(6,182,212,.5);
	box-shadow:
		0 16px 40px rgba(0,0,0,.35),
		0 0 40px rgba(6,182,212,.08);
}

.djmag-track-num {
	font-size: .74rem;
	font-weight: 900;
	color: rgba(255,255,255,.4);
	letter-spacing: .08em;
}

.djmag-track-play {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.12);
	color: rgba(255,255,255,.75);
	transition: .25s ease;
}

.djmag-track.is-active .djmag-track-play {
	background: #fff;
	color: #000;
	box-shadow: 0 0 24px rgba(255,255,255,.16);
}

.djmag-track-copy strong {
	display: block;
	font-size: .92rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .03em;
	color: #fff;
}

.djmag-track-copy small {
	display: block;
	margin-top: 4px;
	color: rgba(255,255,255,.48);
	font-size: .74rem;
}

.djmag-track-platforms {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: rgba(255,255,255,.45);
}

.djmag-track-platforms i {
	font-size: .82rem;
}

.djmag-track-time {
	text-align: right;
	font-size: .76rem;
	font-weight: 800;
	color: rgba(255,255,255,.45);
}

@media all and (max-width: 990px) {
	.djmag-header {
		grid-template-columns: 150px 1fr;
	}

	.djmag-cta-box {
		grid-column: 1 / -1;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 18px;
	}

	.djmag-cta-box strong {
		margin-bottom: 0;
	}

	.djmag-cta-box a {
		width: auto;
		min-width: 190px;
	}
}

@media all and (max-width: 767px) {
	.djmag-player {
		border-radius: 26px;
	}

	.djmag-player:before {
		border-radius: 24px;
	}

	.djmag-header {
		grid-template-columns: 1fr;
		padding: 22px;
		gap: 22px;
	}

	.djmag-cover {
		max-width: 230px;
		margin: 0 auto;
	}

	.djmag-info {
		text-align: center;
	}

	.djmag-info h2 {
		font-size: 2.45rem;
	}

	.djmag-info p {
		margin-left: auto;
		margin-right: auto;
	}

	.djmag-platforms {
		justify-content: center;
	}

	.djmag-cta-box {
		display: block;
		text-align: center;
	}

	.djmag-cta-box strong {
		margin-bottom: 16px;
	}

	.djmag-cta-box a {
		width: 100%;
	}

	.djmag-nowplaying {
		margin: 0 22px 16px 22px;
		align-items: flex-start;
	}

	.djmag-embed {
		margin: 0 22px 22px 22px;
		padding: 10px;
	}

	.djmag-tracklist {
		padding: 0 22px 24px 22px;
	}

	.djmag-track {
		grid-template-columns: 34px 38px 1fr 54px;
		gap: 10px;
		padding: 13px;
	}

	.djmag-track-platforms {
		display: none;
	}

	.djmag-track-time {
		font-size: .7rem;
	}
}

@media all and (max-width: 420px) {
	.djmag-info h2 {
		font-size: 2.05rem;
	}

	.djmag-platform {
		width: calc(50% - 6px);
		justify-content: center;
		padding: 11px 10px;
	}

	.djmag-nowplaying {
		display: block;
	}

	.djmag-eq {
		margin-top: 14px;
	}

	.djmag-track {
		grid-template-columns: 28px 36px 1fr;
	}

	.djmag-track-time {
		display: none;
	}
}
.djmag-spacing{
	margin-top: 60px;
	margin-bottom: 80px;
}
.djmag-player{
	transform: translateY(0);
	transition: all .4s ease;
}

.djmag-player:hover{
	transform: translateY(-6px);
	box-shadow:
		0 45px 120px rgba(0,0,0,.85),
		0 0 90px rgba(124,58,237,.18),
		0 0 90px rgba(6,182,212,.12);
}
.djmag-embed{
	transition: all .25s ease;
}
.djmag-info h2{
	position: relative;
}

.djmag-info h2:after{
	content:"";
	position:absolute;
	inset:0;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
	transform: translateX(-100%);
	animation: shine 5s infinite;
}

@keyframes shine{
	0%{transform: translateX(-100%);}
	50%{transform: translateX(100%);}
	100%{transform: translateX(100%);}
}