/* Setup */

:root {
  --font: "Helvetice Neue", sans-serif;
  --font-weight: 600;
}

body {
  background: #000;
  margin: 0;
}

h1 {
  color: #FFF;
  font-family: var(--font);
  font-size: 3em;
  text-align: center;
  letter-spacing: .2em;
  margin: 96px 0;
}

p, a, button, li {
  color: #FFF;
  font-family: var(--font);
  font-weight: var(--font-weight);
  text-decoration: none;
}

ul {
  padding: 0;
}

.clear {
  clear: both;
}

/* Navigation */

nav {
  width: 100%;
  height: 96px;
  padding: 0;
  position: fixed;
  z-index: 2000;
  background: rgba(0,0,0,0);
  transition: background .5s ease;
}

footer {
  width: 100%;
  padding: 48px 0;
  margin: 0;
  background: rgb(30, 30, 30);
}

footer * {
  padding: 0;
}

#menu-icon {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 28px;
  left: 28px;
  cursor: pointer;
}

#menu-icon span {
  background: #FFF;
  width: 100%;
  height: 3px;
  margin: 9px 0;
  position: absolute;
  left: 0;
  display: block;
  -webkit-transition: all .4s; transition: all .4s;
}

#menu-icon span:nth-of-type(1) {
  top: 0px
}

#menu-icon span:nth-of-type(2) {
  top: 12px
}

#menu-icon span:nth-of-type(3) {
  top: 24px
}

.topLineAnimation {
  top: 12px !important;
  transform: rotate(45deg);
}

.midLineAnimation {
  opacity: 0;
}

.bottomLineAnimation {
  top: 12px !important;
  transform: rotate(-45deg);
}

nav img {
  height: 48px;
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  display: block;
  transition: .5s all ease;
}

.display-logo {
  top: 24px;
  opacity: 1;
}

nav ul {
  position: absolute;
  margin: 0;
  top: 31px;
  right: 12px;
}

footer ul {
  text-align: center;
}

nav ul li,
footer ul li,
#fullscreen-menu .social-media-links li {
  display: inline-block;
  margin: 0;
  padding: 0 12px;
}

#fullscreen-menu .social-media-links li {
  display: none;
}

.social-media-links {
  margin-top: 32px;
}

.social-media-links li {
  padding: 1vw !important;
}

.social-media-links li i {
  font-size: 9vw;
}

nav ul li i {
  font-size: 32px;
}

footer ul li i {
  font-size: 3em;
}

#fullscreen-menu {
  width: 100vw;
  height: 0px;
  position: fixed;
  top: 0;
  background: #000;
  z-index: 1000;
  overflow: hidden;
  transition: height 1s ease;
}

.menu-wrapper {
  width: 70%;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#fullscreen-menu ul {
  font-family: var(--font);
  font-size: 1em;
  text-align: center;
  letter-spacing: .2em;
  list-style: none;
  text-align: center;
}

#fullscreen-menu ul li {
  color: #FFF;
  font-family: var(--font);
  font-size: 2em;
  padding: 24px;
  opacity: .7;
  transition: opacity .2s;
  cursor: pointer;
}

#fullscreen-menu ul li:hover {
  opacity: 1;
}

/* Content */

.wrapper {
}

.intro {
  width: 100%;
  height: 100vh;
  position: relative;
  margin-bottom: 128px;
}

.intro .intro-image {
  width: 100%;
  height: 100%;
  background: #000 url("../_IMG/intro.jpg");
  opacity: 0;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  transition: opacity 5s ease;
  -webkit-mask-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.intro .logo {
  width: 310px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.intro a {
    font-size: 1em;
    position: absolute;
    top: 75%;
    left: 50%;
    padding: 12px;
    transform: translateX(-50%);
    text-align: center;
}

.intro a span {
    padding: 12px;
    display: block;
}

.intro a span:nth-of-type(1) {
    color: #000;
    background: rgba(255,255,255,.75);
}

.intro a span:nth-of-type(2) {
    color: rgba(255,255,255,.75);
    background: none;
}

#down {
  background: url(../_IMG/arrow-down.png);
  background-size: cover;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  display: block;
  position: absolute;
  top: 90%;
  left: 0;
  right: 0;
  z-index: 1000;
}

.intro-video {
  width: 49.8vw;
  height: 30vw;
  float: left;
}

.intro-video:nth-of-type(1) {
  width: 100vw;
  height: 60vw;
}

.album-wrapper,
.instagram-feed-wrapper {
  float: left;
  width: 24.8vw;
  height: 24.8vw;
  overflow: hidden;
}

.album,
.instagram-feed-img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center;
  transition: transform .3s ease;
}

.instagram-feed-img {
  position: relative;
  background-color: #000;
}

.text-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: background-color .3s ease;
}

.instagram-feed-img p {
  font-size: 1em;
  position: absolute;
  margin: 0;
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
  text-align: center;
  overflow-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transition: opacity .3s ease;
}

.album:hover,
.instagram-feed-img:hover {
  transform: scale(1.15);
}

.instagram-feed-img:hover .text-wrapper {
  background: rgba(0,0,0,.6);
}

.instagram-feed-img:hover {
  background-blend-mode: screen;
}

.instagram-feed-img:hover p {
  opacity: 1;
}

.contact-wrapper {
  width: 98vw;
  height: 23vw;
  border: solid 1vw #FFF;
  position: relative;
}

.contact-link {
  font-size: 2em;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

footer ul {
  margin-bottom: 48px;
}

footer .links {
  font-size: 1em;
}

.bottom-note {
  opacity: .5;
  text-align: center;
  font-weight: 400;
}

.bottom-note a {
  font-weight: 400;
}

#cookie-consent {
  width: 95%;
  padding: 12px 2.5%;
  position: fixed;
  background: rgb(30,30,30);
  bottom: 0;
  display: none;
    z-index: 1000;
}

#cookie-consent p {
  width: 70%;
}

#cookie-consent #ok {
  width: 96px;
  height: 70%;
  color: #FFF;
  background: rgb(30,30,30);
  border: 1px solid #FFF;
  font-size: 1em;
  position: absolute;
  top: 15%;
  right: 12px;
}

#cookie-consent #ok:hover {
  cursor: pointer;
}

.back-button {
  font-size: 3em;
  position: fixed;
  top: 32px;
  left: 32px;
}

.imprint-privacy-wrapper {
  width: 75%;
  margin: 0 auto;
}

.centered {
              background: rgb(30, 30, 30);
              width: 500px;
              display: block;
              margin: 50px auto;
          }
          
          .centered .title {
              margin: 50px 0;
              font-size: 1.5em;
          }
          
          .services {
              list-style: none;
              margin: 0;
              padding: 0 50px 25px;
              padding-bottom: 25px;
          }
          
          .services li, .services hr {
              margin-bottom: 25px;
          }
          
          .services hr {
              opacity: 0.33;
          }
          
          .services img {
              height: 40px;
          }
          
          .services p {
              line-height: 40px;
              float: left;
              margin: 0;
              font-size: 1.5em;
              letter-spacing: 0.2em;
          }
          
          .service-button {
              float: right;
              text-align: center;
              height: 40px;
              line-height: 40px;
            color: #000;
            background: #fff;
            font-size: 1.2em;
            padding: 0 20px;
              letter-spacing: .15em;
          }
          
          #page-video {
            position: relative;
            padding-bottom: 56.25%;
              height: 0;
            overflow: hidden;
              margin-bottom: 50px;
        }
        
        #page-video iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

#links-cover {
    width: 100%;
}

          #imprint-link {
            font-size: 0.8em;
            opacity: 0.5;
            left: 50%;
            padding-bottom: 10px;
              text-align: center;
              margin: 0 auto;
              display: block;
        }

.bit-no-dates-container a {
    display: none !important;
}

/* Media */

@media screen and (max-width: 768px) {
    
  body {
    font-size: .7em;
  }

  h1 {
    margin: 48px 0;
  }

  .intro-video {
    width: 100vw;
    height: 60vw;
    float: none;
  }

  nav ul {
    display: none;
  }

  .intro .intro-image {
    background-attachment: scroll;
  }
  
  .intro .logo {
      width: 150px;
  }

  .intro a {
      width: 65%;
      font-size: .5em;
  }

  .album-wrapper,
  .instagram-feed-wrapper {
    width: 50vw;
    height: 50vw;
  }

  nav {
    height: 64px;
  }

  nav img {
    height: 32px;
    top: 8px;
  }

  #menu-icon {
    top: 8px;
    left: 8px;
  }

  .display-logo {
    top: 16px;
  }

  #fullscreen-menu .social-media-links li {
    display: inline-block;
  }
    
    .centered {
        font-size: initial !important;
    }
    
    #imprint-link {
        font-size: initial !important;
    }
    
}

@media screen and (max-width: 550px) {
    .centered .title {
              font-size: 1.2em;
          }
    
    .services {
              list-style: none;
              margin: 0;
              padding: 0 25px 12.5px;
              padding-bottom: 12.5px;
          }
    
    .centered {
        width: calc(100% - 50px) !important;
        margin: 25px;
        font-size: initial !important;
        left: 0 !important;
    }
    
    .services img {
        height: 33px !important;
    }
    
    .services p {
              line-height: 33px;
              font-size: 1em;
              letter-spacing: 0.15em;
          }
    
    .service-button {
              float: right;
              text-align: center;
              height: 33px;
              line-height: 33px;
            color: #000;
            background: #fff;
            font-size: 1em;
            padding: 0 10px;
              letter-spacing: .1em;
          }
    
    #imprint-link {
        font-size: 1.3em !important;
    }
}
