@font-face {
  font-display: swap;
  font-family: Manrope;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/manrope-v20-latin-regular.woff2) format('woff2')
}

@font-face {
  font-display: swap;
  font-family: Manrope;
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/manrope-v20-latin-500.woff2) format('woff2')
}

@font-face {
  font-display: swap;
  font-family: Manrope;
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/manrope-v20-latin-600.woff2) format('woff2')
}

@font-face {
  font-display: swap;
  font-family: Manrope;
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/manrope-v20-latin-700.woff2) format('woff2')
}

@font-face {
  font-display: swap;
  font-family: Manrope;
  font-style: normal;
  font-weight: 800;
  src: url(../fonts/manrope-v20-latin-800.woff2) format('woff2')
}

@font-face {
  font-display: swap;
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/exo-2-v26-latin-regular.woff2) format('woff2')
}

@font-face {
  font-display: swap;
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/exo-2-v26-latin-500.woff2) format('woff2')
}

@font-face {
  font-display: swap;
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/exo-2-v26-latin-600.woff2) format('woff2')
}

@font-face {
  font-display: swap;
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/exo-2-v26-latin-700.woff2) format('woff2')
}

@font-face {
  font-display: swap;
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 800;
  src: url(../fonts/exo-2-v26-latin-800.woff2) format('woff2')
}


:root {
  --color-bg-white: #ffffff;
  --color-font-white: #ffffff;
  --color-font-blue: #00417A;
  --color-lighter-blue: #a3d9ff;
  --color-font-lightblue-alt: #A3D9FF;
  --color-dark-blue: #003665;
  --color-blue: #00417A;
  --color-font-darkblue-alt: #084A82;
  --color-font-darkblue-alt2: #003665;
  --color-font-darkblue-alt3: #005096;
  --color-bg-lightgrey: #F2F6FA;
  --color-font-skyblue: #4CA6E4;
  --copy-text-small: 16px;
  --copy-text-big: 18px;
  --button-text: 18px;
  --headline-xs: 24px;
  --headline-s: 32px;
  --headline-m: 36px;
  --headline-l: 48px;
  --headline-xl: 56px;
  --main-padding-left: 80px;
  --main-padding-right: 80px;
  --section-padding-top: 120px;
  --section-padding-bottom: 120px;
  --btn-transition: 225ms ease-in-out;
  --btn-pos-bg-color: #00417A;
  --btn-pos-text-color: #ffffff;
  --btn-pos-hover-bg-color: #00325E;
  --btn-pos-hover-shadow-color: #0F2454;
  --btn-pos-focus-shadow-color: #4CA6E4;
  --btn-pos-outlined-text-color: #00417A;
  --btn-pos-outlined-border-color: #00417A;
  --btn-pos-outlined-bg-color: #ffffff;
  --btn-pos-outlined-hover-shadow-color: #0F2454;
  --btn-pos-outlined-focus-shadow-color: #4CA6E4;
  --btn-neg-bg-color: #ffffff;
  --btn-neg-text-color: #00417A;
  --btn-neg-hover-bg-color: #F2F6FA;
  --btn-neg-hover-shadow-color: #0F2454;
  --btn-neg-focus-shadow-color: #4CA6E4;
  --btn-neg-focus-bg-color: #FFFFFF;
  --btn-neg-outlined-bg-color: #00417A;
  --btn-neg-outlined-text-color: #ffffff;
  --btn-neg-outlined-border-color: #ffffff;
  --btn-neg-outlined-hover-bg-color: #00325E;
  --btn-neg-outlined-hover-shadow-color: #0F2454;
  --btn-neg-outlined-focus-bg-color: #00417A;
  --btn-neg-outlined-focus-shadow-color: #4CA6E4
}

html {
  font-family: Manrope, Roboto;
  font-size: 14px;
  font-weight: 500;
  scroll-behavior: smooth
}

body {
  width: 100vw;
  height: 100vh;
  width: 100dvw;
  height: 100dvh;
  margin: 0;
  padding: 0;
  overflow: hidden
}

.outer-wrapper {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: 'header' 'main' 'footer';
  justify-content: center
}

main {
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  grid-area: main
}

a {
  text-decoration: none
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0
}

p {
  min-height: 20px;
  margin: 0
}

ul {
  margin: 0
}

figure {
  margin: 0
}

button {
  border: none
}

button:hover {
  border: none
}

img {
  object-fit: contain
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0
}

input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.honeypot {
  position: absolute;
  left: -9999px
}

.color-font-blue {
  color: var(--color-blue)
}

.color-font-lighterblue {
  color: var(--color-lighter-blue)
}

.color-font-lightblue-alt {
  color: var(--color-font-lightblue-alt)
}

.color-font-darkblue {
  color: var(--color-dark-blue)
}

.color-font-darkblue-alt {
  color: var(--color-font-darkblue-alt)
}

.color-font-darkblue-alt2 {
  color: var(--color-font-darkblue-alt2)
}

.color-font-darkblue-alt3 {
  color: var(--color-font-darkblue-alt3)
}

.color-font-white {
  color: var(--color-font-white)
}

.color-font-skyblue {
  color: var(--color-font-skyblue)
}

/*-----HEADER--------*/
header {
  width: 100%;
  height: 80px;
  grid-area: header;
  box-sizing: border-box;
  box-shadow: 0 4px 14px 0 #1f588A29;
  z-index: 3;
  background-color: #fff;
  display: flex;
  justify-content: center
}

.header-content {
  padding-right: var(--main-padding-right);
  padding-left: var(--main-padding-left);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  z-index: 1;
  justify-content: space-between;
  width: 100%
}

.logo:focus img {
  transform: scale(0.9);
}

.logo img {
  transition: transform 125ms ease-out;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px
}

nav>div {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: var(--button-text)
}

nav a {
  color: var(--color-blue)
}

.contact_btn {
  color: var(--color-font-white);
  margin-left: 8px;
  color: var(--color-font-white);
  padding: 10px 24px;
  background-color: var(--color-blue)
}

.menu-toggle {
  display: inline-block;
  cursor: pointer
}

.menu-toggle input {
  display: none
}

.hamburger {
  width: 30px;
  height: 25px;
  position: relative
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-blue);
  transition: .3s ease
}

.hamburger span:nth-child(1) {
  top: 0
}

.hamburger span:nth-child(2) {
  top: 11px
}

.hamburger span:nth-child(3) {
  bottom: 0
}

.menu-toggle input:checked+.hamburger span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px
}

.menu-toggle input:checked+.hamburger span:nth-child(2) {
  opacity: 0
}

.menu-toggle input:checked+.hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 11px
}

/*-----HEADER--------*/
/*-----NAV_MENU-----*/
.main-nav__toggle {
  position: absolute;
  left: 0;
  z-index: 1;
  color: var(--color-font-blue);
  background: 0 0;
  border: 0;
  font-weight: 600;
  cursor: pointer
}

.arrow {
  cursor: pointer;
  width: 24px;
  margin-left: .3rem;
  transition: transform 225ms ease-in-out
}

.dropdown {
  transition: opacity 225ms ease-in-out;
  position: absolute;
  top: 40px;
  background-color: var(--color-bg-lightgrey);
  padding: 16px 24px 16px 24px;
  list-style: none;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 0
}

.dropdown li a {
  transition: color 225ms ease-in-out;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

.dropdown li:hover a {
  color: var(--color-font-skyblue);
}

.dropdown li a:focus {
  color: var(--color-font-blue);
}

.main-nav__item {
  position: relative;
  width: 130px
}

.main-nav__item:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  z-index: 2
}

.main-nav__toggle:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  z-index: 2
}

.dropdown:hover {
  opacity: 1;
  pointer-events: all;
  z-index: 2
}

.main-nav__item:hover .arrow {
  transform: rotate(180deg)
}

.services-dropdown-link {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  height: fit-content;
  width: 126px;
  top: -12px;
  padding-bottom: 29px;
}

/*-----NAV_MENU-----*/

.headline {
  font-family: 'Exo 2';
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -2%
}

.headline-xxl {
  font-size: 64px
}

.headline-xl {
  font-size: 56px
}

.headline-l {
  font-size: 48px
}

.headline-m {
  font-size: 36px
}

.headline-s {
  font-size: 32px
}

.headline-xs {
  font-size: 24px;
  line-height: 1.5;
}

.btn-text {
  font-weight: 800;
  font-size: 18px;
  line-height: 1.8;
}

.text-headline {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;

}

.text-headline-manrope {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}

.label-alt-headline {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3
}

.label-alt-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 12px
}

.text-regular {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
}

.text-regular500 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
}

.label {
  font-weight: 600;
  font-size: 14px;
  line-height: 2;
  /* ist wie 28px */
}

.label-big {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.5;
}

.copy-text-big {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
}

.copy-text-small {
  font-weight: 600;
  font-size: 16px;
}

.copy-text-smaller {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

.link-text {
  font-weight: 800;
  font-size: 18px;
  line-height: 1.5;
}

.header-link-text {
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
}

.font16-500{
  font-size: 16px;
  font-weight: 500;
}

.btn-pos {
  justify-content: center;
  display: flex;
  cursor: pointer;
  width: fit-content;
  min-width: 247px;
  transition: background-color, box-shadow, var(--btn-transition);
  color: var(--btn-pos-text-color);
  padding: 10px 36px;
  background-color: var(--btn-pos-bg-color);
  box-sizing: border-box;
}

.btn-pos:hover {
  background-color: var(--btn-pos-hover-bg-color);
  box-shadow: 6px 6px 0 0 var(--btn-pos-hover-shadow-color);
}

.btn-pos:focus {
  color: var(--btn-pos-text-color);
  box-shadow: 0 0 0 1px var(--btn-pos-focus-shadow-color);
}

.btn-pos-outlined {
  justify-content: center;
  display: flex;
  min-width: 247px;
  cursor: pointer;
  width: fit-content;
  transition: background-color, box-shadow, var(--btn-transition);
  color: var(--btn-pos-outlined-text-color);
  border: 1px solid var(--btn-pos-outlined-border-color);
  background-color: var(--btn-pos-outlined-bg-color);
  padding: 10px 17px;
  box-sizing: border-box;
}

.btn-pos-outlined:hover {
  box-shadow: 6px 6px 0 0 var(--btn-pos-outlined-hover-shadow-color);
}

.btn-pos-outlined:focus {
  box-shadow: 0 0 0 3px #4ca6e4;
}

.btn-neg {
  justify-content: center;
  display: flex;
  min-width: 247px;
  cursor: pointer;
  width: fit-content;
  transition: background-color, box-shadow, var(--btn-transition);
  color: var(--btn-neg-text-color);
  padding: 10px 36px;
  background-color: var(--btn-neg-bg-color);
  box-sizing: border-box;
}

.btn-neg:hover {
  background-color: var(--btn-neg-hover-bg-color);
  box-shadow: 6px 6px 0 0 var(--btn-neg-hover-shadow-color);
}

.btn-neg:focus {
  background-color: var(--btn-neg-focus-bg-color);
  box-shadow: 0 0 0 3px var(--btn-neg-focus-shadow-color);
}

.btn-with-icon {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 17px
}

.btn-neg-outlined {
  justify-content: center;
  display: flex;
  min-width: 247px;
  cursor: pointer;
  width: fit-content;
  transition: background-color, box-shadow, var(--btn-transition);
  color: var(--btn-neg-outlined-text-color);
  border: 1px solid var(--btn-neg-outlined-border-color);
  box-sizing: border-box;
}

.btn-neg-outlined:hover {
  background-color: var(--btn-neg-outlined-hover-bg-color);
  box-shadow: 10px 6px 0 0 var(--btn-neg-outlined-hover-shadow-color);
}

.btn-neg-outlined:focus {
  background-color: var(--btn-neg-outlined-focus-bg-color);
  box-shadow: 0 0 0 3px var(--btn-neg-outlined-focus-shadow-color);
}

.header-contact-btn {
  font-weight: 700;
  padding: 9px 24px;
  font-size: 16px;
  cursor: pointer;
  width: fit-content;
  transition: background-color, box-shadow, var(--btn-transition);
  color: var(--btn-pos-text-color);
  background-color: var(--btn-pos-bg-color);
}

.header-contact-btn:hover {
  background-color: var(--btn-pos-hover-bg-color);
  box-shadow: 6px 6px 0 0 var(--btn-pos-hover-shadow-color);
}

.header-contact-btn:focus {
  color: var(--btn-pos-text-color);
  box-shadow: 0 0 0 1px var(--btn-pos-focus-shadow-color);
}

.overflow-hidden {
  overflow: hidden
}

.overflow-visible {
  overflow: visible !important
}

.flex-row-start-gap12 {
  display: flex;
  align-items: flex-start;
  gap: 12px
}

.flex-row-start-gap20 {
  display: flex;
  align-items: flex-start;
  gap: 20px
}

.flex-row-start-gap24 {
  display: flex;
  align-items: flex-start;
  gap: 24px
}

.flex-row-gap2 {
  display: flex;
  align-items: center;
  gap: 2px
}

.flex-row-gap4 {
  display: flex;
  align-items: center;
  gap: 4px
}

.flex-row-gap5 {
  display: flex;
  align-items: center;
  gap: 5px
}

.flex-row-gap12 {
  display: flex;
  align-items: center;
  gap: 12px
}

.flex-row-gap15 {
  display: flex;
  align-items: center;
  gap: 15px
}

.flex-row-gap20 {
  display: flex;
  align-items: center;
  gap: 20px
}

.flex-row-gap24 {
  display: flex;
  align-items: center;
  gap: 24px
}

.flex-column-gap16 {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.flex-column-gap17 {
  display: flex;
  flex-direction: column;
  gap: 17px
}

.flex-column-gap5 {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.flex-column-gap8 {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.flex-column-gap12 {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.flex-column-gap20 {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.flex-column-gap24 {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.flex-column-gap32 {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.flex-column-gap40 {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.flex-row-between {
  display: flex;
  justify-content: space-between
}

.flex-middle {
  display: flex;
  justify-content: center
}

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

.flex-wrap {
  flex-wrap: wrap
}

.grid-column-gap20 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.grid-column-gap40 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px
}

.grid-span1 {
  grid-column: span 1
}

.grid-span2 {
  grid-column: span 2
}

.grid-full {
  grid-column: span 12 !important
}

.grid-middle {
  grid-column: span 6
}

.flex1 {
  flex: 1;
}

.grid-template4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.label-underline {
  text-decoration: underline;
  text-decoration-thickness: 9%
}

.spacer-line {
  touch-action: none;
  -webkit-user-select: none;
  user-select: none
}

.comparison-slider-figure {
  touch-action: none
}

.video-home-wrapper {
  position: relative;
}

.img-compare {
  position: relative;
  width: 500px;
  max-width: 100%;
  overflow: hidden
}

.img-compare img {
  display: block;
  width: 100%
}

.img-front-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden
}

.slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #fff;
  border: 1px solid #000;
  cursor: ew-resize
}

.alert {
  margin-top: 5px;
  color: #e61c40
}

.height-full {
  height: 100%;
}

.width-full {
  width: 100%
}

.width-half {
  width: 50%
}

.d-none {
  display: none
}

.d-none-important {
  display: none !important
}

.marg-top20 {
  margin-top: 20px;
}

.marg-top12 {
  /* wird 4px, ab 603 */
  margin-top: 12px;
}

.marg-bot6 {
  margin-bottom: 6px
}

.marg-left9 {
  margin-left: 9px
}

.marg-left4 {
  margin-left: 4px
}

.max-width345 {
  max-width: 345px
}

.pad-left4 {
  padding-left: 4px;
}

.pad-left26 {
  padding-left: 26px;
}

.align-center {
  align-items: center
}

.subheadline-second-half {
  margin-left: 4px;
  font-weight: 500
}

img-comparison-slider {
  visibility: hidden;
  outline: none;
}

img-comparison-slider [slot='second'] {
  display: none;
}

img-comparison-slider.rendered {
  visibility: inherit;
}

img-comparison-slider.rendered [slot='second'] {
  display: unset;
}

img-comparison-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img-comparison-slider .handle {
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 35px;
  height: 72px;
  width: 69px;
  min-width: 69px;
  background-color: var(--color-bg-white)
}