*{
  margin: 0;
  padding: 0;
}

:root{
  --color1: #da1e39;
}

header{
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8000;
  transition: 0.2s;
}

header.activeScroll{
  background: var(--color1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

header nav{
  width: 95%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav .navigation{
  width: auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 8002;
}

header nav .navigation .menuTitle{
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Raleway ExtraBold", Arial, sans-serif;
  font-weight: 600;
  margin-left: 20px;
  letter-spacing: 2px;
}

header.active nav .navigation .menuTitle{
  color: #151515;
}

header nav .navigation .navItem{
  width: 27px;
  height: 27px;
  fill: #fff;
  cursor: pointer;
}

header.active nav .navigation .navItem{
  fill: #151515;
}

header nav .logo{
  width: auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

header nav .logo a{
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

header nav .logo img:nth-child(1){
  width: 100px;
  padding-right: 15px;
}

header nav .logo img:nth-child(2){
  height: 70%;
}

header .navigationBox{
  position: absolute;
  top: 0;
  left: -450px;
  z-index: 8001;
  width: 350px;
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background: #fff;
  padding: 70px 30px 30px 35px;
  transition: 0.2s;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

header.active .navigationBox{
  position: absolute;
  top: 0;
  left: 0;
}

header .closeBox{
  position: absolute;
  top: 0;
  left: 415px;
  width: calc(100% - 415px);
  height: 100vh;
  cursor: pointer;
  display: none;
  transition: 0.2s;
}

header.active .closeBox{
  display: flex;
}

header .navigationBox .innerBox{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
}

header .navigationBox .innerBox .navigationList{
  width: 100%;
  height: auto;
}

header .navigationBox .innerBox .navigationList li{
  width: 100%;
  height: 24px;
  overflow: hidden;
  list-style: none;
  margin: 20px 0;
  transition: 0.2s;
}

header .navigationBox .innerBox .navigationList li#toggle1.active{
  height: calc(27px*8);
}
header .navigationBox .innerBox .navigationList li#toggle2.active{
  height: calc(27px*7);
}
header .navigationBox .innerBox .navigationList li#toggle3.active{
  height: calc(27px*4);
}

header .navigationBox .innerBox .navigationList li a{
  color: #151515;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Raleway ExtraBold", Arial, sans-serif;
  font-weight: 600;
  position: relative;
}

header .navigationBox .innerBox .navigationList li a .hoverUnderline{
  position: absolute;
  bottom: -1px;
  left: 0px;
  width: 0;
  height: 1.5px;
  background: #151515;
  transition: 0.2s;
}

header .navigationBox .innerBox .navigationList li a:hover .hoverUnderline{
  width: 100%;
}

header .navigationBox .innerBox .navigationList li a i{
  margin-left: 7px;
  font-size: 16px;
  transition: 0.2s;
}

header .navigationBox .innerBox .navigationList li.active a i{
  transform: rotateZ(180deg);
}

header .navigationBox .innerBox .navigationList li ul{
  margin-top: 5px;
}

header .navigationBox .innerBox .navigationList li ul li{
  margin: 8px 0;
  height: 18px;
}

header .navigationBox .innerBox .navigationList li ul li a{
  color: #151515;
  font-size: 15.5px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  font-family: "Raleway Light", Arial, sans-serif;
  font-weight: 200;
}

header .navigationBox .innerBox .actionList{
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 90px;
}

header .navigationBox .innerBox .actionList ul{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .navigationBox .innerBox .actionList ul li{
  list-style: none;
}

header .navigationBox .innerBox .actionList ul li a{
  color: #151515;
  font-size: 15.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  font-family: "Raleway ExtraBold", Arial, sans-serif;
  font-weight: 600;
}

header .navigationBox .innerBox .actionList ul .lang{
  width: auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .navigationBox .innerBox .actionList ul .lang li a{
  font-family: "Raleway Light", Arial, sans-serif;
  font-weight: 200;
  margin: 0 5px;
  pointer-events: all;
}

header .navigationBox .innerBox .actionList ul .lang li a.active{
  font-family: "Raleway ExtraBold", Arial, sans-serif;
  font-weight: 600;
  pointer-events: none;
}

.blockedCookie{
  font-family: "Arial";
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #000;
  z-index: +1;
}

.blockedCookie g{
  text-decoration: underline;
  font-weight: bold;
  cursor: pointer;
}

#cookieBanner{
  position: fixed;
  bottom: -100%;
  left: 0;
  background: #fff;
  width: 100%;
  height: auto;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

#cookieBanner.active{
  position: fixed;
  bottom: 0;
  left: 0;
  animation: hideBanner 1s ease;
}

@keyframes hideBanner {
  0%{
    bottom: -100%;
  }
  100%{
    bottom: 0;
  }
}

#cookieBanner .innerBox{
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#cookieBanner .innerBox .textBox{
  width: 70%;
}

#cookieBanner .innerBox .textBox h3{
  font-family: Arial;
  color: #000;
  font-size: 20px;
  padding-bottom: 5px;
  letter-spacing: 1px;
}

#cookieBanner .innerBox .textBox p{
  font-family: Arial;
  color: #000;
  font-size: 15px;
  letter-spacing: 1px;
  padding-bottom: 10px;
}

#cookieBanner .innerBox .textBox a{
  font-family: Arial;
  color: #000;
  text-decoration: underline;
  font-size: 15px;
  letter-spacing: 1px;
}

#cookieBanner .innerBox .buttons{
  width: 25%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

#cookieBanner .innerBox .buttons a{
  font-family: Arial;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: var(--color1);
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
  margin: 5px 0;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
}

.container{
  width: 95%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

section#main{
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 600;
  background: #fff;
}

section#main .innerBox{
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: calc(100%/4) calc(100%/4) calc(100%/4) calc(100%/4);
  grid-template-rows: calc(100%/3) calc(100%/3) calc(100%/3);
  gap: 6px;
  grid-template-areas:
  "landscape1 landscape7 landscape10 landscape8"
  "landscape9 landscape6 landscape2 portait1"
  "landscape5 landscape4 landscape3 portait1";
  overflow: hidden;
}

svg.logoLabelMobile{
  visibility: hidden;
  display: none;
}

section#main .innerBox svg.logoLabel{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  animation: logoLabelOut 12s ease;
  animation-iteration-count: 3;
  animation-delay: 2s;
  visibility: hidden;
  opacity: 0;
}

section#main .innerBox svg.logoLabel path{
  stroke: #fff;
}

@keyframes logoLabelOut {
  0%, 100%{
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(1);
  }
  3%, 65%{
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
  }
  72%{
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(15);
  }
}

section#main .innerBox .mainItem{
  overflow: hidden;
  position: relative;
  transition: 0.2s;
}

section#main .innerBox .mainItem.landscape1{
  grid-area: landscape1;
}
section#main .innerBox .mainItem.landscape2{
  grid-area: landscape2;
}
section#main .innerBox .mainItem.landscape3{
  grid-area: landscape3;
}
section#main .innerBox .mainItem.landscape4{
  grid-area: landscape4;
}
section#main .innerBox .mainItem.landscape5{
  grid-area: landscape5;
}
section#main .innerBox .mainItem.landscape6{
  grid-area: landscape6;
}
section#main .innerBox .mainItem.landscape7{
  grid-area: landscape7;
}
section#main .innerBox .mainItem.landscape8{
  grid-area: landscape8;
}
section#main .innerBox .mainItem.landscape9{
  grid-area: landscape9;
}
section#main .innerBox .mainItem.landscape10{
  grid-area: landscape10;
}
section#main .innerBox .mainItem.portait1{
  grid-area: portait1;
}

section#main .innerBox .mainItem p{
  position: absolute;
  bottom: -100%;
  left: 10px;
  color: #fff;
  padding: 2px;
  background: var(--color1);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Raleway Black", Arial, sans-serif;
  font-weight: 800;
  transition: 0.2s;
}

section#main .innerBox .mainItem:hover p{
  position: absolute;
  bottom: 10px;
  left: 10px;
}

section#main .innerBox .mainItem .imgBox{
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

section#main .innerBox .mainItem .imgBox video,
section#main .innerBox .mainItem .imgBox iframe,
section#main .innerBox .mainItem .imgBox blockquote,
section#main .innerBox .mainItem .imgBox img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.2s;
}

section#main .innerBox .mainItem:hover .imgBox video,
section#main .innerBox .mainItem:hover .imgBox iframe,
section#main .innerBox .mainItem:hover .imgBox blockquote,
section#main .innerBox .mainItem:hover .imgBox img{
  transform: scale(1.05);
}

section.panel{
  width: 100%;
  /* height: calc(auto+120px); */
  z-index: 700;
  background: #151515;
}

.containerSection.white,
.containerSection.white::before{
  background: #fff;
  color: #151515;
  box-shadow: 0px -20px 20px rgba(255, 255, 255, 0.2);
}

.containerSection.black,
.containerSection.black::before{
  background: #151515;
  color: #fff;
  box-shadow: 0px -20px 20px rgba(255, 255, 255, 0.2);
}

.containerSection{
  width: 100%;
  height: auto;
  padding: 0 0 110px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 700;
  position: relative;
}

.containerSection .container{
  width: 85%;
}

.containerSection::before{
  content: '';
  z-index: 699;
  position: absolute;
  top: -40px;
  width: 100%;
  height: 100px;
  transform: skewY(3deg);
}

.containerSection#startSection2::before{
  content: '';
  z-index: 699;
  position: absolute;
  top: -40px;
  width: 100%;
  height: 100px;
  transform: skewY(-3deg);
}

.containerSection#startSection3::after{
  content: '';
  z-index: 699;
  position: absolute;
  top: -40px;
  width: 100%;
  height: 100px;
  transform: skewY(-1deg);
  background: #151515;
  box-shadow: 0px -20px 20px rgba(255, 255, 255, 0.2);
}

.slick-slide {
  margin: 0px 10px;
}
.slick-slide img {
  width: 100%;
}

.containerSection .headline{
  font-family: "Raleway Black", Arial;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 3px;
  z-index: 701;
}

.containerSection .subline{
  font-family: "Raleway Light", Arial;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 3px;
  z-index: 701;
}

.containerSection .jobInformation{
  font-family: "Raleway Medium", Arial;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  z-index: 701;
}

.containerSection .subline a{
  font-size: 16px;
  text-decoration: none;
  margin-left: 10px;
}

.containerSection .subline a:nth-child(1){
  margin-left: 0px;
}

.containerSection .subline a.active{
  font-family: "Raleway ExtraBold", Arial;
  font-weight: 600;
  color: var(--color1);
  pointer-events: none;
}

.containerSection.white .subline a.active,
.containerSection.black .subline a.active{
  color: var(--color1);
}

.containerSection.white .subline a{
  color: #151515;
}
.containerSection.black .subline a{
  color: #fff;
}

.containerSection .textBox{
  width: 100%;
  margin-top: 20px;
  z-index: 701;
}

.containerSection .textBox p{
  font-family: "Raleway Regular", Arial;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 27px;
}

.containerSection.white .textBox a{
  color: #151515;
}
.containerSection.black .textBox a{
  color: #fff;
}

.containerSection .textBox a{
  font-family: "Raleway Bold", Arial;
  font-size: 18px;
  text-decoration: none;
}

.containerSection .textBox strong{
  font-family: "Raleway ExtraBold", Arial;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}

.containerSection .textBox .unternehmenList{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.containerSection .textBox .unternehmenList li{
  list-style: none;
  margin: 0px 50px;
  margin-top: 40px;
}

.containerSection .textBox .unternehmenList li a{
  list-style: none;
  font-family: "Raleway Black", Arial;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.2s;
}

.containerSection .textBox .kontaktList{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-top: 20px;
}

.containerSection .textBox .kontaktList li{
  list-style: none;
  margin: 0px 40px;
}

.containerSection .textBox .kontaktList li a{
  font-family: "Raleway ExtraBold", Arial;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}

.containerSection .textBox .kontaktList li a i{
  padding-right: 15px;
}

.containerSection .textBox .socialList{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 40px;
}

.containerSection .textBox .socialList h3{
  font-family: "Raleway Light", Arial;
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.containerSection .textBox .socialList .list{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.containerSection .textBox .socialList .list li{
  list-style: none;
  margin: 0px 20px;
}

.containerSection .textBox .socialList .list li a i{
  font-size: 21px;
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}

.containerSection .textBox .terminBox{
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: calc(100%/7) calc(100%/7) calc(100%/7) calc(100%/7) calc(100%/7) calc(100%/7) calc(100%/7);
  grid-template-rows: 50px auto;
  grid-template-areas:
  "dayHeadMo dayHeadDi dayHeadMi dayHeadDo dayHeadFr dayHeadSa dayHeadSo"
  "dayMo dayDi dayMi dayDo dayFr daySa daySo";
  overflow: hidden;
  margin-top: 10px;
}

.containerSection .textBox .terminBox .kalenderHeadItem.dayMo{
  grid-area: dayHeadMo;
}
.containerSection .textBox .terminBox .kalenderHeadItem.dayMi{
  grid-area: dayHeadDi;
}
.containerSection .textBox .terminBox .kalenderHeadItem.dayMi{
  grid-area: dayHeadMi;
}
.containerSection .textBox .terminBox .kalenderHeadItem.dayDo{
  grid-area: dayHeadDo;
}
.containerSection .textBox .terminBox .kalenderHeadItem.dayFr{
  grid-area: dayHeadFr;
}
.containerSection .textBox .terminBox .kalenderHeadItem.daySa{
  grid-area: dayHeadSa;
}
.containerSection .textBox .terminBox .kalenderHeadItem.daySo{
  grid-area: dayHeadSo;
}
.containerSection .textBox .terminBox .kalenderItem.dayMo{
  grid-area: dayMo;
}
.containerSection .textBox .terminBox .kalenderItem.dayDi{
  grid-area: dayDi;
}
.containerSection .textBox .terminBox .kalenderItem.dayMi{
  grid-area: dayMi;
}
.containerSection .textBox .terminBox .kalenderItem.dayDo{
  grid-area: dayDo;
}
.containerSection .textBox .terminBox .kalenderItem.dayFr{
  grid-area: dayFr;
}
.containerSection .textBox .terminBox .kalenderItem.daySa{
  grid-area: daySa;
}
.containerSection .textBox .terminBox .kalenderItem.daySo{
  grid-area: daySo;
}

.containerSection .textBox .terminBox .kalenderHeadItem{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.containerSection .textBox .terminBox .kalenderHeadItem h3{
  font-family: "Arial Black";
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 2px;
}

.containerSection .textBox .terminBox .kalenderHeadItem span{
  font-family: "Raleway Light", Arial;
  font-size: 14px;
  font-weight: 200;
  margin-top: -5px;
}

.containerSection .textBox .terminBox .kalenderHeadItem .today{
  width: 35%;
  height: 2px;
  background: var(--color1);
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.containerSection .textBox .terminBox .kalenderItem{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 15px 0;
  margin-top: 20px;
  border-right: 1px solid var(--color1);
}

.containerSection .textBox .terminBox .kalenderItem:nth-child(7){
  border-right: none;
}

.containerSection .textBox .terminBox .kalenderItem ul{
  width: 100%;
  height: auto;
  padding: 0px;
}

.containerSection .textBox .terminBox .kalenderItem ul .noItems{
  font-family: "Raleway ExtraBold", Arial;
  font-size: 16px;
  font-weight: 700;
  color: #151515;
  width: 100%;
  text-align: center;
}

.containerSection .textBox .terminBox .kalenderItem ul li:nth-child(1){
  margin-top: 0;
}

.containerSection .textBox .terminBox .kalenderItem ul li{
  width: 100%;
  height: auto;
  list-style: none;
  position: relative;
  margin: 5px 0;
}

.containerSection .textBox .terminBox .kalenderItem ul li a{
  font-family: "Raleway Medium", Arial;
  font-size: 16px;
  font-weight: 600;
  margin-left: 2px;
  text-decoration: none;
  color: #151515;
  width: 100%;
  padding: 0px 7px;
}

.containerSection .textBox .terminBox .kalenderItem ul li a.imgAnker{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.containerSection .textBox .terminBox .kalenderItem ul li img{
  width: 85%;
  height: auto;
}

section#startSection1{
  top: 100px;
}

section#startSection2{
  top: 100px;
}
section#startSection2 .container{
  align-items: flex-end;
}

section#startSection3{
  top: 120px;
}

h1.pageHeadline{
  font-family: "Raleway Black", Arial;
  font-size: 55px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  top: 260px;
  right: 70px;
}

section#headWallpaper{
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 600;
  background: #151515;
  overflow: hidden;
}

section#headWallpaper.konzernHeader{
  height: 600px;
}

section#headWallpaper.konzernHeader h1.pageHeadline{
  position: absolute;
  top: 450px;
  right: 70px;
}

section#headWallpaper img{
  width: 100%;
}

section#headWallpaper .blackscreen{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.newsList{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 10px;
}

.newsList .newsItem{
  width: calc(100%/4.5);
  max-width: 300px;
  margin: 25px calc(11%/8);
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  transition: 0.2s;
  color: #fff;
}

.newsList .newsItem:hover{
  transform: scale(1.03);
  background: #f9f9f9;
  color: #151515;
}

.newsList .newsItem .imgBox{
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.newsList .newsItem .imgBox img{
  width: 100%;
  height: auto;
}

.newsList .newsItem .inhaltBox{
  width: 100%;
  height: auto;
  margin-top: 5px;
  padding: 0px 5px 10px 5px;
}

.newsList .newsItem .inhaltBox .subtitle{
  font-family: "Raleway Light", Arial;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.newsList .newsItem .inhaltBox .datum{
  font-family: Arial;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-top: 5px;
}

.newsList .newsItem .inhaltBox h3{
  font-family: "Raleway ExtraBold", Arial;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 8px;
}

.newsList .newsItem .inhaltBox p{
  font-family: "Raleway Regular", Arial;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  margin-top: 8px;
}

.newsList .newsItem .inhaltBox a{
  font-family: "Raleway ExtraBold", Arial;
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 2px;
}

.newsList .newsItem:hover .inhaltBox a{
  color: #151515;
}

section#pageSection1{
  padding: 0px;
}

.pageSelector{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.pageSelector ul{
  width: 50%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pageSelector ul li{
  width: 20px;
  height: auto;
  list-style: none;
  margin: 10px;
}

.pageSelector ul li a{
  font-family: Arial;
  font-size: 18px;
  font-weight: 300;
  color: #151515;
  text-decoration: none;
}

.pageSelector ul li a i{
  font-size: 15px;
}

.pageSelector ul li a.active{
  font-weight: 800;
  pointer-events: none;
}

.pageSelector ul li a.disable{
  pointer-events: none;
  opacity: 0.4;
}

.jobList{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 10px;
}

.filterBox{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 5px;
  padding-bottom: 5px;
}

.filterBox select{
  width: 250px;
  height: 30px;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  background: none;
  outline: none;
  text-transform: uppercase;
}

.filterBox select option{
  color: #151515;
}

.jobList .jobItem{
  width: calc(100%/4.5);
  margin: 25px calc(10%/8);
  background: #151515;
  border: 1px solid #fff;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.3);
  height: 140px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  transition: 0.2s;
  color: #fff;
  padding: 20px 0;
  position: relative;
}

.jobList .jobItem:hover{
  transform: scale(1.03);
  background: #f9f9f9;
  color: #151515;
}

.jobList .jobItem a{
  width: 100%;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.jobList .jobItem .inhaltBox{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  position: relative;
}

.jobList .jobItem .inhaltBox h3{
  font-family: "Raleway Black", Arial;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
}

.jobList .jobItem .inhaltBox .genderLabel{
  font-family: "Raleway Light", Arial;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
}

.jobList .jobItem .inhaltBox .unitLabel{
  font-family: "Raleway ExtraBold", Arial;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
}

.jobList .jobItem .inhaltBox .locationLabel{
  font-family: "Raleway Regular", Arial;
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  margin-top: -13px;
}

.jobList .jobItem .inhaltBox a{
  font-family: "Raleway Black", Arial;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  margin-top: -13px;
  padding: 3px 7px;
  background: #fff;
  color: #151515;
  border-radius: 2px;
  margin-top: 10px;
}

.jobList .jobItem:hover .inhaltBox{
  color: #151515;
}

.jobList .jobItem:hover .inhaltBox a{
  color: #fff;
  background: #151515;
}

.jobSubline br{
  display: none;
}

.jobInhaltList .sporttotalText{
  font-family: "Raleway Regular", Arial;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
  line-height: 19px;
}

.jobInhaltList .text{
  margin-top: 15px;
}

.jobInhaltList .text .labelHeadline{
  font-family: "Raleway Black", Arial;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-bottom: 2px;
  color: #fff;
  margin-top: 20px;
}

.jobInhaltList .text ul{
  margin-top: 2px;
}

.jobInhaltList .text ul li{
  list-style: none;
  font-family: "Raleway Medium", Arial;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  position: relative;
  margin: 10px 0 10px 35px;
}

.jobInhaltList .text ul li::before{
  font-family: FontAwesome;
  content: "\f138";
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 15px;
  border-radius: 50%;
}

.jobInhaltList .signatur{
  font-family: "Raleway Regular", Arial;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
  line-height: 19px;
  margin-top: 40px;
}

.jobInhaltList .signatur b{
  font-family: "Raleway ExtraBold", Arial;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 3px;
}

.jobInhaltList .signatur a{
  font-family: "Raleway ExtraBold", Arial;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
}

section#kontaktSection1 .kontaktList li a{
  color: #151515;
}

.containerSection#kontaktSection2::before{
  content: '';
  z-index: 699;
  position: absolute;
  top: -40px;
  width: 100%;
  height: 130px;
  transform: skewY(-5deg);
}

.containerSection#kontaktSection2::after{
  content: '';
  z-index: 699;
  position: absolute;
  top: -40px;
  width: 100%;
  height: 130px;
  transform: skewY(3deg);
  background: #151515;
  box-shadow: 0px -20px 20px rgba(255, 255, 255, 0.2);
}

.containerSection#kontaktSection2 .headline,
.containerSection#kontaktSection2 .subline{
  width: 100%;
  text-align: right;
}

.containerSection#kontaktSection2 .headline{
  font-size: 35px;
}

.memberList{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
}

.memberList .memberHeadline{
  font-family: "Raleway Black", Arial;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 60px;
  padding-bottom: 30px;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.memberList .memberRow{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.memberList .memberRow .memberItem{
  width: 40%;
  max-width: 400px;
  height: 450px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin: 20px;
}

.memberList .memberRow .memberItem .imgBox{
  width: 100%;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.memberList .memberRow .memberItem .imgBox img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.memberList .memberRow .memberItem .textBox{
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  margin-top: 10px;
}

.memberList .memberRow .memberItem .textBox .name{
  font-family: "Raleway ExtraBold", Arial;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  width: 100%;
  text-align: center;
}

.memberList .memberRow .memberItem .textBox .position{
  font-family: "Raleway Light", Arial;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #fff;
  width: 100%;
  text-align: center;
}

.memberList .memberRow .memberItem .textBox .zitat{
  font-family: "Raleway Regular", Arial;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
  width: 100%;
  text-align: center;
  margin-top: 15px;
  position: relative;
  z-index: 30;
}

.memberList .memberRow .memberItem .textBox .zitat::after{
  content: '„';
  font-family: Arial;
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  color: rgba(218, 30, 57, 0.6);
  z-index: -1;
}

.memberList .memberRow .memberItem .textBox a{
  font-family: "Raleway Light", Arial;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #fff;
  margin-top: 15px;
  text-decoration: none;
  width: 100%;
  text-align: center;
}

.partnerLogosRow{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 701;
}

.partnerLogosRow a{
  width: 150px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 50px;
}

.partnerLogosRow a img{
  max-height: 100%;
  max-width: 100%;
}

.unitLogosRow{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 701;
}

.unitLogosRow a{
  width: auto;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 50px;
}

.unitLogosRow a img{
  max-height: 100%;
}

.unitList{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
}

.unitList .unitRow{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 20px;
  padding-top: 100px;
}

.unitList .unitRow .headerBox{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.unitList .unitRow .headerBox .unitHeadline{
  font-family: "Raleway Black", Arial;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #fff;
  width: 100%;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 50px;
}

.unitList .unitRow .textBox p{
  font-family: "Raleway Regular", Arial;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
  width: 100%;
  text-align: left;
  line-height: 22px;
}

.unitList .unitRow .textBox.stimmrechtsmitteilungen p.arrowItem{
  margin: 10px 0 10px 35px;
  position: relative;
}

.unitList .unitRow .textBox.stimmrechtsmitteilungen p.arrowItem::before{
  font-family: FontAwesome;
  content: "\f138";
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 15px;
  border-radius: 50%;
}

.unitList .unitRow .textBox p b{
  font-family: "Raleway ExtraBold", Arial;
  font-weight: 700;
  color: var(--color1);
  text-transform: uppercase;
}

.unitList .unitRow .textBox p a.linkBtn{
  font-family: "Raleway Light", Arial;
  font-weight: 300;
  color: #fff;
  font-size: 14px;
  text-decoration: underline;
  text-transform: uppercase;
  transition: 0.2s;
}

.unitList .unitRow .textBox p a.linkBtn:hover{
  letter-spacing: 2px;
}

.unitList .unitRow .textBox p strong{
  font-family: "Raleway ExtraBold", Arial;
  font-weight: 700;
  font-size: 17px;
}

.unitList .unitRow .textBox ul{
  position: relative;
  margin-top: 20px;
  padding-bottom: 20px;
}

.unitList .unitRow .textBox ul li{
  list-style: none;
  font-family: "Raleway Medium", Arial;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  position: relative;
  margin: 10px 0 10px 35px;
}

.unitList .unitRow .textBox ul li::before{
  font-family: FontAwesome;
  content: "\f138";
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 15px;
  border-radius: 50%;
}

.unitList .unitRow .textBox table.table1{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.unitList .unitRow .textBox table.table1 tbody{
  width: 60%;
}

.unitList .unitRow .textBox table.table1 tbody tr{
  width: 100%;
}

.unitList .unitRow .textBox table.table1 tbody tr td:nth-child(1){
  font-family: "Raleway ExtraBold", Arial;
  font-weight: 800;
  letter-spacing: 1px;
}

.unitList .unitRow .textBox table.table1 tbody tr td{
  font-family: "Raleway Regular", Arial;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
  width: 400px;
  text-align: left;
  line-height: 22px;
}

.factsheetImages{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
}

.factsheetImages img{
  width: 300px;
  height: auto;
  margin: 0px 30px;
}

.factsheetImages img.strukturImg{
  width: 70%;
}

.factsheetBtn{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.factsheetBtn .btn{
  padding: 7px 30px;
  background: #fff;
  border-radius: 2px;
  border: 1.5px solid #fff;
  color: #151515;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 800;
  font-family: "Raleway ExtraBold", Arial;
}

.unitList .unitRow .textBox .table2{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.unitList .unitRow .textBox .table2 .innerBox{
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.unitList .unitRow .textBox .table2 .innerBox .col1,
.unitList .unitRow .textBox .table2 .innerBox .col2{
  width: 40%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  margin: 0 30px;
}

.unitList .unitRow .textBox .table2 .innerBox .col1 p,
.unitList .unitRow .textBox .table2 .innerBox .col2 p{
  width: 100%;
  text-align: center;
  font-size: 15px;
  margin: 3px 0;
}

table.table3{
  width: 100%;
  height: auto;
  border: 1px solid #fff;
  font-family: "Raleway Regular", Arial;
  font-size: 13px;
  color: #fff;
  margin-top: 15px;
}

table.table3 td{
  padding: 3px;
  border: 1px solid #fff;
}

table.table4{
  width: 100%;
  height: auto;
  font-family: "Raleway Regular", Arial;
}

table.table5{
  width: 100%;
  height: auto;
  font-family: "Raleway Regular", Arial;
  margin-top: 20px;
}

table.table5 tr{
  width: 100%;
  height: auto;
  font-family: "Raleway Regular", Arial;
  text-align: center;
}

table.table5 tr td{
  width: calc(100%/3);
  font-size: 18px;
  color: #fff;
  font-family: "Raleway ExtraBold", Arial;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 50px;
}

table.table5 tr td a.btn{
  padding: 7px 45px;
  background: #fff;
  border-radius: 2px;
  border: 1.5px solid #fff;
  color: #151515;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 800;
  font-family: "Raleway ExtraBold", Arial;
}

table.table6{
  width: 100%;
  height: auto;
  font-family: "Raleway Regular", Arial;
  margin-top: 20px;
}

table.table6 tr{
  width: 100%;
  height: auto;
  line-height: 30px;
}

table.table6 tr td:nth-child(1){
  width: 15%;
  font-weight: 800;
  font-family: "Raleway ExtraBold", Arial;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 2px;
  text-align: left;
}
table.table6 tr td:nth-child(2){
  width: 80%;
  font-weight: 500;
  font-family: "Raleway Regular", Arial;
  font-size: 18px;
  letter-spacing: 1px;
  text-align: left;
}

table.table7{
  width: 100%;
  height: auto;
  font-family: "Raleway Regular", Arial;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

table.table7 tbody{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

table.table7 tr{
  width: 100%;
  height: auto;
  font-family: "Raleway Regular", Arial;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

table.table7 tr td{
  width: auto;
  height: auto;
  font-size: 18px;
  color: #fff;
  font-family: "Raleway ExtraBold", Arial;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

table.table7 tr td a.btn{
  padding: 7px 40px;
  background: #fff;
  border-radius: 2px;
  border: 1.5px solid #fff;
  color: #151515;
  font-size: 15px;
  text-transform: none;
  font-weight: 800;
  font-family: "Raleway ExtraBold", Arial;
  text-align: center;
}

section#newsletter{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 60px;
}

section#newsletter h3{
  color: #fff;
  font-family: "Raleway Black", sans-serif;
  font-weight: 900;
  font-size: 25px;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 5px;
  text-align: center;
  width: 100%;
  padding-bottom: 5px;
}

/* section#newsletter p{
  color: #fff;
  font-family: "Raleway Light", sans-serif;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 1px;
  text-align: center;
  width: 100%;
} */

section#newsletter form{
  width: 30%;
  height: 40px;
  position: relative;
  margin-top: 10px;
}

section#newsletter form input{
  width: 100%;
  height: 100%;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: none;
  font-size: 16px;
  color: #fff;
  padding: 0px 25px 0px 5px;
  border-radius: 0px;
}

section#newsletter form button{
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  outline: none;
  background: none;
  border: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

.standortList{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.standortList .standortItem{
  width: calc(100%/2.2);
  height: auto;
  margin: 30px 10px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.standortList .standortItem .headerBox{
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.standortList .standortItem .headerBox h1{
  font-family: "Raleway ExtraBold", Arial;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
}

.standortList .standortItem .headerBox h3{
  font-family: "Raleway Light", Arial;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #fff;
  margin-top: 2px;
}

.standortList .standortItem a.mapsLink{
  font-family: "Raleway ExtraBold", Arial;
  font-weight: 700;
  letter-spacing: 4px;
}

.standortList .standortItem a.mapsLink i{
  color: #fff;
  margin-left: 10px;
}

.standortList .standortItem p{
  font-family: "Raleway Regular", Arial;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3px;
  color: #fff;
  line-height: 20px;
  margin-top: 20px;
}

.standortList .standortItem a{
  font-family: "Raleway Regular", Arial;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3px;
  color: #fff;
  text-decoration: none;
}

#inprint h2{
  font-family: "Raleway ExtraBold", Arial;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 5px;
}

#inprint h3{
  font-family: "Raleway ExtraBold", Arial;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 3px;
}

#inprint ul li{
  list-style: none;
  font-family: "Raleway Regular", Arial;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  position: relative;
  margin: 10px 0 10px 35px;
}

#inprint ul li::before{
  font-family: FontAwesome;
  content: "\f138";
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 15px;
  border-radius: 50%;
}

footer{
  width: 100%;
  height: auto;
  padding: 30px 0 150px 0;
  background: #151515;
  border-top: 2px solid #fff;
  box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 120px;
  z-index: 703;
}

footer .rowList{
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: calc(90% / 4) calc(90% / 4) calc(90% / 4) calc(90% / 4) 10%;
  gap: 5px;
  grid-template-rows: auto;
  grid-template-areas:
  "colLogo colSporttotal colImprint colCopyright";
  overflow: hidden;
}

footer .rowList .col{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

footer .rowList .col:nth-child(1){
  grid-area: colLogo;
}
footer .rowList .col:nth-child(2){
  grid-area: colSporttotal;
}
footer .rowList .col:nth-child(3){
  grid-area: colImprint;
}
footer .rowList .col:nth-child(4){
  grid-area: colCopyright;
}

footer .rowList .col .logo{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

footer .rowList .col .logo img{
  width: 25%;
}

footer .rowList .col .teamviewerIcon{
  width: 30%;
}

footer .rowList .col ul{
  width: 100%;
  height: auto;
}

footer .rowList .col ul h3{
  width: 100%;
  font-family: "Raleway Black", Arial;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  padding-bottom: 5px;
  letter-spacing: 2px;
  color: #fff;
}

footer .rowList .col ul li{
  list-style: none;
  width: 100%;
  font-family: "Raleway Medium", Arial;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 3px 0;
  text-decoration: none;
  color: #fff;
}

footer .rowList .col ul li a{
  list-style: none;
  width: 100%;
  font-family: "Raleway Medium", Arial;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 3px 0;
  text-decoration: none;
  color: #fff;
  transition: 0.2s;
}

footer .rowList .col ul li a:hover{
  letter-spacing: 3px;
}

footer .rowList .col .copyright{
  width: 100%;
  font-family: "Raleway Medium", Arial;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fff;
  margin-top: 10px;
}

footer .rowList .col .copyright .madeBy{
  font-size: 9.5px;
  font-family: "Raleway Light", Arial;
  font-weight: 300;
  text-transform: uppercase;
}

footer .rowList .col .lang{
  width: auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .rowList .col .lang ul{
  width: auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .rowList .col .lang ul li a:nth-child(1){
  margin-left: 0px;
}

footer .rowList .col .lang ul li a{
  font-family: "Raleway Light", Arial, sans-serif;
  font-weight: 200;
  font-size: 14px;
  margin: 0 5px;
  pointer-events: all;
}

footer .rowList .col .lang ul li a:hover{
  letter-spacing: 1px;
}

footer .rowList .col .lang ul li a.active{
  font-family: "Raleway ExtraBold", Arial, sans-serif;
  font-weight: 600;
  pointer-events: none;
}

@media (max-width: 991px) {
  header .navigationBox{
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 8001;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    background: #fff;
    padding: 0px;
    transition: 0.2s;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  }
  header .navigationBox .innerBox{
    padding: 70px 0px 30px 20px;
  }
  header .navigationBox .innerBox .actionList{
    width: 90%;
    position: absolute;
    bottom: 130px;
  }
  #cookieBanner{
    padding: 30px 0;
  }
  #cookieBanner .innerBox{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #cookieBanner .innerBox .textBox{
    width: 90%;
  }
  #cookieBanner .innerBox .textBox h3{
    font-family: Arial;
    color: #000;
    font-size: 20px;
    padding-bottom: 5px;
    letter-spacing: 1px;
  }

  #cookieBanner .innerBox .textBox p{
    font-family: Arial;
    color: #000;
    font-size: 15px;
    letter-spacing: 1px;
    padding-bottom: 10px;
  }

  #cookieBanner .innerBox .textBox a{
    font-family: Arial;
    color: #000;
    text-decoration: underline;
    font-size: 15px;
    letter-spacing: 1px;
  }

  #cookieBanner .innerBox .buttons{
    width: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
  }
  #cookieBanner .innerBox .buttons a{
    padding: 10px;
    margin: 0;
    margin-top: 10px;
  }
  section#main{
    width: 100%;
    height: 200vh;
  }
  section#main .innerBox{
    grid-template-columns: calc(100%/2) calc(100%/2);
    grid-template-rows: calc(100%/6) calc(100%/6) calc(100%/6) calc(100%/6) calc(100%/6) calc(100%/6);
    grid-template-areas:
    "landscape3 landscape7"
    "landscape6 landscape6"
    "portait1 landscape8"
    "landscape2 landscape10"
    "landscape5 landscape9"
    "landscape4 landscape1";
  }
  section#main .innerBox svg.logoLabel{
    display: none;
    visibility: hidden;
  }
  svg.logoLabelMobile{
    visibility: visible;
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 699;
    width: 85%;
    animation: logoLabelOut 12s ease;
    animation-iteration-count: 3;
    animation-delay: 2s;
    visibility: hidden;
    opacity: 0;
  }
  svg.logoLabelMobile path{
    stroke: #fff;
  }
  .partnerLogosRow{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    z-index: 701;
  }
  .partnerLogosRow a{
    width: 100px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
  }
  .containerSection .textBox .kontaktList{
    flex-direction: column;
  }
  .containerSection .textBox .kontaktList li{
    width: 100%;
    text-align: center;
    margin: 15px 0px;
  }
  .containerSection .textBox .kontaktList li a{
    font-size: 17px;
  }
  .containerSection .textBox .kontaktList li a i{
    padding-right: 10px;
  }
  section#headWallpaper.konzernHeader{
    height: 300px;
  }
  section#headWallpaper.konzernHeader h1.pageHeadline{
    position: absolute;
    top: 180px;
    right: 20px;
  }
  h1.pageHeadline{
    font-family: "Raleway Black", Arial;
    font-size: 1.6rem;
    font-weight: 800;
    width: 100%;
    text-align: right;
    top: 180px;
    right: 20px;
  }
  .jobList{
    flex-direction: column;
  }
  .jobList .jobItem{
    width: 100%;
    margin: 20px 0;
  }
  .jobList .jobItem a{
    width: 100%;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .jobList .jobItem .inhaltBox{
    padding: 0px 10px;
  }
  .jobList .jobItem .inhaltBox h3{
    font-size: 18px;
  }
  .jobSubline br{
    display: none;
  }
  .jobInhaltList .sporttotalText{
    font-family: "Raleway Regular", Arial;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    line-height: 19px;
  }
  .jobInhaltList .text{
    margin-top: 15px;
  }
  .jobInhaltList .text .labelHeadline{
    font-family: "Raleway Black", Arial;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding-bottom: 2px;
    color: #fff;
    margin-top: 20px;
  }
  .jobInhaltList .text ul{
    margin-top: 2px;
  }
  .jobInhaltList .text ul li{
    list-style: none;
    font-family: "Raleway Medium", Arial;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
    position: relative;
    margin: 10px 0 10px 35px;
  }
  .jobInhaltList .text ul li::before{
    font-family: FontAwesome;
    content: "\f138";
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 15px;
    border-radius: 50%;
  }
  .jobInhaltList .signatur{
    font-family: "Raleway Regular", Arial;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    line-height: 19px;
    margin-top: 40px;
  }
  .jobInhaltList .signatur b{
    font-family: "Raleway ExtraBold", Arial;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 3px;
  }
  .jobInhaltList .signatur a{
    font-family: "Raleway ExtraBold", Arial;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
  }
  .newsList{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .newsList .newsItem{
    width: calc(100%/2.2);
    margin: 20px 5px;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    transition: 0.2s;
    color: #fff;
  }
  .newsList .newsItem .imgBox{
    width: 100%;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .newsList .newsItem .imgBox img{
    width: 100%;
    height: auto;
  }
  .newsList .newsItem .inhaltBox{
    width: 100%;
    height: auto;
    margin-top: 5px;
    padding: 0px 5px 10px 5px;
  }
  .newsList .newsItem .inhaltBox .subtitle{
    font-family: "Raleway Light", Arial;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .newsList .newsItem .inhaltBox .datum{
    font-family: Arial;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 5px;
  }
  .newsList .newsItem .inhaltBox h3{
    font-family: "Raleway ExtraBold", Arial;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 8px;
  }
  .newsList .newsItem .inhaltBox p{
    font-family: "Raleway Regular", Arial;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    margin-top: 8px;
  }
  .newsList .newsItem .inhaltBox a{
    font-family: "Raleway ExtraBold", Arial;
    font-size: 10.5px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 2px;
  }
  .memberList .memberHeadline{
    font-size: 25px;
  }
  .memberList .memberRow{
    flex-direction: column;
  }
  .memberList .memberRow .memberItem{
    width: 100%;
    height: auto;
    margin: 25px 0;
  }
  .memberList .memberRow .memberItem .imgBox{
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .memberList .memberRow .memberItem .imgBox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .memberList .memberRow .memberItem .textBox{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin-top: 10px;
  }
  .memberList .memberRow .memberItem .textBox .name{
    font-family: "Raleway ExtraBold", Arial;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    width: 100%;
    text-align: center;
  }
  .memberList .memberRow .memberItem .textBox .position{
    font-family: "Raleway Light", Arial;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #fff;
    width: 100%;
    text-align: center;
  }
  .memberList .memberRow .memberItem .textBox .zitat{
    font-family: "Raleway Regular", Arial;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    width: 100%;
    text-align: center;
    margin-top: 15px;
    position: relative;
    z-index: 30;
  }
  .memberList .memberRow .memberItem .textBox .zitat::after{
    content: '„';
    font-family: Arial;
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    color: rgba(218, 30, 57, 0.6);
    z-index: -1;
  }
  .memberList .memberRow .memberItem .textBox a{
    font-family: "Raleway Light", Arial;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #fff;
    margin-top: 15px;
    text-decoration: none;
    width: 100%;
    text-align: center;
  }
  .unitList .unitRow{
    padding-top: 0px;
  }
  .unitList .unitRow.paddingUnitRow{
    padding-top: 100px;
  }
  .unitList .unitRow .textBox table.table1{
    overflow-x: scroll;
  }
  .standortList .standortItem{
  width: 100%;
  height: auto;
  margin: 30px 10px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
  .factsheetImages{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
  }
  .factsheetImages img{
    width: 45%;
    height: auto;
    margin: 0px;
  }
  .factsheetImages img.strukturImg{
    width: 100%;
  }
  .unitList .unitRow .textBox .table2 .innerBox{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .unitList .unitRow .textBox .table2 .innerBox .col1,
  .unitList .unitRow .textBox .table2 .innerBox .col2{
    width: 45%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin: 0;
  }
  .aktienBox{
    width: 100%;
    overflow-x: scroll;
  }
  section#newsletter h3{
    font-size: 22px;
  }
  section#newsletter form{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  section#newsletter form button{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 22px;
  }
  section#headWallpaper img{
    width: 100%;
  }
  section#headWallpaper .blackscreen{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
  }
  table.table5 td{
    padding: 0px 30px;
  }
  footer{
    width: 100%;
    height: auto;
  }
  footer .rowList{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto auto;
    gap: 35px;
    grid-template-areas:
    "colLogo"
    "colSporttotal"
    "colImprint"
    "colCopyright";
    overflow: hidden;
    padding: 30px 10px;
  }
  footer .rowList .col{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  footer .rowList .col .logo img{
    width: 20%;
  }
}
