@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@100;300;400;500;600&display=swap");
@import url("https://use.typekit.net/abi8tjh.css");
:root {
  --bg-light: #ebebeb;
  --bg-dark: #212121;
  --btn-color: #f8f8f8;
  --blue-full: #0976d6;
  --green-cyan: #c7fff8;
  font-size: 16px;
}

@media screen and (min-width: 750px) {
  :root {
    font-size: 18px;
  }
}

@media screen and (min-width: 1200px) {
  :root {
    font-size: 20px;
  }
}

@media screen and (min-width: 1800px) {
  :root {
    font-size: 22px;
  }
}

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

body {
  font-family: "Urbanist";
  background-color: var(--bg-light);
  font-weight: 300;
}

body .shadow {
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
}

body .shadow2 {
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

body .shadow-white {
  -webkit-box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.2);
          box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.2);
}

body .section-head {
  margin-bottom: 3rem;
}

body .section-head .header-1 {
  font-weight: 100;
  opacity: 0.85;
  max-width: 15ch;
  font-size: 2.5rem;
}

body .section-head .header-2 {
  font-weight: 500;
  font-size: 1.4rem;
  margin-top: 0.5rem;
}

body .bullet-point {
  position: relative;
  margin-left: 1.2rem;
  margin-top: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: 1;
}

body .bullet-point::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.2rem;
  width: 0.4rem;
  height: 0.4rem;
  -webkit-backdrop-filter: invert(100%);
          backdrop-filter: invert(100%);
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
}

body .haken-point {
  position: relative;
  margin-left: 2rem;
  margin-top: 1.4rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

body .haken-point::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2rem;
  width: 1rem;
  height: 1rem;
  background-image: url(Images/Haken.svg);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

body .volltext {
  font-size: 1.1rem;
}

body .btn {
  text-decoration: none;
  color: black;
  background-color: var(--btn-color);
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0.8rem 2rem;
  text-align: center;
  -webkit-transition: all 100ms;
  transition: all 100ms;
}

body .btn:hover {
  cursor: pointer;
  color: white;
  background-color: var(--blue-full);
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

body .anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

section {
  padding: 6rem 10%;
  position: relative;
  /* @media screen and (min-width: 1000px) {
        min-height: 100vh;
    } */
}

.header-desktop {
  width: 100%;
  padding: 0 10%;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.header-desktop a {
  color: black;
  text-decoration: none;
  font-size: 1.2rem;
}

.header-desktop a:hover {
  opacity: .5;
}

.header-desktop .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  height: 100%;
}

.header-desktop .logo img {
  max-width: 50px;
  height: 60%;
}

.header-desktop .logo a {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-desktop .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
}

.header-desktop .btn-kontakt {
  opacity: 0;
  padding: 0 1rem;
}

@media screen and (max-width: 1000px) {
  .header-desktop {
    display: none;
  }
  .header-desktop .unsticky-btn {
    display: none;
  }
}

.btn-kontakt-sticky {
  position: fixed;
  top: 2rem;
  right: 10%;
  z-index: 100;
  background-color: var(--bg-light);
  padding: .4rem 1rem;
  -webkit-transform: translateY(-0.4rem);
          transform: translateY(-0.4rem);
  border-radius: .2rem;
  border: 1px solid rgba(0, 0, 0, 0.219);
}

.btn-kontakt-sticky a {
  z-index: 200;
  color: black;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
}

.btn-kontakt-sticky:hover, .btn-kontakt-sticky :focus {
  border: 1px solid rgba(255, 255, 255, 0.219);
  cursor: pointer;
  background-color: var(--bg-dark);
}

.btn-kontakt-sticky:hover a, .btn-kontakt-sticky :focus a {
  color: var(--bg-light);
}

.hero-section {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero-section .hero-bilder {
  position: relative;
  height: 100%;
  background: radial-gradient(closest-side, #0976d655, #0976d600);
  width: 100%;
}

.hero-section .hero-bilder svg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.hero-section .hero-texte {
  padding: 1rem 10% 5rem 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-section .hero-texte .hero-head-1 {
  font-size: 1.6rem;
}

.hero-section .hero-texte .hero-head-1 span {
  color: var(--blue-full);
}

.hero-section .hero-texte .hero-head-2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

@media screen and (min-width: 1000px) {
  .hero-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding: 10%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero-section .hero-bilder {
    max-width: 1000px;
  }
  .hero-section .hero-texte {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0;
    width: 70%;
  }
}

.web-section {
  background-color: var(--bg-dark);
  color: white;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.web-section .web-illustration {
  display: none;
}

.web-section .web-texte .haken-point {
  max-width: 35ch;
}

@media screen and (min-width: 1000px) {
  .web-section {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 45% 45%;
        grid-template-columns: 45% 45%;
    -ms-grid-rows: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    gap: 10%;
  }
  .web-section .web-illustration {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .web-section .web-illustration img {
    max-width: 300px;
    height: 100%;
  }
}

.foto-section .foto-illustration {
  display: none;
}

.foto-section .foto-illustration img {
  width: 100%;
  max-width: 500px;
}

.foto-section .foto-slider {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: auto auto;
      grid-template-rows: auto auto;
  gap: 1rem;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1000px;
  margin: 3rem auto 0 auto;
}

.foto-section .foto-slider .slider-text p {
  font-size: 1.4rem;
}

.foto-section .foto-slider .slidecontainer {
  width: 100%;
}

.foto-section .foto-slider .slidecontainer .slider {
  width: 100%;
}

.foto-section .foto-slider img {
  width: 100%;
  -ms-grid-column: 1;
  grid-column: 1 / 1;
  -ms-grid-row: 2;
  grid-row: 2 / 2;
}

.foto-section .foto-slider #nachherImage {
  -webkit-clip-path: polygon(0 0, 75% 0, 75% 100%, 0% 100%);
          clip-path: polygon(0 0, 75% 0, 75% 100%, 0% 100%);
}

@media screen and (min-width: 1000px) {
  .foto-section {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 45% 45%;
        grid-template-columns: 45% 45%;
    -ms-grid-rows: auto 1fr;
        grid-template-rows: auto 1fr;
    gap: 3rem 10%;
  }
  .foto-section .foto-illustration {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .foto-section .foto-text-container {
    -ms-grid-column: 2;
    grid-column: 2 / 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .foto-section .foto-slider {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}

.print-section {
  background-color: var(--bg-dark);
  color: white;
}

@media screen and (min-width: 1000px) {
  .print-section {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 45% 45%;
        grid-template-columns: 45% 45%;
    -ms-grid-rows: auto auto;
        grid-template-rows: auto auto;
    gap: 0 10%;
  }
  .print-section .section-head {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .print-section .print-canvas {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
  }
  .print-section .print-canvas canvas {
    width: 100%;
    height: 100%;
  }
}

.it-section {
  height: 200vh;
  position: relative;
  /* display: flex;
    justify-content: center; */
}

.it-section .it-hero {
  margin-bottom: 3rem;
}

.it-section .it-hero h2 {
  font-weight: 300;
  text-transform: uppercase;
  opacity: .6;
}

.it-section .it-hero h1 {
  font-weight: 400;
  font-size: 2rem;
}

.it-section .it-texte {
  display: none;
}

.it-section .it-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--bg-dark);
  z-index: -1;
}

.it-section .background-text {
  position: absolute;
  top: 0;
  left: 10%;
  width: 90%;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  opacity: 0.07;
  -webkit-filter: blur(1px);
          filter: blur(1px);
  pointer-events: none;
}

.it-section .phone-div {
  position: -webkit-sticky;
  position: sticky;
  top: 6rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-radius: 1.7rem;
}

.it-section .phone-div .phone {
  z-index: 10;
  display: block;
}

.it-section .phone-div .slide-end {
  z-index: -11;
  position: absolute;
  width: 90%;
  height: 95%;
  top: 2.5%;
  left: 5%;
}

.it-section .phone-div .zwischendiv-test {
  overflow: hidden;
  height: 90%;
}

.it-section .phone-div .phone-text {
  position: absolute;
  top: 3%;
  left: 5%;
  width: 90%;
  z-index: -10;
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1rem;
}

.it-section .phone-div .phone-text img {
  width: 100%;
}

@media screen and (min-width: 1000px) {
  .it-section {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 45% 45%;
        grid-template-columns: 45% 45%;
    -ms-grid-rows: 45% 45%;
        grid-template-rows: 45% 45%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10%;
  }
  .it-section .it-texte {
    display: block;
    color: white;
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .it-section .it-texte .it-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
  .it-section .it-texte .it-text p {
    line-height: 1.25;
  }
  .it-section .phone-div {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
    border-radius: 1.4rem;
  }
  .it-section .it-hero {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .it-section .it-hero h1 {
    font-size: 2.4rem;
  }
}

.it-mobile-section {
  background-color: var(--bg-dark);
}

.it-mobile-section .it-texte {
  display: block;
  color: white;
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
}

.it-mobile-section .it-texte .it-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.it-mobile-section .it-texte .it-text p {
  line-height: 1.25;
}

@media screen and (min-width: 1000px) {
  .it-mobile-section {
    display: none;
  }
}

.fahrplan-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  text-align: center;
}

.fahrplan-section h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.fahrplan-section p {
  font-size: 1.5rem;
}

.footer-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 10%;
  opacity: .5;
}

.footer-section a {
  color: black;
}

.footer-section div {
  margin: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .5rem;
}

.footer-section .footer-deko {
  display: none;
}

@media screen and (min-width: 750px) {
  .footer-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer-section .rechtliches {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer-section .footer-rechts {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (min-width: 1200px) {
  .footer-section .footer-deko {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer-section .footer-deko a {
    text-decoration: none;
  }
  .footer-section .footer-deko p {
    text-transform: uppercase;
    font-size: 2rem;
    opacity: .3;
    letter-spacing: 2px;
  }
}

.fade-in {
  opacity: 0;
}

.faded-in {
  -webkit-animation: fade-in 750ms ease   both;
          animation: fade-in 750ms ease   both;
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(4rem);
            transform: translateY(4rem);
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(4rem);
            transform: translateY(4rem);
  }
  to {
    opacity: 1;
  }
}

.texte-anim p {
  -webkit-transform: translateX(-2rem) scaleX(80%);
          transform: translateX(-2rem) scaleX(80%);
}

@-webkit-keyframes texte-animate {
  from {
  }
  to {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes texte-animate {
  from {
  }
  to {
    -webkit-transform: none;
            transform: none;
  }
}

.texte-animated p {
  -webkit-animation: texte-animate 400ms forwards;
          animation: texte-animate 400ms forwards;
  -webkit-transform-origin: right;
          transform-origin: right;
}

.texte-animated p:nth-of-type(1) {
  -webkit-animation-delay: 50ms;
          animation-delay: 50ms;
}

.texte-animated p:nth-of-type(2) {
  -webkit-animation-delay: 100ms;
          animation-delay: 100ms;
}

.texte-animated p:nth-of-type(3) {
  -webkit-animation-delay: 150ms;
          animation-delay: 150ms;
}

.texte-animated p:nth-of-type(4) {
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}

.texte-animated p:nth-of-type(5) {
  -webkit-animation-delay: 250ms;
          animation-delay: 250ms;
}

.texte-animated p:nth-of-type(6) {
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}

.texte-animated p:nth-of-type(7) {
  -webkit-animation-delay: 350ms;
          animation-delay: 350ms;
}
/*# sourceMappingURL=main.css.map */