@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
4. Menu
5. Home
6. Featured Album
7. Shows
8. Artist
9. Extra
10. Footer


******************************/

/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css2?family=Rubik+Burned&family=Special+Elite&family=Josefin+Sans:wght@300;400;600&display=swap');


/*********************************
2. Body and some general stuff
*********************************/

*
{
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
body
{
	font-family: 'Special Elite', cursive;
	font-size: 14px;
	font-weight: 300;
	background: #000000;
	color: #FFFFFF;
}
div
{
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	hyphens: auto;
    word-spacing: -0.05em;
}
ul
{
	list-style: none;
	margin-bottom: 0px;
}
p
{
	font-family: 'Special Elite', cursive;
	font-size: 14px;
	line-height: 2.18;
	font-weight: 300;
	color: #FFFFFF;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-align: justify;
	hyphens: auto;
    word-spacing: -0.05em;
}
p a
{
	display: inline;
	position: relative;
	color: inherit;
	border-bottom: solid 2px #8B0000;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
p:last-of-type
{
	margin-bottom: 0;
}
a
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
a, a:hover, a:visited, a:active, a:link
{
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a:active
{
	position: relative;
	color: #8B0000;
}
p a:hover
{
	color: #FFFFFF;
	background: #B22222;
}
p a:hover::after
{
	opacity: 0.2;
}
::selection
{
	background: rgba(255,255,255,0.07);
}
p::selection
{
	
}
h1{font-size: 48px;}
h2{font-size: 36px;}
h3{font-size: 24px;}
h4{font-size: 18px;}
h5{font-size: 14px;}
h1, h2, h3, h4, h5, h6
{
	font-family: 'Rubik Burned', cursive;
	-webkit-font-smoothing: antialiased;
	color: #B22222;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
	line-height: 1.2;
}
h1::selection, 
h2::selection, 
h3::selection, 
h4::selection, 
h5::selection, 
h6::selection
{
	
}
button:active
{
	outline: none;
}
.form-control
{
	color: #B22222;
}
section
{
	display: block;
	position: relative;
	box-sizing: border-box;
}
.clear
{
	clear: both;
}
.clearfix::before, .clearfix::after
{
	content: "";
	display: table;
}
.clearfix::after
{
	clear: both;
}
.clearfix
{
	zoom: 1;
}
.float_left
{
	float: left;
}
.float_right
{
	float: right;
}
.trans_200
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.trans_300
{
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.trans_400
{
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.trans_500
{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.fill_height
{
	height: 100%;
}
.super_container
{
	width: 100%;
	overflow: hidden;
}
.prlx_parent
{
	overflow: hidden;
}
.prlx
{
	height: 130% !important;
}
.parallax-window
{
    min-height: 400px;
    background: transparent;
}
.parallax_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.background_image
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.player_image{
	border: 1.5px solid #8B0000;
}
.nopadding
{
	padding: 0px !important;
}
.section_subtitle
{
	font-size: 18px;
	line-height: 0.75;
}
.section_title
{
	margin-top: 7px;
	margin-left: -2px;
}

/*********************************
3. Header
*********************************/

.header
{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background: #000000;
	border-bottom: 1.5px solid #8B0000;
	z-index: 100;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.header.scrolled
{
	background: rgba(0,0,0,0.85);
}
.header_content
{
	width: 100%;
	height: 101px;
	padding-left: 51px;
	padding-right: 52px;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.header.scrolled .header_content
{
	height: 70px;
}
.logo
{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 51px;
	color: #B22222 !important;
	font-family: 'Rubik Burned', cursive !important;
	font-size: 30px;
}
.logo a
{
	font-family: 'Rubik Burned', cursive;
	font-size: 30px;
	color: #B22222 !important;
}
.log_reg
{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 52px;
}
.log_reg ul li
{
	position: relative;
}
.log_reg ul li:not(:last-child)::after
{
	display: inline-block;
	content: '/';
	font-size: 14px;
	color: #8B0000;
	margin-left: 6px;
	margin-right: 6px;
}
.log_reg ul li a
{
	font-size: 14px;
	color: #B22222;
}
.log_reg ul li a:hover
{
	color: #ffffff;
}
.main_nav ul li:not(:last-child)
{
	margin-right: 24px;
}
.main_nav ul li
{
	position: relative;
}
.main_nav ul li a
{
	position: relative;
	font-size: 16px;
	color: #FFFFFF;
	padding-left: 26px;
	padding-right: 23px;
	z-index: 1;
}
.main_nav ul li a::after
{
	display: block;
	position: absolute;
	left: 0;
	bottom: -20px;
	width: 100%;
	height: 17px;
	background: #3D3D45;
	content: '';
	z-index: -1;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.main_nav ul li.active a::after,
.main_nav ul li a:hover::after
{
	bottom: -5px;
	visibility: visible;
	opacity: 1;
}
.hamburger
{
	display: none;
	width: 50px;
	height: 24px;
	cursor: pointer;
	padding: 5px;
	right: -5px;
}
.hamburger > div
{
	width: 100%;
	height: 100%;
}
.hamburger > div > div
{
	height: 2px;
	background: #FFFFFF;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.hamburger > div > div:first-child
{
	width: 90%;
}
.hamburger > div > div:nth-child(2)
{
	width: 50%;
}
.hamburger > div > div:nth-child(3)
{
	width: 70%;
}
.hamburger:hover > div > div
{
	width: 100%;
}

/*********************************
4. Menu
*********************************/

.menu
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 101;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 800ms ease;
	-moz-transition: all 800ms ease;
	-ms-transition: all 800ms ease;
	-o-transition: all 800ms ease;
	transition: all 800ms ease;
}
.menu_overlay
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.45);
}
.menu.active
{
	visibility: visible;
	opacity: 1;
}
.menu > div
{
	width: 100%;
	height: 100%;
}
.menu_container
{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: -300px;
	width: 300px;
	-webkit-transition: all 1000ms 600ms ease;
	-moz-transition: all 1000ms 600ms ease;
	-ms-transition: all 1000ms 600ms ease;
	-o-transition: all 1000ms 600ms ease;
	transition: all 1000ms 600ms ease;
}
.menu.active .menu_container
{
	right: 0;
}
.menu_log_reg
{
	display: none;
	width: 100%;
	background: #000000;
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 8px;
	padding-bottom: 8px;
	margin-bottom: 5px;
	border-bottom: solid 1.5px #8B0000;
}
.menu_log_reg a
{
	font-size: 14px;
	color: #B22222;
}
.menu_log_reg a:hover
{
	color: #ffffff;
}
.menu_log_reg ul li
{
	position: relative;
}
.menu_log_reg ul li:not(:last-child)::after
{
	display: inline-block;
	content: '/';
	font-size: 14px;
	color: #FFFFFF;
	margin-left: 6px;
	margin-right: 6px;
}
.menu_nav
{
	width: 100%;
	background: #000000;
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 50px;
	padding-bottom: 50px;
	border-bottom: solid 5px #8B0000;
}
.menu_nav ul li
{
	position: relative;
}
.menu_nav ul li a:hover::before
{
	left: 100%;
}
.menu_nav ul li:not(:last-of-type)
{
	margin-bottom: 5px;
}
.menu_nav ul li a
{
	display: block;
	position: relative;
	font-size: 20px;
	color: #FFFFFF;
	overflow: hidden;
}
.menu_nav ul li a::before
{
	display: block;
	position: absolute;
	top: 50%;
	left: -100%;
	width: 100%;
	height: 2px;
	background: #FFFFFF;
	content: '';
	-webkit-transition: all 400ms 200ms ease;
	-moz-transition: all 400ms 200ms ease;
	-ms-transition: all 400ms 200ms ease;
	-o-transition: all 400ms 200ms ease;
	transition: all 400ms 200ms ease;
}
.menu_nav ul li a:hover
{
	color: #B22222;
}

/*********************************
5. Home
*********************************/

.home
{
	width: 100%;
	height: 692px;

}
.home_slider_container
{
	width: 100%;
	height: 100%;
}
.home_slider.owl-theme .owl-nav.disabled + .owl-dots
{
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: 24px;
	z-index: 10;
}
.home_slider.owl-theme .owl-dots .owl-dot span
{
	width: 14px;
	height: 14px;
	background: #4d4d4d;
	border-radius: 0px;
	margin-left: 3px;
	margin-right: 3px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.home_slider.owl-theme .owl-dots .owl-dot.active span,
.home_slider.owl-theme .owl-dots .owl-dot:hover span
{
	background: #000000;
}
.home_container
{
	width: 100%;
	height: 100%;
	z-index: 1;
	padding-top: 50px;
	border-bottom: 1.5px solid #8B0000;
}
.home_container_inner
{
	width: 100%;
	height: 100%;
}
.home_content
{

}
.home_subtitle
{
	font-size: 18px;
	color: #B22222;
}
.home_title
{
	margin-top: 24px;
}
.home_title h1
{
	font-size: 82px;
}
.home_link
{
	margin-top: 21px;
}
.home_link a
{
	position: relative;
	padding-left: 17px;
	padding-right: 12px;
	font-size: 24px;
	color: #FFFFFF;
}
.home_link a::before
{
	display: block;
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 22px;
	background: #000000;
	content: '';
	z-index: -1;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.home_link a:hover::before
{
	background: #B22222;
}

/*********************************
6. Featured Album
*********************************/

.featured_album
{
	padding-top: 50px;
	padding-bottom: 50px;
	border-top: solid 1.5px #8B0000;
}
.featured_background
{
	top: auto;
	bottom: -185px;
	max-height: 489px;
}
.featured_album .section_title_container
{
	padding-left: 20px;
	margin-bottom: -25px;
}
.featured_row
{
	margin-top: 71px;
}
.featured_album_image
{
	width: calc(100% + 42px);
	height: 800px;
	margin-top: 31.5px;
}
.featured_album_image img
{
	max-width: 100%;
}
.image_overlay
{
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #8B0000;
	z-index: 1;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1200ms ease;
}
.image_overlay.active
{
	width: 0%;
}
.featured_album_col
{
	z-index: 1;
}
.featured_album_player_container
{
	max-width: 365px;
	left: -58px;
	height: 100%;
	display: flex;
	justify-self: center;
}
.featured_album_player
{
	width: 100%;
	border: solid 1px #8B0000;
	background: #8A8A8A;
}
.featured_album_title_bar
{
	height: 146px;
	padding-left: 55px;
	padding-right: 46px;
	margin-bottom: -15px;
	margin-top: -10px;
}
.featured_album_title_container
{
	
}
.featured_album_artist
{
	font-size: 30px;
	color: #000000;
	line-height: 1.2;
	font-family: 'Rubik Burned', cursive;
}
.featured_album_title
{
	font-size: 16px;
	color: #ffffff;
	margin-top: -2px;
}
.featured_album_link
{
	width: 181px;
	height: 42px;
	background: #B22222;
	border: 1.5px solid #000000;
	text-align: center;
}
.featured_album_link a
{
	display: block;
	width: 100%;
	height: 100%;
	font-size: 12px;
	color: #000000;
	text-transform: uppercase;
	line-height: 42px;
}
.jp-audio
{
	width: 100%;
}
.jp-playlist
{
	background: #3D3D45;
	padding-top: 20px;
	padding-bottom: 20px;
}
.jp-playlist ul
{
	/*padding-left: 55px;*/
}
.jp-playlist li
{
	position: relative;
	height: 38px;
	border-bottom: none;
	padding-left: 55px;
}
.jp-playlist li::before,
#jp_container_1.jp-state-playing .jp-playlist li.jp-playlist-current::before
{
	display: block;
	position: absolute;
	top: 0;
	left: -4px;
	width: calc(100% + 8px);
	height: 100%;
	background: #5c5c5c;
	visibility: hidden;
	opacity: 0;
	content: '';
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.jp-playlist li:hover::before,
#jp_container_1.jp-state-playing .jp-playlist li.jp-playlist-current::before
{
	opacity: 1;
	visibility: visible;
}
.jp-playlist li > div
{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	justify-content: start;
	align-items: center;
	padding-left: 35px;
	padding-right: 45px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.song_duration
{
	margin-left: auto;
}
.jp-playlist li > div::before
{
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	font-family: 'FontAwesome';
	content: '\f04b';
	color: #ffffff;
}
.jp-playlist li:not(:last-child)
{
	margin-bottom: 14px;
}
.jp-type-playlist div.jp-playlist a,
.song_duration
{
	font-family: 'Special Elite', cursive;
	font-size: 16px !important;
	color: #b22222 !important;
	line-height: 38px;
	outline: none !important;
}
.jp-type-playlist div.jp-playlist a > span
{
	display: none;
}
#jp_container_1.jp-state-playing .jp-playlist li.jp-playlist-current > div
{
	padding-left: 26px;
}
#jp_container_1.jp-state-playing .jp-playlist li.jp-playlist-current > div::before
{
	color: #FFFFFF;
}
#jp_container_1.jp-state-playing .jp-playlist li.jp-playlist-current a,
#jp_container_1.jp-state-playing .jp-playlist li.jp-playlist-current > div .song_duration
{
	color: #8B0000 !important;
}
.jp-details
{
	display: block !important;
}
.player_details
{
	width: 100%;
	height: 92px;
	background: #5C5C5C;
	margin-top: 27px;
	padding-left: 25px;
	padding-right: 22px;
	border-top: 1.5px solid #8B0000;
	border-bottom: 1.5px solid #8B0000;

}
.jp-details > div
{
	font-size: 12px;
	color: rgba(51,50,50,0.5);
	text-transform: uppercase;
}
.jp-details > div:first-child
{
	font-family: 'Special Elite', cursive;
}
.jp-details > div:first-child
{
	display: none;
}
.jp-state-playing .jp-details > div:first-child
{
	display: block;
}
.jp-state-playing .jp-details .jp-title
{
	display: block;
}
.jp-state-playing .jp-details > div:first-child
{
	display: block !important;
}
.jp-title
{
	font-size: 16px !important;
	color: #ffffff !important;
	text-transform: none !important;
}
.jp-play
{
	position: relative;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #b22222;
	border: none;
	cursor: pointer;
	text-align: center;
	outline: none !important;
}
.jp-play::after
{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-family: 'FontAwesome';
	font-size: 20px;
	color: #FFFFFF;
	content: '\f04b';
}
.jp-state-playing .jp-play::after
{
	content: '\f04c';
}
.jp-play:active
{
	width: 46px;
	height: 46px;
}
.player_controls
{
	width: 100%;
	background: #8A8A8A;
}
.player_controls .jp-interface
{
	width: 100%;
	height: 56px;
	padding-left: 23px;
	padding-right: 20px;
}
.jp-volume-controls
{
	width: 80px;
}
.jp-volume-bar
{
	width: 45px;
	height: 9px;
	background: #b22222;
	cursor: pointer;
}
.jp-volume-bar-value
{
	height: 9px;
	background: #ffffff;
}
.jp-mute
{
	position: relative;
	width: 29px;
	height: 16px;
	background: transparent;
	border: none;
	outline: none;
	margin-right: 6px;
	cursor: pointer;
}
.jp-state-muted .jp-mute::after
{
	content: url(../images/mute_0.png);
}
.jp-mute:active
{
	outline: none;
}
.jp-mute::after
{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: url(../images/mute_1.png);
}
.time_controls
{
	width: calc(100% - 110px);
}
.jp-progress
{
	width: 100%;
	height: 9px;
	background: #5C5C5C;
}
.jp-current-time
{
	width: 48px;
}
.jp-current-time,
.jp-duration
{
	font-size: 14px;
	color: #3D3D45  !important;
}
.jp-duration
{
	width: 56px;
	text-align: right;
}
.jp-progress
{
	cursor: pointer;
}
.jp-play-bar
{
	height: 9px;
	background: #5C5C5C;
}

/*********************************
7. Shows
*********************************/

.shows
{
	padding-top: 175px;
}
.shows_row
{
	margin-top: -55px;
}
.shows_list_col
{
	z-index: 1;
}
.shows_image
{
	left: -98px;
	width: calc(100% + 252px);
}
.shows_image img
{
	max-width: 100%;
}
.shows_image .image_overlay
{
	z-index: 0;
}
.shows_list_container
{
	width: calc(100% + 13px);
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.shows_list li
{
	width: 100%;
	height: 81px;
	background: #3D3D45;
	padding-left: 11px;
	padding-right: 37px;
	color: #FFFFFF;
	font-size: 18px;
}
.shows_list li a
{
	color: #FFFFFF;
}
.shows_list li:not(:last-of-type)
{
	margin-bottom: 5px;
}
.show_date
{
	width: 78px;
	height: 60px;
	background: #b22222;
	line-height: 60px;
	text-align: center;
	margin-right: 23px;
}
.show_info
{
	width: 100%;
	height: 100%;
	padding-right: 23px;
}
.show_name
{
	width: 50%;
	margin-right: 23px;
}
.show_name a:hover
{
	color: #b22222;
}
.show_location
{
	width: calc(50% - 23px);
	margin-left: 23px;
}
.show_shop
{
	width: 120px;
	height: 35px;
	background: #000000;
}
.show_shop:hover
{
	background: #b22222;
}
.show_shop a
{
	display: block;
	width: 100%;
	height: 100%;
	line-height: 35px;
	text-align: center;
}

/*********************************
8. Artist
*********************************/

.artist
{
    padding-top: 100px;
    padding-bottom: 106px;
    background: #000000;
}

.artist_grid
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.artist_image_col
{
    grid-column: 2;
    grid-row: 1;
    z-index: 0;
}

.artist_content_col
{
    grid-column: 1;
    grid-row: 1;
    z-index: 1;
    margin-right: -80px;
}

.artist_image
{
    width: 100%;
}

.artist_image img
{
    display: none;
}

.artist_content
{
    padding: 60px 40px;
    background: #8B0000;
    border: 1.5px solid #ffffff;
}

.artist_content h1
{
    color: #000000;
    text-align: left;
    word-spacing: normal;
}

.artist_text
{
    margin-top: 24px;
}

.artist_text p:not(:last-child)
{
    margin-bottom: 30px;
}

.single_player_container
{
    width: 100%;
    background: #FFFFFF;
    margin-top: 40px;
}

.single_player
{
    width: 100%;
}

.jp-type-single .player_details
{
    margin-top: 0;
    padding-left: 46px;
    padding-right: 54px;
}

.jp-type-single .player_controls .jp-interface
{
    padding-left: 44px;
    padding-right: 52px;
}

.jp-type-single .jp-play
{
    transform: translateY(7px);
}
/*********************************
9. Extra
*********************************/

.extra
{
	padding-left: 50px;
	padding-right: 51px;
	padding-bottom: 50px;
}
.extra_container
{
	border: 1.5px solid #8B0000;	
}
.extra_content
{
	height: 448px;
	-webkit-transform: translateY(-5px);
	-moz-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	-o-transform: translateY(-5px);
	transform: translateY(-5px);
}
.extra_title h1
{
	font-size: 60px;
}
.extra_text
{
	margin-top: 4px;
}
.extra_button
{
	width: 161px;
	height: 46px;
	background: #000000;
	margin-top: 35px;
}
.extra_button:hover
{
	background: rgba(0,0,0,0.5);
}
.extra_button a
{
	display: block;
	width: 100%;
	height: 100%;
	line-height: 46px;
	color: #FFFFFF;
	font-size: 14px;
	text-align: center;
}

/*********************************
10. Footer
*********************************/

.footer
{
	border-top: solid 1.5px #8B0000;
	background: #000000;
	padding-left: 50px;
	padding-right: 51px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.newsletter_container
{
	width: 604px;
	padding-top: 50px;
	text-align: center;
}
.newsletter_title
{
	text-align: center;
}
.newsletter_form
{
	display: block;
	position: relative;
	width: 100%;
	margin-top: 30px;
	margin-left: auto;
	margin-right: auto;
}
.newsletter_input
{
	width: 100%;
	height: 50px;
	background: #3D3D45;
	border: none;
	outline: none;
	padding-left: 23px;
}
.newsletter_input::-webkit-input-placeholder
{
	font-size: 12px !important;
	font-style: italic;
	color: #FFFFFF !important;
}
.newsletter_input:-moz-placeholder
{
	font-size: 12px !important;
	font-style: italic;
	color: #FFFFFF !important;
}
.newsletter_input::-moz-placeholder
{
	font-size: 12px !important;
	font-style: italic;
	color: #FFFFFF !important;
} 
.newsletter_input:-ms-input-placeholder
{ 
	font-size: 12px !important;
	font-style: italic;
	color: #FFFFFF !important;
}
.newsletter_input::input-placeholder
{
	font-size: 12px !important;
	font-style: italic;
	color: #FFFFFF !important;
}
.newsletter_button
{
	position: absolute;
	top: 0;
	right: 0;
	width: 139px;
	height: 50px;
	background: #b22222;
	border: none;
	outline: none;
	cursor: pointer;
	color: #FFFFFF;
	font-size: 14px;
}
.footer_lists
{
	width: 575px;
	padding-top: 50px;
	padding-bottom: 5px;
	display: flex;
	justify-content: center;
}
.footer_list
{
	width: calc(100% / 3);
	text-align: center;
}
.footer_list_title
{
	font-size: 24px;
	margin-top: 25px;
	text-align: center;
}
.footer_list ul
{ 	
	margin-top: 23px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.footer_list ul li:not(:last-of-type)
{
	margin-bottom: 9px;
}
.footer_list ul li a
{
	font-size: 14px;
	color: #8A8A8A;
}
.footer_list ul li a:hover
{
	color: #FFFFFF;
}
.copyright_bar
{
	width: 100%;
	height: 67px;
	background: #000000;
	display: flex;
	justify-content: center;
	align-items: center;
}
.copyright_bar span
{
	font-size: 14px;
	color: #ffffff;
	line-height: 67px;
	display: flex;
	justify-content: center;
	text-align: center;
}
#sc_playlist li {
    position: relative;
    height: auto;
    padding-left: 55px;
    margin-bottom: 14px !important;
}
#sc_playlist li > div.sc_track_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 35px;
}
#sc_playlist li > div.sc_track_num {
    display: block;
    position: absolute;
    left: 20px;
    font-size: 13px;
    color: #aaa;
}
.sc_track_title {
    font-size: 16px;
    color: #ffffff;
    display: block;
}
.sc_track_artist {
    font-size: 12px;
    color: #8B0000;
    display: block;
    margin-top: 2px;
}
#sc_playlist li.sc_track_row.active .sc_track_title {
    color: #ffffff;
}
.sc_track_row::before {
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'FontAwesome';
    content: '\f04b';
    color: #ffffff;
    font-size: 14px;
}

.sc_track_row.active::before {
    color: #b22222;
}
#sc_playlist li > div.sc_track_num {
    display: block;
    position: absolute;
    left: 20px;
    font-size: 13px;
    color: #aaa;
}
/*********************************
Contact Section — FWM FIR
*********************************/
.fwm_contact
{
	padding-top: 0;
	padding-bottom: 120px;
	margin-top: -100px;
	position: relative;
	z-index: 10;
	background: transparent;
}
.fwm_contact_inner
{
	background: #000000;
	border: 1.5px solid #8B0000;
	padding: 56px 48px;
	max-width: 680px;
	margin: 0 auto;
	position: relative;
}
.fwm_contact_inner::before
{
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
	pointer-events: none;
	opacity: 0.35;
}
.fwm_contact_sub
{
	font-size: 12px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: #8B0000;
	margin-bottom: 8px;
	line-height: 1;
}
.fwm_contact_title
{
	font-size: 48px;
	color: #b22222;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 40px;
	line-height: 1;
}
.fwm_field_group
{
	position: relative;
	margin-bottom: 32px;
}
.fwm_input
{
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1.5px solid #8B0000;
	outline: none;
	color: #ffffff;
	font-family: 'Special Elite', cursive;
	font-size: 15px;
	padding: 10px 0;
	caret-color: #b22222;
	-webkit-transition: border-color 300ms ease;
	transition: border-color 300ms ease;
}
.fwm_input::placeholder
{
	color: rgba(255,255,255,0.35);
	font-style: italic;
}
.fwm_input:focus
{
	border-bottom-color: #b22222;
}
.fwm_field_line
{
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1.5px;
	background: #b22222;
	-webkit-transition: width 350ms ease;
	transition: width 350ms ease;
}
.fwm_field_group:focus-within .fwm_field_line
{
	width: 100%;
}
.fwm_textarea
{
	resize: none;
	line-height: 1;
}
.fwm_submit_row
{
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 16px;
}
.fwm_submit_btn
{
	position: relative;
	background: transparent;
	border: 1.5px solid #8B0000;
	color: #ffffff;
	font-family: 'Special Elite', cursive;
	font-size: 14px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 14px 40px;
	cursor: pointer;
	overflow: hidden;
	-webkit-transition: color 300ms ease, border-color 300ms ease;
	transition: color 300ms ease, border-color 300ms ease;
}
.fwm_submit_btn::before
{
	content: '';
	position: absolute;
	inset: 0;
	background: #b22222;
	transform: translateX(-101%);
	-webkit-transition: transform 350ms ease;
	transition: transform 350ms ease;
	z-index: 0;
}
.fwm_submit_btn:hover::before { transform: translateX(0); }
.fwm_submit_btn:hover { border-color: #b22222; }
.fwm_submit_btn span { position: relative; z-index: 1; }
.fwm_error_msg
{
	font-size: 13px;
	color: #b22222;
	letter-spacing: 0.05em;
	font-style: italic;
}
.fwm_success
{
	text-align: center;
	padding: 48px 24px;
	border: 1.5px solid #8B0000;
	animation: fwm_fadeIn 600ms ease forwards;
}
.fwm_contact_inner {
    margin: 0 auto;
}
@keyframes fwm_fadeIn
{
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: translateY(0); }
}
.fwm_success_icon
{
	display: block;
	font-size: 28px;
	color: #b22222;
	margin-bottom: 16px;
	animation: fwm_spin 4s linear infinite;
}
@keyframes fwm_spin
{
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}
.fwm_success_headline
{
	font-family: 'Special Elite', cursive;
	font-size: 28px;
	color: #b22222;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 10px;
	line-height: 1.2;
}
.fwm_success_body
{
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1.6;
}

/*********************************
11. Mobile Responsive Styles
*********************************/

@media only screen and (max-width: 991px)
{
	/* --- Header --- */
	.header_content
	{
		padding-left: 20px;
		padding-right: 20px;
		height: 80px;
	}
	.logo
	{
		left: 20px;
		font-size: 24px;
	}
	.logo a
	{
		font-size: 24px;
	}
	.log_reg
	{
		display: none;
	}
	.hamburger
	{
		display: flex;
		align-items: center;
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
	}
	.main_nav
	{
		display: none;
	}
	.menu_log_reg
	{
		display: block;
	}

	/* --- Home / Hero --- */
	.home
	{
		height: 55vh;
		min-height: 350px;
		object-fit: contain;
		overflow: hidden;
	}
	.home .background_image
	{
		height: 100%;
		background-position: center center;
	}
	/* YouTube / video embeds in hero */
	.home iframe,
	.home video,
	.home .home_slider_container iframe
	{
		width: 100%;
		height: 100%;
		min-height: 85vh;
		object-fit: cover;
	}
	.home_container
	{
		padding-top: 80px;
	}
	.home_title h1
	{
		font-size: 48px;
	}

	/* --- Featured Album / Tracks Section --- */
	.featured_album
	{
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.featured_row
	{
		margin-top: 30px;
	}
	.featured_row > .col-lg-5,
	.featured_row > .col-lg-7,
	.featured_row > [class*="col-"]
	{
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 100% !important;
	}
	.featured_album_image
	{
		width: 100%;
		height: 75vh;
		min-height: 450px;
		margin-top: 0;
	}
	.featured_album_image .background_image
	{
		height: 100%;
		background-position: center top;
	}
	.featured_album_image img
	{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.featured_album_col
	{
		margin-top: -60px;
		z-index: 2;
	}
	.featured_album_player_container
	{
		width: calc(100% - 30px);
		left: 15px;
	}
	.featured_album_title_bar
	{
		height: auto;
		padding: 20px 20px;
		margin-bottom: 0;
		margin-top: 0;
	}
	.featured_album_artist
	{
		font-size: 22px;
	}
	.featured_album_link
	{
		margin-top: 10px;
	}

	/* --- Shows Section --- */
	.shows
	{
		padding-top: 80px;
	}
	.shows_row
	{
		margin-top: 0;
	}
	.shows_row > [class*="col-"]
	{
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 100% !important;
	}
	.shows_image
	{
		left: 0;
		width: 100%;
		min-height: 65vh;
	}
	.shows_image .background_image
	{
		height: 100%;
		background-position: center center;
	}
	.shows_image img
	{
		width: 100%;
		height: 65vh;
		min-height: 400px;
		object-fit: cover;
	}
	.shows_list_container
	{
		width: 100%;
		top: auto;
		transform: none;
		margin-top: -40px;
		z-index: 2;
		padding-left: 15px;
		padding-right: 15px;
	}
	.shows_list li
	{
		height: auto;
		padding: 12px;
		flex-wrap: wrap;
		gap: 8px;
	}
	.show_name
	{
		width: 100%;
		margin-right: 0;
	}
	.show_location
	{
		width: 100%;
		margin-left: 0;
	}

	/* --- Artist Section — Overlap Effect --- */
	.artist
	{
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.artist_grid
	{
		display: flex;
		flex-direction: column;
	}
	.artist_image_col
	{
		order: 1;
		width: 100%;
	}
	.artist_content_col
	{
		order: 2;
		width: calc(100% - 30px);
		margin: -60px auto 0 auto;
		margin-right: 15px;
		margin-left: 15px;
		z-index: 2;
	}
	.artist_content
	{
		padding: 40px 24px;
	}
	.artist_content h1
	{
		font-size: 36px;
	}

	/* --- Extra Section --- */
	.extra
	{
		padding-left: 15px;
		padding-right: 15px;
		padding-bottom: 30px;
	}
	.extra_container
	{
		min-height: 45vh;
	}
	.extra_container .background_image
	{
		height: 100%;
		background-position: center center;
	}
	.extra_content
	{
		height: auto;
		padding: 40px 20px;
		transform: none;
	}
	.extra_title h1
	{
		font-size: 36px;
	}

	/* --- Contact Section --- */
	.fwm_contact
	{
		margin-top: -60px;
		padding-bottom: 60px;
	}
	.fwm_contact_inner
	{
		padding: 40px 24px;
		margin-left: 15px;
		margin-right: 15px;
		max-width: none;
	}
	.fwm_contact_title
	{
		font-size: 36px;
	}

	/* --- Footer --- */
	.footer
	{
		padding-left: 20px;
		padding-right: 20px;
	}
	.newsletter_container
	{
		width: 100%;
	}
	.footer_lists
	{
		width: 100%;
		flex-wrap: wrap;
	}
	.footer_list
	{
		width: 50%;
		margin-bottom: 20px;
	}

	/* --- SoundCloud Player --- */
	.sc_player_container
	{
		margin-left: 15px;
		margin-right: 15px;
		margin-top: -50px;
		position: relative;
		z-index: 2;
	}

	/* --- Section titles --- */
	h1
	{
		font-size: 36px;
	}
	h2
	{
		font-size: 28px;
	}
	.section_title h1
	{
		font-size: 36px;
	}
}

@media only screen and (max-width: 575px)
{
	/* --- Header tighter --- */
	.header_content
	{
		height: 65px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.logo
	{
		left: 15px;
		font-size: 20px;
	}
	.logo a
	{
		font-size: 20px;
	}
	.hamburger
	{
		right: 15px;
	}

	/* --- Home --- */
	.home
	{
		height: 75vh;
		min-height: 480px;
	}
	.home iframe,
	.home video,
	.home .home_slider_container iframe
	{
		min-height: 75vh;
	}
	.home_title h1
	{
		font-size: 36px;
	}
	.home_link a
	{
		font-size: 18px;
	}

	/* --- Featured album image taller --- */
	.featured_album_image
	{
		height: 65vh;
		min-height: 400px;
	}

	/* --- Artist overlap tighter on small screens --- */
	.artist_content_col
	{
		margin-top: -50px;
		margin-left: 10px;
		margin-right: 10px;
		width: calc(100% - 20px);
	}
	.artist_content
	{
		padding: 30px 20px;
	}
	.artist_content h1
	{
		font-size: 28px;
	}

	/* --- Featured album overlap --- */
	.featured_album_col
	{
		margin-top: -50px;
	}
	.featured_album_player_container
	{
		width: calc(100% - 20px);
		left: 10px;
	}

	/* --- Shows overlap --- */
	.shows_list_container
	{
		margin-top: -30px;
		padding-left: 10px;
		padding-right: 10px;
	}

	/* --- Contact overlap --- */
	.fwm_contact
	{
		margin-top: -50px;
	}
	.fwm_contact_inner
	{
		padding: 30px 18px;
		margin-left: 10px;
		margin-right: 10px;
	}
	.fwm_contact_title
	{
		font-size: 32px;
	}
	.fwm_submit_row
	{
		flex-direction: column;
		align-items: flex-start;
	}

	/* --- Extra --- */
	.extra
	{
		padding-left: 10px;
		padding-right: 10px;
	}
	.extra_title h1
	{
		font-size: 28px;
	}

	/* --- Footer --- */
	.footer
	{
		padding-left: 15px;
		padding-right: 15px;
	}
	.footer_list
	{
		width: 100%;
	}
	.copyright_bar span
	{
		font-size: 12px;
	}

	/* --- SoundCloud Player tighter --- */
	.sc_player_container
	{
		margin-left: 10px;
		margin-right: 10px;
		margin-top: -40px;
	}

	/* --- General type scale --- */
	h1 { font-size: 28px; }
	h2 { font-size: 24px; }
	h3 { font-size: 20px; }
	.section_title h1
	{
		font-size: 28px;
	}
}