@charset "UTF-8";


/* figtree-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/figtree-v9-latin-regular.woff2') format('woff2');
}

/* figtree-italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/figtree-v9-latin-italic.woff2') format('woff2');
}

/* figtree-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/figtree-v9-latin-600.woff2') format('woff2');
}

/* figtree-600italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/figtree-v9-latin-600italic.woff2') format('woff2');
}

/* figtree-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/figtree-v9-latin-700.woff2') format('woff2');
}

/* figtree-700italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/figtree-v9-latin-700italic.woff2') format('woff2');
}


/* flyhead 200 */
@font-face {
  font-display: swap;
  font-family: 'Flyhead';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/unlicensed_Flyhead Light.woff2') format('woff2');
}

/* flyhead 400 */
@font-face {
  font-display: swap;
  font-family: 'Flyhead';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/unlicensed_Flyhead Regular.woff2') format('woff2');
}

/* flyhead 700 */
@font-face {
  font-display: swap;
  font-family: 'Flyhead';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/unlicensed_FlyheadBold.woff2') format('woff2');
}





:root {
  --color: #ffffff;
  --padding-x: 100px;
  --padding-y: 150px;
}

html, body {
  margin:0;
  padding: 0;
  line-height: 1.6;
}

body {
  background-color: #151E47;
  color: #fff;
  font-size: 16px;
  font-family: "Figtree", sans-serif;
}

* {
  box-sizing: border-box;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, .h1, h2, .h2 {
}

h3, .h3 {
}

strong {
  font-weight:700;
}

p {
  margin-top:0;
  margin-bottom: 35px;
}
p:last-of-type {
  margin-bottom: 0;
}

.big-headline {
  font-family: Flyhead;
  font-weight: 200;
  letter-spacing: 10%;
  font-size: calc(10px + 7.6vw);
  margin:0;
  line-height: 1.25;
}
strong {
  font-weight: 700;
}
.arrow-right-green {
  height: 30px;
  width: 27px;
  margin-top:10px;
  display: inline-block;
  background-image: url("../img/arrow-right-green.svg");
  background-size: contain;
  background-repeat: no-repeat;
}


section, footer, header {
  width: 100%;
  overflow: hidden;
}
section, footer {
  padding: 45px 0;
}
.container {
  padding: 0 35px;
  position: relative;
}


.init-animate {
  opacity: 0;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  transition: opacity ease .4s, transform ease .4s;
}


header {
  position: relative;
  height: calc(100svh - 65px);
  min-height: 380px;
  width: 100%;
  display: block;
  border-bottom: 2px solid #fff;
}

header .container {
  height:100%;
}

.header-logo-c {
  height: 33vw;
  width: calc(100svh - 140px - 65px);
  position: absolute;
  left:60px;
  top:50%;
  transform: translate(-50%, -50%) rotate(-90deg) translate(-10px, 50%);
}
.header-logo {
  position: relative;
  display: block;
  max-width: calc(100svh - 140px - 65px);
}
.header-logo-subtitle {
  color: #C8D300;
  font-size: 3vh;
  margin-top: 3svh;
  margin-bottom:0;
}



.right-side-btn {
  display:block;
  background-color: #C8D300;
  border: 2px solid transparent;
  color:#151E47;
  position: absolute;
  right:-2px;
  top:15vh;
  writing-mode: sideways-lr;
  text-orientation: sideways-right;
  transition: border-color ease 1s, background-color ease 1s, opacity ease .4s, transform ease .4s;
}
.right-side-btn:hover {
  transition: border-color ease .2s, background-color ease .2s, opacity ease .4s, transform ease .4s;
  border: 2px solid #fff;
  color: #C8D300;
  background-color:#151E47;
}
.right-side-btn a {
  padding: 30px 10px;
  display: block;
}


nav {
  position: fixed;
  z-index: 100;
  top:0;
  left:0;
  width:100%;
  min-height: 80px;
  background-color: transparent;
  border-bottom: 2px solid transparent;
  transition: height ease .4s, background-color ease .4s, border-color ease .4s;
}
.nav-minimized nav {
  min-height: 60px;
}
.nav-minimized nav , .nav-visible nav {
  background-color: #151E47;
  border-bottom: 2px solid #fff;
}
#nav-c {
  position: relative;
  flex-basis:100%;
  height:0;
  overflow:hidden;
  transform: translateY(0);
  transition: height ease .4s, transform ease .4s;
}

nav > .container {
  width:100%;
  display: flex;
  padding: 0 25px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height:80px;
  transition: height ease .4s;
}
.nav-minimized nav > .container {
  height: 60px;
}
#nav-btn-c {
  cursor:pointer;
}
.nav-btn-bar {
  display: block;
  height: 3px;
  width: 41px;
  background-color: #fff;
  margin-bottom: 10px;
  transition: all ease .4s;
  opacity: 1;
}
.nav-btn-bar:last-of-type {
  margin-bottom:0;
}
.nav-visible .nav-btn-bar {
  background-color: #C8D300;
}
.nav-visible .nav-btn-bar:nth-of-type(1) {
  transform: rotate(-45deg) translateY(18px);
}
.nav-visible .nav-btn-bar:nth-of-type(2) {
  opacity: 0;
}
.nav-visible .nav-btn-bar:nth-of-type(3) {
  transform: rotate(45deg) translateY(-18px);
}

nav menu {
  margin:0;
  padding:0;
  font-size: 24px;
  text-align: right;
}
nav menu ul li a {
  color:#fff;
  transition: color ease .4s;
}
nav menu ul li a:hover {
  color: #C8D300;
}
nav menu ul li.active a {
  color: #C8D300;
  border-bottom: 2px solid #C8D300;
}

nav menu ul {
  padding: 20px 0 45px;
}

.nav-mobile-logo {
  opacity:0;
  margin-top:5px;
  transition: opacity ease .4s;
}
.nav-visible .nav-mobile-logo {
  opacity: 1;
}


#intro-content {
  border-bottom: 2px solid #fff;
}
.content-left {
  margin-bottom: 45px;
}



#zahlen {
  padding-top:0;
  text-align: center;
  padding-bottom:0;
  position: relative;
  overflow: hidden;
}
#zahlen .container {
  padding:0;
}
#zahlen .col-3 {
  padding: 35px;
  border-bottom: 2px solid #fff;
}
.zahlen-head {
  font-size: 40px;
  font-family: "Flyhead", sans-serif;
  font-weight:200;
  line-height: 1.1;
  letter-spacing: 10%;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.desktop-zahlen-br {
  display:none;
}



#karte {
  padding:0;
  border-bottom: 2px solid #fff;
}
#karte .fill {
  display:block;
  width:100%;
  height: 39svh;
  object-fit: cover;
}



#zeitstrahl {
  border-bottom: 2px solid #fff;
  padding-bottom:0;
}
#zeitstrahl .desktop-container {
  display: none;
}
.scroll-content-inner {
  max-width: 100vw;
  overflow-x: scroll;
  padding: 30px 0 100px;
}
.scroll-content-inner {
  scrollbar-width: thin;
  scrollbar-color: #C8D300 #151E47;
}
.scroll-content-inner::-webkit-scrollbar {
  width: 2px;
  height:2px;
}
.scroll-content-inner::-webkit-scrollbar-track {
  background: #151E47;
}
.scroll-content-inner::-webkit-scrollbar-thumb {
  background-color: #C8D300;
  border-radius: 2px;
  border: 0px solid #ffffff;
}
.scroll-content-inner > .container {
  display: flex;
}
.scroll-content-header p {
  margin: 0;
}
.scroll-content-box {
  position: relative;
  flex-basis: 280px;
  flex-shrink:0;
  background-color: #fff;
  color: #151E47;
  padding: 35px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  margin-right: 30px;
}
.scroll-content-box::after {
  content:"";
  display:block;
  position: absolute;
  left:0;
  bottom:0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0px 12px 24px 0px;
  border-color: transparent transparent #151E47 transparent;
}
.scroll-content-box:nth-last-of-type(2) {
  margin-right: 20px;
}

.scroll-content-box-head, .scroll-content-box-content {
  padding: 0 25px;
}
.scroll-content-box-head {
  border-bottom: 1px solid #151E47;
  padding-bottom: 35px;
  font-family: "Flyhead", sans-serif;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 10%; 
  font-size: 40px;
  text-transform: uppercase;
}
.scroll-content-box-content {
  padding-top: 35px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  font-family: "Figtree", sans-serif
}


.scroll-content-btn-c {
  width:100%;
  height: 16px;
  display: flex;
  border-radius: 10px;
  margin-left: auto;
  justify-content: flex-end;
  margin-top: -50px;
  margin-bottom: 20px;
  margin-right: 35px;
  transform: translateY(-25px);
}
.scroll-content-btn-prev,
.scroll-content-btn-next {
  flex-basis: 16px;
  padding: 0px 0px;
  cursor:pointer;
}
.scroll-content-btn-prev { 
  border-style: solid;
  border-width: calc(7px + 0.275vw) calc(10px + 0.275vw) calc(7px + 0.275vw) 0px;
  border-color: transparent #fff transparent transparent;
  transition: border-color ease .3s;
}
.scroll-content-btn-prev:hover {
  border-color: transparent #C8D300 transparent transparent;
}
.scroll-content-btn-next {
  margin: 0 40px;
  width: 0; height: 0;
  border-style: solid;
  border-width: calc(7px + 0.275vw) 0 calc(7px + 0.275vw) calc(10px + 0.275vw);
  border-color: transparent transparent transparent #fff;
  transition: border-color ease .3s;
}
.scroll-content-btn-next:hover {
  border-color: transparent transparent transparent #C8D300;
}





@media screen and (max-height: 500px) {
}

@media screen and (min-width: 600px) {
  .container {
    padding: 0 3vw;
  }
}

@media screen and (min-width: 600px) and (orientation:landscape) {

  header {
    height: calc( 100svh - 200px );
  }
  .header-logo-c {
    width: 84vw;
    left:3vw;
    transform: translate(0, -50%);
    height:auto;
  }
  .header-logo {
    width: 84vw;
    max-width:100%;
  }
  .header-logo-subtitle {
    font-size: 2.8vw;
  }

  #karte .fill {
    height: 42.125vw;
  }


  .big-headline {
    font-size: calc( 25px + 2.8vw );
  }

  #zeitstrahl .desktop-container {
    display: block;
    text-align: center;
    padding: 4.5vw 0;
  }

}

@media screen and (min-width: 700px) {
  nav {
    position: absolute;
    top:3vw;
  }
  nav > .container {
    display:none;
  }
  .nav-minimized nav , .nav-visible nav {
    background-color:transparent;
    border-bottom: 2px solid transparent;
  }

  #nav-c {
    top:0;
    height: 80px !important;
  }

  nav menu ul {
    font-size: calc(12px + 0.75vw);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height:80px;
    padding: 0;
  }
  nav menu ul li {
    margin-left: 40px;
    order:1;
    position: relative;
  }
  nav menu ul li:first-of-type a {
    padding-left: calc(30px + 0.275vw);
  }
  nav menu ul li:first-of-type a::before {
    content:"";
    display:inline-block;
    position: absolute;
    left:0;
    top:50%;
    transform: translateY(-50%);
    margin-right: 15px;
    width: 0; height: 0;
    border-style: solid;
    border-width: calc(6px + 0.275vw) calc(10px + 0.275vw) calc(6px + 0.275vw) 0px;
    border-color: transparent #fff transparent transparent;
    transition: border-color ease 1s;
  }
  nav menu ul li:first-of-type a:hover::before {
    border-color: transparent #C8D300 transparent transparent;
    transition: border-color ease .3s;
  }
  /*
  nav menu ul li:last-of-type {
    order:0;
  }
  nav menu ul li:last-of-type a {
    padding: 13px 22px;
    background-color: #C8D300;
    border: 2px solid transparent;
    color:#151E47;
    transition: border-color ease 1s, background-color ease 1s;
  }
  nav menu ul li:last-of-type a:hover {
    border: 2px solid #fff;
    color: #C8D300;
    background-color:#151E47;
    transition: border-color ease .2s, background-color ease .2s;
  }
  */




  .header-logo-c {
    width: 94vw;
  }
  .header-logo {
    width: 94vw;
  }
  .right-side-btn {
    display:none;
  }

  .header-logo-c {
    top: calc(50% + 40px);
  }

}


@media screen and (min-width: 800px) {
}


@media screen and (min-width: 1000px) {
  .container-flex {
    display:flex;
    justify-content: space-between;
  }

  .col-1 {
    flex-basis: calc(100% / 12 - 20px);
  }
  .col-2 {
    flex-basis: calc(100% / 12 * 2 - 20px);
  }
  .col-3 {
    flex-basis: calc(25% - 20px);
    max-width:calc(25% - 20px);
  }
  .col-4 {
    flex-basis: calc(100% / 12 * 4 - 20px);
  }
  .col-5 {
    flex-basis: calc(100% / 12 * 5 - 20px);
  }
  .col-6 {
    flex-basis: calc(50% - 20px);
  }
  .col-7 {
    flex-basis: calc(100% / 12 * 7 - 20px);
  }
  .col-8 {
    flex-basis: calc(100% / 12 * 8 - 20px);
  }    
  .col-9 {
    flex-basis: calc(100% / 12 * 9 - 20px);
  }
  .col-10 {
    flex-basis: calc(100% / 12 * 10 - 20px);
  }
  .col-11 {
    flex-basis: calc(100% / 12 * 11 - 20px);
  }
  .col-12 {
    flex-basis:100%;
  }  


  body {
    font-size: calc(16px + 0.2vw);
  }
  .content-right p strong {
    font-size: calc(20px + 0.5vw);
  }
  .zahlen-head {
    font-size: calc(15px + 1.5vw);
  }
  .zahlen-body p {
    font-size: calc(10px + 0.8vw);
  }
  .scroll-content-box-head {
    font-size: calc(25px + 1.5vw);
  }
  .scroll-content-box-content {
    font-size: calc(20px + 0.5vw);
  }


  .arrow-right-green {
    width:4vw;
    height:5vw;
  }


  
  
  #intro-content, footer {
    padding: 0;
  }
  .content-left, .content-right {
    padding: 5vw 3vw;
  }
  .content-left {
    padding-left:0;
  }
  .content-right {
    border-left: 2px solid #fff;
    padding-right:0;
  }


  #zahlen {
    border-bottom: 2px solid #fff;
  }
  #zahlen .col-3 {
    border:none;
    padding: 8.5vw 3vw;
  }
  .desktop-zahlen-br {
    display: inline;
  }
}

@media screen and (min-width: 1300px) {
    .scroll-content-inner > .container {
    padding:0;
  }
  .scroll-content-viewport {
    margin:0 auto;
    width: 79vw;
  }
  .scroll-content-box {
    flex-basis: 17.5vw;
    margin-right:3vw;
  }
  .scroll-content-btn-c {
    margin-top: 60px;
    margin-right: 10.5vw;
  }
  .scroll-content-box:nth-last-of-type(2) {
    margin-right:0;
  }
  #zeitstrahl {
    padding-bottom: 4.5vw;
  }
  .scroll-content-inner {
    padding-bottom: 20px;
  }
}

@media screen and (min-width: 1500px) {
}

@media screen and (min-width: 1920px) {
  body {
    font-size: calc(16px + 0.6vw);
  }
  .content-right p strong {
    font-size: calc(20px + 0.8vw);
  }
  .zahlen-head {
    font-size: calc( 25px + 1.5vw );
  }
  .zahlen-body p {
    font-size: calc(20px + 0.8vw);
  }
  
  nav menu ul {
    font-size: calc(20px + 1.1vw);
  }
  .scroll-content-box-head {
    font-size: calc(25px + 2vw);
  }
  .scroll-content-box-content {
    font-size: calc(20px + 1.1vw);
  }
  nav menu ul li {
    margin-left: 3vw;
  }
  .scroll-content-box-head, .scroll-content-box-content {
    padding-top:1.5vw;
    padding-left: 1.5vw;
    padding-right: 0 1.5vw;
  }
}


















/* Cookiebar + Cookiepanel CSS */
#cookiebar-layer {
  display: none;
  opacity: 0;
  transition: opacity ease .4s;
  z-index: 99;
  position: fixed;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background-color: #151e476b;
}
#cookiebar-pop-up {
  position: fixed;
  color: #151E47;
  display: none;
  opacity: 0;
  left: 20px;
  bottom: 20px;
  width: calc(100% - 40px);
  max-height: calc(100vh - 40px);
  overflow: scroll;
  padding: 15px;
  background-color: #ffffff;
  transition: opacity ease .4s;
  z-index: 100;
  border-radius: 0.6vw;
}
.cookiebar-pop-up-c {
  display: flex;
  justify-content: space-between;
  flex-wrap:wrap;
  width: 100%;
}
.cookiebar-pop-up-description {
  margin-bottom: 20px;
}
.cookiebar-pop-up-description p {
}
.cookiebar-pop-up-button-c {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
#cookiebar-pop-up .button {
  margin:0;
}
.cookiebar-pop-up-button {
  cursor: pointer;
}

.cookiebar-pop-up-c .button {
  background-color: #C8D300;
  border: 2px solid transparent;
  color: #151E47;
  padding: 10px 30px;
  transition: border-color ease 1s, background-color ease 1s, color ease 1s;
}

.cookiebar-pop-up-c .button:hover {
  transition: border-color ease .2s, background-color ease .2s, color ease .2s;
  border: 2px solid #fff;
  color: #C8D300;
  background-color: #151E47;
}

#cookiebar-options {
  display: none;
  position: fixed;
  left:20px;
  top: 20px;
  width: calc(100% - 40px);
  max-height: calc(100vh - 40px);
  overflow: scroll;
  opacity: 0;
  transition: opacity ease .4s;
  padding: 15px;
  border-radius: 5px;
  background-color: #f0f2f6;
  border: 1px solid #dedada;
  z-index: 101;
}

.cookiebar-title {
  margin-top: 0;
  padding-right: 40px;
  width: 100%;
  font-weight: bold;
}


.cookiebar-cookiegroup {
  background-color: #ffffff;
  border-radius: 5px;
  padding: 15px 15px;
  margin-bottom: 10px;
  display: flex;
  flex-wrap:wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px 20px;
}
.cookiebar-cookiegroup:last-of-type {
  margin-bottom: 0;
}
.cookiebar-cookie-title, .cookiebar-cookie-description {
  margin: 0;
}

.cookiebar-cookiegroup .cookiebar-cookie-c {
  flex-basis:100%;
}

.cookiebar-cookie-option-btn {
  width: 35px;
  height: 18px;
  border: 1px solid #555;
  border-radius: 20px;
  position: relative;
  margin-top: 4px;
}
.cookiebar-cookie-option-btn.cookiebar-cookie-option-btn-optional {
  cursor: pointer;
  border: 1px solid #000;
}
.cookiebar-cookie-option-btn::before {
  content:"";
  position: absolute;
  left: 2px;
  top: 2px;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 10px;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  transition: all ease .4s;
}
.cookiebar-cookie-option-btn.cookiebar-cookie-option-btn-not-optional::before {
  background-color: #555;
  transform: translateX(17px);
  -webkit-transform: translateX(17px);
}
.cookiebar-cookie-option-btn.cookiebar-cookie-option-btn-optional::before {
  background-color: #a00;
}
.cookiebar-cookie-option-btn.cookiebar-cookie-option-btn-optional.cookiebar-cookie-option-accepted::before {
  transform: translateX(17px);
  -webkit-transform: translateX(17px);
  background-color: #5a5;
}

.cookiebar-options-cls {
  cursor:pointer;
}

.cookiebar-pop-up-headline {
  padding-right: 40px;
}

#cookiebar-options-cls-btn, #cookiebar-pop-up-cls-btn {
  display: block;
  position: fixed;
  top: 35px;
  right: 35px;
  width: 30px;
  height: 30px;
  background-image: url(../img/cls-btn.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
  background-color: #fff;
  border-radius: 50px;
  cursor: pointer;
  overflow:hidden;
}
.accept-cookie {
  cursor:pointer;
}
.cookiebar-finish {
  margin-top: 20px;
}
.cookiebar-finish {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}
.cookiebar-finish .button {
  margin: 0;
}

.cookie-not-yet-allowed-wrapper {
  padding: 30px 50px 30px 30px;
  width: 100%;
}


@media screen and (min-width: 700px) {
  .cookiebar-pop-up-button-c {
    flex-direction: row;
  }
}


@media screen and (min-width: 1100px) {
  #cookiebar-pop-up,
  #cookiebar-options {
    position: fixed;
    left:50%;
    bottom: 20px;
    height: fit-content;
    width:auto;
    overflow: visible;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    padding: 30px;
  }
  #cookiebar-pop-up-cls-btn,
  #cookiebar-options-cls-btn {
    display: block;
    position: fixed;
    background-size: 20px;
    top: -30px;
    right: 0px;
    width: 20px;
    height: 20px;
  }
}

@media screen and (min-width: 1400px) {
  .cookiebar-pop-up-c {
    gap: 20px;
    align-items: center;
    flex-wrap: no-wrap;
  }
  .cookiebar-pop-up-description {
    margin-bottom: 0;
    flex-basis: 50%;
    flex-grow: 1;
  }  
}

@media screen and (min-width: 1920px) {
  body #cookiebar-pop-up p {
    font-size: calc(16px + 0.6vw);
  }
}