/* montserrat-700 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/montserrat-v14-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Montserrat Bold'), local('Montserrat-Bold'),
  url('../fonts/montserrat-v14-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  url('../fonts/montserrat-v14-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
  url('../fonts/montserrat-v14-latin-700.woff') format('woff'), /* Modern Browsers */
  url('../fonts/montserrat-v14-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
  url('../fonts/montserrat-v14-latin-700.svg#Montserrat') format('svg'); /* Legacy iOS */
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust:     100%;
}

*{
  margin: 0;
  padding: 0;
}

body{
  background: #0A0A0A;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}

a,
a:visited{
  color: #fff;
}

a:hover,
a:focus{
  text-decoration: none;
}

html.navi-active,
.navi-active body {
  overflow: hidden;
}

img{
  height: auto;
  max-width: 100%;
}

h1{
  line-height: 1;
  margin: 0;
}

h2,
h3{
  font-size: 4rem;
  margin: 0 0 4px;
  letter-spacing: -.5rem;
  text-transform: lowercase;
}

p{
  margin: 0 0 1em;
  max-width: 900px;
}

.container ul{
  margin-bottom: 1em;
}

.container li{
  line-height: 1.4;
  list-style-type: none;
}

.container li:before{
  content: '» ';
}

.highlight{
  font-size: 8rem;
  letter-spacing: -.9rem;
  line-height: 1;
  text-transform: lowercase;
}

.container {
  padding: 10px;
}

.container-logo {
  font-size: 2rem;
  padding: 40px;
  text-align: center;
}

@supports (display: flex) {

  .container-logo {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    min-height: calc(100vh - 80px);
  }

}

.anecker-e {
  animation: anecker-e 4s 1s infinite;
  display: inline-block;
  transform: rotateY(180deg);
  transform-origin: center center;
}

@keyframes anecker-e {
  0%, 40% {
    transform: rotateY(180deg);
  }
  20% {
    transform: rotateY(0deg);
  }
}

/* Header */
.header {
  position: fixed;
  min-height: 8rem;
  background: #0D0D0D;
  width: 100%;
  top: 0;
  z-index: 5;
  transition: all .5s;
}

.scrolled .header {
  background: transparent;
}

/* Navi */
.navi-logo {
  display: inline-block;
  margin: 10px 0 0 10px;
  z-index: 2;
  position: relative;
  width: 152px;
  height: 50px;
  background: url('/images/logo.svg') no-repeat 0 0;
  background-size: 100% auto;
}

.scrolled .navi-logo,
body:not(.home) .navi-logo {
  background-image: url('/images/logo-signet.svg');
  width: 50px;
  background-color: #000;
}

.navi-logo svg {
  width: 152px;
  height: 50px;
}

.navi-icon {
  cursor: pointer;
  margin: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 10px;
  top: 10px;
  background: #F5EF34;
}

.navi-icon > span {
  background-color: #000;
  display: block;
  height: 3px;
  margin: -1.5px 0 0 -12.5px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
}

.navi-icon > span:before,
.navi-icon > span:after {
  background-color: #000;
  content: "";
  height: 100%;
  position: absolute;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
}

.navi-icon > span:before {
  -webkit-transform: translateY(-.4em);
  transform: translateY(-.4em);
}

.navi-icon > span:after {
  -webkit-transform: translateY(.4em);
  transform: translateY(.4em);
}

.navi-icon.active {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: transparent;
}

.navi-icon.active > span:before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.navi-icon.active > span:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.navi-icon.active span,
.navi-icon.active > span:before,
.navi-icon.active > span:after {
  background-color: #fff;
}

.navi-wrapper {
  position: absolute;
  background: rgba(0, 0, 0, .9);
  display: block;
  right: -100%;
  top: 0;
  margin: 0;
  padding: 8rem 0 0;
  list-style-type: none;
  transition: right .5s;
  height: 100vh;
  width: 100vw;
}

.navi-active .navi-wrapper {
  right: 0;
}

.navi > ul > li {
  display : block;
  margin-bottom: 10px;
  text-align: right;
  padding: 0 1rem 0 0;
}

.navi > ul > li.active {

}

.navi > ul > li a {
  font-size: 5rem;
  color: #fff;
}

.navi > ul > li.active a {
  background: #fff;
  color: #000;
  text-decoration: none;

}

/* slider */
.flexslider {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 8rem auto 0;
  max-width: 1920px;
  overflow: hidden;
  background: #0A0A0A;
}

.eventitem .flexslider {
  padding: 0 0 35px;
}


.flexslider img {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.flex-direction-nav {
  display: none;
}

.flex-direction-nav a {
  height: 50px;
  width: 50px;
  margin: -30px 0 0;
  opacity: .5;
  text-shadow: none;
}

.flex-direction-nav a:before {
  font-size: unset;
  background: url('/images/arrow-slider.svg') no-repeat 0 0;
  line-height: 1;
  text-shadow: none;
  width: 50px;
  height: 50px;
  content: '';
}

.flex-direction-nav a.flex-next::before {
  content: '';
}

.flex-direction-nav .flex-prev,
.flexslider:hover .flex-direction-nav .flex-prev{
  left: 50px;
}

.flex-direction-nav .flex-next,
.flexslider:hover .flex-direction-nav .flex-next{
  right: 50px;
  transform: rotate(180deg);
}

.tool-changer .slides img {
  cursor: pointer;
}

.flexslider .slides img.big {
  display: none;
}

.slider-caption {
  margin: -20px 0 0;
}

body:not(.home) .slider-caption {
  margin: 20px 0 0 10px;
}

.slider-caption span {
  text-transform: lowercase;
}

.slider-caption span:first-child {
  font-size: 5rem;
  background: #000;
  color: #F5EF34;
  padding: 10px 10px 10px 20px;
  display: inline-block;
  letter-spacing: -.5rem;
}

body:not(.home) .slider-caption span:first-child {
  background: none;
}

.slider-caption span:last-child {
  color: #000;
  font-size: 3.4rem;
  background: #fff;
  display: block;
  padding-left: 20px;
  letter-spacing: -.3rem;
}

/* Content */
.container-title {
  display: none;
}

.event {
  margin: 0 auto 3em;
  max-width: 700px;
  text-decoration: none;
  color: #fff;
  text-transform: lowercase;
  display: inline-block;
}

.event h2 {
  margin: 0 0 .3em;
}

.event img{
  margin: 0 0 10px;
}

.event p{
  background: #fff;
  color: #000;
  display: inline-block;
  padding: 2px 10px;
  font-size: 2.6rem;
  letter-spacing: -.3rem;
}

.info-temp{
  margin: 3em auto;
  text-align: center;
}

.info-temp-heading{
  color: #1A1A1A;
  font-size: 6rem;
}

.info-temp-content{
  font-size: 2.4rem;
}

/* boxes */
.concert-box-wrapper {
  padding: 20px 20px 40px;
  background: #fff;
  color: #000;
  letter-spacing: -.5rem;
  text-transform: lowercase;
}

.concert-box-heading {
  font-size: 7rem;
  letter-spacing: -.9rem;
  margin: 0 0 .5em;
  line-height: 1;
}

.concert-box-content a {
  font-size: 4rem;
  color: #FF4040;
}

.review-box-wrapper {
  padding: 110px 10px;
  text-align: center;
  text-transform: lowercase;
  background: url('/images/img-bg-parallax.jpg') no-repeat center center;
  background-size: cover;
}

.review-box-heading{
  font-size: 8rem;
  letter-spacing: -.9rem;
  line-height: 1;
}

/*.review-box-content {
  display: none;
}*/

/* Footer */
.container-footer {
  padding: 45px 10px 0;
}

.footer-wrapper {
  padding: 10px 15px 40px;
  background: #fff;
  color: #000;
  display: flex;
  justify-content: space-between;
}

.footer-wrapper > div {
  position: relative;
}

.container-footer a {
  color: #000;
}

.footer-contact-links a {
  font-size: 4rem;
  letter-spacing: -.5rem;
  display: inline-block;
  text-transform: lowercase;
}

.footer-privacy-links {
  font-size: 1.4rem;
  position: absolute;
  bottom: 0;
}

.footer-privacy-links a {
  text-decoration: none;
}

.footer-logo svg {
  width: 106px;
  height: 143px;
}

.footer-logo svg * {
  fill: #000;
}

.footer-design {
  text-align: center;
  margin: 2rem 0;
}

@media screen and (max-width: 480px) {

  .home .flexslider{
    display: none;
  }

  .home .container.container-content {
    margin: 4em 0 0;
  }

}

@media screen and (min-width: 720px) {
  .navi > ul > li a {
    font-size: 9rem;
  }

  .events {
    display: flex;
    flex-wrap: wrap;
    margin: 2em 0 0;
  }

  .event {
    width: 47.5%;
    margin: 0 .5em 3em;
  }

  .concert-box-wrapper {
    width: 75%;
    max-width: 1500px;
    padding: 30px;
  }

  .footer-contact-links a {
    margin: 0 30px 0 0;
    text-decoration: none;
  }
}

@media screen and (min-width: 1020px) {
  .slider-caption span:first-child {
    font-size: 6.5rem;
  }

  .slider-caption span:last-child {
    font-size: 4.5rem;
  }

  .concert-box-wrapper {
    width: 60%;
    max-width: 1500px;
    padding: 90px;
  }
}

.no-slider .container.container-content {
  margin: 4em 0 0;
}

.eventlist{
  border-collapse: collapse;
  width: 100%;
}

.eventlist td{
  border-bottom: 1px solid #666;
  padding: 10px;
}

@media screen and (max-width: 520px){

  .eventlist td{
    border-bottom: 0;
    display: block;
    padding: 4px;
  }

  .eventlist td:first-child{
    padding-top: 10px;
  }

  .eventlist td:last-child{
    border-bottom: 1px solid #666;
    padding-bottom: 10px;
  }

}


@media screen and (min-width: 1040px){

  body{
    font-size: 2.4rem;
  }

  h2{
    font-size: 4.5rem;
    letter-spacing: -.5rem;
  }

  .header {
    background: transparent;
  }

  .header::after,
  .header::before {
    position: fixed;
    content: '';
    bottom: 0;
    background: #0A0A0A;
    height: 40px;
    width: 100%;
  }

  .header::before {
    top: 0;
    bottom: auto;
  }

  .navi-logo {
    margin: 30px 0 0 30px;
    width: 203px;
    height: 68px;
    background-color: #0A0A0A;
  }

  .scrolled .navi-logo,
  body:not(.home) .navi-logo {
    height: 50px;
    width: 50px;
  }

  .navi-wrapper {
    right: -101%;
  }

  .navi > ul > li a {
    font-size: 13rem;
    transition: color .5s;
    letter-spacing: -1.8rem;
  }

  .navi > ul > li:not(.active):hover a {
    color: #F5EF34;
  }

  .navi > ul > li {
    padding: 0 3rem 0 0;
  }

  .navi-icon {
    right: 30px;
    top: 30px;
    z-index: 2;
  }

  .navi-overlay {
    position: fixed;
    height: 100vw;
    right: 0;
    top: -500%;
    background: rgba(0, 0, 0, .9);
    width: 100vw;
    z-index: 1;
    transform: skewY(31deg);
    transition: top .5s;
  }

  .navi-active .navi-overlay {
    top: -117%;
  }

  .navi-wrapper {
    background: transparent;
    z-index: 2;
  }

  .flexslider {
    margin: 0 40px 0;
    border-bottom: 2px solid #fff;
    padding: 0 0 35px;
  }

  /*.flexslider .slides li:after{
    background: red;
    bottom: -35px;
    content: '';
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
  }*/


  .eventitem .flexslider {
    width: 78%;
    margin-left: auto;
  }

  .flex-direction-nav {
    display: block;
  }

  .flex-direction-nav a {
    z-index: 1;
  }

  .slider-caption {
    margin: -140px 0 0 40px;
  }

  .slider-caption span:first-child {
    margin-bottom: 10px;
  }

  .slider-caption span:last-child {
    display: inline-block;
    padding: 0 20px;
  }

  body:not(.home) .slider-caption span:first-child {
    padding: 10px 0;
  }

  .container.container-content {
    display: flex;
    margin: 2em 0 0;
    width: 100%;
  }

  .highlight {
     font-size: 20rem;
     letter-spacing: -2.5rem;
     line-height: 1;
     margin: 0 0 .1em;
    max-width: 100%;
   }

  .eventitem .container.container-content {
    margin: 2em 0 0;
  }

  .container-title {
    display: block;
    position: relative;
    width: 22%;
  }

  .content-header-wrapper {
    text-transform: lowercase;
    writing-mode: vertical-rl;
    transform: scale(-1);
    margin: 0 auto;
    position: relative;
    display: block;
  }

  .container-title h1 {
    font-size: 20rem;
    letter-spacing: -2.5rem;
    color: #202020;
  }

  .subheading {
    font-size: 4.5rem;
    color: #F5EF34;
    margin: 0 30px 0;
    padding: 14px 0 0;
  }

  .container-inner-content {
    width: 78%;
  }

  .eventlist-date{
    width: 200px;
  }

  .eventlist-location{
    width: 300px;
  }

  .event img {
    transition: opacity .3s;
  }

  .event:hover img {
    opacity: .5;
  }

  .event p{
    font-size: 3.4rem;
    letter-spacing: -.3rem;
    transition: background .5s;
  }

  .event:hover p {
    background: #F5EF34;
  }

  .concert-review-wrapper {
    background: url('/images/img-bg-parallax.jpg') no-repeat center center;
    background-attachment: fixed;
    background-size: 95.8% 100%;
    margin: 13em 0 0;
    position: relative;
  }

  .concert-box-wrapper {
    width: 61%;
    padding: 9em 10em;
    position: absolute;
    left: 0;
    top: -158px;
  }

  .concert-box-heading {
    font-size: 20rem;
    letter-spacing: -2.5rem;
    margin: 0 0 .2em;
  }

  .review-box-wrapper {
    background: none;
    padding: 50em 0 18em;
  }

  .review-box-heading {
    font-size: 20rem;
    letter-spacing: -2.5rem;
    line-height: 1;
    margin: 0 0 .1em;
  }

  .review-box-content {
    display: block;
    font-size: 4.5rem;
    letter-spacing: -.5rem;
  }

  .container.container-footer {
    padding: 0 40px 20px;
  }

  .footer-wrapper {
    padding: 30px 40px 40px;
  }

  .footer-contact-links a {
    font-size: 4.5rem;
  }

  .footer-privacy-links {
    font-size: 1.8rem;
  }

  .footer-logo {
    display: block;
  }

  .footer-logo svg {
    width: 123px;
    height: 165px;
  }

  .footer-col-1 a {
    position: relative;
  }

  .footer-col-1 a:after {
    content: '';
    position: absolute;
    bottom: 6px;
    height: 2px;
    background: #000;
    width: 0;
    left: 0;
    transition: width .5s;
  }

  .footer-privacy-links a::after {
    bottom: 1px;
  }

  .footer-col-1 a:hover:after {
    width: 100%;
  }

  .info-temp-heading{
    font-size: 20rem;
    letter-spacing: -2.5rem;
  }

  .info-temp-content{
    font-size: 6rem;
    letter-spacing: -.7rem;
  }

}


@media screen and (min-width: 1800px){

  @supports (display: flex) {

    .main {
      align-items: flex-start;
      display: flex;
    }

    .container {
      padding: 40px;
    }

    .container-logo {
      display: block;
      flex: 1;
      min-height: 0;
      text-align: left;
    }

    .container-events {
      flex: 6;
    }

    .events {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .event {
      flex: 1;
      max-width: 48%;
      min-width: 48%;
      margin: 0 0 4em;
    }

    .info-temp{
      text-align: left;
    }

  }

}
