@charset "UTF-8";
/* developed by © Marcel Gangl */
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  forced-color-adjust: none !important;
  font-weight: normal;
}

::selection {
  background: var(--C-l-grey);
  color: var(--C-black);
}

@media print {
  html,
  body {
    display: none;
  }
}
body {
  font-family: var(--F-int-r), var(--F-fb);
  font-size: var(--T-copy);
  list-style: var(--T-c-lh);
  font-style: normal;
  font-weight: normal;
  background-color: var(--C-d-blue);
  scrollbar-width: none;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

::-webkit-scrollbar {
  display: none;
}

img {
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
}

:root {
  scrollbar-gutter: stable;
}

:root {
  --C-white: rgb(255, 255, 255);
  --C-black: rgb(20, 20, 20);
  --C-l-grey: rgb(200, 200, 200);
  --C-d-grey: rgb(100, 100, 100);
  --C-d-blue: rgb(0, 25, 50);
  --C-m-blue: rgb(0, 85, 155);
  --C-l-blue: rgb(165, 205, 240);
}

@font-face {
  font-family: "inter-thin";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/inter/Inter-Thin.woff2") format("woff2");
}
@font-face {
  font-family: "inter-light";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/inter/Inter-Light.woff2") format("woff2");
}
@font-face {
  font-family: "inter-regular";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/inter/Inter-Regular.woff") format("woff"), url("../fonts/inter/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "inter-medium";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/inter/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "inter-semibold";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/inter/Inter-SemiBold.woff2") format("woff2");
}
:root {
  --F-int-t: "inter-thin";
  --F-int-l: "inter-light";
  --F-int-r: "inter-regular";
  --F-int-m: "inter-medium";
  --F-int-sb: "inter-semibold";
  --F-fb: "Arial, Helvetica, sans-serif";
  --T-c-lh: 1.5;
  --T-h-lh: 1.2;
  --T-xsmall: clamp(10px, 8.8857142857px + 0.2857142857vw, 13px);
  --T-small: clamp(12px, 10.8857142857px + 0.2857142857vw, 15px);
  --T-copy: clamp(15px, 14.2571428571px + 0.1904761905vw, 17px);
  --T-medium: clamp(18px, 16.5142857143px + 0.380952381vw, 22px);
  --T-large: clamp(22px, 17.5428571429px + 1.1428571429vw, 34px);
  --T-xlarge: clamp(38px, 36.5142857143px + 0.380952381vw, 42px);
  --T-xxlarge: clamp(45px, 43.1428571429px + 0.4761904762vw, 50px);
  --T-hero: clamp(55px, 48.6857142857px + 1.619047619vw, 72px);
}

:root {
  --S-xxsmall: clamp(5px, 3.8857142857px + 0.2857142857vw, 8px);
  --S-xsmall: clamp(10px, 8.8857142857px + 0.2857142857vw, 13px);
  --S-small: clamp(15px, 13.8857142857px + 0.2857142857vw, 18px);
  --S-medium: clamp(18px, 16.5142857143px + 0.380952381vw, 22px);
  --S-large: clamp(22px, 20.8857142857px + 0.2857142857vw, 25px);
  --S-xlarge: clamp(30px, 28.1428571429px + 0.4761904762vw, 35px);
  --S-xxlarge: clamp(55px, 53.1428571429px + 0.4761904762vw, 60px);
  --S-ularge: clamp(80px, 68.8571428571px + 2.8571428571vw, 110px);
  --S-Form-min: clamp(110px, 106.2857142857px + 0.9523809524vw, 120px);
  --S-Form-max: clamp(250px, 246.2857142857px + 0.9523809524vw, 260px);
}

button {
  cursor: pointer;
}

.main-btn {
  font-family: var(--F-int-m), var(--F-fb);
  font-size: var(--T-copy);
  border: none;
  background-color: var(--C-l-blue);
  border-radius: var(--S-xxlarge);
  padding: var(--S-xsmall) var(--S-medium);
  color: var(--C-d-blue);
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

.main-btn:hover .arrow {
  display: inline-block;
  animation: bounceArrow 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-btn:hover {
  background-color: var(--C-m-blue);
  color: var(--C-l-blue);
}

.submit-btn {
  margin-right: var(--S-xsmall);
}

.submit-btn:hover {
  background-color: var(--C-m-blue) !important;
  color: var(--C-l-blue) !important;
}

.nav-btn {
  font-family: var(--F-int-m), var(--F-fb);
  font-size: var(--T-copy);
  border: none;
  background-color: var(--C-d-blue);
  border-radius: var(--S-xxlarge);
  padding: var(--S-xsmall) var(--S-medium);
  color: var(--C-l-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease-in-out;
  overflow: hidden;
}

.nav-btn:hover {
  background-color: var(--C-l-blue);
  color: var(--C-d-blue);
}

.nav-btn:hover .arrow {
  display: inline-block;
  animation: bounceArrow 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

header {
  top: 20px;
  left: 20px;
  right: 20px;
  padding: var(--S-xxsmall);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  position: fixed;
  z-index: 1000;
  border-radius: 50px;
  font-family: var(--F-int-r), var(--F-fb);
  font-size: var(--T-copy);
  background-color: rgba(100, 100, 100, 0.6);
  backdrop-filter: blur(10px);
}

header img {
  padding: calc(var(--S-xxsmall) - 3px) 0 0 var(--S-xsmall);
  height: 20px;
  width: auto;
  cursor: alias;
}

header nav {
  display: flex;
  align-items: center;
  gap: var(--S-xlarge);
}

header nav ul {
  display: flex;
  align-items: center;
  gap: var(--S-xlarge);
  list-style: none;
}

header nav a {
  color: var(--C-white);
  text-decoration: none;
}

.h-nav-items a {
  cursor: pointer;
}

.h-nav-items a::before {
  content: "↗";
  color: var(--C-l-blue);
  margin-right: 6px;
  opacity: 0;
  display: inline-block;
  transform: translateY(0);
  transition: opacity 0.2s ease-in-out;
}

.h-nav-items:hover a::before {
  opacity: 1;
  animation: bounceArrow 0.5s ease;
}

.h-active {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--C-l-blue);
}

.h-active:before {
  display: inline-block;
  text-decoration: none !important;
  -webkit-text-decoration: none !important;
}

@keyframes bounceArrow {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px) scale(1.2);
  }
  60% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
#m-menu-btn {
  display: none;
}

footer {
  width: auto;
  display: flex;
  flex-direction: column;
  gap: calc(var(--S-ularge) * 1.2);
  background: linear-gradient(to bottom, var(--C-d-blue) 15%, var(--C-m-blue) 60%, var(--C-l-blue) 100%);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-top: calc(-1 * var(--S-large));
}

.footer-txt {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.footer-txt-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: var(--S-ularge) var(--S-xlarge);
  color: var(--C-white);
  gap: var(--S-large);
}

.footer-txt-left h2 {
  font-family: var(--F-int-l), var(--F-fb);
  font-size: var(--T-xlarge);
  line-height: var(--T-h-lh);
  font-weight: normal;
  max-width: 410px;
}

.footer-txt-right {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin: var(--S-ularge) var(--S-ularge);
  color: var(--C-white);
  gap: var(--S-ularge);
}

.footer-txt-right nav ul {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: var(--S-medium);
  list-style: none;
}

.footer-txt-right a {
  font-size: var(--T-copy);
  color: var(--C-l-grey);
  text-decoration: none;
}

.footer-txt-right p {
  font-family: var(--F-int-sb), var(--F-fb);
  font-size: var(--T-copy);
  color: var(--C-white);
  text-decoration: none;
  padding-bottom: var(--S-large);
}

.footer-btm {
  display: flex;
  flex-direction: column;
}

.footer-btm-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 var(--S-xlarge) var(--S-large) var(--S-large);
}

.footer-btm-top img {
  height: calc(var(--S-ularge) / 1.1);
  width: auto;
}

.footer-btm-top p {
  font-family: var(--F-int-m), var(--F-fb);
  font-size: var(--T-copy);
  color: var(--C-white);
}

.footer-mque {
  font-family: var(--F-int-r), var(--F-bp-f2);
  font-size: var(--T-copy);
  font-weight: normal;
  user-select: none;
  background-color: var(--C-d-blue);
  color: var(--C-white);
}

.mque {
  width: 100%;
  display: flex;
  overflow: hidden;
  user-select: none;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: var(--T-copy);
}

.mque-cont {
  min-width: 100%;
  flex: none;
  display: flex;
  z-index: 2;
  font-size: var(--T-copy);
}

.mque-space {
  padding-left: 10px;
  padding-right: 10px;
  font-size: var(--T-copy);
}

.mque-txt-block p {
  font-size: var(--T-copy);
  color: var(--C-l-blue);
  background-clip: text;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: normal;
}

.mque-txt-block a {
  text-decoration: none;
  font-size: var(--T-copy);
  color: var(--C-l-blue);
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
  text-decoration-color: transparent;
  transition: all 0.3s ease-in-out;
}

.mque-txt-block a:hover {
  text-decoration-color: var(--C-l-blue);
}

.scroll {
  scroll-behavior: smooth;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 1rem));
  }
}
.hero {
  width: auto;
  height: 95vh;
  background: linear-gradient(to bottom, var(--C-d-blue) 15%, var(--C-m-blue) 60%, var(--C-l-blue) 100%);
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.hero-txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: var(--S-ularge) var(--S-xlarge) calc(var(--S-xxlarge) * 1.5) var(--S-xlarge);
  color: var(--C-white);
  gap: var(--S-large);
}

.hero-txt-pt {
  display: inline-block;
  background-color: rgba(20, 20, 20, 0.5);
  border-radius: 50px;
  padding: var(--S-xsmall) var(--S-medium);
  font-size: var(--T-copy);
  font-family: var(--F-int-l);
}

.hero-txt h1 {
  font-family: var(--F-int-l), var(--F-fb);
  font-size: var(--T-hero);
  line-height: var(--T-h-lh);
  font-weight: normal;
}

.hero-txt p {
  font-size: var(--T-copy);
  line-height: var(--T-c-lh);
  font-weight: normal;
  max-width: 565px;
}

.hero-t {
  width: auto;
  height: 50px;
  display: flex;
  background-color: var(--C-white);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-top: -10px;
}

/* hero secondary */
.hero-secdn {
  width: auto;
  height: 70vh;
  background: linear-gradient(to bottom, var(--C-d-blue) 15%, var(--C-m-blue) 60%, var(--C-l-blue) 100%);
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.hero-secdn-txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: var(--S-ularge) var(--S-xlarge) calc(var(--S-xxlarge) * 1.5) var(--S-xlarge);
  color: var(--C-white);
  gap: var(--S-large);
}

.hero-secdn-txt-pt {
  display: inline-block;
  background-color: rgba(20, 20, 20, 0.5);
  border-radius: 50px;
  padding: var(--S-xsmall) var(--S-medium);
  font-size: var(--T-copy);
  font-family: var(--F-int-l);
}

.hero-secdn-txt h1 {
  font-family: var(--F-int-l), var(--F-fb);
  font-size: var(--T-hero);
  line-height: var(--T-h-lh);
  font-weight: normal;
}

.hero-secdn-txt p {
  font-size: var(--T-copy);
  line-height: var(--T-c-lh);
  font-weight: normal;
  max-width: 420px;
}

.intro-about {
  display: flex;
  flex-direction: row;
  align-self: flex-start;
  justify-content: space-between;
  background-color: var(--C-white);
  padding: var(--S-ularge) var(--S-xlarge) calc(var(--S-ularge) * 2) var(--S-xlarge);
}

.intro-about h2 {
  font-family: var(--F-int-l), var(--F-fb);
  font-size: var(--T-xlarge);
  line-height: var(--T-h-lh);
  font-weight: normal;
}

.intro-about-txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--S-medium);
  max-width: 660px;
}

.intro-about-txt p {
  font-size: var(--T-copy);
  line-height: var(--T-c-lh);
  color: var(--C-d-grey);
  font-weight: normal;
}

.intro-about-txt span {
  font-size: var(--T-medium);
  line-height: var(--T-c-lh);
  font-weight: normal;
  color: var(--C-black);
}

/* service home overview */
.service-h-ov {
  display: flex;
  flex-direction: column;
  background-color: var(--C-d-blue);
  border-radius: 10px;
  margin-top: calc(-1 * var(--S-xsmall));
}

.service-h-ov-txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: var(--S-ularge) var(--S-xlarge) 0 var(--S-xlarge);
  gap: var(--S-large);
  color: var(--C-white);
}

.service-h-ov-txt h2 {
  font-family: var(--F-int-l), var(--F-fb);
  font-size: var(--T-xlarge);
  line-height: var(--T-h-lh);
  font-weight: normal;
}

.service-h-ov-txt p {
  font-family: var(--F-int-r), var(--F-fb);
  font-size: var(--T-copy);
  line-height: var(--T-c-lh);
  color: var(--C-white);
  text-decoration: none;
  max-width: 450px;
}

.service-h-ov-items {
  margin: var(--S-xxlarge) var(--S-xlarge) calc(var(--S-ularge) * 1.5) var(--S-xlarge);
}

.service-h-ov-items:last-child {
  border-bottom: solid 2px var(--C-l-blue);
}

.service-h-ov-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  color: var(--C-white);
  border-top: solid 2px var(--C-l-blue);
  padding: var(--S-small) 0 var(--S-small) 0;
}

.service-h-ov-item {
  font-family: var(--F-int-r), var(--F-fb);
  font-size: var(--T-copy);
  line-height: var(--T-c-lh);
  color: var(--C-white);
  font-variant-numeric: tabular-nums;
}

.service-h-ov-item span {
  font-family: var(--F-int-m), var(--F-fb);
  font-size: var(--T-copy);
  line-height: var(--T-c-lh);
  color: var(--C-white);
}

.service-h-ov-item a {
  cursor: pointer;
  text-decoration: none;
}

.service-h-ov-item a::before {
  content: "↗";
  color: var(--C-l-blue);
  margin-right: 6px;
  opacity: 0;
  display: inline-block;
  transform: translateY(0);
  transition: opacity 0.2s ease-in-out;
}

.service-h-ov-item:hover a::before {
  opacity: 1;
  animation: bounceArrow 0.5s ease;
}

/* services overview */
.services-ov {
  display: flex;
  flex-direction: column;
  background-color: var(--C-white);
}

.services-ov-items {
  margin: var(--S-xlarge) var(--S-xlarge) calc(var(--S-ularge) * 1.5) var(--S-xlarge);
}

.services-ov-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  color: var(--C-black);
  border-bottom: solid 2px var(--C-l-blue);
  padding: var(--S-xlarge) 0 var(--S-xxlarge) 0;
  scroll-margin-top: var(--S-ularge);
}

.services-ov-item:target span,
.services-ov-item span:target,
.services-ov-item span.active-target {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--C-m-blue);
}

.services-ov-item div {
  display: flex;
  flex-direction: column;
  gap: var(--S-large);
}

.services-ov-item p {
  font-family: var(--F-int-r), var(--F-fb);
  font-size: var(--T-copy);
  line-height: var(--T-c-lh);
  color: var(--C-black);
  font-variant-numeric: tabular-nums;
  max-width: 420px;
}

.services-ov-item span {
  font-family: var(--F-int-sb), var(--F-fb);
  font-size: var(--T-copy);
  line-height: var(--T-c-lh);
  color: var(--C-black);
}

/* fernwartung */
.fernwartung-sec {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  background-color: var(--C-white);
  padding: var(--S-ularge) var(--S-xlarge) calc(var(--S-ularge) * 2) var(--S-xlarge);
  margin-top: calc(-1 * var(--S-xsmall));
  border-radius: 10px;
  scroll-margin-top: var(--S-ularge);
}

.fernwartung-sec h2 {
  font-family: var(--F-int-l), var(--F-fb);
  font-size: var(--T-xlarge);
  line-height: var(--T-h-lh);
  font-weight: normal;
}

.fernwartung-sec-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--S-medium);
}

.fernwartung-sec-txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 660px;
}

.fernwartung-sec-txt p {
  font-size: var(--T-copy);
  line-height: var(--T-c-lh);
  color: var(--C-d-grey);
  font-weight: normal;
}

.fernwartung-sec-txt span {
  font-size: var(--T-medium);
  line-height: var(--T-c-lh);
  font-weight: normal;
  color: var(--C-black);
  padding-bottom: var(--S-medium);
}

.steps {
  list-style: decimal;
  margin-left: var(--S-small);
}

.steps li {
  font-size: var(--T-copy);
  line-height: var(--T-c-lh);
  color: var(--C-d-grey);
  font-weight: normal;
}

/* fernwartung services */
.fernwartung-sec-sv {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background-color: var(--C-d-blue);
  justify-content: space-between;
  padding: var(--S-ularge) var(--S-xlarge) calc(var(--S-ularge) * 2) var(--S-xlarge);
  margin-top: calc(-1 * var(--S-xsmall));
  border-radius: 10px;
  scroll-margin-top: var(--S-ularge);
}

.fernwartung-sec-sv h2 {
  font-family: var(--F-int-l), var(--F-fb);
  font-size: var(--T-xlarge);
  line-height: var(--T-h-lh);
  font-weight: normal;
  color: var(--C-white);
}

.fernwartung-sec-sv-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--S-medium);
}

.fernwartung-sec-sv-txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
}

.fernwartung-sec-sv-txt p {
  font-size: var(--T-copy);
  line-height: var(--T-c-lh);
  color: var(--C-l-grey);
  font-weight: normal;
}

.fernwartung-sec-sv-txt span {
  font-size: var(--T-medium);
  line-height: var(--T-c-lh);
  font-weight: normal;
  color: var(--C-white);
  padding-bottom: var(--S-medium);
}

.steps-sv {
  list-style: decimal;
  margin-left: var(--S-small);
}

.steps-sv li {
  font-size: var(--T-copy);
  line-height: var(--T-c-lh);
  color: var(--C-l-grey);
  font-weight: normal;
}

/* kunden */
.kunden-sec {
  display: flex;
  flex-direction: column;
  background-color: var(--C-l-blue);
  border-radius: 10px;
  margin-top: calc(-2 * var(--S-xsmall));
}

.kunden-sec-txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: var(--S-ularge) var(--S-xlarge) var(--S-ularge) var(--S-xlarge);
  gap: var(--S-large);
  color: var(--C-d-blue);
}

.kunden-sec-txt h2 {
  font-family: var(--F-int-l), var(--F-fb);
  font-size: var(--T-xlarge);
  line-height: var(--T-h-lh);
  font-weight: normal;
}

.kunden-sec-txt p {
  font-size: var(--T-copy);
  line-height: var(--T-c-lh);
  color: var(--C-d-blue);
  font-weight: normal;
  max-width: 450px;
}

.kunden-sec-logos {
  height: auto;
  width: 100vw;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  margin-bottom: calc(var(--S-ularge) * 1.5);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.kunden-sec-logo-marquee {
  width: 100%;
  overflow: hidden;
}

.kunden-sec-logo-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: scroll22 15s linear infinite;
  align-items: center;
}

@keyframes scroll22 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.kunden-sec-logo-track img {
  height: auto;
  width: calc(var(--S-ularge) * 2);
  opacity: 1;
  filter: grayscale(1) brightness(0.2) saturate(100%) invert(13%) sepia(22%) saturate(2000%) hue-rotate(180deg);
  transition: all 0.3s;
}

#kunden-sec-logo-track-01 {
  height: auto;
  width: calc(var(--S-ularge) * 1.2);
}

.kunden-sec-logo-track img:hover {
  opacity: 1;
  filter: grayscale(1) brightness(0.8) saturate(100%) invert(13%) sepia(22%) saturate(2000%) hue-rotate(180deg);
}

/* call to action */
.call-to-actn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--S-ularge) var(--S-xlarge) calc(var(--S-ularge) * 2) var(--S-xlarge);
  gap: var(--S-large);
  margin-top: calc(-2 * var(--S-xsmall));
  border-radius: 10px;
}

.call-to-actn h2 {
  font-family: var(--F-int-l), var(--F-fb);
  font-size: var(--T-xlarge);
  line-height: var(--T-h-lh);
  font-weight: normal;
  max-width: 700px;
}

/* kontakt */
.form-container {
  display: flex;
  flex-direction: row;
  align-self: flex-start;
  justify-content: space-between;
  background-color: var(--C-white);
  padding: 0 var(--S-xlarge) var(--S-small) var(--S-xlarge);
}

form {
  display: inline-block;
  font-family: var(--F-int-l), var(--F-fb);
  width: 100%;
  max-width: 500px;
  padding: 0 0 var(--S-ularge) 0;
}

label {
  font-family: var(--F-int-l), var(--F-fb);
  font-size: var(--T-copy);
  color: var(--C-black);
}

input,
textarea {
  padding: var(--S-xsmall);
  border: 1px solid var(--C-m-blue);
  border-radius: 10px;
  font-family: var(--F-int-l), var(--F-fb);
  font-size: var(--T-copy);
  caret-color: var(--C-m-blue);
  background-color: var(--C-white);
  color: var(--C-black);
  font-weight: normal;
}

input:focus,
textarea:focus {
  border: 1px solid var(--C-d-blue);
  outline: none;
}

input:not(:placeholder-shown),
textarea:not(:placeholder-shown) {
  border: 1px solid var(--C-d-blue);
  outline: none;
}

textarea {
  resize: vertical;
  min-height: var(--S-Form-min);
  max-height: var(--S-Form-max);
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: var(--S-large);
  margin-bottom: var(--S-large);
}

form p {
  font-family: var(--F-int-l), var(--F-fb);
  font-size: var(--T-copy);
  line-height: var(--T-c-lh);
  font-weight: normal;
}

.form-group input {
  font-family: var(--F-int-l), var(--F-fb);
  color: var(--C-black);
  width: 100%;
  padding: var(--S-xsmall);
  font-size: var(--T-copy);
  box-sizing: border-box;
  font-weight: normal;
}

.form-group label span {
  font-family: var(--F-int-l), var(--F-fb);
  color: var(--C-d-blue);
  font-size: var(--T-copy);
  position: absolute;
  left: 8px;
  top: 15px;
  background-color: transparent;
  padding: 0 var(--S-xxsmall);
  line-height: 1;
  transition: all 0.3s ease;
  pointer-events: none;
  font-weight: normal;
}

.form-group input:focus + label span,
.form-group textarea:focus + label span,
.form-group input:not(:placeholder-shown) + label span,
.form-group textarea:not(:placeholder-shown) + label span {
  font-family: var(--F-int-l), var(--F-fb);
  color: var(--C-m-blue);
  font-size: var(--T-copy);
  top: -8px;
  left: 5px;
  background-color: var(--C-white);
  border-radius: 5px;
  padding: 0 5px;
  font-weight: normal;
}

.form-message {
  font-family: var(--F-int-l), var(--F-fb);
  font-size: var(--T-copy);
  text-align: center;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
}

section {
  background-color: var(--C-white);
}

.skip-link {
  display: none;
}

.transition-overlay {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  background-color: var(--C-d-blue);
  opacity: 0;
  transform: translate3d(0, calc(-100% * var(--overlay-direction, 1)), 0);
  pointer-events: none;
  justify-content: center;
  align-items: center;
}

.transition-overlay img {
  width: calc(var(--S-ularge) * 2);
  height: auto;
}

html.is-changing .transition-overlay {
  transition: transform 500ms ease-in-out;
  opacity: 1;
}

html.is-animating .transition-overlay {
  transform: translate3d(0, 0, 0);
}

html.is-rendering .transition-overlay {
  transform: translate3d(0, calc(var(--overlay-direction, 1) * 100%), 0);
}

.info-sec {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  padding: var(--S-ularge) var(--S-xlarge) calc(var(--S-ularge) * 2) var(--S-xlarge);
}

.info-sec h1,
.info-sec h2 {
  font-family: var(--F-int-m), var(--F-fb);
  font-size: var(--T-copy);
  line-height: var(--T-c-lh);
  font-weight: normal;
}

.info-sec p {
  font-size: var(--T-copy);
  line-height: var(--T-c-lh);
  color: var(--C-d-grey);
  font-weight: normal;
  margin-bottom: var(--S-xlarge);
}

.info-sec a {
  color: var(--C-d-grey);
  text-decoration: none;
}

.info-sec a:hover span {
  display: inline-block;
  animation: bounceArrow 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.info-sec a:hover {
  color: var(--C-m-blue);
}

#info-sec-h1-first {
  margin-top: var(--S-xxlarge);
}

#info-sec-first {
  margin-bottom: var(--S-small);
}

.info-sec ul li {
  font-size: var(--T-copy);
  line-height: var(--T-c-lh);
  color: var(--C-d-grey);
  font-weight: normal;
  margin-left: var(--S-small);
}

@media (max-width: 1050px) {
  .intro-about {
    flex-direction: column;
    gap: calc(var(--S-xlarge) * 1.5);
  }
  .fernwartung-sec {
    flex-direction: column;
    gap: calc(var(--S-xlarge) * 1.5);
  }
  .fernwartung-sec-sv {
    flex-direction: column;
    gap: calc(var(--S-xlarge) * 1.5);
  }
  .footer-txt-right {
    margin: var(--S-ularge) var(--S-ularge) var(--S-ularge) var(--S-small);
    gap: var(--S-xlarge);
  }
}
@media (max-width: 800px) {
  .footer-txt {
    flex-direction: column;
  }
  .footer-txt-left {
    margin: var(--S-ularge) var(--S-xlarge) var(--S-small) var(--S-xlarge);
  }
  .footer-txt-right {
    margin: var(--S-xlarge) var(--S-xlarge);
  }
}
@media (max-width: 768px) {
  header {
    top: 20px;
    left: 20px;
    right: 20px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    position: fixed;
    z-index: 1000;
    border-radius: 50px;
    font-family: var(--F-int-r), var(--F-fb);
    font-size: var(--T-copy);
    background-color: rgba(100, 100, 100, 0.6);
    backdrop-filter: blur(10px);
    pointer-events: all;
  }
  header a {
    z-index: 1001;
  }
  header img {
    height: 20px;
    width: auto;
    cursor: alias;
  }
  header button {
    font-family: var(--F-int-m), var(--F-fb);
    font-size: var(--T-copy);
    border: none;
    background-color: var(--C-l-blue);
    border-radius: var(--S-xxlarge);
    padding: var(--S-xsmall) var(--S-medium);
    color: var(--C-d-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease-in-out;
    overflow: hidden;
  }
  header button:hover {
    background-color: var(--C-m-blue);
    color: var(--C-l-blue);
  }
  header nav {
    display: flex;
    align-items: center;
    gap: var(--S-small);
  }
  header nav ul {
    gap: var(--S-large);
  }
  #m-menu-btn {
    display: block;
    z-index: 1000;
  }
  #h-nav-list {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 75.84px;
    left: 0;
    width: 100%;
    padding-top: var(--S-xxlarge);
    padding-bottom: var(--S-xxlarge);
    border-radius: 20px;
    background-color: var(--C-m-blue);
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  #h-nav-list .h-nav-items {
    counter-increment: nav-counter;
  }
  #h-nav-list .h-nav-items a {
    display: flex;
    align-items: center;
    gap: var(--S-ularge);
    padding-left: var(--S-small);
    padding-right: var(--S-small);
  }
  #h-nav-list .h-nav-items a::before {
    content: "0" counter(nav-counter);
    display: inline-block;
    font-family: var(--F-int-r), var(--F-fb);
    font-size: var(--T-copy);
    color: var(--C-white);
    opacity: 1;
    font-variant-numeric: tabular-nums;
  }
  #h-nav-list .h-nav-items {
    width: 100%;
    font-family: var(--F-int-m), var(--F-fb);
    font-size: var(--T-medium);
    text-align: left;
    border-bottom: 1px solid var(--C-l-blue);
    padding-bottom: var(--S-large);
  }
  #h-nav-list .h-nav-items:first-child {
    border-top: 1px solid var(--C-l-blue);
    padding-top: var(--S-large);
  }
  #h-nav-list.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  #m-menu-btn {
    background-color: var(--C-l-blue);
    color: var(--C-d-blue);
  }
  #m-menu-btn.active {
    background-color: var(--C-m-blue);
    color: var(--C-l-blue);
  }
  #menu-overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 90;
  }
  #menu-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
  .hero-txt h1 {
    font-size: var(--T-xlarge);
  }
  .hero-secdn-txt h1 {
    font-size: var(--T-xlarge);
  }
  .services-ov-item {
    display: flex;
    flex-direction: column;
    gap: var(--S-medium);
  }
  .call-to-actn h2 {
    font-size: calc(var(--T-large) * 1.25);
  }
  .footer-txt-left h2 {
    font-size: calc(var(--T-large) * 1.25);
  }
  .footer-btm-top img {
    height: var(--S-xxlarge);
    width: auto;
  }
  .form-group label span {
    left: 8px;
    top: 13px;
  }
  .mque-txt-block p {
    font-size: calc(var(--T-copy) / 1.5);
  }
  .form-group,
  .form-container,
  form,
  input,
  textarea {
    font-size: 16px !important;
  }
}

/*# sourceMappingURL=main.css.map */
