@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * 1. Fill the viewport block in all browsers (opinionated).
 * 2. Remove the margin in all browsers (opinionated).
 */
:where(body) {
  block-size: -moz-available; /* 1 */
  block-size: -webkit-fill-available; /* 1 */
  block-size: stretch; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type="button" i], [type="reset" i], [type="submit" i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type="search" i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy="true" i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled="true" i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden="false" i][hidden]) {
  display: initial;
}

:where([aria-hidden="false" i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

html{
  overflow-x: hidden;
  width: 100vw;
}
h1,
h2,
h3,
h4,
p {
  margin-block-start: 0;
  margin-block-end: 0;
}

/**************** Container ***************/
/*************** Section *****************/
/******************** Hover, Shadow, andere... *********************/
@font-face {
  font-family: Lato;
  src: url("../assets/font/Lato-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: Lato;
  src: url("../assets/font/Lato-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: Lato;
  src: url("../assets/font/Lato-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: Lato;
  src: url("../assets/font/Lato-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: Lato;
  src: url("../assets/font/Lato-Black.ttf");
  font-weight: 900;
}
@font-face {
  font-family: PublicSans;
  src: url("../assets/font/PublicSans-ExtraBold.ttf");
  font-weight: 800;
}
/************** Schriftgrößen ************/
h1 {
  font-size: 3.111rem;
  line-height: 3.556rem;
  font-weight: 500;
}
@media (max-width: 1600px) {
  h1 {
    font-size: 2.8rem;
    line-height: 3.556rem;
  }
}
@media (max-width: 1500px) {
  h1 {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

h2 {
  font-size: 2rem;
  line-height: 2.6rem;
  padding-bottom: 1.5rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}

h3 {
  font-size: 2rem;
  line-height: 2.2rem;
  font-weight: 500;
  padding-bottom: 1.778rem;
}

h4 {
  font-size: 1.5rem;
  line-height: 1.7rem;
}

p {
  font-weight: 300;
  color: #002133;
  font-size: 1.111rem;
}

a {
  color: #002133;
  text-decoration: none;
}

button {
  font-family: Lato;
}

.text-small {
  font-size: 0.889rem;
  line-height: 1.556rem;
}

@media screen and (max-width: 768px) {
  p {
    font-size: 1rem;
    margin-top: 0.6rem;
  }
}
html {
  font-size: 18px;
  font-family: Lato;
  background-color: #f2f4f3;
}

h1 {
  font-family: PublicSans;
  font-weight: 800;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease, transform 1s ease;
}

h2 {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease, transform 1s ease;
}

.red {
  color: #cc4514;
}

.background-red {
  background-color: #cc4514;
}

.lightblue {
  background-color: #d6e9f1;
}

.sec-switch {
  flex-direction: row-reverse;
}

.container {
  max-width: 1436px;
  padding: 0 20px;
  margin: 0 auto;
}

.container-sm {
  max-width: 1186px;
  margin: 0 auto;
}

section {
  padding: 100px 0;
}
@media (max-width: 767px) {
  section {
    padding: 100px 0;
  }
}

.uppercase {
  text-transform: uppercase;
}

.padding-top-bottom-half {
  padding: 128px 0;
}
@media (max-width: 767px) {
  .padding-top-bottom-half {
    padding: 70px 0;
  }
}

.padding-bottom-half {
  padding-bottom: 128px;
}
@media (max-width: 767px) {
  .padding-bottom-half {
    padding-bottom: 70px 0;
  }
}

.padding-bottom-sm {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .padding-bottom-sm {
    padding-bottom: 40px 0;
  }
}

.margin-bottom-sm {
  margin-bottom: 80px !important;
}
@media (max-width: 767px) {
  .margin-bottom-sm {
    margin-bottom: 40px;
  }
}

.no-padding {
  padding: 0 !important;
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.darkbg {
  background-color: #022e46;
  color: white;
}
.darkbg p {
  color: white !important;
}

.row-reverse {
  flex-direction: row-reverse !important;
}

.col-reverse {
  flex-direction: column-reverse !important;
}

.tagline {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.778rem;
  text-transform: uppercase;
}
/* 1.07.2024 - breadcrumbs responsive */
.breadcrumbs {
  display: flex;
  font-size: 1.111rem;
  font-weight: 300;
  line-height: 2rem;
  column-gap: 2rem;
  padding: 3.556rem 20px;
  /* flex-direction: column; */
  flex-wrap: wrap;
}
.breadcrumbs a {
  position: relative;
}
@media (max-width: 500px) {
  .breadcrumbs {
    /*flex-direction: column;*/
    gap: 0.2rem 2rem;
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.breadcrumbs > *:not(:last-child)::after {
  position: absolute;
  content: "";
  top: 20px;
  right: -20px;
  width: 4px;
  height: 8px;
  background-image: url("../assets/svg/Pfad 77.svg");
  background-size: cover; /* Adjust as needed */
  transform: translateY(-50%); /* Center vertically */
}

/* 1.07.2024 */
@media (max-width: 414px) {
  .breadcrumbs > *:not(:last-child)::after {
    /* top: 35px; */
    /* left: 5px; */
    /* transform: rotate(90deg); */
  }
}

.buttonv1 {
  border: none;
  border-radius: 64px;
  background-color: #006499;
  padding: 1rem 1.778rem;
  color: white;
  font-size: 0.944rem;
  line-height: 1.278rem;
  transition: all 0.3s;
}

.buttonv1:hover {
  background-color: #002133;
}

.buttonv2 {
  border: none;
  border-radius: 64px;
  background-color: #cc4514;
  padding: 1rem 1.778rem;
  color: white;
  font-size: 0.944rem;
  line-height: 1.278rem;
  transition: all 0.3s;
  max-width: max-content;
}

.buttonv2:hover {
  background-color: #002133;
}

.buttonTransparent {
  border: 1px solid rgba(0, 33, 51, 0.2);
  border-radius: 64px;
  background-color: transparent;
  padding: 1rem 1.778rem;
  width: max-content;
  font-size: 0.944rem;
  line-height: 1.278rem;
  transition: all 0.3s;
}

.buttonTransparent:hover {
  background-color: #002133;
  color: white;
}
.buttonTransparent:hover a {
  color: white;
}

/* @media (max-width: 1900px) {
  .navigation .menu-overlay #animationContainer2 {
    width: 300px;
    height: auto;
    bottom: 8px;
    left: 6%;
}

.navigation .menu-overlay .sun {
  bottom: -60%;
  left: -21%;
}
} */
@media (max-width: 767px) {
  .buttonv1,
  .buttonv2,
  buttonTransparent {
    padding: 12px 24px;
  }
}
.navigation {
  position: sticky;
  position: webkit-sticky;
	
  position: fixed;
  width: 100%;
	
	
  top: 0;
  z-index: 1000;
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0)
  );
}
.navigation .filler {
  color: #f2f4f3;
}
.navigation .menu-overlay {
  padding-left: 48px;
  padding-right: 48px;
  display: none;
  position: fixed;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  height: 100vh;
  background-color: #f2f4f3;
  z-index: 998;
  transition: transform 0.3s ease-in-out;
  transform: translateY(-100%);
}
.navigation .menu-overlay .sun {
  position: absolute;
  bottom: -604px;
  left: -400px;
  z-index: -1;
}
.navigation .menu-overlay #animationContainer2 {
  width: 380px;
  height: auto;
  position: absolute;
  bottom: 15px;
  left: 100px;
}
.navigation .menu-overlay .anker_content {
  max-width: 1640px;
  margin: 170px auto;
  display: flex;
  gap: 3.333rem;
  justify-content: space-between;
  z-index: 1;
  position: relative;
}
.navigation .menu-overlay .anker_content .headline {
  margin-bottom: 3.833rem;
  font-weight: 500;
  font-size: 1.5rem;
}
.navigation .menu-overlay .anker_content li a {
  font-size: 1.444rem;
  line-height: 3.333rem;
  font-weight: 300;
}
.navigation .menu-overlay .anker_content .left {
  border-top: 2px solid rgba(0, 100, 153, 0.2);
  display: flex;
  gap: 5rem;
  flex: 1;
  padding-top: 0.667rem;
}

@media (max-width: 1900px) {
  .navigation .menu-overlay #animationContainer2 {
    width: 300px;
    height: auto;
    bottom: 8px;
    left: 6%;
  }

  .navigation .menu-overlay .sun {
    bottom: -60%;
    left: -21%;
  }
}
@media (max-width: 1600px) {
  .navigation .menu-overlay .sun {
    position: absolute;
    bottom: -587px;
    left: -400px;
  }

  .navigation .menu-overlay #animationContainer2 {
    width: 300px;
    height: auto;
    position: absolute;
    bottom: 50px;
    left: 100px;
  }

  .navigation .menu-overlay .anker_content li a {
    font-size: 1.2rem;
    line-height: 2.9rem;
  }
}
@media (max-width: 1250px) {
  .navigation .menu-overlay .anker_content .left {
    gap: 5rem 2rem;
  }
}
.navigation .menu-overlay .anker_content .right {
  padding-top: 0.667rem;
  gap: 2rem 5rem;
  border-top: 2px solid rgba(0, 100, 153, 0.2);
  flex: 1;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
}
.navigation .menu-overlay .anker_content .right .col .social_box {
  margin-top: 1.333rem;
  gap: 1rem;
  display: flex;
}
@media (max-width: 1250px) {
  .navigation .menu-overlay .anker_content .right {
    gap: 2rem 2rem;
  }
}
.navigation .navigation-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 24px 48px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 999;
}
.navigation .navigation-container__left .logo-hover {
  display: none;
  transform: translateY(-10px);
  transition: transform 0.3s ease;
}
.navigation .navigation-container__left .logo {
  position: absolute;
  top: 24px;
  width: 150px;
}
.navigation .navigation-container__left .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}
.navigation .navigation-container__left .logo:hover .logo-hover {
  display: block;
}
.navigation .navigation-container__left .logo:hover img {
  display: none;
}
.navigation .navigation-container__right {
  display: flex;
  gap: 34px;
  align-items: center;
}
.navigation .navigation-container .hamburger-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.navigation .navigation-container .hamburger-menu div:nth-child(1),
.navigation .navigation-container .hamburger-menu div:nth-child(2) {
  width: 48px;
  height: 4px;
  background-color: #006499;
  border-radius: 12px;
}
.navigation .navigation-container .hamburger-menu div:nth-child(3) {
  width: 24px;
  height: 4px;
  background-color: #006499;
  border-radius: 12px;
  transition: width 0.3s;
}
.navigation .navigation-container .hamburger-menu:hover div:nth-child(3) {
  width: 48px;
}

@media (max-width: 1600px) {
  .navigation .navigation-container__left .logo {
    width: 120px;
  }
}

@media (max-width: 1024px) {
  .navigation .menu-overlay .sun {
    display: none;
  }
  .navigation .menu-overlay #animationContainer2 {
    display: none;
  }
  .navigation .menu-overlay .anker_content li a {
    font-size: 1rem;
  }
  .navigation .menu-overlay .anker_content .headline {
    font-weight: 700;
    margin-bottom: 0;
  }
  .navigation .menu-overlay .anker_content .left {
    padding-left: 48px;
    gap: 1rem;
    flex-direction: column;
  }
  .navigation .menu-overlay .anker_content .right {
    padding-right: 48px;
    gap: 1rem;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .navigation .navigation-container {
    padding: 20px;
  }
  .navigation img {
    max-width: 100px;
  }
  .navigation .menu-overlay {
    overflow-y: auto;
    padding-left: 0px;
    padding-right: 0px;
  }
  .navigation .menu-overlay .filler {
    display: none;
  }
  .navigation .menu-overlay .anker_content li a {
    font-size: 1.444rem;
    line-height: 2rem;
  }
  .navigation .menu-overlay .anker_content {
    gap: 1rem;
  }
  .navigation .menu-overlay .anker_content li a {
    font-size: 1rem;
  }
  .navigation .menu-overlay .anker_content .headline {
    font-weight: 700;
    margin-bottom: 0;
  }
  .navigation .menu-overlay .anker_content .left {
    padding-left: 20px;
    gap: 1rem;
    flex-direction: column;
  }
  .navigation .menu-overlay .anker_content .right {
    padding-right: 20px;
    padding-bottom: 20px;
    gap: 1rem;
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 479px) {
	.navigation .menu-overlay .anker_content {
		margin: 6.667rem 0;
		height: 100vh;
		overflow-y: auto;
		gap: 1rem;
		flex-direction: column;
  }
	
	.navigation .menu-overlay .anker_content .right {
    padding-left: 20px;
}
}

@media (max-width: 414px) {
  .navigation .navigation-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 24px 20px;
    align-items: center;
    flex-wrap: wrap;
    z-index: 999;
  }
  .navigation .navigation-container__right {
    display: flex;
    gap: 14px;
  }
  .navigation .menu-overlay {
    padding-left: 0px;
    padding-right: 0px;
  }
  .navigation .menu-overlay .anker_content {
    margin: 6.667rem 0;
    height: 100vh;
    overflow-y: auto;
    gap: 1rem;
    flex-direction: column;
  }
  .navigation .menu-overlay .anker_content .headline {
    margin-bottom: 0;
  }
  .navigation .menu-overlay .anker_content li a {
    font-size: 1rem;
  }
  .navigation .menu-overlay .anker_content .headline {
    font-weight: 700;
  }
  .navigation .menu-overlay .anker_content .left {
    padding-left: 20px;
    gap: 1rem;
  }
  .navigation .menu-overlay .anker_content .right {
    padding-right: 20px;
    padding-left: 20px;
    gap: 1rem;
  }
}

@media (max-width: 370px) {
  .navigation .navigation-container__left .logo {
    width: 90px;
  }
}

@media (max-height: 900px) and (max-width: 1920px) {
  .navigation .menu-overlay .anker_content .right {
    gap: 1rem 5rem;
  }
  .navigation .menu-overlay .anker_content .headline {
    margin-bottom: 1rem;
  }
  /* .navigation .menu-overlay .sun {
    bottom: -100%;
  } */
  /* .navigation .menu-overlay #animationContainer2 {
    width: 250px;
    height: 330px;
    position: absolute;
    bottom: -150px; 
    left: 2%;
  } */
  .navigation .menu-overlay .anker_content {
    margin: 135px auto;
  }
}
.header {
  padding-top: 200px;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.header #animationContainer {
  width: 685px;
  height: 634px;
}
.header__content {
  display: flex;
  padding-left: 242px;
}
.header__left {
  max-width: 562px;
  display: flex;
  flex-direction: column;
  gap: 2.222rem;
}
.header__left button {
  width: max-content;
}
.header__right .img-container {
  position: absolute;
  top: 100px;
  right: 250px;
}
.header__right img {
  width: 100%;
}
.header .sun {
  position: absolute;
  top: 50px;
  right: -200px;
  z-index: -1;
}

@media (max-width: 1650px) {
  .header__content {
    padding-left: 48px;
  }
  .header__right .img-container {
    right: 170px;
  }
  .header #animationContainer {
    width: 685px;
    height: 634px;
  }
  .header .sun {
    right: -25%;
  }
}
@media (max-width: 1440px) {
  .header__right .img-container {
    right: -100px;
  }
  .header .sun {
    right: -30%;
  }
}
@media (max-width: 1024px) {
  .header {
    padding-top: 50px;
    height: 100%;
    padding-bottom: 0;
  }
  .header #animationContainer {
    width: 280px;
    height: 230px;
  }
  .header__content {
    padding-left: 20px;
    flex-direction: column;
  }
  .header__left {
    padding-right: 20px;
  }
  .header__right {
    display: flex;
    justify-content: center;
    margin-top: 70px;
  }
  .header__right .lottie {
    top: unset;
    bottom: -100px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .header .sun {
    max-width: 250px;
    position: static;
  }
}
.headerV2 {
  padding-top: 90px;
  padding-bottom: 60px;
  position: relative;
  /*overflow: hidden;*/
}
.headerV2__content {
  display: flex;
}
.headerV2__left {
  max-width: 750px;
  height: 436px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 2.222rem;
}
.headerV2__left h1 {
  opacity: 1;
}
.headerV2__left .lesedauer {
  font-weight: 400;
}
.headerV2__left button {
  padding: 1rem 1.778rem;
  border-radius: 3.556rem;
  border: solid 1px rgba(0, 33, 51, 0.2);
  background-color: transparent;
  font-size: 0.944rem;
  font-weight: 400;
  width: max-content;
}
.headerV2__right .img-container {
  position: absolute;
  overflow: hidden;
  right: 250px;
  max-width: 448px;
  height: auto;
}
.headerV2__right img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1440px) {
  .headerV2__right .img-container {
    right: -100px;
  }
}
@media (max-width: 1024px) {
  .headerV2 {
    height: auto;
    padding-top: 20rem;
    padding-bottom: 0;
  }
  .headerV2__content {
    padding-left: 20px;
  }
  .headerV2__right .img-container {
    left: 60px;
    top: 30px;
    width: 320px;
  }
}
@media (max-width: 767px) {
  .headerV2 {
    padding-bottom: 0;
  }
  .headerV2__left {
    justify-content: flex-start;
    height: auto;
  }
}
.threeColCards .container__content {
  margin-bottom: 128px;
  display: flex;
  flex-direction: column;
}
.threeColCards .container .cardGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.889rem;
}
.threeColCards .container .cardGrid .card {
  max-width: 456px;
  height: 100% !important;
  background-color: white;
  border-radius: 34px;
  height: 630px;
  padding: 2.611rem;
  display: flex;
  flex-direction: column;
  gap: 1.778rem;
}

.threeColCards .container .cardGrid .card .buttonv2 {
  margin-top: auto;
}

.threeColCards .container .cardGrid .card .header_box {
  display: flex;
  gap: 1.333rem;
  align-items: center;
}
.threeColCards .container .cardGrid .card .header_box img {
  max-width: 96px;
}
.threeColCards .container .cardGrid .card h3 {
  font-size: 1.778rem;
  line-height: 2.333rem;
  font-weight: 300;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .threeColCards .container .cardGrid .card h3 {
    font-size: unset;
    line-height: unset;
  }
}
@media (max-width: 1024px) {
  .threeColCards .container .cardGrid .card h3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.threeColCards .container .cardGrid .card .info_button {
  padding: 1rem 1.333rem;
  border: none;
  border-radius: 38px;
  color: white;
  font-size: 0.944rem;
  font-weight: 700;
  width: 10rem;
}
@media (max-width: 767px) {
  .threeColCards .container .cardGrid .card .info_button {
    padding: 0.667rem 1.333rem;
  }
}
.threeColCards .container .cardGrid .card li::marker {
  color: #cc4514;
}
.threeColCards .container .cardGrid .card__list {
  padding-top: 1.778rem;
  border-top: solid 1px rgba(0, 33, 51, 0.2);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.389rem;
}
.threeColCards .container .cardGrid .card__list .list_content {
  display: flex;
  gap: 1.111rem;
}
.threeColCards .container .cardGrid .card__list .list_content .bubble {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.threeColCards .container .cardGrid .card__list .list_content p {
  font-weight: 400;
}
.threeColCards .container .cardGrid .card .iconbox {
  display: flex;
  gap: 0.444rem;
}
.threeColCards .container .cardGrid .card .iconbox img {
  width: 40px;
  height: 40px;
}
.threeColCards .container .cardGrid .card .selector_button {
  background-color: transparent;
  position: relative;
  width: max-content;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.778rem;
  padding-right: 2.5rem;
  border-radius: 3.556rem;
  font-size: 0.944rem;
  border: solid 1px rgba(0, 33, 51, 0.2);
  cursor: pointer; /* Add cursor pointer for better UX */
}
.threeColCards .container .cardGrid .card .selector_button::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
}
.threeColCards .container .cardGrid .card .dropdown {
  position: relative;
  display: inline-block;
  margin-top: auto;
}
.threeColCards .container .cardGrid .card .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  width: 250.31px;
  border-radius: 16px;
  overflow: hidden;
}
.threeColCards .container .cardGrid .card .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.722rem;
  overflow: hidden;
}
.threeColCards .container .cardGrid .card .dropdown-content a:hover {
  background-color: #f1f1f1;
}
.threeColCards .container .cardGrid .card .dropdown:hover .dropdown-content {
  display: block; /* Display the dropdown content when hovering over dropdown */
}

@media (max-width: 1250px) {
  .threeColCards .container .cardGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .threeColCards .container .cardGrid .card {
    padding: 1.5rem;
  }
}

.threeColCardsV2 .container__content {
  margin-bottom: 128px;
  display: flex;
  flex-direction: column;
}
.threeColCardsV2 .container .cardGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.889rem;
}
.threeColCardsV2 .container .cardGrid .card {
  background-color: white;
  border-radius: 34px;
  padding: 2.611rem;
  display: flex;
  flex-direction: column;
  gap: 1.778rem;
  /* margin-bottom: auto; */
  min-height: 700px;
  height: 100%;
}
.threeColCardsV2 .container .cardGrid .card .header_box {
  display: flex;
  gap: 1.333rem;
  align-items: center;
}
.threeColCardsV2 .container .cardGrid .card .header_box img {
  max-width: 96px;
}
.threeColCardsV2 .container .cardGrid .card h3 {
  font-size: 1.778rem;
  line-height: 2.333rem;
  font-weight: 300;
  padding-bottom: 1.778;
  border-bottom: solid 1px rgba(0, 33, 51, 0.2);
}
@media (max-width: 767px) {
  .threeColCardsV2 .container .cardGrid .card h3 {
    font-size: unset;
    line-height: unset;
  }
}
.threeColCardsV2 .container .cardGrid .card .info_button {
  padding: 1rem 1.333rem;
  border: none;
  border-radius: 38px;
  color: white;
  font-size: 0.944rem;
  font-weight: 700;
  width: 170px;
}
@media (max-width: 767px) {
  .threeColCardsV2 .container .cardGrid .card .info_button {
    padding: 0.667rem 1.333rem;
  }
}
.threeColCardsV2 .container .cardGrid .card li::marker {
  color: #cc4514;
}
.threeColCardsV2 .container .cardGrid .card__list {
  padding-top: 1.778rem;
  border-top: solid 1px rgba(0, 33, 51, 0.2);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.389rem;
}
.threeColCardsV2 .container .cardGrid .card__list .list_content {
  display: flex;
  gap: 1.111rem;
}
.threeColCardsV2 .container .cardGrid .card__list .list_content .bubble {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.threeColCardsV2 .container .cardGrid .card__list .list_content p {
  font-weight: 400;
}
.threeColCardsV2 .container .cardGrid .card .iconbox {
  display: flex;
  gap: 0.444rem;
}
.threeColCardsV2 .container .cardGrid .card .iconbox img {
  width: 40px;
  height: 40px;
}
.threeColCardsV2 .container .cardGrid .card .selector_button {
  background-color: transparent;
  position: relative;
  width: max-content;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.778rem;
  padding-right: 2.5rem;
  border-radius: 3.556rem;
  font-size: 0.944rem;
  border: solid 1px rgba(0, 33, 51, 0.2);
  cursor: pointer; /* Add cursor pointer for better UX */
}
.threeColCardsV2 .container .cardGrid .card .selector_button::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
}
.threeColCardsV2 .container .cardGrid .card .dropdown-content {
  display: none; /* Hide the dropdown content by default */
  position: absolute;
  background-color: #f9f9f9;
  min-width: max-content;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  width: 213.41px;
  border-radius: 32px;
  overflow: hidden;
}
.threeColCardsV2 .container .cardGrid .card .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.722rem;
  overflow: hidden;
}
.threeColCardsV2 .container .cardGrid .card .dropdown-content a:hover {
  background-color: #f1f1f1;
}
.threeColCardsV2 .container .cardGrid .card .dropdown:hover .dropdown-content {
  display: block; /* Display the dropdown content when hovering over dropdown */
}
.threeColCardsV2 .container .cardGrid ul {
  padding: 0;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 1.778rem;
}

@media (max-width: 1250px) {
  .threeColCardsV2 .container .cardGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .threeColCardsV2 .container__content {
    margin-bottom: 2rem !important;
  }
  .threeColCardsV2 .container .cardGrid {
    grid-template-columns: repeat(1, 1fr);
  }
  .threeColCardsV2 .container .cardGrid .card {
    max-width: unset;
    grid-column: span 1;
    background-color: white;
    border-radius: 34px;
    height: 500px;
    gap: 1rem;
    padding: 1.611rem;
  }
  .threeColCardsV2 .container .cardGrid .card .header_box {
    display: flex;
    gap: 1.333rem;
    align-items: center;
  }
  .threeColCardsV2 .container .cardGrid .card .header_box img {
    width: 32px;
    height: 32px;
  }
  .threeColCardsV2 .container .cardGrid .card .info_button {
    font-size: 0.722;
  }
}

@media (max-width: 500px) {
  .threeColCardsV2 .container__content {
    gap: 0.8rem;
  }
}
.imgText .container {
  display: flex;
  width: 100%;
  gap: 3.556rem;
}
.imgText .container__left,
.imgText .container__right {
  flex: 1;
  width: 50%;
}
.imgText .container__left .img_container {
  max-width: 686px;
  width: 100%;
  overflow: hidden;
  border-radius: 32px;
}
.imgText .container__left .img_container img {
  width: 100%;
  object-fit: cover;
}
.imgText .container__right {
  display: flex;
  flex-direction: column;
  gap: 1.778rem;
  justify-content: center;
}
.imgText .container__right button {
  background-color: #006499;
  width: max-content;
  color: white;
  padding: 1rem 1.778rem;
  border: none;
  border-radius: 3.556rem;
}
.imgText .container__right button:hover {
  background-color: #002133;
}
.imgText .container p {
  color: #002133;
}

@media (max-width: 767px) {
  .imgText .container {
    flex-direction: column !important;
    gap: 2rem;
  }
  .imgText .container__right button {
    margin-top: 20px;
  }
  .imgText .container__left,
  .imgText .container__right {
    flex: 1;
    width: 100%;
    gap: 0.5rem;
  }
}
.iconCards .container {
  position: relative;
}
.iconCards .container .bluedot {
  position: absolute;
  top: 50%;
  left: -50%;
  z-index: -1;
}
.iconCards .container__content {
  margin-bottom: 4.444rem;
}
.iconCards .container .card_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.889rem;
}
.iconCards .container .card_grid .card {
  background-color: white;
  border-radius: 32px;
  padding: 1.778rem 0.889rem;
  display: flex;
  flex-direction: column;
}

.iconCards .container .card_grid .card a {
  margin-top: auto;
}

.iconCards .container .card_grid .card img {
  padding-bottom: 1.111rem;
  width: auto;
  height: 80px;
  object-position: left;
  object-fit: contain;
}
.iconCards .container .card_grid .card h4 {
  padding-bottom: 25px;
  font-size: 1.111rem;
  font-weight: 400;
  line-height: 26px;
  grid-column: 2;
}
.iconCards .container .card_grid .card button {
  background-color: transparent;
  color: #cc4514;
  font-size: 0.944rem;
  border: none;
  position: relative;
  transition: transform 0.3s ease; /* Smooth transition for button */
}
.iconCards .container .card_grid .card button::after {
  content: url("../assets/svg/arrow-right.svg");
  display: inline-block;
  width: 28px;
  height: 11px;
  margin-left: 10px;
  position: absolute;
  right: -40px; /* Initial position */
  transition: right 0.3s ease; /* Smooth transition for ::after */
}
.iconCards .container .card_grid .card button:hover {
  transform: translateX(40px); /* Move button to the right */
}
.iconCards .container .card_grid .card button:hover::after {
  right: 130px; /* Translate ::after to the left */
}

@media (max-width: 1600px) {
  .iconCards .container .card_grid {
    gap: 1rem;
  }

  .iconCards .container .card_grid .card h4 {
    padding-bottom: 20px;
  }

  .iconCards .container .card_grid .card {
    border-radius: 28px;
  }

  .iconCards .container__content {
    margin-bottom: 2rem;
  }
}

@media (max-width: 1440px) {
  .iconCards .container {
    overflow: show;
  }
  .iconCards .container .bluedot {
    bottom: -20%;
    left: -60%;
  }
  .iconCards .container .card_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.889rem;
  }
  .iconCards .container .card_grid .card {
    background-color: white;
    border-radius: 32px;
    padding: 1.778rem 0.889rem;
  }
  .iconCards .container .card_grid .card img {
    padding-bottom: 1.111rem;
  }
  .iconCards .container .card_grid .card h4 {
    padding-bottom: 1.778rem;
    font-size: 1.111rem;
  }
}
@media (max-width: 1100px) {
  .iconCards .container .card_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .iconCards .container .bluedot {
    bottom: -30%;
    left: -120%;
  }
  .iconCards .container .card_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .iconCards .container .card_grid .card {
    border-radius: 24px;
    display: grid;
    grid-template-columns: 80px auto;
    align-items: center;
  }

  .iconCards .container .card_grid .card a {
    grid-column: span 2;
  }

  .iconCards .container__content {
    margin-bottom: 2rem;
  }
}

@media (max-width: 500px) {
  .iconCards .container .card_grid {
    grid-template-columns: 1fr;
  }
}
.imgTextV2 .container {
  display: flex;
  width: 100%;
  gap: 3.556rem;
}
.imgTextV2 .container__left,
.imgTextV2 .container__right {
  flex: 1;
  width: 50%;
}
.imgTextV2 .container__left .img_container {
  max-width: 686px;
  width: 100%;
  overflow: hidden;
  border-radius: 32px;
}
.imgTextV2 .container__left .img_container img {
  width: 100%;
  object-fit: cover;
}
.imgTextV2 .container__right {
  display: flex;
  flex-direction: column;
  gap: 1.778rem;
  justify-content: center;
}
.imgTextV2 .container__right .textcontent::before {
  content: url("../assets/svg/komma.svg");
  position: absolute;
  top: -60px;
  left: 0;
}
.imgTextV2 .container__right .textcontent {
  position: relative;
  margin-top: 100px;
}
.imgTextV2 .container__right .textcontent p {
  font-size: 1.778rem;
  font-style: italic;
  font-weight: 500;
}
.imgTextV2 .container__right button {
  background-color: #006499;
  width: max-content;
  color: white;
  padding: 1rem 1.778rem;
  border: none;
  border-radius: 3.556rem;
}
.imgTextV2 .container__right button:hover {
  background-color: #002133;
}
.imgTextV2 .container .avatar_container {
  display: flex;
  gap: 1.333rem;
}
.imgTextV2 .container .avatar_container .img_container {
  max-width: 64px;
  height: 64px;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.imgTextV2 .container .avatar_container .img_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.imgTextV2 .container .avatar_container .text_content .explanation {
  font-size: 0.889rem;
}
.imgTextV2 .container p {
  color: #002133;
}

@media (max-width: 767px) {
  .imgTextV2 .container {
    flex-direction: column !important;
  }
  .imgTextV2 .container__left,
  .imgTextV2 .container__right {
    flex: 1;
    width: 100%;
  }
  .imgTextV2 .container__left .textcontent,
  .imgTextV2 .container__right .textcontent {
    position: relative;
    margin-top: 100px;
  }
  .imgTextV2 .container__left .textcontent p,
  .imgTextV2 .container__right .textcontent p {
    font-size: unset;
    line-height: unset;
    font-style: italic;
    font-weight: 500;
  }
}
.imgTextCol {
  /*overflow: hidden;*/
  overflow: unset;
  position: relative;
}
.imgTextCol .bluedot {
  position: absolute;
  z-index: -1;
  left: -40%;
  top: 30%;

}
@media (max-width: 1550px){
  .imgTextCol .bluedot {
    width: 644px;
    height: 644px;
    left: -30%;
    top: 35%;
  }
}
@media (max-width: 1100px){
  .imgTextCol .bluedot {
    top: 35%;
    width: 444px;
    height: 444px;
  }
}
@media (max-width: 900px){
  .imgTextCol .bluedot {
    top: 35%;
    width: 444px;
    height: 444px;
  }
}

.imgTextCol .avatar_container {
  display: flex;
  gap: 1.333rem;
}
.imgTextCol .avatar_container .name {
  font-weight: 700;
}
.imgTextCol .avatar_container .img_container {
  max-width: 64px;
  height: 64px;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.imgTextCol .avatar_container .img_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Padding  */
.imgTextCol .no-pic {
  padding-left: 18%;
  max-width: unset !important;
}

.imgTextCol .tagline {
  padding-bottom: 0.667rem;
  color: #006499;
}
.imgTextCol .reddot {
  position: absolute;
  top: -400px;
  right: -400px;
  z-index: -1;
  height: 1200px;
  width: 600px;
}

.imgTextCol .container {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 3.556rem;
}
.imgTextCol .container .text_content {
  max-width: 936px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.imgTextCol .container .content_wrapper {
  display: flex;
  gap: 3.6rem;
}
.imgTextCol .container .content_wrapper .img_container {
  max-width: 346px;
  height: auto;
}
.imgTextCol .container .content_wrapper .img_container img {
  width: 100%;
}

@media (max-width: 1500px) {
  .imgTextCol .reddot {
    position: absolute;
    top: 0;
    right: -100px;
    z-index: -1;
    height: 500px;
    width: 250px;
  }
}

@media (max-width: 900px) {
  .imgTextCol .reddot {
	  height: 400px;
    width: 200px;
  }
}

@media (max-width: 767px) {
  .imgTextCol {
    overflow: hidden;
    position: relative;
  }
  /* .imgTextCol .avatar_container {
    margin-bottom: 3rem;
  } */
  .imgTextCol .no-pic {
    padding-left: unset;
  }
  .imgTextCol h2 {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
  .imgTextCol .tagline {
    padding-bottom: 0.667rem;
    color: #006499;
  }
  .imgTextCol .container {
    gap: 2rem;
  }
  .imgTextCol .container .content_wrapper {
    gap: 3.5rem;
  }
  .imgTextCol .container .content_wrapper .img_container {
    display: none;
  }
}

@media (max-width: 500px) {
	.imgTextCol .reddot {
    	height: 300px;
	}
}


@media (max-width: 1024px) {
  .imgTextCol .no-pic {
    padding-left: unset;
  }
}
.imgSliderV2 .container {
  position: relative;
}
.imgSliderV2 .swiper-button-next::after,
.imgSliderV2 .swiper-button-prev::after {
  content: "";
}
.imgSliderV2 .swiper-button-next {
  top: 22px;
  /* bottom: -100px; */
  right: 80px;
  width: 50px; /* Adjust as needed */
  height: 50px; /* Adjust as needed */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../assets/svg/button-right.svg");
}
.imgSliderV2 .swiper-button-next:hover {
  background-image: url("../assets/svg/button-right-hover.svg");
}
.imgSliderV2 .swiper-button-prev {
  top: 22px;
  /* bottom: -100px; */
  left: unset;
  right: 160px;
  width: 50px; /* Adjust as needed */
  height: 50px; /* Adjust as needed */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../assets/svg/swiper-button-prev.svg");
}
.imgSliderV2 .swiper-button-prev:hover {
  background-image: url("../assets/svg/button-left-hover.svg");
}

@media (max-width: 1024px) {
  .imgSliderV2 .swiper {
    overflow: hidden;
  }
  .imgSliderV2 .swiper-button-next {
    /* top: unset;
    bottom: -80px; */
    right: 40px;
    width: 50px; /* Adjust as needed */
    height: 50px; /* Adjust as needed */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../assets/svg/button-right.svg");
  }
  .imgSliderV2 .swiper-button-prev {
    /* top: unset;
    bottom: -80px; */
    left: unset;
    right: 120px;
    width: 50px; /* Adjust as needed */
    height: 50px; /* Adjust as needed */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../assets/svg/swiper-button-prev.svg");
  }
}

@media (max-width: 600px) {
  .imgSliderV2 .swiper-button-prev {
    top: 160px;
    left: 20px;
  }
  .imgSliderV2 .swiper-button-next {
    top: 160px;
    left: 100px;
  }
}

/* 28.06 - Added Fixed Section for Slider Team */
.sliderCentered {
  position: relative;
  /* max-width: 1436px;*/
  margin: 0 auto;
  padding-left: 14%;
}
.sliderCentered .text_content {
  margin-bottom: -100px;
  width: 70%;
}
.sliderCentered .swiper {
  width: 100%;
  height: 100%;
}
.sliderCentered .swiper-slide p.name {
  font-weight: 500;
  word-break: break-word;
}
.sliderCentered .swiper-slide .slider_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.sliderCentered .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
.sliderCentered .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}
.sliderCentered .swiper-button-next {
  top: 30%;
  right: 15%;
  width: 50px; /* Adjust as needed */
  height: 50px; /* Adjust as needed */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../assets/svg/button-right.svg");
}
.sliderCentered .swiper-button-next:hover {
  background-image: url("../assets/svg/button-right-hover.svg");
}
.sliderCentered .swiper-button-next::after,
.sliderCentered .swiper-button-prev::after {
  content: "";
}
.sliderCentered .swiper-button-prev {
  top: 30%;
  width: 50px; /* Adjust as needed */
  height: 50px; /* Adjust as needed */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../assets/svg/swiper-button-prev.svg");
  left: unset;
  right: 20%;
}
.sliderCentered .swiper-button-prev:hover {
  background-image: url("../assets/svg/button-left-hover.svg");
}

@media (max-width: 1024px) {
  .sliderCentered {
    padding-left: 7%;
  }
  .sliderCentered .swiper-button-next {
    top: unset;
    bottom: 60px !important;
    right: 10%;
  }
  .sliderCentered .swiper-button-prev {
    top: unset;
    bottom: 60px !important;
    right: 20%;
  }
}
@media (max-width: 900px) {
  .sliderCentered {
    padding-left: 6%;
  }
}

@media (max-width: 767px) {
  .sliderCentered {
    padding-left: 20px;
  }
  .sliderCentered .swiper-button-next {
    top: unset;
    bottom: 20px !important;
    right: 5%;
  }
  .sliderCentered .swiper-button-prev {
    top: unset;
    bottom: 20px !important;
    right: 25%;
  }
}
@media (max-width: 500px) {
  .sliderCentered .text_content {
    margin-bottom: -70px;
    width: 100%;
  }
}
@media (max-width: 414px) {
  .sliderCentered .swiper-button-next {
    top: unset;
    bottom: 20px !important;
    right: 5%;
  }
  .sliderCentered .swiper-button-prev {
    top: unset;
    bottom: 20px !important;
    right: 25%;
  }
}
.footer {
  display: block;
  padding-top: 6.667rem;
  background-color: white;
}
@media (max-width: 767px) {
  .footer {
    padding: 0;
  }
}
.footer__container .grid_wrapper {
  display: grid;
  gap: 5.333rem;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1440px) {
  .footer__container .grid_wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    display: none;
  }
}
@media (max-width: 1024px) {
  .footer__container .grid_wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .footer__container .grid_wrapper {
    grid-template-columns: repeat(2, 1fr);
    display: none;
  }
}
@media (max-width: 414px) {
  .footer__container .grid_wrapper {
    grid-template-columns: 1fr;
  }
}
.footer__container .grid_wrapper .social_icons {
  display: flex;
  gap: 1.333rem;
  margin-top: 2.444rem;
}
.footer__container .grid_wrapper img {
  margin-bottom: 2.222rem;
}
.footer__container .grid_wrapper .col .headline {
  padding-bottom: 2.667rem;
  font-size: 1.111rem;
  font-weight: 700;
}
.footer__container .grid_wrapper .col a {
  font-size: 0.944rem;
  line-height: 1.778rem;
  text-decoration: none;
  font-weight: 400;
}
.footer__container .grid_wrapper .col .links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer__container .footer_bottom {
  border-top: solid 1px rgba(0, 33, 51, 0.2);
  padding: 1.778rem 0rem;
  display: flex;
  justify-content: space-between;
  margin-top: 6.722rem;
}
.footer__container .footer_bottom .right {
  display: flex;
  gap: 1.778rem;
}
@media (max-width: 1600px) {
  .footer__container .grid_wrapper .col .links {
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .footer__container .footer_bottom {
    flex-direction: column;
    margin: 0;
  }
}

.footer_mobile {
  background-color: white;
  display: none;
  padding: 50px 0px;
}
.footer_mobile .headline {
  position: relative;
}
.footer_mobile .dropdown_wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer_mobile .logo-col {
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer_mobile .dropdown {
  padding: 10px 0;
}
.footer_mobile .dropdown p {
  margin: 0;
  font-weight: 600;
}
.footer_mobile .headline::after {
  content: "";
  background-image: url("../assets/svg/chevron-down.svg");
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.footer_mobile .headline:hover::after {
  background-image: url("../assets/svg/chevron-up.svg");
}
.footer_mobile .dropdown-content {
  display: none;
  text-align: left;
  padding: 15px 0;
}
.footer_mobile .dropdown-content a {
  display: block;
  padding: 8px 0;
  color: #333;
  text-decoration: none;
}
.footer_mobile .dropdown .dropdown-content.active {
  display: block !important;
}

@media (max-width: 767px) {
  .footer_mobile {
    display: block;
  }
}

.parallaxBackground {
  background-image: url("../assets/img/bhyp-in-gb2020-pdf-5-b-one-1.jpg");
  background-size: cover;
  min-height: 50vh;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.popupBox .popup_wrapper {
  padding: 0 20px;
}
.popupBox .container {
  max-width: 1182px;
  margin: 0 auto;
  background-color: white;
  border-radius: 32px;
  padding: 2.667rem 3.889rem;
  display: flex;
  gap: 9.278rem;
}
.popupBox .container .right {
  display: flex;
  flex-direction: column;
  min-width: 200px;
  justify-content: center;
}
.popupBox .container .right .list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.3rem;
}
.popupBox .container .right .duration {
  font-size: 0.889rem;
  line-height: 1.556rem;
  margin-bottom: 2rem;
}
.popupBox .container .right button {
  margin-top: 3.556rem;
}
.popupBox .container h2 {
  font-size: 1.778rem;
  line-height: 2.333rem;
}
.popupBox .container img {
  margin-bottom: 1.778rem;
}
.popupBox .container .container {
  display: flex;
  gap: 9.278rem;
  padding: 0 20px;
}

@media (max-width: 1024px) {
  .popupBox .container {
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .popupBox {
    padding: 2rem 1.5rem;
  }
  .popupBox .container {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
  }
  .popupBox .container h2 {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
  .popupBox .container .right button {
    margin-top: 1rem;
  }
  .popupBox .container .right .list {
    margin-bottom: 1rem;
  }
}
.twocolText .container {
  display: flex;
  gap: 8.667rem;
}
.twocolText .container .left {
  max-width: 740px;
}
.twocolText .container .left .title_bottom {
  font-size: 2.667rem;
  line-height: 3.333rem;
  margin-bottom: 1.778rem;
}
.twocolText .container .left .duration {
  margin-top: 3.556rem;
  font-weight: 500;
}
.twocolText .container .right {
  min-width: fit-content;
}
.twocolText .container .right .list {
  display: flex;
  flex-direction: column;
  gap: 1.333rem;
  margin-bottom: 3.556rem;
}
@media (max-width: 1600px) {
  .twocolText .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
  }
}
@media (max-width: 1300px) {
  .twocolText .container {
    gap: 3rem;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .twocolText .container .left .duration {
    margin-top: 2rem;
    font-weight: 500;
  }

  .twocolText .container {
    gap: 2rem;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .twocolText .container {
    gap: 2rem;
    display: flex;
    flex-direction: column;
  }
  .twocolText .container .left {
    max-width: 740px;
  }
  .twocolText .container .left .title_bottom {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
  .twocolText .container .left .duration {
    margin-top: 3.556rem;
  }
  .twocolText .container .right {
    min-width: fit-content;
  }
  .twocolText .container .right .list {
    display: flex;
    flex-direction: column;
    gap: 1.333rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 500px) {
  .twocolText .container .left .duration {
    margin-top: 1.5rem;
  }

  .twocolText .container {
    gap: 1.5rem;
  }
}

.faq .container .faq-button {
  margin-top: 2.667rem;
}
.faq .container .accordion-item {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.faq .container .accordion-item button {
  font-size: 1.3rem;
  line-height: 2rem;
  /*font-weight: 300;*/
  color: #002133;
}
.faq .container .accordion-header {
  background-color: #f4f4f4;
  padding: 1.333rem;
  border: none;
  width: calc(100% - 40px); /* Adjusted width */
  text-align: left;
  cursor: pointer;
}
.faq .container .accordion-content {
  padding: 1.333rem;
  display: none;
  max-width: 1186px;
}
.faq .container .accordion-content p {
  font-weight: 300;
}
.faq .container .accordion-content p span {
  font-weight: 300 !important;
}

.accordion-content ul {
  font-weight: 300 !important;
  font-size: 1.111rem;
}

.accordion-content ul li {
  padding-top: 0.6rem;
}

.faq .container .chevron {
  position: absolute;
  top: 40px;
  right: 10px;
  transform: translateY(-50%);
}
.faq .container .chevron img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.faq .container .chevron.rotate img {
  transform: rotate(180deg);
}

.contactform {
  position: relative;
  overflow: hidden;
}
.contactform .reddot {
  position: absolute;
  right: -20%;
  bottom: 0;
  z-index: -1;
}
.contactform .textcontent {
  max-width: 727px;
  margin: 0 auto;
}
.contactform .container-sm .tagline {
  color: #006499;
  margin-bottom: 1.333rem;
}
.contactform .form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.contactform .form-group label {
  flex-basis: 45%;
  text-align: right;
  margin-right: 10px;
  font-weight: bold;
}
.contactform .form-group input[type="text"],
.contactform .form-group input[type="email"],
.contactform .form-group select {
  flex-basis: 50%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 20px;
  background-color: #fff;
  box-sizing: border-box;
}
.contactform input[type="submit"] {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
}
.contactform input[type="submit"]:hover {
  background-color: #0056b3;
}

.numberGrid .container .textcontent {
  margin-bottom: 3.556rem;
  max-width: 1186px;
}
.numberGrid .container .textcontent .tagline {
  color: #006499;
  margin-bottom: 1.333rem;
}
.numberGrid .container .grid_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.778rem;
}
.numberGrid .container .grid_wrapper .img_container {
  max-width: 400px;
}
.numberGrid .container .grid_wrapper .img_container img {
  object-fit: cover;
  width: 100%;
  height: auto;
}
.numberGrid .container .grid_wrapper .numbercard {
  padding-left: 35px;
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding-top: 6.667rem;
}
.numberGrid .container .grid_wrapper .numbercard .headline {
  font-size: 1.222rem;
  line-height: 2.444rem;
  font-weight: 400;
  z-index: 5;
}
.numberGrid .container .grid_wrapper .numbercard .text {
  font-size: 0.889rem;
  z-index: 5;
}
.numberGrid .container .grid_wrapper .numbercard::before {
  position: absolute;
  content: "";
  background-image: url("../assets/svg/1.svg");
  width: 100%;
  height: 266px;
  left: -18px;
  top: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .numberGrid .container .grid_wrapper {
    grid-template-columns: 1fr;
  }
  .numberGrid .container .grid_wrapper .img_container {
    max-width: 250px;
  }
  .numberGrid .container .grid_wrapper .img_container img {
    object-fit: cover;
    width: 100%;
  }
}

.roundImages .container-sm .img_top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.333rem;
  flex-direction: column;
}
.roundImages .container-sm .img_top .img_container {
  overflow: hidden;
  max-width: 621px;
  border-radius: 50%;
  height: 621px;
}
@media (max-width: 1600px) {
  .roundImages .container-sm .img_top .img_container {
    max-width: 500px;
    border-radius: 100%;
    height: 500px;
  }
}
@media (max-width: 1500px) {
  .roundImages .container-sm .img_top .img_container {
    max-width: 450px;
    height: 450px;
  }
}
@media (max-width: 1100px) {
  .roundImages .container-sm .img_top .img_container {
    max-width: 400px;
    height: 400px;
  }
}
@media (max-width: 767px) {
  .roundImages .container-sm .img_top .img_container {
    max-width: 250px;
    height: 250px;
  }
}
.roundImages .container-sm .img_top .img_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.roundImages .container-sm .img_bottom {
  margin-top: 4.444rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.556rem;
}
.roundImages .container-sm .img_bottom .img_container {
  overflow: hidden;
  max-width: 186px;
  border-radius: 50%;
  height: 186px;
}
.roundImages .container-sm .img_bottom .img_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.roundImages .container-sm .img_bottom .content {
  display: flex;
  flex-direction: column;
  gap: 1.333rem;
  justify-content: center;
  align-items: center;
}

.avatarCard .container {
  display: flex;
  gap: 2rem;
}
.avatarCard .container .left .list_wrapper {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2.667rem;
}
.avatarCard .container .left .zitat {
  max-width: 1061px;
  margin-top: 6rem;
  font-size: 1.778rem;
  line-height: 2.333rem;
  font-weight: 500;
  font-style: italic;
  position: relative;
  margin-bottom: 5.167rem;
}
.avatarCard .container .left .zitat::before {
  content: "";
  width: 32px;
  height: 28px;
  top: -50px;
  position: absolute;
  background-image: url("../assets/svg/kommablack.svg");
}

/* 15.07. - added styles for Quotes */
.avatarCard .container .left .zitat p {
  font-weight: 400;
  line-height: 1.6rem;
}

.avatarCard .container .left .list {
  max-width: 428px;
}
.avatarCard .container .left .list .headline {
  font-weight: 500;
  font-size: 1.333rem;
  line-height: 1.867rem;
}
.avatarCard .container .left .list li {
  font-weight: 300;
}
.avatarCard .container .left .list ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.avatarCard .container .left .list li::marker {
  color: #cc4514;
}
.avatarCard .container .right .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.556rem;
}
.avatarCard .container .right .content .img_wrapper {
  width: 311px;
  height: 311px;
  overflow: hidden;
  border-radius: 50%;
}
.avatarCard .container .right .content .img_wrapper img {
  width: 100%;
}
.avatarCard .container .right .content .contact_data .email {
  position: relative;
}
.avatarCard .container .right .content .contact_data .phone {
  position: relative;
}
.avatarCard .container .right .content .contact_data .email::before {
  content: "";
  width: 20px;
  position: absolute;
  height: 15px;
  background-image: url("../assets/svg/mail.svg");
  left: -30px;
  bottom: 4px;
}
.avatarCard .container .right .content .contact_data .phone::before {
  content: "";
  width: 20px;
  position: absolute;
  height: 15px;
  background-image: url("../assets/svg/phone.svg");
  left: -30px;
  bottom: 4px;
}

@media (max-width: 900px) {
  .avatarCard .container {
    flex-direction: column-reverse !important;
  }
  .avatarCard .container .left .list_wrapper {
    display: grid;
    grid-template-columns: auto auto;
    gap: 1rem;
  }
  .avatarCard .container .left .zitat {
    max-width: 1061px;
    margin-top: 4rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    font-style: italic;
    position: relative;
    margin-bottom: 3rem;
  }
  .avatarCard .container .left .zitat::before {
    content: "";
    width: 32px;
    height: 28px;
    top: -50px;
    position: absolute;
    background-image: url("../assets/svg/kommablack.svg");
  }
  .avatarCard .container .left .list {
    max-width: 428px;
  }
  .avatarCard .container .left .list .headline {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .avatarCard .container .left .list li {
    font-weight: 300;
  }
  .avatarCard .container .left .list ul {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 1.333rem;
  }
  .avatarCard .container .left .list li::marker {
    color: #cc4514;
  }
  .avatarCard .container .right .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .avatarCard .container .right .content .img_wrapper {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
  }
  .avatarCard .container .right .content .img_wrapper img {
    width: 100%;
  }
  .avatarCard .container .right .content .contact_data {
    padding-left: 40px;
  }
  .avatarCard .container .right .content .contact_data .phone {
    position: relative;
  }
  .avatarCard .container .right .content .contact_data .email {
    position: relative;
  }
  .avatarCard .container .right .content .contact_data .email::before {
    content: "";
    width: 20px;
    position: absolute;
    height: 15px;
    background-image: url("../assets/svg/mail.svg");
    left: -30px;
    bottom: 4px;
  }
}

@media (max-width: 600px) {
  .avatarCard .container .left .list_wrapper {
    grid-template-columns: 1fr;
  }
}

.bubbleGrid .container h2 {
  text-align: center;
}
.bubbleGrid .container .grid_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.778rem;
}
.bubbleGrid .container .grid_wrapper .bubbleCard {
  background-color: white;
  padding: 76px 64px;
  border: none;
  border-radius: 84px;
  max-width: 400px;
  height: 176px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 1024px) {
  .bubbleGrid .container .grid_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .bubbleGrid .container .grid_wrapper {
    grid-template-columns: 1fr;
  }
  .bubbleGrid .container .grid_wrapper .bubbleCard {
    background-color: white;
    padding: 76px 64px;
    border: none;
    border-radius: 84px;
    max-width: unset;
    height: 176px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

.bubbleGridV2 .container h2 {
  text-align: center;
}
.bubbleGridV2 .container .grid_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  gap: 1.778rem;
}
.bubbleGridV2 .container .grid_wrapper .bubbleCard {
  display: flex;
  flex-direction: column;
  gap: 1.778rem;
  background-color: white;
  padding: 68px 48px;
  border: none;
  border-radius: 32px;
  max-width: 457px;
  height: 369px;
  display: flex;
}
.bubbleGridV2 .container .grid_wrapper .bubbleCard .bubble_title {
  border-bottom: 1px solid rgba(0, 33, 51, 0.2);
}
.bubbleGridV2 .container .grid_wrapper .bubbleCard .bubble_title h3 {
  font-size: 1.778rem;
}
.bubbleGridV2 .container .grid_wrapper .bubbleCard .bubble_title span {
  font-weight: 300;
}
@media (max-width: 1024px) {
  .bubbleGridV2 .container .grid_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .bubbleGridV2 .container .grid_wrapper {
    grid-template-columns: 1fr;
  }
  .bubbleGridV2 .container .grid_wrapper .bubbleCard {
    max-width: unset;
    height: auto;
    padding: 40px;
    display: flex;
  }
  .bubbleGridV2 .container .grid_wrapper .bubbleCard h3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.listImgOneCol .container-sm {
  padding-left: 20px;
  padding-right: 20px;
}
.listImgOneCol .container-sm .list {
  display: flex;
  gap: 3rem;
}
.listImgOneCol .container-sm .list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding-left: 20px;
  max-width: 400px;
}
.listImgOneCol .container-sm .list ul li::marker {
  color: #cc4514;
  font-size: 20px;
}
.listImgOneCol .img_grid {
  margin-top: 3.556rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.listImgOneCol .img_grid .img_container {
  max-width: 280px;
  height: 104px;
  overflow: hidden;
}
.listImgOneCol .img_grid .img_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .listImgOneCol .container-sm .list {
    display: block;
  }
}

.textImgTwoCol .container {
  display: flex;
  gap: 3.556rem;
}
.textImgTwoCol .container .left,
.textImgTwoCol .container .right {
  max-width: 686px;
}
.textImgTwoCol .container .left a,
.textImgTwoCol .container .right a {
  color: #cc4514;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.textImgTwoCol .container .left a:hover,
.textImgTwoCol .container .right a:hover {
  color: #006499;
  text-decoration: underline;
}

.textImgTwoCol .container .left .headline,
.textImgTwoCol .container .right .headline {
  font-weight: 500;
  font-size: 1.778rem;
}
.textImgTwoCol .container .left .img_container,
.textImgTwoCol .container .right .img_container {
  margin-bottom: 2.667rem;
  max-width: 311px;
  overflow: hidden;
  height: auto;
}
.textImgTwoCol .container .left .img_container img,
.textImgTwoCol .container .right .img_container img {
  width: 100%;
}
@media (max-width: 440px) {
  .textImgTwoCol .container {
    flex-direction: column;
  }
}

.sidenav-bubble {
  height: 64px;
  width: 32px;
  z-index: 99;
  border-radius: 0 10px 10px 0;
  background-color: #006499;
  position: sticky;
  top: 40%;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 400;
  animation: fade 2s infinite alternate; /* Apply the fade animation */
}
.sidenav-bubble .hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidenav-bubble .hamburger .line {
  background-color: white;
  width: 16px;
  height: 2px;
}

@keyframes fade {
  0% {
    opacity: 0.5; /* Start with fully transparent */
  }
  100% {
    opacity: 1; /* End with fully opaque */
  }
}
.sidenav {
  height: max-content;
  width: 200px; /* Adjust width as needed */
  position: fixed;
  left: 0;
  top: 25%;
  z-index: 999;
  display: none;
  background-color: #006499;
  border-radius: 0 16px 16px 0;
  padding: 10px;
}

.sidenav a {
  padding: 10px 15px;
  text-decoration: none;
  font-size: 18px;
  color: white;
  display: block;
}

.sidenav a:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .sidenav-bubble {
    display: none;
  }
}
.schulung_detail {
  padding-left: 40px;
  padding-right: 40px;
}
.schulung_detail .sign-up-button {
  position: absolute;
  right: 3.875rem;
  bottom: 3.875rem;
}
@media (max-width: 767px) {
  .schulung_detail .sign-up-button {
    position: static;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.schulung_detail .card {
  position: relative;
  max-width: 1435px;
  border-radius: 32px 32px 32px 32px;
  overflow: hidden;
}
.schulung_detail .card .detail_popup {
  display: none;
  background-color: white;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  padding: 3.875rem;
}
.schulung_detail .card .detail_popup .title {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 20px;
  padding-top: 40px;
}
.schulung_detail .card .detail_popup .popup_content .textcontent_1 {
  margin-top: 20px;
}
.schulung_detail .card .detail_popup .popup_content .avatar_box_bottom {
  display: flex;
  gap: 1.5rem;
}
.schulung_detail
  .card
  .detail_popup
  .popup_content
  .avatar_box_bottom
  .left
  .img_wrapper {
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 50%;
}
.schulung_detail
  .card
  .detail_popup
  .popup_content
  .avatar_box_bottom
  .left
  .img_wrapper
  img {
  width: 100%;
  height: auto;
}
.schulung_detail
  .card
  .detail_popup
  .popup_content
  .avatar_box_bottom
  .right
  .name {
  font-weight: 500;
}
.schulung_detail .card .detail_popup .close-button {
  position: absolute;
  top: 3.875rem;
  right: 3.875rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.schulung_detail .card .detail_popup .close-button svg {
  transform: rotate(45deg);
}
.schulung_detail .card .img_wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 395px;
}
.schulung_detail .card .img_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.schulung_detail .card .img_wrapper .img_title {
  position: absolute;
  left: 4.063rem;
  bottom: 3.125rem;
  color: white;
  font-weight: 500;
  font-size: 1.625rem;
  line-height: 2.125rem;
}
.schulung_detail .card .content_wrapper {
  background-color: white;
  text-align: left;
  padding: 3.875rem;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.schulung_detail .card .content_wrapper .left {
  max-width: 746px;
}
.schulung_detail .card .content_wrapper .left .avatar_box {
  margin-top: 4.25rem;
}
.schulung_detail .card .content_wrapper .left .avatar_box .headline {
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 2rem;
}
.schulung_detail
  .card
  .content_wrapper
  .left
  .avatar_box
  .avatar_box_bottom_wrapper {
  display: flex;
  gap: 40px;
}
.schulung_detail .card .content_wrapper .left .avatar_box .avatar_box_bottom {
  display: flex;
  gap: 1.5rem;
}
.schulung_detail
  .card
  .content_wrapper
  .left
  .avatar_box
  .avatar_box_bottom
  .right
  .text-small {
  font-weight: 400;
}

.schulung_detail
  .card
  .content_wrapper
  .left
  .avatar_box
  .avatar_box_bottom
  .left
  .img_wrapper {
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 50%;
}
.schulung_detail
  .card
  .content_wrapper
  .left
  .avatar_box
  .avatar_box_bottom
  .left
  .img_wrapper
  img {
  width: 100%;
  height: auto;
}
.schulung_detail
  .card
  .content_wrapper
  .left
  .avatar_box
  .avatar_box_bottom
  .right
  .name {
  font-weight: 500;
}
.schulung_detail .card .content_wrapper .right .info_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2.667rem 5rem;
}
.schulung_detail
  .card
  .content_wrapper
  .right
  .info_box
  .date_details
  .headline {
  font-weight: 400;
}
.schulung_detail .card .content_wrapper .cta_box {
  margin-top: 2.667rem;
  bottom: 3.556rem;
  right: 3.556rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.schulung_detail .card .content_wrapper .cta_box .info_button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.schulung_detail .card .content_wrapper .cta_box .info {
  width: 30px;
  height: 30px;
}

@media (max-width: 1600px) {
  .schulung_detail
    .card
    .content_wrapper
    .left
    .avatar_box
    .avatar_box_bottom_wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .schulung_detail .card .content_wrapper .right .info_box {
    display: flex;
    flex-direction: column;
  }

  .schulung_detail .card .content_wrapper .right .info_box {
    gap: 2rem;
  }

  .avatar_box_bottom .right {
    gap: 1rem;
  }
}

@media (max-width: 1024px) {
  .schulung_detail {
    padding-left: 0;
    padding-right: 0;
  }
  .schulung_detail .card .content_wrapper {
    padding: 2rem;
    flex-direction: column;
  }
  .schulung_detail .card .content_wrapper .right .info_box {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .schulung_detail .card .avatar_box .avatar_box_bottom_wrapper {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 900px) {
  .schulung_detail .card .content_wrapper .left .avatar_box {
    margin-top: 2rem;
  }

  .schulung_detail .card .content_wrapper .right .info_box {
    gap: 10px;
  }

  .schulung_detail .card .content_wrapper .right .info_box {
    display: flex;
    gap: 2rem;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .schulung_detail .card .img_wrapper .img_title {
    left: 1rem;
  }
  .schulung_detail .card .content_wrapper {
    padding: 2rem 1rem;
  }
  .schulung_detail .card .content_wrapper .left .avatar_box {
    margin-top: 2rem;
  }
}
.form {
}
.form .anmelden_form {
  background-color: #f2f4f3;
  padding: 100px 0;
}
.form .anmelden_form__container {
  width: 1186px;
  margin: 0 auto;
  position: relative;
  text-align: left; /* text-align: center; */
}
.form .anmelden_form__container form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 5rem;
}
.form .anmelden_form__container form input,
.form .anmelden_form__container form select,
.form .anmelden_form__container form textarea {
  width: 100%;
  padding: 25px 32px;
  border: 1px solid #d2d8da;
  border-radius: 64px;
  box-sizing: border-box;
  resize: vertical;
  font-family: lato;
  font-weight: 300;
  font-style: normal;
  font-size: 17px;
  color: #002133;
}
.form .anmelden_form__container form select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../assets/svg/dropdown.svg");
  background-repeat: no-repeat;
  background-position-x: 85%;
  background-position-y: 50%;
}
.form .anmelden_form__container form textarea {
  min-height: 170px;
  border-radius: 20px;
}
.form .anmelden_form__container form .row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  width: 50%;
}
.form .anmelden_form__container form .row:nth-of-type(1) {
  width: 35%;
}
.form .anmelden_form__container form .row:last-of-type {
  width: 100%;
  display: grid;
  gap: 12px;
  grid-template-columns: 20px auto;
}
.form .anmelden_form__container form .row:last-of-type input[type="checkbox"] {
  width: 20px;
}
.form .anmelden_form__container form .row p {
  font-weight: 700;
  font-style: normal;
}
.form .anmelden_form__container form .row label {
  font-weight: 300;
  font-style: normal;
  font-size: 17px;
  color: #002133;
}
.form .anmelden_form__container form .radio_inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form .anmelden_form__container form .radio_inputs .inputs {
  display: flex;
  flex-direction: row;
}
.form .anmelden_form__container form .radio_inputs .inputs input {
  width: 20px;
}
.form
  .anmelden_form__container
  form
  .radio_inputs
  .inputs
  input:not(:first-of-type) {
  margin-left: 64px;
}
.form .anmelden_form__container form .radio_inputs .inputs input[type="radio"] {
  height: 1px;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  border-color: transparent;
  padding: 0;
}
.form
  .anmelden_form__container
  form
  .radio_inputs
  .inputs
  input[type="radio"]::after {
  content: "";
  display: block;
  position: absolute;
  background-color: white;
  width: 12px;
  height: 12px;
  left: -4px;
  top: 8px;
  border: 1px solid #002133;
  border-radius: 2px;
}
.form
  .anmelden_form__container
  form
  .radio_inputs
  .inputs
  input[type="radio"]:checked::after {
  background-color: #002133;
}
.form .anmelden_form__container form input[type="submit"] {
  width: fit-content;
  margin: 0 auto;
  background-color: #006499;
  color: white;
  font-weight: 700;
  font-style: normal;
  margin-top: 32px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.form .anmelden_form__container form input[type="submit"]:hover {
  background-color: #002133;
}
.form .anmelden_form__container form input[type="checkbox"] {
  height: 1px;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  border-color: transparent;
}
.form .anmelden_form__container form input[type="checkbox"]::after {
  content: "";
  display: block;
  position: absolute;
  background-color: white;
  width: 12px;
  height: 12px;
  left: -1rem;
  top: 0.4rem;
  border: 1px solid #002133;
  border-radius: 2px;
}
.form .anmelden_form__container form input[type="checkbox"]:checked::after {
  background-color: #002133;
}
@media (max-width: 1500px) {
  .form .anmelden_form__container {
    width: 80%;
  }
}
@media (max-width: 1400px) {
  .form .anmelden_form__container form .row {
    width: 100%;
  }
  .form .anmelden_form__container form .row:nth-of-type(1) {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .form .anmelden_form__container form .row {
    flex-direction: column;
  }
  .form .anmelden_form__container form .radio_inputs .inputs {
    display: flex;
    flex-direction: column;
  }
  .form
    .anmelden_form__container
    form
    .radio_inputs
    .inputs
    input:not(:first-of-type) {
    margin-left: 0px;
  }
  .form .anmelden_form__container form .row label {
    padding-left: 2rem;
  }
  .form
    .anmelden_form__container
    form
    .radio_inputs
    .inputs
    input[type="radio"]::after {
    top: 8px;
  }
  .form .anmelden_form__container form {
    align-items: flex-start;
  }
  .form .anmelden_form__container form input[type="submit"] {
    width: fit-content;
    margin: 0;
    margin-top: 32px;
  }
  .form .anmelden_form__container {
    width: 90%;
  }
}

.section {
  padding: 60px 0;
}
@media (max-width: 980px) {
  .section {
    padding: 40px 0;
  }
}
.section__container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .section__container {
    padding: 0 1rem;
  }
}

.textBild {
  padding: 60px 0;
}
@media (max-width: 980px) {
  .textBild {
    padding: 40px 0;
  }
}
.textBild__container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .textBild__container {
    padding: 0 1rem;
  }
}
.textBild__top {
  margin-bottom: 4rem;
}
.textBild__top h2 {
  padding-bottom: 2rem;
}
.textBild__content {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}
.textBild__left {
  max-width: 600px;
}
.textBild__right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.textBild__img {
  height: 500px;
  max-width: 700px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.textBild__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.1;
}
.textBild__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.textBild__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem 2rem;
  margin-top: 3rem;
}
.textBild__grid .card__img {
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
}
.textBild__grid .card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.textBild__grid .card__btn {
  margin-top: 2rem;
  width: max-content;
  transition: all 0.3s ease-in;
}
.textBild__grid .card__btn:hover {
  transform: translateY(-10px);
}
.textBild__grid .card__btn a {
  text-decoration: none;
  color: #fff;
  padding: 0.5rem 1rem;
  background-color: #000;
}

.textBildV2 {
  background-color: bisque;
}
.textBildV2 .textBild__container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .textBildV2 .textBild__container {
    padding: 0 1rem;
  }
}

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

/* Anpassungen 25.06.20245 */

/* Color Changes */
.uppercase {
  text-transform: uppercase;
  color: #006499;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.778rem;
}

/* Button Formular */
.form .anmelden_form__container form input[type="submit"] {
  padding: 1rem 1.778rem;
}

/* Bubble Grid V2 - Kacheln anpassen -  */
.bubbleGridV2 .container .grid_wrapper .bubbleCard {
  display: flex;
  flex-direction: column;
  gap: 1.778rem;
  background-color: white;
  padding: 68px 48px;
  border: none;
  border-radius: 32px;
  max-width: 457px;
  min-height: 460px;
  height: auto; /* Höhe basierend auf dem Inhalt anpassen */
}

/* Menu Listenelemente sollen nicht von der Illustration verdeckt werden */
/* @media (max-height: 900px) and (max-width: 1920px) {
   .navigation .menu-overlay .sun {
        bottom: -115%;
	}
} */

/* List Img One Col - 2 zwei gleichmäßige Spalten erstellen */
.listImgOneCol .container .list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border: none;
  height: auto;
}
li::marker {
  color: #cc4514;
}

/* Abstand zw. Listen-elementen */
.list ul li {
  margin-bottom: 0.6rem;
}

.threeColCardsV2 .container .cardGrid ul li {
  font-size: 20px;
}

/* Breakpoints Mobile */
@media (max-width: 414px) {
  /* 480 Breakpoint / 414 */
  h1 {
    font-size: 1.65rem;
    line-height: 2rem;
  }
  .imgTextCol h2 {
    padding-bottom: 1rem;
  }
  h2 {
    font-size: 1.4rem;
    line-height: 1.75rem;
  }
  .header__left {
    gap: 1rem;
  }

  .card p {
    margin-top: 0;
  }

  .tagline {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .uppercase {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .threeColCardsV2 .container .cardGrid ul {
    gap: 1rem;
  }

  .threeColCardsV2 .container .cardGrid .card {
    max-width: unset;
    grid-column: span 1;
    background-color: white;
    border-radius: 34px;
    min-height: 400px;
    gap: 0.8rem;
    padding: 1.611rem;
  }
}

@media (max-width: 767px) {
  .imgTextCol h2 {
    padding-bottom: 0.1rem;
  }

  .imgTextCol .tagline {
    padding-bottom: 0.4rem;
  }

  /* Display none blue dot */
  .imgTextCol .bluedot {
    display: none;
  }

  .threeColCardsV2 .container .cardGrid .card {
    max-width: unset;
    grid-column: span 1;
    background-color: white;
    border-radius: 34px;
    min-height: 400px;
    gap: 1rem;
    padding: 1.611rem;
  }
}

/* Index Cards */
.threeColCards .container .cardGrid .card .header_box img {
  max-width: 96px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1800px) {
  .threeColCards .container .cardGrid .card .header_box {
    flex-direction: column;
    align-items: flex-start;
  }

  .headerV2__right {
    padding-bottom: 23vh;
  }

  .imgTextCol .container .content_wrapper .img_container img {
    width: 11vw;
  }
}

@media (max-width: 1600px) {
  .threeColCards .container .cardGrid .card .header_box img {
    max-width: 55px;
  }

  .threeColCards .container .cardGrid .card {
    padding: 2rem;
    gap: 1.5rem;
  }

  .threeColCards .container .cardGrid .card .info_button {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .threeColCards .container__content {
    margin-bottom: 2rem !important;
  }
  .threeColCards .container .cardGrid {
    grid-template-columns: repeat(1, 1fr);
  }
  .threeColCards .container .cardGrid .card {
    max-width: unset;
    grid-column: span 1;
    background-color: white;
    border-radius: 34px;
    height: 380px;
    padding: 1.5rem;
  }
  .threeColCards .container .cardGrid .card .header_box {
    display: flex;
    gap: 1.333rem;
    align-items: flex-start;
  }
  .threeColCards .container .cardGrid .card .header_box img {
    width: 32px;
    height: 32px;
  }
  .threeColCards .container .cardGrid .card .info_button {
    font-size: 0.722;
  }
}

@media (max-width: 500px) {
  .threeColCards .container .cardGrid .card .info_button {
    padding: 1.1rem 1.333rem;
    width: fit-content;
  }
}

/* Media Queries for blue dot */
@media (max-width: 1440px) and (min-width: 415px) {
  h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .imgTextCol h2 {
    padding-bottom: 1rem;
  }
  h2 {
    font-size: 1.4rem;
    line-height: 1.75rem;
  }

  .iconCards .container {
    overflow: visible !important;
  }
  .iconCards .container .bluedot {
    width: 20%;
  }

  .imgTextCol .container .content_wrapper {
    gap: 2rem;
  }

  .headerV2 h1 {
    font-size: 2.6rem;
    line-height: 3.556rem;
  }

  /* ---------- Anpassungen 16.07.2024 (Red dot) ------------- */
  /* .imgTextCol .reddot {
 
		display: none;
	}
	 */

  /* MAKE FOOTER MOBILE */
  footer .grid_wrapper {
    display: none;
  }

  .footer_mobile {
    display: block;
  }

  .footer__container .footer_bottom {
    margin-top: 1rem;
  }

  .footer {
    padding-top: 1rem;
  }

  .social_icons img {
    padding-right: 1rem;
  }
}

.imgText h2 {
  opacity: 1;
  transform: unset;
}

@media (max-width: 1100px) {
  .sidenav_left {
    top: unset;
    -ms-transform: unset;
    transform: unset;
    bottom: 0;
    width: 100%;
    background-color: white;
  }

  .sidenav_left__content ul {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidenav_left__content ul::after {
    display: none;
  }
}

@media (max-width: 500px) {
  .parallaxBackground {
    background-attachment: local;
  }

  .sidenav_left__content ul::-webkit-scrollbar-thumb {
    background: transparent;
  }

  .sidenav_left__content ul::-webkit-scrollbar {
    width: 0px;
  }

  .sidenav_left__content ul::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 5px grey;  */
    border-radius: 10px;
  }

  .sidenav_left::-webkit-scrollbar-thumb {
    background: transparent;
  }

  .sidenav_left::-webkit-scrollbar {
    width: 0px;
  }

  .sidenav_left::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 5px grey;  */
    border-radius: 10px;
  }

  .sidenav_left__content ul {
    flex-wrap: unset;
    /* max-width: 100vw; */
    overflow-x: scroll;
    padding-right: 60px;
    padding-top: 15px;
  }

  .sidenav_left {
    overflow: hidden;
  }

  .sidenav_left__content ul li a {
    white-space: nowrap;
  }

  .accordion-content ul {
    font-weight: 300 !important;
    font-size: 1rem;
  }
}

/* 15.07 - A href items - in Nächste Schritte */
.threeColCardsV2 .container .cardGrid ul.no-numbers {
  font-weight: 300 !important;
}
.layout__section .container {
  width: 1264px;
  max-width: calc(100vw - 40px);
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 1100px) {
  .layout__section .container {
    gap: 88px;
  }
}
.layout__section .section__header {
  gap: 40px;
  display: flex;
  align-items: center;
}
@media (max-width: 1100px) {
  .layout__section .section__header {
    flex-direction: column;
  }
}
.layout__section .section__header.section__header_secondary {
  justify-content: center;
  text-align: center;
}
.layout__section .section__title {
  padding: 0;
  font-size: 48px;
  line-height: 48px;
}
.layout__section .section__ico {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.layout__benefits .benefits__list {
  gap: 60px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1100px) {
  .layout__benefits .benefits__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .layout__benefits .benefits__list {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.layout__benefits .benefits__item {
  color: #002133;
  background-color: #ffffff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  border-radius: 20px;
  padding: 72px 40px 40px;
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 500px) {
  .layout__benefits .benefits__item {
    padding: 56px 20px 40px;
  }
}
.layout__benefits .benefits__media {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.layout__benefits .benefits__media img {
  max-height: 88px;
}
.layout__benefits strong {
  font-weight: 500;
}
