@charset "UTF-8";
@import "icons.css"; /* Breiten */
/*** Media-Queries ***/
/* kleiner als Tablet */
/* nur Tablet */
/* Tablet, Desktop und größer */
/*Übergang Tablet Desktop*/
/* kleiner als Desktop (Mobile und Tablet)*/
/* größer als Talbet */
/* größer als Desktop */
/* Breiten */
/*** Media-Queries ***/
/* kleiner als Tablet */
/* nur Tablet */
/* Tablet, Desktop und größer */
/*Übergang Tablet Desktop*/
/* kleiner als Desktop (Mobile und Tablet)*/
/* größer als Talbet */
/* größer als Desktop */
.elements__accordioncontainerelement {
  height: unset !important;
}

.accordion {
  color: var(--blue);
}
.accordion .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: solid 1px var(--grey);
  padding-block: 3rem;
}
@media (max-width: 1279px) {
  .accordion .head h1 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1280px) {
  .accordion .head h1 {
    font-size: 2.625rem;
  }
}
.accordion article {
  border-bottom: solid 1px var(--grey);
}
.accordion article > h2 {
  font-size: 2.25rem;
  font-weight: 400;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .accordion article > h2 {
    font-size: 1.75rem;
  }
}
.accordion article > h2 .title {
  padding-right: 3rem;
  padding-left: 0.8rem;
}
.accordion article > h2 span.icon {
  position: absolute;
  right: 1.5rem;
  transition: transform 200ms ease-in-out;
  font-size: 1.5rem;
}
.accordion article.open {
  display: flex;
  flex-flow: column;
}
@media (min-width: 1280px) {
  .accordion article.open {
    min-height: calc(100svh - 110px);
    height: fit-content;
  }
}
.accordion article.open h2 span.icon {
  transform: rotateZ(180deg);
}
.accordion article .content {
  display: none;
  padding-block: 2rem;
}
@media (max-width: 1279px) {
  .accordion article .content {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .accordion article .content {
    padding-inline: 4rem;
  }
}
.accordion article .content .download {
  height: 55px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  width: fit-content;
  background-color: var(--blue);
  align-content: center;
  color: white;
  font-size: 1.3125rem;
  padding-inline: 1.5rem;
  margin: 2rem auto auto;
}
.accordion article .content .download .icon-download {
  transform: translateY(-2px);
}

/* Breiten */
/*** Media-Queries ***/
/* kleiner als Tablet */
/* nur Tablet */
/* Tablet, Desktop und größer */
/*Übergang Tablet Desktop*/
/* kleiner als Desktop (Mobile und Tablet)*/
/* größer als Talbet */
/* größer als Desktop */
@media (max-width: 1279px) {
  .grey-boxes {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
}
@media (min-width: 1280px) {
  .grey-boxes {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 10px;
  }
}
@media (max-width: 1279px) {
  .grey-boxes .head {
    font-size: 2.25rem;
  }
}
@media (min-width: 1280px) {
  .grey-boxes .head {
    font-size: 2.625rem;
    grid-column: 1/7;
  }
}
.grey-boxes ul {
  margin: 0;
  transform: translateX(12px);
  padding-right: 12px;
}
.grey-boxes ul ul {
  padding-left: 1rem;
}
.grey-boxes .head h1 {
  color: var(--accent);
  text-align: center;
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1279px) {
  .grey-boxes .head h1 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1280px) {
  .grey-boxes .head h1 {
    font-size: 2.625rem;
  }
}
.grey-boxes h2 {
  display: flex;
  align-items: center;
  color: var(--accent);
}
@media (max-width: 767px) {
  .grey-boxes h2 {
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) {
  .grey-boxes h2 {
    font-size: 2.375rem;
  }
}
@media (max-width: 767px) {
  .grey-boxes h2 .icon {
    font-size: 1.55rem;
  }
}
@media (min-width: 768px) {
  .grey-boxes h2 .icon {
    font-size: 2.25rem;
  }
}
.grey-boxes article {
  background-color: var(--lightgrey);
  font-size: 1.125rem;
  padding-block: 2rem;
}
@media (max-width: 1279px) {
  .grey-boxes article {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .grey-boxes article {
    padding-inline: 4rem;
  }
}
.grey-boxes article:is(.grey-boxes article:nth-child(5n-3), .grey-boxes article:nth-child(5n-2)) {
  grid-column: span 3;
}
.grey-boxes article:is(.grey-boxes article:nth-child(5n-1), .grey-boxes article:nth-child(5n-4), .grey-boxes article:nth-child(5n-5)) {
  grid-column: span 2;
}
.grey-boxes article h2 {
  padding-bottom: 1rem;
}
.grey-boxes article h2 .icon {
  padding-right: 1rem;
}
.grey-boxes article ul li {
  position: relative;
  list-style-type: none;
}
.grey-boxes article ul li::before {
  content: "";
  display: block;
  height: 4px;
  width: 3px;
  background-color: var(--darkgrey);
  position: absolute;
  left: -12px;
  top: 8px;
}
.grey-boxes article ul li ul {
  color: #666666;
}

.grey-content {
  background-color: var(--lightgrey);
  padding-block: 2rem;
}
@media (max-width: 1279px) {
  .grey-content {
    padding-inline: 2rem;
  }
}
@media (min-width: 1280px) {
  .grey-content {
    padding-inline: 4rem;
  }
}
.grey-content * {
  color: var(--blue);
}
.grey-content .head h1 {
  text-align: center;
}
@media (max-width: 767px) {
  .grey-content .head h1 {
    font-size: 2.25rem;
  }
}
@media (min-width: 768px) {
  .grey-content .head h1 {
    font-size: 2.625rem;
  }
}
.grey-content article {
  padding: 1rem;
}
.grey-content article * {
  width: fit-content;
}
.grey-content :is(article, article *) {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
}

/* Breiten */
/*** Media-Queries ***/
/* kleiner als Tablet */
/* nur Tablet */
/* Tablet, Desktop und größer */
/*Übergang Tablet Desktop*/
/* kleiner als Desktop (Mobile und Tablet)*/
/* größer als Talbet */
/* größer als Desktop */
section.images .head {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  color: var(--blue);
}
@media (max-width: 1279px) {
  section.images .head {
    font-size: 2.25rem;
  }
}
@media (min-width: 1280px) {
  section.images .head {
    font-size: 2.625rem;
  }
}
section.images .splide__track li {
  overflow-y: hidden;
  height: 100%;
}
section.images .img {
  display: flex;
  flex-direction: column;
}
section.images .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.images .img .img-desc {
  text-align: center;
  padding-block: 1.5rem;
  color: var(--blue);
}
@media (max-width: 1279px) {
  section.images .img .img-desc {
    font-size: 1.5rem;
  }
}
@media (min-width: 1280px) {
  section.images .img .img-desc {
    font-size: 2.25rem;
  }
}

/* Breiten */
/*** Media-Queries ***/
/* kleiner als Tablet */
/* nur Tablet */
/* Tablet, Desktop und größer */
/*Übergang Tablet Desktop*/
/* kleiner als Desktop (Mobile und Tablet)*/
/* größer als Talbet */
/* größer als Desktop */
footer {
  background-color: var(--blue);
  color: white;
  font-size: 1rem;
  border-top: solid 3px var(--accent);
  padding-top: 1.25rem;
}
@media (min-width: 1280px) {
  footer {
    justify-content: center;
    padding-bottom: 3rem;
    column-gap: 4rem;
  }
  footer .upper {
    column-gap: 4rem;
  }
}
footer :is(.address, .contact, .info) {
  display: flex;
  flex-direction: column;
}
footer :is(.address, .contact, .info) a {
  color: white;
  width: fit-content;
}
footer .f-inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  width: 100%;
}
@media (max-width: 1279px) {
  footer .f-inner :is(.address, .contact) {
    padding-inline: 2rem;
  }
}
@media (min-width: 768px) {
  footer .f-inner {
    display: flex;
    flex-flow: row wrap;
  }
}
@media (max-width: 767px) {
  footer .f-inner {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  footer .upper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    width: 100%;
  }
}
@media (min-width: 1280px) {
  footer .upper {
    display: flex;
    align-items: end;
    flex-basis: 60%;
    justify-content: space-between;
  }
}
footer .address img.logo {
  height: 55px;
  width: auto;
  padding-bottom: 0.5rem;
  width: auto;
  object-fit: contain;
  align-self: start;
}
@media (max-width: 767px) {
  footer .contact {
    padding-bottom: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  footer .contact {
    align-self: end;
  }
}
footer .contact .mail {
  display: flex;
  align-items: center;
  flex-direction: row;
  padding-top: 1rem;
}
footer .contact .mail .icon-envelope {
  padding-right: 0.6rem;
}
@media (min-width: 768px) and (max-width: 1279px) {
  footer .info {
    flex-basis: 100%;
    margin-top: 2rem;
  }
}
@media (min-width: 1280px) {
  footer .info {
    gap: 0.6rem;
    padding-top: 1rem;
  }
}
footer .info a {
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 1279px) {
  footer .info a {
    border-top: solid 1px var(--grey);
    height: 50px;
  }
}
@media (max-width: 1279px) {
  footer .info a {
    padding-inline: 2rem;
  }
}

* {
  scroll-behavior: smooth;
  scroll-margin-top: 80px;
}

.Page main, .ErrorPage main {
  margin: 120px auto;
}
.Page main .content-container article, .ErrorPage main .content-container article {
  display: grid;
  grid-template-columns: [full-start] auto [max-start] minmax(auto, 1600px) [max-end] auto [full-end];
}
.Page main .content-container article > h1, .ErrorPage main .content-container article > h1 {
  height: 70px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  background-color: var(--lightgrey);
  grid-column: full;
  font-size: 1.75rem;
  color: var(--blue);
}
.Page main .content-container article .content, .ErrorPage main .content-container article .content {
  grid-column: max;
  padding-top: 2rem;
}
@media screen and (min-width: 769px) and (max-width: 1725px) {
  .Page main .content-container article .content, .ErrorPage main .content-container article .content {
    padding-inline: 4rem;
  }
}
@media screen and (min-width: 1726px) {
  .Page main .content-container article .content, .ErrorPage main .content-container article .content {
    padding-inline: 0;
  }
}
@media (max-width: 1279px) {
  .Page main .content-container article .content, .ErrorPage main .content-container article .content {
    padding-inline: 2rem;
  }
}
.Page main .content-container article .content *, .ErrorPage main .content-container article .content * {
  color: var(--blue);
}
.Page main .content-container article .content a, .ErrorPage main .content-container article .content a {
  color: var(--accent);
}

body {
  font-family: "Rajdhani", sans-serif;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100svh;
}
body a {
  text-decoration: none;
}

header {
  height: 125px;
  display: grid;
  grid-template-columns: auto max-content;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: solid 3px var(--accent);
  position: fixed;
  width: 100%;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0);
  transition: all 200ms;
  z-index: 1;
  background-color: #ffffff;
}
header.scroll {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.2);
  height: 88px;
  grid-template-rows: 88px;
  align-items: center;
  border: none;
}
header.scroll .logo {
  height: 80px;
}
header.scroll details {
  align-self: center;
}
header.scroll details menu {
  top: 88px;
}
header.scroll .info {
  align-self: center;
  padding-top: 0;
}
@media (max-width: 1279px) {
  header {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1280px) {
  header {
    padding-inline: 4rem;
    grid-template-columns: 1fr 5fr 1fr;
    grid-template-rows: 120px;
    height: 120px;
  }
  header menu a {
    font-size: 1.5rem;
  }
  header menu a.active {
    color: var(--accent);
  }
  header menu a.active .flag {
    display: initial;
  }
}
header .logo {
  width: fit-content;
  height: 100%;
  display: grid;
  place-content: center;
}
@media (min-width: 1280px) {
  header .logo {
    height: 90px;
  }
}
header .logo img {
  height: 100%;
  max-height: 90px;
  width: 100%;
  object-fit: contain;
}
header details {
  font-size: 1.5rem;
}
@media (min-width: 1280px) {
  header details {
    align-self: end;
  }
}
header details summary {
  user-select: none;
  cursor: pointer;
  list-style: none;
}
@media (max-width: 1279px) {
  header details summary {
    align-items: center;
    display: flex;
  }
}
header details summary span {
  padding-right: 1.25rem;
}
@media (min-width: 1280px) {
  header details summary {
    opacity: 0;
    display: none;
  }
}
@media (max-width: 1279px) {
  header details menu {
    position: absolute;
    top: 127px;
    width: 100%;
    left: 0;
    transition: top 200ms;
    display: grid;
    grid-auto-flow: row;
    grid-auto-rows: 70px;
    align-items: center;
    background-color: white;
    box-shadow: 0 0 10px var(--grey);
  }
}
@media screen and (min-width: 460px) and (max-width: 1279px) {
  header details menu {
    max-width: 400px;
    right: 0;
    left: unset;
  }
}
@media (min-width: 1280px) {
  header details menu {
    display: flex;
    flex-flow: row wrap;
    height: 50px;
    align-items: center;
    transform: translateY(-3px);
    justify-content: center;
  }
}
header details menu li {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1279px) {
  header details menu li {
    border-bottom: solid 1px var(--lightgrey);
  }
}
@media (min-width: 1280px) {
  header details menu li {
    border-right: solid 1px var(--lightgrey);
    min-width: 150px;
    flex-basis: fit-content;
    justify-content: center;
  }
  header details menu li:last-child {
    border: none;
  }
}
header details menu li.current .flag {
  display: initial;
}
header details menu li.current a {
  color: var(--accent);
}
header details menu li .flag {
  display: none;
  padding-right: 0.6rem;
}
header details menu li a {
  color: var(--darkgrey);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
}
header section.info {
  justify-self: end;
  align-self: start;
  gap: 1rem;
  display: flex;
  padding-top: 1rem;
  font-size: 1rem;
}
@media (max-width: 1279px) {
  header section.info {
    display: none;
  }
}
@media (min-width: 1280px) {
  header section.info {
    position: absolute;
    right: 4rem;
  }
}
header section.info a {
  color: var(--darkgrey);
}

main .breadcrumb {
  height: 55px;
  background-color: var(--blue);
}
@media (max-width: 1279px) {
  main .breadcrumb {
    display: none;
  }
}
main .breadcrumb .inner-bc {
  display: flex;
  flex-flow: row wrap;
  gap: 0.5rem;
  align-items: center;
  height: 100%;
  max-width: 1600px;
  margin: auto;
  padding-inline: 4rem;
}
main .breadcrumb .inner-bc :first-child {
  font-weight: normal !important;
}
main .breadcrumb .inner-bc .last {
  font-weight: bold;
}
main .breadcrumb .inner-bc a:hover {
  color: var(--accent);
}
main :is(.breadcrumb, .breadcrumb a) {
  color: white;
  font-size: 1.3125rem;
}
main video {
  height: 100svh;
  object-fit: cover;
  width: 100%;
}
main section .head {
  padding-inline: 1rem;
}
main li {
  position: relative;
  list-style-type: none !important;
}
main li::before {
  content: "";
  display: block;
  height: 4px;
  width: 3px;
  background-color: var(--darkgrey);
  position: absolute;
  left: -12px;
  top: 8px;
}

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