@charset "UTF-8";
/* SETTINGS */
html {
  margin: 0px;
  padding: 0px;
}

body {
  background-color: black;
  font-family: 'Quicksand', sans-serif;
}

/* font-family: 'Oswald', sans-serif; */
/* FONTS */
a {
  text-decoration: none;
}

h1 {
  color: white;
  font-size: 3em;
}

/* H1 CENTER TEXT */
.title {
  text-align: center;
}

p {
  color: white;
  font-size: 1.3em;
}

/* VIDEO CENTER */
.video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5%;
}

/* NAV + HEADER */
nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 5px;
}

nav img {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 15%;
  height: auto;
  margin: 20px;
}

.links {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-right: 0px;
}

nav a {
  margin: 20px;
  color: white;
  font-size: 1.5em;
}

nav a:hover {
  text-decoration: underline;
}

a .active {
  color: white !important;
  text-decoration: underline !important;
}

/*  RESPONSIVE MOBILE NAV */
.accordion {
  display: none;
  background-color: rgba(0, 0, 0, 0);
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: right;
  border: none;
  outline: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.accordion img {
  width: 200px;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  background-color: rgba(0, 0, 0, 0.6);
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
  width: 90%;
  margin: auto auto;
}

/* padding: 0 18px; */
.mobile-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: white;
  height: auto;
  margin-bottom: 15px;
}

.mobile-menu a {
  color: white;
  text-align: right;
  font-size: 1.5em;
}

/* HEADER IMAGE */
header {
  background-position: fixed;
  background-size: cover;
  height: 500px;
  width: auto;
}

.header-home {
  background-image: url("../img/header/blue-and-red-plants-2505693.jpg");
}

.header-artists {
  background-image: url("../img/header/silhouette-photo-of-person-standing-in-neon-lit-hallway-1722072.jpg");
}

.header-stream {
  background-image: url("../img/header/a-neon-signage-with-two-person-behind-2917442.jpg");
}

.header-timetable {
  background-image: url("../img/header/three-multicolored-jellyfishes-1086584.jpg");
}

.header-about {
  background-image: url("../img/header/photo-of-woman-near-neon-lights-1895162.jpg");
}

.header-releases {
  background-image: url("../img/header/abstract-burn-burnt-conceptual-604671.jpg");
}

/* TEXT IN HEADER */
.callout {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.callout h1 {
  text-align: center;
  margin: 10% 0px 50px 0px;
  padding: 30px;
  border: white solid 4px;
}

.interaction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.interaction a {
  padding: 5px 10px 9px 10px;
  margin: 10px;
  color: white;
  border: white 2px solid;
  font-size: 2em;
}

.interaction a:hover {
  background-color: white;
  color: black;
}

/* FOOTER */
footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 5px;
  margin-top: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer nav a {
  font-size: 1em;
}

/* PARTNER SPONSORS SECTION */
.sponsors {
  height: 200px;
  margin: 50px 0px 200px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.sponsors img {
  margin: 30px;
  width: 150px;
  height: auto;
}

/* ARTISTS SECTION */
.artists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px;
}

.artists a img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  width: 200px;
  height: auto;
}

.artists a:hover img {
  -webkit-filter: grayscale(50%);
          filter: grayscale(50%);
}

.about {
  width: 800px;
  margin: 50px auto 50px auto;
}

.artist-overview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 100px;
}

.artist-over i {
  color: white;
}

.text-container a:visited {
  color: white;
}

.text-container a:hover {
  color: white;
  font-size: 1.1em;
}

.text-container a:active {
  color: white;
}

.fa, .fab, .fas {
  color: white;
}

.artist-image {
  width: 300px;
  height: auto;
}

.text-container {
  margin-left: 20px;
  width: 600px;
}

.text-container h1 {
  margin-top: -5px;
  margin-bottom: -15px;
}

.text-container p {
  margin-bottom: 50px;
  font-size: 1.2em;
}

.button {
  padding: 5px 10px 10px 10px;
  color: white;
  border: white 2px solid;
  font-size: 2em;
}

a:visited {
  color: white;
}

/* a:hover{
 *  padding: 5px 10px 10px 10px;
 *  background-color: white;
 *  color: black;
 *  border: white 2px solid;
 *} */
i {
  margin: 5px;
}

/* <650px
 *
 *.artist-overview {
 *  display: flex;
 *  flex-direction: row;
 *  flex-wrap: wrap;
 *  justify-content: center;
 *  align-items: flex-start;
 *  margin: 20px;
 *} */
@media only screen and (max-width: 650px) {
  .artist-overview {
    margin: 20px;
  }
}

.timetable {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.row {
  width: 100%;
  max-width: 500px;
  font-family: helvetica;
  margin-top: 40px;
}

.row .line {
  border-bottom: white 4px solid;
}

.row a {
  text-decoration: none;
  text-transform: uppercase;
  margin: 3px 0;
  color: white;
  font-size: 1.5em;
}

.row a:hover {
  color: grey;
}

.row p {
  text-transform: uppercase;
  float: right;
  margin: 3px 0;
  color: white;
}

.timetable {
  background-image: url("img/wave.svg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 1065px) {
  nav {
    display: none;
  }
  .accordion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .panel .row {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

/* INDEX RESPONSIVE STYLE */
@media only screen and (max-width: 375px) {
  .sponsors img {
    margin: 15px;
    width: 80px;
    height: auto;
  }
  .sponsors  {
    height: 200px;
    margin: 50px 0px 70px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .artists  {
    margin: 15px !important;
  }
  .artists a img {
    width: 100px;
  }
  footer nav a  {
    font-size: 1em;
  }
  nav a {
    margin: 5px;
    color: white;
    font-size: 1.5em;
  }
}
/*# sourceMappingURL=style.css.map */