@charset "UTF-8";
/* CSS Document */

:root {
  --purple: rgba(36,26,87,1.00);
}


body {
  margin: 0;
  padding: 0;
  background-color: rgba(255,255,255,1.0);
  font-family: proxima-nova, sans-serif;
  color: var(--purple);
}

header {
  width: 100%;
  animation-name: header;
  animation-duration: 1.5s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  position: fixed;
  height: 105px;
  transition: background-color 0.6s ease, backdrop-filter 0.6s ease; /* Sanfter Übergang */
}

header.scrolled {
  background-color: rgba(255,255,255, 0.85);
  backdrop-filter: blur(10px);
  opacity: 1;
  visibility: visible;
}

/* Animation Stage  Container */
@keyframes header {
  from {
    opacity: 0;
    transform: translateY(0px); /* Optional: Start leicht versetzt für schöneren Effekt */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    visibility: hidden; /* Start-Zustand */
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s; /* Falls nötig, ohne Verzögerung für den Effekt */
  }
}

h1 {
  margin: 0;
  padding: 0;
}

h2 {
  margin: 0;
  padding: 0;
}

h3 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}


.button-icon {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: proxima-nova, sans-serif;
  background-image: url("../images/icons/pfeil.svg");
  background-repeat: no-repeat;
  background-position: right 7px;
  background-size: 20px auto;
  padding-right: 30px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--purple);
  display: flex;
  align-items: center;
  width: max-content;
}

.button-icon:hover {
  background-image: url("../images/icons/pfeil-maincolor-hover.gif");
}

.button-icon img {
  height: 35px;
  padding-right: 15px;
}


/* Menu */

.menu-button {
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  z-index: 99;
  border: none;
  right: 3.47%;
  top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 32px;
  padding: 0;
}

.menu-button .menu-button-icon,
.menu-button .menu-button-icon::before,
.menu-button .menu-button-icon::after {
  background-color: var(--purple);
  border-radius: 3px;
  width: 24px;
  height: 3px;
  display: block;
  content: '';
  position: absolute;
  transition: all 0.3s ease;
}

.menu-button .menu-button-icon {
  position: relative;
}

.menu-button .menu-button-icon::before {
  top: -8px;
}

.menu-button .menu-button-icon::after {
  top: 8px;
}

.menu-button.active .menu-button-icon {
  background-color: transparent;
}

.menu-button.active .menu-button-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button.active .menu-button-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.header-button-icon {
  position: absolute;
  left: 3.47%;
  top: 35px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: proxima-nova, sans-serif;
  background-image: url("../images/icons/pfeil.svg");
  background-repeat: no-repeat;
  background-position: right 7px;
  background-size: 20px auto;
  padding-right: 30px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--purple);
  display: flex;
  align-items: center;
  width: max-content;
}

.header-button-icon:hover {
  background-image: url("../images/icons/pfeil-maincolor-hover.gif");
}

.header-button-icon img {
  height: 35px;
  padding-right: 15px;
}

.logo-fixed {
  animation-name: none !important;
  top: 25px;
  color: var(--purple);
  font-size: 28px;
  font-family: "brother-1816", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  position: fixed;
  left: 50%;
	transform: translate(-50%, 0);
  z-index: 99;
  text-align: center;
}

.logo-fixed span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: proxima-nova, sans-serif;
  text-transform: uppercase;
  display: block;
  margin-top: -5px;
}

.logo-container {
  width: auto;
  height: auto;
  text-align: center;
  position: absolute;
  left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
  z-index: 99;
  animation-name: logo-container;
  animation-duration: 2s;
  animation-delay: 4.5s;
  animation-fill-mode: forwards;
}

.logo {
  font-size: 42px;
  font-family: "brother-1816", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,1.00);
  animation-name: logo;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

.logo span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: proxima-nova, sans-serif;
  text-transform: uppercase;
  display: block;
  margin-top: -5px;
}

/* Animation Logo Container */
@keyframes logo-container {
  from {
    top: 50%;
	  transform: translate(-50%,-50%);
    position: absolute;
  }
  to {
    top: 25px;
	  transform: translate(-50%, 0);
    position: fixed;
  }
}


/* Animation Logo */
@keyframes logo {
  from {
    color: rgba(255,255,255,1.00);
    font-size: 42px;
  }
  to {
    color: var(--purple);
    font-size: 28px;
  }
}


/* Menu Overlay */


/* Grundlegendes Styling für das Overlay */
.menu-overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateX(100%);
  transition: all 0.6s ease-in-out;
  z-index: 10;
  color: var(--purple);
  /* Bildmarke Hintergrund
  background-image: url("../images/bildmarke.svg");
  background-size: 108vh auto;
  background-position: left center;
  background-repeat: no-repeat; */
}

.menu-overlay.open {
  transform: translateX(0);
}

/* Styling für das Untermenü */
.sub-menu {
  display: none; /* Unsichtbar, wenn inaktiv */
  list-style: none;
  padding-left: 20px;
  margin-top: 10px;
}

.sub-menu.show {
  display: flex;
  flex-direction: column;
  animation: fadeInMenu 0.5s ease forwards;
}

.sub-menu a {
  font-size: 20px;
  color: var(--purple);
  padding: 5px 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  background-repeat: no-repeat !important;
  background-position: right center;
  background-size: 30px auto;
  padding-right: 35px;
}

.sub-menu a:hover {
  background-image: url("../images/icons/pfeil-maincolor-hover.gif");
}


.sub-menu.show a {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframe für Fade-In-Effekt */
@keyframes fadeInMenu {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}



@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

nav {
  padding-left: 11.21527777777778%;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

nav a {
  font-family: brother-1816, sans-serif;
  font-weight: 700;
  font-size: 32px;
  padding-right: 60px;
  background-repeat: no-repeat !important;
  background-position: right center;
  background-size: 50px auto;
  color: var(--purple);
  text-transform: uppercase;
  text-decoration: none;
  display: table;
}

nav a:hover {
  background-image: url("../images/icons/pfeil-maincolor-hover.gif");
}




.menue-footer-container {
  width: 100%;
  box-sizing: border-box;
  padding-left: 3.47%;
  padding-right: 3.47%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 55px;
}

.menue-footer-legal {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.menue-footer-legal a {
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  color: var(--purple);
  display: inline-block;
}

.menue-footer-contact {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.menue-footer-contact a {
  font-size: 15px;
  text-decoration: none;
  color: var(--purple);
  display: inline-block;
}



.stage-overlay-container {
  width: 100%;
  height: 100vh;
  position: absolute;
  animation-name: stage-overlay-container;
  animation-duration: 1.5s;
  animation-delay: 3.5s;
  animation-fill-mode: forwards;
  z-index: 2;
}

/* Animation Stage Overlay Container */
@keyframes stage-overlay-container {
  from {height: 100vh;}
  to {height: 0px;}
}

.stage-overlay {
  width: 100%;
  height: 100%;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  animation-name: stage-overlay;
  animation-duration: 3s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  background-color: var(--purple);
}


/* Animation Stage Overlay */
@keyframes stage-overlay {
  from {width: 100%;}
  to {width: 1px;}
}


.stage-video {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
}

.stage-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation-name: stage-video;
  animation-duration: 4s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}

/* Animation Stage Overlay */
@keyframes stage-video {
  from {opacity: 1;}
  to {opacity: 0.8;}
}


/* Stage */

.stage {
  width: 100%;
  height: 100vh;
  position: relative;
  top: 0;
  opacity: 0;
  background-color: rgba(242,242,242,0.6);
  animation-name: stage-container;
  animation-duration: 1.5s;
  animation-delay: 5s;
  animation-fill-mode: forwards;
  backdrop-filter: blur(10px);
}

/* Animation Stage  Container */
@keyframes stage-container {
  from {
    opacity: 0;
    transform: translateY(0px); /* Optional: Start leicht versetzt für schöneren Effekt */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    visibility: hidden; /* Start-Zustand */
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s; /* Falls nötig, ohne Verzögerung für den Effekt */
  }
}

.stage-content {
  left: 11.21527777777778%;
  /*padding-left: 1.73611111111111%;
  border-left-style: solid;
  border-left-color: var(--purple);
  border-left-width: 1px;*/
  position: absolute;
  bottom: 15vh;
}

.stage-content p {
  width: 53%;
  font-family: "brother-1816", sans-serif;
  font-size: 24px;
  line-height: 34px;
  padding-bottom: 50px;
}

.stage-content-select {
  width: 60%;
}

.stage-content-select-titel {
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 15px;
}

.stage-content-select a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: proxima-nova, sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  background-image: url("../images/icons/stroke.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 9px auto;
  padding-left: 15px;
  color: var(--purple);
  margin-bottom: 5px;
  margin-right: 15px;
}


/* Intro */


.home-intro-headline {
  font-family: "brother-1816", sans-serif;
  font-size: 46px;
  line-height: 58px;
  font-weight: 700;
  width: 56.875%;
  padding-left: 11.21527777777778%;
  padding-top: 180px;
}

.home-intro-container {
  width: 100%;
  height: auto;
  padding-top: 150px;
  padding-bottom: 150px;
  display: flex;
}

.home-intro-content {
  width: 56.875%;
  padding-left: 11.21527777777778%;
  padding-right: 11.21527777777778%;
}

.home-intro-content p {
  font-family: "brother-1816", sans-serif;
  font-weight: 200;
  padding-left: 19.71916971916972%;
  font-size: 24px;
  line-height: 34px;
}

.home-intro-content-vita {
  width: 100%;
  padding-top: 90px;
  padding-bottom: 100px;
  padding-left: 19.71916971916972%;
  font-size: 16px;
  line-height: 24px;
  box-sizing: border-box;
}

.home-intro-content-vita-subheadline {
  font-size: 15px;
  font-weight: 700;
  padding-bottom: 5px;
  text-transform: uppercase;
  padding-top: 15px;
}

.home-intro-content-button {
  padding-left: 19.71916971916972%;
}

.home-intro-content-button-titel {
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 15px;
}




.home-intro-picture {
  width: 20.69444444444444%;
  background-color: rgba(36,26,87,1.00);
  display: flex;
  align-items: center;
}

.home-intro-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}




/* Slider */

.about-slider-steps-container {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}

.slick-current {
  filter: blur(0px) !important;
  -webkit-filter: blur(0px) !important;
  backdrop-filter: blur(0px) !important;
  opacity: 1 !important;
}

.slick-slide {
  filter: blur(5px);
  -webkit-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 0.7;
}

.about-slider-steps-content {
  width: calc(28.4375% * 2) !important;
  box-sizing: border-box;
  margin-left: calc(11.21527777777778% * 2);
  /*margin-right: 11.21527777777778%;*/
  padding-left: calc(1.73611111111111% * 2);
  border-left-style: solid;
  border-left-color: var(--purple);
  border-left-width: 1px;
}

.about-slider-steps-content-headline {
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 10px;
}

.about-slider-steps-content-headline sup {
  font-size: 18px;
}

.about-slider-steps-content p {
  font-family: "brother-1816", sans-serif;
  font-weight: 200;
  font-size: 24px;
  line-height: 34px;
}

.slick-next {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: proxima-nova, sans-serif;
  background-image: url("../images/icons/pfeil.svg");
  background-repeat: no-repeat;
  background-position: right 2px;
  background-size: 20px auto;
  padding-right: 30px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--purple);
  background-color: transparent;
  border: none;
  margin-left: 11.21527777777778%;
  margin-top: 80px;
  cursor: pointer;
}

.slick-next:hover {
  background-image: url("../images/icons/pfeil-maincolor-hover.gif");
}

.slick-next img {
  height: 35px;
  padding-right: 15px;
}


/* Fachgebiete */

.home-gebiete-container {
  width: 93.05555555555556%;
  height: auto;
  padding-left: 3.47222222222222%;
  padding-right: 3.47222222222222%;
  padding-top: 130px;
  padding-bottom: 150px;
}

.home-gebiete-container-headline {
  font-size: 32px;
  color: var(--main-color);
  font-weight: 800;
  padding-bottom: 60px;
}

.home-gebiete-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 60px;
}

.home-gebiete {
  width: 28.69402985074627%;
  height: auto;
  color: var(--main-color);
  text-decoration: none;
  border-bottom-style: double;
  border-bottom-width: 3px;
  border-bottom-color: var(--main-color);
  background-image: url("../images/icons/pfeil.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 20px auto;
}

.home-gebiete:hover {
  background-image: url("../images/icons/pfeil-maincolor-hover.gif");
}

.home-gebiete img {
  height: 35px;
  padding-right: 15px;
}

.home-gebiete-headline {
  font-family: brother-1816, sans-serif;
  font-size: 24px;
  padding-bottom: 5px;
}

.home-gebiete p {
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 25px;
}

.home-button {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: proxima-nova, sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--purple);
  cursor: pointer;
}

/* Unterseite */

.us-stage {
  width: 100%;
  background-color: rgba(233,233,233,1.0);
  position: relative;
  box-sizing: border-box;
  height: 60vh;
  background-image: url("../images/unterseiten-platzhalter.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.us-stage-background {
  width: 100%;
  height: 60vh;
  position: absolute;
  z-index: 0;
  opacity: 0;
  background-color: rgba(242,242,242,0.6);
  animation-name: stage-container;
  animation-duration: 1.5s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  backdrop-filter: blur(10px);
}

.us-stage-content {
  padding-left: 11.21527777777778%;
  bottom: 100px;
  position: absolute;
  z-index: 1;
}

.us-stage-content h1 {
  font-size: 32px;
  color: var(--purple);
  font-weight: 700;
  padding-bottom: 10px;
}

.us-stage-content p {
  width: 37.91666666666667%;
  font-family: "brother-1816", sans-serif;
  font-weight: 200;
  font-size: 24px;
  line-height: 34px;
}

.us-content {
  padding-left: 11.21527777777778%;
  padding-right: 11.21527777777778%;
  width: 100%;
  box-sizing: border-box;
  padding-top: 180px;
  padding-bottom: 120px;
}

.us-content h2 {
  font-family: "brother-1816", sans-serif;
  font-size: 46px;
  line-height: 58px;
  font-weight: 700;
  width: 70%;
  padding-bottom: 50px;
}

.us-content p {
  font-family: brother-1816, sans-serif;
  font-size: 24px;
  line-height: 36px;
  width: 70%;
}

.us-content h3 {
  font-size: 32px;
  color: var(--purple);
  font-weight: 700;
  width: 70%;
  line-height: 38px;
  padding: 75px 0 50px 0;
}

.us-content ul {
  margin: 0;
  font-family: brother-1816, sans-serif;
  font-size: 24px;
  line-height: 36px;
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.us-content li {
  margin: 0;
}


.us-content-ul-check {
  padding: 50px 0;
  list-style: none !important;
}

.us-content-button {
  margin-top: 30px;
  margin-bottom: 30px;
}



.us-content-chechlist {
  font-family: brother-1816, sans-serif;
  font-size: 24px;
  padding-bottom: 5px;
  padding-top: 20px;
}

.us-content-chechlist::before {
  content: ' ';
  width: 22px;
  height: 15px;
  background-image: url("../images/icons/check.svg");
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 15px;
}


/* About */

.about-intro-container {
  width: 100%;
  height: auto;
  background-color: rgba(255,255,255,1.00);
  display: flex;
  padding-top: 190px;
}

.about-intro-content {
  width: 47.39583333333333%;
  padding-left: 11.21527777777778%;
  padding-right: 11.21527777777778%;
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-intro-content h1 {
  font-size: 46px;
  line-height: 58px;
  font-weight: 800;
}

.about-intro-content p {
  font-family: "brother-1816", sans-serif;
  font-weight: 200;
  font-size: 24px;
  line-height: 34px;
  padding-top: 50px;
}


.about-intro-content-button {
    margin-top: 50px;
    margin-bottom: 50px;
}

.about-intro-content-text {
  color: var(--main-color);
  font-size: 16px;
  line-height: 24px;
}

.about-intro-picture {
  width: 31.90972222222222%;
  background-color: rgba(233,233,233,1.0);
  position: relative;
  display: flex;
  align-items: center;
}

.about-intro-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.about-content {
  padding-left: 11.21527777777778%;
  padding-right: 11.21527777777778%;
  width: 100%;
  box-sizing: border-box;
  padding-top: 50px;
  padding-bottom: 120px;
}

.about-content h2 {
  font-family: "brother-1816", sans-serif;
  font-size: 46px;
  line-height: 58px;
  font-weight: 700;
  width: 70%;
  padding-bottom: 50px;
}

.about-content p {
  font-family: brother-1816, sans-serif;
  font-size: 24px;
  line-height: 36px;
  width: 70%;
}

.about-content h3 {
  font-size: 32px;
  color: var(--purple);
  font-weight: 700;
  padding-bottom: 50px;
  width: 70%;
  line-height: 38px;
  padding-top: 50px;
}

.about-content ul {
  padding: 65px 0;
}

.about-content li {
  font-family: brother-1816, sans-serif;
  font-size: 24px;
  padding-bottom: 5px;
  padding-top: 20px;
  list-style: none;
}

.about-content ul li::before {
  content: ' ';
  width: 22px;
  height: 15px;
  background-image: url("../images/icons/check.svg");
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 15px;
}


/* Branchen */

.branchen-container {
  width: 100%;
  padding: 150px 0 0 0;
}

ul.tabs {
  margin: 0;
  padding: 0 3.47222222222222% 0 3.47222222222222%;
  list-style: none;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

ul.tabs li {
  margin: 0;
  width: 28.69402985074627%;
  font-size: 32px;
  font-weight: 800;
  cursor: pointer;
  padding: 0 0 10px 0;
  color: var(--purple);
  border-bottom: 1px solid var(--purple);
  opacity: 0.25;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

ul.tabs li:hover {
  opacity: 1;
}

ul.tabs li.active {
  opacity: 1;
}

.tab_container {
  width: 100%;
  background: #fff;
  overflow: auto;
}

.tab_content {
  display: none;
}

.branchen-tabs-content-container {
  width: 100%;
  display: flex;
}


.branchen-tabs-content {
  padding: 80px 0 0 11.21527777777778%;
  width: 70%;
  box-sizing: border-box;
}

.branchen-tabs-content h2 {
  font-family: brother-1816, sans-serif;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  padding-bottom: 40px;
}

.branchen-tabs-content p {
  font-family: brother-1816, sans-serif;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
}

.branchen-tabs-content ul {
  padding: 65px 0;
  font-family: brother-1816, sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  margin-left: 20px;
}

.branchen-tabs-content li {
  padding: 13px 0;
}


/* Download */

.download-container {
  width: 93.05555555555556%;
  height: auto;
  padding-left: 3.47222222222222%;
  padding-right: 3.47222222222222%;
  padding-top: 130px;
  padding-bottom: 150px;
}

.download-container h2 {
  font-size: 32px;
  color: var(--main-color);
  font-weight: 800;
  padding-bottom: 60px;
}

.download-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 60px;
}

.download {
  width: 28.69402985074627%;
  height: auto;
  color: var(--main-color);
  text-decoration: none;
  border-bottom-style: double;
  border-bottom-width: 3px;
  border-bottom-color: var(--main-color);
  background-image: url("../images/icons/pfeil.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 20px auto;
}

.download:hover {
  background-image: url("../images/icons/pfeil-maincolor-hover.gif");
}

.download img {
  height: 30px;
  padding-right: 10px;
}

.download h3 {
  font-family: brother-1816, sans-serif;
  font-size: 24px;
  padding-bottom: 5px;
  font-weight: 400;
}

.download p {
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 25px;
}

/* Numbers */

.numbers-container {
  width: 93.05555555555556%;
  height: auto;
  padding-left: 3.47222222222222%;
  padding-right: 3.47222222222222%;
  padding-top: 100px;
}



.numbers-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 60px;
}

.numbers {
  width: 28.69402985074627%;
  height: auto;
  color: var(--main-color);
  text-decoration: none;
}

.numbers-number {
  font-size: 32px;
  color: var(--main-color);
  font-weight: 800;
  padding-bottom: 60px;
}

.numbers img {
  height: 30px;
  padding-right: 10px;
}

.numbers h2 {
  font-family: brother-1816, sans-serif;
  font-size: 24px;
  font-weight: 400;
  border-bottom-style: double;
  border-bottom-width: 3px;
  border-bottom-color: var(--main-color);
  padding-bottom: 20px;
}

.numbers p {
  font-size: 16px;
  line-height: 24px;
  padding-top: 20px;
}


/* FAQ */

.faq-container {
  width: 93.05555555555556%;
  padding-left: 3.47222222222222%;
  padding-right: 3.47222222222222%;
  padding-bottom: 80px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-headline {
  font-size: 32px;
  color: var(--purple);
  font-weight: 800;
  padding-bottom: 30px;
  padding-top: 50px;
}

.faq-accordion .faq-accordion-item {
}

.faq-accordion .faq-accordion-item button[aria-expanded=true] {
  border-bottom: 2px solid var(--purple);
}

.faq-accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 15px 0 15px 0;
  color: var(--purple);
  font-family: brother-1816, sans-serif;
  font-size: 24px;
  line-height: 34px;
  border: none;
  background: none;
  outline: none;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border-bottom: 1px solid var(--purple);
}

.faq-accordion button:hover, .faq-accordion button:focus {
  cursor: pointer;
  color: var(--purple);
  border-bottom: 2px solid var(--purple);
}

.faq-accordion button:hover::after, .faq-accordion button:focus::after {
  cursor: pointer;
  color: var(--purple);
  border-bottom: 2px solid vvar(--purple);
}

.faq-accordion button .faq-accordion-title {
  padding: 15px 0 15px 30px;
}

.faq-accordion button .faq-icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  left: 0;
  width: 30px;
  height: 30px;
}

.faq-accordion button .faq-icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 14px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.faq-accordion button .faq-icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 10px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.faq-accordion button[aria-expanded=true] {
  cursor: pointer;
  color: var(--purple);
  border-bottom: 2px solid var(--purple);
}
.faq-accordion button[aria-expanded=true] .faq-icon::after {
  width: 0;
}
.faq-accordion button[aria-expanded=true] + .faq-accordion-content {
  opacity: 1;
  max-height: 30em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.faq-accordion .faq-accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.faq-accordion .faq-accordion-content p {
  font-family: brother-1816, sans-serif;
  font-size: 24px;
  line-height: 36px;
  padding: 50px 28.4375% 50px 8.32089552238806%;
  color: var(--purple);
}

.faq-accordion-antwort-headline {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: proxima-nova, sans-serif;
  text-transform: uppercase;
  padding: 50px 28.4375% 50px 8.32089552238806%;
  color: var(--purple);
}


/* Kontakt */

.contact-stage {
  width: 100%;
  background-color: rgba(233,233,233,1.0);
  position: relative;
  box-sizing: border-box;
  height: 60vh;
}

.contact-stage-content {
  padding-left: 11.21527777777778%;
  bottom: 100px;
  position: absolute;
  z-index: 1;
}

.contact-stage-content h1 {
  font-size: 32px;
  color: var(--purple);
  font-weight: 700;
  padding-bottom: 10px;
}

.contact-stage-content p {
  width: 37.91666666666667%;
  font-family: "brother-1816", sans-serif;
  font-weight: 200;
  font-size: 24px;
  line-height: 34px;
}


.contact-form-container {
  width: 100%;
  padding-bottom: 150px;
  padding-top: 100px;
  display: flex;
}

.contact-form-content {
  width: 66.35416666666667%;
  padding-left: 3.47222222222222%;
  padding-right: 7.74305555555556%;
}

.contact-form-content p {
  font-size: 16px;
  line-height: 24px;
  color: var(--purple);
  padding: 40px 0 40px 0;
}

.contact-form-content a {
  text-decoration: underline;
  color: var(--purple);
}

.contact-form-content h2 {
  font-size: 32px;
  color: var(--purple);
  font-weight: 700;
  padding-bottom: 80px;
}



.field {
  border: none;
  border-bottom: solid 1px var(--purple);
  width: 100%;
  padding: 10px 0 10px 0;
  color: var(--main-color);
  font-family: "brother-1816", sans-serif;
  font-weight: 200;
  font-size: 24px;
  background-color: rgba(255,255,255,0.00);
  margin-bottom: 25px;
}

.textarea {
  border: solid 1px var(--purple);
  box-sizing: border-box;
  width: 100%;
  min-height: 200px;
  padding: 10px;
  color: var(--purple);
  font-family: "brother-1816", sans-serif;
  font-weight: 200;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.button-form {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: proxima-nova, sans-serif;
  background-image: url("../images/icons/pfeil-maincolor.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 35px auto;
  padding-right: 40px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--purple);
  display: inline-block;
  border: none;
  background-color: rgba(255,255,255,0.0);
  padding-left: 0;
  cursor: pointer;
}

.button-form:hover {
  background-image: url("../images/icons/pfeil-maincolor-hover.gif");
}


/* Kontakt Checkbox ? */
.jobs-form-checkbox-container {
  width: 100%;
  padding: 40px 0 20px 0;
  font-family: "brother-1816", sans-serif;
  font-weight: 400;
  font-size: 24px;
}

.jobs-form-checkbox-container input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}

.jobs-form-checkbox-container label {
  display: inline-block;
  padding: 12px 30px;
  border-color: var(--purple);
  border-width: 1px;
  border-style: solid;
  border-radius: 1000px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-right: 10px;
  cursor: pointer;
}

.jobs-form-checkbox-container input[type="radio"]:checked + label {
  color: rgba(255,255,255,1.00);
  background-color: var(--purple);
  border-color: var(--purple);
}

.jobs-form-checkbox-container input[type="radio"]:focus + label {
    
}

.jobs-form-checkbox-container span {
  display: block;
  padding-bottom: 20px;
}



.contact-content {
  padding-left: 11.21527777777778%;
  padding-right: 11.21527777777778%;
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 150px;
}

.contact-content h2 {
  font-size: 32px;
  color: var(--purple);
  font-weight: 700;
  padding-bottom: 50px;
  width: 70%;
  line-height: 38px;
}

.contact-content p {
  font-family: brother-1816, sans-serif;
  font-size: 24px;
  line-height: 36px;
  width: 70%;
}

.contact-content p a {
  font-family: brother-1816, sans-serif;
  font-size: 24px;
  line-height: 36px;
  text-decoration: none;
  color: var(--purple);
  border-bottom-style: double;
  border-bottom-width: 3px;
  border-bottom-color: var(--purple);
  background-image: url("../images/icons/pfeil.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 25px auto;
  padding-right: 40px;
}

.contact-content p a:hover {
  background-image: url("../images/icons/pfeil-maincolor-hover.gif");
}





.home-gebiete {
  width: 28.69402985074627%;
  height: auto;
  color: var(--main-color);
  text-decoration: none;
  border-bottom-style: double;
  border-bottom-width: 3px;
  border-bottom-color: var(--main-color);
  background-image: url("../images/icons/pfeil.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 20px auto;
}

.home-gebiete:hover {
  background-image: url("../images/icons/pfeil-maincolor-hover.gif");
}



.legal-container{
  padding-top: 100px;
}

.legal-content {
  padding-left: 11.21527777777778%;
  padding-right: 11.21527777777778%;
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 150px;
}

.legal-content h2 {
  font-size: 32px;
  line-height: 40px;
  color: var(--purple);
  font-weight: 800;
  padding-bottom: 60px;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.legal-content a {
  color: var(--purple);
  text-decoration: none;
}

.legal-content img {
  margin: 0 0 20px 0;
  border: none;
  width: 265px;
  height: auto;
}

.legal-content p {
  font-family: brother-1816, sans-serif;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  padding-bottom: 60px;
}

.legal-content h3 {
  font-size: 32px;
  line-height: 40px;
  color: var(--purple);
  font-weight: 800;
  padding-bottom: 60px;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.entry-content ol {
  margin: 0;
  padding: 0;
}

.entry-content li {
  font-family: brother-1816, sans-serif;
  font-size: 24px;
  line-height: 36px;
  padding: 20px 0;
}

.entry-content p {
  width: 90%;
}





/* Footer */

footer {
  width: 100%;
  padding-top: 150px;
  padding-left: 3.47222222222222%;
  padding-right: 3.47222222222222%;
  height: auto;
  background-color: rgba(36,26,87,0.50);
  box-sizing: border-box;
}

.footer-logo {
  font-family: "brother-1816", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--purple);
  font-size: 28px;
}

.footer-content-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 120px;
}

.footer-content {
  font-size: 16px;
  line-height: 24px;
  width: 25%;
  font-family: "brother-1816", sans-serif;
  font-weight: 200;
}

.footer-content a {
  text-decoration: underline;
  color: var(--main-color);
}

.footer-contact {
  font-size: 16px;
  line-height: 27px;
  width: auto;
  font-family: gotu;
  text-align: right;
}

.footer-icons-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 70px;
  padding-bottom: 50px;
}

.footer-icons-content {
  width: auto;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-icons-content-logo-advocado {
  height: 23px;
  width: auto;
}

.footer-icons-content-logo-anwaltde {
  height: 25px;
  width: auto;
}

.footer-icons-content-logo-djgt {
  height: 45px;
  width: auto;
}

.footer-icons-content p {
  color: var(--main-color);
  font-weight: 700;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 0.02em;
  font-family: proxima-nova, sans-serif;
  text-align: left;
  align-self: left;
}

.footer-icons-content p img {
  width: 12px;
  margin-right: 3px;
}

.footer-contact a {
  text-decoration: none;
  font-family: proxima-nova, sans-serif;
  display: block;
  font-weight: 300;
  color: var(--purple);
}

.footer-legal-container {
  width: 100%;
  padding-bottom: 20px;
  overflow: hidden;
}

.footer-legal-container a {
  text-decoration: none;
  color: var(--main-color);
  font-weight: 700;
  padding-left: 20px;
  font-size: 15px;
}



/* MOBILE ---------------------------------------- */

@media only screen and (max-width: 766px) {
  
header {
  height: 103px;
}  
  
.logo-container {
  width: auto;
  height: auto;
  text-align: left;
  position: absolute;
  left: 5.5%;
	top: 50%;
	transform: translate(0,-50%);
  z-index: 99;
  animation-name: logo-container;
  animation-duration: 2s;
  animation-delay: 4.5s;
  animation-fill-mode: forwards;
}
  
/* Animation Logo Container */
@keyframes logo-container {
  from {
    top: 50%;
	  transform: translate(0,-50%);
    position: absolute;
  }
  to {
    top: 30px;
	  transform: translate(0, 0);
    position: fixed;
  }
}  
  

  
  
.logo {
  font-size: 28px;
  white-space: nowrap;
}
  
/* Animation Logo */
@keyframes logo {
  from {
    color: rgba(255,255,255,1.00);
    font-size: 28px;
  }
  to {
    color: var(--purple);
    font-size: 19px;
  }
}
  

.logo span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: proxima-nova, sans-serif;
  text-transform: uppercase;
  display: block;
  margin-top: -5px;
}
  
.logo-fixed {
  font-size: 19px;
  text-align: left;
  left: 5.5%;
  top: 30px;
  transform: translate(0, 0);
}  
  
.logo-fixed span {
  margin-top: -5px;
  font-size: 12px;
}  
  
  
  
.menu-button {
  font-size: 0;
  height: 24px;
  width: 32px;
  right: 5.5%;
  top: 37px;
}
  
  
nav {
  padding-left: 5.5%;
}  
  
nav a {
  font-size: 26px;
}  
  
.menue-footer-container {
  padding-left: 5.5%;
  padding-right: 5.5%;
  bottom: 20px;
  flex-direction: column;
  gap: 10px;
}  

.menue-footer-legal {
  gap: 25px;
}  
  
.menue-footer-contact {
  gap: 25px;
}  
  
.header-button-icon {
  display: none;
}

.stage-content {
  left: 0;
  position: absolute;
  bottom: 50px;
  padding-left: 11.21527777777778%;
  padding-right: 11.21527777777778%;
  padding-top: 150px;
}

.stage-content p {
  width: 100%;
  font-size: 16px;
  line-height: 30px;
}
  
.stage-content-select-titel {
  font-size: 13px;
  line-height: 20px;
}
  
.home-intro-container {
  padding-top: 100px;
  padding-bottom: 100px;
  flex-wrap: wrap;  
  flex-direction: column-reverse;
}
  
.home-intro-headline {
  font-size: 32px;
  line-height: 40px;
  width: 100%;
  padding-top: 80px;
  box-sizing: border-box;
}  
  
.home-intro-picture {
  width: auto;
  margin-left: 11.21527777777778%;
  margin-right: 11.21527777777778%;
  height: 60vh;
}
  
.home-intro-content {
  width: 100%;
  box-sizing: border-box;
  padding-top: 50px;
}
  
.home-intro-content p {
  padding-left: 0;
  font-size: 16px;
  line-height: 30px;
}
  
.home-intro-content-vita {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 35px;
}  
  
.home-intro-content-button {
  padding-left: 0;
}
  
.about-slider-steps-container {
  padding-top: 50px;
}

.about-slider-steps-content {
  margin-left: calc(11.21527777777778% * 1);
}

.about-slider-steps-content-headline {
  font-size: 24px;
}
  
.about-slider-steps-content-headline sup {
  font-size: 12px;
}  
  
.about-slider-steps-content p {
 font-size: 16px;
  line-height: 30px;
}  
  
.home-gebiete-container {
  padding-top: 50px;
  padding-bottom: 0px;
  padding-left: 5.5%;
  padding-right: 5.5%;
  box-sizing: border-box;
  width: 100%;
}
  
.home-gebiete-container-headline {
  font-size: 24px;
  padding-bottom: 50px;
}  
  
.home-gebiete-headline {
  font-size: 24px;
}
    
.home-gebiete {
  width: 100%;
}
  
    
  
.about-intro-container {
  padding-top: 100px;
  flex-direction: column;
}  
  
.about-intro-content {
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 20px;
}  
  
.about-intro-content h1 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 800;
}  
    
.about-intro-content p {
  font-size: 16px;
  line-height: 30px;
}  
  
.about-intro-picture {  
  margin-left: 5.5%;
  margin-right: 5.5%;
  height: 70vh;
  width: auto;
  margin-bottom: 30px;
}
  
.branchen-container {
  padding: 50px 0 0 0;
}  
  
ul.tabs {
  flex-direction: column;
  padding-left: 5.5%;
  padding-right: 5.5%;
  gap: 20px;
} 
  
ul.tabs li {
  width: 100%;
  font-size: 24px;
  padding: 0 0 5px 0;
}  
  
.branchen-tabs-content {
  padding: 40px 0 0 11.21527777777778%;
  width: 85%;
}  
  
.branchen-tabs-content h2 {
  font-size: 16px;
  line-height: 30px;
  padding-bottom: 35px;
} 
  
.branchen-tabs-content p {
  font-size: 16px;
  line-height: 30px;
}  

.branchen-tabs-content ul {
  padding: 30px 0;
  font-size: 16px;
}  
  
.about-content {
  padding-top: 0px;
  padding-bottom: 60px;
}
  
.about-content h2 {
  font-size: 32px;
  line-height: 40px;
  width: 100%;
}
  
.about-content p {
  font-size: 16px;
  line-height: 30px;
  width: 85%;
}  
  
.about-content ul {
  padding: 30px 0;
}
  
.about-content li {
  font-size: 16px;
}  
  
.about-content ul li::before {
  width: 16px;
  height: 13px;  
}
  
.numbers-container {
  width: 100%;
  padding-left: 11.21527777777778%;
  padding-right: 11.21527777777778%;
  padding-top: 60px;
  box-sizing: border-box;
}  
  
.numbers-content {
  flex-direction: column;
}  
  
.numbers {
  width: 100%;
}  
  
.numbers h2 {
  font-family: brother-1816, sans-serif;
  font-size: 24px;
  font-weight: 400;
  border-bottom-style: double;
  border-bottom-width: 3px;
  border-bottom-color: var(--main-color);
  padding-bottom: 20px;
}
  
.download-container {
  width: 100%;
  padding-left: 5.5%;
  padding-right: 5.5%;
  padding-top: 90px;
  padding-bottom: 60px;
  box-sizing: border-box;
}  
  
.download-content {
  flex-direction: column;
}  
  
.download {
  width: 100%;
}  
  
.faq-accordion .faq-accordion-content p {
  font-size: 16px;
  line-height: 30px;
}  
  
  
.us-stage {
  height: 90vh;
}
  
.us-stage-background {
  height: 100%;
}
  
.us-stage-content {
  bottom: 45px;
}
 
.us-stage-content p {
  width: 80%;
  font-size: 16px;
  line-height: 30px;
}  
  
.us-content {
  padding-top: 100px;
  padding-bottom: 100px;
}
  
.us-content h2 {
  font-size: 32px;
  line-height: 40px;
  width: 80%;
}
  
.us-content p {
  font-size: 16px;
  line-height: 30px;
  width: 90%;
}  
  
.us-content h3 {
  font-size: 24px;
  line-height: 36px;
  width: 90%;
}  
  
.us-content ul {
  font-size: 16px;
  line-height: 30px;
}  
  
.us-content-chechlist {
  font-family: brother-1816, sans-serif;
  font-size: 16px;
  line-height: 30px;
  padding-bottom: 5px;
  padding-top: 20px;
}
  
  
.contact-stage {
 height: 90vh;
}  
  
.contact-stage-content {
  bottom: 45px;
}  
  
.contact-form-content h2 {
  font-size: 24px;
}  
  
.contact-stage-content p {
  width: 80%;
  font-size: 16px;
  line-height: 30px;
}  
  
.contact-form-content {
  width: 100%;
  padding-left: 5.5%;
  padding-right: 5.5%;
  box-sizing: border-box;
}  
  
.contact-content h2 {
  font-size: 24px;
}  
  
.contact-content p {
  font-size: 16px;
  line-height: 30px;
}  
  
.contact-content p a {
  font-size: 16px;
  line-height: 30px;
}  
  
  
.legal-content h2 {
  font-size: 24px;
  line-height: 36px;
}  
  
.legal-content p {
  font-size: 16px;
  line-height: 30px;
} 
  
.legal-content h3 {
  font-size: 24px;
  line-height: 36px;
}  
  
  
footer {
  padding-top: 50px;
}
  
.footer-logo {
  font-size: 24px;
  line-height: 28px;
}  
  
.footer-content-container {
  flex-wrap: wrap;
  padding-bottom: 40px;
}
  
.footer-content {
  width: 100%;
  padding-bottom: 30px;
}
  
.footer-contact {
  width: 100%;
  text-align: left;
}
  
.footer-icons-container {
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 25px;
  padding-bottom: 80px;
}

.footer-legal-container a {
  padding-left: 0;
  display: inline-block;
  padding-right: 10px;
}
  
  
  
  
  
  
  
  
  
  
  
  
  
}






