html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  font-family: sans-serif;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* Reusable Elements */
.clear:after {
  display: block;
  clear: both;
  content: "";
}

/* Font-sizing */
html {
  font-size: 100%;
}

p {
  font-size: 1em;
  margin: 0.5em 0;
}

h1,
h2,
h3,
h4 {
  margin: 0.5em 0;
  font-weight: 700;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2.5em;
}

h3 {
  font-size: 2em;
}

h4 {
  font-size: 1.5em;
}

/* Main Site Structure */
#site {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vw;
}

#site.left.opened {
  left: 20vw;
}

#site.right.opened {
  right: 20vw;
}

/* Mobile Menu */
#mobile-menu {
  position: absolute;
  top: 0;
  width: 20vw;
  height: 100vh;
  left: -20vw;
}

#mobile-menu.left {
  left: -20vw;
}

#mobile-menu.right {
  right: -20vw;
}

#mobile-menu.left.opened {
  left: 0;
}

#mobile-menu.right.opened {
  right: 0;
}

@media screen and (min-width: 1000px) {
  #mobile-menu {
    display: none;
  }
}

/* Hamburger */
#hamburger {
  height: 100%;
  position: relative;
}

#hamburger:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 1em;
  height: 0.15em;
  background: black;
  box-shadow: 0 0.25em 0 0 black, 0 0.5em 0 0 black;
}

@media screen and (min-width: 1000px) {
  #hamburger {
    display: none;
  }
}

/* Boxes */
.box {
  position: relative;
}

.box:after {
  padding-bottom: 100%;
  content: "";
  display: block;
}

.box.tall:after {
  padding-bottom: 150%;
  content: "";
  display: block;
}

.box.wide:after {
  padding-bottom: 50%;
  content: "";
  display: block;
}

/* Row */
.row {
  width: 100%;
}

/* Responsive */
.responsive {
  max-width: 100%;
  width: 1600px;
  margin: 0px auto;
}

@media screen and (max-width: 1600px) {
  .responsive {
    width: 1200px;
  }
}

@media screen and (max-width: 1200px) {
  .responsive {
    width: 900px;
  }
}

/* Grid */
.grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Screen Fillers */
.he1 {
  height: 25vh;
}

.he2 {
  height: 50vh;
}

.he4 {
  height: 75vh;
}

.he4 {
  height: 100vh;
}

/* Columns */
.co1 {
  width: 8.33%;
}

.co2 {
  width: 16.66%;
}

.co3 {
  width: 25%;
}

.co4 {
  width: 33.33%;
}

.co5 {
  width: 41.66%;
}

@media screen and (max-width: 900px) {
  .co5 {
    width: 100%;
  }
}

.co6 {
  width: 50%;
}

@media screen and (max-width: 900px) {
  .co6 {
    width: 100%;
  }
}

.co7 {
  width: 58.33%;
}

.co8 {
  width: 66.66%;
}

.co9 {
  width: 75%;
}

.co10 {
  width: 83.33%;
}

.co11 {
  width: 91.33%;
}

.co12 {
  width: 100%;
}

/* icon */
#widget-social {
  text-align: center;
}

.icon {
  display: inline-block;
  font-size: 1.5em;
  padding: 0.5em;
}

.icon:hover {
  opacity: 0.8;
}

@media screen and (max-width: 800px) {
  .header,
  .main {
    width: 100% !important;
  }
  .header {
    text-align: center;
  }
  .branding a {
    display: block;
  }
  .branding a img {
    width: 50%;
    margin: 0px auto;
  }
}

/* Lightbox Style */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  z-index: 0;
  display: none;
  transition: opacity 1s ease;
}

#lightbox.open {
  opacity: 1;
  z-index: 999;
  display: block;
  transition: opacity 1s ease;
}

#lightbox-inner {
  position: relative;
  width: 95%;
  height: 90%;
  margin: 2.5%;
  padding: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px !important;
  margin: 0;
  padding: 0;
  color: #fff;
  display: block;
  font-size: 12px;
  cursor: pointer;
}

.backLink {
  display: block;
  width: 70%;
  text-align: left;
  padding: 1rem 0;
  margin: 0px auto;
}

#pageLoader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 1s, top 0s 1s;
  background: #fff;
  z-index: 99999;
}

#pageLoader.loaded {
  opacity: 0;
  top: -100000000px;
}

#pageLoader #pageLoader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  text-align: center;
}

body {
  transition: right 1s;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}

#header {
  width: 100%;
  height: 75px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: transparent;
}

#header.scrolled {
  background: #000;
}

#header > div {
  width: 1000px;
  height: 100%;
  margin: 0px auto;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
}

#header > div > #branding {
  height: 100%;
  width: 15%;
}

@media screen and (max-width: 900px) {
  #header > div > #branding {
    width: 25%;
  }
}

@media screen and (max-width: 500px) {
  #header > div > #branding {
    width: 30%;
  }
}

#header > div > #branding > a {
  position: relative;
  height: 100%;
  width: 100%;
  display: block;
}

#header > div > #branding > a > img {
  height: auto;
  max-width: 100%;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: inherit;
  background-clip: text;
  color: transparent;
  left: 20px;
}

@media screen and (max-width: 500px) {
  #header > div > #branding > a > img {
    left: 10px;
  }
}

#header > div > .menu-main-menu-container {
  display: inline-block;
  height: 100%;
  vertical-align: top;
}

#header > div > .menu-main-menu-container > nav {
  display: block;
  height: 100%;
}

#header > div > .menu-main-menu-container > nav > ul {
  list-style: none;
  display: block;
  height: 100%;
}

#header > div > .menu-main-menu-container > nav > ul > li {
  display: inline-block;
  height: 100%;
}

#header > div > .menu-main-menu-container > nav > ul > li > a {
  display: block;
  line-height: 75px;
  margin: 0px 10px;
  padding: 0 10px;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header > div > .menu-main-menu-container > nav > ul > li > a:hover {
  border-bottom: 2px solid #fff;
}

#burger {
  cursor: pointer;
  font-size: 2rem;
  line-height: 75px;
  color: #fff;
  padding: 0 1rem;
  display: none;
  transition: right 1s;
  position: absolute;
  top: 0;
  right: 0;
}

#burger:hover {
  opacity: 0.8;
}

#burger span {
  position: relative;
}

#burger span:after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  content: "";
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: -250px;
  height: 100vh;
  width: 250px;
  z-index: 250;
  background: #000;
  transition: right 1s;
}

.mobile-menu li {
  width: 100%;
  display: block;
}

.mobile-menu li a {
  display: block;
  color: #fff;
  font-size: 2rem;
  text-align: right;
  padding: 1rem 1.5rem;
}

.mobile-menu li a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 900px) {
  #header > div > .menu-main-menu-container {
    display: none;
  }
  #burger {
    display: block;
    transition: right 1s;
  }
  body.open {
    right: 250px;
  }
  body.open .mobile-menu {
    right: 0px;
  }
  body.open #burger {
    right: 250px;
  }
}

@media screen and (max-width: 500px) {
  body.open .mobile-menu {
    width: 100%;
    z-index: 180;
  }
  body.opem .mobile-menu li a {
    text-align: center;
    padding: 1.5rem 3rem;
  }
  body.open #burger {
    right: 82.5%;
    z-index: 200;
  }
}

/* THE MAIN AREA I */
.main {
  width: 100%;
}

.main > section.responsive {
  width: 1000px;
  margin: 0px auto;
  max-width: 100%;
}

/* GRID */
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.center {
  margin: 0px auto;
}

/* ARCHIVE STYLES*/
#archive > div {
  display: flex;
  flex-wrap: wrap;
}

#archive .archive-item {
  width: 33.333%;
  box-sizing: border-box;
  padding: 20px;
}

@media screen and (max-width: 900px) {
  #archive .archive-item {
    width: 50%;
  }
}

@media screen and (max-width: 500px) {
  #archive .archive-item {
    width: 100%;
  }
}

#archive .archive-item-image {
  position: relative;
}

#archive .archive-item-image:after {
  padding-top: 65%;
  content: "";
  display: block;
}

#archive .archive-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
}

/* HEADER STYLES */
.full-height-article {
  height: 100vh;
  background-position: center center;
}

.half-height-article {
  height: 50vh;
  background-position: center 20%;
}

.full-height-article,
.half-height-article {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: black;
}

.full-height-article .header-social,
.half-height-article .header-social {
  width: 100%;
  display: flex;
  justify-content: center;
}

.full-height-article .header-social a,
.half-height-article .header-social a {
  font-size: 2rem;
  color: #fff;
  padding: 0 0.5rem;
}

.full-height-article .call-to-action,
.half-height-article .call-to-action {
  padding: 10px 20px;
  text-transform: uppercase;
  color: #fff !important;
  border: 2px solid #fff;
  margin-top: 20px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 3px;
}

.full-height-article .call-to-action:hover,
.half-height-article .call-to-action:hover {
  background: #fff;
  color: #000 !important;
}

.full-height-article .down-arrow,
.half-height-article .down-arrow {
  position: absolute;
  bottom: 25px;
  width: 50px;
  left: 50%;
  color: #fff;
  font-size: 2rem;
  transform: translateX(-50%);
  cursor: pointer;
  transition: opacity 0.3s;
}

.full-height-article .down-arrow:hover,
.half-height-article .down-arrow:hover {
  opacity: 0.5;
}

.full-height-article .leader,
.half-height-article .leader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  margin: 0;
  padding: 0;
}

.full-height-article .leader h1,
.half-height-article .leader h1 {
  font-weight: 400;
  font-style: normal;
  font-size: 44px;
  letter-spacing: 3px;
  line-height: 1.1em;
  text-transform: uppercase;
}

@media screen and (max-width: 500px) {
  .full-height-article .leader h1,
  .half-height-article .leader h1 {
    font-size: 30px;
  }
}

.page-text,
.page-media {
  margin: 2rem auto;
  font-size: 1.5rem;
  padding-top: 25px;
}

.tour-dates {
  width: 70%;
  margin: 0px auto;
}

@media screen and (max-width: 900px) {
  .player:not(:last-child) {
    padding-bottom: 20px;
  }
}

.page-media,
.page-text,
.tour-dates {
  width: 70%;
}

@media screen and (max-width: 900px) {
  .page-media,
  .page-text,
  .tour-dates {
    width: 90%;
  }
}

@media screen and (max-width: 900px) {
  .pagination {
    padding: 16px;
  }
}

/* FOOTER */
#footer {
  width: 100%;
  display: none;
}

#footer > div {
  width: 1000px;
  margin: 0px auto;
  max-width: 100%;
}

.song-header {
	cursor:pointer;
}
.song-lyrics {
	display:none;
}

.lyricsArchive-item {
	width:25%;
	display:inline-block;
	padding:2rem;
	box-sizing:border-box;
}