/* 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,
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,
top-right {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
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;
}
a,
a:hover {
  text-decoration: none;
}

html {
  background: #fff;
}

/***** GLOBALS ****/

/* Typography */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

::-moz-selection {
  background: transparent;
  color: red;
}

::selection {
  background: transparent;
  color: red;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
button {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
font-family: 'Bebas Neue', cursive;
  color: #161616;
}

p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 18px;
}

/* h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: bold;
} */

h1 {
font-family: 'Bebas Neue', cursive;
  font-size: 25px;
  letter-spacing: 1px;
  font-weight: 100;
  text-transform: uppercase;
}

a {
font-family: 'Bebas Neue', cursive;
  text-transform: uppercase;
  font-size: 80px;
  letter-spacing: 0.5px;
  color: #161616;
}

body {
  overflow: hidden;
  overflow-y: scroll;
}

/* background */

#background {
  top:0;
  right:0;
  left:0;
  bottom:0;
  height: 100%;
  position: fixed;
  min-height: 500px;
  width: 100%;
  flex-direction: column;
  box-sizing: border-box;
  z-index: -2;
}

#home #background {
  top:0;
  right:0;
  left:0;
  bottom:0;
  height: 100%;
  position: fixed;
  min-height: 500px;
  width: 100%;
  flex-direction: column;
  box-sizing: border-box;
  background-image: url("assets/pleats.jpg"); /* The image used */
  background-color: #fff; /* Used if the image is unavailable */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}

#music #background {
  /* background-image: linear-gradient(rgb(20, 54, 247), rgb(255, 248, 215));
  background-image: linear-gradient(rgb(235, 58, 14), rgb(243, 68, 45)); */
  background-color: rgb(255, 43, 28);
}

#music #background:after {
  content:'';
  display: block;
  position: fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  width: 100%;
  height: 100%;
  background-image: url("assets/noise.png"); /* The image used */
  background-position: center; /* Center the image */
  background-repeat: repeat; /* Do not repeat the image */
  background-size: 250px; /* Resize the background image to cover the entire container */
  z-index: 10;
  mix-blend-mode: multiply;
}

#video #background {
  background-color: rgb(255, 249, 224);
  /* background-image: linear-gradient(rgb(245, 245, 245), rgb(255, 249, 221)); */
}

#video #background:after {
  content:'';
  display: block;
  position: fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  width: 100%;
  height: 100%;
  background-image: url("assets/noise.png"); /* The image used */
  background-position: center; /* Center the image */
  background-repeat: repeat; /* Do not repeat the image */
  background-size: 250px; /* Resize the background image to cover the entire container */
  z-index: 10;
  mix-blend-mode: multiply;
}

.content {
  /* position: fixed; */
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  padding: 80px 30px;
  max-width: 800px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

body#music .content iframe {
  margin-bottom: 30px;
  width: 100%;
  max-width: 660px;
  border-radius: 5px;
  /* min-height: 50vh;
  flex: 1 150%; */
  box-shadow: 0px 5px 30px rgba(0,0,0,0.1);
  /* border: 2px solid #161616; */
}

body#video .content iframe {
  margin-bottom: 30px;
  width: 100%;
  max-width: 100%;
  border-radius: 5px;
  height: 33vh;
  /* min-height: 50vh;
  flex: 1 150%; */
  box-shadow: 0px 5px 30px rgba(0,0,0,0.1);
  /* border: 2px solid #161616; */
}

body#music .content {
  margin-top: 120px;
}

.content {
  margin-top: 120px;
}

.content .downloads {
  display: flex;
  flex-direction: column;
}

.content ul {
  display: flex;
  flex-wrap: wrap;
  width: 75%;
}

.content ul li {
  margin: 5px 0;
  width: 50%;
  text-align: left;
}

/* .content .press-downloads h3 {
  margin-bottom: 12px;
  text-align: left;
}

.content .press-downloads h3:after {
  content: '';
  display: block;
  margin-top: 10px;
  height: 1px;
  background: red;
  width: 0;
  position: relative;
  transition: 400ms width ease-in-out 0.35s;
} */

.content ul li a {
  font-size: 25px;
  letter-spacing: 1px;
  font-weight: 100;
  text-transform: uppercase;
}

ul.navigation {
  position: fixed;
  z-index: 2;
  mix-blend-mode: difference;
}
ul.navigation li a {
  color: #fff;
  /* filter: invert(1);
  -webkit-filter: invert(1); */
}

ul.navigation li a:hover {
  color: rgb(0, 255, 242);
  mix-blend-mode: color-burn;
}

ul.navigation li.home {
  position: fixed;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  top: 30px;
  display: block;
}

ul.navigation li.top-left {
  position: fixed;
  left: 30px;
  top: 30px;
  display: block;
}

ul.navigation li.top-right {
  position: fixed;
  right: 30px;
  top: 30px;
  display: block;
}

ul.navigation li.instagram {
  position: fixed;
  left: 30px;
  bottom: 30px;
  display: block;
}

ul.navigation li.contact {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: block;
}

ul.navigation li.top-right.active:after {
  content: '';
  display: block;
  bottom: -5px;
  height: 4px;
  background: #414bd2;
  width: 100%;
  position: absolute;
}


img.pleatspics,
img.drawings {
  position: fixed;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 100%;
  margin-top: 150px;
  max-height: 750px;
  min-height: 400px;
  height: auto;
  backface-visibility: visible;
  will-change: transform;
}

img.pleatspics {
  -webkit-transform: scale(1.4) translate(0, 100%);
          transform: scale(1.4) translate(0, 100%);
}

img.drawings {
          opacity: 0;
}

.content ul li {
  -webkit-transform: translate(0, 10px);
          transform: translate(0, 10px);
}

iframe {
  -webkit-transform: translate(0, 10%);
          transform: translate(0, 10%);
}

/* Load Animations */

body {
  opacity: 0;
}

body {
  transition: all 0.25s ease-in-out;
}

.loaded {
  opacity: 1;
}

.loaded img.pleatspics {
  -webkit-transform: scale(1) translate(0, 0);
          transform: scale(1) translate(0, 0);
}

.loaded img.drawings {
  -webkit-transform: scale(1) translate(0, 0);
          transform: scale(1) translate(0, 0);
          opacity: 1;
}

.loaded iframe {
  -webkit-transform: scale(1) translate(0, 0);
          transform: scale(1) translate(0, 0);
          opacity: 1;
}

.loaded .content ul li {
  -webkit-transform: scale(1) translate(0, 0);
          transform: scale(1) translate(0, 0);
          opacity: 1;
}

.loaded .divider-animated {
  width: 100%;
}

a {
  transition: all 0.3s ease-in-out;
}

h1 {
  transition-delay: 0.25s;
}

.loaded h1,
.loaded .center,
.loaded .date,
.loaded .mobile-links {
  -webkit-transform: translatey(0);
          transform: translatey(0);
  opacity: 1;
}

img.pleatspics {
  transition: -webkit-transform 2s cubic-bezier(0.105, 0.265, 0.17, 0.975) 0.5s;
  transition: transform 2s cubic-bezier(0.105, 0.265, 0.17, 0.975) 0.5s;
  transition: transform 2s cubic-bezier(0.105, 0.265, 0.17, 0.975) 0.5s, -webkit-transform 2s cubic-bezier(0.105, 0.265, 0.17, 0.975) 0.5s;
}

img.drawings {
  transition: -webkit-transform 1s cubic-bezier(0.105, 0.265, 0.17, 0.975) 2.33s, opacity 500ms cubic-bezier(0.105, 0.265, 0.17, 0.975) 2.33s;
  transition: transform 1s cubic-bezier(0.105, 0.265, 0.17, 0.975) 2.33s, opacity 500ms cubic-bezier(0.105, 0.265, 0.17, 0.975) 2.33s;
  transition: transform 1s cubic-bezier(0.105, 0.265, 0.17, 0.975) 2.33s, -webkit-transform 1s cubic-bezier(0.105, 0.265, 0.17, 0.975) 2.33s, opacity 500ms ease-in-out 2.33s;
}

a:hover {
  cursor: pointer;
}

iframe {
  opacity: 0;
  transition: -webkit-transform 350ms cubic-bezier(0.105, 0.265, 0.17, 0.975) 0s;
  transition: transform 350ms cubic-bezier(0.105, 0.265, 0.17, 0.975) 0s;
  transition: transform 350ms cubic-bezier(0.105, 0.265, 0.17, 0.975) 0s, -webkit-transform 350ms cubic-bezier(0.105, 0.265, 0.17, 0.975) 0s;
}

.content ul li {
  opacity: 0;
  transition: -webkit-transform 1s cubic-bezier(0.105, 0.265, 0.17, 0.975) 0.75s, opacity 500ms cubic-bezier(0.105, 0.265, 0.17, 0.975) 0.75s;
  transition: transform 1s cubic-bezier(0.105, 0.265, 0.17, 0.975) 0.75s, opacity 500ms cubic-bezier(0.105, 0.265, 0.17, 0.975) 0.75s;
  transition: transform 1s cubic-bezier(0.105, 0.265, 0.17, 0.975) 0.75s, -webkit-transform 1s cubic-bezier(0.105, 0.265, 0.17, 0.975) 0.75s, opacity 500ms ease-in-out 0.75s;
}

.content ul li:nth-child(1) {
  transition-delay: 1000ms;
}

.content ul li:nth-child(2) {
  transition-delay: 1100ms;
}

.content ul li:nth-child(3) {
  transition-delay: 1200ms;
}

.content ul li:nth-child(4) {
  transition-delay: 1300ms;
}

.content ul li:nth-child(5) {
  transition-delay: 1400ms;
}

.content ul li:nth-child(6) {
  transition-delay: 1500ms;
}

.content ul li:nth-child(7) {
  transition-delay: 1600ms;
}

.content ul li:nth-child(8) {
  transition-delay: 1700ms;
}


/* Media Queries */


@media screen and (max-width: 960px) {
  ul.navigation li a {
    font-size: 50px;
  }
}

@media screen and (max-height: 700px) {
  img.drawings,
  img.pleatspics {
    height: 90%;
  }
}

@media screen and (max-height: 575px) and (orientation: landscape) {

    h1,a {
      font-size: 30px;
    }

  ul.navigation li.top-right.active:after {
    content: '';
    display: block;
    bottom: -2px;
    height: 2px;
  }

  .content {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    padding: 80px 30px;
    max-width: 100%;
    margin: 0 auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
  }

  .content iframe {
    margin-bottom: 0;
    width: 100%;
    min-height: 20vh;
    max-height: -webkit-fill-available;
    flex: 1 150%;
  }

  .content .downloads {
    display: flex;
    flex-direction: column;
    padding-left: 40px;
  }

  .content ul {
    display: flex;
    flex-wrap: wrap;
  }

  .content ul li {
    text-align: left;
    padding-right: 10px;
    width: 100%;
  }

  .content .downloads h1 {
    text-align: left;
  }
  
  .content {
    padding: 55px 20px!important;
  }

}

@media screen and (max-width: 1440px) {
  img.drawings,
  img.pleatspics {
    min-height: 400px;
  }
}

@media screen and (max-width: 900px) {

  ul.navigation li.home {
    position: fixed;
    top: 20px;
    display: block;
  }

  ul.navigation li.top-left {
    position: fixed;
    left: 20px;
    top: 20px;
    display: block;
  }

  ul.navigation li.top-right {
    position: fixed;
    right: 20px;
    top: 20px;
    display: block;
  }

  ul.navigation li.instagram {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: block;
  }

  ul.navigation li.contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: block;
  }

  .content {
    padding: 100px 20px;
  }
}

@media screen and (max-width: 700px) {
  img.drawings,
  img.pleatspics {
    max-width: 95%;
    height: auto;
    min-height: auto;
    max-height: 550px;
  }
}

@media screen and (max-width: 550px) {
  h1,a {
    font-size: 15px;
/*    font-weight: bold;*/
  }

  ul.navigation li.top-right.active:after {
    content: '';
    display: block;
    bottom: -2px;
    height: 2px;
  }

  .content {
    padding: 55px 20px 70px 20px;
  }

  .content .downloads {
    margin-top: 30px;
    bottom: 15px;
    position: relative;
  }

  .content ul li a {
    font-size: 16px;
  }

/*  img .pleatspics,
  img .drawings {
    bottom: 55px;
  }*/

  .content ul li {
    margin: 4px 0;
  }

  .content h1 {
    margin-bottom: 4px;
  }

  .content iframe {
    margin-bottom: 20px;
  }

  /* ul.navigation li {
    text-shadow: #000 0 1px 2px;
  } */

  .content iframe {
    margin-bottom: 0;
    width: 100%;
    /* flex: 1 100%; */
  }

/*  ul.navigation li.top-right {
    position: fixed;
    left: 0;
    right: 0;
    top: 30px;
    display: block;
    text-align: center;
  }

  ul.navigation li.top-right {
    position: fixed;
    top: inherit;
    left: 20px;
    bottom: 20px;
    display: block;
  }

  ul.navigation li.instagram {
    position: fixed;
    left: 38vw;
    right: 38vw;
    bottom: 20px;
    display: block;
    text-align: center;
  }

  ul.navigation li.contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: block;
  }*/
}

.artist-bio {
  display: flex;
  margin-bottom: 20px;
}

.artist-bio p {
  margin-bottom: 20px;
}

.artist-bio p a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 18px;
  text-transform: lowercase;
  letter-spacing: 0;
  opacity: 0.5;
}

.artist-bio p a:hover {
  opacity: 1;
}

.press-title {
  width: 25%;
}

.press-paragraph {
  width: 75%;
}

.press-photos {
  display: flex;
  flex-wrap: wrap;
}

.press-photos img {
  width: calc(50% - 4px);
  margin: 2px;
}

.intro-photo img {
  width: 100%;
}

.intro-photo {
  margin-bottom: 60px;
  height: 425px;
  overflow: hidden;
}

.press-downloads {
  display: flex;
  margin-bottom: 80px;
}

.press-downloads h3 {
  width: 25%;
}

.press-downloads ul {
  width: 75%;
}

.divider-animated {
  display: block;
  height: 1px;
  background: #000;
  width: 0;
  position: relative;
  transition: 400ms width ease-in-out 0.35s;
  margin-bottom: 60px;
  margin-top: 40px;
  opacity: 0.2;
}