@font-face {
  font-family: "brantlight";
  src: url("../../assets/fonts/brant-light-webfont.woff2") format("woff2"), url("../../assets/fonts/brant-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.a .b {
  color: #887;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 18px;
}

body {
  margin: 0;
  font-family: "DM Sans";
  font-size: 1em;
  line-height: 1.6em;
  background: #e5dbca;
  color: #1f0c3c;
}

body,
html {
  height: 100%;
}

a {
  text-decoration: none;
}

.site-wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
}

.content {
  width: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: lowercase;
  font-family: "brantlight";
  line-height: 1.05em;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.25em;
}

h5 {
  font-size: 1.1em;
}

h6 {
  font-size: 1em;
}

/*--- MENU ---*/
#header {
  background: #e5dbca;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

@media screen and (min-width: 1024.1px) {
  .menu-mobile,
  .menu-mob-trig,
  #menu-icon {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .menu-desk {
    display: none !important;
  }
}
.links-menu-mobile,
.links-menu-desk {
  text-transform: lowercase;
  font-family: "DM Sans";
  font-weight: 500;
  font-size: 1.2em;
}

.menu-desk {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.menu-desk input,
.menu-desk .sub-menu-arrow {
  display: none;
}
.menu-desk .links-menu-desk {
  padding-top: 0px;
}
.menu-desk .links-menu-desk a {
  color: #1f0c3c;
}
.menu-desk .links-menu-desk ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-desk .links-menu-desk ul.nav-drop {
  left: 0;
  opacity: 0;
  position: absolute;
  overflow: hidden;
  white-space: nowrap;
  top: 100%;
  padding-top: 0.2em;
  text-align: left;
}
.menu-desk .links-menu-desk ul.nav-drop > li {
  display: block;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
}
.menu-desk .links-menu-desk ul.nav-drop:not(.menu-level-1):not(.menu-level-0) {
  left: 100%;
  top: 0;
}
.menu-desk .links-menu-desk ul li {
  display: inline-block;
  position: relative;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.menu-desk .links-menu-desk ul li:hover {
  transition: background-color 0.6s linear;
}
.menu-desk .links-menu-desk ul li:hover > ul.nav-drop {
  transition: opacity 0.6s linear;
  opacity: 1 !important;
  overflow: visible;
}
.menu-desk .links-menu-desk ul li:not(:hover) {
  transition: background-color 0.6s linear;
  /* transition-delay: -0.3s; */
}
.menu-desk .links-menu-desk ul li:not(:hover) > ul.nav-drop {
  transition: opacity 0.6s linear;
  /* transition-delay: -0.3s; */
  pointer-events: none;
}

.menu-mobile {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 11f0c3c;
  background: #e5dbca;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  translate: 0% -100%;
  opacity: 0;
}
.menu-mobile .mm-wrap {
  width: 90%;
}
.menu-mobile .links-menu-mobile label {
  position: relative;
}
.menu-mobile .links-menu-mobile label span.sub-menu-arrow {
  position: absolute;
  right: 0em;
  text-align: right;
}
.menu-mobile .links-menu-mobile .hidden-checkbox {
  display: none;
}
.menu-mobile .links-menu-mobile ul {
  list-style: none;
  padding: 0;
}
.menu-mobile .links-menu-mobile ul li {
  margin: 1.5em 0;
}
.menu-mobile .links-menu-mobile ul li a,
.menu-mobile .links-menu-mobile ul li label {
  text-align: center;
  display: block;
  text-transform: lowercase;
  font-family: "DM Sans";
  font-weight: 500;
  color: #1f0c3c;
  text-align: center;
  font-size: 1.6em;
}
.menu-mobile .links-menu-mobile ul.nav-drop {
  display: grid;
  font-size: 0.8em;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease-out;
  transition: grid-template-rows 0.5s ease-out, -ms-grid-rows 0.5s ease-out;
  padding-left: 2em;
}
.menu-mobile .links-menu-mobile ul.nav-drop > div {
  overflow: hidden;
}
.menu-mobile .links-menu-mobile .submenu-trig:not(:checked) + label > span.sub-menu-arrow:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 0.6em;
  content: "\f061";
}
.menu-mobile .links-menu-mobile .submenu-trig:checked + label > span.sub-menu-arrow:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 0.6em;
  content: "\f062";
}
.menu-mobile .links-menu-mobile .submenu-trig:checked + label + ul {
  grid-template-rows: 1fr;
}

#menu-mob-trig {
  display: none;
}

#menu-icon {
  position: relative;
  z-index: 1010;
  margin-top: 10px;
}
#menu-icon .hamburger-menu {
  width: 30px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
#menu-icon .hamburger-menu .line {
  width: 100%;
  height: 2px;
  background-color: #1f0c3c;
  /* You can adjust the color */
}
#menu-icon .close-menu {
  width: 30px;
  height: 16px;
  position: relative;
  cursor: pointer;
}
#menu-icon .close-menu .line {
  width: 100%;
  height: 2px;
  background-color: #1f0c3c;
  /* You can adjust the color */
  transform-origin: center;
  position: absolute;
  top: 50%;
  translate: 0% -50%;
}
#menu-icon .close-menu .line:first-child {
  transform: rotate(45deg);
}
#menu-icon .close-menu .line:last-child {
  transform: rotate(-45deg);
}

#menu-mob-trig:not(:checked) + #menu-icon .close-menu {
  display: none;
}
#menu-mob-trig:checked + #menu-icon .hamburger-menu {
  display: none;
}
#menu-mob-trig:checked + #menu-icon + .menu-mobile {
  translate: 0% 0%;
  opacity: 1;
}

/*--- MENU ---*/
.header-inner {
  width: 90%;
  max-width: 1400px;
  padding-top: 1em;
  padding-bottom: 0.75em;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.header-inner .menu-logo {
  width: 300px;
}
@media screen and (max-width: 1024px) {
  .header-inner .menu-logo {
    width: 250px;
  }
}

/*--- HOME ---*/
.section-content {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.home-header {
  background: #e5dbca;
  padding-top: 1em;
  padding-bottom: 5em;
}

.subscribe {
  margin-top: 1em;
  padding: 2em;
  padding-top: 1em;
  text-align: center;
  border: 2px solid #1f0c3c;
  background: rgba(255, 255, 255, 0.2);
}
.subscribe iframe {
  height: 120px !important;
  width: 100%;
  max-width: 650px;
}

.home-release {
  z-index: 14;
  margin-top: -2em;
  background: url(../../assets/img/music-bg.webp);
  background-size: cover;
  padding-top: 5em;
  padding-bottom: 5em;
}
.home-release img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .home-release {
    background: url(../../assets/img/music-bg-mob.webp);
    background-position: center top;
    background-size: cover;
  }
}

.home-bio {
  z-index: 15;
  margin-top: -2em;
  background: url(../../assets/img/bio-bg.webp);
  background-size: cover;
  padding-top: 5em;
  padding-bottom: 5em;
}
.home-bio .bio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2em;
  align-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .home-bio .bio-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .home-bio .bio-grid .bio-photo {
    order: 2;
  }
  .home-bio .bio-grid .bio-content {
    order: 1;
  }
}

.home-videos {
  --embla-slide-width: 100%;
}
.home-videos .embla__slide__inner {
  width: 100%;
}
@media screen and (max-width: 980px) {
  .home-videos .embla__slide__inner {
    width: 96%;
    margin: 0 auto;
  }
}
.home-videos .embla__slide__inner iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}
.home-videos .embla__arrows {
  position: absolute;
  top: 50%;
  border: 0;
  background: none;
}
.home-videos .embla__arrows i {
  font-size: 3em;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .home-videos .embla__arrows i {
    font-size: 2em;
  }
}
.home-videos .embla__arrows.embla__prev {
  left: -5%;
}
@media screen and (max-width: 800px) {
  .home-videos .embla__arrows.embla__prev {
    left: -6%;
  }
}
.home-videos .embla__arrows.embla__next {
  right: -5%;
}
@media screen and (max-width: 800px) {
  .home-videos .embla__arrows.embla__next {
    right: -6%;
  }
}

.home-news {
  --embla-slide-width: 33%;
  padding: 1em;
}
.home-news .embla__viewport {
  max-width: 1300px;
}
.home-news .embla__arrows {
  position: absolute;
  top: 50%;
  border: 0;
  background: none;
}
.home-news .embla__arrows i {
  font-size: 3em;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .home-news .embla__arrows i {
    font-size: 2em;
  }
}
.home-news .embla__arrows.embla__prev {
  left: -5%;
}
@media screen and (max-width: 800px) {
  .home-news .embla__arrows.embla__prev {
    left: -6%;
  }
}
.home-news .embla__arrows.embla__next {
  right: -5%;
}
@media screen and (max-width: 800px) {
  .home-news .embla__arrows.embla__next {
    right: -6%;
  }
}
@media screen and (max-width: 1199px) {
  .home-news {
    --embla-slide-width: 33.33%;
    padding: 1em;
  }
}
@media screen and (max-width: 1023px) {
  .home-news {
    --embla-slide-width: 50%;
    padding: 0.75em;
  }
}
.home-news .embla__slide {
  justify-content: flex-start;
  align-content: top !important;
  align-items: top !important;
  padding: 1em;
}
.home-news .embla__slide img {
  width: 100%;
}
.home-news h5 {
  text-align: left;
  font-weight: 500;
  text-transform: uppercase;
  color: #1f0c3c;
  margin-top: -0.75em;
  font-family: "DM Sans";
}
.home-news a {
  color: #1f0c3c;
  text-align: left;
}
.home-news .more {
  text-align: left;
  border: 1px solid #1f0c3c;
  font-size: 0.8em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-top: 0.1em;
  padding-right: 0.25em;
  display: table;
  margin-left: 0;
  margin-top: -1.25em;
}
.home-news .more:hover {
  background: #1f0c3c;
  color: #c0ad73;
}
.home-news .embla .embla__viewport .embla__container .embla__slide {
  align-items: top !important;
}

.home-videos {
  z-index: 16;
  margin-top: -2em;
  background: url(../../assets/img/videos-bg.webp);
  background-size: cover;
  padding-top: 5em;
  padding-bottom: 5em;
  text-align: center;
}

.home-shows {
  z-index: 17;
  margin-top: -2em;
  background: url(../../assets/img/shows-bg.webp);
  background-size: cover;
  padding-top: 5em;
  padding-bottom: 5em;
  min-height: 85vh;
  text-align: center;
  background-position: top center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-shows h2 {
  color: #c0ad73;
  text-align: center;
}

.news-section {
  z-index: 18;
  margin-top: -2em;
  background: url(../../assets/img/news-bg.webp);
  background-size: cover;
  padding-top: 5em;
  padding-bottom: 5em;
  text-align: center;
}

.home-contact {
  z-index: 19;
  margin-top: -2em;
  background: url(../../assets/img/contact-bg.webp);
  background-size: cover;
  padding-top: 5em;
  padding-bottom: 5em;
  text-align: center;
}
.home-contact a {
  color: #1f0c3c;
  font-weight: 500;
}

/*--- FOOTER ---*/
#footer {
  background: url(../../assets/img/footer.webp);
  background-size: cover;
  padding-top: 5em;
  padding-bottom: 2em;
  background-position: center top;
  text-align: center;
  color: #c0ad73;
  width: 100%;
  height: auto;
  margin-top: -2em;
  z-index: 20;
}
#footer a {
  color: #c0ad73;
}
#footer a:hover {
  color: #e5dbca;
}

/*--- SHOWS ---*/
.bit-widget .bit-no-dates-container {
  padding-top: 2em !important;
  padding-bottom: 1em !important;
  border-top: 0 !important;
}

.bit-widget .bit-top-track-button {
  text-align: center !important;
}

.shows-content {
  width: 90% !important;
  max-width: 1200px !important;
  margin: 0 auto;
  display: block;
}

.bit-widget {
  color: #c0ad73 !important;
  font-size: 2em;
}

.bit-upcoming-events-show-all-button,
.bit-widget .bit-upcoming-events-show-all-button {
  display: none !important;
}

.bit-widget .bit-nav-bar-container {
  padding: 0;
}

.bit-widget .bit-top-track-button {
  padding-top: 0 !important;
  color: #c0ad73 !important;
  padding-bottom: 10px !important;
}

.bit-lineUp-with,
.bit-widget .bit-event .bit-lineUp-container .bit-lineUp {
  font-family: "DM Sans";
  color: #c0ad73;
  font-size: 1em !important;
  line-height: 1em;
  position: relative;
  top: 2em !important;
}

.bit-lineUp-with {
  padding-right: 1em !important;
}

.bit-widget-container {
  margin-top: 0 !important;
  width: 100%;
}

.bit-track-button {
  display: none !important;
}

.bit-events {
  color: #c0ad73 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.bit-event {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.bit-top-track-button {
  color: #c0ad73;
  margin: 0 auto;
  display: block;
  text-transform: uppercase;
  font-family: "DM Sans";
  padding-bottom: 30px !important;
  text-align: center;
  font-size: 18px !important;
}

.bit-top-track-button a {
  color: #c0ad73 !important;
}

a.bit-top-track-button {
  padding-left: 10px !important;
  padding-right: 10px !important;
  margin-bottom: 10px !important;
}

.bit-nav-bar {
  font-family: "DM Sans";
  text-transform: uppercase;
  padding-bottom: 30px;
  font-size: 20px;
}

.bit-nav-bar a,
.bit-nav-bar span {
  color: #1d1b1b !important;
}

.bit-nav-bar a:hover,
.bit-nav-bar span a:hover {
  color: #e5dbca !important;
}

.bit-venue,
.bit-venue a {
  font-weight: 400 !important;
  font-family: "DM Sans";
  padding-right: 10px;
  color: #e5dbca !important;
}

.bit-widget {
  padding-top: 0;
}

.bit-widget .bit-location,
.bit-widget .bit-venue {
  padding-top: 1.25em;
  font-size: 1.2em;
  font-family: "DM Sans";
}
@media screen and (max-width: 980px) {
  .bit-widget .bit-location,
  .bit-widget .bit-venue {
    font-size: 1em;
  }
}

.bit-widget .bit-location {
  color: #c0ad73;
  font-weight: 400 !important;
  padding-top: 1em;
  padding-bottom: 0.5em !important;
}
@media screen and (max-width: 980px) {
  .bit-widget .bit-location {
    font-size: 0.9em;
  }
}

.bit-event {
  padding-top: 2em;
  padding-bottom: 2em;
  text-align: left !important;
}

.bit-details {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

.bit-widget .bit-event {
  border-bottom: 1px solid #c0ad73;
  border-top: 0 !important;
}

.bit-widget .bit-event:last-child {
  border-bottom: 0 !important;
}

.bit-widget .bit-event:last-child {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.bit-past-events,
.bit-upcoming-events {
  font-family: "DM Sans" !important;
  text-transform: uppercase;
}

.bit-widget .bit-upcoming-events,
bit-past-events {
  border-bottom: 0 !important;
}

.bit-past-events a,
.bit-upcoming-events a {
  color: #e5dbca;
}

.bit-date {
  font-size: 1.5em;
  color: #c0ad73;
  display: block;
  font-weight: 700 !important;
  margin-right: 18px;
}
@media screen and (max-width: 980px) {
  .bit-date {
    font-size: 1.2em;
  }
}

.bit-button,
.bit-date {
  font-family: "DM Sans";
  text-transform: uppercase;
}

.bit-button {
  background: none !important;
  font-weight: 400 !important;
  padding: 0.15em !important;
  padding-top: 0.5em !important;
  margin-top: 2px;
  border-radius: 0 !important;
  margin-bottom: 2px;
  color: #c0ad73 !important;
  border-width: 1px !important;
  border: 2px solid #c0ad73 !important;
}

.bit-widget .bit-event .bit-offers-text,
.bit-widget .bit-event .bit-rsvp {
  font-size: 0.95em !important;
}
@media screen and (max-width: 980px) {
  .bit-widget .bit-event .bit-offers-text,
  .bit-widget .bit-event .bit-rsvp {
    font-size: 0.8em;
  }
}

.bit-button:hover {
  color: #1f0c3c !important;
  background: #c0ad73 !important;
  border: 2px solid #c0ad73 !important;
}

.bit-widget .bit-event .bit-event-buttons {
  margin-top: 0 !important;
}

.bit-widget .bit-event-list-title,
.bit-widget .bit-top-track-button {
  font-size: 1.5em;
}

.bit-event:hover {
  background: rgba(0, 0, 0, 0) !important;
}

.bit-widget .bit-no-dates-container .bit-no-dates-title {
  font-family: "DM Sans";
  font-size: 1.5em;
}

@media screen and (max-width: 1125px) {
  .bit-widget.bit-layout-ipad .bit-event .bit-button {
    width: 120px;
  }
  .bit-widget.bit-layout-ipad .bit-event {
    padding-right: 15px;
  }
}
.bit-widget.bit-layout-desktop .bit-details {
  display: flex !important;
}

.bit-widget.bit-layout-desktop .bit-location {
  margin-left: 0 !important;
  text-align: left !important;
  font-weight: bold;
}

.bit-past-events .bit-event .bit-date {
  width: 200px;
}

.bit-past-events-show-all-button {
  font-family: "DM Sans";
  max-width: 300px;
  margin: 10px auto !important;
  display: block !important;
  background: none;
  border: 2px solid #c0ad73;
}

.bit-widget .bit-play-my-city-button {
  display: none !important;
}

.bit-widget.bit-layout-desktop .bit-details,
.bit-widget.bit-layout-desktop .bit-details > div {
  display: block !important;
}

.bit-nav-bar {
  display: none !important;
}

@media screen and (max-width: 1125px) {
  .bit-date {
    padding-bottom: 0 !important;
  }
}
.bit-upcoming-events-show-all-button {
  font-family: "DM Sans" !important;
  font-weight: 600 !important;
  max-width: 300px !important;
  display: block !important;
  margin: 5px auto !important;
  background: #fff;
  font-size: 1.5em !important;
}

.bit-upcoming-events-show-all-button:hover {
  background: #fff !important;
  color: #fff !important;
}

@media screen and (max-width: 800px) {
  .bit-widget {
    padding-top: 10px;
  }
  .bit-details {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
  }
}
@media screen and (max-width: 600px) {
  .bit-event {
    font-size: 1em;
    padding-bottom: 1em;
  }
  .bit-date {
    padding-top: 20px !important;
  }
  .bit-widget .bit-event {
    padding-top: 10px !important;
  }
}
.bit-date {
  padding-top: 5px;
}

.bit-rsvp-container {
  opacity: 0 !important;
  display: none;
}

.bit-rsvp-container a {
  margin-left: auto;
  margin-bottom: 5px;
}

.bit-widget .bit-event .bit-button,
.bit-widget .bit-event .bit-offers-text,
.bit-widget .bit-event .bit-rsvp {
  text-transform: uppercase !important;
  line-height: 1.5em !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.bit-widget .bit-event .bit-rsvp {
  line-height: 1.25em !important;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

.bit-widget .bit-event .bit-offers-menu {
  font-size: 0.9em !important;
  display: block !important;
  top: 38px !important;
  background: #c0ad73 !important;
  color: #1f0c3c !important;
  margin-left: -1px !important;
}

.on-sale-date {
  display: none;
}

.bit-offers-menu .bit-offer {
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}

.bit-widget.bit-layout-desktop .bit-offer:hover {
  background: rgba(255, 255, 255, 0.5) !important;
}

.bit-widget .bit-description {
  margin-top: 0.75em !important;
  font-size: 0.9em !important;
  font-weight: 700 !important;
  color: #1d1b1b !important;
  max-height: 40px !important;
  line-height: 1.5em !important;
  overflow: hidden;
  display: none;
}

/*--- NEWS POST ---*/
.body-ptp-post .news-post {
  width: 90%;
  max-width: 1000px;
  margin: 3em auto;
  display: block;
}
.body-ptp-post .news-post h1,
.body-ptp-post .news-post h2,
.body-ptp-post .news-post h3,
.body-ptp-post .news-post h4,
.body-ptp-post .news-post h5,
.body-ptp-post .news-post h6 {
  text-align: center;
}
.body-ptp-post .news-post h5 {
  font-family: "DM Sans";
}
.body-ptp-post .news-post hr {
  border-top: 1px solid #1f0c3c;
  margin-top: 2em;
  margin-bottom: 2em;
}
.body-ptp-post .news-post .more {
  border: 2px solid #1f0c3c;
  padding: 0.5em;
  color: #1f0c3c;
  margin: 0 auto;
  display: table;
}
.body-ptp-post .news-post .more:hover {
  background: #1f0c3c;
  color: #e5dbca;
}

/*--- RELEASES ---*/
.ind-release {
  margin-bottom: 3em;
  margin-top: 3em;
  color: #c0ad73;
}
.ind-release h5 {
  font-family: "DM Sans";
  margin-top: 0em;
}

/* Title + links row */
.release-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1em;
}

.release-title h2 {
  margin: 0;
}

.release-links {
  display: flex;
  align-items: center;
}
.release-links a {
  color: #c0ad73;
  font-size: 1.5em;
}
.release-links a:hover {
  color: #e5dbca;
}

.release-links > div {
  display: flex;
  gap: 1rem;
}

/* Artwork + player row */
.home-release-container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 1rem;
  margin-top: -1em;
  align-items: stretch;
}

.home-release-artwork img {
  display: block;
  width: auto;
  height: 400px;
  object-fit: cover;
}

/* Spotify player */
.home-release-player {
  height: 100%;
}

.home-release-player iframe {
  width: 100%;
  height: 400px !important;
  border: 0;
}

@media (max-width: 980px) {
  .release-heading,
  .home-release-container {
    grid-template-columns: 1fr;
  }
  .release-heading,
  .release-links {
    justify-content: center;
  }
  .home-release-container {
    gap: 1rem;
  }
  .ind-release {
    text-align: center;
    width: 90%;
    max-width: 500px;
    margin: 1em auto 2em;
  }
  .home-release-artwork,
  .home-release-player {
    width: 100%;
    text-align: center;
  }
  .home-release-artwork img {
    width: 100%;
    height: auto;
  }
  .home-release-container {
    margin-top: 0.5em;
  }
  .release-title {
    margin-bottom: -1em !important;
  }
}
/*--- COMING SOON ---*/
.soon-bio {
  z-index: 14;
  margin-top: -6em;
  background: url(../../assets/img/music-bg.webp);
  background-size: cover;
  padding-top: 5em;
  padding-bottom: 5em;
}

.soon-contact {
  background: url(../../assets/img/videos-bg.webp);
  background-size: cover;
  padding-top: 5em;
  padding-bottom: 5em;
  z-index: 16;
  margin-top: -7em;
  position: relative;
}

.soon-subscribe {
  z-index: 15;
  margin-bottom: -5em;
  margin-top: 3em;
  background: url(../../assets/img/bio-bg.webp);
  background-size: cover;
  padding-top: 3em;
  padding-bottom: 5em;
  padding-left: 5em;
  padding-right: 5em;
}
@media screen and (max-width: 800px) {
  .soon-subscribe {
    padding-left: 2em;
    padding-right: 2em;
  }
}
.soon-subscribe .subscribe {
  background: rgba(255, 255, 255, 0.5);
}

/*# sourceMappingURL=https://staging-isabelbradbury-com.ekstaging.com/wp-content/themes/bb-theme-master/assets/css/cs.map */