.blob {
  position: absolute;
  top: 0;
  left: 0;
  fill: #00000080;
  width: 28vmax;
  z-index: -1;
  animation: move 30s ease-in-out infinite;
  transform-origin: -50% 50%;
  z-index: 2;
}

@keyframes move {
  0% {
    transform: scale(1) translate(10px, -30px);
  }
  38% {
    transform: scale(0.8, 1) translate(80vw, 30vh) rotate(160deg);
  }
  40% {
    transform: scale(0.8, 1) translate(80vw, 30vh) rotate(160deg);
  }
  78% {
    transform: scale(2.3) translate(0vw, 50vh) rotate(-20deg);
  }
  80% {
    transform: scale(3.3) translate(0vw, 50vh) rotate(-20deg);
  }
  100% {
    transform: scale(1) translate(10px, -30px);
  }
}

html {
  font-size: 1.25rem;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  html {
    font-size: 1rem;
  }
}

body {
  background: #202020;
  color: #fff;
  font-family: Georgia, Times, Times New Roman, serif;
  text-align: left;
}

.blog body {
  background: #eeeeee;
  color: #333333;
}

p,
blockquote,
dl {
  margin: 0 0 1.5rem 0;
}

p:last-child,
blockquote:last-child {
  margin-bottom: 0;
}

p {
  line-height: 1.6rem;
}

dl {
  line-height: 1.6rem;
}

dt {
  font-weight: normal;
  margin-right: 5px;
  float: left;
  color: #c6d6dd;
}

dd {
  margin-bottom: 0;
}

a {
  color: #f0c090;
  text-decoration: none;
}

.blog a {
  color: #a07060;
}

a:hover {
  color: #ffffff;
  text-decoration: none;
}

.blog a:hover {
  color: #603010;
}

h1,
h2,
h3,
h4 {
  font-family: "Oswald";
}

h1,
h2,
h3,
h4 {
  font-weight: normal;
}

h1 {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 1.75rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

h3 {
  color: #cccccc;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
}

h3:after {
  border-top: 2px #444444 solid;
  content: "";
  display: block;
  margin-bottom: 1.5rem;
  margin-top: 15px;
  width: 90px;
  height: 0px;
}

@media (max-width: 767.98px) {
  h3:after {
    margin-bottom: 1rem;
  }
}

h3.text-center:after {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767.98px) {
  h3 {
    letter-spacing: 3px;
    margin-bottom: 1rem;
  }
}

h4 {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #aaaaaa;
}

@media (max-width: 576px) {
  h4 {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
}

img {
  border: 0;
}

.link-with-img {
  box-shadow: 0 0 10px rgba(60, 60, 60, 0.3);
  display: block;
}

.link-with-img img {
  width: 100%;
}

.link-with-img:hover {
  box-shadow: 0 0 10px rgba(90, 20, 255, 0.5);
}

.link-with-img.preorder-link:hover {
  box-shadow: 0 0 10px rgba(57, 175, 120, 0.5);
}

.container {
  max-width: 1280px;
  position: relative;
  z-index: 1;
}

.section {
  margin-bottom: 120px;
}

@media (max-width: 767.98px) {
  .section {
    margin-bottom: 30px;
  }
}

.section-small {
  margin-bottom: 30px;
}

.text-center {
  text-align: center !important;
}

@media (max-width: 767.98px) {
  .content {
    margin-top: -64px;
  }
}

.text-muted {
  color: #c6d6dd;
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.video-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.video-container::after {
  padding-top: 56.25%;
  display: block;
  content: "";
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#downloads dl {
  display: block;
}

/* header */

.header {
  width: 100%;
  margin: 0 auto;
  position: fixed;
  z-index: 99;
  padding: 24px 0;
}

@media (max-width: 767.98px) {
  .header {
    position: relative;
    height: 64px;
    padding: 0;
  }
}

.header .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100%;
}

/* logo */

@media (max-width: 767.98px) {
  .header .logo {
    display: flex;
    align-items: center;
  }

  .header .logo a {
    display: inline-block;
  }

  .header .logo .logo-body {
    width: 140px;
    display: inline-block;
  }
}

.header .logo img {
  max-width: 100%;
}

.header .logo .logo-black {
  display: none;
}

.blog .header .logo .logo-white {
  display: none;
}

.blog .header .logo .logo-black {
  display: inline-block;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.75));
}

.blog .header .logo .logo-black:hover {
  display: block;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.75));
}

.header .logo .logo-white {
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.75));
}

.header .logo .logo-white:hover {
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.75));
}

/* menu */

.menu {
  font-family: oswald;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 2px;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 1.25rem;
}

.menu-item {
  margin-left: 1.25rem;
}

.menu-item:first-child {
  margin-left: 0;
}

.menu-item a {
  filter: drop-shadow(0 0 5px #000000);
}

.menu-item.selected {
  color: white;
}

.header-padding {
  padding-top: 9rem;
}

@media (max-width: 767.98px) {
  .header-padding {
    padding-top: 6rem;
  }
}

@media (max-width: 576px) {
  .no-gutter-sm {
    padding: 0;
  }
}

@media (max-width: 991px) {
  .no-gutter-md {
    padding: 0;
  }
}

/* hero */

.hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 12rem 0 8rem 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  /* 64px header + 30px gutter */
  .hero {
    padding: 6rem 0 3rem 0;
  }
}

.hero .container {
  z-index: 3;
}

.hero:before {
  /* background: linear-gradient(
    rgba(50, 50, 50, 0.1) 0%,
    rgb(32, 32, 32, 1) 100%
  );
  background-position: left top;
  top: 0;
  left: 0; */
}

.hero:after {
  bottom: 0;
  left: 0;
  background: rgb(32, 32, 32);
  background: linear-gradient(
    rgba(50, 50, 50, 0.1) 0%,
    rgba(50, 50, 50, 0.1) 30%,
    rgba(32, 32, 32, 1) 95%,
    rgb(32, 32, 32, 1) 100%
  );
}

.hero:before,
.hero:after,
.hero .overlay {
  background-repeat: repeat-x;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-title {
  font-size: 140px;
  text-align: center;
  text-shadow: 0 0.1em 0.2em rgba(0, 0, 0, 0.25);
  font-weight: 900;
  letter-spacing: 0;
}
@media (max-width: 1023px) {
  .hero-title {
    font-size: 70px;
  }
}

@media (max-width: 568px) {
  .hero-title {
    font-size: 2rem;
  }
}

.hero-artist {
  text-align: center;
  text-shadow: 0 0.1em 0.2em rgba(0, 0, 0, 0.25);
  letter-spacing: 0.1em;
}

.hero-subtitle {
  text-align: center;
  font-family: "Oswald";
  color: #111111;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  padding-bottom: 1.5rem;
}

.hero-logo {
  color: #ffffff;
  text-align: center;
}

.hero-logo + .hero-subtitle {
  padding-top: 1.5rem;
}

.hero-logo-image {
  max-width: 100%;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

@media (max-width: 767px) {
  .hero-logo-image {
    max-width: 90%;
  }
}

.hero-logo-block {
  max-width: 600px;
  display: block;
  margin: 0 auto;
}

.hero-logo-link {
  display: block;
}

.hero-logo-image {
  animation: hero-logo-pulse 1s alternate ease-in-out infinite;
}

.hero-logo-link:hover .hero-logo-image {
  filter: drop-shadow(0 0 10px #ffffff);
  animation: none;
}

.hero-preorder-link {
  animation: hero-preorder-link-pulse 0.5s alternate ease-in-out infinite;
}

.hero-preorder-link:hover {
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  animation: none;
}

@keyframes hero-logo-pulse {
  from {
    filter: blur(0) opacity(100%) drop-shadow(0 0 5px #663300);
  }

  to {
    filter: blur(0.25px) opacity(95%) drop-shadow(0 0 10px #000000);
  }
}

@keyframes hero-preorder-link-pulse {
  from {
    filter: blur(0) opacity(100%) drop-shadow(0 0 5px rgb(240, 192, 144));
  }

  to {
    filter: blur(0.25px) opacity(95%)
      drop-shadow(0 0 10px rgba(90, 20, 255, 0.75));
  }
}

.music-services {
  padding: 2rem;
}

@media (max-width: 767.98px) {
  .music-services {
    padding: 0;
    padding-top: 2rem;
  }
}

.service-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
}

.service-link-image {
  width: 150px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px;
}

.service-link-image a {
  min-height: 100%;
  align-items: center;
  display: flex;
}

.service-link-image img {
  border: none;
  width: 100%;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.05));
}

.service-link-image a:hover img {
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

@media (max-width: 767.98px) {
  .service-link-image {
    display: none;
  }
}

.service-link-btn {
  width: 100%;
  margin-bottom: 15px;
}

.service-link-btn .btn-link {
  width: 100%;
}

@media (min-width: 768px) {
  .service-link-btn {
    display: none;
  }
}

/* releases list */

.latest-releases .releases-list {
  margin-bottom: 15px;
}

.releases-list-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  position: relative;
}

.releases-list-item.release-prerelease {
  cursor: wait;
}

.releases-list-item-prerelease-date {
  position: absolute;
  left: 0;
  top: 0;
  font-family: oswald, arial, serif;
  font-weight: normal;
  padding: 15px;
  background: rgba(76, 175, 80, 75%);
  right: 0;
  text-align: center;
  color: #ddeeff;
}

.releases .releases-list-item {
  margin-bottom: 30px;
}

.releases-list-item-img {
  width: 100%;
  background-size: cover;
}

.releases-list-item-img:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.releases-list-item-content {
  padding: 1.5rem;
  background: #252825;
  font-family: oswald, arial, serif;
  font-weight: normal;
}

.releases-list-item:hover .releases-list-item-content {
  background: #282b28;
}

.release-prerelease .releases-list-item-content {
  background: #454845;
  color: #aaaaaa;
}

.releases-list-item-title,
.releases-list-item-artist {
  overflow: hidden;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.releases-list-item-title {
  font-size: 1.25rem;
}

.releases-list-item-meta {
  display: none;
}

/* blog post */

.blog-posts-list .row {
  justify-content: center;
}

.blog-posts-list-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  width: 100%;
}

.blog-posts-list-item-img {
  padding-top: 56.25%;
  overflow: hidden;
  height: 0;
  background-size: cover;
}

.blog-posts-list-item-content {
  padding: 1.5rem;
  background: #252825;
  flex: 1;
}

.blog-posts-list-item-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-family: oswald, arial, serif;
  font-weight: normal;
}

.blog-posts-list-item-text {
  font-size: 0.85rem;
  color: #ffffff;
}

/* release track listing */

.tracklisting-item {
  font-family: Oswald;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 0.025rem;
}

.tracklisting-item:after {
  border-bottom: 1px #252825 solid;
  content: "";
  display: block;
  margin-top: 1rem;
  width: 100%;
  height: 1px;
}

.tracklisting-item:last-child:after {
  display: none;
}

.tracklisting-item-number {
  font-size: 0.9rem;
  text-align: right;
  display: inline-block;
  width: 2rem;
  padding-right: 0.5rem;
  color: #cccccc;
}

.tracklisting-item-number:not(:empty):after {
  content: ". ";
}

.tracklisting-item:last-child .tracklisting-item-title {
  color: #cccccc;
}

.tracklisting-item-duration {
  color: #cccccc;
  text-align: right;
  font-size: 0.9rem;
  display: inline-block;
  width: 100%;
}

/* track listing special */

.tracks-details {
  position: relative;
  padding-top: 120px;
  background: #2e1414;
}

.tracks-details:before,
.tracks-details:after,
.hero .overlay {
  background-repeat: repeat-x;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
}

.tracks-details:before {
  top: 0;
  left: 0;
  background: rgb(32, 32, 32);
  background: linear-gradient(#202020 0%, #2e1414 100%);
  padding-top: 120px;
  height: 240px;
}

.tracks-details:after {
  bottom: 0;
  left: 0;
  background: rgb(32, 32, 32);
  background: linear-gradient(#2e1414 0%, #202020 100%);
  padding-bottom: 120px;
  height: 120px;
}

.light {
  position: absolute;
  width: 0px;
  opacity: 0.75;
  background-color: white;
  /* box-shadow: #e9f1f1 0px 0px 20px 2px; */
  box-shadow: #ff0101 0px 0px 20px 2px;
  /* box-shadow: #000000 0px 0px 20px 2px; */
  opacity: 0;
  top: 100vh;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: 1;
}

.x1 {
  -webkit-animation: floatUp 4s infinite linear;
  -moz-animation: floatUp 4s infinite linear;
  -o-animation: floatUp 4s infinite linear;
  animation: floatUp 4s infinite linear;
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -o-transform: scale(2);
  transform: scale(2);
}

.x2 {
  -webkit-animation: floatUp 7s infinite linear;
  -moz-animation: floatUp 7s infinite linear;
  -o-animation: floatUp 7s infinite linear;
  animation: floatUp 7s infinite linear;
  -webkit-transform: scale(1.6);
  -moz-transform: scale(1.6);
  -o-transform: scale(1.6);
  transform: scale(1.6);
  left: 15%;
}

.x3 {
  -webkit-animation: floatUp 2.5s infinite linear;
  -moz-animation: floatUp 2.5s infinite linear;
  -o-animation: floatUp 2.5s infinite linear;
  animation: floatUp 2.5s infinite linear;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  left: -15%;
}

.x4 {
  -webkit-animation: floatUp 4.5s infinite linear;
  -moz-animation: floatUp 4.5s infinite linear;
  -o-animation: floatUp 4.5s infinite linear;
  animation: floatUp 4.5s infinite linear;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  left: -34%;
}

.x5 {
  -webkit-animation: floatUp 8s infinite linear;
  -moz-animation: floatUp 8s infinite linear;
  -o-animation: floatUp 8s infinite linear;
  animation: floatUp 8s infinite linear;
  -webkit-transform: scale(2.2);
  -moz-transform: scale(2.2);
  -o-transform: scale(2.2);
  transform: scale(2.2);
  left: -57%;
}

.x6 {
  -webkit-animation: floatUp 3s infinite linear;
  -moz-animation: floatUp 3s infinite linear;
  -o-animation: floatUp 3s infinite linear;
  animation: floatUp 3s infinite linear;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  left: -81%;
}

.x7 {
  -webkit-animation: floatUp 5.3s infinite linear;
  -moz-animation: floatUp 5.3s infinite linear;
  -o-animation: floatUp 5.3s infinite linear;
  animation: floatUp 5.3s infinite linear;
  -webkit-transform: scale(3.2);
  -moz-transform: scale(3.2);
  -o-transform: scale(3.2);
  transform: scale(3.2);
  left: 37%;
}

.x8 {
  -webkit-animation: floatUp 4.7s infinite linear;
  -moz-animation: floatUp 4.7s infinite linear;
  -o-animation: floatUp 4.7s infinite linear;
  animation: floatUp 4.7s infinite linear;
  -webkit-transform: scale(1.7);
  -moz-transform: scale(1.7);
  -o-transform: scale(1.7);
  transform: scale(1.7);
  left: 62%;
}

.x9 {
  -webkit-animation: floatUp 4.1s infinite linear;
  -moz-animation: floatUp 4.1s infinite linear;
  -o-animation: floatUp 4.1s infinite linear;
  animation: floatUp 4.1s infinite linear;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  left: 85%;
}

@-webkit-keyframes floatUp {
  0% {
    bottom: 100vh;
    opacity: 0.75;
  }
  25% {
    opacity: 1;
  }
  50% {
    bottom: 0vh;
    opacity: 0.8;
  }
  75% {
    opacity: 1;
  }
  100% {
    bottom: -100vh;
    opacity: 0.75;
  }
}
@-moz-keyframes floatUp {
  0% {
    bottom: 100vh;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    bottom: 0vh;
    opacity: 0.8;
  }
  75% {
    opacity: 1;
  }
  100% {
    bottom: -100vh;
    opacity: 0;
  }
}
@-o-keyframes floatUp {
  0% {
    bottom: 100vh;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    bottom: 0vh;
    opacity: 0.8;
  }
  75% {
    opacity: 1;
  }
  100% {
    bottom: -100vh;
    opacity: 0;
  }
}
@keyframes floatUp {
  0% {
    bottom: 100vh;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    bottom: 0vh;
    opacity: 0.8;
  }
  75% {
    opacity: 1;
  }
  100% {
    bottom: -100vh;
    opacity: 0;
  }
}

.track-special {
  margin-bottom: 60px;
}

@media (max-width: 767.98px) {
  .track-special {
    margin-bottom: 30px;
  }
}


.track-special-title {
  margin-bottom: 3rem;
}

.track-special .blockquote p {
  font-style: italic;
}

.track-special .blockquote:before {
  color: #dd3300;
  content: "“";
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
  float: left;
  padding-top: 1rem;
}

.track-special .blockquote-footer {
  padding-top: 30px;
  font-size: 80%;
}

.track-special .blockquote-footer::before {
  content: "\2014\00A0";
}

/* release */

.release-meta-title {
  margin-bottom: 1rem;
}

.release-meta-value {
  font-family: Oswald;
}

/* review */

.review-item {
  padding: 1.5rem;
  background: #252825;
}

.review-item .blockquote p {
  display: inline;
  font-style: italic;
}

.review-item .blockquote:before {
  color: #ccc;
  content: "“";
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}

.review-item .blockquote-footer {
  padding-top: 30px;
  font-size: 80%;
}

.review-item .blockquote-footer::before {
  content: "\2014\00A0";
}

/* layout_left */

#layout_left .post {
  padding-bottom: 40px;
}

#layout_left .post .post_title {
  font-family: "oswald", arial, sefif;
  font-weight: normal;
  font-size: 36px;

  line-height: 48px;
}

#layout_left .post .post_meta {
  font-family: Georgia, arial, sefif;
  font-weight: normal;
  font-size: 16px;

  line-height: 24px;
}

#layout_left .post .post_comments {
  font-size: 11px;
}

#layout_left h1 {
  font-size: 63px; /* 34px */
  line-height: 80px; /* 36px */
  margin-bottom: 20px;
  color: #c0c0c0;
  font-family: ff-tisa-web-pro;
  font-family: oswald;
  font-weight: normal;
}

#layout_left #title h1 {
  color: white;
}

#layout_left h2 {
  margin-bottom: 0;
}

.description blockquote {
  border-left: 3px solid #aaaaaa;
  padding-left: 20px;
  font-style: italic;
  font-size: 0.8rem;
  color: #dddddd;
}

#layout_left #tracklist li {
  color: white;
  font-family: oswald;
  list-style-position: outside;
  list-style-type: decimal;
  padding: 2px;
  letter-spacing: 0.5px;
  font-weight: normal;
}

#layout_left #tracklist li div.song-comment {
  font-size: 11px;
  color: #aaaaaa;
  vertical-align: text-top;
  float: right;
}

/* footer */

#footer {
  clear: both;
  height: 548px;
  width: auto;
  overflow: hidden;
  background: url("../images/footer.gif") repeat-x 50% 0;
}

.blog #footer {
  height: 586px;
  background: url("../images/footer-bw.gif") repeat-x 50% 0;
}

/* everything */

.comments {
  padding-bottom: 40px;
  padding-top: 20px;
}

.comments .com_text {
  padding-top: 5px;
  padding-bottom: 15px;
}

#input_form {
  padding-top: 10px;
}

#input_form div {
  padding-bottom: 6px;
}

.input_field {
  border: 1px solid #535244;
  border-radius: 3px;
  -moz-border-radius: 3px;
  background-color: #535244;
  color: white;
}

#input_button {
  margin-top: 10px;
  background: #dfdfcf;
  border: 3px solid #dfdfcf;
  border-radius: 3px;
  -moz-border-radius: 3px;
  color: #535244;
  cursor: pointer;
}

.song-duration {
  color: #a6b6bd;
  font-size: 16px;
}

.song-info {
  display: block;
  font-family: Georgia, Times, Times New Roman, serif;
  color: #c6d6dd;
  font-size: 12px;
  line-height: 15px;
  margin-bottom: 5px;
}

.post_med {
  height: 250px;
  width: 650px;
  display: block;
  position: relative;
}

.post_med_data {
  position: absolute;
  left: 40px;
  bottom: 40px;
}

.post_med_data_title {
  font-family: "oswald", arial, serif;
  font-weight: normal;
  font-size: 32px;
  line-height: 48px;
  color: #ffffff;
  text-shadow: 0 0.1em 0.2em rgba(0, 0, 0, 0.5);
}

.post_med_data_title-2 {
  font-family: georgia, arial, serif;
  font-size: 16px;
  line-height: 24px;
  color: #cccccc;
  text-shadow: 0 0.1em 0.2em rgba(0, 0, 0, 0.5);
}

/* releases */

.releases-view-all {
  text-align: center;
}

.btn-link {
  border: 2px #f0c090 solid;
  color: #cccccc;
  display: inline-block;
  font-family: oswald;
  line-height: 32px;
  letter-spacing: 0.06em;
  padding: 12px 64px;
  text-transform: uppercase;
  text-align: center;
  text-shadow: none;
  font-size: 1.25rem;
  background: rgba(0, 0, 0, 0.25);
}

.btn-link:hover {
  border-color: #ffffff;
  color: #ffffff;
  background: #304050;
}

/* blog */

.blog_item {
  cursor: pointer;
  display: block;
}

.blog_item_img {
  height: 200px;
  overflow: hidden;
}

.blog_item_content {
  background: #cfdfef;
  padding: 24px;
  height: 192px;
}

.blog_item:hover .blog_item_content {
  background: #ffffff;
}

.blog_item_content_title {
  font-size: 24px;
  font-weight: normal;
  line-height: 36px;
  overflow: hidden;
  text-align: left;
  font-family: oswald, arial, serif;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #203040;
}

.blog_item_content_meta {
  color: #607080;
  font-size: 14px;
  font-family: oswald, arial, serif;
  font-weight: normal;
  line-height: 24px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 24px;
}

.blog_item_content_desc {
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  overflow: hidden;
  text-align: left;
  color: #203040;
}

.blog-view-all {
  margin-top: 48px;
  margin-bottom: 48px;
  text-align: center;
}

.read-more {
  font-style: italic;
  color: #c6d6dd;
}

/* banner */

.spotlight-lunaria {
  height: 490px;
  position: relative;
  background-size: 2000% 2000%;
  overflow: hidden;
  background: #3900fe;
}

.spotlight-lunaria-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-items: center;
}

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 34%;
  }
  50% {
    background-position: 100% 67%;
  }
  100% {
    background-position: 0% 34%;
  }
}
@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 34%;
  }
  50% {
    background-position: 100% 67%;
  }
  100% {
    background-position: 0% 34%;
  }
}
@keyframes AnimationName {
  0% {
    background-position: 0% 34%;
  }
  50% {
    background-position: 100% 67%;
  }
  100% {
    background-position: 0% 34%;
  }
}

@keyframes SpinElement {
  0% {
    transform: rotate(140deg);
  }
  50% {
    transform: rotate(160deg);
  }
  60% {
    transform: rotate(200deg);
  }
  80% {
    transform: rotate(160deg);
  }
  100% {
    transform: rotate(140deg);
  }
}

.bubble-wrap {
  width: 100%;
  overflow: hidden;
}

.bubble {
  width: 620px;
  height: 620px;
  position: absolute;
  bottom: -25%;
  z-index: 3;
  top: 0;
}

.bubble-1 {
  background: #d700d7;
  animation: pulse 5s alternate ease-in-out infinite;
}

.bubble-2 {
  background: #00d7d7;
  animation: pulse 5.1s alternate ease-in-out infinite;
}

@keyframes pulse {
  from {
    filter: blur(100px) opacity(30%);
    transform: translateX(-100%) translateY(-75%);
    width: 620px;
    height: 620px;
  }

  to {
    filter: blur(200px) opacity(50%);
    transform: translateX(100%) translateY(25%);
    width: 820px;
    height: 820px;
  }
}

/* blog */

.blog .content header {
  text-align: center;
  margin-bottom: 3rem;
}

.blogshort {
  margin-bottom: 2rem;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px rgba(200, 200, 200, 0.25);
}

@media (max-width: 767px) {
  .blogshort {
    margin-bottom: 1.5rem;
    margin-left: -15px;
    margin-right: -15px;
  }
}

.blogshort img {
  width: 100%;
}

@media (max-width: 767px) {
  .blogshort .row {
    margin: 0;
  }
}

.blogshort .blog-post-meta {
  margin-bottom: 0;
}

.blog-post-img {
  width: 100%;
  background-position: center center;
  background-size: cover;
}

@media (max-width: 767px) {
  .blog-post-img {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .blog-post-short-content {
    padding: 15px 15px 15px 0;
  }
}

@media (min-width: 768px) {
  .blog-post-short-content {
    padding: 30px 30px 30px 0;
  }
}

.blog .content {
  margin-bottom: 6rem;
}

.blogpost header {
  margin-bottom: 3rem;
}

.blogpost figure figcaption {
  padding-top: 0.75rem;
  font-size: 0.75rem;
  text-align: center;
  font-style: italic;
  color: #999999;
}

.blogpost h1,
.blogpost h2 {
  text-align: center;
}

.blogpost_section {
  padding-bottom: 3rem;
}

@media (max-width: 767px) {
  .blogpost_section {
    padding-bottom: 1rem;
  }
}

.blogpost_section img {
  max-width: 100%;
}

.blogpost_section.__center {
  margin: 0 auto;
}

.blogpost_section.__text-center {
  text-align: center;
}

.blogpost_section.__narrow {
  max-width: 700px;
}

.blogpost_section.__middle {
  max-width: 910px;
}

.blogpost_section figure {
  text-align: center;
}

.blogpost_section figure:not(:last-child) {
  padding-bottom: 1.5rem;
}

.blogpost_section figure img + img {
  padding-top: 1.5rem;
}

.blogpost_section blockquote {
  border-left: 3px solid #777777;
  padding-left: 20px;
  margin-left: -23px;
  font-style: italic;
}

.blogpost_section blockquote.pull-quote {
  border: 0 none;
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: -0.014em;
  font-size: 26px;
  line-height: 40px;
  padding: 0 24px 0 0;
  margin-bottom: 24px;
}

.release-external-link {
  display: block;
  font-family: "oswald", arial, serif;
  font-weight: normal;
  font-size: 24px;
  line-height: 24px;
  background: rgba(0, 0, 0, 0.8);
  padding: 24px;
  text-align: center;
  color: #aaaaaa !important;
  margin-bottom: 24px;
}

.release-external-link:hover {
  color: #eeeeee !important;
}

.artist-external-link {
  display: block;
  font-family: "oswald", arial, serif;
  font-weight: normal;
  font-size: 24px;
  line-height: 24px;
  background: rgba(0, 0, 0, 0.1);
  padding: 24px;
  text-align: center;
  color: #555555 !important;
  margin-bottom: 24px;
}

.artist-external-link:hover {
  color: #111111 !important;
}

.spotlight-lunaria-link:hover {
  color: #ffffff !important;
}

.__facebook {
  color: #3a5795 !important;
}

.__twitter {
  color: #1da1f2 !important;
}

.__soundcloud {
  color: #ff5500 !important;
}

.__bandcamp {
  color: #639aa9 !important;
}

.__amazon {
  color: #ff9900 !important;
}

.__itunes {
  color: #1080d9 !important;
}

.__applemusic {
  color: #ea1f57 !important;
}

.__tidal {
  color: #00ffff !important;
}

.__beatport {
  color: #94d500 !important;
}

.__spotify {
  color: #24cf5f !important;
}

.__juno {
  color: #7aa846 !important;
}

.__youtube {
  color: #e62117 !important;
}

.shake-opacity {
  display: block;
}
