@charset "utf-8";

/* --------------------------------------------
      Allgemein / Main
-------------------------------------------- */
:root {
  /* diverse Farben */
  --grey1: #f3f3f2;
  --blau1: #112137;
  --blau2: #003f66;
  --blau3: #4b7d99;
  --gelb: #d8a252;
}

*, ::after, ::before {
  box-sizing: border-box;
}
.btn-primary {
  border: 0 !important;
  border-radius: 0;
  background: var(--blau1);
}
.btn-primary:hover {
  background: var(--blau2);
}

.a-st0,
.a-st1 {
  opacity: 0;
}
.animation .a-st0 {
  fill: #B3C1D0;
  animation: fade 3s;
  opacity: 1;
}
.animation .a-st1 {
  opacity: 1;
  fill: none;
  stroke: #003F66;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 293.3;
  animation: dashdraw 3s reverse;
  animation-timing-function: ease-in;
}
@keyframes dashdraw {
  to {
    stroke-dashoffset: 293.3;
  }
}

@keyframes fade {
  0% {
    fill: #B3C1D000
  }

  50% {
    fill: #B3C1D000
  }

  100% {
    fill: #B3C1D0
  }
}

.b-st0,
.b-st1,
.b-st2,
.b-st3 {
  opacity: 0;
}
.animation .b-st0 {
  opacity: 1;
  fill: none;
  stroke: #005576;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.animation .b-st1 {
  opacity: 1;
  fill: #B3C1D0;
  animation: fade 3s;
}

.animation .b-st2 {
  opacity: 1;
  fill: none;
  stroke: #003F66;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 256;
  animation: dashdraw 3s reverse;
  animation-timing-function: ease-in;
}

.animation .b-st3 {
  opacity: 1;
  fill: none;
  stroke: #003F6600;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 22.63;
  animation: dashdraw2 1s reverse;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}

.animation .b-st3:nth-of-type(2) {
  animation-delay: .5s;
}

.animation .b-st3:nth-of-type(3) {
  animation-delay: 1s;
}

@keyframes dashdraw {
  to {
    stroke-dashoffset: 256;
  }
}

@keyframes dashdraw2 {
  from {
    stroke: #003F66;
  }

  to {
    stroke-dashoffset: 22.63;
    stroke: #003F66;
  }
}

@keyframes fade {
  0% {
    fill: #B3C1D000
  }

  50% {
    fill: #B3C1D000
  }

  100% {
    fill: #B3C1D0
  }
}
.c-st0,
.c-st1 {
  opacity: 0;
}
.animation .c-st0 {
  opacity: 1;
  fill: #B3C1D0;
  animation: fade 3s;
}

.animation .c-st1 {
    opacity: 1;
  fill: none;
  stroke: #003F66;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.animation .c-st1:first-child,
.animation .c-st1:nth-child(2),
.animation .c-st1:nth-child(4) {
  stroke-dasharray: 152;
  animation: dashdraw3 3s reverse;
  animation-timing-function: ease-in;
}

.animation .c-st1:nth-child(3) {
  stroke: #003F6600;
  stroke-dasharray: 162.7;
  animation: dashdraw4 3s reverse;
  animation-fill-mode: forwards;
  animation-delay: .3s;
}

@keyframes dashdraw3 {
  to {
    stroke-dashoffset: 152;
  }
}

@keyframes dashdraw4 {
  0% {
    stroke: #003F66;
  }

  99% {
    stroke: #003F66;
  }

  100% {
    stroke-dashoffset: 162.7;
    stroke: #003F66FF;
  }
}

@keyframes fade {
  0% {
    fill: #B3C1D000
  }

  50% {
    fill: #B3C1D000
  }

  100% {
    fill: #B3C1D0
  }
}

.d-st0,
.d-st1 {
    opacity: 0;
}
.animation .d-st0 {
    opacity: 1;
  fill: #B3C1D0;
  animation: fade 3s;
}

.animation .d-st1 {
    opacity: 1;
  fill: none;
  stroke: #003F66;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 273;
  animation: dashdraw5 3s reverse;
  animation-timing-function: ease-in;
}

@keyframes dashdraw5 {
  to {
    stroke-dashoffset: 273;
  }
}

@keyframes fade {
  0% {
    fill: #B3C1D000
  }

  50% {
    fill: #B3C1D000
  }

  100% {
    fill: #B3C1D0
  }
}

svg {
  max-width: 100px;
  max-height: 100px;
}

#grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  margin: 0;
  z-index: 99999;
}

#grid>div {
  background: red;
  background-clip: content-box;
}

body {
  font-family: "noto-sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: var(--blau1);
}

h1, h2, .h2 {
  font-family: "all-round-gothic", serif;
  font-weight: 700;
  font-size: 3.5rem;
  margin-bottom: 0;
}

.home h2,.home .h2, .noHome h1 {
  font-size: 60px;
  text-transform: uppercase;
  color: var(--blau2);
  margin-bottom: 0;
  line-height: 1;
}

.home h3, .home .h3, .noHome h2, .noHome .h2 {
  font-size: 30px;
  text-transform: uppercase;
  color: var(--blau3);
  font-family: "noto-sans", sans-serif;
  font-weight: 400;
  margin-top: 0;
}
.noHome h1+.h2,
.noHome h1+h2 {
  margin-bottom: 40px;
}

.home h4, .noHome h4, .noHome h3 {
  font-size: 20px;
  font-family: "all-round-gothic", serif;
  font-weight: 700;
  margin-bottom: 20px;
}

.noHome h1+p,
.noHome p+h2,
.noHome p+h3,
.noHome table+h3 {
  margin-top: 30px;
}

#fullpage h4 {
  font-size: 24px;
  font-family: "all-round-gothic", serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--blau2)
}

h5 {
  background-color: var(--blau2);
  color: #fff;
  width: max-content;
  font-size: 16px;
  font-weight: 500;
  font-family: "noto-sans", sans-serif;
  padding: 3px 5px;
  margin-top: 25px;
  margin-bottom: 15px;
}

p {
  font-weight: 500;
}

p .indent {
  padding-left: 15px;
  border-left: 2px solid var(--blau3);
  margin-left: 10px;
  margin-top: 20px;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.section a:hover,
.section a:focus,
.section a:active,
footer nav ul a:hover,
footer nav ul a:focus,
footer nav ul a:active {
  color: var(--gelb);
}

hr {
  background-color: var(--blau3);
  opacity: 1;
  height: 2px !important;
  margin: 2rem 0;
}

table {
  width: 100%;
}

table tr:nth-child(odd) {
  background-color: var(--grey1);
}

table tr td {
  padding: 5px;
}

@media(min-width: 992px) {

  table tr td.col1,
  table tr td.col2 {
    width: 25%;
  }

  table tr td.col3 table tr td.col4,
  table tr td.col5 {
    width: 10%;
  }

  table tr td.col6 {
    width: 20%;
  }
}

.nowrap {
  white-space: nowrap;
}

.readmore {
  background: url('../images/readmore.svg') no-repeat #fff;
  background-position: center 2px;
  color: var(--blau3);
  font-family: "all-round-gothic", serif;
  font-weight: 700;
  font-size: 18px;
  border: 0;
  margin: 20px auto;
  display: block;
}

.readmore:hover,
.readmore:focus,
.readmore:active:focus,
.readmore:active {
  background-color: #fff;
  color: var(--blau3);
  outline: none;
  box-shadow: none;
}

#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--blau3);
  z-index: 9999;
  text-align: center;
  color: #fff;
  padding: 20px;
  display: none;
}

#cookieBanner a {
  color: #fff;
  text-decoration: underline;
}

#cookieBanner button {
  background-color: #fff;
  text-decoration:
}

.container {
  padding: 0;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1260px;
  }
}

main ul:not(.mod-menu) li {
  list-style: none;
  position: relative;
  padding-left: 30px;
}

main ul:not(.mod-menu) li::before {
  background-image: url(../images/icon-star.svg);
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  background-repeat: no-repeat;
  background-size: 1.25rem;
  /* transition: transform .2s ease-in-out; */
  margin-right: 15px;
  display: block;
  position: absolute;
  left: 0px;
  top: 2px;
  transform: rotate(45deg);
}

/*----------------------------------------------------
Header
-----------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
}

.noHome header {
  background-color: #fff;
}

header .container {
  max-width: 78%
}

header #signet {
  position: absolute;
  top: 7px;
  left: 0;
}

header #signet img {
  width: 55px;
}

header .d-flex {
  height: 75px;
  background: #fff;
}

header nav .navigation ul li {
  padding: 0 27px;
}

header nav .navigation ul li.item-101 {
  display: none;
}

header nav .navigation ul li a {
  font-size: 20px;
  font-family: "all-round-gothic", serif;
  font-weight: 500;
  color: var(--blau1);
  position: relative;
}

header nav .navigation ul li:hover a::after,
header nav .navigation ul li.active a::after {
  content: " ";
  height: 2px;
  background: var(--blau1);
  width: 100%;
  position: absolute;
  bottom: -5px;
  left: 0;
}

header nav .navigation ul li.current a::after {
  background: var(--gelb)
}

header nav .navigation ul li.parent {
  position: relative;
}

header nav .navigation ul li.parent a {
  color: var(--blau3);
}

header nav .navigation .mod-menu__sub {
  display: none;
}

@media(min-width: 1025px) {
  .burger-container {
    display: none;
  }

  header nav .navigation .mod-menu__sub {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 360px;
    position: absolute;
    background: #fff;
    color: #112137;
    border: 10px solid #b2c5d1;
    box-shadow: 5px 5px 3px #55535396;
  }

  header nav .navigation .mod-menu__sub li.item-121 {
    text-align: center;
    background: var(--blau1);
    text-transform: uppercase;
    font-size: 20px;
    padding: 15px;
    color: #fff;
    margin: 0;
    border-bottom: 0;
  }

  header nav .navigation .mod-menu__sub li.item-118 {
    border-bottom: 1px solid #112137;
    padding: 10px 25px;
    margin: 0 15px 10px;
  }

  header nav .navigation .mod-menu__sub li.item-119 a,
  header nav .navigation .mod-menu__sub li.item-120 a {
    text-decoration: none !important;
    color: var(--blau1);
    font-size: 14px;
    font-family: 'noto-sans';
  }

  header nav .navigation .mod-menu__sub li.item-119 a:hover,
  header nav .navigation .mod-menu__sub li.item-120 a:hover {
    color: var(--gelb);
  }

  header nav .navigation .mod-menu__sub li.item-119 a::after,
  header nav .navigation .mod-menu__sub li.item-120 a::after {
    display: none;
  }

  header nav .navigation .mod-menu__sub li {
    padding: 0px 25px;
    margin: 0 15px 0;
  }

  header nav .navigation .mod-menu__sub li:last-child {
    border-bottom: 0;
    margin-bottom: 15px;
  }

  header nav .navigation .mod-menu__sub li span {
    display: block;
    padding: 4px 0;
  }

  header nav .navigation .mod-menu__sub li:last-child span {
    border-bottom: 0;
  }

  header nav .navigation ul li.parent:hover .mod-menu__sub {
    display: block;
  }
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  list-style: none;
  flex-direction: column;
  top: 50%;
  transform: translateY(-50%);
  border-left: 2px solid #fff;
  padding: 0px 0px 0px;
}

.carousel-indicators button {
  text-indent: 0 !important;
  height: 25px !important;
  width: 95px !important;
  background: transparent;
  color: #fff;
  margin-bottom: 50px;
  margin-left: -7px !important;
  line-height: 1;
  text-align: left;
  padding: 0px 5px 0px 20px !important;
  font-size: 15px;
  position: relative;
  border: 0;
  font-size: 12px;
  font-family: "all-round-gothic", serif;
  font-weight: 700;
  text-shadow: 1px 1px 4px #222;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.6);
}

.carousel-indicators button:focus {
  outline: 0;
}

.carousel-indicators button.active {
  background: #fff !important;
  color: var(--blau1);
  text-shadow: none;
}

.carousel-indicators button.active::before {
  height: 50px;
  width: 5px;
  background: #fff;
  left: 3px;
  top: 25px;
  position: absolute;
  content: " ";
}

.nextend-bullet-bar {
  border-top: 2px solid #fff;
}

.nextend-bullet-bar .n2-bullet {
  background: transparent !important;
  color: #fff;
  margin-top: -4px !important;
  font-weight: bold !important;
  text-shadow: 1px 1px 4px #222 !important;
}

.nextend-bullet-bar>div:first-child .n2-bullet {
  margin-left: 0 !important
}

.nextend-bullet-bar>div:last-child .n2-bullet {
  margin-right: 0 !important
}

.nextend-bullet-bar .n2-active {
  position: relative;
  background: #fff !important;
  color: var(--blau1) !important;
  text-shadow: none !important
}

.nextend-bullet-bar .n2-active::after {
  height: 4px;
  width: 110px;
  background: #fff;
  left: 0px;
  top: 1px;
  position: absolute;
  content: " ";
  z-index: 1;
  display: block !important;
}

@keyframes strokepath {
  to {
    stroke-dashoffset: 0
  }
}

@keyframes fill {
  to {
    fill: hsl(0, 0%, 90%)
  }
}

.animate-stroke {
  animation: strokepath 3s linear forwards,
    fill 2s 8s forwards;
}

/*----------------------------------------------------
Footer
-----------------------------------------------------*/
.footerLine {
  margin-top: 50px;
  margin-bottom: -1px;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cat-101 .footerLine {
  max-width: 1140px;
}

footer {
  background: var(--grey1);
  padding: 30px 0;
  position: relative;
}

footer .d-flex {
  justify-content: center;
  align-items: center;
  padding-left: 65px;
}

footer .signetHalf {
  border-right: 1px solid var(--blau1);
  padding-right: 15px;
  margin-right: 15px;
}

footer .signetHalf img {
  width: 28px;
}

footer nav ul {
  flex-direction: column;
}

footer #copyright {
  text-align: center;
}

footer #copyright a:hover,
footer #copyright a:focus,
footer #copyright a:active {
  filter: hue-rotate(178deg) brightness(5);
}

footer .navbar-expand-md .navbar-collapse {
  display: flex !important;
}

.cat-101 footer {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.bigpic {
  overflow: hidden;
  margin-top: 75px;
}

.bigpic .d-flex>div {
  flex: 0 0 50%;
}

.bigpic .d-flex .blue {
  background-color: var(--blau1);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.bigpic .d-flex .blue img {
  max-width: 600px;
}

.noHome .content .container {
  max-width: 1250px;
}

/*----------------------------------------------------
Asideline
-----------------------------------------------------*/
.asideLine {
  font-family: "all-round-gothic", serif;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 2px solid var(--blau3);
  color: var(--blau3);
  display: block;
  position: absolute;
  bottom: 50%;
  transform: rotate(90deg) translateX(calc(50% + 20px));
  right: 60px;
  height: 20px;
  transform-origin: top right;
  z-index: -1;
}

.asideLine::before,
.asideLine::after {
  content: " ";
  background-image: url(../images/icon-star-dark-rotated.svg);
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: 25px;
  position: absolute;
  top: -5px;
  left: -100px;
  background-color: #fff;
  background-position: 12px 12px;
  transform: rotate(45deg);
}

.asideLine::after {
  left: auto;
  right: -100px;
}

#section-6 .asideLine {
  border-bottom: 1px solid #fff;
  color: #fff;
  z-index: 9;
}

#section-7 .fp-tableCell>.asideLine {
  width: 370px !important;
  bottom: 268px;
  transform: rotate(90deg);
}

.noHome main .asideLine::before,
.cat-101 #fullpage>.asideLine {
  display: none;
}

.noHome main .asideLine {
  text-indent: 0;
  bottom: auto;
  top: 0;
  transform: rotate(90deg) translateX(calc(100% + 20px));
}

footer .asideLine {
  bottom: 20px;
  width: 130px;
  text-indent: 0;
  transform: rotate(90deg);
  z-index: 9;
}

#section-7 .fp-tableCell>.asideLine, .asideLine {
  z-index: 9
}

@media(min-width:1201px) {

  footer .asideLine::before,
  footer .asideLine::after {
    display: none;
  }
}

@media(max-width: 1500px) {

  .noHome main .asideLine,
  #section-7 .fp-tableCell>.asideLine,
  .asideLine {
    right: 30px;
  }
}

@media(max-width: 1300px) {

  .noHome main .asideLine,
  #section-7 .fp-tableCell>.asideLine,
  .asideLine {
    right: 5px;
  }

  .nextend-bullet-bar .n2-bullet {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .nextend-bullet-bar .n2-active::after {
    width: 50px;
  }
}

@media(max-width: 1200px) {

  .noHome main .asideLine,
  #section-7 .fp-tableCell>.asideLine,
  footer .asideLine,
  .asideLine {
    position: relative;
    top: 0;
    transform: rotate(0deg);
    width: 100% !important;
    max-width: 960px;
    right: 0;
    margin-bottom: 45px;
    margin-left: auto;
    margin-right: auto;
    text-indent: 0;
    bottom: auto;
  }

  #section-7.section footer .asideLine::after,
  .asideLine::after {
    right: 15%;
  }

  .asideLine::before {
    display: none;
  }

  #section-6 .asideLine {
    margin-bottom: 0;
    color: var(--blau1);
  }

  footer .asideLine {
    top: -20px;
    width: 960px;
    position: relative;
  }

  #section-7.section footer .asideLine::after {
    content: " ";
    background-image: url(../images/icon-star-dark-rotated.svg);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: 25px;
    position: absolute;
    top: -5px;
    background-color: #fff;
    background-position: 12px 12px;
    transform: rotate(45deg);
  }
}

@media(max-width: 991px) {

  #section-7 .fp-tableCell>.asideLine,
  #section-7 .fp-tableCell>.asideLine,
  footer .asideLine,
  .asideLine {
    max-width: 720px;
  }
}

@media(max-width: 768px) {

  #section-7 .fp-tableCell>.asideLine,
  #section-7 .fp-tableCell>.asideLine,
  footer .asideLine,
  .asideLine {
    max-width: 540px;
  }
}

@media(max-width: 575px) {
  footer .asideLine {
    width: 98%;
    width: calc(100% - 30px) !important;
    margin: 0 15px;
  }

  #section-6 .asideLine {
    margin: 0 15px;
  }

  #section-6 .asideLine::after {
    right: 13%;
  }
}

/*----------------------------------------------------
Starsteite
-----------------------------------------------------*/
#section-7 .fp-tableCell,
#section-1 .fp-tableCell {
  vertical-align: bottom;
}

#section-1 .container {
  max-width: 100%;
}

#section-1 .left,
#section-1 .right {
  padding: 0;
  margin-top: 75px;
}

#section-1 .left {
  background-color: var(--blau1);
  position: relative;
  overflow: hidden;
}

#section-1 .left>div {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

@media(min-width: 576px) {
  #section-1 .left img {
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: auto;
  }
}


#section-1 .right>div,
#section-1 .right #carouselIntro,
#section-1 .right #carouselIntro .carousel-inner,
#section-1 .right #carouselIntro .carousel-inner .carousel-item {
  height: 100%;
}
#carouselIntro img {
  width: 100%;
  height: auto;
  position: relative;
}


#section-1 p {
  margin-bottom: 0;
}

#section-2 .row {
  align-items: flex-end;
}

#section-3 .row {
  align-items: center;
}

#section-3 .d-flex {
  margin: 50px calc(var(--bs-gutter-x)/ -2) 0;
  flex-wrap: wrap;
}

#section-3 .d-flex>div {
  flex: 0 0 50%;
  text-align: center;
}

#section-3 .right img {
  max-width: 100px;
}

#section-3 p {
  font-family: "noto-sans", sans-serif;
  font-weight: 300;
}

#section-4 .d-flex {
  margin: 0 calc(var(--bs-gutter-x)/ -2);
}

#section-4 .d-flex>div {
  flex: 0 0 25%;
  max-width: 25%;
  text-align: center;
  padding: 0 calc(var(--bs-gutter-x)/ 2);
  transition: 0.3s;
}

#section-4 .d-flex img {
  max-width: 100%;
  height: auto;
  filter: grayscale(1);
}
#section-4 .h3,
#section-4 h3 {
  margin-bottom: 50px;
}

#section-4 h4 {
  font-size: 24px;
  font-family: "all-round-gothic", serif;
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--blau1);
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 125px;
  text-align: center;
  padding: 15px;
  margin-top: 0;
}

@media(min-width: 1200px) {
  #section-4 .d-flex>div:hover {
    transform: scale(1.1);
  }
}

#section-4 .d-flex>div:hover img {
  filter: none;
}

#section-4 .d-flex>div:hover h4 {
  background-color: var(--gelb)
}

#section-5 .textWrap {
  position: relative;
  padding-bottom: 95px;
  margin-bottom: 20px;
}

#section-5 .under {
  columns: 2;
  margin-top: 20px;
}


#section-5 ul {
  padding-right: 2rem;
}
#section-5 ul li {
  margin-bottom: 10px;
  border-bottom: 1px dotted var(--blau3);
  padding-bottom: 8px;
}

#section-5 ul li .less {
  display: none;
}

#section-5 ul li .less.on {
  display: block;
}

#section-5 ul li .showMore {
  color: var(--blau3);
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

#section-5 ul li .showMore:hover,
#section-5 ul li .showMore:focus,
#section-5 ul li .showMore:active {
  color: var(--gelb);
}
#section-5 .h3,
#section-5 h3 {
  margin-bottom: 0;
}

#section-5 .firmengeschichte-jahreszahlen {
  font-family: "all-round-gothic", serif;
  font-weight: 700;
  font-style: italic;
  font-size: 95px;
  line-height: 1;
  display: flex;
  flex-direction: row;
  width: max-content;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

#section-5 .firmengeschichte-jahreszahlen span {
  padding: 0 15px;
}

#section-5 .firmengeschichte-jahreszahlen .color_0 {
  color: #f3f3f2;
}

#section-5 .firmengeschichte-jahreszahlen .color_1 {
  color: #b3c1d0;
}

#section-5 .firmengeschichte-jahreszahlen .color_2 {
  color: #819cb4;
}

#section-5 .firmengeschichte-jahreszahlen .color_3 {
  color: #4b7d99;
}

#section-5 .firmengeschichte-jahreszahlen .color_4 {
  color: #005576;
}

#section-5 .firmengeschichte-jahreszahlen .color_5 {
  color: #003f66;
}

#section-5 .firmengeschichte-jahreszahlen .color_6 {
  color: #112137;
}

#section-6 .container {
  max-width: 100%;
  background-color: var(--blau1);
  padding: 30px 0;
}

#section-6 .textWrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0;
}
#section-6 .h2,
#section-6 .h3, 
#section-6 h2,
#section-6 h3 {
  color: #fff;
}

#gallery {
  padding: 0px 10px;
  position: relative;
}

.gallery-inner {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr 1fr minmax(0px, 0);
  height: 610px;
}

.gallery-item img {
  display: block;
  max-width: 95%;
  max-width: calc(100% - 15px);
  height: auto;
  margin-bottom: 15px;
  margin-left: 7.5px;
  margin-right: 7.5px
}

.gallery-item.active {
  grid-column-start: 2;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 3;
}

.gallery-item.active img {
  max-width: 95%;
  max-width: calc(100% - 15px);
  width: 95%;
  width: calc(100% - 15px);
}

.gallery-item:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2;
  opacity: 0.2;
}

.gallery-item:nth-child(2) {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 3;
  opacity: 0.2;
}

.gallery-item:nth-child(6),
.gallery-item:nth-child(9) {
  opacity: 0.2;
}
#section-7 .h2,
#section-7 .h3,
#section-7 h2,
#section-7 h3 {
  text-align: center
}

#section-7 .left {
  text-align: right;
}

#section-7 .left>div {
  max-width: 450px;
  margin-left: auto;
}

#section-7 .left .pe-4 {
  padding-right: 30px !important;
}

#section-7 .left p.position-relative img {
  position: absolute;
  top: 0;
  right: 0;
}

#section-7 .left p.position-relative img:nth-of-type(2) {
  top: 24px
}

#section-7 .right div {
  position: relative;
}
#section-7 .right p:first-child img,
#section-7 .right img {
  max-width: 570px;
}
#section-7 .right p:nth-child(2) img,
#section-7 .right img:nth-child(2) {
  position: absolute;
  left: 32.5%;
  top: 5%;
  width: 6%;
  animation: jump 3s infinite;
}
@keyframes jump {
  0% {
    top: 5%;
  }
  10% {
    top: 2%;
  }
  20% {
    top: 5%;
  }
  25% {
    top: 3%;
  }
  30% {
    top: 5%;
  }
}

/*------------------------------------------------
Jobs
------------------------------------------------*/
.accordion-button:not(.collapsed),
.accordion-button {
  background: var(--gelb);
  color: #fff;
  border-radius: 0 !important;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 30px;
  border: 0;
}

.accordion-button.collapsed {
  background: var(--blau1);
  color: #fff;
}

h3:nth-child(2) .accordion-button.collapsed {
  background: var(--blau2);
}

h3:nth-child(3) .accordion-button.collapsed {
  background: var(--blau3);
}

.accordion-button:focus {
  box-shadow: none;
  outline: 0;
}

.accordion-button::after {
  display: none;
}

.accordion-button.collapsed::before {
  background-image: url(../images/icon-star.svg);
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
  margin-right: 15px;
}

.accordion-button:not(.collapsed)::before {
  background-image: url(../images/icon-star-active.svg);
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
  margin-right: 15px;
}

.accordion-collapse {
  border: 0;
}

.accordion-body {
  padding: 0;
}

/*-------------------------------------------------
responsive
--------------------------------------------------*/
@media(max-height: 850px) {
   #section-1,
   #section-1 .fp-tableCell {
     height: auto !important;
   }
}
@media(max-width: 1800px) {
  #section-5 .textWrap {
    padding-bottom: 80px;
  }

  #section-5 .firmengeschichte-jahreszahlen {
    font-size: 77px;
  }
}

@media(max-width: 1600px) and (min-height: 850px) {
  header nav .navigation ul li {
    padding: 0 15px;
  }

  #carouselIntro img {
    width: auto;
    height: 100%;
  }
}

@media(max-width: 1500px) {
  #section-5 .textWrap {
    padding-bottom: 70px;
  }

  #section-5 .firmengeschichte-jahreszahlen {
    font-size: 65px;
  }
  header nav .navigation ul li {
    padding: 0 10px;
  }

  header nav .navigation ul li a {
    font-size: 16px;
  }
}

@media(max-width: 1400px) {
  .noHome .content .container {
    max-width: 1140px;
  }
  img {
    max-width: 100%;
    height: auto;
  }

  .bigpic .d-flex .blue img {
    max-width: 70%;
  }

  #section-1 .left img {
    display: block;
    margin: 0 auto;
  }

  #section-2 .row {
    margin-top: 0;
  }

  .footerLine,
  #section-6 .textWrap {
    max-width: 1140px;
  }
  #section-7 .right img:nth-child(2) {
    left: 35.5%;
  }
}



@media(max-width: 1200px) {
  header {
    background-color: #fff;
  }

  h5 {
    width: auto;
  }
  #section-1 .left, #section-1 .right {
    padding: 0;
    margin-top: 0px;
}
  #section-4 .h3,
  #section-4 h3 {
    margin-bottom: 15px;
  }

  #section-4 h4 {
    font-size: 16px;
  }

  .noHome .content .container,
  #section-6 .textWrap {
    max-width: 960px;
  }

  #section-6 .textWrap {
    padding: 0;
  }

  .footerLine {
    display: none;
  }

  footer {
    margin-top: 50px;
    padding-top: 0;
  }

  #section-1 {
    margin-top: 75px;
  }

  .section,
  .section .fp-tableCell {
    height: auto !important;
  }

  .section .fp-tableCell {
    padding: 50px 0;
  }

  #section-1 .fp-tableCell {
    padding: 0 0 50px;
  }

  #section-7 .fp-tableCell {
    padding-bottom: 0;
  }


  #section-3 .d-flex,
  #section-4 .d-flex {
    flex-wrap: wrap;
  }

  #section-3 .d-flex>div {
    flex: 0 0 50%;
  }

  #section-5 .textWrap {
    padding-bottom: 65px;
  }

  #section-5 .firmengeschichte-jahreszahlen {
    font-size: 55px;
  }

  .gallery-inner {
    grid-template-columns: repeat(5, 1fr);
  }

  .gallery-item:nth-child(6) {
    opacity: 1;
  }

  .gallery-item:nth-child(5), .gallery-item:nth-child(7) {
    opacity: 0.2;
  }

  #fullpage h4 {
    font-size: 18px;
  }
}

@media(max-width: 1100px) {
  #section-5 .firmengeschichte-jahreszahlen span {
    padding: 0 10px;
  }
}

@media(max-width: 1024px) {
  header #signet {
    left: 50%;
    transform: translateX(-50%);
  }

  .burger {
    position: fixed;
    top: 20px;
    right: 20px;
  }

  .burger .burger-line {
    height: 5px;
    width: 40px;
    margin-bottom: 8px;
    background: var(--blau1);
    display: block;
    transition: 0.3s;
  }

  .burger .burger-line:nth-child(2) {
    margin-left: -9px;
    background: var(--blau2);
  }

  .burger .burger-line:last-child {
    background: var(--blau3);
  }

  .menu-open .burger-line:last-child,
  .menu-open .burger-line:first-child {
    margin-right: 9px;
  }

  .menu-open .burger-line:nth-child(2) {
    margin-left: 9px;
  }

  header nav {
    background: var(--blau1);
    width: 300px;
    position: fixed;
    top: 0;
    left: -300px;
    height: 100%;
    transition: 0.3s;
  }

  .menu-open header nav {
    left: 0;
  }

  header nav .navigation ul {
    flex-direction: column;
  }

  header nav .navigation ul li a {
    color: #fff;
    font-size: 20px;
    padding: 10px;
    display: block;
  }

  header nav .navigation ul li:hover a::after,
  header nav .navigation ul li.active a::after {
    bottom: 5px;
    background: var(--blau3);
  }



  #section-4 h4 {
    font-size: 16px;
  }
}

@media(max-width: 1023px) {
  #section-4 h4 {
    max-width: 320px;
    margin-bottom: 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    height: 100%;
    font-size: 20px;
  }

  #section-4 .d-flex>div {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    margin-bottom: 20px;
  }

  #section-4 h4 {
    max-width: 320px;
    margin-bottom: 20px;
  }
}

@media(max-width: 991px) {
  .home .h2, .noHome .h1,
  .home h2, .noHome h1 {
    font-size: 50px;
  }

  .bigpic .d-flex .blue img {
    max-width: 50%;
  }

  .noHome .content .container,
  #section-6 .textWrap,
  .footerLine {
    max-width: 720px;
  }

  #section-1 .right,
  #section-1 .left {
    flex: 0 0 auto;
    width: 50%;
  }
  #section-5 ul {
    padding-left: 0;
    padding-right: 0;
  }
  #section-5 .textWrap {
    padding-bottom: 45px;
  }

  #section-5 .firmengeschichte-jahreszahlen {
    font-size: 50px;
  }

  #section-5 .under {
    columns: 1;
  }
#section-7 .h2, 
  #section-7 .h3,
  #section-7 h2, 
  #section-7 h3,
  #section-7 .left {
    text-align: left !important;
  }

  #section-7 .left>div {
    max-width: 100%;
  }

  #section-7 .left .pe-4 {
    padding-right: 0 !important;
    padding-left: 30px;
  }

  #section-7 .left p.position-relative img {
    top: 0px;
    right: auto;
    left: 0;
  }

  #section-7 .right img {
    max-width: 100%;
  }

  .gallery-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-item:nth-child(1), .gallery-item:nth-child(2),
  .gallery-item:nth-child(5), .gallery-item:nth-child(7) {
    opacity: 1;
  }

  table tbody {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  table tr {
    flex: 0 0 50%;
    padding: 20px;
  }

  table tr:nth-child(1),
  table tr:nth-child5 {
    background: var(--grey1);
  }

  table tr:nth-child(2),
  table tr:nth-child(6) {
    background: var(--blau1);
    color: #fff;
  }

  table tr:nth-child(3),
  table tr:nth-child(7) {
    background: var(--blau2);
    color: #fff;
  }

  table tr:nth-child(4),
  table tr:nth-child(8) {
    background: var(--blau3);
    color: #fff;
  }

  table tr,
  table tr td {
    display: block;
  }

  .accordion-button:not(.collapsed), .accordion-button {
    text-align: left;
    font-size: 20px;
  }
}

@media(max-width: 768px) {

  .noHome .content .container,
  #section-6 .textWrap,
  .footerLine,
  .container {
    max-width: 540px;
  }
.home .h2, .noHome .h1,
  .home h2, .noHome h1 {
    font-size: 38px;
  }



  #section-3 .d-flex>div {
    flex: 0 0 100%;
    text-align: left;
    margin-bottom: 30px;
  }

  #section-3 img {
    float: left;
    margin-right: 20px;
  }

  #section-4 h4 {
    width: 93%;
    width: calc(100% - 23px);
  }

  #section-5 .firmengeschichte-jahreszahlen {
    font-size: 100px;
    flex-direction: column;
    left: -10px;
    top: 90px;
    bottom: auto;
    z-index: -1;
  }

  #section-5 .firmengeschichte-jahreszahlen span {
    color: #f3f3f2 !important;
  }
}

@media(min-width: 576px) {
  .readmore {
    display: none;
  }
}

@media(max-width: 575px) {
  .home .h2, .noHome .h1,
  .home h2, .noHome h1 {
    font-size: 40px;
  }
.home .h3, .noHome .h2,
  .home h3, .noHome h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .noHome .content,
  .section .fp-tableCell {
    padding: 20px 15px;
  }

  .bigpic .d-flex .blue {
    display: none;
  }

  .bigpic .d-flex .img {
    flex: 0 0 100%;
  }


  .carousel-indicators button {
    width: 65px !important;
    margin-bottom: 20px;
  }
  .carousel-indicators button.active::before {
    height: 20px;
  }
  #section-1 .fp-tableCell {
    padding: 0 0 20px;
  }

  #section-1 .left {
    display: none;
    height: 500px;
  }

  #section-1 .right {
    width: 100%;
    height: auto;
  }

  #section-3 .d-flex {
    margin: 20px;
  }

  #carouselIntro .bg-blue {
    background-color: var(--blau1);
  }

  #section-4 .d-flex>div {
    flex: 0 0 100%;
    max-width: 100%;
    max-height: 200px;
    overflow: hidden;
  }

  #section-4 .d-flex img {
    max-width: none;
    width: 100%;
  }

  #section-4 h4 {
    width: 100%;
    max-width: 100%;
    max-width: calc(100% - 23px);
  }

  #section-6 .fp-tableCell {
    padding-left: 0;
    padding-right: 0;
  }

  #section-6 .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nowrap {
    display: block;
  }

  #gallery {
    padding: 0;
    margin: 0 -6px;
  }

  .gallery-inner {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: minmax(min-content, max-content);
  }

  .gallery-item.active {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
    height: auto;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2) {
    grid-column-start: auto;
    grid-column-end: auto;
    grid-row-start: 5;
    grid-row-end: 6;
  }

  .gallery-item.active img,
  .gallery-item:nth-child(1) img,
  .gallery-item:nth-child(2) img {
    display: block;
  }

  .gallery-item img {
    display: none;
  }

  table tr {
    flex: 0 0 100%;
  }

  .noHome .content>.container {
    margin-top: 0 !important
  }

  .less.on {
    height: 200px;
    overflow: hidden;
    position: relative;
  }

  .less.on::after {
    content: " ";
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  }

  footer #copyright {
    padding: 25px 15px 0;
  }
}

@media(max-width: 460px) {
  .home .h2, .noHome .h1,
  .home h2, .noHome h1 {
    font-size: 35px;
  }
.home .h3, .noHome .h2,
  .home h3, .noHome h2 {
    font-size: 22px;
  }

  #section-7.section footer .asideLine::after,
  .asideLine::after {
    right: 7%;
  }



  #fullpage h4 {
    font-size: 22px;
    margin-top: 15px;
  }

  #section-4 h4 {
    margin-top: 0;
  }
}

@media(max-width: 400px) {
  .home .h2, .noHome .h1,
  .home h2, .noHome h1 {
    font-size: 25px;
  }
.home .h3, .noHome .h2,
  .home h3, .noHome h2 {
    font-size: 18px;
  }


  #section-3 .d-flex>div {
    margin-bottom: 15px;
  }

  #fullpage h4 {
    font-size: 18px;
    margin-top: 6px;
  }

  #section-4 h4 {
    margin-top: 0;
  }
}

@media(max-width: 360px) {
  #section-3 img {
    margin-bottom: 10px;
  }

  #fullpage h4 {
    margin-top: 0;
  }
}
