
html, body {
  background: #252120;
  /* font-family: 'Source Code Pro', monospace; */
  font-family: 'Roboto', sans-serif;
  font-size: 1vw;
  color: #fff;
}

a, a:hover {
  color: #fff;
}

.next a, .previous a {
  position: absolute;
  left: 50%;
  width: 4%;
  height: 4%;
  z-index: 1;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  font : normal 400 20px/1 'Josefin Sans', sans-serif;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .3s;
  padding-top: 1.5em;
}

.next a {
  bottom: 2%;
}

.previous a {
  top: 2%;
}

.next a:hover, .previous a:hover {
  opacity: .5;
}

.next a span, .previous a span {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-animation: sdb04 2s infinite;
  animation: sdb04 2s infinite;
  animation-delay: 10s;
  box-sizing: border-box;
  opacity: 0;
}

.next a span {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0;
}

.previous a span {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 50%;
}

.top {
  position: absolute;
  top: 2%;
  left: 2%;
}

.bottom {
  position: absolute;
  bottom: 2%;
  left: 2%;
}

.stripes {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 0;
  padding: 0 10%;
}

.stripes-flex {
  display: flex;
  height: 100vh;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: -.5rem;
}

.stripe {
    background-color: #1a1a1a;
    height: 100%;
    width: 1px;
}

h3.section_title {
  font-size: 2vw;
  font-weight: 300;
  color: #91C7A9;
  /* margin: 5% 0; */
  opacity: 0.5;
}

h3.section_title::before {
  content: "<";
}

h3.section_title::after {
  content: ">";
}

.background-text {
  position: absolute;
  bottom: 5%;
  left: 1%;
  font-size: 20em;
  font-weight: bold;
  opacity: .015;
  white-space: nowrap;
}

h2.content_head {
  font-size: 1.8vw;
  font-weight: bold;
  text-transform: uppercase;
}

/* cookie message */
.cc-window.cc-floating {
  font-size: 0.8em;
}

#first, #second, #third {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

@-webkit-keyframes sdb04 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
}

@keyframes sdb04 {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
}

/* section 1 */

#first .container {
  padding: 0;
  margin: 0;
}

#first .chart {
  width: 80vw;
  margin: 5% auto;
}

#first .text {
  position: absolute;
  bottom: 14%;
  left: 10%;
  color: #fff;
}

#first h1, #first h2 {
  overflow: hidden;
  white-space: nowrap;
  width: 0;
}

#first h1 {
  font-size: 6vw;
  font-weight: normal;
  animation:
    typing 2s steps(30, end),
    blink-caret .5s step-end infinite;
    animation-delay: 5.5s;
    animation-fill-mode: forwards;
}

#first h2 {
  font-size: 3.8vw;
  font-weight: lighter;
  animation:
    typing 2s steps(30, end),
    blink-caret .5s step-end infinite;
    animation-delay: 8.5s;
    animation-fill-mode: forwards;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* section 2 */

#second {
  padding-top: 10%
}

#second .content_box_1 {
  border-top: 2px solid #91C7A9;
  padding-top: 6%;
  margin-bottom: 15%;
  font-weight: 100;
  font-size: 1.2vw;
}

#second .content_box_1 span {
  color: #E5DFC5;
  font-weight: bold;
}

#second .content_box_2 {
  font-weight: 100;
}

#second .content_box_2 span {
  color: #E5DFC5;
}

#second .content_box_2 h3 {
  font-size: 1.25vw;
  font-weight: 100;
}

#second .content_box_2 h3, #second .content_box_2 p {
  z-index: 2;
  position: relative;
}

/* section 3 */

#third {
  padding-top: 10%
}

.contact {
  font-weight: 100;
}

.contact h4 {
  text-transform: uppercase;
  font-weight: 100;
  font-size: 1.2em;
}

.contact .content_box_1, .contact .content_box_2, .contact .content_box_3 {
  background-color: #323232;
  padding: 2%;
}

.contact .content_box_1 {
  height: 100%;
  border-top: 2px solid #91C7A9;
}

.contact .content_box_2 {
  height: 30%;
  margin-bottom: 1%;
}

.contact .content_box_3 {
  height: 69%;
}

.contact form {
  margin: 4% 0;
}

.form-control {
  font-size: 1em;
  border: none;
  border-bottom: 1px solid #495057;
  border-radius: 0;
  background-color: #323232;
}

.form-control:focus {
  color: #495057;
  background-color: inherit;
  border-color: #495057;
  border-bottom: 1px solid #f8f9fa;
  outline: 0;
  box-shadow: none;
}

.honey {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

.btn-outline-light {
  border: 1px solid #495057;
  color: #495057;
}

.btn-outline-light:hover {
  color: inherit;
  background-color: inherit;
  border-color: #f8f9fa;
  box-shadow: none;
}

.invalid-feedback {
    margin-top: .25rem;
    font-size: 50%;
}

.contact .content_box_2 i {
  position: relative;
  top: 4px;
}

.contact .content_box_3 ul {
  list-style: none;
  padding: 3% 4% 0;
}

.contact .content_box_3 li::before {
  content: "\2022";
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-weight: bold;
}

.contact .content_box_3 li.red::before {
  color: #FF0000;
}

.contact .content_box_3 li.green::before {
  color: #91C7A9;
}

footer, footer a {
  position: relative;
  font-size: 0.9em;
  font-weight: 100;
  text-align: center;
  color: #fff;
  margin: 2px 0;
}

/* static page */

.static {
  background-color: #E9E9E9;
  background-image: radial-gradient(circle, #39323e, #262029);
  height: 100vh;
  width: 100%;
  color: #fff;
  font-family: 'Raleway', sans-serif;
}

.static .content {
  width: 100%;
  position: absolute;
  top: 40%;
  left: 0;
  text-align: center;
}

.static .content h1 {
  font-weight: 300;
  font-size: 4vw;
}

.static .content p {
    font-weight: 100;
}

/* imprint*/
.imprint {
  background-color: #E9E9E9;
  background-image: radial-gradient(circle, #39323e, #262029);
  height: 100vh;
  width: 100%;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
}

.imprint .content {
  width: 100%;
  position: absolute;
  top: 10%;
  left: 0;
  text-align: center;
}

.imprint .content h1, .imprint .content h2 {
  font-weight: bold;
}

.imprint .content h1 {
  font-size: 4vw;
}

.imprint .content h2 {
  font-size: 3.5vw;
}

.imprint .content p {
    font-weight: 100;
    padding: 0 10%;
}


/* media queries 1 */

@media only screen and (max-width : 820px) {

  html, body {
    font-size: 1em;
  }

  .next a span, .previous a span {
    animation-delay: 7.5s;
  }

  h3.section_title {
    font-size: 1.2em;
  }

  h2.content_head {
    font-size: 1.4em;
    margin-top: 2%
  }

  .top {
    top: 1%;
  }

  .background-text {
    bottom: -10%;
  }

  #first .chart {
    display: none;
  }

  #first .text {
    bottom: 34%;
  }

  #first h1 {
    font-size: 2.4em;
    animation:
      typing 2s steps(30, end),
      blink-caret .5s step-end infinite;
      animation-delay: 3s;
      animation-fill-mode: forwards;
  }

  #first h2 {
    font-size: 1em;
    animation:
      typing 1.5s steps(30, end),
      blink-caret .5s step-end infinite;
      animation-delay: 5s;
      animation-fill-mode: forwards;
  }

  #second .content_box_1 {
    font-size: 0.9em;
    margin-bottom: 4%;
  }

  #second .content_box_2 {
    padding: 0 6%;
    font-size: 0.7em;
  }

  #second .content_box_2 h3 {
    font-size: 1.25em;
  }

  .contact .content_box_1, .contact .content_box_2, .contact .content_box_3 {
    background-color: transparent;
    font-size: 0.8em;
  }

  .contact .content_box_1 {
    padding-top: 3%;
  }

  .contact h4 {
    font-size: 1.1em;
  }

  .contact .content_box_3 {
    display: none;
  }

  .imprint .content {
    font-size: 0.7em;
  }

}

@media only screen
and (min-width : 320px)
and (max-width : 820px)
and (orientation: landscape){
  #first .text {
    bottom: 22%;
  }

  #second {
    padding: 4% 0 6% 0;
  }

  #third {
    padding: 5% 0;
  }
}

/* IPAD */

@media only screen
and (min-width : 768px)
and (max-width : 1024px)
and (orientation: portrait) {
  #first .chart {
    display: block;
    position: absolute;
    top: 30%;
    left: 10%;
  }

  #first .text {
    bottom: 14%;
  }


}


@media screen and (min-width: 1200px) {
  #first h1 {
     font-size: 5em;
  }
  #first h2 {
     font-size: 1.9em;
  }
}
