.has-fade {
  visibility: hidden;
  z-index: 2;
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

.fade-in {
  animation: fade-in 300ms ease-in-out forwards;
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

.fade-out {
  animation: fade-out 0ms ease-in-out forwards;
}

html {
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #735751;
  line-height: 1.3;
}

body.noscroll {
  position: fixed;
  overflow-y: scroll;
}

a, a:visited, a:hover {
  text-decoration: none;
}

.contrast {
  background-color: #eee;
}

.container {
  max-width: 70rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (max-width: 39.9375em) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.container--pall {
  padding-top: 4.375rem;
  padding-right: 1.5rem;
  padding-bottom: 4.375rem;
  padding-left: 1.5rem;
}

@media (min-width: 64em) {
  .container--pall {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.container--py {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}

@media (min-width: 64em) {
  .container--py {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.container--px {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.container--pt {
  padding-top: 4.375rem;
}

@media (min-width: 64em) {
  .container--pt {
    padding-top: 6rem;
  }
}

.container--pr {
  padding-right: 1.5rem;
}

.container--pb {
  padding-bottom: 4.375rem;
}

@media (min-width: 64em) {
  .container--pb {
    padding-bottom: 6rem;
  }
}

.container--pl {
  padding-left: 1.5rem;
}

.flex {
  display: flex;
}

.flex-jc-sb {
  justify-content: space-between;
}

.flex-jc-c {
  justify-content: center;
}

.flex-jc-r {
  justify-content: right;
}

.flex-ai-c {
  align-items: center;
}

button, .button {
  padding: .875rem 2.1875rem;
  background: linear-gradient(to right, #BF4342, #A78A7F);
  font-family: inherit;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  color: #E7D7C1;
  font-weight: 400;
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.header {
  background-color: #E7D7C1;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  opacity: 1.0;
  line-height: 1.3;
}

.header.division {
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);
}

.header.open {
  height: 100%;
}

.header.open .header__toggle > span:first-child {
  transform: rotate(45deg);
}

.header.open .header__toggle > span:nth-child(2) {
  opacity: 0;
}

.header.open .header__toggle > span:last-child {
  transform: rotate(-45deg);
}

.header nav {
  position: relative;
  top: 0;
  width: 100%;
  padding-top: 1.0625rem;
  padding-bottom: 1.0625rem;
}

.header .overlay {
  opacity: 0;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0;
  left: 0px;
  background-image: linear-gradient(transparent, #8C1C13);
}

.header p {
  margin-block-start: 0;
  margin-block-end: 0;
}

.header__logo {
  font-size: 2.5rem;
  font-weight: 400;
  color: #8C1C13;
  transition: all 300ms ease-in-out;
}

@media (max-width: 39.9375em) {
  .header__logo {
    font-size: 1.5rem;
    font-weight: 600;
  }
}

.header__logo.scrolled {
  line-height: 1.0;
}

.header__logo .subtitle {
  font-size: 1.125rem;
}

@media (max-width: 39.9375em) {
  .header__logo .subtitle {
    display: block;
    font-size: 1.125rem;
    font-weight: 400;
    padding-right: 2rem;
  }
}

@media (max-width: 39.9375em) {
  .header__logo .subtitle.scrolled {
    display: none;
  }
}

.header__toggle > span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #8C1C13;
  transition: all 300ms ease-in-out;
  transform-origin: 3px 1px;
}

.header__toggle > span:not(:last-child) {
  margin-bottom: 5px;
}

.header__menu {
  position: absolute;
  z-index: 12;
  width: calc(100% - 3rem);
  left: 100%;
  transform: translateX(-50%);
  background: white;
  margin-top: 1.5rem;
  padding: 1.625rem;
  border-radius: 3px;
  line-height: 1.3;
  transition: left 300ms ease-in-out;
}

@media (max-width: 63.9375em) {
  .header__menu {
    font-size: 1.125rem;
  }
}

.header__menu__open {
  left: 50%;
}

.header__menu a {
  display: block;
  padding: 0.625rem;
  color: #735751;
  text-align: center;
  transition: color 300ms ease-in-out;
}

.header__menu a::before {
  content: "";
  position: relative;
  display: block;
  height: 5px;
  left: 0;
  right: 0;
  bottom: -22px;
  background: linear-gradient(to right, #BF4342, #A78A7F);
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}

@media (max-width: 63.9375em) {
  .header__menu a::before {
    bottom: -27px;
  }
}

.header__menu a:hover {
  color: #8C1C13;
}

.header__menu a:hover::before {
  opacity: 1;
}

.header__links a {
  position: relative;
  font-size: 1rem;
  color: #735751;
  transition: color 300ms ease-in-out;
}

.header__links a:not(:last-child) {
  margin-right: 32px;
}

.header__links a::before {
  content: "";
  position: absolute;
  display: block;
  height: 5px;
  left: 0;
  right: 0;
  bottom: -10px;
  background: linear-gradient(to right, #BF4342, #A78A7F);
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}

.header__links a__current {
  opacity: 1;
}

.header__links a:hover {
  color: #8C1C13;
}

.header__links a:hover::before {
  opacity: 1;
}

.header__cta {
  font-size: 1rem;
  color: white;
  transition: opacity 300ms ease-in-out;
}

.header__cta:hover {
  opacity: 0.75;
}

.hero {
  position: relative;
  margin-top: 112px;
}

.hero__image {
  z-index: -1;
  background-image: url("/images/Wave1.svg");
  background-size: cover;
  background-color: #E7D7C1;
  background-repeat: no-repeat;
  background-position: left top;
  min-height: 10rem;
  position: relative;
  top: -1rem;
}

@media (max-width: 39.9375em) {
  .hero__image {
    visibility: hidden;
    position: absolute;
    height: 0;
  }
}

.hero__text {
  z-index: 0;
  color: #E7D7C1;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.15;
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 1rem;
}

.feature {
  padding: 2rem;
  border-bottom: 1px solid #eee;
  position: relative;
}

.feature a {
  color: #8C1C13;
  font-weight: 400;
  transition: color 150ms ease-in-out;
}

.feature a:hover {
  color: #735751;
}

.feature .anchor {
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  z-index: -1;
  top: -60px;
  left: 0;
  visibility: hidden;
}

@media (max-width: 39.9375em) {
  .feature .anchor {
    top: -40px;
  }
}

.feature h1 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 2rem;
}

.feature h2 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.3;
}

@media (max-width: 39.9375em) {
  .feature {
    padding-left: 0rem;
    padding-right: 0rem;
  }
  .feature h2 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
  }
}

.feature__intro {
  position: relative;
  left: 2rem;
}

@media (min-width: 64em) {
  .feature__intro {
    width: 55%;
  }
}

@media (min-width: 40em) {
  .feature__intro {
    width: 75%;
  }
}

@media (max-width: 39.9375em) {
  .feature__intro {
    margin-right: 3rem;
  }
}

.feature__image {
  padding: 0.9375rem;
  padding-left: 2rem;
  min-width: 50%;
}

@media (min-width: null) {
  .feature__image {
    flex: 1 0 70%;
  }
}

@media (min-width: 40em) {
  .feature__image {
    flex: 1;
  }
}

@media (min-width: 40em) {
  .feature__left {
    float: none;
  }
}

@media (min-width: 40em) {
  .feature__right {
    float: right;
    width: 50%;
  }
}

@media (min-width: 40em) {
  .feature__grid-left {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}

.feature__grid {
  text-align: center;
  margin-block-start: 2.5rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

@media (min-width: 40em) {
  .feature__grid {
    display: flex;
    flex-wrap: wrap;
  }
}

.feature__item {
  padding: 2.5rem;
  min-width: 17rem;
}

@media (min-width: 40em) {
  .feature__item {
    flex: 1 0 50%;
    padding: 1.5rem;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (min-width: 64em) {
  .feature__item {
    flex: 1;
  }
}

.feature__icon {
  margin-bottom: 1.875rem;
  background-color: #E7D7C1;
  fill: #8C1C13;
  padding: 1.5rem;
  border-radius: 2rem;
  width: 7rem;
  height: 7rem;
}

@media (min-width: 64em) {
  .feature__icon {
    margin-bottom: 2.75rem;
  }
}

.feature__title {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.15;
  color: #8C1C13;
  margin-bottom: .75rem;
}

@media (min-width: 64em) {
  .feature__title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}

.feature__subtitle {
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}

.feature__description {
  font-size: 1rem;
  font-weight: 300;
  text-align: left;
  line-height: 1.5;
}

.feature__dsgvo {
  font-size: 0.875rem;
  font-weight: 200;
  line-height: 1.2;
}

.feature__dsgvo h2 {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.3;
}

.feature__dsgvo h3 {
  font-size: 1.2rem;
  font-weight: 200;
  line-height: 1.3;
}

.feature__dsgvo h4 {
  font-size: 1rem;
  font-weight: 200;
  font-style: italic;
  line-height: 1.2;
}

.timeline {
  background-color: #E7D7C1;
  color: #8C1C13;
  position: relative;
  border-radius: 1rem;
  margin-block-start: 2.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

@media (max-width: 39.9375em) {
  .timeline {
    border-radius: 0rem;
  }
}

.timeline::after {
  content: '';
  position: absolute;
  width: 0.25rem;
  background-color: #8C1C13;
  top: 1rem;
  bottom: 1rem;
  left: 50%;
  margin-left: -3px;
}

@media (max-width: 63.9375em) {
  .timeline::after {
    left: 2.5rem;
  }
}

@media (max-width: 39.9375em) {
  .timeline::after {
    left: 1.5rem;
  }
}

.timeline .expand-all {
  display: block;
  float: right;
  margin-block-start: -1rem;
  margin-block-end: 0rem;
  cursor: pointer;
}

.timeline .expand-all a:hover {
  text-decoration: underline;
}

.ball {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  cursor: pointer;
}

@media (max-width: 63.9375em) {
  .ball {
    width: 100%;
    padding-left: 2rem;
    padding-right: 4rem;
  }
}

@media (max-width: 39.9375em) {
  .ball {
    padding-right: 0rem;
    padding-left: .35rem;
  }
}

.ball::after {
  content: '';
  position: absolute;
  width: 1rem;
  height: 1rem;
  right: -.45rem;
  background-color: #A78A7F;
  border: 0.25rem solid #735751;
  top: 1.5rem;
  border-radius: 50%;
  z-index: 1;
}

.left {
  left: 0;
}

.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

@media (max-width: 63.9375em) {
  .left::before {
    left: 1.5rem;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }
}

@media (max-width: 39.9375em) {
  .left::before {
    left: -.25rem;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }
}

@media (max-width: 63.9375em) {
  .left::after {
    left: -0.55rem;
  }
}

@media (max-width: 39.9375em) {
  .left::after {
    left: -1.57rem;
  }
}

.right {
  left: 50%;
}

@media (max-width: 63.9375em) {
  .right {
    left: 0%;
  }
}

.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

@media (max-width: 63.9375em) {
  .right::before {
    left: 1.5rem;
  }
}

@media (max-width: 39.9375em) {
  .right::before {
    left: -0.25rem;
  }
}

.right::after {
  left: -0.55rem;
}

@media (max-width: 39.9375em) {
  .right::after {
    left: -1.57rem;
  }
}

.item {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
  transition: all 300ms ease-in-out;
}

.item p {
  margin-block-start: 0.25rem;
  margin-block-end: 0rem;
}

.item:hover {
  box-shadow: 0px 3px 12px rgba(140, 28, 19, 0.25);
}

.item .position {
  font-size: large;
  margin-block-start: 0.25rem;
  margin-block-end: 0rem;
}

.item .time {
  font-size: small;
  margin-block-start: 0rem;
  margin-block-end: 0rem;
}

.item .vitatext__hidden {
  display: none;
}

.item .vitatext__visible {
  display: block;
}

h3 {
  margin-top: 2.5rem;
  font-size: 1.25rem;
}

.references {
  padding: 2rem;
}

.reference__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
  margin-block-start: 2.5rem;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

@media (min-width: 40em) {
  .reference__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 64em) {
  .reference__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reference__item {
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #E7D7C1;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.15);
  transition: all 150ms ease-in-out;
}

.reference__item:hover {
  transform: scale(1.05);
}

.reference__image {
  height: 12.5rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.reference__text {
  padding: 1.875rem 1.875rem 2.5rem 1.875rem;
  color: #735751;
}

@media (min-width: 40em) {
  .reference__text {
    padding: 1.875rem 1.5625rem;
  }
}

.reference__location {
  font-size: 0.6875rem;
  margin-bottom: 0.75rem;
}

.reference__title {
  font-size: 1.125rem;
  line-height: 1.2;
  color: #8C1C13;
  margin-bottom: 0.5rem;
}

.reference__description {
  font-size: 1rem;
  line-height: 1.05;
}

.reference__description ul {
  padding-inline-start: 1.5rem;
  margin-block-start: 0.5rem;
  margin-block-end: 0rem;
}

.contact {
  background-color: #eee;
  color: #8C1C13;
  position: relative;
  margin-block-start: 2.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.contactform {
  border: none;
  display: block;
  position: relative;
  width: 100%;
  margin: 0 0 0 1%;
}

footer {
  background-color: #735751;
  position: fixed;
  padding-left: 2rem;
  padding-right: 2rem;
  float: right;
  height: 20px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin-bottom: 0px;
  z-index: 2;
}

@media (max-width: 39.9375em) {
  footer {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-weight: 200;
    font-size: 0.875rem;
  }
}

footer a {
  color: #E7D7C1;
  transition: color 150ms ease-in-out;
}

footer a:hover {
  color: #8C1C13;
}

footer .element {
  margin-left: 1rem;
  margin-right: 1rem;
}

@media (max-width: 39.9375em) {
  footer .element {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
/*# sourceMappingURL=style.css.map */