/* CSS Document */
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/roboto-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/roboto-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* CSS Document */
body {
  height: 100vh;
}

/* Avoid Chrome to see Safari hack */
@supports (-webkit-touch-callout: none) {
  body {
    /* The hack for Safari */
    height: -webkit-fill-available;
  }
}
body, p, h1, h2, h3 {
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
}

html, body {
  margin: 0;
  padding: 0;
  height: auto;
}

body {
  color: #ffffff;
  background-color: black;
}

#main {
  overflow: hidden;
}

/*----- Progress-Bar ------*/
progress {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 10px;
  border: none;
  background: transparent;
}

progress::-webkit-progress-bar {
  background: transparent;
}

progress::-webkit-progress-value {
  background: #f77300;
  background-attachment: fixed;
}

progress::-moz-progress-bar {
  background: #f77300;
  background-attachment: fixed;
}

/*-----------*/
h1, h2, h3, h4, h5, h6 {
  font-weight: lighter;
  overflow: hidden;
  padding: 0;
}

h1 {
  font-size: calc(5px + 5vw);
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

h2 {
  margin: 0 0.3em;
}

.orange {
  color: #f77300;
}

.hide {
  overflow: hidden;
  position: relative;
  height: auto;
  display: inline-block;
}
.hide h1, .hide h2 {
  margin-bottom: 0;
  padding: 0;
}

a, a:visited {
  color: #ffffff;
  text-decoration: none;
}

.invisible {
  position: absolute;
  left: -99em;
}

img {
  max-width: 100%;
  height: auto;
}

.centertext {
  text-align: center;
}

.vertcenter {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#header {
  height: auto;
  position: fixed;
  z-index: 999;
  width: 100%;
}
#header .inside {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}

.logo {
  margin: 3rem 0 0 2.5rem;
}
.logo img {
  width: 180px;
  height: auto;
}

.logo a {
  opacity: 0.95;
  transition: opacity 0.2s ease-out;
}

.logo a:hover {
  opacity: 1;
  transition: opacity 0.2s ease-out;
}

/*----- Scrollhinweise ------*/
@-webkit-keyframes -mouse-scroll {
  0% {
    transform: translateZ(0);
  }
  to {
    transform: translate3d(0, -20px, 0);
  }
}
@keyframes -mouse-scroll {
  0% {
    transform: translateZ(0);
  }
  to {
    transform: translate3d(0, -20px, 0);
  }
}
.wrapblock::after {
  content: "";
  width: 30px;
  height: 49px;
  background: url("../images/mouse2x.png") no-repeat 50%/100% auto transparent;
  background-image: url("../images/mouse2x.png");
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-animation: -mouse-scroll 2s ease-in-out infinite alternate;
  animation: -mouse-scroll 2s ease-in-out infinite alternate;
  z-index: 100;
  margin-left: -15px;
}

/*------------------------------*/
section {
  height: 100vh;
  position: relative;
  z-index: 2;
}

.container, .container2 {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

.panel {
  height: 100%;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container .panel, .container2 .panel {
  width: 100vw;
}

.topabstand {
  margin-top: 32vh;
}

.txtbox {
  display: flex;
  flex-direction: column;
}
.txtbox p {
  font-size: calc(15px + 0.7vw);
  line-height: 1.5em;
  margin: 0;
}

.txtblock {
  padding: 2rem;
}

.scrollhinweis {
  text-align: center;
  margin-top: 30vh;
  font-size: calc(16px + 0.2vw);
}
.scrollhinweis h3 {
  font-size: calc(5px + 2.5vw);
  font-weight: bold;
}

.textblock1 {
  position: absolute;
  bottom: -100px;
  opacity: 0;
}
.textblock1 .txtwrap {
  display: flex;
  flex-direction: column;
}
.textblock1 .txtwrap h2 {
  font-size: calc(5px + 1.8vw);
  margin-left: 0.1em;
  margin-top: 1rem;
}

.scrollblock {
  background-color: rgba(0, 0, 0, 0.2);
  width: 30vw;
  max-width: 800px;
  padding: 2rem;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.scrollblock h2 {
  font-size: calc(15px + 0.7vw);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: #f77300;
}
.scrollblock p {
  opacity: 0.92;
}

.inner {
  width: 100vw;
  display: flex;
  justify-content: center;
}

.movie .txtbox {
  align-items: center;
}
.movie .txtbox h2 {
  margin-bottom: 1em;
  font-size: 2.3em;
}

.moviebox {
  height: 100vh;
}
.moviebox .txtbox {
  padding: 0 2rem;
}
.moviebox .panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.movieintro {
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.videoclip {
  width: 90vw;
  max-width: 900px;
}

.rightside {
  position: absolute;
  /*top: 50%;*/
  right: 8%;
}

.leftside {
  position: absolute;
  /*top: 50%;*/
  left: 8%;
}

.downside {
  position: absolute;
  bottom: 10%;
  z-index: 99;
}

.topside {
  position: absolute;
  top: 20%;
  z-index: 99;
}

.txtten {
  top: 60%;
}

.footer {
  height: unset;
  min-height: 600px;
  background-color: #000;
  color: #fff;
  bottom: 0;
  z-index: 1;
}
.footer .footerwrap {
  position: fixed;
  bottom: 0;
  min-height: 600px;
  width: 100%;
  background: url(../images/bg-footer.jpg) no-repeat;
  background-size: cover;
}
.footer .footercontent {
  display: flex;
  font-size: 1em;
  min-height: 600px;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 1.5rem;
}
.footer .footercontent p {
  line-height: 1.7em;
  font-size: 1.5em;
}
.footer .footercontent a:hover {
  text-decoration: underline;
}
.footer .footercontent .contact {
  font-size: 1.1em;
  opacity: 0.9;
}

.plusmargin {
  margin-top: 5rem;
  margin-bottom: 0.2rem;
}

.imprintlink {
  display: flex;
  list-style-type: none;
  text-transform: uppercase;
  padding: 0;
  margin-left: 0;
  margin-top: 3rem;
}
.imprintlink a {
  opacity: 0.5;
  padding: 0.8rem;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease-out;
}
.imprintlink a:hover {
  opacity: 1;
  transition: opacity 0.2s ease-out;
}

.circlearrow {
  width: 4.5rem;
  border: 1px solid #fff;
  border-radius: 50%;
  height: 4.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-out;
}
.circlearrow img {
  width: 16px;
  height: 32px;
}

a.back-to-top {
  padding-bottom: 0.18rem;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  margin-top: 2rem;
  opacity: 0.5;
  transition: opacity 0.2s ease-out;
}

a.back-to-top:hover {
  opacity: 1;
  transition: opacity 0.2s ease-out;
}

@media (min-width: 1900px) {
  .scrollblock h2 {
    font-size: 26px;
  }
  .txtbox p {
    font-size: 26px;
  }
}
@media (max-width: 900px) {
  .textblock1 .txtwrap {
    padding: 2rem;
  }
  .textblock1 .txtwrap h1 {
    font-size: calc(18px + 2.5vw);
  }
  .textblock1 .txtwrap h2 {
    font-size: calc(10px + 2vw);
  }
  .wrapblock::after {
    bottom: 80px;
    background-image: url("../images/mobilescroll2x.png");
  }
  .logo {
    margin: 2rem 0 0 1.5rem;
  }
  .logo img {
    width: 130px;
  }
  .scrollblock h2 {
    font-size: 20px;
  }
  .txtbox p {
    font-size: 20px;
  }
  .scrollblock {
    width: auto;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .leftside, .rightside {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
  }
  .downside {
    bottom: 0;
  }
  .fixed-txt {
    position: absolute;
  }
  .panel {
    justify-content: flex-end;
  }
  .moviebox .panel {
    justify-content: center;
  }
  .moviebox .panel .topabstand {
    margin-top: 0;
  }
  .container2 .txtbox {
    position: absolute;
    bottom: 0;
  }
  .footer .footercontent p {
    font-size: 1.3em;
    line-height: 1.5em;
  }
}
@media (min-width: 1700px) {
  .textblock1 h1 {
    font-size: 100px;
  }
  .textblock1 .txtwrap h2 {
    font-size: 35px;
  }
}
#portrigger {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  right: 10vw;
  width: 50vh;
  height: 80vh;
}
@media (max-width: 900px) {
  #portrigger {
    right: 15vw;
    width: 70vw;
    height: 60vh;
    bottom: unset;
    top: 10vh;
  }
}

.portrait {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}
