@charset "UTF-8";
/*
 * CSS Fadeshow by @alexerlandsson
 * This is a fadeshow built in CSS and with customization in focus.
 * Supports quick navigation, prev/next navigation and autoplay.
 *
 * For better documentation and implementation guide, check out the GitHub repository:
 * https://github.com/alexerlandsson/css-fadeshow
*/
/*
 * ===== VARIABLES =====
 *
 * Change these variables to match your preferences. For a more detailed
 * description of what each variable do, visit https://github.com/alexerlandsson/css-fadeshow
 */
/*
 * ===== MIXINS =====
 *
 * This section contains mixin used
 * Do not change anything here unless you know what you are doing.
 */
/* Mixins to handle prefixes */
/* Mixins to handle Quick Navigation Button states */
/*
 * ===== FADESHOW =====
 *
 * Base functionality for the fadeshow.
 * Do not change anything here unless you know what you are doing.
 */

     @font-face{
         font-family:"BemboStd";
         src:url("fonts-joe/BemboStd.woff2") format("woff2"),url("fonts-joe/BemboStd.woff") format("woff");
     }
     @font-face{
         font-family:"Gotham-Bold";
         src:url("fonts-joe/Gotham-Bold.woff2") format("woff2"),url("fonts-joe/Gotham-Bold.woff") format("woff");
     }
     @font-face{
         font-family:"Gotham-Thin";
         src:url("fonts-joe/Gotham-Thin.woff2") format("woff2"),url("fonts-joe/Gotham-Thin.woff") format("woff");
     }


html {
 -ms-scroll-snap-type: both mandatory;
 scroll-snap-type: both mandatory;
 font-size: 100%;
 box-sizing: border-box;
 scroll-behavior: smooth;
}


body {
  font-family:"BemboStd";
  font-size: 18px;

}
.wrapper {

}
.logo {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto;
  margin: auto;
  position: relative;
  top: 6%;
  font-family:"Gotham-Bold";
  /*font-size: 9.5em;*/
  font-size: 6.0vw;
  text-align: left;
  line-height: 100%;
      text-transform: uppercase;
      letter-spacing: -0.020em;
}
.logo svg {
  width: 90%;
  height: auto;
  margin-bottom: 4%;
}
.subline {

}
.subline p {
  width: 100%;
      color: #fff !important;
      margin: auto;
      text-align: left;
      color: #000;
      font-family: "BemboStd";
      font-size: 0.26em;
      text-transform: none;
      letter-spacing: 0;
}

p {
  width: 600px;
  margin: auto;
  text-align: left;
    color: #000;
      font-family:"BemboStd";
}
h3 {
    font-family:"Gotham-Bold";
 text-transform: uppercase;
letter-spacing: 0.2em;
}
.musictitel {
  padding-top: 45px;
}

p.center {
  text-align: center;
}
b {
  font-family:"BemboStd";

}
/*menu*/:root {
  --color-white: hsl(0, 0%, 100%);
  --color-light: hsl(206, 33%, 96%);
  --color-black: hsl(0, 0%, 7%);
  --color-night: hsl(214, 100%, 10%);
  --color-purple: hsl(291, 64%, 42%);
  --color-indigo: hsl(255, 100%, 60%);

}


*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
  background: var(--color-white);
}

a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  text-decoration: none;
  font-size: 1rem;
  color: #fff;
  font-family:"BemboStd";
}
a:focus,
a:hover {
  opacity: 0.5;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.container {
  max-width: 83rem;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 0;
}

.brand {
  font-family: inherit;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: inherit;
  border: none;
  outline: none;
  color: var(--color-indigo);
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
}

.navbar {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  border: none;
  outline: none;
  color: var(--color-white);
;

}
.topbar {
      background-color: #563851;
      position: fixed;
      width: 100%;
      height: 50px;
          z-index: 9;
          margin-top: -50px;
}
.navbar .wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
      background: transparent;
      backdrop-filter: blur(5px);
    background-color: #aacce3;
              border: 1px solid green;
}
.navbar .burger {
  position: relative;
  display: none;
  cursor: pointer;
  width: 2rem;
  height: 1rem;
  border: none;
  outline: none;
  opacity: 0;
  visibility: hidden;
  background: none;
  transform: rotate(0deg);
  transition: 0.35s ease-in-out;
}
.navbar .burger-line {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 0.25rem;
  background: var(--color-black);
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.navbar .burger-line:nth-child(1) {
  top: 0;
}
.navbar .burger-line:nth-child(2), .navbar .burger-line:nth-child(3) {
  top: 0.5rem;
}
.navbar .burger-line:nth-child(4) {
  top: 1rem;
}
.navbar .burger.is-active .burger-line:nth-child(1), .navbar .burger.is-active .burger-line:nth-child(4) {
  top: 1.25rem;
  width: 0%;
  left: 50%;
}
.navbar .burger.is-active .burger-line:nth-child(2) {
  transform: rotate(45deg);
}
.navbar .burger.is-active .burger-line:nth-child(3) {
  transform: rotate(-45deg);
}
.menu {
  width: 888px;
  max-width: 100%;
    margin: 16px auto 1px;

  }
.navbar .menu-inner {

  display: flex;
  justify-content: space-between;


}
.navbar .menu-link {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: inherit;
  border: none;
  color: var(--color-black);
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  transition: all 0.35s ease-in-out;
}

a.normallink {
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .navbar .burger {
    display: block;
    opacity: 1;
    visibility: visible;
    top: 20px;
    left: 20px;
  }
  p {
      width: 90%;
      margin: auto;
      text-align: left;
      color: #000;
      font-family: "BemboStd";
  }

  .navbar .menu {
    width: 100%;
    max-height: 0rem;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.35s ease;
  }
  .navbar .menu.is-active {
    opacity: 1;
    visibility: visible;
  }
  .navbar .menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.75rem;
padding: 1rem 20px;
  background: #563851;
  }
}


/*end of menu*/



#slide-window
  {
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden;
  top:0px;
  left:0px;
  }

#slides
  {
  height:100%;
  position:absolute;
  margin:0px;
  padding:0px;

  -webkit-transform: translate3d(0px,0px,0px);
  transform: translate3d(0px,0px,0px);

  transition: all 0.66s ease; -webkit-transition: all 0.66s ease;

  }

.slide
  {
  list-style:none;
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  width: 500px;
  height: 100%;
  background: #ccc;
  text-align: center;
  line-height: 300px;
  background-size: cover;
  background-position:50% 50%;
  color:#fff;
  -webkit-transform: translate3d(0px,0px,0px);
  visibility:hidden;
  -webkit-transform-style: preserve-3d;
  }

.alive { visibility:visible; }
.socialwall {
height: 1200px;
}
.nav
  {
  position:absolute;
  z-index:9;
  top:50%;
  cursor:pointer;
  color:#fff;
  transition: all 0.66s ease; -webkit-transition: all 0.66s ease;
  }
  .fa-chevron-right:before,
  .fa-chevron-left:before {
      content: none;
  }
.nav:hover { opacity:1.0; }
#left { left:3%; }
#right { right:3%; }


#credit
  {
  position:fixed;
  top:25px;
  left:25px;
  color:#eaeaea;
  font-family: 'Courier New', Courier, monospace;
  }


  section {
    height: 100vh;
    padding: 40px 0 0rem;

    overflow: scroll;
/*    display: flex;*/
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: #000;

    scroll-snap-align: start !important;
    margin-right: 0px;
overflow-x: hidden;
  }
  section:nth-of-type(even) .content {
    flex-direction: row-reverse;
  }
  section:nth-of-type(1) {
    background-color: #563851;
        overflow: scroll;
        color: #fff;
  }
  section:nth-of-type(2) {
    background-color: #563851;
  }
  section:nth-of-type(3) {
    overflow: scroll;
  }

  section:nth-of-type(5) {
    /*height: 100vh;
        padding: 0rem;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
*/
        scroll-snap-align: start;
        background-color: #563851;

  }
section:nth-of-type(5) p {
  width: 240px;
}
  .contactbutton {
    float: none;
    margin: 30px auto;
  }

.contactdiv {
  padding-top: 5%;
}

    @media screen and (max-width : 1100px){
h1 {
  font-size: 127px;
  line-height: 120px;
}
}
@media screen and (max-width : 900px){
h1 {
font-size: 100px;
line-height: 90px;
}
}
  @media screen and (max-width : 800px){
    .mobile-menu .lines {
      border-bottom: 15px double #f8f8f8;
      border-top: 5px solid #f8f8f8;
      content:"";
      height: 5px;
      width:20px;
      padding-right:15px;
    float: right;
  }
  	/*Make dropdown links appear inline*/
  	.mobile-menu ul {
  		position: static;
  		display: none;
  	}
  	/*Create vertical spacing*/
  	.mobile-menu li {
  		margin-bottom: 1px;
  	}
  	/*Make all menu links full width*/
  	.mobile-menu ul li, .mobile-menu li a {
  		width: 100%;
  	}
  	/*Display 'show menu' link*/
  	.mobile-menu .show-menu {
  		display:block;
  	}
  }
  @media screen and (max-width : 700px){
  h1 {
  font-size: 80px;
  line-height: 70px;
  }
  }
  @media screen and (max-width : 600px){
  h1 {
  font-size: 70px;
  line-height: 60px;
  }
  }
  @media screen and (max-width : 500px){
  h1 {
  font-size: 50px;
  line-height: 46px;
  }
  }
