* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 180%;
}

:root {
  --blue1: #25748C;
  --blue2: #113B44;
  --red: #D96B4D;
  --green: #5B8D30;
  --purple: #8D324D;
  --berry: #7E348B;
  --orange: #F7A941;

}

body,
html {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

main {

  display: flex;
  flex-flow: column nowrap;

  align-items: center;
  justify-content: center;
}

section {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

#section1 {
  position: relative;
}

#section1a,
#section7a {
  background-color: var(--blue1);
}

article {
  width: 80vw;
  height: auto;
  margin: 0 auto;
}

img,
picture {
  display: block;
  width: 40vh;
  max-width: 60vw;
  height: auto;
  margin: 0 auto;
}

img.logo {
  width: 50px;
  height: auto;
  margin-bottom: 0;
  position: fixed;
  top: 25px;
  left: 5vw;
  text-align: center;
}

h1 {
  font-family: agenda, sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 10vh;
  text-align: center;
  margin-bottom: 5vh;
  display: none;
}

h2 {
  font-family: agenda, sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 3vh;
  line-height: 180%;
  text-align: center;
  margin: 2vh 0 1vh 0;
}

h3 {
  font-family: agenda, sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 3vh;
  text-align: center;
  margin: 0 0 3vh 0;
}

p {
  font-family: zeitung, sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 2vh;
  margin: 0 0 1rem 0;
}

.infotext {
  font-size: 2vh;
  margin: 5vh 0 0 0;
}

.menu-items {
  font-size: 5vh;
  margin-top: 2vh;
}

.white {
  color: white;
}


.amlogo {
  width: 70vw;
  max-width: 300px;
  height: auto;
  margin: 2vh 0;
}


.logokunde {
  width: 30vh;
  height: auto;
  margin: 0.5vh auto;
}


/* Formular */

#kontakt {
  width: 80vw;
  max-width: 350px;
}

form {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}


textarea {
  width: 100% !important;
}

.form-label {
  display: block;
  width: 100%;
  font-family: zeitung, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
  color: black;
  text-align: left;
  padding-bottom: 0.5rem;
}

.form-label-check {
  font-family: zeitung, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.8rem;
  color: black;
  text-align: left;
  border-radius: 5px;
  display: block;
  width: 100%;
}

.form-input-check {
  text-align: left;
  padding: 0.2rem 0.5rem;
}

.form-input {
  box-sizing: border-box;
  width: 100%;
  font-family: zeitung, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  margin-bottom: 1rem;
  padding: 0.2rem 0.5rem;
  background-color: bisque;
  color: black;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-bottom-width: 2px;
  border-bottom-color: black;
  transition: background-color 0.7s;
}


.form-input:focus {
  background-color: var(--orange);
  border-bottom-color: var(--red);
  outline: none !important;
}

.hinweis-text {
  font-family: zeitung, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 0.8rem;
  display: block;
  width: 100%;
}


/* ----- Button Senden in Grün ----- */
.btn-senden:hover,
.btn-senden:focus {
  background-color: var(--green);
  color: #f0f0e5;
}

.btn-senden {
  display: block;
  font-family: zeitung, sans-serif;
  font-style: normal;
  font-weight: 600;
  width: 50%;
  margin: 0 auto;
  padding: 0.5rem;
  min-width: 120px;
  border: 0px;
  color: var(--green);
  background-color: bisque;
  border-radius: 5px;
  transition: background-color 0.5s;
}

#wir p {
  font-size: 1.8vh;
  margin-bottom: 0.5vh;
  line-height: 160%;
}

/* Footer Bereich */

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 20px 0;
  width: 100%;
}

footer ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

footer ul li {
  margin: 0 2vh;
}

footer ul li a {
  font-family: zeitung, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1.7vh;
  text-decoration: none;
  color: var(--blue2);
  padding: 0.5vh 1vh;
  border-radius: 30px;
  background-color: white;
  box-shadow: 10px 10px 30px #e2e2e2, -10px -10px 30px #f0f0f0;
}

footer ul li a:hover,
footer ul li a:focus {
  box-shadow: 10px 10px 30px #f0f0f0, -10px -10px 30px #e2e2e2;
  color: var(--orange);

}

.red {
  color: var(--purple) !important;
}

/* Hamburger Menü Transition https://codepen.io/ainalem/pen/LJYRxz Mikael Ainalem*/

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hamRotate.active {
  transform: rotate(45deg);
}

.hamRotate180.active {
  transform: rotate(180deg);
}

.line {
  fill: none;
  transition: stroke-dasharray 1s, stroke-dashoffset 1s;
  stroke: white;
  stroke-width: 5.5;
  stroke-linecap: round;
}

.ham6 .top {
  stroke-dasharray: 40 172;
}

.ham6 .middle {
  stroke-dasharray: 40 111;
}

.ham6 .bottom {
  stroke-dasharray: 40 172;
}

.ham6.fs .top {
  stroke-dashoffset: -132px;
}

.ham6.fs .middle {
  stroke-dashoffset: -71px;
}

.ham6.fs .bottom {
  stroke-dashoffset: -132px;
}

/* Scrollpunkt  */

#fv-dots ul li a span {
  background-color: black;
  border-radius: 0;
  transition: all 0.5s ease;
}

#fv-dots ul a.active span {
  width: 11px;
  height: 11px;
  transform: rotate(45deg);
  background-color: black;
}

/* Lift Off Animation */

.liftoff {
  width: 24px;
  height: 24px;
}

.chevron {
 
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: var(--berry);
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;

  }

  33% {
    opacity: 1;
    transform: translateY(30px);
  }

  67% {
    opacity: 1;
    transform: translateY(40px);
  }

  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

.text {
  display: block;
  margin-top: 50px;
  margin-left: -10px;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 1.5vh;
  color: var(--berry);
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .25;
  animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}

/* 
section:not(.active) {
  display:none;
} */



/* https://codepen.io/bldng/pen/dyjOMW */

/* body {
  margin: 0;
  -webkit-perspective: 1000;
  background: url(https://f.cl.ly/items/3Q031Q1m1s1d3C0I023k/geometry2.png);
  font-family: Avenir Next, sans-serif;
} */



.menu,
.menu-burger,
.menu-bg {
  position: fixed;
  width: 50px;
  height: 50px;
  font-size: 30px;
  text-align: center;
  border-radius: 100%;
  right: 20vw;
  top: 25px;
}

.menu-bg {
  background: radial-gradient(circle, rgba(37, 116, 140, 1) 0%, rgba(17, 59, 68, 1) 75%);
  pointer-events: none;
  transition: 0.3s;
  top: 50px;
  transform: translate3d(50%, -50%, 0);
  transform-origin: center center;
  z-index: 1
}

.menu-bg.fs {
  transform: translate3d(50%, -50%, 0);
  width: 300vw;
  height: 300vw;
}

.menu-burger {
  width: 50px;
  height: 50px;
  color: white;
  padding-top: 2px;
  -webkit-user-select: none; 
  cursor: pointer;
  transition: 0.4s;
  transform-origin: center;
 /* box-shadow: 10px 10px 30px rgb(118, 118, 118), -10px -10px 30px #cecece;*/
  z-index: 999;
  margin-right: -25px;
}

.menu-burger.fs {
  transform: rotate(-180deg) translateY(10px);
}

.menu-items {
  position: absolute;
  display: block;
  font-family: zeitung, sans-serif;
  font-weight: 400;
  font-weight: bold;
  font-size: 3vh;
  letter-spacing: 0.4em;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(-200%);
  pointer-events: none;
  list-style: none;
  z-index: 2;
}

.menu-items li {
  transition: 1s;
  opacity: 0;
  margin-top: 0px;
}

.menu-items.fs {
  transform: translateY(0);
  pointer-events: auto;
  opacity: 1;
}

.menu-items.fs li {
  opacity: 1;
  margin-top: 1.5vh;
}


.nav-items {
  list-style: none;
}

.menu-items li a {
  text-decoration: none;
  color: white;
}

.menu-items li a:hover,
.menu-items li a:focus {
  text-decoration: none;
  color: var(--orange);
}



/*!
 * https://github.com/seeratawan01/fullview.js
 *
 * @license GPLv3 for open source use only
 *
 * Copyright (C) 2020 https://github.com/seeratawan01/fullview.js/blob/master/LICENSE
 */

 * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-y: hidden;
  height: 100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  overflow: hidden;
  height: 100%;
}

#fullview>* {
  height: 100vh !important;
  /* width: 100vw !important; */
  /* transform: translateZ(0) rotateZ(360deg); */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  perspective: 1000;
  overflow: hidden;
}

#fv-dots {
  position: fixed;
  top: 50%;
  right: 3vw;
  transform: translate(-50%, -50%);
}

#fv-dots ul {
  display: block;
  list-style: none;
}

#fv-dots ul li {
  padding: 10px;
}

#fv-dots ul li a {
  display: block;
  margin: auto;
  width: 10px;
  height: 10px;
  text-align: center;
}

#fv-dots ul li a span {
  display: block;
  z-index: 1;
  cursor: pointer;
  text-decoration: none;
  background-color: #888888;
  border-radius: 50%;
  margin: 0 auto;
  width: 7px;
  height: 7px;
  transition: 0.1s ease all;
}


#fv-dots ul a.active span {
  width: 9px;
  height: 9px;
  background-color: #bdbdbd;
}

#fv-dots ul a:hover span {
  width: 9px;
  height: 9px;
}

/* Tooltip container */
.fv-tooltip {
  position: relative;
  transition: all .65s cubic-bezier(.84, -0.18, .31, 1.26);
}

/* Tooltip text */
.fv-tooltip .fv-tooltiptext {
  visibility: hidden;
  width: 120px;
  background: #3E474F;
  border-radius: .25em;
  color: #EDEFF0;
  text-align: center;
  padding: 5px 0;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;

  top: -1px;
  right: 105%;
}

/* Show the tooltip text when you mouse over the tooltip container */
.fv-tooltip:hover .fv-tooltiptext {
  visibility: visible;
}

.fv-tooltip .fv-tooltiptext::after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 100%;
  /* To the right of the tooltip */
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #3E474F;
}

.fv-tooltip.fv-tooltip-left .fv-tooltiptext::after {
  left: unset;
  right: 100%;
  border-color: transparent #3E474F transparent transparent;
}

/* ===========================================================================================
  
                                  Tablet

  ===========================================================================================*/

  @media only screen and (min-width:475px) {

    h2 {
      font-size: 5vh;
    }
  
    h3 {
      font-size: 5vh;
      margin: 0 3vh 0;
    }
  
    p {
      font-size: 3vh;
    }
  
    .infotext {
      font-size: 3vh;
    }
  
    #wir {
      width: 30vw;
    }
  
    #wir p {
      font-size: 2vh;
      margin-bottom: 0.5vh;
      line-height: 160%;
    }
  
    .menu-items {
      font-size: 3vh;
      margin-top: 2vh;
    }
  
    article {
      width: 50vw;
      max-width: 500px;
    }
  
    img,
    picture {
      max-width: 30vw;
    }
  
    .amlogo {
      width: 20vh;
      max-width: 300px;
    }

    .menu,
    .menu-burger,
    .menu-bg {
      right: 10vw;
    }

    img.logo {
      left: 5vw;
    }

    #fv-dots {
      right: 3vw;
    }

  }
  
  
  /* ===========================================================================================
    
                                    Desktop
  
    ===========================================================================================*/
  @media only screen and (min-width:980px) {
    article {
      width: 20vw;
      max-width: 500px;
    }
  
    h2 {
      font-size: 3vh;
    }
  
    h3 {
      font-size: 3vh;
      margin: 0 0 3vh 0;
    }
  
    p {
      font-size: 2vh;
    }
  
    .infotext {
      font-size: 2vh;
    }
  
    #wir {
      width: 30vw;
    }
  
    #wir>p {
      font-size: 2vh;
      margin-bottom: 1vh;
    }
  
    .menu-items {
      font-size: 3vh;
      margin-top: 3vh;
    }

    .menu,
    .menu-burger,
    .menu-bg {
      right: 35vw;
    }

    img.logo {
      left: 35vw;
      
    }

    #fv-dots {
      right: 31vw;
    }
  }

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

    article {
      margin-top: -100px;
    }
    }
  
  @media only screen and (max-height:600px) {

      .smallScreenNoView {
        display: none;
      }
    }