/*--------------------------------------------------
	GENERAL
---------------------------------------------------*/

:root {
  --white: #FFFFFF;
  --black: #000000;
  --blue: #035ea8;
  --darkblue: #042845;
  --darkmode: #001321;
  --green: #03b5b5;
  --grey-100: #f5f5fa;
  --grey-200: #ebebf0;
  --grey-300: #cdcdd2;
  --grey-400: #a7a7ad;

  --padding-top: 7%;
  --padding-bottom: 7%;
  --padding-left: 3%;
  --padding-right: 3%;

  --common-font: "sisag";
}

@font-face {
  font-family: 'sisag';
  src: url('../css/fonts/basiersquare-regular-webfont.woff') format('woff'),
       url('../css/fonts/basiersquare-regular-webfont.woff2') format('woff2'),
       url('../css/fonts/basiersquare-regular-webfont.eot') format('eot'),
       url('../css/fonts/basiersquare-regular-webfont.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'sisag';
  src: url('../css/fonts/basiersquare-regularitalic-webfont.woff') format('woff'),
       url('../css/fonts/basiersquare-regularitalic-webfont.woff2') format('woff2'),
       url('../css/fonts/basiersquare-regularitalic-webfont.eot') format('eot'),
       url('../css/fonts/basiersquare-regularitalic-webfont.ttf') format('ttf');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'sisag';
  src: url('../css/fonts/basiersquare-semibold-webfont.woff') format('woff'),
       url('../css/fonts/basiersquare-semibold-webfont.woff2') format('woff2'),
       url('../css/fonts/basiersquare-semibold-webfont.eot') format('eot'),
       url('../css/fonts/basiersquare-semibold-webfont.ttf') format('ttf');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'sisag';
  src: url('../css/fonts/basiersquare-semibolditalic-webfont.woff') format('woff'),
       url('../css/fonts/basiersquare-semibolditalic-webfont.woff2') format('woff2'),
       url('../css/fonts/basiersquare-semibolditalic-webfont.eot') format('eot'),
       url('../css/fonts/basiersquare-semibolditalic-webfont.ttf') format('ttf');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'sisag';
  src: url('../css/fonts/basiersquare-medium-webfont.woff') format('woff'),
       url('../css/fonts/basiersquare-medium-webfont.woff2') format('woff2'),
       url('../css/fonts/basiersquare-medium-webfont.eot') format('eot'),
       url('../css/fonts/basiersquare-medium-webfont.ttf') format('ttf');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'sisag';
  src: url('../css/fonts/basiersquare-mediumitalic-webfont.woff') format('woff'),
       url('../css/fonts/basiersquare-mediumitalic-webfont.woff2') format('woff2'),
       url('../css/fonts/basiersquare-mediumitalic-webfont.eot') format('eot'),
       url('../css/fonts/basiersquare-mediumitalic-webfont.ttf') format('ttf');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'sisag';
  src: url('../css/fonts/basiersquare-bold-webfont.woff') format('woff'),
       url('../css/fonts/basiersquare-bold-webfont.woff2') format('woff2'),
       url('../css/fonts/basiersquare-bold-webfont.eot') format('eot'),
       url('../css/fonts/basiersquare-bold-webfont.ttf') format('ttf');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'sisag';
  src: url('../css/fonts/basiersquare-bolditalic-webfont.woff') format('woff'),
       url('../css/fonts/basiersquare-bolditalic-webfont.woff2') format('woff2'),
       url('../css/fonts/basiersquare-bolditalic-webfont.eot') format('eot'),
       url('../css/fonts/basiersquare-bolditalic-webfont.ttf') format('ttf');
  font-weight: 800;
  font-style: italic;
}

  



* {
  position: relative;
  box-sizing: border-box;
}




body {
  overflow-x: hidden;
  margin: 0;
  font-size: min(max(0.9rem, 1.1vw), 1.1rem);
	line-height: 1.5;
	font-family: var(--common-font);
	font-weight: normal;
	-moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  color: var(--darkblue);
  -webkit-font-smoothing: antialiased;
  background: var(--white);
}

.wrapper {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: wrap;
}

.header {
  position: absolute;
  display: block;
  float: left;
  top: 0px;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 10;
}

#navigationWrap .header {
  height: 120px;
  z-index: 1008;
}

#navigationWrap header:after, #navigationWrap .header_fadein_navigation:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--grey-200);
  z-index: 1;
}

.header_fadein {
  position: fixed;
  right: 0px;
  top: 0;
  left: 0px;
  height: 80px;
  transform: translateY(-80px);
  z-index: 13;
  background: var(--white);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: -moz-transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-box-shadow: 0px 5px 14px 0px rgb(0 0 0 / 5%);
  -moz-box-shadow: 0px 5px 14px 0px rgba(0,0,0,0.05);
  box-shadow: 0px 5px 14px 0px rgb(0 0 0 / 5%);
}

.header_fadein_navigation {
  position: absolute;
  width: 100%;
  height: 80px;
  z-index: 1005;
  top: 0;
  right: 0;
  transition: all 1s ease 0s;
  display: none;
  z-index: 1008;
}

.header_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  float: left;
  width: 86%;
  margin-left: 7%;
  margin-right: 7%;
}

main {
  position: relative;
  display: inline;
  width: 100%;
  height: 100%;
  float: left;
  background: var(--white);
}

footer {
  position: relative;
  display: inline;
  float: left;
  width: 100%;
  background-color: var(--white);
  color: var(--darkblue);
}

#scrollcontainer {
  position: relative;
  display: inline;
  width: 100%;
  height: 100%;
  float: left;
  background: var(--white);
}

.copyright {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  z-index: 3;
}

.copyright a, .copyright p {
  font-size: 0.8rem;
}

img, iframe, embed {
  width: 100%;
  max-width: 100%;
}

.pagination {
  position: relative;
  display: block;
  float: left;
  width: 100%;
}

.pagination a {
  display: inline-block;
  padding: 15px 25px;
  margin: 2px 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--semi-font);
  font-size: 0.8rem;
  border: 1px solid var(--grey-300);
}

.pagination span.current {
  padding: 17px 26px;
  background: var(--darkblue);
  color: var(--white);
  font-family: var(--semi-font);
  font-size: 0.8rem;
}

.fancybox__nav {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}



/*--------------------------------------------------
	HEADER UND NAVIGATION
---------------------------------------------------*/

.heads {
  width: calc(100% - 6em);
  height: clamp(10em, 60vh, 40em);
  margin-bottom: clamp(2em, 6vw, 6em);
  float: left;
  background-color: var(--darkmode);
}

.heads h2 {
  color: var(--white);
}

/* Falls Schrift weiss sein soll DISPLAY BLOCK */
.heads-title-area {
  position: absolute;
  z-index: 3;
  top: 70%;
  transform: translateY(-50%);
  left: -13em;
  width: 16em;
  white-space: nowrap;
  display: none;
}


.heads-image-area {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  /*overflow: hidden;*/
  background: var(--darkblue);
}

.heads-image-area h2 {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  left: -1.144em;
  margin: 0;
  z-index: 3;
  color: var(--white);
  white-space: nowrap;
}

a.logo {
  position: relative;
  display: inline-block;
  top: 2em;
  left: 3em;
  padding: 0;
  width: clamp(8em, 10vw, 10em);
  transition: none;
}

.header_fadein a.logo {
  display: flex;
  align-items: center;
  left: 3em;
  top: 50%;
  width: clamp(6em, 8vw, 8em);
  transform: translateY(-50%);
  margin-top: 6px;
}

#navigationWrap a.logo {
  top: 50%;
  left: 60px;
  width: clamp(5em, 8vw, 8em);
  transform: translateY(-130px);
  margin-top: 0.5em;
}

#navigationWrap a.logo_mobile {
  display: none;
  top: 50%;
  left: 30px;
  width: clamp(2em, 3vw, 3em);
  transform: translateY(-130px);
}

a.logo img {
  width: 100%;
}

.nav {
  justify-content: space-between;
  display: flex;
}

.nav__link {
  margin-left: 2em;
  font-size: min(max(1.8rem, 2vw), 2rem);
  text-decoration: none;
  font-weight: 500;
  font-family: var(--title-font);
  color: var(--white);
  transition: border-color .12s ease;
  float: none;
  display: block;
  text-align: left;
  transition: all ease 0.3s;
}

nav.nav .nav__link {
  font-size: min(max(3rem, 4vw), 4rem);
}

.nav__link.nav__link--active {
  border-bottom-color: var(--gold);
}

#navigationWrap {
  display: block;
  width: 0%;
  min-height: 100%;
  height: 100%;
  opacity: 1;
  position: fixed;
  top: 0;
  right: calc(6em - 1px);
  bottom: 0;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1005;
  will-change: transform;
  background-color: var(--white);
}

#navigationWrap a {
  text-decoration: none;
}

#navigationWrap_bg {
  position: fixed;
  top: 0;
  right: 6em;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1004;
  background-color: #000000;
  display: block;
  opacity: 0.01;
  visibility: hidden;
  transition: all ease .3s;
  will-change: transform;
}

.menu-container {
  position: relative;
  top: 120px;
  left: 0;
  height: calc(100% - 120px);
  text-align: center;
  display: block;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  z-index: 1007;
}

.menu-container nav {
  position: relative;
  display: flex;
  float: left;
  height: calc(100% - 6em);
  align-items: flex-start;
  left: 0;
  padding-top: 6em;
}

.menu-container nav:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: var(--grey-200);
}

.menu-container::-webkit-scrollbar {
  margin-top: 120px;
  height: calc(100% - 120px);
  width: 5px;
}

.menu-container::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  border-radius: 100px;
}

.menu-container::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-image: linear-gradient(to bottom,  rgba(0,180,219,1) 0%,rgba(3,94,168,1) 100%); 
  box-shadow: inset 2px 2px 5px 0 rgba(#fff, 0.5);
}

nav ul {
  list-style-type: none;
  text-align: left;
  width: 27em;
}

nav ul > li.mainnav {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  margin: 0.5em 0;
  padding: 0 0 0 60px;
  font-size: 1.2rem;
  white-space: nowrap;
}

nav ul > li.mainnav a {
  opacity: 0;
  transform: translateY(40px);
}

nav ul > li.mainnav a.active {
  font-weight: 700;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul > li.subnav {
  position: static;
  float: left;
  font-size: min(max(1.5rem, 2vw), 2rem);
  width: 100%;
  margin: 0.3em 0;
  padding: 0 75px 0 60px;
  cursor: pointer;
  overflow: hidden;
}

nav ul > li.subnav.active span {
  font-weight: 700;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul > li.subnav span {
  position: relative;
  width: 100%;
  display: block;
  float: left;
  white-space: pre-wrap;
  opacity: 0;
  transform: translateY(80px);
}

nav ul > li.subnav span:hover {
  color: var(--blue);
}

nav ul > li.subnav span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  background-image: url(../images/arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: clamp(0.7em, 1vw, 1.5em);
  height: clamp(0.5em, 0.8vw, 1.3em);
  z-index: 3;
  transform: translate(0, -50%);
  opacity: 0.3;
}

nav ul > li.subnav.open span:after, nav ul > li.subnav.active span:after {
  opacity: 1;
}

li.subnav ul li {
  font-size: 1rem;
}

li.subnav.open, .li.subnav.active {
  font-weight: 700;
}

nav ul li ul {
  position: absolute;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0.5em;
  width: calc(75vw - 17em);
  max-width: 55em;
  left: 17em;
  top: 0;
  padding-bottom: 2em;
}

nav ul li ul li {
  width: 100%;
  height: clamp(7em, 12vw, 20em);
  display: block;
  float: left;
}

nav ul li ul li a {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  float: left;
  align-items: center;
  justify-content: center;
}

nav ul > li.subnav .product_title span {
  width: auto;
}

nav ul > li.subnav.open .product_title span:after {
  display: none;
}

nav .line {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 1px;
  background: var(--grey-200);
  margin: 1em 0;
}

.sub_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.sub_link {
  position: absolute;
  z-index: 3;
  left: 2em;
  bottom: 3em;
  color: var(--white);
  font-size: 1.1rem;
}

.sub_link:after {
  content: "";
  position: absolute;
  bottom: clamp(-1.7em, -1.2vw, -0.7em);
  left: 0;
  background-image: url(../images/arrow_right_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: clamp(0.7em, 1vw, 1.5em);
  height: clamp(0.5em, 0.8vw, 1.3em);
  z-index: 3;
}


nav .heading {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin: 0 0 1em 60px;
  font-weight: 800;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(0px);
}

.sticky {
  position: absolute;
  width: 6em;
  height: 120px;
  top: 0;
  right: 0;
  transition: all 1s ease 0s;
  display: block;
  z-index: 1009;
  cursor: pointer;
}

.sticky.mobile {
  display: none;
}

.header .sticky:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--grey-200);
}

.header_fadein .sticky, .header_fadein_navigation .sticky {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger {
  position: absolute;
  top: 50%;
  transform: translate(50%, -50%);
  right: 50%;
  transition: all ease .5s;
  cursor: pointer;
}

.hamburger .line1 {
  width: 38px;
  height: 4px;
  background-color: var(--darkblue);
  display: block;
  margin: 6px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.header_fadein .hamburger .line1 {
  background-color: var(--darkblue);
}

.hamburger .line2 {
  width: 38px;
  height: 4px;
  background-color: var(--darkblue);
  display: block;
  margin: 6px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.hamburger:hover, .hamburger-home:hover {
cursor: pointer;
}

.hamburger.is-active .line1:nth-child(1) {
  background-color: var(--darkblue);
  -webkit-transform: translateY(5px) rotate(45deg);
  -ms-transform: translateY(5px) rotate(45deg);
  -o-transform: translateY(5px) rotate(45deg);
  transform: translateY(5px) rotate(45deg);
  width: 2.5em;
  height: 4px;
  -webkit-animation: none;
  animation: none;
}

.hamburger.is-active .line1:nth-child(2) {
  background-color: var(--darkblue);
  -webkit-transform: translateY(-5px) rotate(-45deg);
  -ms-transform: translateY(-5px) rotate(-45deg);
  -o-transform: translateY(-5px) rotate(-45deg);
  transform: translateY(-5px) rotate(-45deg);
  width: 2.5em;
  height: 4px;
  -webkit-animation: none;
  animation: none;
}

.hamburger.is-active .line2:nth-child(2), #hamburger-fadein.is-active .line2:nth-child(2) {
  opacity: 0;
}

.menu-text {
  color: var(--darkblue);
}

.hamburger.is-active .menu-text {
  color: var(--white);
}





/*--------------------------------------------------
	CONTROLPANEL
---------------------------------------------------*/


.controlpanel {
  position: absolute;
  top: 120px;
  right: 0;
  width: 6em;
  z-index: 11;
  border-bottom: solid 1px var(--grey-200);
}

.content-scroll .header .controlpanel_nav {
  display: none;
}

.controlpanel_nav {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  border-bottom: solid 0px var(--grey-200);
  transform: translate(0, -120px);
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  align-items: center;
  border-right: solid 1px var(--grey-200);
  border-left: solid 0px var(--grey-200);
}


img.cp_icon {
  width: 100%;
  height: 100%;
  max-width: 18px;
  max-height: 18px;
}

.cp_console p, .cp_console_nav p, .cp_console a, .cp_console_nav a {
  text-transform: uppercase;
  font-size: 0.65rem;
  margin: 8px 0 0;
  font-weight: 700;
  color: var(--grey-400);
}

.language_switcher:hover, .cp_console:hover, #navigationWrap .language_switcher:hover, #navigationWrap .cp_console_nav:hover {
  background-color: var(--grey-100);
}

.cp_group_nav {
  height: 100%;
  display: grid;
  align-items: center;
}

.cp_console, .cp_console_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  white-space: nowrap;
  background: var(--white);
  padding: 14px 0 14px 0;
  transition: all ease 0.3s;
  cursor: pointer;
}

.controlpanel_nav .cp_console_nav {
  height: 100%;
  padding: 0 0.5em;
}

.controlpanel_nav .cp_console_nav.service_console {
  border-right: solid 1px var(--grey-200);
  padding: 0 1em 0 0.5em;
}

/* Frame */
.controlpanel .cp_group .cp_frame {
  position: absolute;
  top: 50%;
  right: 6em;
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 1em 1em;
  transform: translateY(-50%) translateX(150%);
  white-space: nowrap;
  width: 280px;
  height: 100%;
  opacity: 1;
  visibility: hidden;
  z-index: -1;
}

.controlpanel_nav .cp_group_nav .cp_frame_nav {
  position: absolute;
  top: 120px;
  right: 0;
  padding: 1em 1em;
  margin-top: -1px;
  display: flex;
  align-items: center;
  background: var(--white);
  transform: translateY(-200px) translateX(0%);
  border: solid 1px var(--grey-200);
  white-space: nowrap;
  width: auto;
  height: auto;
  opacity: 1;
  visibility: hidden;
  z-index: -1;
}

.header_fadein_navigation .controlpanel_nav .cp_group_nav .cp_frame_nav {
  top: 80px;
}

.controlpanel_nav .cp_group_nav .cp_frame_nav.contact_frame {
  display: block;
  height: 220px;
  right: auto;
  left: 0;
}

.controlpanel_nav .cp_group_nav .cp_frame_nav.language_frame {
  width: 200px;
  height: 70px;
  padding: 0;
}

.controlpanel_nav .cp_group_nav .cp_frame_nav.search_frame {
  right: auto;
  left: -1px;
}


.controlpanel .language_switcher {
  padding: 2em 0 1em;
  border-bottom: solid 1px var(--grey-200);
}

.controlpanel .cp_group .cp_frame.language_frame {
  padding: 0;
}

.controlpanel .cp_group .cp_frame.contact_frame {
  top: auto;
  bottom: -110px;
  display: block;
  height: 220px;
}

.controlpanel .cp_group {
  overflow: hidden;
}

.controlpanel .cp_group.is-open {
  overflow: visible;
}

/* Frame visible */
.controlpanel .cp_group .cp_frame, .controlpanel_nav .cp_group_nav .cp_frame_nav {
  transition: all 0.3s cubic-bezier(.80, 0, .15, 1);
  -webkit-transition: all 0.3s cubic-bezier(.80, 0, .15, 1);
  -moz-transition: all 0.3s cubic-bezier(.80, 0, .15, 1);
}
.controlpanel .cp_group.is-open .cp_frame {
  transform: translate(0%,-50%);
  visibility: visible;
}
.controlpanel_nav .cp_group_nav.is-open .cp_frame_nav {
  transform: translate(0%,0%);
  visibility: visible;
}
/* End Frame visible */

.contact_frame p, .contact_frame a, .service_frame p, .service_frame a {
  font-size: 0.8rem;
  color: var(--darkblue);
}

input[type="search"] {
  width: 200px;
  padding: 0.5em 1em;
  border: solid 1px var(--grey-300);
}

.search_frame button {
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  border-color: transparent;
  height: 30px;
  border-width: 0;
  padding: 0 10px;
  margin: 0;
}


.cp_console.search_console {
  padding: 25px 0 14px 0;
}

.service_console p.mobile {
  display: none;
}

.language_frame a, .language_frame .content a {
  width: 33.333%;
  margin: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: solid 1px var(--grey-200);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--darkblue);
  transition: all ease 0.3s;
}

.language_frame a:hover, .language_frame .content a:hover {
  background: var(--grey-200);
}

.language_frame a:last-child, .language_frame .language_frame a:last-child {
  border-right: solid 0px var(--grey-200);
}

.service_frame p {
  font-size: min(max(0.9rem, 1.1vw), 1.1rem);
  margin: 0;
  line-height: 1;
  color: var(--darkblue);
  text-align: center;
}






/*------------------------------------------------------------------------------------------------------------------------------------------------------
	COMPONENTS
-------------------------------------------------------------------------------------------------------------------------------------------------------*/




/*--------------------------------------------------
	SWIPER
---------------------------------------------------*/

/**
 * Swiper 5.3.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 8, 2020
 */

 @font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  width: 100%;
  height: 100%;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}
.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}
.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}
.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}





/*--------------------------------------------------
	PARALLAX
---------------------------------------------------*/


.parallax {
  position: relative;
  width: 100%;
  height: clamp(40em, 50vw, 50em);
}

.section-parallax {
  position: relative;
  overflow: visible;
  height: clamp(40em, 50vw, 50em);
  width: 100%;
}

.parallax-content {
  background-size: cover;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 120%;
}

#parallax p {
  position: absolute;
  color: #ffffff;
  font-size: 3vw;
  line-height: 1.2;
  top: 50%;
  transform: translate(0, -50%);
}

.parallax_bg {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  filter: saturate(0.5);
}

.overlay_multiply {
  position: absolute;
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  background-color: var(--brightblue);
  z-index: 3;
  mix-blend-mode: multiply;
}

.overlay_light {
  position: absolute;
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  background-color: var(--brightblue);
  z-index: 2;
  mix-blend-mode: hard-light;
}

.parallax_slogan_container {
  position: absolute;
  width: 90%;
  padding-right: clamp(5rem, 15vw, 15rem);
  padding-left: clamp(15rem, 25vw, 25rem);
  z-index: 8;
  max-width: 1680px;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
}

.parallax_slogan {
  position: relative;
}

.parallax_slogan:before {
  content: '«';
  position: absolute;
  left: -0.9em;
  top: -0.4em;
  font-size: min(max(5rem, 15vw), 15rem);
  color: var(--white);
  z-index: 3;
  line-height: 1;
  font-weight: 600;
}

.parallax_slogan p {
  position: relative;
  z-index: 4;
  color: var(--white);
  font-weight: 600;
  font-size: min(max(1.1rem, 2vw), 2rem);
  -moz-hyphens: none;
  -o-hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.parallax_person {
  position: relative;
  display: block;
  float: left;
  color: var(--white);
  z-index: 3;
  font-weight: 800;
  margin-top: 1em;
  font-size: min(max(0.8rem, 1vw), 1rem);
}

.overlay_darkblue {
  position: absolute;
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  background-color: var(--darkblue);
  z-index: 2;
  opacity: 0.5;

  transition: all 0.3s cubic-bezier(.80, 0, .15, 1);
  -webkit-transition: all 0.3s cubic-bezier(.80, 0, .15, 1);
  -moz-transition: all 0.3s cubic-bezier(.80, 0, .15, 1);
}

nav ul li ul li a.active .overlay_darkblue {
  opacity: 0.8;
  background: #00a2a5;
}




/*--------------------------------------------------
	AKKORDEON
---------------------------------------------------*/

.accordion {
}
.accordion__item {
}
.accordion__item.is-open {
  padding-bottom: 30px;
}
.accordion__title {
  position: relative;
  padding: 10px 60px 10px 0px;
  font-size: min(max(1rem, 2vw), 1.25rem);
  /*color: var(--brightblue);*/
  cursor: pointer;
  justify-content: space-between;
  border-bottom: solid 1px var(--grey-200);
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.accordion__title:after {
  position: absolute;
  content: " ";
  right: 15px;
  background-image: url(../images/accordion-plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translate(0, -50%);
  /*-webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;*/
  width: 15px;
  height: 15px;
}
.is-open .accordion__title:after {
  /*transform: translate(0, -50%) rotate(180deg);*/
  background-image: url(../images/accordion-minus.svg);
  width: 15px;
  height: 2px;
}
.accordion__body {
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.accordion__body .grid {
  column-gap: 2em;
  margin: 2em;
}
.accordion__content {
  padding: 15px;
}
.accordion__title p {
  white-space: nowrap;
}






/*--------------------------------------------------
	TAB AKKORDEON
---------------------------------------------------*/

.tab-accordion {
  width: 100%;
  float: left;
  display: none;
}

.tab-accordion__item {
  width: 100%;
  float: left;
}

.tab-accordion__item:last-child:before {
  display: none;
}

.tab-accordion__item.is-open:last-child:before {
  display: block;
}

.tab-accordion__title {
  position: relative;
  background: var(--darkblue);
  color: var(--white);
  border-top: solid 1px var(--white);
  display: flex;
  padding: 10px 35px 10px 20px;
  cursor: pointer;
  margin: 0;
  font-size: 1rem;
  width: 100%;
  font-weight: 700;
  align-items: center;
  transition: all ease 0.3s;
}

.is-open .tab-accordion__title {
  color: var(--white);
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 60%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 60%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 60%);
}

.is-open .tab-accordion__title:after {
  content: "";
  position: absolute;
  left: 0.47em;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.8em 1.5em 0 1.5em;
  border-color: #016aaf transparent transparent transparent;
  top: 2.7em;
  z-index: 2;
}

.tab-accordion__title:before {
  position: absolute;
  content: " ";
  right: 15px;
  background-image: url(../images/accordion-plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 12px;
  height: 12px;
  filter: invert(80%) brightness(150%) contrast(150%);
}

.tab-accordion__item.is-open .tab-accordion__title:before {
  transform: translate(0, -50%) rotate(180deg);
  background-image: url(../images/accordion-minus.svg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 12px;
  height: 2px;
  right: 20px;
}

.tab-accordion__body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.tab-accordion__body b {
  text-transform: uppercase;
}
.tab-accordion__body .grid {
  column-gap: 2em;
  margin: 1em;
  margin-bottom: 2em;
}
.tab-accordion__item.is-open {
  background-color: transparent;
  border-bottom: solid 1px #0369af;
}
.tab-accordion__content, .tab-accordion__image {
  padding: 0;
}
.tab-accordion__title span {
  white-space: pre-wrap;
  font-size: 1rem;
  font-weight: 700;
  padding-left: 2.5em;
}

.tab-accordion__title .tab-dot {
  top: -5px;
  left: -49px;
  transform: none;
}

.tab-accordion__title img.icon {
  height: auto;
  filter: brightness(0) invert(1);
  width: auto;
  max-width: 1.5em;
  max-height: 1em;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}


.tab-accordion__content .swiper-button-prev, .tab-accordion__content .swiper-button-next {
  left: 1em;
  top: auto;
  bottom: 0;
}

.tab-accordion__content .swiper-button-prev:after, .tab-accordion__content .swiper-button-next:after {
  filter: brightness(0) invert(1);
  width: 20px;
  height: 15px;
}

.tab-accordion__content a.lightbox-button {
  display: none;
}




/*--------------------------------------------------
	TABS
---------------------------------------------------*/

/* EINSATZBEREICHE */

.tab-control {
  position: relative;
  width: 100%;
  display: grid;
  min-height: clamp(30rem, 40vw, 40rem);
  grid-template-columns: minmax(0, 6fr) 4fr;
}

ul.tabs {
  position: relative;
  margin: 0px;
  padding: 0px;
  list-style: none;
  z-index: 3;
  width: 100%;
  grid-row: 1;
  grid-column: 2;
}

ul.tabs li {
  background: var(--darkblue);
  color: var(--white);
  display: flex;
  padding: 0 6em;
  cursor: pointer;
  margin: 0;
  font-size: 1rem;
  width: 100%;
  border-bottom: solid 1px #064c84;
  font-weight: 700;
  align-items: center;
  transition: all ease 0.3s;
}

ul.tabs li:hover {
  background: var(--blue);
}

ul.tabs li.current{
  color: var(--white);
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 60%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 60%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 60%);
}

ul.tabs li.current:after {
  content: "";
  position: absolute;
  left: -1.2em;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2em 1.2em 2em 0;
  border-color: transparent #025da7 transparent transparent;
}

.tab-content {
  display: none;
}

.tab-content.current {
  display: block;
  border: none;
  width: 100%;
  grid-row: 1;
  grid-column: 1;
}

.tabs img.icon {
  height: auto;
  filter: brightness(0) invert(1);
  margin-right: 2em;
  width: auto;
  max-width: 2.5em;
  max-height: 2em;
}

.tab-content .swiper-button-prev:after, .tab-content .swiper-button-next:after {
  filter: brightness(0) invert(1);
  width: clamp(20px, 3.5vw, 35px);
  height: clamp(10px, 2.4vw, 20px);
}

.tab-content .swiper-button-next {
  margin-left: 3.2em;
}

.tab-content .swiper-button-prev, .tab-content .swiper-button-next {
  left: 2em;
  top: auto;
  bottom: 1em;
}










/*--------------------------------------------------
	SWIPER ZEITSTRAHL
---------------------------------------------------*/


.swiper-section.zeitstrahl {
  align-items: flex-start;
}

.swiper-zeitstrahl {
  position: relative;
  margin: 0px;
  padding: 0px;
  list-style: none;
  z-index: 3;
  display: flex;
  flex-direction: row;
  margin-bottom: clamp(2em, 5vw, 5em);
}

.swiper-zeitstrahl .tab-link {
  background: none;
  color: var(--blue);
  display: inline-block;
  padding: 40px 0 0;
  cursor: pointer;
  margin: 0;
  font-weight: 700;
  text-align: center;
  flex: 1 1 0px;
  text-transform: uppercase;
  font-size: min(max(0.7rem, 0.9vw), 0.9rem);
  opacity: 1;
}

.swiper-zeitstrahl .tab-link:before {
  content: '';
  position: absolute;
  width: 100%;
  background: var(--grey-400);
  height: 1px;
  top: 12px;
  left: 50%;
}

.swiper-zeitstrahl .tab-link:last-child:before {
  display: none;
}

.swiper-zeitstrahl .tab-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 28px;
  width: 28px;
  border: solid 1px var(--grey-400);
  border-radius: 50px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}

.swiper-zeitstrahl .current .tab-dot {
  background: var(--black);
  border-color: var(--black);
}

.swiper-zeitstrahl .tab-dot:before {
  content: '';
  position: absolute;
  background: var(--black);
  opacity: 0;
  width: 0;
  height: 0;
  z-index: -1;
  border-radius: 28px;
  box-shadow: 0px 0px 24px 1px rgba(224,199,224,0.2);
  transition: all .35s ease-in-out;
  transition-timing-function: .35s ease-in-out;
}

.swiper-zeitstrahl .tab-link:hover .tab-dot:before, .swiper-zeitstrahl .tab-link.swiper-pagination-bullet-active .tab-dot:before {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.swiper-zeitstrahl .tab-dot .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 2px;
}

.swiper-zeitstrahl .tab-dot .arrow:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--black);
  -webkit-transition: -webkit-transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
  transition: -webkit-transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
  transition: transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
  transition: transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005), -webkit-transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
}

.swiper-zeitstrahl .tab-dot .arrow:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--white);
  transform: translateX(-20px);
  -webkit-transition: -webkit-transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
  transition: -webkit-transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
  transition: transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
  transition: transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005), -webkit-transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
}

.swiper-zeitstrahl span.tab-name {
  position: relative;
  margin-top: 2rem;
  float: left;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 50%;
  font-size: min(max(0.7rem, 0.9vw), 0.9rem);
}

.swiper-zeitstrahl .tab-link:hover .tab-dot .arrow:before, .swiper-zeitstrahl .tab-link.swiper-pagination-bullet-active .tab-dot .arrow:before {
  transform: translateX(20px);
}

.swiper-zeitstrahl .tab-link:hover .tab-dot .arrow:after, .swiper-zeitstrahl .tab-link.swiper-pagination-bullet-active .tab-dot .arrow:after {
  transform: translateX(0%);
}





/*--------------------------------------------------
	SWIPER HORIZONTAL PARALLAX MATRIX SLIDER
---------------------------------------------------*/

.swiper-section.zeitstrahl {
  position: relative;
  display: flex;
  float: left;
  width: 100%;
  height: 100%;
  flex-direction: row;
  align-items: flex-start;
  overflow: hidden;
}

/* RTL */
.swiper-section.rtl {
  flex-direction: row-reverse;
}

/* LTR */
/* SWIPER ab nr 10 aufwärts für Tab Slide */
.swiper-horizontal-parallax-1, .swiper-horizontal-parallax-3, .swiper-horizontal-parallax-5 {
  height: 35vw;
  min-height: 15rem;
  max-height: 40rem;
  height: clamp(15rem, 20vw, 20rem);
  width: clamp(30rem, 40vw, 40rem);
  float: right;
  margin-left: clamp(2em, 5vw, 5em);
}

/* RTL */
.swiper-horizontal-parallax-2, .swiper-horizontal-parallax-4 {
  height: 35vw;
  min-height: 30rem;
  max-height: 40rem;
  height: clamp(30rem, 35vw, 40rem);
  width: calc(50% - clamp(2em, 5vw, 5em));
  float: left;
  margin-right: clamp(2em, 5vw, 5em);
}

/* LTR */
.swiper5 {
  width: calc(50% - clamp(2em, 5vw, 5em));
  float: left;
  margin-right: clamp(2em, 5vw, 5em);
}

.swiper6 {
  width: calc(50% - clamp(2em, 5vw, 5em));
  float: right;
  margin-left: clamp(2em, 5vw, 5em);
}

/* RTL */
/*
.swiper5, .swiper7 {
  width: calc(50% - clamp(2em, 5vw, 5em));
  float: right;
  margin-left: clamp(2em, 5vw, 5em);
}
*/

.swiper-horizontal-parallax-1 .swiper-scrollbar {
  display:none;
}

.swiper-horizontal-parallax-1 .img-content img {
  display:none;
}

.swiper-horizontal-parallax-1 .swiper-slide {
  overflow: hidden;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  transform: scale(1.07);
  -moz-transform: scale(1.07);
}

.swiper-horizontal-parallax-1 .swiper-slide-active {
  transform: scale(1);
  -moz-transform: scale(1);
  z-index: 2;
}

.swiper-horizontal-parallax-1 .swiper-slide .img-content {
  position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-position:center;
    background-size:cover;
}

.swiper6 .swiper-slide .img-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.swiper6 .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
}

.swiper5 .swiper-button-prev, .swiper5 .swiper-button-next {
  bottom: 0;
  top: auto;
}

.swiper5 .swiper-slide {
  padding-bottom: 2em;
  padding-right: 0.5em;
}

.swiper-button-prev-6, .swiper-button-next-6 {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: auto;
}


/* Animation */

.swiper5 h3, .swiper5 h4, .swiper5 strong {
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-transform: translateY(30%);
  transform: translateY(30%);
  opacity: 0;
  -webkit-transition: opacity .5s, -webkit-transform .5s;
  transition: opacity .5s, -webkit-transform .5s;
  transition: transform .5s, opacity .5s;
  transition: transform .5s, opacity .5s, -webkit-transform .5s;
  will-change: transform, opacity;
}

.swiper5 p, .swiper5 ul, .swiper5 a {
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-transform: translateY(10%);
  transform: translateY(10%);
  opacity: 0;
  -webkit-transition: opacity .5s, -webkit-transform .5s;
  transition: opacity .5s, -webkit-transform .5s;
  transition: transform .5s, opacity .5s;
  transition: transform .5s, opacity .5s, -webkit-transform .5s;
  will-change: transform, opacity;
}

.swiper5 .swiper-slide-active h3, .swiper5 .swiper-slide-active h4, .swiper5 .swiper-slide-active strong {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.swiper5 .swiper-slide-active p, .swiper5 .swiper-slide-active ul, .swiper5 .swiper-slide-active a {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.swiper-section.zeitstrahl .swiper-pagination-bullet {
  position: relative;
  width: 40px;
  height: 1px;
  display: inline-block;
  border-radius: 0;
  margin-right: 2px;
  background-color: var(--grey-400);
  opacity: 1;
}

.swiper-section.zeitstrahl  .swiper-pagination-bullet-active {
  transition: all ease 1s;
}

.swiper-section.zeitstrahl  .small-lines .swiper-pagination-bullet {
  width: 20px;
}

/* LTR */
.pagination-lines {
  position: absolute;
  right: calc(50% - 3vw);
  left: auto;
  bottom: 55px;
  transform: rotate(270deg) translate(100%, 0%);
  transform-origin: bottom right;
}

/* RTL */
.swiper-section.zeitstrahl.rtl .pagination-lines {
  right: calc(50% + 3vw);
}

/* LTR */
.pagination-numbers {
  position: absolute;
  right: calc(50% - 3vw);
  left: auto;
  transform: rotate(270deg) translate(100%, 0%);
  transform-origin: bottom right;
  width: auto;
  font-size: 0.8rem;
  font-weight: bold;
}

/* RTL */
.swiper-section.zeitstrahl.rtl .pagination-numbers {
  right: calc(50% + 2.5vw);
}

.pagination-numbers {
  margin-bottom: 0;
}


/* SWIPER PAGINATIONS */

.swiper-pagination-bullet i {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 1px;
  background-color: var(--mid-gray);
}
.swiper-pagination-bullet b {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 0%;
  height: 1px;
  background-color: var(--black);
}

.swiper-pagination-bullet-active {
  background-color: transparent;
}
.swiper-pagination-bullet-active b {
  animation-name: countingBar;
  animation-duration: 0.7s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}

@keyframes countingBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}




/*--------------------------------------------------
	TAB AKKORDEON (RESPONSIVE)
---------------------------------------------------*/

.zeitstrahl-accordion {
  width: 100%;
  float: left;
  display: none;
}

.zeitstrahl-accordion__item {
  position: relative;
  display: block;
  width: 100%;
  float: left;
  padding-left: 30px;
}

.zeitstrahl-accordion__item:before {
  content: '';
  position: absolute;
  width: 1px;
  background: var(--grey-400);
  height: 100%;
  top: 30px;
  left: 10px;
}

.zeitstrahl-accordion__item:last-child:before {
  display: none;
}

.zeitstrahl-accordion__item.is-open:last-child:before {
  display: block;
}

.zeitstrahl-accordion__title {
  position: relative;
  padding: 15px 15px;
  cursor: pointer;
  display: block;
  border-top: solid 1px var(--grey-300);
}

.is-open .zeitstrahl-accordion__title:after {
  transform: translate(0, -50%) rotate(180deg);
  background-image: url(../images/accordion-minus.svg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.zeitstrahl-accordion__body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.zeitstrahl-accordion__body b {
  text-transform: uppercase;
}
.zeitstrahl-accordion__body .grid {
  column-gap: 2em;
  margin: 1em;
  margin-bottom: 2em;
}
.zeitstrahl-accordion__item.is-open {
  background-color: transparent;
  padding-bottom: 30px;
}
.zeitstrahl-accordion__content, .zeitstrahl-accordion__image {
  padding: 0 15px;
}

.zeitstrahl-accordion__image {
  float: left;
  margin: 20px 0;
}

.zeitstrahl-accordion__image img {
  width: 100%;
  height: -webkit-fill-available;
  min-height: 10em;
  object-fit: cover;
}

  .zeitstrahl-accordion__title p {
  white-space: nowrap;
}

.zeitstrahl-accordion__title h3 span {
  color: burlywood;
  display: block;
  float: left;
  width: 100%;
}

.zeitstrahl-accordion__title .tab-dot {
  position: absolute;
  top: 0;
  left: -35px;
  transform: translate(-50%, 0%);
  height: 24px;
  width: 24px;
  border: solid 1px var(--grey-400);
  border-radius: 50px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}

.zeitstrahl-accordion__item.is-open .tab-dot {
  background: var(--darkblue);
}

.zeitstrahl-accordion__item.is-open .tab-dot .arrow:before {
  background: var(--white);
}

.zeitstrahl-accordion .tab-dot:before {
  content: '';
  position: absolute;
  background: var(--darkblue);
  opacity: 0;
  width: 0;
  height: 0;
  z-index: -1;
  border-radius: 28px;
  box-shadow: 0px 0px 24px 1px rgba(224,199,224,0.2);
  transition: all .35s ease-in-out;
  transition-timing-function: .35s ease-in-out;
}

.zeitstrahl-accordion .tab-dot .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 2px;
}

.zeitstrahl-accordion .tab-dot .arrow:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--black);
  -webkit-transition: -webkit-transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
  transition: -webkit-transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
  transition: transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
  transition: transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005), -webkit-transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
}

.zeitstrahl-accordion .tab-dot .arrow:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--white);
  transform: translateX(-20px);
  -webkit-transition: -webkit-transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
  transition: -webkit-transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
  transition: transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
  transition: transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005), -webkit-transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
}

.zeitstrahl-accordion__item.tabs .tab-link:last-child:before {
  display: none;
}

/* RESPONSIVE */

@media screen and (max-width : 900px) {
.swiper-zeitstrahl, .swiper-section.zeitstrahl {
  display: none;
}
.zeitstrahl-accordion {
  display: block;
}
}



.buorg {
  position: absolute;
  position: fixed;
  z-index: 111111;
  width: 100%;
  top: 0px;
  left: 0px;
  border-bottom: 0px solid #A29330 !important;
  text-align: center;
  color: var(--white) !important;
  background-color: var(--black) !important;
  font: 18px Calibri,Helvetica,sans-serif;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  animation: buorgfly 1s ease-out 0s;
}











/*------------------------------------------------------------------------------------------------------------------------------------------------------
	END COMPONENTS
-------------------------------------------------------------------------------------------------------------------------------------------------------*/










/*--------------------------------------------------
	SLIDER SISAG
---------------------------------------------------*/


.slider {
  width: calc(100% - 6em);
  height: calc(100vh - 2em);
  height: calc(calc(var(--vh, 1vh) * 100) - 2em);
  float: right;
  margin-right: 6em;
  overflow: hidden;
  background-color: var(--darkmode);
}

.slider_container {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 100%;
}

.slide {
  width: 22%;
  height: 100%;
  position: absolute;
  top: 0;
  display: block;
  float: left;
  cursor: pointer;
  z-index: 6;
  transition: all ease-in 0.3s;
  -webkit-transition-delay: 0.05s;
  -moz-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

a.slide_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

a.slide_link_mobile {
  display: none;
}

.slide.active {
  width: 34%;
}

.slide.inactive {
  width: 22%;
}

.slide.aEl:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: var(--green);
  opacity: 0.4;
  mix-blend-mode: multiply;
}

.slide_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.5s cubic-bezier(.17,.67,.91,.57);
}

.slide_bg.active {
  opacity: 1;
}

.slide_bg_img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0);
  transform: scale(1);
  transition: all 20s cubic-bezier(.17,.67,.91,.57);
}

.slide_bg.active .slide_bg_img {
  transform: scale(1.15);
}

.slide_text {
  position: absolute;
  bottom: 10%;
  left: 50%;
  float: left;
  transform: translate(-50%, 0);
  z-index: 4;
  text-align: center;
  min-height: 110px;
}

h3.slide_title_mobile {
  display: none;
}

.slide_description {
  color: var(--white);
  font-size: 0.9rem;
  width: clamp(180px, 14vw, 300px);
  opacity: 0;
  margin: 0 auto;
  transform: translateY(40px);
  transition: transform 1.5s ease 0s, opacity 1.2s ease 0s;
}

.slide.active .slide_description {
  opacity: 1;
  transform: translateY(0);
}

.slide h3 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.2em;
  transition: all 0.2s ease;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--white);
  background: none;
  margin-bottom: 1em;
}

.slide.active .slide_text h3 {
  color: var(--green);
  -webkit-text-fill-color: var(--green);
  font-size: min(max(0.9rem, 1.2vw), 1.2rem);
}

.slide_text_static {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: clamp(4em, 15vw, 15em);
  transform: translate(0, -50%);
  width: 60%;
  pointer-events: none;
}

.slide_text_static span {
  color: var(--green);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.2;
  white-space: nowrap;
}

.slide_text_static span {
  width: 60%;
  white-space: pre-wrap;
}

.slide_text_static .claim {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 800;
  font-size: min(max(1.8rem, 3vw), 3rem);
  line-height: 1.2;
  margin-top: 0.2em;
  hyphens: none;
  -ms-hyphens: none;
  -moz-hyphens: none;
  -webkit-hyphens: none;
}

.slide_overlay_green_softlight {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-color: #056262;
  opacity: 0;
  mix-blend-mode: soft-light;
  z-index: 3;
  transition: width ease-in 0.3s;
  -webkit-transition-delay: 0.05s;
  -moz-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

.slide_overlay_green_hue {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-color: #03b5b5;
  opacity: 0.3;
  mix-blend-mode: hue;
  z-index: 3;
  transition: width ease-in 0.3s;
  -webkit-transition-delay: 0.05s;
  -moz-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

.slide_overlay_multiply {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--blue);
  opacity: 0.8;
  mix-blend-mode: soft-light;
  z-index: 2;
}

.slide_overlay_green_softlight.slide_1 {
  right: 0;
  width: 78%;
}

.slide_overlay_green_softlight.slide_2_1 {
  left: 0%;
  width: 34%;
}

.slide_overlay_green_softlight.slide_2_2 {
  left: 56%;
  width: 44%;
}

.slide_overlay_green_softlight.slide_2_3 {
  left: 0%;
  width: 22%;
}

.slide_overlay_green_softlight.slide_2_4 {
  right: 0%;
  width: 56%;
}

.slide_overlay_green_softlight.slide_3_1 {
  left: 0%;
  width: 56%;
}

.slide_overlay_green_softlight.slide_3_2 {
  right: 0%;
  width: 22%;
}

.slide_overlay_green_softlight.slide_3_3 {
  right: 0%;
  width: 34%;
}

.slide_overlay_green_softlight.slide_3_4 {
  left: 0%;
  width: 44%;
}

.slide_overlay_green_softlight.slide_4 {
  left: 0;
  width: 78%;
}


.slide.active .slide_overlay_green_softlight {
  opacity: 0;
}

.slide_overlay_hue {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  mix-blend-mode: saturation;
  z-index: 1;
}

.slide_overlay_multiply {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--blue);
  opacity: 0.8;
  mix-blend-mode: multiply;
  z-index: 2;
}

.slide_overlay_multiply_green {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--green);
  opacity: 0.8;
  mix-blend-mode: multiply;
  z-index: 2;
}


.slide_overlay_gradient_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25%;
  z-index: 4;
  opacity: 0.8;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#042845+0,042845+100&1+0,0+100 */
  background: -moz-linear-gradient(top,  rgba(4,40,69,1) 0%, rgba(4,40,69,0) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(4,40,69,1) 0%,rgba(4,40,69,0) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(4,40,69,1) 0%,rgba(4,40,69,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#042845', endColorstr='#00042845',GradientType=0 ); /* IE6-9 */
}

.slide_overlay_gradient_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  z-index: 4;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#042845+0,042845+100&0+0,1+100 */
  background: -moz-linear-gradient(top,  rgba(4,55,69,0) 0%, rgba(4,55,69,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(4,55,69,0) 0%,rgba(4,55,69,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(4,55,69,0) 0%,rgba(4,55,69,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00042845', endColorstr='#042845',GradientType=0 ); /* IE6-9 */
}

.slide_overlay_gradient_right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: 100%;
  z-index: 4;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#042845+0,042845+100&0+0,1+100 */
  background: -moz-linear-gradient(left,  rgba(4,40,69,0) 0%, rgba(4,40,69,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  rgba(4,40,69,0) 0%,rgba(4,40,69,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  rgba(4,40,69,0) 0%,rgba(4,40,69,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00042845', endColorstr='#042845',GradientType=1 ); /* IE6-9 */
}



.swiper-button-prev:after,
.swiper-button-next:after {
  /* Bild Pfeil */
  content: '' !important;
    background-image: url(../images/arrow_right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    width: clamp(30px, 3.5vw, 45px);
    height: clamp(20px, 2.4vw, 30px);
    top: 0;
    left: 0;
    position: absolute;
}

.swiper-button-prev-2:after,
.swiper-button-next-2:after {
  /* Bild Pfeil */
  content: '' !important;
    background-image: url(../images/arrow_right_white.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    width: clamp(30px, 3.5vw, 45px);
    height: clamp(20px, 2.4vw, 30px);
    top: 0;
    left: 0;
    position: absolute;
}


.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.swiper-button-prev, .swiper-button-next {
  left: clamp(1em, 2vw, 2em);
}

.swiper-button-next {
  margin-left: clamp(2em, 4vw, 4em);
}

.swiper-button-next.swiper-button-next-2 {
  right: clamp(1em, 2vw, 2em);
  left: auto;
  margin-left: 0!important;
}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
  top: -2em;
  left: 5px;
  width: 100%;
}

.swiper-pagination {
  font-size: 1.4rem;
  font-family: var(--semi-font);
  line-height: 1;
  width: auto;
  height: auto;
}

.swiper-pagination .slices {
  float: right;
  margin-top: 0;
}

.swiper-pagination .totals {
  position: absolute;
  top: 2px;
  left: 32px;
  font-size: 0.8rem;
  color: var(--brightblue);
}

.slogan {
  color: var(--white);
  position: absolute;
  left: 6em;
  bottom: 9em;
  z-index: 3;
  font-family: var(--semi-font);
  font-size: min(max(1.4rem, 1.8vw), 1.8rem);
  width: clamp(17em, 17vw, 10em);
  hyphens: none;
}

img.mouse {
  position: absolute;
  bottom: 3em;
  left: 3em;
  width: 1em;
  z-index: 2;
}

.language {
  position: absolute;
  left: 20em;
  bottom: 4em;
  z-index: 2;
}

.language a {
  position: relative;
  font-family: var(--semi-font);
  font-size: 1rem;
  color: var(--darkblue);
  white-space: nowrap;
  margin: 0 0px 0 4px;
  padding: 0 8px 0 4px;
  float: left;
  line-height: 1;
  text-transform: uppercase;
}

.language a:nth-child(1):after, .language a:nth-child(2):after {
  position: absolute;
  content: "";
  right: -1px;
  top: 60%;
  width: 1px;
  height: 90%;
  background-color: var(--darkblue);
  transform: translateY(-50%);
}

.menu-container .language {
  left: 20em;
  bottom: auto;
  top: 2em;
}

.menuadresse {
  position: absolute;
  bottom: 4em;
  left: 4em;
  text-align: left;
}

.menuadresse, .menuadresse p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--white);
}

.menuadresse a.email {
  color: var(--white);
}





/*--------------------------------------------------
	GALERIE SLIDER
---------------------------------------------------*/

.galerie_slider {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 100%;
}

.slider-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}






/*--------------------------------------------------
	FOOTER
---------------------------------------------------*/


.footer .grid {
  z-index: 3;
}

footer p {
  color: var(--darkblue);
}

footer a {
  color: var(--blue);
  text-decoration: underline;
}

img.logo-footer {
  position: relative;
  display: inline-block;
  padding: 0;
  width: clamp(8em, 15vw, 15em);
  /*margin-left: 10%;*/
}

.footer_line {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 1px;
  background-color: var(--grey-200);
}

.social_icons img {
  width: auto;
  height: 2em;
  padding-right: 2em;
}

.footer_links {
  margin-top: -17px;
}

.footer_links a {
  text-decoration: none;
  color: var(--darkblue);
  font-size: min(max(1.2rem, 1.8vw), 1.8rem);
  display: block;
  float: none;
  margin: 17px 0;
}




/*--------------------------------------------------
	TYPOGRAFIE
---------------------------------------------------*/

p {
	margin: 8px 0;
  font-size: min(max(0.9rem, 1.1vw), 1.1rem);
	line-height: 1.5;
	-moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  -webkit-text-size-adjust: 100%; /* Für Text, damit er auf mobilen Geräten nicht grösser erscheint */
}

a {
  color: var(--darkblue);
  cursor: pointer;
  font-weight: normal;
  transition: all ease .3s;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--blue);
  font-weight: 700;
}

a[href^="tel"] {
color: inherit; /* Inherit text color of parent element. */
text-decoration: none; /* Remove underline. */
/* Additional css `propery: value;` pairs here */
}

ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0;
}

li {
  -webkit-text-size-adjust: 100%; /* Für Text, damit er auf mobilen Geräten nicht grösser erscheint */
}

strong {
  font-weight: 700;
}

h1 {
  color: var(--blue);
  font-size: min(max(1.5rem, 2.5vw), 3rem);
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.5;
  -moz-hyphens: none;
  -o-hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  margin-block-start: 0;
  margin-block-end: 0;
}

h2 {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 800;
  font-size: min(max(1.8rem, 3vw), 3rem);
  line-height: 1.2;
  margin-block-start: 0;
  margin-block-end: 0;
}

h3 {
  color: var(--blue);
  font-size: min(max(1.4rem, 2vw), 2rem);
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: normal;
  margin-block-start: 0;
  margin-block-end: 0;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


h4 {
  color: var(--darkblue);
  font-size: min(max(1rem, 2vw), 1.25rem);
  font-weight: 800;
  background: #035EA8;
  line-height: 1.2;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-block-start: 0;
  margin-block-end: 0;
}


h5 {
  color: var(--green);
  font-size: min(max(1.1rem, 1.5vw), 1.5rem);
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1.2;
  margin-block-start: 0;
  margin-block-end: 0;
}

a.button {
  position: relative;
  display: inline-block;
  font-family: var(--common-font);
  font-size: 1rem;
  font-weight: 700;
  padding: 1em 2em;
  border: solid 1px var(--grey-300);
  letter-spacing: 0;
  line-height: 1.5;
  transition: all ease 0.3s;
  text-decoration: none;
}

a.button:hover {
  color: var(--white);
  background-color: var(--green);
  border: solid 1px var(--green);
}

a.button.organigramm {
  padding: 1em 2em 1em 3em;
}

a.button.organigramm:before {
  content: '';
  position: absolute;
  width: 1rem;
  height: 2rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('/static/images/icon_organigramm.svg');
  left: 1.25rem;
  top: 50%;
  transform: translate(0, -50%);
  transition: 0.5s all ease;
}

a.button.organigramm:hover:before {
  filter: brightness(0) invert(1);
}

a.button_choosing {
  position: relative;
  padding: 10px 0;
  border-bottom: solid 1px var(--grey-300);
  width: 100%;
  display: block;
}

a.button_choosing:after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 15px;
}

.button_go {
  position: relative;
  display: inline-block;
  padding: 7px 40px 7px 0px;
  margin: 7px 0;
  border-bottom: solid 1px var(--grey-200);
}

.button_go:after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  background-image: url(../images/arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 15px;
}

.button.goback, nav h4 {
  display: none;
}



/*--------------------------------------------------
	ANIMATIONEN
---------------------------------------------------*/

/*
.transition-fade {
  transition: 0.4s;
  opacity: 1;
  height: 100%;
}

html.is-animating .transition-fade {
  opacity: 0;
}
*/

.swup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1009;
  background: var(--white);
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-130%) skew(-10deg);
  -ms-transform: translateX(-130%) skew(-10deg);
  transform: translateX(-130%) skew(-10deg);
}

.swuplogo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 223px;
    height: 256px;
    transform: translate(-50%, -50%);
    margin-left: -3%;
}

.swuplogo svg {
  position: absolute;
  display: block;
  z-index: 2;
}

.swuplogo svg.icon1 {
  z-index: 1;
}

.swuplogo svg.icon2 {
  z-index: 2;
  visibility:hidden;
}


.rvb, .rvt, .rvl, .rvr, .rvSlow, .rvlSlow, .rvrSlow, .rvbSlow, .rvtSlow, .imgreveal, .imgreveal_rtl, .splitText {
  will-change: transform;
  transform-origin: center;
  clear: both;
}

.rvb, .rvt, .rvl, .rvr, .rvSlow, .rvlSlow, .rvrSlow, .rvbSlow, .rvtSlow {
  opacity: 0;
}

.introtext .splitText {
  z-index: 2;
}

.imgreveal, .imgreveal_rtl {
  visibility: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}


figure.has-parallax {
    overflow: hidden;
    max-height: 45vw;
}



#smooth-wrapper {
  overflow: hidden;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#smooth-content {
  overflow: visible;
  width: 100%;
}





/*--------------------------------------------------
	SMOOTH SCROLL
---------------------------------------------------*/


body.smooth-scroll {
  overflow:hidden;
}

.smooth-scroll .content-scroll {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.scroll-content, main {
  height: 100vh;
}

.scrollbar-track {
  background: transparent!important;
}






/*--------------------------------------------------
	INDIVIDUAL STYLE
---------------------------------------------------*/



img.heroImage {
  position: absolute;
  z-index: 2;
  right: 10vw;
  bottom: 0;
  height: 90%;
}

img.heroImage-shadow {
  height: 90%;
  transition: all ease 0.5s;
  z-index: 1;
  filter: grayscale(100%) brightness(0%) blur(30px);
  -webkit-filter: grayscale(100%) brightness(0%) blur(30px);
  position: absolute;
  right: 9vw;
  opacity: 0.5;
  bottom: 0;
}

.heads-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(0.8);
}

.swiper-container.swiper1 {
  height: 100vh; /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
}

.swiper1 .swiper-slide {
  background-color: var(--white);
}

.breadcrumb {
  position: relative;
  display: block;
  width: 100%;
  font-size: 0.8rem;
  margin-bottom: 2em;
  z-index: 99;
}

.introtext {
  position: relative;
  padding-top: clamp(2em, 4vw, 6em);
  padding-bottom: clamp(2em, 4vw, 4em);
}

.introtext:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: -2em;
  width: clamp(12em, 22vw, 22em);
  height: 100%;
  background-image: url(../images/triangle_grey.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.introtext p {
  font-size: min(max(1.3rem, 2.2vw), 2.2rem);
  z-index: 2;
  -moz-hyphens: none;
  -o-hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

/*
#sw_home {
  position: relative;
  display: inline;
  float: left;
  width: 100%;
  padding-top: clamp(5em, 10vw, 10em);
  padding-left: 10%;
  padding-bottom: clamp(5em, 15vw, 15em);
  padding-right: 60%;
  background-color: var(--grey-100);
  z-index: 3;
}
*/

.sw_home {
  background-color: var(--grey-100);
  z-index: 3;
}

.sw-preview-container {
  position: relative;
  margin-top: clamp(-7em, -5%, -2em);
  width: 100%;
  z-index: 2;
  /* filter: drop-shadow(0px 8px 14px #aaaaaa); */
}

.sw_preview {
  position: relative;
  z-index: 4;
  width: 94%;
  margin-left: 4%;
}

/*.img-sworld-preview-shadow { ////// NICHT SAFARI KOMPATIBEL
  position: absolute;
  left: 0;
  top: 0;
  transform: perspective(75vw) rotateX(239deg) rotate(-46deg) translate3d(clamp(6em, 12vw, 12em), 0, clamp(-1em, -2vw, -2em));
  -webkit-transform: perspective(75vw) rotateX(239deg) rotate(-46deg) translate3d(clamp(6em, 12vw, 12em), 0, clamp(-1em, -2vw, -2em));
  width: 18vw;
  height: 23vw;
  max-width: 20em;
  max-height: 25em;
  z-index: 1;
  background-color: #000000;
  filter: blur(30px);
  opacity: 0.6;
}*/

img.sw_shadow {
  position: absolute;
  left: 0;
  top: 24%;
  width: 100%;
  opacity: 0.6;
  overflow: visible;
  z-index: 2;
}

.teaser {
  padding: 2em;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.teaser a.button {
  width: fit-content;
  border: solid 1px var(--darkblue);
}

.teaser a.button:hover {
  border: solid 1px var(--green);
}

.teaser.preview a.button {
  border: solid 1px var(--white);
}

.teaser.preview a.button:hover {
  border: solid 1px var(--white);
}

.teaser.preview {
  background-size: cover;
  background-position: top right;
  color: var(--white);
}

.teaser.preview a.button {
  color: var(--white);
}

.teaser.green {
  background: var(--green);
  color: var(--white);
}

.teaser.grey {
  background: var(--grey-200);
}

.product_title {
  font-size: min(max(1.4rem, 2vw), 2rem);
  letter-spacing: 1px;
  line-height: 1.2;
  font-weight: 800;
  font-style: italic;
  color: var(--green);
}

.product_title span:nth-child(-n+3) {
  color: var(--blue);
}

.teaser.preview .product_title {
  font-size: min(max(2.5rem, 3vw), 3rem);
}

.more_products p {
  max-width: 400px;
  margin: 0;
}

.more_products .product_title {
  font-size: min(max(0.9rem, 1.1vw), 1.1rem);
  margin-top: 0;
}

.more_products_list {
  position: relative;
  display: block;
  float: left;
  width: 100%;
}

.more_products .button_go {
  width: 100%;
  float: left;
  padding: 12px 10px 12px 10px;
  transition: all ease 0.5s;
  margin: 0;
  cursor: pointer;
}

.more_products .button_go:after {
  right: 10px;
  top: 20px;
}

.more_products .button_go:hover {
  background-color: var(--grey-200);
  color: var(--darkblue);
  font-weight: normal;
  padding: 12px 35px 12px 10px;
}

.more_products img {
  object-fit: cover;
  height: 100%;
}

img.produktbild {
  filter: saturate(0.5);
}

.teaser-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background: -moz-linear-gradient(left,  rgba(30,45,56,1) 0%, rgba(30,45,56,0) 100%);
  background: -webkit-linear-gradient(left,  rgba(30,45,56,1) 0%,rgba(30,45,56,0) 100%);
  background: linear-gradient(to right,  rgba(30,45,56,1) 0%,rgba(30,45,56,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e2d38', endColorstr='#001e2d38',GradientType=1 );
  height: 100%;
}

.teaser.preview p, .teaser.preview a, .teaser.preview .product_title {
  z-index: 2;
}

a.company_block {
  position: relative;
  display: flex;
  float: left;
  width: 100%;
  height: clamp(23em, 40vw, 30em);
  flex-wrap: wrap;
  align-items: center;
}

a.company_block:hover .overlay_darkblue {
  opacity: 0.7;
}

a.company_block_small {
  position: relative;
  display: flex;
  float: left;
  width: 100%;
  height: clamp(15em, 30vw, 25em);
  flex-wrap: wrap;
  align-items: center;
}

a.company_block_small:hover .overlay_darkblue {
  opacity: 0.7;
}

.company_textblock {
  position: absolute;
  width: 70%;
  padding-left: 7%;
  z-index: 3;
  top: 50%;
  transform: translate(0, -50%);
  margin-top: clamp(-4em, -4vw, -2em);
}

.company_textblock p, .company_textblock h4 {
  color: var(--white);
}

.company_textblock h4 {
  font-size: min(max(1.5rem, 4.5vw), 4.5rem);
  -webkit-text-fill-color: var(--white);
  font-weight: normal;
}

.company_textblock h5 {
  color: var(--white);
  font-size: min(max(1.5rem, 2vw), 2rem);
}

.company_textblock:after {
  content: "";
  position: absolute;
  bottom: clamp(-3.5em, -3.5vw, -2.5em);
  left: 10%;
  background-image: url(../images/arrow_right_white.svg);
  background-size: contain;
  width: clamp(2em, 3.5vw, 3.5em);
  height: clamp(1.5em, 2.5vw, 2.5em);
  z-index: 3;
  background-repeat: no-repeat;
}

.company_block_bg {
  position: absolute;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.benefit div {
  position: relative;
  padding: 30px 0 22px 0;
}

.benefit div:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
}

.benefit div:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
}

.benefit h3 {
  margin: 0em 0 1em;
  font-size: min(max(1.2rem, 1.4vw), 1.4rem);
  font-weight: 700;
}






/*--------------------------------------------------
	PRODUKTE
---------------------------------------------------*/

section.feature-1 {
  padding: 5% 5% 5% 0;
  width: 100%;
  position: relative;
  float: left;
  background: var(--grey-200);
}

section.mockup {
  text-align: center;
}

.mockup img {
  max-width: 60%;
}

.product-feature {
  position: relative;
  display: block;
  float: left;
  width: 100%;
}

.first_feature_img {
  position: relative;
  display: block;
  float: left;
  width: 54%;
}

.first_feature_content {
  width: 40%;
  max-width: 1200px;
  float: right;
  padding: 5% 10% 0 0;
}

.features-right .grid {
  max-width: 60%;
  margin-top: 2em;
  border-bottom: 1px solid var(--grey-300);
  padding-bottom: 1em;
}

.feature-icon {
  width: clamp(1.2em, 1.8vw, 2em);
  max-height: 2em;
  height: auto;
}

.feature_title {
  font-weight: bold;
  color: var(--darkblue);
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 0;
}

.feature_line {
  width: 100%;
  height: 1px;
  background-color: var(--grey-300);
}

.features li {
  margin-left: 15px;
}

.first_feature_content .feature_block:last-child .feature_line, .offset_features .feature_block .feature_line:last-child {
  display: none;
}

.offset_features:nth-child(even) .feature_block {
  grid-column: 1 / span 5;
  grid-row: 1;
}

.offset_features:nth-child(even) .feature_img {
  grid-column: 8 / span 6;
  grid-row: 1;
}

.offset_features:nth-child(odd) .feature_block {
  grid-column: 8 / span 5;
  grid-row: 1;
}

.offset_features:nth-child(odd) .feature_img {
  grid-column: 1 / span 6;
  grid-row: 1;
}


.cards_container {
  box-sizing: content-box;
  display: flex;
  justify-content: center;
  width: calc(100% - clamp(5%, 8vw, 8em));
  margin-left: clamp(5%, 8vw, 8em);
}

.cards_ace {
  position: relative;
  padding: 3rem;
  margin: 3em 0;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex: 0 0 18em;
  color: var(--white);
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  z-index: 13;
}

.cards_ace p {
  color: var(--white);
  font-size: min(max(1.05rem, 1.8vw), 1.8rem);
  hyphens: none;
}

.cards_ace .arrow_left {
  position: absolute;
  bottom: 2em;
  right: clamp(4em, 4.5vw, 4.5em);
  z-index: 2;
  width: clamp(1.3em, 1.8vw, 2.3em);
  height: clamp(1.3em, 1.5vw, 2em);
  background-image: url(../images/arrow_right.svg);
  background-repeat: no-repeat;
  display: block;
  cursor: pointer;
  transform: rotate(180deg);
  filter: brightness(0) invert(1);

}

.cards_ace .arrow_right {
  position: absolute;
  bottom: 2em;
  right: 2em;
  z-index: 2;
  width: clamp(1.3em, 1.8vw, 1.8em);
  height: clamp(1em, 1.45vw, 1.45em);
  background-image: url(../images/arrow_right.svg);
  background-repeat: no-repeat;
  display: block;
  cursor: pointer;
  filter: brightness(0) invert(1);
}

.cards_section {
  overflow-x: hidden;
}

.cards {
  position: relative;
  margin-left: 0;
  width: 100%;
  padding: 3em 0;
  flex-wrap: nowrap;
  display: flex;
  align-items: normal;
  scrollbar-color: #201c29;
  scrollbar-width: 10px;
  scrollbar-gutter: always;
  overflow-y: hidden;
  overflow-x: auto;
  white-space: nowrap;
}

.card_item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-width: 17em;
  max-width: 20em;
  border-radius: 0;
  padding: 3em 2em;
  background: var(--grey-200);
  transition: all ease 0.5s;
}

.card_item:first-child {
  margin-left: 1em;
}

.card_item:not(:first-child) {
  margin-left: -10em;
  -webkit-box-shadow: -24px 0px 40px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: -24px 0px 40px 0px rgba(0,0,0,0.1);
  box-shadow: -24px 0px 40px 0px rgba(0,0,0,0.1);
}

.card_item:hover {
  -webkit-transform: translateY(-1rem) !important;
  transform: translateY(-1rem)!important;
}

.card_item:hover~.card_item {
  -webkit-transform: translateX(10em)!important;
  transform: translateX(10em)!important;
}

.cards span.title {
  font-size: min(max(1.05rem, 1.5vw), 1.5rem);
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
}

.cards span.text {
  margin: 0em 0 7em;
  position: relative;
  display: block;
  float: left;
  width: 100%;
  white-space: normal;
}


nav.feature_navigation {
  position: fixed;
  display: block;
  background-color: var(--darkblue);
  top: 80px;
  left: 0;
  width: 100%;
  height: 40px;
  transform: translateY(-120px);
  z-index: 3;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: -moz-transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}

.feature_nav::-webkit-scrollbar, .firmenhistorie::-webkit-scrollbar {
  height: 5px;
  width: 100%;
}

.feature_nav::-webkit-scrollbar-track, .firmenhistorie::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  border-radius: 100px;
}

.feature_nav::-webkit-scrollbar-thumb, .firmenhistorie::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-image: linear-gradient(to right,  rgba(3,94,168,1) 100%, rgba(0,180,219,1) 0%); 
  box-shadow: inset 2px 2px 5px 0 rgba(#fff, 0.5);
}


.feature_nav {
  position: static;
  width: 100%;
  height: 40px;
  flex-wrap: nowrap;
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  justify-content: flex-start;
  float: left;
  white-space: nowrap;
  padding-left: 7%;
}

.feature_nav a {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.7em 2em 0;
  line-height: 1;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all ease 0.3s;
}

.feature_nav a.clicked, .feature_nav a:hover {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  background: transparent;
}







/*--------------------------------------------------
	INSIDE SISAG
---------------------------------------------------*/

.inside .bild {
  position: relative;
  float: left;
  width: 100%;
  height: clamp(10em, 16vw, 16em);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--grey-300);
}

.inside .content {
  position: relative;
  float: left;
  width: 100%;
  padding: 2em;
  font-weight: 700;
}

.intro {
  position: relative;
  float: left;
  width: 100%;
}

.inside .content a {
  font-weight: 700;
}

section.page-content {
  position: relative;
  float: left;
  width: 100%;
  padding: 5% 20%;
}

.intro p {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.page-content p {
  float: left;
}

.page-content.impressum p {
  float: none;
}

p.date {
  width: 100%;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue);
}

.page-content ul {
  float: left;
  width: 100%;
}

.page-content .bild {
  width: 100%;
  margin: 2em 0;
}

.gallery {
  position: relative;
  float: left;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 2em 0;
}

.gallery a {
  position: relative;
  float: left;
  flex: 0 calc(33% - 1em);
  margin: 0.5em;
  height: 14vw;
}

.gallery-image {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

ul.downloads {
  position: relative;
  float: left;
  margin: 2em 0;
  list-style-type: none;
  padding-inline: 0;
  width: 50%;
}

.downloads li {
  padding: 12px 10px;
  border-top: 1px solid var(--grey-200);
  font-weight: bold;
  color: var(--blue);
  transition: 0.5s all ease;
}

.downloads a:hover li {
  background-color: var(--grey-200);
}

.downloads li:last-child {
  border-bottom: 1px solid var(--grey-200);
}

.downloads li:after {
  position: absolute;
  content: "";
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  background-image: url(../images/arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 15px;
}

.page-content a.button {
  float: left;
  clear: both;
  margin-top: 2em;
}


.grey_bg {
  background-color: var(--grey-100);
}

.services_block .col {
  border-bottom: solid 1px var(--grey-300);
  padding: 3em 0;
  margin: 0em 0;
}


.circle {
  width: min(max(7rem, 10vw), 10rem);
  height: min(max(7rem, 10vw), 10rem);
  padding: 5px;
  font-family: var(--bold-font);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--white);
  z-index: 2;
}

.circle_bg {
  width: min(max(7.3rem, 10.5vw), 10.5rem);
  height: min(max(7.3rem, 10.5vw), 10.5rem);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  z-index: 1;
}

.circle p {
  margin: 0px 0 0;
  font-size: min(max(0.7rem, 1.1vw), 1.1rem);
  text-align: center;
}

.fact {
  color: var(--blue);
  font-size: min(max(1.2rem, 2vw), 2rem);
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: normal;
  margin-block-start: 0;
  margin-block-end: 0;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.swiper2 {
  height: clamp(20em, 40vw, 40em);
}

video {
  position: relative;
  float: left;
  width: 100%;
}

.inside-inhalt ul {
  padding-left: 1rem;
}

.inside-inhalt h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  width: 100%;
  float: left;
}

.inside-inhalt h4 {
  margin-top: 2rem;
  width: 100%;
  float: left;
}



/*--------------------------------------------------
	LERNENDE
---------------------------------------------------*/

.beruf {
  background-color: var(--grey-100);
}

.beruf ul {
  list-style-position: outside;
  padding-left: 1rem;
}


/*--------------------------------------------------
	EINSATZBEREICHE
---------------------------------------------------*/

.einsatzbereiche ul {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0.5em;
  width: 100%;
  top: 0;
}

.einsatzbereiche ul li {
  font-size: 1rem;
  width: 100%;
  height: clamp(10em, 20vw, 20em);
  display: block;
  float: left;
}

.einsatzbereiche li a {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  float: left;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(.80, 0, .15, 1);
  -webkit-transition: all 0.3s cubic-bezier(.80, 0, .15, 1);
  -moz-transition: all 0.3s cubic-bezier(.80, 0, .15, 1);
}

.einsatzbereiche li a:hover .overlay_darkblue {
  opacity: 0.7;
  background-color: var(--blue);
}



/*--------------------------------------------------
	BREADCRUMBS
---------------------------------------------------*/

.breadcrumb a {
  color: var(--blue);
}

span.current-path {
  color: var(--black);
}

span.separator {
  margin: 0 0.5rem;
}


/*----------------------------------------------------------------------------------------------------
      ABOUT
-----------------------------------------------------------------------------------------------------*/


.niederlassung_title {
  color: var(--blue);
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.label-icons {
  display: flex;
  position: relative;
  float: left;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: row;
}

.label-icons a {
  flex: 0 29%;
  margin: 2%;
  padding: 1em;
}

.label-icons a img {
  filter: gray;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  transition: 0.5s all ease;
}

.label-icons a:hover img {
  -webkit-filter: grayscale(0);
  filter: none;
}

section.sisag-gruppe {
  position: relative;
  float: left;
  background-color: var(--grey-100);
  width: 100%;
  padding-top: 10%;
  padding-bottom: 10%;
  padding-left: clamp(5%, 10vw, 10em);
  padding-right: clamp(5%, 10vw, 10em);
  text-align: center;
}

.gesellschaften {
  position: relative;
  width: 100%;
}

.firma {
  border-bottom: 1px solid var(--grey-300);
  text-align: left;
}

.firma h5 {
  color: var(--blue);
}

.firma-logo {
  max-width: 200px;
  max-height: 100px;
}

.firma .button {
  float: left;
}

article {
  position: relative;
  float: left;
  width: 100%;
  overflow: hidden;
}

div#leitbild {
  position: relative;
  float: left;
  width: 100%;
}

/*----------------------------------------------------------------------------------------------------
      KARRIERE
-----------------------------------------------------------------------------------------------------*/

#containerFull.offene-stellen {
  position: relative;
  float: left;
  background-color: var(--grey-100);
  width: 100%;
  padding: 10% 0;
}

#containerFull.offene-stellen p {
  max-width: 60%;
}

#containerFull.offene-stellen .button_go {
  width: 100%;
}

.stellen_titel {
  color: var(--darkblue);
  font-weight: 600;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/*----------------------------------------------------------------------------------------------------
      KONTAKT
-----------------------------------------------------------------------------------------------------*/

.kontakt-bild {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  /*background-color: var(--grey-300);*/
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


/*------------------------------------------------------------------------------------------------------------------------------------------------------
	READ MORE
-------------------------------------------------------------------------------------------------------------------------------------------------------*/


#facts {
  position: relative;
  width: 100%;
  float: left;
  display: none;
}

#introtext-readmore {
  position: relative;
  float: left;
}

.introtext-rest {
  float: left;
}

#introtext-readmore:before {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 50px;
  background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}

#introtext-readmore.aktiv:before {
  display: none;
}

.nichtanzeigen {
  display: none;
}

#toggle {
  position: relative;
  color: #867f79;
  transition: all ease .5s;
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 1px;
  margin: 20px 0;
  background: transparent;
  border: none;
  padding: 0;
  font-weight: 600;
}

#toggle:before {
  content: "";
  position: absolute;
  top: 2px;
  right: -22px;
  border: solid #867f79;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

#toggle.aktiv:before {
transform: rotate(-135deg);
-webkit-transform: rotate(-135deg);
  top: 8px;
}



/*----------------------------------------------------------------------------------------------------
      PORTFOLIO / TEAMFILTER
-----------------------------------------------------------------------------------------------------*/

.isotope_container {
  position: relative;
  display: block;
  float: left;
  width: 100%;
}

.portfolio.newsflash {
  display: block;
}

.portfolio .col-3 {
  width: 29%;
}

.portfolioFilter {
padding: 15px 0;
margin: 0 20%;
}

.portfolioFilter a {
  color: #272c35;
  text-decoration: none;
  padding: 5px 7px;
  margin: 5px 3px;
  display: inline-block;
  border: solid 1px #272c35;
  transition: all ease 0.3s;
  width: calc(20% - 26px);
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  hyphens: none;
}

.portfolioFilter a.current, .portfolioFilter a:hover {
  position: relative;
  color: #ffffff;
  background: #272d35;
}

span.name {
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.mitarbeiter-item a {
  text-decoration: underline;
}


.portfolioContainer {
border: 0px solid #eee;
border-radius: 3px;
}

.isotope-item {
z-index: 2;
}

.isotope-hidden.isotope-item {
pointer-events: none;
z-index: 1;
}

.isotope,
.isotope .isotope-item {
/* change duration value to whatever you like */
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
transition-duration: 0.8s;
}

.isotope {
-webkit-transition-property: height, width;
-moz-transition-property: height, width;
transition-property: height, width;
}

.isotope .isotope-item {
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
transition-property: transform, opacity;
}

.portfolio .bild-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  color: #fff;
  background: rgba(0,122,160,1);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all ease 0.5s;
}

.portfolio .beitrag:hover .bild-overlay {
  opacity: 1;
}





/* /////// TEAM FILTER /////// */

.portfolio .col-3:nth-child(10n-6), .portfolio .col-3:nth-child(10n) {
  width: 62%;
}

.portfolio .col-3:nth-child(10n-6) .titel, .portfolio .col-3:nth-child(10n) .titel {
  padding: 2%;
}


.portfolio .titel h4, .portfolio .titel p {
  color: #646363;
  font-size: 0.8rem;
  margin: 0;
  font-family: "config-regular";
  text-transform: none;
}

.portfolio .beitrag {
  background: #f2f2f2;
}

.portfolio .titel {
  padding: 4%;
  position: relative;
  display: block;
  float: left;
}

.portfolio .bild {
  margin: 0;
}

.portfolio a.button {
  margin-left: auto;
  color: #f2f2f2;
  background: transparent;
  border: solid 1px #f2f2f2;
}

.portfolio a.button:hover {
  color: #646363;
  background: #f2f2f2;
  border: solid 1px #f2f2f2;
}

.portfolio a.button:before {
  background-image: url(../images/slider-arrow-hell.svg);
}

.portfolio a.button:hover:before {
  background-image: url(../images/slider-arrow-dunkel.svg);
}



/*----------------------------------------------------------------------------------------------------
      TEAM
-----------------------------------------------------------------------------------------------------*/

section.team {
  position: relative;
  float: left;
  width: 100%;
  padding: 10%;
  background: var(--grey-100);
}

.mitarbeiter {
  position: relative;
  float: left;
  width: 101%;
  margin-left: -1%;
  margin-right: -1%;
}

.mitarbeiter-item {
  position: relative;
  display: block;
  float: left;
  width: 23%;
  margin-bottom: 1%;
  margin-left: 1%;
  margin-right: 1%;
}

.mitarbeiter-item img {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 12rem;
  object-fit: cover;
  margin-bottom: 10px;
}

.portfolioFilter {
  padding: 0;
  margin: 0;
}

.portfolioFilter a {
  color: var(--darkblue);
  text-decoration: none;
  padding: 20px 20px;
  margin: 5px 3px;
  display: inline-block;
  border: solid 1px var(--grey-300);
  background: transparent;
  width: auto;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  hyphens: none;
  transition: all ease 0.3s;
}

.portfolioFilter a.current {
  position: relative;
  color: var(--white);
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 100%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 100%);
}

.portfolioFilter a:hover {
  position: relative;
  color: var(--white);
  background: var(--blue);
}

input#quicksearch {
  width: 250px;
  padding: 20px 20px;
  margin: 5px 3px;
  border: solid 1px var(--grey-300);
  outline: none;
}

.grid.prozesse {
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
}

.accordion__body .grid.prozesse {
  column-gap: 2em;
  margin: 2em 0;
}

.prozesse .slider-image {
  height: clamp(20rem, 25vw, 25rem);
}

.prozesse .swiper-button-prev:after, .prozesse .swiper-button-next:after {
  filter: brightness(0) invert(1);
  width: clamp(20px, 3.5vw, 35px);
  height: clamp(10px, 2.4vw, 20px);
}

.prozesse .swiper-button-prev, .prozesse .swiper-button-next {
  bottom: 1em;
  top: auto;
}

a.lightbox-button {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 2em;
  bottom: 2em;
  background-image: url('/static/images/icon_lightbox.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 4;
}



/*----------------------------------------------------------------------------------------------------
      SUCHE
-----------------------------------------------------------------------------------------------------*/

.suchresultate li {
  margin-left: 1em;
}






/*----------------------------------------------------------------------------------------------------
      SISAG WORLD
-----------------------------------------------------------------------------------------------------*/

.sisagworld_container {
  position: relative;
  display: block;
  float: left;
  width: 100%;
}

.sworld-pin {
  position: relative;
  width: 80%;
  margin: 0 auto;
  display: block;
  z-index: 1;
}

.images-sworld {
  position: relative;
  margin: 0 auto;
  display: block;
  width: 100%;
  z-index: 3;
}

.img-sworld-shadow {
  transform: perspective(75vw) rotateX(221deg) rotate(-52deg) translate3d(19vw, 0, -36vw);
  width: 15vw;
  height: 19vw;
  background-color: #000000;
  filter: blur(30px);
  opacity: 0.6;
}

.sworld-container, .sworld-container-mobile {
  position: relative;
  display: block;
  float: left;
  width: 100%;
}


.titleBurrowing {
  overflow: hidden;
}

.titleBurrowing p {
  font-size: min(max(0.9rem, 1.1vw), 1.1rem);
  line-height: 1.7;
  overflow: hidden;
}

.topic {
  position: relative;
  display: block;
  float: left;
  width: 45%;
  min-height: 400vh;
  margin: 0 0;
}

.topic.topic-strassenverkehr {
  min-height: 500vh;
}

.change-topic {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  min-height: 200vh;
}

.change-topic.change-siscampus {
  min-height: 200vh;
}

.prepare-topic {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  min-height: 0vh;
}

.startAnimation {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 100vh;
}

.endAnimation {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 50vh;
}

.animation-trigger {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 1px;
}

.sworld-siscampus-section {
  position: absolute;
  z-index: 2;
  width: 27%;
  left: 34%;
  bottom: 9%;
  height: 32%;
  will-change: transform;
}

.sworld-seilbahnen-section {
  position: absolute;
  z-index: 3;
  left: 1.5%;
  top: -8%;
  width: 62%;
  will-change: transform;
}

/* CONTENT */
.sworld-content-siscampus {
  position: absolute;
  width: 40%;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
.sworld-content-sisag-cloud {
  position: absolute;
  width: 40%;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
.sworld-content-strassenverkehr {
  position: absolute;
  width: 40%;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
.sworld-content-seilbahnen {
  position: absolute;
  width: 40%;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
.sworld-content-operating-solutions {
  position: absolute;
  width: 40%;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
.sworld-content-urbane-transportmittel {
  position: absolute;
  width: 40%;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}

svg.cj_strasse_0 {
  position: absolute;
  z-index: 1;
  width: 5%;
  left: 32%;
  bottom: 25%;
}

svg.cj_strasse_1 {
  position: absolute;
  z-index: 1;
  width: 35%;
  left: 30%;
  bottom: 30%;
}

svg.cj_strasse_2 {
  position: absolute;
  z-index: 1;
  width: 14.6%;
  left: 26.0%;
  bottom: 49.2%;
}

svg.cj_strasse_3 {
  position: absolute;
  z-index: 1;
  width: 26.9%;
  left: 35.3%;
  bottom: 67.5%;
}

svg.cj_strasse_4 {
  position: absolute;
  z-index: 1;
  width: 8.8%;
  left: 62.1%;
  bottom: 41.0%;
}

svg.cj_strasse_5 {
  position: absolute;
  z-index: 1;
  width: 38.3%;
  left: 41.4%;
  bottom: 11.4%;
}

svg.cj_street_1 {
  position: absolute;
  z-index: 1;
  width: 35%;
  left: 30%;
  bottom: 30%;
}

svg.cj_street_2 {
  position: absolute;
  z-index: 1;
  width: 5.9%;
  left: 30%;
  bottom: 40%;
}

svg.cj_street_3 {
  position: absolute;
  z-index: 1;
  width: 16.8%;
  left: 35.7%;
  bottom: 29.8%;
}

svg.cj_street_4 {
  position: absolute;
  z-index: 1;
  width: 13.6%;
  left: 52.2%;
  bottom: 29.7%;
}

svg.cj_street_5 {
  position: absolute;
  z-index: 1;
  width: 8.5%;
  left: 57.2%;
  bottom: 42.8%;
}

svg.cj_street_6 {
  position: absolute;
  z-index: 2;
  width: 58.5%;
  right: 0;
  bottom: 6.7%;
}

svg.cj_street_7 {
  position: absolute;
  z-index: 3;
  width: 41.8%;
  left: 0%;
  bottom: 26.8%;
}

svg.cj_street_8 {
  position: absolute;
  z-index: 3;
  width: 4.1%;
  left: 36.9%;
  bottom: 48.7%;
}

svg.cj_street_9 {
  position: absolute;
  z-index: 3;
  width: 8.5%;
  left: 28.5%;
  bottom: 48.8%;
}

img.car-back-to-right, img.car-back-to-left, img.car-front-to-right, img.car-front-to-left {
  position: absolute;
  z-index: 2;
  width: 2%;
  opacity: 0;
  visibility: hidden;
}

img.strassenverkehr-car-back-to-left, img.strassenverkehr-car-front-to-left {
  position: absolute;
  width: 4%;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
}

img.cj_siscampus {
  position: absolute;
}

img.cj_siscampus.day {
  z-index: 2;
}

img.cj_siscampus.evening {
  z-index: 3;
  opacity: 0;
}

img.cj_siscampus.night {
  z-index: 1;
}

.sworld-sisag-cloud-section {
  position: absolute;
  z-index: 4;
  width: 12%;
  height: 20%;
  left: 21%;
  bottom: 30%;
  will-change: transform;
}

img.cj_cloud {
  z-index: 1;
  position: absolute;
}

img.cloud_1 {
  opacity: 1;
  z-index: 1;
}

img.cloud_2 {
  opacity: 0;
  z-index: 2;
}

.sworld-strassenverkehr-section {
  position: absolute;
  z-index: 3;
  width: 21%;
  left: 40.4%;
  bottom: 45.7%;
  will-change: transform;
}

img.area_strassenverkehr.cj_strassenverkehr {
  z-index: 5;
}

img.cj_strassenverkehr_wand {
  position: absolute;
  left: 77.3%;
  top: 56%;
  width: 15.3%;
  z-index: 1;
  opacity: 1;
}

img.cj_strassenverkehr_street {
  position: absolute;
  left: 0%;
  top: 40%;
  width: 100%;
  z-index: 1;
  opacity: 0;
}

img.cj_strassenverkehr_light {
  position: absolute;
  width: 22%;
  z-index: 6;
  bottom: 40.3%;
  left: 12%;
  opacity: 0;
}

img.cj_strassenverkehr_camera_1 {
  position: absolute;
  width: 3%;
  top: 50%;
  left: 17%;
  z-index: 7;
  opacity: 1;
}

img.cj_strassenverkehr_camera_2 {
  position: absolute;
  width: 3%;
  top: 50.2%;
  left: 17%;
  z-index: 7;
  opacity: 0;
}

img.area_strassenverkehr.cj_strassenverkehr_ampel_left_green, img.area_strassenverkehr.cj_strassenverkehr_ampel_left_red, img.area_strassenverkehr.cj_strassenverkehr_ampel_left_yellow {
  position: absolute;
  z-index: 6;
  width: 3%;
  bottom: 35.8%;
  left: 5.9%;
}

img.area_strassenverkehr.cj_strassenverkehr_ampel_left_green {
  z-index: 8;
}

img.area_strassenverkehr.cj_strassenverkehr_ampel_left_yellow {
  z-index: 7;
}

img.area_strassenverkehr.cj_strassenverkehr_ampel_left_red {
  z-index: 6;
}

img.area_strassenverkehr.cj_strassenverkehr_ampel_right_green, img.area_strassenverkehr.cj_strassenverkehr_ampel_right_red, img.area_strassenverkehr.cj_strassenverkehr_ampel_right_yellow {
  position: absolute;
  z-index: 6;
  width: 3%;
  bottom: 22.8%;
  left: 85.5%;
}

img.area_strassenverkehr.cj_strassenverkehr_ampel_right_green {
  z-index: 8;
}

img.area_strassenverkehr.cj_strassenverkehr_ampel_right_yellow {
  z-index: 7;
}

img.area_strassenverkehr.cj_strassenverkehr_ampel_right_red {
  z-index: 6;
}

img.cj_gondelbahn {
  position: absolute;
  z-index: 3;
  width: 26%;
  left: 17%;
  bottom: 5%;
}

img.cj_gondelbahn_talstation {
  position: absolute;
  z-index: 5;
  width: 10%;
  left: 30%;
  bottom: 9%;
}

img.cj_gondelbahn_mast {
  position: absolute;
  z-index: 3;
  width: 10%;
  left: 23.4%;
  bottom: 19%;
}

img.cj_gondelbahn_mast_unten {
  position: absolute;
  z-index: 3;
  width: 0.8%;
  left: 26.1%;
  bottom: 42.7%;
}

img.cj_gondelbahn_mast_oben {
  position: absolute;
  z-index: 5;
  width: 3%;
  left: 24.8%;
  bottom: 52.3%;
}

img.cj_gondelbahn_mast_unten2 {
  position: absolute;
  z-index: 3;
  width: 0.8%;
  left: 29.8%;
  bottom: 22.9%;
}

img.cj_gondelbahn_mast_oben2 {
  position: absolute;
  z-index: 5;
  width: 3%;
  left: 28.5%;
  bottom: 33%;
}

img.cj_gondelbahn_seil {
  position: absolute;
  z-index: 5;
  width: 10%;
  left: 23.4%;
  bottom: 19%;
}

img.cj_gondelbahn_bergstation {
  position: absolute;
  z-index: 4;
  width: 3%;
  left: 23%;
  bottom: 59%;
}

img.cj_gondelbahn_bergstation_dach {
  position: absolute;
  z-index: 5;
  width: 10%;
  left: 17%;
  bottom: 60%;
}

img.cj_gondelbahn_tafel {
  position: absolute;
  z-index: 5;
  width: 4%;
  left: 24%;
  bottom: 9%;
}

img.cj_standseilbahn {
  position: absolute;
  z-index: 3;
  width: 24.5%;
  left: 27%;
  bottom: 38.4%;
}

img.cj_seilbahn {
  position: absolute;
  z-index: 3;
  width: 28%;
  left: 65.5%;
  bottom: 36%;
}

img.cj_seilbahn-cabine-1 {
  position: absolute;
  width: 2%;
  left: 75%;
  bottom: 51%;
  z-index: 4;
}

img.cj_seilbahn-cabine-2 {
  position: absolute;
  width: 2%;
  left: 83%;
  bottom: 83%;
  z-index: 3;
}

svg.cj_seilbahn_pfad_1 {
  position: absolute;
  z-index: 4;
  width: 12.5%;
  left: 74.4%;
  bottom: 51.4%;
}

svg.cj_seilbahn_pfad_2 {
  position: absolute;
  z-index: 4;
  width: 12.5%;
  left: 72.4%;
  bottom: 53.4%;
}

img.cj_seilbahn-talstation {
  position: absolute;
  z-index: 5;
  width: 8%;
  left: 68%;
  bottom: 39%;
}

img.cj_seilbahn_seil {
  position: absolute;
  z-index: 3;
  width: 15%;
  left: 71.6%;
  bottom: 49.5%;
}

img.cj_seilbahn_bergstation {
  position: absolute;
  z-index: 3;
  width: 4.4%;
  left: 82.4%;
  bottom: 78.9%;
}

img.cj_seilbahn_bergstation_top {
  position: absolute;
  z-index: 5;
  width: 8.8%;
  left: 82.4%;
  bottom: 79%;
}

img.cj_seilbahn_mast_unten_1 {
  position: absolute;
  z-index: 3;
  width: 0.5%;
  left: 78.5%;
  bottom: 56.5%;
}

img.cj_seilbahn_mast_oben_1 {
  position: absolute;
  z-index: 5;
  width: 2.5%;
  left: 77.5%;
  bottom: 61.2%;
}

img.cj_seilbahn_mast_unten_2 {
  position: absolute;
  z-index: 3;
  width: 0.5%;
  left: 81.8%;
  bottom: 66.5%;
}

img.cj_seilbahn_mast_oben_2 {
  position: absolute;
  z-index: 5;
  width: 2.5%;
  left: 80.9%;
  bottom: 72.2%;
}

img.cj_seilbahn_mast_unten_3 {
  position: absolute;
  z-index: 3;
  width: 0.5%;
  left: 84.5%;
  bottom: 81.1%;
}

img.cj_seilbahn_mast_oben_3 {
  position: absolute;
  z-index: 4;
  width: 2.5%;
  left: 83.6%;
  bottom: 86.5%;
}


.sworld-urban-section {
  position: absolute;
  z-index: 4;
  width: 29%;
  left: 68%;
  bottom: 35%;
  will-change: transform;
}

img.cj_urban_back {
  position: relative;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 4;
}

img.cj_urban_front {
  position: absolute;
  width: 56.1%;
  left: 30.6%;
  bottom: 30.5%;
  z-index: 9;
}

img.cj_urban_gleis {
  position: absolute;
  width: 75.9%;
  left: 21.5%;
  bottom: 15%;
  z-index: 6;
}

img.cj_urban_zug_1 {
  position: absolute;
  width: 8%;
  left: 74.7%;
  bottom: 37.2%;
  z-index: 7;
}

img.cj_urban_zug_2 {
  position: absolute;
  width: 6.4%;
  left: 81.5%;
  bottom: 41.5%;
  z-index: 7;
}

img.cj_urban_zug_3 {
  position: absolute;
  width: 7.8%;
  left: 86.8%;
  bottom: 45.1%;
  z-index: 7;
}

img.cj_urban_zug_1_blur {
  position: absolute;
  width: 13%;
  left: 74.7%;
  bottom: 37.2%;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
}

img.cj_urban_zug_2_blur {
  position: absolute;
  width: 10.4%;
  left: 81.5%;
  bottom: 41.5%;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
}

img.cj_urban_zug_3_blur {
  position: absolute;
  width: 12.8%;
  left: 86.8%;
  bottom: 45.1%;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
}

img.cj_urban_zug {
  position: absolute;
  width: 25%;
  left: 72.3%;
  bottom: 37.2%;
  z-index: 7;
}

img.cj_urban_zug_blur {
  position: absolute;
  width: 25%;
  left: 74.7%;
  bottom: 37.2%;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
}

img.cj_urban_zug_1_blur_new {
  position: absolute;
  width: 4%;
  left: 74.7%;
  bottom: 37.2%;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
}

img.cj_urban_zug_2_blur_new {
  position: absolute;
  width: 4%;
  left: 74.7%;
  bottom: 37.2%;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
}

img.cj_urban_zug_3_blur_new {
  position: absolute;
  width: 4%;
  left: 74.7%;
  bottom: 37.2%;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
}

img.cj_urban_zug_4_blur_new {
  position: absolute;
  width: 4%;
  left: 74.7%;
  bottom: 37.2%;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
}

img.cj_urban_zug_5_blur_new {
  position: absolute;
  width: 4%;
  left: 74.7%;
  bottom: 37.2%;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
}

img.cj_urban_zug_6_blur_new {
  position: absolute;
  width: 4%;
  left: 74.7%;
  bottom: 37.2%;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
}

img.cj_urban_zug_7_blur_new {
  position: absolute;
  width: 4%;
  left: 74.7%;
  bottom: 37.2%;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
}

img.cj_urban_zug_8_blur_new {
  position: absolute;
  width: 4%;
  left: 75.5%;
  bottom: 37.8%;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
}

.cj-path-urban_1 {
  position: absolute;
  width: 15%;
  left: 78%;
  bottom: 40.8%;
  z-index: 7;
}

.cj-path-urban_11 {
  position: absolute;
  width: 10%;
  left: 68%;
  bottom: 33.8%;
  z-index: 10;
}

.cj-path-urban_2 {
  position: absolute;
  width: 23%;
  left: 52%;
  bottom: 21%;
  z-index: 11;
}

.cj-path-urban_5 {
  position: absolute;
  width: 74.5%;
  left: 22%;
  bottom: 22%;
  z-index: 7;
}

img.cj_gondel {
  position: absolute;
  width: 2%;
  z-index: 5;
}

img.gondel-1 {
  left: 23%;
  top: 40%;
}

img.gondel-2 {
  left: 25.5%;
  top: 52%;
}

img.gondel-3 {
  left: 28%;
  top: 66%;
}

img.gondel-4 {
  left: 30%;
  top: 77%;
}

img.gondel-5 {
  left: 32.1%;
  top: 75%;
}

img.gondel-6 {
  left: 31%;
  top: 64%;
}

img.gondel-7 {
  left: 28%;
  top: 50.5%;
}

img.gondel-8 {
  left: 25.3%;
  top: 38.2%;
}

svg.cj_gondel_pfad_1, svg.cj_gondel_pfad_2, svg.cj_gondel_pfad_3, svg.cj_gondel_pfad_4, svg.cj_gondel_pfad_5, svg.cj_gondel_pfad_6, svg.cj_gondel_pfad_7, svg.cj_gondel_pfad_8 {
  position: absolute;
  z-index: 2;
  width: 15%;
  left: 22%;
  bottom: 13.5%;
}

/*
img.cj_gondel.gondel-1 {
  left: 25%;
  bottom: 45%;
}

img.cj_gondel.gondel-2 {
  left: 23%;
  bottom: 54%;
}*/

img.cj_standseilbahn_gleis {
  position: absolute;
  width: 16.5%;
  left: 37.0%;
  bottom: 46%;
  z-index: 4;
}

img.cj_standseilbahn_hotel {
  position: absolute;
  width: 18%;
  left: 32.2%;
  bottom: 73%;
  z-index: 2;
}

img.cj_standseilbahn_hotel_top {
  position: absolute;
  width: 10.5%;
  left: 32.3%;
  bottom: 74.0%;
  z-index: 6;
}

img.cj_standseilbahn_chalet {
  position: absolute;
  width: 8.5%;
  left: 49%;
  bottom: 42%;
  z-index: 6;
}

img.cj_standseilbahn-zug-1 {
  position: absolute;
  width: 2.5%;
  left: 38.6%;
  bottom: 73%;
  z-index: 5;
  transform: rotate(48.9deg);
}

img.cj_standseilbahn-zug-2 {
  position: absolute;
  width: 2.5%;
  left: 48.6%;
  bottom: 53%;
  z-index: 5;
  transform: rotate(-129deg);
}

svg.cj_standseilbahn_pfad_1 {
  position: absolute;
  z-index: 2;
  width: 16.5%;
  left: 36.4%;
  bottom: 47.4%;
}

svg.cj_standseilbahn_pfad_2 {
  position: absolute;
  z-index: 2;
  width: 16.5%;
  left: 36.4%;
  bottom: 47.4%;
}


.sworld-operating-section {
  position: absolute;
  z-index: 3;
  width: 18%;
  left: 59%;
  bottom: 62%;
  will-change: transform;
}

img.cj_operating_display_left {
  position: absolute;
  width: 23.4%;
  z-index: 4;
  left: 68%;
  bottom: 56%;
}

img.cj_operating_display_right {
  position: absolute;
  width: 23.4%;
  z-index: 4;
  left: 43%;
  bottom: 78%;
}

img.cj_operating_band {
  position: absolute;
  width: 46%;
  z-index: 5;
  left: 29%;
  bottom: 35%;
}

img.cj_operating_handy {
  position: relative;
  width: 100%;
  z-index: 3;
  left: 0;
  bottom: 5%;
}

img.cj_operating_handy_screen {
  position: absolute;
  width: 100%;
  z-index: 4;
  left: 0;
  bottom: 5%;
  visibility: hidden;
  opacity: 0;
}

img.cj_operating-arm-left-1 {
  position: absolute;
  width: 19.6%;
  z-index: 9;
  left: 35%;
  bottom: 42.3%;
}

img.cj_operating-arm-left-2 {
  position: absolute;
  width: 19.65%;
  z-index: 9;
  left: 35%;
  bottom: 42.3%;
}

/*
img.cj_operating-arm-right-1 {
  position: absolute;
  width: 16.5%;
  z-index: 5;
  left: 51%;
  bottom: 55%;
}
*/

img.cj_operating-arm-right-1 {
  position: absolute;
  width: 16.5%;
  z-index: 5;
  left: 51%;
  bottom: 61%;
}

/*
img.cj_operating-arm-right-2 {
  position: absolute;
  width: 16.5%;
  z-index: 5;
  left: 57.6%;
  bottom: 55%;
}
*/

img.cj_operating-arm-right-2 {
  position: absolute;
  width: 16.4%;
  z-index: 5;
  left: 51.1%;
  bottom: 61%;
}

img.cj_operating-box {
  position: absolute;
  width: 9.5%;
}

img.cj_operating-box.box-1 {
  left: 32%;
  bottom: 71.5%;
  z-index: 6;
}

img.cj_operating-box.box-2 {
  left: 43%;
  bottom: 62%;
  z-index: 7;
}

img.cj_operating-box.box-3 {
  left: 52%;
  bottom: 54%;
  z-index: 8;
}

svg.cj-path-operating-1 {
  position: absolute;
  z-index: 8;
  width: 36%;
  left: 35%;
  bottom: 46%;
}

svg.cj-path-operating-2 {
  position: absolute;
  z-index: 9;
  width: 25%;
  left: 46%;
  bottom: 46%;
}

svg.cj-path-operating-3 {
  position: absolute;
  z-index: 10;
  width: 17%;
  left: 54%;
  bottom: 46%;
}




/* ////// SISAG WORLD ANIMATION ELEMENTS ////// */

/*.sun {
  background-image: radial-gradient(#737356,#6f3b09);
  background-color: #FAFBB7;
  width: 30px;
  height: 30px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  position: absolute;
  top: -50px;
  left: 0;
  transform-origin: '500% 300%';
  opacity: 0;
  z-index: 0;
}
*/

.sonne {
  background-image: radial-gradient(#FAFBB7,#fea553);
  background-color: #FAFBB7;
  width: 30px;
  height: 30px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  position: absolute;
  top: -50px;
  left: 0;
  opacity: 0;
  z-index: 0;
}

.mond {
  width: 30px;
  height: 30px;
  position: absolute;
  top: -50px;
  left: 0;
  opacity: 0;
  z-index: 0;
}

svg.pfad-siscampus {
  position: absolute;
  top: -4em;
  left: 0;
}

svg#siscampus_shadow_tower_1 {
  position: absolute;
  z-index: 3;
  top: 42%;
  left: -31%;
  width: 100%;
}

svg#siscampus_shadow_tower_2 {
  position: absolute;
  z-index: 3;
  top: 42%;
  left: 12%;
  width: 60%;
}

#siscampus_shadow_tower_pfad_2 {
  visibility:hidden;
}

svg.cj_cloud_net {
  position: absolute;
  z-index: 1;
  width: 60%;
  left: 25%;
  top: 24%;
}



/* ////// BESCHRIFTUNG ////// */

img.cj_beschriftung_sisag_de {
  position: absolute;
  z-index: 8;
  width: 33%;
  right: 18%;
  bottom: 63%;
}

img.cj_beschriftung_strassenverkehr_de {
  position: absolute;
  z-index: 8;
  width: 42%;
  right: -3%;
  bottom: 55%;
}

img.cj_beschriftung_seilbahnen_de {
  position: absolute;
  z-index: 8;
  width: 15%;
  right: 38%;
  top: -13%;
}

img.cj_beschriftung_os_de {
  position: absolute;
  z-index: 10;
  width: 50%;
  right: -12%;
  top: -55%;
}

img.cj_beschriftung_urban_de {
  position: absolute;
  z-index: 8;
  width: 19%;
  right: 37%;
  bottom: 79%;
}

img.scroll-icon {
  position: fixed;
  z-index: 3;
  left: 50%;
  bottom: -3em;
  -webkit-animation: shake-vertical 15s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
  animation: shake-vertical 15s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
  transform: translate(-50%, 0);
  width: clamp(12px, 2vw, 18px);
}

.scrollmore1 {
  position: fixed;
  left: 50%;
  bottom: -3em;
  font-size: min(max(0.6rem, 0.8vw), 0.8rem);
  z-index: 2;
  transform: translate(-100%, 0);
  margin-left: -1em;
}

.scrollmore2 {
  position: fixed;
  left: 50%;
  bottom: -3em;
  font-size: min(max(0.6rem, 0.8vw), 0.8rem);
  z-index: 2;
  margin-left: 2.4em;
}



@-webkit-keyframes shake-vertical {
  0%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  80% {
    -webkit-transform: translateY(6.4px);
            transform: translateY(6.4px);
  }
  90% {
    -webkit-transform: translateY(-6.4px);
            transform: translateY(-6.4px);
  }
}
@keyframes shake-vertical {
  0%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  80% {
    -webkit-transform: translateY(6.4px);
            transform: translateY(6.4px);
  }
  90% {
    -webkit-transform: translateY(-6.4px);
            transform: translateY(-6.4px);
  }
}







.sworld-container-mobile {
  display: none;
}



@media screen and (max-width : 1024px) and (orientation: portrait) { /* MOBILE */

  .sisagworld_container {
    overflow: hidden;
  }

  .sworld-pin {
    width: 200%;
    transform: translateX(-25%) scale(0.5);
  }


  .topic {
    width: 100%;
    min-height: 100vh;
}

.topic.topic-strassenverkehr {
  min-height: 100vh;
}

.change-topic {
  min-height: 50vh;
}

.startAnimation {
  height: 1px;
}


.sworld-container {
  display: none;
}

.sworld-container-mobile {
  display: block;
  z-index: 0;
}


.sworld-gradient {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 1;
  background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 20%);
  background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 20%);
  background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 20%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}


@media (prefers-color-scheme: dark) {
  .sworld-gradient {
    background: -moz-linear-gradient(top,  rgba(0,19,33,0) 0%, rgba(0,19,33,1) 20%);
    background: -webkit-linear-gradient(top,  rgba(0,19,33,0) 0%,rgba(0,19,33,1) 20%);
    background: linear-gradient(to bottom,  rgba(0,19,33,0) 0%,rgba(0,19,33,1) 20%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00132100', endColorstr='#001321',GradientType=0 );
  }
}

.sworld-content-siscampus, .sworld-content-sisag-cloud, .sworld-content-strassenverkehr, .sworld-content-seilbahnen, .sworld-content-operating-solutions, .sworld-content-urbane-transportmittel {
  width: 100%;
  left: auto;
  top: auto;
  transform: none;
  display: none;
}

svg.pfad-siscampus {
  top: -1em;
}


img.scroll-icon, .scrollmore1, .scrollmore2 {
  display: none;
}


.mouse_scroll {
  position: fixed;
  display: block;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  opacity: 0;
  transition: opacity ease 0.3s;
}

.mouse_scroll.active {
  opacity: 1;
}

.m_scroll_arrows {
  display: block;
  -ms-transform: rotate(45deg); /* IE 9 */
  -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  transform: rotate(45deg);
  border-right: 12px solid var(--grey-200);
  border-bottom: 12px solid var(--grey-200);
  margin: 0 0 3px 4px;
  
  width: 80px;
  height: 80px;
}


@media (prefers-color-scheme: dark) {
  .m_scroll_arrows {
    border-right: 12px solid var(--darkblue);
    border-bottom: 12px solid var(--darkblue);
  }
}


.unu {
  margin-top: 1px;
}

.unu, .doi, .trei {
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
    animation: mouse-scroll 1s infinite;
}

.unu {
  -webkit-animation-delay: .1s;
  -moz-animation-delay: .1s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  animation-delay: alternate;
}

.doi {
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  -webkit-animation-direction: alternate;
  animation-delay: .2s;
  animation-direction: alternate;
  margin-top: -6px;
}

.trei {
  -webkit-animation-delay: .3s;
  -moz-animation-delay: .3s;
  -webkit-animation-direction: alternate;
  animation-delay: .3s;
  animation-direction: alternate;
  margin-top: -6px;
}

@-webkit-keyframes mouse-wheel{
   0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@-moz-keyframes mouse-wheel {
  0% { top: 1px; }
  25% { top: 2px; }
  50% { top: 3px;}
  75% { top: 2px;}
  100% { top: 1px;}
}
@-o-keyframes mouse-wheel {

   0% { top: 1px; }
  25% { top: 2px; }
  50% { top: 3px;}
  75% { top: 2px;}
  100% { top: 1px;}
}
@keyframes mouse-wheel {

   0% { top: 1px; }
  25% { top: 2px; }
  50% { top: 3px;}
  75% { top: 2px;}
  100% { top: 1px;}
}

@-webkit-keyframes mouse-scroll {

  0%   { opacity: 0;}
  50%  { opacity: .5;}
  100% { opacity: 1;}
}
@-moz-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@-o-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}




}



@media screen and (min-width : 1024px) and (max-height : 800px)  {

  .sisagworld_container {
    overflow: hidden;
  }

  .sworld-pin {
    width: 150%;
    transform: translateX(-20%) scale(0.5);
  }

  .scrollmore1 {
    transform: translate(-100%, 0) scale(1.5);
    margin-left: -2em;
  }

  .scrollmore2 {
    transform: scale(1.5);
    margin-left: 4.1em;
  }

  img.scroll-icon {
    transform: translate(-50%, 0) scale(1.5);
  }

  .sworld-content-siscampus, .sworld-content-sisag-cloud, .sworld-content-strassenverkehr, .sworld-content-seilbahnen, .sworld-content-operating-solutions, .sworld-content-urbane-transportmittel {
    transform: translate(0, -50%) scale(1.5);
    width: 30%;
  }

  .sworld-content-sisag-cloud, .sworld-content-seilbahnen {
    left: 20%;
}

}


@media screen and (min-width : 1024px) and (max-height : 600px)  {

  .sworld-pin {
    width: 120%;
    transform: translateX(-10%) scale(0.5);
  }

}



@media screen and (max-width : 900px)  and (max-height : 500px) and (orientation: landscape) { /* SMARTPHONE QUER */

  .sworld-content-siscampus, .sworld-content-sisag-cloud, .sworld-content-strassenverkehr, .sworld-content-seilbahnen, .sworld-content-operating-solutions, .sworld-content-urbane-transportmittel {
      transform: translate(0, -50%) scale(0.7);
      width: 60%;
  }

  .sworld-content-sisag-cloud, .sworld-content-seilbahnen {
    left: -35%;
}

.sworld-content-siscampus, .sworld-content-strassenverkehr, .sworld-content-operating-solutions, .sworld-content-urbane-transportmittel {
  left: -10%;
}

}







/*------------------------------------------------------------------------------------------------------------------------------------------------------
	RESPONSIVE
-------------------------------------------------------------------------------------------------------------------------------------------------------*/




@media screen and (max-width : 1600px)  {

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


nav ul > li.subnav {
  font-size: 1.5rem;
}

nav ul {
  width: 24em;
}

nav ul li ul {
  left: 19em;
  max-width: 32em;
}

.sub_link {
  font-size: 0.9rem;
}


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */

}

@media screen and (max-width : 1500px)  {

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */

/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */
  
}

@media screen and (max-width : 1400px)  {

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */

/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */
  
}

@media screen and (max-width : 1300px)  {

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */

#navigationWrap .header {
  height: 80px;
}

.menu-container {
  top: 80px;
  height: calc(100% - 80px);
}

.controlpanel_nav .cp_group_nav .cp_frame_nav {
  top: 80px;
}

.sticky {
  height: 80px;
}

.controlpanel {
  top: 80px;
}

.menu-container nav {
  height: calc(100% - 0em);
  padding-top: 3em;
}


nav ul > li.subnav {
    padding: 0 60px 0 60px;
}

nav ul > li.subnav span:after {
  right: -25px;
}

nav ul {
  width: 25em;
}

nav ul li ul {
  width: calc(70vw - 17em);
  left: 17em;
}

.sub_link {
  width: calc(100% - 2em);
  left: 1em;
  bottom: 2em;
}


nav ul li ul {
  grid-template-columns: 1fr 1fr;
  grid-gap: 1vw;
}

nav ul li ul li {
  height: clamp(7em, 15vw, 20em);
}


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */




  
}


@media screen and (max-width : 1200px)  {

/* ///// C0NTAINER AND T_YPO ///// */

.pagination a {
  padding: 10px 15px;
}

.pagination span.current {
  padding: 12px 15px;
}

/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */

.slide h3 {
  font-size: 0.7rem;
}

/* ///// C0NTENT ///// */

ul.tabs li {
  padding: 0 3em;
}

.tab-control {
  grid-template-columns: minmax(0, 10fr) 5fr;
}

ul.tabs li {
  font-size: 0.8rem;
}

.tabs img.icon {
  max-width: 2em;
  max-height: 1.5em;
}

#containerFull.offene-stellen p {
  max-width: 100%;
}
  
}


@media screen and (max-width : 1100px)  {

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */

.header_fadein a.logo {
  left: 2em;
}

/* ///// N@VIGATION ///// */

#navigationWrap a.logo {
  left: 40px;
}

nav .heading {
  margin: 0 0 1em 40px;
}

nav ul > li.subnav {
  padding: 0 60px 0 40px;
}

nav ul > li.mainnav {
  padding: 0 0 0 40px;
}


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */


.first_feature_img {
  width: 45%;
}

.first_feature_content {
  width: 50%;
}


  
}



/* //////////////////// MAX HEIGHT 1000 //////////////////// */


@media screen and (max-height : 1000px)  {

  #navigationWrap .header {
    height: 80px;
  }

  .menu-container {
    top: 80px;
    height: calc(100% - 80px);
  }

  .controlpanel_nav .cp_group_nav .cp_frame_nav {
    top: 80px;
  }

  .sticky {
    height: 80px;
  }

  .controlpanel {
    top: 80px;
  }

  .menu-container nav {
    height: calc(100% - 0em);
    padding-top: 3em;
  }

  nav ul > li.subnav {
    font-size: min(max(1.2rem, 1.5vw), 1.5rem);
}

nav ul {
  width: 24em;
}

nav ul li ul {
  left: 20em;
}

}




@media screen and (max-width : 1024px)  {

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */

.header_fadein {
  height: 60px;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.header_fadein.hidden {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}

/* ///// N@VIGATION ///// */

nav ul {
  width: 23em;
}

nav ul li ul {
  grid-template-columns: 1fr;
  width: calc(70vw - 15em);
  left: 18em;
}

nav ul > li.subnav {
  font-size: 1.3rem;
}

nav ul li ul li {
  height: clamp(7em, 20vw, 20em);
}


/* ///// SL1DER ///// */

.slide h3 {
  font-size: 0.6rem;
  letter-spacing: 1px;
}

/* ///// C0NTENT ///// */

.offset_features:nth-child(even) .feature_block {
    grid-column: 1 / span 5;
}

.offset_features:nth-child(even) .feature_img {
  grid-column: 8 / span 5;
}

.offset_features:nth-child(odd) .feature_block {
  grid-column: 8 / span 5;
}

.offset_features:nth-child(odd) .feature_img {
  grid-column: 1 / span 5;
}

.mitarbeiter-item {
  width: 31%;
}

.portfolioFilter a {
  padding: 10px;
  margin: 4px 2px;
  font-size: 10px;
}

input#quicksearch {
  padding: 10px 20px;
}
  
}

@media screen and (max-width : 900px)  {

/* ///// C0NTAINER AND T_YPO ///// */

.swuplogo {
  transform: translate(-50%, -50%) scale(0.7);
}

/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */

.more_products .button_go {
  padding: 12px 35px 12px 0px;
}

.first_feature_content {
  padding: 5% 5% 0 0;
}
  
}

@media screen and (max-width : 800px)  {

/* ///// C0NTAINER AND T_YPO ///// */

a.button {
  font-size: 0.9em;
  padding: 0.5em 1em;
}

/* ///// H3ADER ///// */

.header {
  height: 102px;
}

.controlpanel, .controlpanel_nav {
  right: 7em;
}

.wrapper .controlpanel {
  display: none;
}

.language_switcher {
  border-bottom: solid 0px var(--grey-200);
}

.controlpanel_nav .cp_group_nav .cp_frame_nav.contact_frame {
  height: 190px;
}

.header .sticky:after {
  display: none;
}

/* Responsive Controlpanel */

.controlpanel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  top: 50%;
  transform: translate(0, -50%);
  border-right: solid 0px var(--grey-200);
  border-left: solid 0px var(--grey-200);
  border-bottom: solid 0px var(--grey-200);
  align-items: flex-start;
  width: auto;
  height: auto;
}

.controlpanel .cp_console {
  height: 100%;
  padding: 0 0.7em;
  background: transparent;
}

.content-scroll .cp_console_nav {
  background: transparent;
  justify-content: flex-start;
}

.controlpanel .language_switcher {
  border-bottom: solid 0px var(--grey-200);
}

.controlpanel .cp_group {
  overflow: visible;
}

.cp_group.search_group {
  grid-column: 1;
  grid-row: 1;
}

.cp_group.service_group {
  grid-column: 2;
  grid-row: 1;
}

.cp_group.language_group {
  grid-column: 3;
  grid-row: 1;
}

.controlpanel .cp_group.is-open .cp_frame {
  transform: translate(0,0);
  visibility: visible;
}

.controlpanel .cp_group .cp_frame {
  top: 50px;
  right: 0;
  left: auto;
  width: 200px;
  height: 50px;
  margin-top: 0px;
  justify-content: center;
  transform: translateY(-150px) translateX(0);
  z-index: 1;
}


.content-scroll .header .controlpanel_nav {
  top: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  transform: translate(0, -50%);
  height: auto;
  border-right: solid 0px var(--grey-200);
  border-left: solid 0px var(--grey-200);
  align-items: flex-start;
}

.content-scroll .cp_group_nav.contact_group {
  display: none;
}

.content-scroll .controlpanel_nav .cp_console_nav.service_console {
  border-right: solid 0px var(--grey-200);
}

.content-scroll img.cp_icon {
  filter: brightness(0) invert(1);
}

.content-scroll .search_console p, .content-scroll .contact_console p {
  display: none;
}

.service_console p.desktop {
  display: none;
}

.service_console p.mobile {
  display: block;
}

.content-scroll .contact_console, .cp_group.contact_group {
  display: none;
}

.controlpanel_nav .cp_group_nav .cp_frame_nav.service_frame {
    right: auto;
    left: -100%;
}

.controlpanel .cp_group .cp_frame.search_frame, .controlpanel .cp_group .cp_frame.service_frame {
  right: auto;
  left: auto;
  width: auto;
  height: auto;
}

input[type="search"] {
  width: 185px;
  height: 30px;
}

.controlpanel_nav .language_switcher {
  border-right: solid 0px var(--grey-200);
}


.content-scroll .header .controlpanel p, .content-scroll .header .controlpanel_nav p {
  color: var(--white);
}

.heads {
  width: 100%;
}



/* ///// N@VIGATION ///// */

.sticky {
  height: 79px;
  width: 40px;
  right: 3em;
}

.sticky.mobile {
  display: block;
}

.hamburger .line1 {
  background-color: var(--white);
}

#navigationWrap, #navigationWrap_bg {
  right: 0;
}

div#navigationWrap .sticky {
  background: var(--white);
}

.header_fadein_navigation {
  display: none;
}

.menu-container nav {
  height: calc(100% - 2em);
  padding-top: 2em;
}

nav ul {
  width: 100%;
}

nav ul li ul {
  position: fixed;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 0.5em 0.5em;
  top: 80px;
  left: auto;
  width: 81%;
  height: 100vh;
  min-height: 0;
  max-height: 100%;
  padding: 100px 20px 2em;
  background: var(--white);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.05);
  -moz-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.05);
  box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.05);
  right: calc(-120% - 40px);
  z-index: 11;
  overflow-y: auto;
  transform: none;
  opacity: 1;
  transition: all 0.98s cubic-bezier(.80, 0, .20, 1);
  -webkit-transition: all 0.98s cubic-bezier(.80, 0, .20, 1);
  -moz-transition: all 0.98s cubic-bezier(.80, 0, .20, 1);
}

nav ul li ul.open {
  right: 0;
}

li.subnav ul li {
  opacity: 0;
  transition: all 2s cubic-bezier(.80, 0, .15, 1);
  -webkit-transition: all 2s cubic-bezier(.80, 0, .15, 1);
  -moz-transition: all 2s cubic-bezier(.80, 0, .15, 1);
}

li.subnav ul li.open, li.subnav.open ul li.open {
  opacity: 1;
}

nav ul li ul li {
  height: clamp(7em, 25vw, 25em);
}

nav ul > li.subnav span {
  transform: translateY(0px);
}

nav ul > li.mainnav {
  font-size: 1rem;
}

.button.goback {
  position: absolute;
  display: block;
  padding: 10px 0 10px 50px;
  margin-bottom: 20px;
  left: 0;
  top: 0px;
  opacity: 1;
  width: 100%;
  border-bottom: solid 1px var(--grey-200);
  font-size: 15px;
}

.button.goback:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 22px;
  background-image: url(../images/arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: clamp(0.7em, 1vw, 1.5em);
  height: clamp(0.5em, 0.8vw, 1.3em);
  z-index: 3;
  transform: translate(0, -50%) rotate(180deg);
  opacity: 1;
}

nav h4 {
  position: absolute;
  left: 20px;
  top: 60px;
  font-size: 1.2rem;
  display: block;
  width: fit-content;
  opacity: 1;
}

.sub_link {
  font-size: min(max(0.9rem, 1vw), 1.1rem);
}

.canvas {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.7s cubic-bezier(.80, 0, .20, 1);
  -webkit-transition: all 0.7s cubic-bezier(.80, 0, .20, 1);
  -moz-transition: all 0.7s cubic-bezier(.80, 0, .20, 1);
}

.canvas.open {
  visibility: visible;
  opacity: 0.8;
}


/* ///// SL1DER ///// */

.slider {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  max-height: -webkit-fill-available;
  margin-right: 0;
}

.slide_text {
  bottom: 2em;
}

a.slide_link {
  display: none;
}

a.slide_link_mobile {
  position: relative;
  display: inline-block;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: 0.6rem;
  margin: 20px 0 0;
  padding: 0 20px 0 0;
  opacity: 0;
  transform: translateY(40px);
  transition: transform 1.5s ease 0s, opacity 1.2s ease 0s;
}

.slide.active a.slide_link_mobile {
  opacity: 1;
  transform: translateY(0);
}

a.slide_link_mobile:after {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  background-image: url(../images/arrow_right_white.svg);
  background-size: contain;
  width: 10px;
  height: 8px;
}

.slide_overlay_gradient_top {
  z-index: 7;
  width: 100%;
  height: 160px;
  background: -moz-linear-gradient(top,  rgba(3,23,39,1) 20%, rgba(3,23,39,0) 100%);
  background: -webkit-linear-gradient(top,  rgba(3,23,39,1) 20%,rgba(3,23,39,0) 100%);
  background: linear-gradient(to bottom,  rgb(3,23,39,1) 20%,rgba(3,23,39,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000428', endColorstr='#00000428',GradientType=0 );
}


/* ///// C0NTENT ///// */

.parallax_slogan_container {
  width: 100%;
  padding-right: 15%;
  padding-left: 25%;
}

.parallax_slogan:before {
  left: -0.8em;
}

.tab-control {
  display: none;
}

.tab-accordion {
  display: block;
}

.galerie_slider .slider-image {
  height: clamp(20em, 50vw, 50em);
}

.swiper-button-next {
  margin-left: 2.5em;
}

.cards_ace {
  padding: 1.5rem;
  flex: 0 0 13em;
}

.card_item {
  min-width: 14em;
  padding: 2em 2em;
}

  
}





@media screen and (max-width : 700px)  {

/* ///// C0NTAINER AND T_YPO ///// */

h3 {
  font-size: min(max(1.4rem, 4vw), 4rem);
}

.einsatzbereiche ul {
  grid-template-columns: 1fr 1fr;
}

/* ///// H3ADER ///// */

.header_fadein a.logo {
  left: 20px;
}

/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */

.slide_bg_img {
  transition: all 0s cubic-bezier(.17,.67,.91,.57);
}

.slide_bg.active .slide_bg_img {
  transform: scale(1);
}

.slide_text_static {
  left: clamp(5%, 8vw, 8em);
  width: calc(100% - clamp(10%, 16vw, 16em));
}

h3.slide_title_mobile {
  position: absolute;
  display: block;
  transform: translate(0, 0) rotate(-90deg);
  text-align: left;
  left: 50%;
  min-height: 0;
  width: 100%;
  transform-origin: center left;
  bottom: 2em;
  height: 10px;
  transition: all 0.4s ease 0s;
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  transition-delay: 0.1s;
  /*will-change: transform, opacity;*/
}

.slide.active .slide_title_mobile {
  opacity: 0;
  transform: translate(0, 200px) rotate(-90deg);
}

.slide.inactive .slide_title_mobile {
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.slide.inactive .slide_text br {
  display: none;
}

/*
.slide.active .slide_description {
  display: block;
}*/

.slide_description {
  font-size: 0.7rem;
  opacity: 1;
  transform: translateY(0px);
  transition: none;
  margin: 0;
}

.slide_text {
  min-height: auto;
}

.slide_text h3 {
  font-size: 0.65rem;
  color: var(--green);
  -webkit-text-fill-color: var(--green);
  font-size: min(max(0.9rem, 1.2vw), 1.2rem);
  margin-bottom: 1em;
}

a.slide_link_mobile {
  opacity: 1;
  transform: translateY(0px);
  transition: none;
}

.slide_text {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 40px);
  will-change: transform, opacity;
  text-align: left;
}

.slide, .slide_overlay_green_softlight {
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.slide.inactive .slide_text {
  transition: transform 0.2s ease 0s, opacity 0.2s ease 0s;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  transition-delay: 0.4s;
  /*will-change: transform, opacity;*/
}

.slide.active .slide_text {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: transform 1.5s ease 0s, opacity 1.2s ease 0s;
  -webkit-transition-delay: 0.8s;
  -moz-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.slide_text_static .claim {
  font-size: min(max(1.2rem, 2vw), 2rem);
  /*width: clamp(9em, 50vw, 15em);*/
}

.slide_text_static span {
  font-size: 0.7rem;
}

.slide.inactive, .slide {
  width: 11%;
}

.slide.active {
  width: 67%;
}

.slide_overlay_green_softlight.slide_1 {
  width: 89%;
}

.slide_overlay_green_softlight.slide_2_1 {
  width: 67%;
}

.slide_overlay_green_softlight.slide_2_3 {
  left: 0%;
  width: 11%;
}

.slide_overlay_green_softlight.slide_3_1 {
  left: 0%;
  width: 78%;
}

.slide_overlay_green_softlight.slide_3_2 {
  width: 11%;
}

.slide_overlay_green_softlight.slide_3_4 {
  width: 22%;
}

.slide_overlay_green_softlight.slide_4 {
  left: 0;
  width: 89%;
}



/* ///// C0NTENT ///// */

img.einsatzbereiche {
  height: clamp(30em, 90vw, 90em);
  object-fit: cover;
}
/*
.img-sworld-preview-shadow {
  transform: perspective(75vw) rotateX(244deg) rotate(-52deg) translate3d(20vw, 0, 2vw);
  -webkit-transform: perspective(75vw) rotateX(244deg) rotate(-52deg) translate3d(20vw, 0, 2vw);
  width: 43vw;
  height: 42vw;
}
*/

.company_textblock {
  width: 86%;
}

.inside .bild {
  height: clamp(15em, 50vw, 40em);
}

.inside .content {
  padding: 1em 1em 2em;
}

.benefit div:after {
  display: none;
}

.benefit .col-3.col-s-1.row-s-3:after {
  display: block;
}

.mockup img {
  max-width: 100%;
}

.offset_features:nth-child(odd) .feature_img {
  grid-column: 1 / span 6;
}

.offset_features:nth-child(even) .feature_img {
  grid-column: 8 / span 6;
}

.firma-logo {
  max-width: 150px;
  max-height: 55px;
}

.mitarbeiter {
  width: 104%;
  margin-left: -2%;
  margin-right: -2%;
}

.mitarbeiter-item {
  width: 46%;
  margin-bottom: 2%;
  margin-left: 2%;
  margin-right: 2%;
}

.portfolioFilter a {
  padding: 5px;
  margin: 2px 0px;
  font-size: 8px;
  letter-spacing: 0.5px;
}

  
}







@media screen and (max-width : 600px)  {

/* ///// C0NTAINER AND T_YPO ///// */

.pagination a {
  padding: 5px 10px;
}

.pagination span.current {
  padding: 7px 10px;
}

/* ///// H3ADER ///// */

a.logo {
  top: 24px;
  left: 2em;
  width: clamp(6em, 10vw, 10em);
}

.header_fadein a.logo {
  left: 2em;
}

/* ///// N@VIGATION ///// */

.sticky {
  right: 2em;
}

.controlpanel {
  right: 6em;
}

.controlpanel_nav {
  right: 5em;
}

nav ul > li.subnav {
  padding: 0 40px 0 30px;
}

nav ul > li.subnav span:after {
  right: 0;
}

nav .heading {
  margin: 0 0 1em 30px;
}

nav ul > li.mainnav {
  padding: 0 0 0 30px;
}

#navigationWrap a.logo {
  display: none;
}

#navigationWrap a.logo_mobile {
  display: block;
}

#navigationWrap .header {
  height: 70px;
}

nav ul li ul {
  top: 70px;
}

.sticky {
  height: 69px;
}

.controlpanel_nav .cp_group_nav .cp_frame_nav {
  top: 70px;
}


/* ///// SL1DER ///// */



/* ///// C0NTENT ///// */

.first_feature_img {
  width: 100%;
}
  
.first_feature_content {
  width: 100%;
  float: left;
  padding: 5%;
}

.offset_features:nth-child(odd) .feature_block {
  grid-column: 1 / span 12;
}

.offset_features:nth-child(odd) .feature_img {
  grid-column: 1 / span 12;
  grid-row: 2;
}

.offset_features:nth-child(even) .feature_block {
  grid-column: 1 / span 12;
}

.offset_features:nth-child(even) .feature_img {
  grid-column: 1 / span 12;
  grid-row: 2;
}


}

@media screen and (max-width : 500px)  {

/* ///// C0NTAINER AND T_YPO ///// */

#containerS.dienstleistungen-intro {
  padding-left: 0;
  padding-right: 0;
}

#containerS.sisag-gruppe-intro {
  padding-left: 0;
  padding-right: 0;
}

/* ///// H3ADER ///// */


.header {
  height: 85px;
}

a.logo {
  left: 1.5em;
}

.sticky {
  right: 1.5em;
}

.header_fadein a.logo {
  left: 1.5em;
}

.controlpanel {
  right: 5.5em;
}

.controlpanel_nav {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.controlpanel_nav .cp_console_nav {
  padding: 0 0.2em;
}

.controlpanel_nav .cp_console_nav.service_console {
  padding: 0 0.5em 0 0.2em;
}

.controlpanel .cp_console p, .controlpanel_nav .cp_console_nav p, .controlpanel .cp_console a, .controlpanel_nav .cp_console_nav a {
  font-size: 0.5rem;
  margin: 5px 0 0;
  letter-spacing: 0.3px;
}

.controlpanel .cp_frame p, .controlpanel_nav .cp_frame_nav p, .controlpanel .cp_frame a, .controlpanel_nav .cp_frame_nav a {
  font-size: 0.65rem;
  margin: 0;
}

.controlpanel_nav .cp_group_nav .cp_frame_nav.contact_frame {
  height: 150px;
}

.language_frame {
  bottom: -18px;
}

input[type="search"] {
  width: 176px;
  height: 30px;
}

img.cp_icon {
  max-width: 16px;
  max-height: 16px;
}

.controlpanel {
  width: 8em;
}

.content-scroll .header .controlpanel_nav {
  right: 6em;
}

.content-scroll .header .controlpanel_nav .cp_console_nav {
  padding: 0 0.6em;
}


/* ///// N@VIGATION ///// */

nav ul li ul {
  grid-template-columns: 1fr;
  grid-gap: 0.3em 0.3em;
  padding: 110px 20px 2em;
}

nav ul li ul.open {
  width: 85%;
}

nav ul li ul li {
  height: clamp(8em, 35vw, 25em);
}

nav h4 {
  top: 65px;
}

/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */

.cards_container {
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 5% 0%;
  padding: 0;
}

.cards_ace {
  padding: 6% 6% 4em;
  flex: 0 90%;
  margin: 5%;
}

.cards {
  padding: 3em 0;
}

.card_item:first-child {
  margin-left: 5%;
}


.ansprechpartner p, .ansprechpartner a, .ansprechpartner h4 {
  font-size: 0.8rem;
  margin: 0 0 4px;
}

.facts-container .circle {
  width: min(max(5rem, 36vw), 34rem);
  height: min(max(5rem, 36vw), 34rem);
}

.facts-container .circle_bg {
  width: min(max(5.3rem, 38vw), 36rem);
  height: min(max(5.3rem, 38vw), 36rem);
}

.facts-container .fact {
  font-size: min(max(1.2rem, 7vw), 5rem);
}

.facts-container .circle p {
  font-size: min(max(0.7rem, 4.5vw), 4.5rem);
}

.kontakt-bild {
  height: clamp(20em, 60vw, 60em);
}
  
}

@media screen and (max-width : 450px)  {

/* ///// C0NTAINER AND T_YPO ///// */

.swuplogo {
  transform: translate(-50%, -50%) scale(0.4);
}

/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */

.mitarbeiter {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.mitarbeiter-item {
  width: 100%;
  margin-bottom: 5%;
  margin-left: 0;
  margin-right: 0;
}

}

@media screen and (max-width : 360px)  {

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */

a.logo {
  width: clamp(5em, 10vw, 10em);
}

#navigationWrap a.logo_mobile {
  left: 20px;
}

.controlpanel, .controlpanel_nav {
  right: 4.5em;
}

.controlpanel .cp_console p, .controlpanel_nav .cp_console_nav p, .controlpanel .cp_console a, .controlpanel_nav .cp_console_nav a {
  font-size: 0.45rem;
  letter-spacing: 0.3px;
}

.controlpanel .cp_frame p, .controlpanel_nav .cp_frame_nav p, .controlpanel .cp_frame a, .controlpanel_nav .cp_frame_nav a {
  font-size: 0.65rem;
}

input[type="search"] {
  width: 154px;
  height: 30px;
}

.content-scroll .header .controlpanel_nav {
  right: 5em;
}

.sticky {
  width: 33px;
}

.hamburger .line1 {
  width: 32px;
  height: 3px;
}

/* ///// N@VIGATION ///// */

nav .heading {
  margin: 0 0 1em 20px;
}

nav ul > li.subnav {
  padding: 0 20px 0 20px;
  font-size: 1.3rem;
}

nav ul > li.mainnav {
  margin: 0.3em 0;
  padding: 0 0 0 20px;
  font-size: 1.0rem;
}

/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */
  
}





@media screen and (max-height: 500px) and (max-width: 900px) and (orientation: landscape) {

  .heads {
    height: clamp(10em, 50vw, 40em);
  }

  .slider {
    height: calc(var(--vh, 1vh) * 100);
}

  .slide_text_static {
    top: 13em;
    margin-top: 0;
}

.slide_text_static .claim {
  font-size: 1.4rem;
}

.slide_text {
  bottom: 3em;
  min-height: 0;
}

.slide_description {
  font-size: 0.7rem;
}

.slide h3 {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  margin-bottom: 0em;
}

.slide_description {
  position: absolute;
  top: -40px;
  transform: translate(-50%, 0);
  left: 50%;
}

.slide.active .slide_description {
  transform: translate(-50%, -20px);
}


}





@media screen and (max-height: 750px) and (min-width: 901px) and (orientation: landscape) {

  .slide_text {
    min-height: 95px;
}

.slide h3 {
  margin-bottom: 0.5em;
}

.slide_text_static {
  top: 50%;
  margin-top: 0;
}

.slide_description {
  font-size: 0.8rem;
  width: clamp(180px, 20vw, 300px);
}

.slide_text_static .claim {
  font-size: min(max(1.4rem, 2vw), 2rem);
}

.slide_text_static span {
  font-size: min(max(0.8rem, 1vw), 1rem);
}

}



@media (prefers-color-scheme: dark) {

  :root {
    --white: #e8eaed;
    --black: #e8eaed;
    --blue: #035ea8;
    --darkblue: #042845;
    --darkmode: #001321;
    --green: #03b5b5;
    --darkgreen: #002635;
    --grey-100: #f5f5fa;
    --grey-200: #ebebf0;
    --grey-300: #cdcdd2;
    --grey-400: #a7a7ad;
  }

  .swuplogo svg.icon1 path {
    fill: #042845;
  }

  body, .wrapper, footer, #navigationWrap {
    background: var(--darkmode);
    color: var(--white);
  }

  header.header_fadein {
    background: var(--darkmode);
    color: var(--white);
  }

  a.logo.light-theme, img.light-theme {
    display: none;
  }

  a.logo.dark-theme, img.dark-theme {
    display: inline-block;
  }

  .header_fadein a.logo.dark-theme {
    display: flex;
  }

  .hamburger .line1, .hamburger .line2, .header_fadein .hamburger .line1, .hamburger.is-active .line1:nth-child(1), .hamburger.is-active .line1:nth-child(2) {
    background-color: var(--white);
  }

  nav .line {
    background: var(--darkblue);
  }

  img {
    filter: brightness(.8);
  }

  a.logo img {
    filter: brightness(1);
  }

  .social_icons img {
    filter: brightness(1.2);
  }

  img.cp_icon, .button_go:after, nav ul > li.subnav.open span:after, nav ul > li.subnav.active span:after, nav ul > li.subnav span:after, a.button_choosing:after, .button.goback:before, .accordion__title:after, .tab-accordion__title:before, a.button.organigramm:before, .feature-icon, img.scroll-icon {
    filter: invert(80%) brightness(150%) contrast(150%);
}

  a {
    color: var(--white);
}

a.button {
  border: solid 1px var(--blue);
}

.controlpanel .cp_group .cp_frame {
  background: var(--darkmode);
}

  .language_switcher {
    border-bottom: solid 1px var(--darkblue);
    background-color: var(--darkmode);
}

.language_switcher:hover, .cp_console:hover, #navigationWrap .language_switcher:hover, #navigationWrap .cp_console_nav:hover, .more_products .button_go:hover {
  background-color: var(--darkblue);
}

#navigationWrap .language_switcher {
  border-bottom: solid 0px var(--darkblue);
  border-right: solid 1px var(--darkblue);
}

.controlpanel_nav .cp_console_nav.service_console {
  border-right: solid 1px var(--darkblue);
}

.controlpanel .language_switcher {
  border-bottom: solid 1px var(--darkblue);
}

.language_frame a, .language_frame .content a {
  border-right: solid 1px var(--darkmode);
}

.header .sticky:after, #navigationWrap header:after, #navigationWrap .header_fadein_navigation:after, .menu-container nav:after {
  background-color: var(--darkblue);
}

.controlpanel_nav .cp_group_nav .cp_frame_nav {
  background: var(--darkmode);
  border: solid 1px var(--darkblue);
}

.controlpanel, .footer_line, nav .line {
  border-bottom: solid 1px var(--darkblue);
}

.more_products .button_go:hover {
  color: var(--white);
}

.accordion__title, .button_go, a.button_choosing {
  border-bottom: solid 1px var(--blue);
}

.controlpanel_nav {
  border-bottom: solid 0px var(--darkblue);
  border-right: solid 1px var(--darkblue);
  border-left: solid 0px var(--darkblue);
}

.cp_console, .cp_console_nav, #navigationWrap .language_switcher, #navigationWrap .cp_console_nav, nav ul li ul, .canvas, .search_frame, .service_frame, .contact_frame, .language_frame {
  background-color: var(--darkmode);
}

.introtext:after {
  background-image: url(../images/triangle_green.svg);
}

#sw_home {
  background-color: var(--darkgreen);
}

.teaser.grey, section.feature-1, .grey_bg, section.team {
  background: var(--darkgreen);
}

.teaser a.button {
  border: solid 1px var(--white);
}

.footer_links a, footer p, footer p, .contact_frame p, .contact_frame a, .service_frame a, .service_frame p, .language_frame a, .language_frame p {
  color: var(--white);
}

.swup-overlay {
  background: var(--darkmode);
}

/*
.sw_preview {
  filter: drop-shadow(0px 8px 14px #000000);
}*/

.tab-accordion__title {
  border-top: solid 1px var(--darkmode);
}

.card_item {
  background: var(--darkblue);
}

.beruf {
  background-color: var(--darkblue);
}

.portfolioFilter a {
  color: var(--white);
  border: solid 1px var(--blue);
}

.services_block .col {
  border-bottom: solid 1px var(--blue);
}

input#quicksearch {
  border: solid 1px var(--green);
  background: var(--darkgreen);
  color: var(--white);
}

input::placeholder{
  color: var(--white);
}

input[type="search"] {
  background: var(--darkmode);
  color: var(--white);
}

.overlay_darkblue {
  background-color: var(--darkblue);
}

.menu-container::-webkit-scrollbar-track {
  background-color: #001321;
}

.menu-container::-webkit-scrollbar-thumb {
  box-shadow: inset 2px 2px 5px 0 rgba(#001321, 0.5);
}

.circle {
  background-color: var(--darkmode);
}

.language_frame a:hover, .language_frame .content a:hover {
  background: var(--darkblue);
}

.zeitstrahl-accordion__title {
  border-top: solid 1px var(--blue);
}

.zeitstrahl-accordion__title h3 {
  font-size: min(max(1.2rem, 1.5vw), 1.5rem);
}

.zeitstrahl-accordion__item:before, .swiper-zeitstrahl .tab-link:before {
  background: var(--blue);
}

.zeitstrahl-accordion__item.is-open .tab-dot, .swiper-zeitstrahl .tab-dot:before {
  background: var(--blue);
}

.zeitstrahl-accordion__title .tab-dot, .swiper-zeitstrahl .tab-dot {
  background-color: var(--darkmode);
  border: solid 1px var(--blue);
}

.footer_line {
  background-color: var(--darkblue);
}

.firma {
  border-bottom: 1px solid var(--blue);
}


  @media screen and (max-width : 1700px)  {


    
  }


  @media screen and (max-width : 800px)  {

    #navigationWrap .language_switcher {
        border-right: solid 0px var(--darkblue);
    }

    .controlpanel_nav {
      border-bottom: solid 0px var(--darkblue);
      border-right: solid 0px var(--darkblue);
      border-left: solid 0px var(--darkblue);
    }

    .button.goback {
      border-bottom: solid 1px var(--darkblue);
    }

    .language_switcher, .cp_console, .cp_console_nav {
      background-color: transparent;
    }

    div#navigationWrap .sticky {
      background: var(--darkmode);
    }

    .controlpanel .language_switcher {
      border-bottom: solid 0px var(--darkblue);
    }

    .controlpanel, .footer_line, nav .line {
      border-bottom: solid 0px var(--darkblue);
    }

  }


}




