/******* Do not edit this file *******
Code Snippets Manager
Saved: Mar 11 2026 | 09:18:42 */
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* Avenir */
/* @font-face {
  font-family: 'Avenir Next LT Pro';
  src: url('../fonts/Avenir/AvenirNextLTPro-Bold.woff2') format('woff2'),
    url('../fonts/Avenir/AvenirNextLTPro-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir Next LT Pro';
  src: url('../fonts/Avenir/AvenirNextLTPro-Demi.woff2') format('woff2'),
    url('../fonts/Avenir/AvenirNextLTPro-Demi.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir Next LT Pro';
  src: url('../fonts/Avenir/AvenirNextLTPro-Heavy.woff2') format('woff2'),
    url('../fonts/Avenir/AvenirNextLTPro-Heavy.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir Next LT Pro';
  src: url('../fonts/Avenir/AvenirNextLTPro-Medium.woff2') format('woff2'),
    url('../fonts/Avenir/AvenirNextLTPro-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir Next LT Pro';
  src: url('../fonts/Avenir/AvenirNextLTPro-Regular.woff2') format('woff2'),
    url('../fonts/Avenir/AvenirNextLTPro-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
} */
:root {
  --magenta: #DE007D;
  --white: #FAF9F6;
  --midnight-blue: #002F5D;
}
/*****************************************************/
/*****************   Typography   ********************/
/*****************************************************/
* {
  margin: 0;
  padding: 0;
}
/* html {
	overflow-x: hidden;
	position: relative;
} */
body {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--white);
  background: linear-gradient(180deg, #06010F 10%, #062337 64%, #06010F 97%);
  padding-top: 100px;
  position: relative;
  overflow-x: hidden;
  background-image: url(/wp-content/uploads/2026/02/main-bg-scaled.png);
  background-size: 100% 100%;
}
.page-id-99 {
  background-image: url(/wp-content/uploads/2026/02/Leistungen-scaled.png);
}
.page-id-91 {
  background-image: url(/wp-content/uploads/2026/02/Kontakt-scaled.png);
}
.page-id-103 {
  background-image: url(/wp-content/uploads/2026/02/restliche-module-scaled.png);
}
.page-id-107 {
  background-image: url(/wp-content/uploads/2026/02/Zusammenarbeit-scaled.png);
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  display: inline-block;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: none;
}
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}
h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--magenta);
  margin-bottom: 30px;
}
img {
  border: none;
  max-width: 100%;
}
button {
  border: none;
}
button:focus {
  border: none;
  outline: none;
  box-shadow: none;
}
.align_center {
  align-items: center;
}
.no_padding {
  padding: 0;
}
.section_padding {
  padding: 50px 0px;
}
/*****************************************************/
/*****************   Header Area   *******************/
/*****************************************************/
/* Header & Hero styles (added to match screenshot) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.site-header .navbar {
  padding: 18px 12px;
}
.site-header .navbar-nav {
  align-items: center;
  gap: 25px;
}
.logo-wrap img {
  height: 80px;
}
.logo-wrap img:nth-child(2) {
  display: none;
}
.header-nav, .navbar-nav {
  display: flex;
  gap: 20px;
  flex-direction: row;
}
.site-header .navbar .container {
  flex-wrap: nowrap;
}
.navbar-nav li a {
  color: var(--white) !important;
  padding: 0 0 3px;
  margin-bottom: -6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.navbar-nav .dropdown-menu {
  background: transparent;
  position: absolute;
}
.dropdown-item:hover, .dropdown-item:focus {
  background: transparent;
}
/* Menu Item Hover Effect */
.navbar-nav li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
}
.dropdown-item {
  margin-bottom: 0 !important;
  font-weight: 400 !important;
}
.navbar-nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border: 0;
}
/* Hover IN */
.navbar-nav li a:hover::after {
  transform: scaleX(1);
  transform-origin: right;
  /* Grow left → right */
}
/* Hover OUT */
.navbar-nav li a:not(:hover)::after {
  transform: scaleX(0);
  transform-origin: left;
  /* Shrink toward right */
}
.header-cta {
  margin-left: 12px;
  display: flex;
  align-items: center;
}
.header-cta a {
  padding: 7px 25px;
  border-radius: 5px !important;
  background: #fff;
  color: #002F5D;
  font-size: 18px;
  transition: 0.3s;
  border: none;
}
.header-cta a:hover {
  background: var(--magenta);
  color: #FFF;
}
.navbar-area {
  transition: 0.3s;
  display: flex;
  gap: 35px;
}
/* .navbar-area.active {
  background: #fff;
  width: 489px;
  padding: 55px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0%);
  display: block;
  z-index: 2;
} */
.sidebar-menu {
  background: #fff;
  max-width: 489px;
  width: 100%;
  padding: 55px 55px 150px;
  transform: translate(100%);
  transition: 0.3s;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  min-height: 100vh;
}
.navbar-area.active .sidebar-menu {
  transform: translate(0%);
}
.navbar-header {
  display: flex !important;
  gap: 25px;
  align-items: center;
  color: var(--midnight-blue);
  padding-bottom: 60px;
  justify-content: space-between;
}
.navbar-header > a {
  background: var(--midnight-blue);
  color: var(--white);
  font-size: 18px;
  padding: 7px 25px;
  transition: 0.3s;
}
.navbar-header > a:hover {
  background: var(--magenta);
  color: var(--white);
}
.navbar-header button {
  background: transparent;
  border: none;
}
.sidebar-menu ul {
  display: flex;
  gap: 20px;
  flex-direction: column;
  padding-left: 50px;
  align-items: unset !important;
}
.sidebar-menu .dropdown-menu {
  background: transparent;
  position: inherit;
  border: none;
  padding: 0;
  display: none;
}
.sidebar-menu .dropdown-menu.show {
  display: flex !important;
}
.sidebar-menu li a {
  color: var(--midnight-blue) !important;
  font-size: 24px;
  font-weight: 700;
  font-family: inherit;
  transition: 0.3s;
}
.sidebar-menu li a:hover {
  color: var(--magenta) !important;
}
.navbar-toggle {
  font-size: 30px;
  display: none;
}
.navbar-area.active .navbar-toggle {
  display: none;
}
.navbar-area.active .header-nav {
  display: flex;
}
.navbar-area.active .header-cta {
  display: none;
}
.navbar-toggle img {
  cursor: pointer;
}
.sidebar-menu .btn.mobile {
  background: var(--midnight-blue);
  color: var(--white);
  margin-top: 80px;
  display: none;
}
.sidebar-language {
  flex-direction: row !important;
  padding-left: 0 !important;
  gap: 10px !important;
}
.sidebar-language li a {
  font-size: 18px;
  font-weight: 600;
}
.sidebar-menu .wpml-ls-menu-item {
  display: none;
}
/* Sticky Header */
.site-header.sticky .navbar-toggle {
  display: block;
}
.site-header.sticky #menu-main-menu {
  display: none !important;
}
.site-header.sticky .logo-wrap img:nth-child(1) {
  display: none;
}
.site-header.sticky .logo-wrap img:nth-child(2) {
  display: block;
}
.wpml-ls-item-en {
  position: relative;
}
.wpml-ls-item-en:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 17px;
  background: #fff;
  top: 3px;
  left: 31px;
}
/*****************************************************/
/********************   Home Page  *******************/
/*****************************************************/
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  margin-top: -100px;
}
.hero .swiper-wrapper {
  height: 100vh;
}
.hero .hero-slide {
  background-size: cover;
  background-position: bottom center;
  display: flex;
  align-items: end;
  padding-bottom: 80px;
  height: 100%;
}
.hero .hero-slide::before {
  content: "";
  position: absolute;
  background-image: linear-gradient(to top, #fff0 0%, #062337d4 100%);
  height: 185px;
  width: 100%;
  top: 0;
  left: 0;
}
.hero .hero-slide::after {
  content: "";
  position: absolute;
  background-image: linear-gradient(to bottom, #fff0 0%, #1d031d 100%);
  height: 185px;
  width: 100%;
  bottom: 0;
  left: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero .swiper-button-next::after, .hero .swiper-button-prev::after {
  display: none !important;
}
.hero .swiper-button-prev img, .hero .swiper-button-next img {
  filter: invert(1) brightness(100%);
}
.hero-title {
  color: var(--white);
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 18px;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.hero-sub {
  color: var(--white);
  margin-bottom: 28px;
  font-size: 16px;
  font-weight: 500;
}
.btn-style {
  display: inline-block;
  padding: 7px 35px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  /*   background: rgba(250, 249, 246, 0.2); */
  background: transparent;
  border-radius: 5px;
}
.btn-style img {
  filter: invert(1) brightness(2);
  margin-right: 8px;
  opacity: 0;
  visibility: hidden;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, max-width 0.5s ease, visibility 0.5s ease;
}
.btn-style:hover {
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-style:hover img {
  opacity: 1;
  visibility: visible;
  max-width: 24px;
}
.btn-transparent {
  background: transparent;
}
/* Stats / Feature Section */
.stats-section {
  padding: 100px 0;
  color: var(--white);
  position: relative;
}
.stats-left {
  max-width: 540px;
}
.stats-desc {
  color: rgba(255, 255, 255, 0.9);
  margin: 45px 0;
}
.stats-list {
  gap: 28px;
  margin-bottom: 26px;
}
.stat-item {
  flex-basis: calc(100% / 3);
  text-align: center;
}
.stat-num {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.stat-caption {
  color: var(--white);
}
.stats-right {
  display: flex;
  justify-content: flex-end;
}
.image-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.image-stack img {
  transition: transform 0.5s ease;
}
.image-stack .img-large {
  width: 427px;
  border-radius: 12px;
  display: block;
  height: 540px;
  object-fit: cover;
}
.image-stack .img-small {
  position: absolute;
  right: 75%;
  top: 75%;
  border-radius: 10px;
  transform: translateY(-50%);
  width: 317px;
  height: 350px;
  object-fit: cover;
}
.image-stack:hover img:nth-child(1) {
  transform: rotate(-4deg);
}
.image-stack:hover img:nth-child(2) {
  transform: translateY(-50%) rotate(4deg);
}
/* Three Steps Section */
.three-steps-section {
  padding: 80px 0 120px 0;
  color: #fff;
  background: linear-gradient(to bottom, #2f174100, #3a194c, #32113b, #421246, #3e144233);
  background-size: 100%;
  background-repeat: no-repeat;
}
.steps-left {
  max-width: 540px;
  position: sticky;
  top: 130px;
}
.steps-title {
  margin-bottom: 18px;
}
.steps-desc {
  color: rgba(255, 255, 255, 0.9);
  margin: 45px 0;
  line-height: 1.6;
}
.steps-cta {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: transparent;
  border-radius: 6px;
}
.steps-right {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 12px;
  align-items: flex-end;
}
.single-step-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  color: #222;
  width: 540px;
  padding: 18px;
}
.step-image {
  width: 100%;
  height: 325px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.step-card-body {
  flex: 1;
  padding-top: 18px;
  border-radius: 10px;
}
.step-meta {
  color: var(--midnight-blue);
  font-weight: 500;
  margin-bottom: 6px;
}
.step-title {
  color: var(--magenta);
  font-size: 40px;
  margin: 0 0 8px 0;
  font-weight: 700;
}
.step-card-body p {
  color: var(--midnight-blue);
}
/* CTA Section */
.cta-section {
  padding: 56px 0 80px 0;
}
.cta-box {
  max-width: 1098px;
  margin: 0 auto;
  padding: 70px 130px;
  border-radius: 10px;
  background: linear-gradient(to right, #DE007D 0%, #690841 100%);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  position: relative;
}
.cta-box:before {
  content: "";
  position: absolute;
  inset: 15px;
  border-radius: 10px;
  border: 1px solid #FAF9F6;
  pointer-events: none;
}
.cta-title {
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
}
.cta-desc {
  text-align: center;
  color: #FAF9F6;
  margin: 18px 0;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.cta-actions a {
  background: var(--white) !important;
  color: var(--midnight-blue) !important;
  padding: 7px 30px;
}
.cta-actions a img {
  filter: unset;
}
/* Services / Cards Section */
.services-section {
  padding: 80px 0 120px 0;
  color: var(--white);
}
.services-title {
  text-align: center;
}
.services-intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  max-width: 880px;
  margin: 0 auto 36px auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  display: block;
  height: 512px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.service-card.small {
  height: 342px;
}
.service-card.big.up {
  margin-top: -170px;
}
.service-card .card-overlay {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.55) 100%);
  height: 250px;
  bottom: 0;
  transition: 0.6s;
}
.service-card:hover .card-overlay {
  background: #00000085;
  height: 100%;
}
.card-overlay p {
  overflow: hidden;
  /* text-overflow: ellipsis; */
  /* display: -webkit-box; */
  /* -webkit-line-clamp: 2; */
  /* -webkit-box-orient: vertical; */
  transition: 0.3s;
  color: var(--white);
  height: 50px;
}
.service-card:hover .card-overlay p {
  /* overflow: visible;
  text-overflow: unset;
  -webkit-line-clamp: unset; */
  transition: 0.3s;
  height: auto;
}
.service-card h3 {
  color: var(--white);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-mobile-slider, .other-service-mobile-slider {
  display: none;
}
/* Styles for the advantages section */
.advantages-section {
  padding: 60px 0;
}
.advantages-section-header {
  text-align: center;
}
.advantages-section-header span {
  margin-bottom: 20px;
  display: block;
}
.advantages-section-header h2 {
  margin-bottom: 30px;
}
.advantages-section-header p {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.advantage-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  transition: 0.3s;
}
.advantage-card:hover {
  background: var(--magenta);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.advantage-card:hover img {
  filter: brightness(0) invert(1);
}
.advantage-card:hover h4, .advantage-card:hover p {
  color: var(--white);
}
.advantage-card img {
  height: 89px;
}
.advantage-card h4 {
  font-size: 24px;
  color: var(--midnight-blue);
  font-weight: bold;
  margin-bottom: 10px;
}
.advantage-card p {
  color: var(--midnight-blue);
}
/* Styles for the partners slider section */
.partners-slider-section {
  padding: 150px 0;
}
.partners-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.partners-slider-section p {
  margin-bottom: 45px;
  font-weight: 500;
}
.partners-swiper {
  max-width: 1900px;
  width: 100%;
}
.partner-logo {
  height: 40px;
}
/* Styles for the testimonials slider section */
.testimonials-slider-section {
  padding: 60px 0;
}
.swiper-pagination {
  bottom: 0;
}
.swiper {
  padding-bottom: 40px !important;
}
.swiper-pagination-bullet {
  background-color: #71767D;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: #D9D9D9;
}
.testimonials-slider-section h2 {
  margin-bottom: 40px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.testimonial-card .stars {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.testimonial-card .stars li i {
  color: var(--midnight-blue);
  font-size: 30px;
}
.testimonial-card p {
  color: var(--midnight-blue);
  margin: 30px 0;
}
.testimonial-card h5 {
  font-weight: 600;
  color: var(--midnight-blue);
}
/* Footer styles */
.site-footer {
  padding: 60px 0;
}
.footer-contact {
  max-width: 560px;
}
.site-footer h4 {
  font-weight: 700;
  margin-bottom: 20px;
}
.site-footer p {
  margin-bottom: 25px;
}
.site-footer p a {
  color: var(--white);
}
.footer-contact strong {
  font-weight: 600;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links li a {
  color: var(--white);
  text-decoration: none;
  transition: 0.3s;
}
.footer-links li a:hover {
  color: var(--magenta);
}
.footer-bottom {
  margin-top: 30px;
  font-size: 14px;
  text-align: right;
}
.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 10px;
  padding: 0;
  font-size: 13px;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.footer-bottom a:last-child {
  margin-right: 0;
}
.desktop-footer-contact {
  margin-bottom: 25px;
}
.desktop-footer-contact ul li a {
  padding: 0;
  color: #fff;
  transition: 0.3s;
}
.desktop-footer-contact ul li a:hover {
  color: var(--magenta);
}
.mobile-footer-btn, .mobile-footer-time {
  display: none;
}
/*****************************************************/
/*****************   Services Page *******************/
/*****************************************************/
.service-advantage-area {
  padding: 100px 0;
}
.banner-section {
  padding: 100px 0;
}
.hero-text {
  max-width: 540px;
}
.hero-text p {
  margin: 30px 0;
}
.hero-text ul {
  margin-bottom: 60px;
}
.hero-text ul li {
  margin-bottom: 20px;
  position: relative;
  margin-left: 35px;
}
.hero-text ul li:before {
  width: 23px;
  height: 26px;
  background-image: url(/wp-content/uploads/2026/02/cube.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  position: absolute;
  left: -35px;
  top: 50%;
  color: var(--magenta);
  transform: translateY(-50%);
}
.hero-text ul li:last-child {
  margin-bottom: 0;
}
.banner-image img {
  border-radius: 10px;
}
.service-advantage-area .advantages-section-header {
  text-align: left;
  position: sticky;
  top: 120px;
}
.service-advantage-area .advantages-section-header h2 {
  max-width: 465px;
  text-align: left;
}
.service-advantage-area .advantages-section-header p {
  max-width: 550px;
  margin: unset;
  margin-bottom: 0;
}
.other-services-section {
  padding: 100px 0;
}
.other-services-section .container h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}
/*****************************************************/
/*****************   Contact Page *******************/
/*****************************************************/
.contact-info {
  margin-top: 50px;
}
.contact-info ul {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
}
.contact-info ul li {
  position: unset;
  padding: 0;
  margin: 0;
  flex-basis: calc(100% / 3);
}
.contact-info ul li p {
  font-size: 16px;
}
.contact-info ul li a {
  color: var(--white);
  text-align: center;
}
.contact-info ul li a img {
  display: block;
  margin: 0 auto 15px;
}
.contact-form-container {
  padding: 40px 20px;
  text-align: center;
}
.contact-form-container .container {
  max-width: 875px;
  margin: 0 auto;
}
.contact-form-container h2 {
  margin-bottom: 100px;
}
.form-input-group {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form-container input, select, textarea {
  width: 100%;
  background: transparent !important;
  border: 1px solid var(--white) !important;
  border-radius: 4px !important;
  padding: 12px 15px !important;
  color: var(--white) !important;
  font-size: 14px !important;
  outline: none !important;
}
.contact-form-container textarea {
  margin-top: 16px;
  height: 300px;
  resize: none;
}
.fb-choice.fb-checkbox {
  color: #fff;
}
.formbuilder-field-type-select .fb-field-content {
  position: relative;
}
.formbuilder-field-type-select .fb-field-content:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  height: 15px;
  width: 15px;
  background: url(/wp-content/uploads/2026/02/arrow-down.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
  transition: 0.3s;
}
.formbuilder-field-type-select .fb-field-content.fb-field-focussed:after {
  transform: translateY(-50%) rotate(180deg);
}
.contact-form-container input::placeholder, textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.contact-form-container .custom-select {
  margin-bottom: 15px;
  width: 49%;
  text-align: left;
}
.contact-form-container select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}
.contact-form-container select option {
  background: #44224D;
}
.contact-form-container .checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0;
  font-size: 13px;
}
.contact-form-container input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
}
#fb-submit-button {
  padding: 9px 25px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: transparent;
  border-radius: 5px;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
  transition: 0.3s;
}
#fb-submit-button:hover {
  background: #FFF;
  color: var(--midnight-blue);
}
.fb-success-msg {
  border-color: rgba(255, 255, 255, 0.6);
  border-image: initial;
  background: rgba(250, 249, 246, 0.2);
  border-radius: 5px;
  color: #FFF;
}
/*****************************************************/
/***************  Zusammenarbeit Page ****************/
/*****************************************************/
.process-section {
  padding: 100px 20px;
}
.process-header {
  text-align: center;
  margin-bottom: 80px;
}
.process-header h2 {
  max-width: 845px;
  margin-left: auto;
  margin-right: auto;
}
.process-header p {
  max-width: 845px;
  margin: 0 auto;
}
/* Timeline Logic */
.timeline-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vertical-line {
  position: absolute;
  width: 2px;
  background-color: var(--white);
  top: 250px;
  bottom: 450px;
  left: 50%;
  transform: translateX(-50%);
}
.dot {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: var(--magenta);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  outline: 10px solid #0d2244;
}
.dot-1 {
  top: 0;
}
.dot-2 {
  top: 50%;
  outline-color: #062b4f;
}
.dot-3 {
  bottom: 0;
  outline-color: #072749;
}
.single-step-card.right {
  align-self: flex-end;
}
.single-step-card.left {
  align-self: flex-start;
}
/* Staggering vertically */
.card-2 {
  margin-top: -185px;
}
.card-3 {
  margin-top: -185px;
  margin-bottom: 0;
}
/*****************************************************/
/******************   FAQ Page   ******************/
/*****************************************************/
.faq-section {
  padding: 80px 0;
  color: #fff;
}
.faq-header {
  margin-bottom: 60px;
}
.faq-category {
  margin-bottom: 40px;
}
.faq-category h3 {
  margin-bottom: 30px;
  font-weight: 700;
}
.faq-item:nth-child(1) {
  border-top: 1px solid var(--white);
}
.faq-item {
  border-bottom: 1px solid var(--white);
}
.faq-question {
  width: 100%;
  background: transparent;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.faq-question i {
  transition: transform 0.3s ease;
}
.faq-question i.rotate {
  transform: rotate(180deg);
}
.faq-question[aria-expanded="true"] {
  color: var(--magenta);
}
.faq-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.7;
  padding-bottom: 20px;
}
.faq-contact h4 {
  font-size: 32px;
  font-weight: 700;
}
.faq-contact p {
  margin: 16px 0 39px;
}
/* restliche */
.restliche-content-group .single-restliche:nth-child(even) .row {
  flex-direction: row-reverse;
}
.restliche-content-group .single-restliche:nth-child(even) .row .col-md-6:first-child {
  display: flex;
  justify-content: flex-end;
}
.single-restliche .hero-text {
  padding-right: 100px;
  max-width: unset;
}
.restliche-content-group .single-restliche:nth-child(even) .row .hero-text {
  padding-left: 100px;
  padding-right: 0;
}
.image-stack.mobile-image, .banner-image.mobile-image {
  display: none;
}
.single-restliche .image-stack .img-small {
  right: -50%;
}
/* Team Member Section */
.team-member-area {
  margin-top: 100px;
}
.team-members {
  margin-top: 40px;
}
.team-member {
  text-align: center;
}
.team-member img {
  border-radius: 10px;
}
.team-member-content {
  padding: 25px;
}
.team-member-info {
  margin-bottom: 24px;
}
.team-member-info h4 {
  font-size: 20px;
  font-weight: 700;
}
.team-member-contact a {
  color: var(--white);
  margin-bottom: 12px;
  transition: 0.3s;
}
.team-member-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-item {
  text-align: left;
  min-width: 203px;
}
.contact-item img {
  height: 25px;
  border-radius: 0;
  margin-right: 10px;
}
.team-member-contact a:hover {
  color: var(--magenta);
}
