/* By Athlon Front-End Team */
/* Core variables */
/**
 * Variables
*/
/* Typography */
/* Breakpoints */
/* Paths */
/* Grid setup */
/* Colour palette */
/* Components */
/* CSS Reset */
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,
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 {
  border: none;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

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

audio,
canvas,
video {
  display: inline-block;
}

body {
  margin: 0;
}

ul {
  list-style-type: none;
}

a {
  background: transparent;
  text-decoration: none;
}

button,
input {
  line-height: normal;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

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

textarea:focus,
input:focus {
  outline: 0;
}

input {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* CSS print */
/**
 * Print Stylesheet
*/
@media print {
  @page {
    margin: 1cm;
  }
  body {
    background: #fff;
    color: #000;
  }

  a {
    page-break-inside: avoid;
  }

  blockquote {
    page-break-inside: avoid;
  }

  table,
pre {
    page-break-inside: avoid;
  }

  ul, ol, dl {
    page-break-before: avoid;
  }
}
/* Fonts */
/**
 * Fonts
*/
@font-face {
  font-family: "DINP-R";
  src: url(../fonts/DINPro-Regular.2ac4eb.eot) format("eot"), url(../fonts/DINPro-Regular.7b307e.woff) format("woff"), url(../fonts/DINPro-Regular.f8ce19.ttf) format("truetype");
  font-style: normal;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: auto;
  background-color: #000;
  position: relative;
  min-height: 100vh;
  height: -webkit-fill-available;
}

.locked {
  overflow: hidden;
}

a {
  color: #dfdbdb;
}

/* Mixins, helpers and functions */
/**
 * Helper mixins
*/
/* Vendor */
/* Layout */
.header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1rem 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 0;
  z-index: 99;
}
@media (min-width: 768px) {
  .header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.header a {
  color: #fff;
  position: relative;
}
.header a::before, .header a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  top: 50%;
  margin-top: -0.5px;
  background: #fff;
}
.header a::before {
  left: -2.5px;
}
.header a::after {
  right: 2.5px;
  background: #fff;
  -webkit-transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.header a:hover::before {
  background: #fff;
  width: 100%;
  -webkit-transition: width 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: width 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.header a:hover::after {
  background: transparent;
  width: 100%;
  -webkit-transition: 0s;
  transition: 0s;
}

.back {
  display: none;
}

.dark {
  color: #000;
}
.dark a {
  color: #000;
}
.dark a::before, .dark a::after {
  background: #000;
}
.dark a:hover::before {
  background: #000;
}
.dark .listen {
  display: none;
}
.dark .purchase {
  display: none;
}
.dark .logo img {
  display: inline-block;
  -webkit-filter: invert(100%);
          filter: invert(100%);
}
.dark .back {
  display: block;
}

.listen {
  display: inline-block;
  cursor: pointer;
}

.header .logo img {
  display: inline-block;
}

.links {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .links {
    margin-top: 0;
  }
}

.links a:first-child {
  margin-right: 1rem;
}

.darko {
  margin-left: 1rem;
}

.mute {
  color: #000;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  font-size: 12px;
}

body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* Components */
.vimeo-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background: #000;
}

.vimeo-wrapper iframe {
  width: 100vw;
  height: 56.25vw;
  /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 160vh;
  /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .vimeo-wrapper iframe {
    min-width: 177.77vh;
    /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  }
}

.mute {
  display: block;
}
@media (min-width: 768px) {
  .mute {
    display: none;
  }
}

.start {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  height: -webkit-fill-available;
}

.parallax {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: -webkit-fill-available;
}

.logo {
  position: relative;
  max-width: 300px;
}
@media (min-width: 768px) {
  .logo {
    max-width: 600px;
  }
}
@media (min-width: 1800px) {
  .logo {
    max-width: 100%;
  }
}

.logo__back {
  position: absolute;
  left: 45%;
  top: 46%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 67%;
}

.start__bg {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100vh;
  height: -webkit-fill-available;
  width: 100vw;
}

.particles-js-canvas-el {
  position: fixed;
  top: 0;
}

.credits {
  position: absolute;
  top: 100vh;
  /* Fallback for browsers that do not support Custom Properties */
  top: calc(var(--vh, 1vh) * 100);
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: -webkit-fill-available;
}
.credits::before {
  content: "";
  width: 100%;
  position: absolute;
  height: 30px;
  top: -30px;
  background-image: url(../images/design/separator.8a8b41.png);
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) {
  .credits::before {
    height: 60px;
    top: -60px;
  }
}
@media (min-width: 1800px) {
  .credits::before {
    height: 100px;
    top: -100px;
  }
}

.heading {
  margin: 2rem 0;
}

.credits__inner {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 80%;
  max-width: 80%;
}
.credits__inner .credits-col-1 {
  text-align: center;
}
.credits__inner .credits-col-1 img {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .credits__inner {
    grid-template-columns: 30% 70%;
    font-size: 100%;
  }
  .credits__inner .credits-col-1 {
    text-align: left;
  }
  .credits__inner .credits-col-1 img {
    margin: 0;
    margin-right: auto;
  }
}

.credits__name {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0.5rem 0;
}

.player {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  -webkit-transition: 1s opacity ease-in-out;
  transition: 1s opacity ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  height: -webkit-fill-available;
}

.player__bg img {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  opacity: 0;
}

.hide {
  opacity: 0;
  visibility: hidden;
}

.player__container {
  margin-left: 4rem;
  max-width: 100%;
  z-index: 2;
}
@media (min-width: 768px) {
  .player__container {
    max-width: 500px;
  }
}

.player__tracks {
  width: 100%;
  margin-bottom: 1rem;
}

.player__player {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.player__track {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.player__track span,
.player__track div {
  margin-right: 1rem;
}
@media (min-width: 768px) {
  .player__track {
    font-size: 1.2rem;
  }
}

.play {
  width: 40px;
  height: auto;
  cursor: pointer;
}

.track__name {
  font-family: Times;
  position: relative;
}
.track__name::before, .track__name::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  top: 50%;
  margin-top: -0.5px;
  background: #000;
}
.track__name::before {
  left: -2.5px;
}
.track__name::after {
  right: 2.5px;
  background: #000;
  -webkit-transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.track__name:hover::before {
  background: #000;
  width: 100%;
  -webkit-transition: width 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: width 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.track__name:hover::after {
  background: transparent;
  width: 100%;
  -webkit-transition: 0s;
  transition: 0s;
}

#waveform {
  margin-left: 1rem;
  width: 100%;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* Fallback for browsers that do not support Custom Properties */
  background-image: url(../images/design/bg.e5f36d.jpg);
  background-position: center center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
  height: -webkit-fill-available;
}

.loader__inner {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 2px;
  max-width: 180px;
}
.loader__inner img {
  max-width: 100%;
}
@media (min-width: 768px) {
  .loader__inner {
    max-width: 100%;
  }
}

.loader__inner h1::after {
  content: " .";
  -webkit-animation: dots 2s steps(5, end) infinite;
          animation: dots 2s steps(5, end) infinite;
}

.progressbar {
  width: calc(100% + 3rem);
  border: 1px solid #000;
  height: 10px;
}

.progressbar__inner {
  width: 50%;
  background-color: #000;
  height: 100%;
  -webkit-animation: progressBar 8s ease-in-out;
          animation: progressBar 8s ease-in-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.enter {
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  margin-top: -2rem;
}

.loader__text {
  margin: 1rem 0;
  font-family: "helvetica neue";
}

@-webkit-keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes dots {
  0%, 20% {
    color: white;
    text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
  }
  40% {
    color: black;
    text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
  }
  60% {
    text-shadow: 0.25em 0 0 black, 0.5em 0 0 rgba(0, 0, 0, 0);
  }
  80%, 100% {
    text-shadow: 0.25em 0 0 black, 0.5em 0 0 black;
  }
}
@keyframes dots {
  0%, 20% {
    color: white;
    text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
  }
  40% {
    color: black;
    text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
  }
  60% {
    text-shadow: 0.25em 0 0 black, 0.5em 0 0 rgba(0, 0, 0, 0);
  }
  80%, 100% {
    text-shadow: 0.25em 0 0 black, 0.5em 0 0 black;
  }
}
/* Browser specific styles */
/**
 * Dirty hacks, yes internet explorer, we are looking at you
*/
