/*
  Theme Name: Neuland Campus
  Author: Rainer Falkenroth
  Version: 1.1
*/
@import url('fonts/fonts.css');
:root {
  --black: #000;
  --dark: #285f52;
  --grey: #a3c4bf;
  --green: #84ac84;
  --mint: #c0edce;
  --neon: #00f000;
  --radius: 2em;
}
#vision,
#akademie,
#ki,
#kontakt,
#kontakt input,
#kontakt textarea,
#kontakt input::placeholder,
#kontakt textarea::placeholder,
#newsletter,
#newsletter input,
#newsletter input::placeholder,
.intro {
  color: var(--black);
}
.fixed:not(#kontakt):not(#newsletter) .title strong {
  color: var(--neon);
}
html,
body {
  color: var(--neon);
  background-color: var(--black);
  padding: 0;
  margin: 0;
  font-family: "Aeonik", sans-serif;
  font-weight: 400;
  font-size: 100%;
  line-height: 1.2;
  width: 100%;
  font-feature-settings: "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
*:focus {
  outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
figure,
figcaption,
ol,
ul,
li,
dl,
dt,
dd,
table,
caption,
thead,
tbody,
tfoot,
tr,
th,
td,
fieldset,
form,
label,
legend,
article,
aside,
footer,
header,
nav,
section,
main {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
body {
  font-size: clamp(1rem, 1.448vw, 1.7rem);
  line-height: 1.2;
}
ol,
ul:not(.has-medium-font-size) {
  list-style: none;
}
ul.has-medium-font-size {
  margin-left: 1.2em;
}
a {
  text-decoration: none;
  color: inherit;
}
.foot {
  display: grid;
  grid-template-columns: 36% 21% 21% 11% 11%;
  grid-template-rows: 1fr;
  padding: 0 1.2em 0 0;
}
/*Changed z-index*/
.foot .instagram,
.foot .linkedin {
  position: relative;
  display: inline-block;
  width: 3em;
  height: 3em;
  overflow: hidden;
  text-indent: 999em;
  background: url('svg/insta.svg') 0 0 no-repeat;
  background-size: contain;
}
.foot a[href^="mailto:"]:hover,
.foot .menu a:hover,
.text a:hover {
  text-decoration: underline;
}
.foot a.instagram::before,
.foot a.linkedin::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: var(--neon) url('svg/insta-b.svg') 0 0 no-repeat;
  background-size: contain;
  clip-path: circle(40% at 50%);
  transition: opacity 0.5s;
}
.foot a.instagram:hover::before,
.foot a.linkedin:hover::before {
  opacity: 1;
}
.foot a[href^="mailto:"] {
  display: inline-block;
  margin-right: 1em;
}
.foot .linkedin {
  background: url('svg/linkedin.svg') 0 0 no-repeat;
  background-size: contain;
}
.foot a.linkedin::before {
  background: var(--neon) url('svg/linkedin-b.svg') 0 0 no-repeat;
  background-size: contain;
}
.foot .grid {
  font-size: 0.8em;
  padding-left: 0.5em;
  margin-left: -0.5em;
  padding-top: 2em;
  z-index: 8;
}
.foot .grid:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
  padding-top: 0;
}
.foot .grid:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}
.foot .grid:nth-child(3) {
  grid-area: 1 / 3 / 2 / 4;
}
.foot .grid:nth-child(4) {
  grid-area: 1 / 4 / 2 / 5;
}
.foot .grid:nth-child(5) {
  grid-area: 1 / 5 / 2 / 6;
  text-align: right;
}
.qcbtn {
  position: fixed;
  z-index: 7;
  bottom: 1.2em;
  right: 1.2em;
  width: 2.8em;
  height: 2.8em;
  background: url('svg/qcbtn.svg') 50% 50% no-repeat;
  background-size: contain;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1.4);
}
.qcbtn:hover {
  transform: scale(1.2);
}
.qc .qcbtn {
  opacity: 0;
  pointer-events: none;
}
.quickcontact {
  position: fixed;
  z-index: 9;
  bottom: 1.2em;
  right: 1.2em;
  width: 33%;
  padding: 1.2em;
  background: var(--black);
  border-radius: var(--radius);
  opacity: 0;
  transform: scale(0.5);
  transform-origin: bottom right;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.quickcontact .qcclose {
  position: absolute;
  z-index: 3;
  top: 1.2em;
  right: 1.2em;
  width: 1.2em;
  height: 1.2em;
  background: url('svg/plus.svg') 50% 50% no-repeat;
  background-size: contain;
  cursor: pointer;
  transform: rotate(45deg);
}
.quickcontact strong {
  display: inline-block;
  margin-bottom: 0.6em;
}
.quickcontact a,
.quickcontact .desktop {
  display: inline-block;
  position: relative;
  padding: 0.6em 1em 0.6em 2.6em;
  transition: all 0.5s;
  background-color: var(--neon);
  border-radius: var(--radius);
  margin: 0.8em 0 0 0;
  color: var(--black);
}
.quickcontact .desktop {
  width: 12em;
  transition: all 0.5s;
}
.quickcontact a::before,
.quickcontact .desktop::before,
.quickcontact a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.4em;
  left: 0.6em;
  width: 1.6em;
  height: 1.6em;
  background: url('svg/termin.svg') 0 0 no-repeat;
  background-size: contain;
  opacity: 1;
  transition: opacity 0.5s;
}
.quickcontact .desktop:hover {
  width: 12.9em;
  background-color: transparent;
  color: transparent;
}
.quickcontact .desktop a {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  max-width: 3em;
  overflow: hidden;
  opacity: 0;
  transition: all 0.8s;
}
.quickcontact .desktop:hover a {
  max-width: 8em;
  opacity: 1;
}
.quickcontact .desktop a + a {
  left: unset;
  right: 0;
}
.quickcontact .desktop:hover a + a {
  right: 0;
}
.quickcontact a::after {
  background: url('svg/termin-b.svg') 0 0 no-repeat;
  background-size: contain;
  opacity: 0;
}
.quickcontact a.comm::before {
  background: url('svg/community.svg') 0 0 no-repeat;
  background-size: contain;
}
.quickcontact a.comm::after {
  background: url('svg/community-b.svg') 0 0 no-repeat;
  background-size: contain;
}
.quickcontact a.app::before,
.quickcontact .desktop::before {
  background: url('svg/app.svg') 0 0 no-repeat;
  background-size: contain;
}
.quickcontact a.app::after {
  background: url('svg/app-b.svg') 0 0 no-repeat;
  background-size: contain;
}
.quickcontact a.news::before {
  background: url('svg/newsletter.svg') 0 0 no-repeat;
  background-size: contain;
}
.quickcontact a.news::after {
  background: url('svg/newsletter-b.svg') 0 0 no-repeat;
  background-size: contain;
}
.quickcontact a:hover::after,
.qc .quickcontact {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}
.quickcontact a:hover::before {
  opacity: 0;
}
h2:not(.title),
.title strong,
.text h1 {
  font-size: 5.6em;
  line-height: 0.85;
}
h2:not(.title) {
  letter-spacing: -0.015em;
}
.title {
  font-size: 1em;
  line-height: 1;
  position: absolute;
  top: 1.2em;
  left: 1.2em;
  display: inline-block;
  cursor: pointer;
  z-index: 3;
  transition: all 0.5s ease-in-out;
}
.title strong {
  position: relative;
  display: inline-block;
  letter-spacing: -0.03em;
  padding-left: 0.75em;
  transition: all 0.5s ease-in-out;
}
.title::before {
  content: "";
  display: block;
  position: absolute;
  top: 1.2em;
  left: 1.2em;
  width: 2em;
  height: 2em;
  background-color: var(--black);
  border-radius: var(--radius);
  opacity: 0;
  transition:
    opacity 0.5s,
    width 0.8s;
  z-index: -1;
}
.title::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100vw - 8em);
  height: 4em;
}
.title:hover::before,
.active:not(#kontakt) .title::before {
  opacity: 1;
}
.fixed:not(#kontakt):not(#newsletter) .title {
  position: fixed;
  width: auto;
}
.fixed:not(#kontakt):not(#newsletter) .title strong {
  font-size: 1.2em;
  line-height: 1.2;
  padding: 0 0.5em;
  margin: 1.2em -0.8em 0 1.2em;
}
.fixed#ki:not(#kontakt):not(#newsletter) .title strong {
  padding: 0 2em !important;
  color: var(--grey);
}
.fixed#akademie:not(#kontakt):not(#newsletter) .title strong {
  color: var(--mint);
}
.fixed:not(#kontakt):not(#newsletter) .title::before {
  opacity: 1;
  width: 100%;
}
.title + div {
  display: flex;
  margin-top: 8em;
  transition: margin-top 1s ease-in-out;
}
.fixed:not(#kontakt):not(#newsletter) .title + div {
  margin-top: 0;
}
.wp-block-separator {
  border-top: 2px solid var(--black);
}
h3,
.zukunft h2 {
  font-size: 4em;
  line-height: 0.95;
  letter-spacing: -0.015em;
}
h3 + h3 {
  margin-top: 1em;
}
p.has-medium-font-size,
ul.has-medium-font-size,
.info p,
.alles p,
.quicknav li,
.quickcontact strong,
.text h2,
.nexudus a {
  font-size: 2em;
  line-height: 1;
}
p.has-small-font-size,
.person figcaption,
input,
textarea,
label,
.text h3,
form .response,
.wpcf7 form .wpcf7-response-output {
  font-family: "Aeonik", sans-serif;
  font-size: 1.2em;
  line-height: 1;
}
b,
strong,
.text h3 {
  font-weight: 700;
}
.quickcontact strong,
.title strong {
  font-weight: 400;
}
.intro span.logo {
  width: 48vw;
  height: 39vw;
  position: absolute;
  bottom: 2.4em;
  left: 1.2em;
  background: url('svg/Neuland-Campus-Logo1.svg') 0 0 no-repeat;
  background-size: contain;
  text-indent: -999em;
  z-index: 2;
}
.intro h1.logo {
  width: 29vw;
  height: 10.5vw;
  position: absolute;
  top: 0em;
  left: 0em;
  background: url('svg/Neuland-Campus-LogoB.svg') 0 0 no-repeat;
  background-size: contain;
  overflow: hidden;
  text-indent: -999em;
  z-index: 2;
}
.foot .logo,
body > .logo {
  width: 28vw;
  height: 10vw;
  max-width: 100%;
  display: block;
  background: url('svg/Neuland-Campus-Logo.svg') 0 0 no-repeat;
  background-size: contain;
  text-indent: -999em;
  z-index: 2;
}
body > .logo {
  position: absolute;
  top: 0;
  right: 0;
}
.quicknav {
  display: none;
  position: absolute;
  top: 1.2em;
  left: 1.2em;
}
.quicknav li {
  cursor: pointer;
  margin-bottom: 0.3em;
}
.intro {
  position: relative;
  overflow: hidden;
}
#vision,
#akademie,
#ki,
#kontakt,
#newsletter,
.slideshow,
.vektor {
  position: relative;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  overflow: hidden;
}
#vision,
#akademie,
#ki,
#kontakt,
#newsletter {
  margin-top: -1.8em;
  overflow: hidden;
  max-height: 9.4em;
  transition:
    max-height 1.5s ease-in-out,
    padding 0.5s;
}
#newsletter {
  max-height: 7.4em;
  background-color: var(--neon);
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  z-index: 6;
}
#kontakt.active,
#newsletter.active {
  max-height: fit-content;
  padding-bottom: 2em;
}
.intro {
  height: 64.7vw;
  max-height: calc(100vh + 2em);
}
video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.nexudus {
  padding: 5.6em;
  text-align: center;
}
.nexudus h3 {
  display: block;
  margin-bottom: 1em;
}
.nexudus .event {
  text-align: left;
  display: flex;
  flex-direction: row;
  border-bottom: 2px solid var(--neon);
  padding: 1em 0;
}
.nexudus .event:first-child {
  border-top: 2px solid var(--neon);
}
.nexudus .event .date {
  width: 25%;
}
.nexudus .event .name {
  width: 50%;
}
.nexudus .button,
#ki .button {
  cursor: pointer;
  display: inline-block;
  font-size: 1.5em;
  line-height: 1em;
  padding: 0.5em 1.5em;
  border-radius: var(--radius);
  border: 2px solid var(--neon);
  margin-top: 1em;
  transition:
    color 0.5s,
    background-color 0.5s;
}
#ki .button {
  border-color: var(--black);
  background-color: transparent;
  color: var(--black);
  margin-top: 0;
  margin-bottom: 3em;
  width: 16em;
}
#ki .button:hover {
  background-color: var(--black);
  color: var(--grey);
}
.nexudus .button:hover {
  background-color: var(--neon);
  color: var(--black);
}
.nexudus .event .button {
  margin-left: auto;
  margin-top: 0;
  height: 2.1em;
  background-color: var(--neon);
  color: var(--black);
}
.nexudus .event .button:hover {
  background-color: transparent;
  color: var(--neon);
}
#vision {
  background-color: var(--neon);
  z-index: 3;
}
#akademie {
  background-color: var(--mint);
  z-index: 4;
}
#ki {
  background-color: var(--grey);
  z-index: 4;
}
#ki.active.fixed {
  background: var(--grey) url('svg/Neuland-Campus_BG_KI.svg') 50% 59% no-repeat;
  background-size: contain;
}
#kontakt {
  background-color: var(--green);
  z-index: 5;
}
#vision p.go,
#vision h3.go {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
#vision p.letgo,
#vision h3.letgo {
  opacity: 1;
}
.person {
  position: relative;
  margin: 0 5.6em;
  overflow: hidden;
  border-radius: var(--radius);
  background-size: cover;
}
.person figcaption {
  position: absolute;
  top: 1em;
  left: 1.2em;
  width: 100%;
  height: 100%;
  color: var(--mint);
}
#kontakt .person figcaption {
  color: var(--green);
}
.person img {
  transition: opacity 0.8s;
}
.person:hover img {
  opacity: 0;
}
.person figcaption a {
  position: absolute;
  display: inline-block;
  top: unset;
  bottom: 3em;
  padding: 0.6em 1em 0.6em 2.6em;
  transition: all 0.5s;
  z-index: 0;
}
.person figcaption a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 2em;
  height: 2em;
  background-color: var(--mint);
  border-radius: var(--radius);
  transition: width 0.8s;
  z-index: -1;
}
.person figcaption a:hover::before {
  width: 100%;
}
#kontakt .person figcaption a::before {
  background-color: var(--green);
}
.person figcaption a:hover {
  color: var(--black);
  padding-left: 1em;
}
#kontakt form h3,
#newsletter form h3 {
  margin: 0 0 0.5em 0;
  max-width: 6em;
  transition: margin-top 1s ease-in-out;
}
#newsletter form h3 {
  max-width: 8em;
}
#kontakt.active form h3,
#newsletter.active form h3 {
  margin-top: -1.43em;
}
#kontakt input,
#kontakt textarea,
#newsletter input {
  width: calc(100% - 2em);
  display: inline-block;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  background-color: var(--green);
  padding: 1em 1em;
  transition: all 0.5s;
}
#kontakt input,
#newsletter .two input,
#newsletter input[type="submit"] {
  width: calc(50% - 1.25em);
  padding: 0.6em 1em;
}
#kontakt .two input + input,
#newsletter .two input + input {
  margin-left: 0.5em;
}
#newsletter input {
  background-color: var(--neon);
  padding: 0.6em 1em;
}
#newsletter input[type="email"] {
  margin-bottom: 1.5em;
}
#kontakt textarea {
  height: 10.5em;
  margin-bottom: 1.5em;
}
#kontakt input[type="text"]:hover,
#kontakt input[type="text"]:focus,
#kontakt input[type="email"]:hover,
#kontakt input[type="email"]:focus,
#kontakt textarea:hover,
#kontakt textarea:focus,
#newsletter input[type="text"]:hover,
#newsletter input[type="text"]:focus,
#newsletter input[type="email"]:hover,
#newsletter input[type="email"]:focus {
  transform: translateY(-0.3em);
  -webkit-box-shadow: 0px 0.3em 0px 0px #000000;
  box-shadow: 0px 0.3em 0px 0px #000000;
}
#kontakt input[type="text"].wpcf7-not-valid,
#kontakt input[type="email"].wpcf7-not-valid,
#kontakt textarea.wpcf7-not-valid,
#kontakt input[type="text"].error,
#kontakt input[type="email"].error,
#kontakt textarea[name="subject"].error,
#newsletter input[type="text"].error,
#newsletter input[type="email"].error {
  transform: translateY(-0.3em);
  -webkit-box-shadow: 0px 0.3em 0px 0px #ff0000;
  box-shadow: 0px 0.3em 0px 0px #ff0000;
}
#kontakt input.wpcf7-not-valid,
#kontakt textarea.wpcf7-not-valid,
#kontakt input.error,
#kontakt textarea.error,
#newsletter input.error {
  border-color: #ff0000;
}
#kontakt input::placeholder,
#kontakt textarea::placeholder,
#newsletter input::placeholder {
  opacity: 1;
}
#kontakt .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-left: 1em;
}
.wpcf7 form .wpcf7-response-output,
form .response {
  border-radius: var(--radius);
  width: 24.3em;
  margin: 0;
  padding: 0.6em 1em;
}
form .response.success {
  display: block;
  border: 2px solid var(--black);
  color: var(--black);
}
form .response.error {
  display: block;
  border: 2px solid #ff0000;
  color: #ff0000;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ff0000;
  color: #ff0000;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--neon);
}
.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  content: "";
}
#kontakt .wpcf7-list-item {
  margin: 0;
}
#kontakt .one,
#newsletter .one {
  position: relative;
}
#kontakt .one input[type="submit"],
#newsletter .one input[type="submit"] {
  position: absolute;
  top: 0.1em;
  left: 0;
  background-color: transparent;
  border: none;
  color: var(--green);
  cursor: pointer;
  pointer-events: all;
  height: 2.4em;
  background-color: var(--black);
}
#newsletter .one input[type="submit"] {
  color: var(--neon);
}
#kontakt .one input[type="submit"]:disabled,
#newsletter .one input[type="submit"]:disabled {
  opacity: 0;
  pointer-events: none;
  width: 2.4em;
  overflow: hidden;
}
#kontakt .two,
#newsletter .two {
  margin-bottom: 1.5em;
}
#kontakt input[type="checkbox"],
#newsletter input[type="checkbox"] {
  width: 2em;
  height: 2em;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: width 0.8s ease-in-out;
}
#kontakt input[type="checkbox"]:checked,
#newsletter input[type="checkbox"]:checked {
  background-color: var(--black);
  opacity: 0;
}
#kontakt input[type="checkbox"]:checked + span,
#newsletter input[type="checkbox"]:checked + span {
  opacity: 0;
  pointer-events: none;
}
#kontakt label,
#newsletter label {
  white-space: nowrap;
}
#kontakt label span,
#newsletter label span {
  display: inline-block;
  margin: 0 0 0 0.5em;
  opacity: 1;
  transition: opacity 0.5s;
  transform: translateY(-1em);
  white-space: normal;
  max-width: calc(100% - 3em);
}
#newsletter label span {
  transform: translateY(-0.5em);
}
#kontakt label span a,
#newsletter label span a {
  text-decoration: underline;
}
.wpcf7-not-valid-tip {
  display: none !important;
}
.slideshow {
  position: relative;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  max-height: 100vh;
}
.active .slideshow {
  opacity: 1;
}
.intro h2,
.slideshow h2,
.vektor h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: top 0.5s ease-in-out;
  z-index: 2;
}
#ki .vektor {
  background-color: var(--grey);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#akademie .vektor {
  background-color: var(--mint);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#akademie.active .vektor,
#ki.active .vektor {
  opacity: 1;
}
#ki .vektor h2 {
  text-align: center;
  width: 80vw;
}
.intro h2,
.slideshow h2 {
  text-align: center;
}
.slideshow .wp-block-image,
.slideshow .wp-block-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
}
.slideshow .wp-block-image:first-child {
  position: relative;
  z-index: 1;
  opacity: 1 !important;
}
.go figcaption {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.fl.go figcaption {
  opacity: 0;
  transition: opacity 0.5s 0.5s ease-in-out;
}
.letgo figcaption,
.fl.go.letgo figcaption {
  opacity: 1;
}
.fl,
.et,
.ap {
  position: relative;
  margin: 5em 0 10em 0;
}
.fl figcaption,
.et figcaption,
.ap figcaption {
  font-size: 6.6em;
  line-height: 0.85;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
}
.fl figcaption,
.et figcaption {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
}
.ap figcaption {
  transform: translate(0, -55%);
}
.fl figcaption .num {
  display: inline-block;
  margin-left: 0.4em;
}
.fl figcaption .sup {
  display: inline-block;
  font-size: 0.3em;
  transform: translateY(-1.8em);
  line-height: 1;
}
svg#svgAP circle#c17,
svg#svgAP circle#c18,
svg#svgAP circle#c19,
svg#svgAP circle#c20,
svg#svgAP circle#c21,
svg#svgAP circle#c22,
svg#svgAP circle#c23,
svg#svgAP circle#c24,
svg#svgAP circle#c25 {
  display: none;
}
.vektor {
  position: relative;
  width: 100%;
  height: 61vw;
  max-height: 100vh;
}
.info {
  position: relative;
  width: 100%;
  height: 64.7vw;
  max-height: calc(100vh + 2em);
  overflow: hidden;
  z-index: 0;
}
.info figcaption {
  color: var(--black);
  position: absolute;
  width: 55vw;
  top: 50%;
  left: 50%;
  margin-top: -2em;
  transform: translate(-50%, -50%);
}
.info h2 {
  margin-bottom: 0.5em;
}
#infoVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
#vektorVideo {
  opacity: 0;
  transition: opacity 0.5s;
}
.active.fixed #vektorVideo {
  opacity: 1;
  transition: opacity 0.5s;
}
.col,
.text {
  margin: 3.5em 11em;
}
hr + h3 {
  margin-top: 0.875em;
}
.num1,
.num2,
.num3,
.num4 {
  position: relative;
  display: inline;
  padding-left: 0;
  opacity: 0;
  transition:
    padding-left 0.5s,
    opacity 0.5s;
}
#ki .num3 {
  margin-right: -1em;
}
.num1.letgo,
.num2.letgo,
.num3.letgo,
.num4.letgo {
  opacity: 1;
  padding-left: 0.9em;
}
.num1::before,
.num2::before,
.num3::before,
.num4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  opacity: 0;
  font-size: 0.5em;
  line-height: 1.4em;
  text-align: center;
  width: 1.4em;
  height: 1.4em;
  border-radius: 999em;
  transition: opacity 0.5s;
  background-color: var(--black);
  color: var(--mint);
}
#ki .num1::before,
#ki .num2::before,
#ki .num3::before,
#ki .num4::before {
  color: var(--grey);
}
.num1.letgo::before {
  content: "1";
  opacity: 1;
}
.num2.letgo::before {
  content: "2";
  opacity: 1;
}
.num3.letgo::before {
  content: "3";
  opacity: 1;
}
.num4.letgo::before {
  content: "4";
  opacity: 1;
}
.col ul.go {
  opacity: 0;
  transition: opacity 0.5s;
}
.col p.go {
  display: block;
  margin: 1.5em 0;
  opacity: 0;
  transition: opacity 0.5s;
}
.col p.go:has(+ ul) {
  margin-bottom: 0;
}
.col ul + p.go {
  margin-top: 0;
}
.col p.letgo,
.col ul.letgo,
.alles.letgo p {
  opacity: 1;
}
.alles {
  position: relative;
  height: 26em;
  margin: 1em 2em;
}
.alles p {
  white-space: nowrap;
  position: absolute;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  display: inline-block;
  padding: 0.24em 0.6em;
  opacity: 0;
  transition: opacity 0.5s;
}
.alles p:nth-child(1) {
  top: 3em;
  left: 0;
}
.alles p:nth-child(2) {
  top: 2em;
  left: 50%;
  transform: translateX(-50%);
}
.alles p:nth-child(3) {
  top: 5em;
  left: 31%;
  transform: translateX(-50%);
}
.alles p:nth-child(4) {
  top: 4em;
  left: 80%;
  transform: translateX(-50%);
}
.alles p:nth-child(5) {
  top: 7.5em;
  left: 5%;
}
.alles p:nth-child(6) {
  top: 7em;
  left: 56%;
  transform: translateX(-50%);
}
.alles p:nth-child(7) {
  top: 7.25em;
  left: 90%;
  transform: translateX(-50%);
}
.zukunft {
  margin: 3.5em 1.5em 0 1.5em;
}
.zukunft .wp-block-group__inner-container {
  display: flex;
  flex-flow: row wrap;
  flex-basis: 50%;
}
.zukunft h2 {
  position: relative;
  width: 68%;
  padding-left: 9%;
  max-width: 6em;
}
.zukunft h2::before {
  content: "i";
  position: absolute;
  left: -0.4em;
  top: 0.2em;
  font-size: 0.5em;
  line-height: 1.35em;
  text-align: center;
  width: 1.4em;
  height: 1.4em;
  border-radius: 999em;
  border: 2px solid var(--black);
  transition:
    color 0.5s,
    background-color 0.5s;
  background-color: var(--black);
  color: var(--mint);
}
.zukunft p {
  padding-top: 0.8em;
  opacity: 0;
  transition: opacity 0.5s;
  width: 32%;
  padding-right: 4%;
}
.zukunft .wp-block-group {
  width: 50%;
  margin-bottom: 3.5em;
  cursor: pointer;
}
.zukunft .wp-block-group .wp-block-group__inner-container {
  display: flex;
  flex-flow: row nowrap;
}
.zukunft .wp-block-group:nth-child(1) .wp-block-group__inner-container,
.zukunft .wp-block-group:nth-child(3) .wp-block-group__inner-container {
  display: flex;
  flex-flow: row-reverse nowrap;
}
.fragen {
  margin: 3.5em 0;
}
.fragen p {
  margin: 1em 0 0 0;
  max-width: 10em;
}
.text {
  padding-top: 10em;
}
.text h1,
.text h2,
.text h3 {
  margin-bottom: 0.5em;
}
.text p {
  margin-bottom: 1em;
}
.hidedesktop {
  display: none;
}
.hidemobile {
  display: inline;
}
button[data-testid*="uc-privacy-button"] {
  transform: translateX(-100vw) !important;
}
.privacy-policy button[data-testid*="uc-privacy-button"] {
  transform: unset !important;
}
.post-edit-link {
  position: fixed;
  top: 0.5rem;
  left: 48%;
  z-index: 5000;
  color: gray;
}
@media all and (min-width: 801px) {
  .zukunft .wp-block-group:hover h2::before {
    background-color: transparent;
    color: var(--black);
  }
  .zukunft .wp-block-group:hover p {
    opacity: 1;
  }
}
@media all and (max-width: 900px) and (orientation: landscape) {
  #kontakt.active form h2 {
    margin-top: 1em;
  }
}
@media all and (max-width: 900px) and (orientation: portrait) {
  :root {
    --radius: 1.33em;
  }
  .hidedesktop {
    display: inline;
  }
  .hidemobile {
    display: none;
  }
  .foot a.instagram::before,
  .foot a.linkedin::before,
  .person figcaption a::before {
    display: none;
  }
  body {
    font-size: clamp(20px, 0.33rem + 3.75vw, 1.7rem);
    line-height: 1.2;
  }
  .qcbtn,
  .quickcontact {
    bottom: 2vw;
    right: 3vw;
  }
  .qcbtn {
    height: 4em;
    width: 4em;
  }
  .quickcontact {
    width: calc(100% - 6vw);
    min-height: calc(100vh - 12vw);
    padding: 12vw 3vw;
  }
  .quickcontact a,
  .quickcontact .desktop {
    font-size: 6.4vw;
  }
  .intro {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
  }
  .intro video {
    position: absolute;
    height: 100vh;
    width: 100vw;
    object-fit: cover;
  }
  .intro h1.logo {
    top: 0;
    left: 0;
    width: 66vw;
    height: 23vw;
  }
  .intro span.logo {
    left: 5vw;
    top: calc(100vh - 80vw);
    width: 90vw;
    height: 75vw;
  }
  body > .logo {
    width: 68vw;
    height: 24vw;
    top: 0;
    left: 0;
    right: unset;
    background: url('svg/Neuland-Campus-Logo.svg') 0 0 no-repeat;
    background-size: contain;
  }
  .info {
    width: 100vw;
    height: calc(100vh + 2em);
    max-height: calc(100vh + 2em);
  }
  .info figcaption {
    width: 100%;
    padding: 0 5vw;
  }
  #vision,
  #akademie,
  #ki,
  #kontakt {
    max-height: 6.9em;
  }
  #newsletter {
    max-height: 4.9em;
  }
  .title {
    top: 0.75em;
    left: 5vw;
  }
  .title + div {
    margin-top: 6em;
  }

  p.has-small-font-size,
  .person figcaption,
  input,
  textarea,
  label,
  .text h3,
  .wpcf7 form .wpcf7-response-output,
  form .response,
  p.has-medium-font-size,
  ul.has-medium-font-size,
  .alles p,
  .info p,
  .quicknav li,
  .nexudus a,
  .text h2 {
    font-size: 1.25em;
    line-height: 1;
  }
  .nexudus a {
    line-height: 1.2;
  }
  h3,
  .text h2:not(.title),
  .zukunft h2:not(.title) {
    font-size: 1.8em;
    line-height: 1;
    letter-spacing: -0.01em;
  }
  #kontakt form h3,
  #newsletter form h3,
  .text h1,
  h2:not(.title),
  .title strong,
  .fragen h3,
  .fl figcaption,
  .et figcaption,
  .ap figcaption {
    font-size: 3.3em;
    line-height: 0.85;
    letter-spacing: -0.02em;
  }
  .title strong {
    padding-left: 0.66em;
  }
  .fixed:not(#kontakt):not(#newsletter) .title strong {
    font-size: 1em;
    line-height: 1.2;
    margin: 0.9em 0 0 0;
  }
  .title::before {
    opacity: 1;
    top: 0.75em;
    left: 0em;
    width: 1.65em;
    height: 1.65em;
  }
  .col,
  .text {
    margin: 10vw 5vw;
  }
  .text a {
    overflow-wrap: break-word;
  }
  #kontakt .wp-block-columns {
    flex-direction: column-reverse;
  }
  #kontakt form {
    padding: 0 5vw 15em 5vw;
  }
  #newsletter form {
    padding: 0 5vw;
  }
  #kontakt form h3 {
    position: absolute;
    display: block;
    padding: 0.5em 10vw 0 5vw;
    border-top: 2px solid var(--black);
    max-width: unset;
    left: 0;
    top: 9.5em;
  }
  #kontakt.active form h2,
  #kontakt.active form h3 {
    margin-top: 1em;
  }
  #newsletter.active form h3 {
    margin-top: 0;
    margin-bottom: 1em;
  }
  #kontakt .two,
  #newsletter .two {
    margin-bottom: 0;
  }
  #kontakt .two input + input,
  #newsletter .two input + input {
    margin-left: 0;
  }
  #kontakt input,
  #kontakt textarea,
  #newsletter .two input,
  #newsletter input,
  #newsletter input[type="submit"] {
    border-radius: 2em;
    width: 100%;
    margin-bottom: 1em;
    padding: 1em;
  }
  #kontakt textarea {
    height: 9em;
  }
  #kontakt .one input[type="submit"],
  #newsletter .one input[type="submit"] {
    border-radius: 2em;
    height: 3.33em;
  }
  #kontakt input[type="checkbox"],
  #newsletter input[type="checkbox"] {
    width: 2.5em;
    height: 2.5em;
  }
  form .response,
  .wpcf7 form .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output,
  .wpcf7 form.payment-required .wpcf7-response-output {
    border-radius: 1.6em;
    background-color: var(--green);
    position: absolute;
    margin: 0;
    top: 13em;
    padding: 1em;
    min-height: 9.5em;
    width: 90vw;
    display: none;
  }
  #newsletter form .response {
    top: unset;
    bottom: 3.5em;
    min-height: 14.5em;
  }
  .wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--black);
  }
  #kontakt .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
    margin: 0;
  }
  #kontakt label span,
  #newsletter label span {
    white-space: normal;
    max-width: 10em;
    transform: translateY(-1.5em);
  }
  #newsletter label span {
    transform: translateY(-0.5em);
  }
  .nexudus {
    padding: 5vw;
  }
  .nexudus .event {
    flex-direction: column;
  }
  .nexudus .event .date,
  .nexudus .event .name {
    width: 100%;
    margin-bottom: 1rem;
  }
  .nexudus .button,
  #ki .button,
  .nexudus .date {
    font-size: 1em;
    line-height: 1em;
  }
  .nexudus .event .button {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }
  .person {
    margin: 0 24vw 3em 24vw;
    border-radius: 0;
    background-image: none !important;
    overflow: visible;
    padding-bottom: 2em;
  }
  #kontakt .person {
    margin-top: -1em;
  }
  .person img {
    clip-path: circle(43.7%);
  }
  #akademie .person figcaption,
  #ki .person figcaption,
  #kontakt .person figcaption {
    white-space: nowrap;
    text-align: center;
    top: calc(100% - 2.5em);
    color: var(--black);
    left: 50%;
    height: 5em;
    min-width: 9em;
    transform: translateX(-50%);
  }
  .person figcaption a,
  .person figcaption a:hover {
    bottom: 0;
    padding: 0.6em 1em;
    font-size: 0.8em;
    white-space: nowrap;
    transform: translateX(-50%);
    background-color: var(--black);
    color: var(--mint);
    border-radius: var(--radius);
  }
  #kontakt .person figcaption a {
    color: var(--green);
  }
  .person:hover img {
    opacity: 1;
  }
  .slideshow .wp-block-image img {
    width: 340vw;
    max-width: 340vw;
    margin-left: -180vw;
    height: auto;
  }
  .vektor {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
  }
  .wp-block-image.vektor img {
    height: 100vh;
    width: 170vh;
    max-width: 170vh;
    margin-left: -18vh;
  }
  #vektorVideo,
  #visionVideo {
    position: absolute;
    height: 100vh;
    width: auto;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }
  .vektor h2 {
    text-align: center;
  }
  .fl,
  .et,
  .ap {
    position: relative;
    margin: 5vw 0 10vw 0;
  }
  .et figcaption {
    line-height: 1;
  }
  .ap figcaption {
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  path#p1,
  path#p2,
  path#p3 {
    stroke-width: 1.2vw;
  }
  svg#svgFL {
    max-height: 90vw;
  }
  svg#svgET {
    max-height: 60vw;
  }
  svg#svgET circle#c1,
  svg#svgET path#p1 {
    transform: translateY(-4em);
  }
  svg#svgET circle#c3,
  svg#svgET path#p3 {
    transform: translateY(4em);
  }
  svg#svgAP circle#c2,
  svg#svgAP circle#c3,
  svg#svgAP circle#c4,
  svg#svgAP circle#c5,
  svg#svgAP circle#c6,
  svg#svgAP circle#c7,
  svg#svgAP circle#c8,
  svg#svgAP circle#c9,
  svg#svgAP circle#c10,
  svg#svgAP circle#c11,
  svg#svgAP circle#c12,
  svg#svgAP circle#c13,
  svg#svgAP circle#c14,
  svg#svgAP circle#c15,
  svg#svgAP circle#c16 {
    display: none;
  }
  svg#svgAP circle#c17,
  svg#svgAP circle#c18,
  svg#svgAP circle#c19,
  svg#svgAP circle#c20,
  svg#svgAP circle#c21,
  svg#svgAP circle#c22,
  svg#svgAP circle#c23,
  svg#svgAP circle#c24,
  svg#svgAP circle#c25 {
    display: inline;
  }
  svg#svgAP {
    max-height: 60vw;
  }
  .alles {
    height: 26em;
    margin: 10vw 5vw;
  }
  .alles p {
    transform: unset !important;
  }
  .alles p:nth-child(1) {
    top: 0;
    left: 0;
  }
  .alles p:nth-child(2) {
    top: 12em;
    left: 0;
  }
  .alles p:nth-child(3) {
    top: 3em;
    left: unset;
    right: 5%;
  }
  .alles p:nth-child(4) {
    top: 15em;
    left: unset;
    right: 0;
  }
  .alles p:nth-child(5) {
    top: 6em;
    left: unset;
  }
  .alles p:nth-child(6) {
    top: 9em;
    left: unset;
    right: 0;
  }
  .alles p:nth-child(7) {
    top: 18em;
    left: 0;
  }
  .zukunft {
    margin: 10vw 5vw;
  }
  .zukunft .wp-block-group {
    width: 100%;
    margin-bottom: 10vw;
    cursor: pointer;
  }
  .zukunft .wp-block-group__inner-container {
    flex-flow: column wrap;
    flex-basis: 100%;
  }
  .zukunft .wp-block-group .wp-block-group__inner-container,
  .zukunft .wp-block-group:nth-child(1) .wp-block-group__inner-container,
  .zukunft .wp-block-group:nth-child(3) .wp-block-group__inner-container {
    display: block;
    flex-flow: unset;
    position: relative;
  }
  .zukunft h2 {
    width: 80%;
    padding-left: 10%;
    max-width: unset;
    position: relative;
    display: inline;
  }
  .zukunft h2::before {
    left: 0;
    top: 0.4em;
  }
  .zukunft p {
    width: 100%;
    opacity: 1;
    overflow: hidden;
    max-height: 0;
    transition: max-height 1s;
  }
  .zukunft .wp-block-group.active p {
    max-height: 6em;
  }
  .zukunft .wp-block-group h2::before {
    background-color: var(--black);
    color: var(--mint);
  }
  .zukunft .wp-block-group.active h2::before {
    background-color: transparent;
    color: var(--black);
  }
  .fragen {
    flex-direction: column-reverse;
    padding-bottom: 10vw;
  }
  .fragen h3 {
    padding: 0 5vw;
    margin-bottom: 0.5em;
  }
  .fragen p {
    padding: 0 5vw;
  }
  .foot {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    padding: 5vw 0 85vw 0;
    background: url('svg/Neuland-Campus-Logo1n.svg') 6vw 89% no-repeat;
    background-size: 62vw 62vw;
  }
  .foot .grid {
    font-size: 1.2em;
    line-height: 1.2;
    margin: 0;
    padding: 0 5vw;
  }
  .foot .grid:nth-child(1) {
    grid-area: 1 / 2 / 2 / 3;
    padding-top: 2.5vw;
  }
  .foot .grid:nth-child(2) {
    grid-area: 3 / 1 / 4 / 3;
  }
  .foot .grid:nth-child(3) {
    grid-area: 4 / 1 / 5 / 3;
    padding-top: 1.2em;
  }
  .foot .grid:nth-child(4) {
    grid-area: 2 / 1 / 3 / 3;
  }
  .foot .grid:nth-child(5) {
    grid-area: 1 / 1 / 2 / 2;
    padding: 0 0 0 2.5vw;
    text-align: left;
  }
  .foot .instagram,
  .foot .linkedin {
    width: 2em;
    height: 2em;
  }
  .foot a[href^="mailto:"] {
    margin-right: 0;
  }
  .foot .logo {
    background: url('svg/Neuland-Campus-Logo2n.svg') 0 0 no-repeat;
    background-size: contain;
    width: 36vw;
    height: 13vw;
    float: right;
  }
  .wp-block-columns {
    flex-wrap: wrap !important;
  }
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 100% !important;
    min-width: 100%;
  }
}
@media all and (max-width: 325px) and (orientation: portrait) {
  #kontakt form h3,
  #newsletter form h3,
  h2:not(.title),
  .title strong,
  .fragen h3,
  .fl figcaption,
  .et figcaption,
  .ap figcaption {
    font-size: 2.8em;
    line-height: 0.85;
  }
  #kontakt form h3 {
    top: 11.5em;
  }
}
@media all and (min-width: 1920px) {
  .alles {
    margin: 1em 5.6em;
  }
}
@media (prefers-color-scheme: dark) {
  #ki .vektor img {
    opacity: 0.5;
  }
  #ki.active.fixed {
    background-image: none;
  }
}
