* {
  box-sizing: border-box;
}
@font-face {
  font-family: "Linux Biolinum O";
  font-weight: bold;
  src: url("https://plingploing.de/fonts/LinBiolinum_RB.woff") format("woff");
}
@font-face {
  font-family: "Linux Biolinum O";
  font-weight: normal;
  src: url("https://plingploing.de/fonts/LinBiolinum_R.woff") format("woff");
}
body {
  caret-color: transparent;
  margin: 0;
  font-family: "adobe-garamond-pro", "Garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 19px;
}

p,
ul,
form,
.fehlermeldung,
.erfolg {
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  line-height: 1.3em;
  font-size: 17px;
}

.smallfont p {
  font-size: 0.7em;
}

h1,
h2,
h3,
h4 {
  font-family: "Linux Biolinum O";
}

h1 {
  font-size: 63px;
  line-height: 0.8;
}

::selection {
  background: rgb(255, 203, 107);
}
a {
  color: inherit;
  text-decoration: none;
}

p a {
  text-decoration: underline;
}

ul {
  list-style-type: square;
}

#menu {
  display: none;
  opacity: 0;
  height: 100%;
  width: 100%;
  position: fixed;
  background: rgba(255, 255, 255, 0.97);
  z-index: 100;
  transition: 0.3s;
}
#nav {
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  position: relative;
  font-size: 6vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: fit-content;
  left: 50%;
}

.navitem {
  padding: 15px 0;
  transition: 0.4s;
  transition-timing-function: ease-out;
  transform: translateY(20px);
  opacity: 0;
}

/* .navitem::after {
  content: "";
  display: block;
  position: relative;
  bottom: -15px;
  margin-left: auto;
  margin-right: auto;
  width: 40px;
  height: 1px;
  background: #000;
}

.navitem:last-child::after {
  content: none;
} */
.navitem.appearnav {
  transform: none;
  opacity: 1;
}
.navitem.appearnav:nth-child(1) {
  transition-delay: 20ms;
}
.navitem.appearnav:nth-child(2) {
  transition-delay: 60ms;
}
.navitem.appearnav:nth-child(3) {
  transition-delay: 100ms;
}
.navitem.appearnav:nth-child(4) {
  transition-delay: 140ms;
}
.navitem.appearnav:nth-child(5) {
  transition-delay: 180ms;
}
.navitemtext {
  cursor: pointer;
  transition: 0.5s;
  transition-timing-function: ease-in-out;
}
.navitemtext:hover {
  letter-spacing: 2px;
}
#navfooter {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  width: 100%;
  bottom: 30px;
  font-size: 15px;
}
.navfooteritem {
  margin-right: 20px;
  cursor: pointer;
}
.navfooteritem:last-child {
  margin-right: 50px;
}
@media (max-width: 600px) {
  #navfooter {
    display: flex;
    justify-content: space-evenly;
  }
  .navfooteritem {
    margin-right: 0;
  }
  .navfooteritem:last-child {
    margin-right: 0;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  #nav {
    font-size: 7vw;
  }
  /*  #navfooter {
      font-size: 17px;
    }*/
}
@media (min-width: 450px) {
  #nav {
    font-size: 35px;
  }
  #navfooter {
    font-size: 17px;
  }
}

#header {
  position: relative;
  background-color: #fff;
  text-align: center;
  padding: 50px 50px;
  overflow: hidden;
}

@media screen and (orientation: landscape) {
  #header {
    min-height: 100vh;
  }
}

#logo {
  max-width: 240px;
  left: 50%;
  top: 20px;
  position: relative;
  transform: translateX(-50%);
  margin-bottom: 250px;
}
#logo img {
  width: 100%;
}
#menulogo {
  opacity: 0;
  max-width: 240px;
  left: 50%;
  top: 50px;
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 100% 55%, 0 55%);
  transition: 0.4s;
  transition-timing-function: ease-in-out;
  transform: translateY(20px) translateX(-50%);
}
#menulogo img {
  width: 100%;
}
#menulogo.appearnav {
  opacity: 1;
  transform: translateY(0) translateX(-50%);
}

#footerlogo {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 80px;
  margin-bottom: 195px;
}

#footerlogo img {
  max-width: 200px;
}

#topnav {
  display: flex;
  justify-content: space-around;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 16px;
  width: 90%;
  max-width: 1400px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.topnav-flex {
  width: 20%;
  display: flex;
  justify-content: center;
}

.topnavitem {
  cursor: pointer;
  padding-bottom: 5px;
}

.topnavitem:hover {
  border-bottom: 2px solid;
}

@media (max-width: 1300px) {
  #topnav {
    display: none;
  }
}
#headertext,
#impressumheadertext {
  position: relative;
  text-align: left;
  max-width: 400px;
  left: 10%;
}

.spacer {
height: 50px;
}

.wrap {
  position: relative;
}

#headerbackground {
  position: fixed;
  left: 0;
  top: 0px;
  height: 100vh;
  overflow: hidden;
}

#headerbackground img {
  width: 130%;
  position: relative;
  top: 50%;
  transform: translateY(-41%);
}

#headerbackground video {
  height: 100%;
  width: auto;
  position: relative;
  left: -220px;
}

@media (min-width: 1600px) {
  #headerbackground video {
    width: 100%;
    height: auto;
    left: 0;
  }
}

.teasertext {
  text-align: left;
  max-width: 400px;
  position: absolute;
  right: 20%;
}

.teasertext2 {
  text-align: left;
  max-width: 400px;
  position: absolute;
  left: 15%;
}

#tastentext {
  position: absolute;
  top: 50px;
  left: 25%;
  right: 30px;
  text-align: left;
  max-width: 400px;
}

@media (max-width: 1000px) {
  #headerbackground img {
    width: auto;
    height: 120%;
    left: -6%;
    top: 0;
    transform: none;
  }
  #headertext,
  #impressumheadertext {
    left: 0;
  }

  #tastentext {
    left: 30px;
  }
}

@media (max-width: 600px) {
  #headerbackground img {
    height: 259vw;
    left: -32%;
  }
  .teasertext,
  .teasertext2 {
    position: relative;
    right: 0;
    left: 0;
  }
}

.claim::after {
  content: url(https://plingploing.de/images/teasertasten_black.svg);
  display: block;
  margin-top: 18px;
  height: 4px;
  overflow: hidden;
  margin-bottom: -20px;
  line-height: 0;
}

.black .claim::after {
  content: url("https://plingploing.de/images/teasertasten_white.svg");
}

.two .claim::after {
  height: 12px;
}

.three .claim::after {
  height: 20px;
}

.four .claim::after {
  height: 32px;
}

#tasten {
  display: flex;
  position: relative;
}

#impressumhead {
  margin-bottom: 45px;
}

@media (max-width: 380px) {
  #impressumhead {
    font-size: 14vw;
  }
  .claim::after {
    height: 4px;
  }
}

#terminbutton {
  position: fixed;
  bottom: 40px;
  right: 30px;
  background: #ffa583;
  width: 55px;
  height: 55px;
  border-radius: 55px;
  z-index: 99;
}

#menubutton {
  transition: transform 0.7s;
  position: fixed;
  top: 50px;
  right: 50px;
  width: 25px;
  height: 39px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1000;
}
.menubar {
  background: #000;
  height: 3px;
  transition: 0.2s;
  transition-timing-function: transform ease-in, background ease-out;
}
.menubar:nth-child(4) {
  background: transparent;
}
.scroll-down {
  transform: translateX(100px);
}
.scroll-down .menubar {
  transform: translateX(10px);
  transition-timing-function: linear;
}
.scroll-down .menubar:nth-child(1) {
  transition-delay: 200ms;
}
.scroll-down .menubar:nth-child(2) {
  transition-delay: 150ms;
}
.scroll-down .menubar:nth-child(3) {
  transition-delay: 100ms;
}
.scroll-down .menubar:nth-child(5) {
  transition-delay: 50ms;
}
.scroll-down .menubar:nth-child(6) {
  transition-delay: 0ms;
}

#container1 {
  height: 100vh;
  min-height: 1000px;
  text-align: left;
  color: #fff;
  padding: 50px 30px;
  background-image: url(https://plingploing.de/images/innenleben.jpg);
  background-size: cover;
}
#container2 {
  height: 87vh;
  min-height: 500px;
  text-align: left;
  padding: 50px 30px;
  background-image: url(https://plingploing.de/images/ueber_mich.jpg);
  background-size: cover;
  background-position-x: right;
}
#container3 {
  height: 100vh;
  text-align: left;
  color: #fff;
  padding: 50px 30px;
  background-image: url(https://plingploing.de/images/nomenclatur.jpg);
  background-size: cover;
  background-position-x: 28%;
}

@media (max-width: 1000px) {
  #container2 {
    height: 120vh;
    min-height: 1110px;
    background-image: url(https://plingploing.de/images/ueber_mich_mobil.jpg);
    background-position-y: center;
    background-position-x: unset;
  }
  #container3 {
    height: 140vh;
    min-height: 1200px;
    background-image: url(https://plingploing.de/images/nomenclatur_mobil.jpg);
    background-position-y: bottom;
  }
}

#container {
  position: relative;
  overflow-x: clip;
  background: linear-gradient(180deg, #000, #000, #fff, #fff);
  border-bottom: 10px solid #fff;
}

.weiterlesen {
  font-family: "Linux Biolinum O";
  font-weight: normal;
  border: 1px solid;
  max-width: 350px;
  border-radius: 3px;
  padding: 15px;
  text-transform: uppercase;
  margin-top: 60px;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.weitertitel {
  flex-grow: 0;
}

.arrow {
  position: relative;
  width: 36px;
  height: 17px;
  overflow-x: clip;
  margin-left: 15px;
  background-image: url(https://plingploing.de/images/arrow_black.svg);
  background-repeat: no-repeat;
  background-position: right;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
  flex-grow: 0;
}

.black .arrow {
  background-image: url(https://plingploing.de/images/arrow_white.svg);
}

.weiterlesen:hover .arrow {
  flex-grow: 1;
}

#contactform {
  text-align: left;
  padding-top: 50px;
}

#contactform label {
  display: block;
  font-size: 0.9em;
}

#contactform .checkbox label {
  display: initial;
  margin-left: 5px;
}

#contactform .checkbox input {
  width: auto;
  display: initial;
}

#contactform input,
#contactform textarea {
  width: 100%;
  padding: 5px 5px;
  margin: 1px 0px 10px 0px;
}

input,
textarea {
  font-size: inherit;
  font-family: monospace;
  caret-color: initial;
}

button {
  background: #000;
  border: 2px solid;
  border-color: #000;
  color: #fff;
  padding: 5px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 5px;
}

button:hover {
  color: #000;
  background: #fff;
}

.terms {
  display: none;
}

.fehlermeldung {
  color: red;
}

.erfolg {
  color: green;
}

.fehlermeldung,
.erfolg {
  margin-bottom: 20px;
}

@keyframes tasten {
  0% {
    border-radius: 5px;
  }
  10% {
    background: linear-gradient(0deg, #fff, #fff);
    transform: translateY(0px);
  }
  50% {
    background: linear-gradient(0deg, #fff, #bbb);
    transform: translateY(10px);
  }
  95% {
    background: linear-gradient(0deg, #fff, #fff);
    transform: translateY(0px);
  }
  100% {
    border-radius: 5px;
  }
}

.appear {
  caret-color: transparent;
  height: 100%;
  width: 10%;
  min-height: 700px;
  background: #ffffff;
  border-radius: 0px;
  transform: scaleX(1.05);

  /* transition: all 0.8s;
          opacity: 0;
          transform: translateY(50px) translateX(-10px) rotate(2deg);*/
}

.appear.inview {
  animation-name: tasten;
  animation-duration: 0.4s;
  /*
          opacity: 1;
          transform: none;
          */
}
.appear.inview:nth-child(1) {
  animation-delay: 0.1s;
}
.appear.inview:nth-child(2) {
  animation-delay: 0.2s;
}
.appear.inview:nth-child(3) {
  animation-delay: 0.3s;
}
.appear.inview:nth-child(4) {
  animation-delay: 0.4s;
}
.appear.inview:nth-child(5) {
  animation-delay: 0.5s;
}
.appear.inview:nth-child(6) {
  animation-delay: 0.6s;
}
.appear.inview:nth-child(7) {
  animation-delay: 0.7s;
}
.appear.inview:nth-child(8) {
  animation-delay: 0.8s;
}
.appear.inview:nth-child(9) {
  animation-delay: 0.9s;
}
.appear.inview:nth-child(10) {
  animation-delay: 1s;
}

#footer {
  position: relative;
  min-height: 550px;
  padding: 50px 100px;
  background: #fff;
}

#footermenu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footermenuitem {
  padding: 15px 0;
  font-size: 25px;
}

/* .footermenuitem:after {
  content: "";
  display: block;
  position: relative;
  bottom: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 40px;
  height: 1px;
  background: #000;
} */

/* .footermenuitem:last-child::after {
  content: none;
} */

#footerinfo {
  font-size: 15px;
  position: absolute;
  bottom: 50px;
  width: max-content;
}

.footerinfoitem {
  margin-bottom: 10px;
}

#copyright {
  margin-top: 30px;
}

.black {
  background: #000;
  color: #fff;
}
.white {
  background: #fff;
}
.menu-open {
  background: #000;
}

@media (max-width: 800px) {
  #footermenu {
    align-items: center;
  }
  .footermenuitem:after {
    margin-left: auto;
  }
}

@media (max-width: 500px) {
  #header {
    padding: 50px 30px;
  }
  #logo {
    max-width: 200px;
  }
  #menubutton {
    right: 30px;
    top: 30px;
  }
  #footer {
    padding: 50px 30px;
  }
}

#ueber_mich_wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-evenly;
}

#ueber_mich_foto {
  max-width: 650px;
}
